less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

40451 строка
1017 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. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "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. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf"]
  569. },
  570. "meerkat": {
  571. name: "Meerkat",
  572. parents: ["mammal"]
  573. },
  574. "human": {
  575. name: "Human",
  576. parents: ["mammal"]
  577. },
  578. "geth": {
  579. name: "Geth",
  580. parents: ["android"]
  581. },
  582. "husky": {
  583. name: "Husky",
  584. parents: ["dog"]
  585. },
  586. "long-eared-bat": {
  587. name: "Long Eared Bat",
  588. parents: ["bat"]
  589. },
  590. "lizard": {
  591. name: "Lizard",
  592. parents: ["reptile"]
  593. },
  594. "salamander": {
  595. name: "Salamander",
  596. parents: ["lizard"]
  597. },
  598. "chameleon": {
  599. name: "Chameleon",
  600. parents: ["lizard"]
  601. },
  602. "gecko": {
  603. name: "Gecko",
  604. parents: ["lizard"]
  605. },
  606. "kobold": {
  607. name: "Kobold",
  608. parents: ["reptile"]
  609. },
  610. "charizard": {
  611. name: "Charizard",
  612. parents: ["pokemon"]
  613. },
  614. "lugia": {
  615. name: "Lugia",
  616. parents: ["pokemon"]
  617. },
  618. "cerberus": {
  619. name: "Cerberus",
  620. parents: ["dog"]
  621. },
  622. "tyrantrum": {
  623. name: "Tyrantrum",
  624. parents: ["pokemon"]
  625. },
  626. "lemur": {
  627. name: "Lemur",
  628. parents: ["mammal"]
  629. },
  630. "kelpie": {
  631. name: "Kelpie",
  632. parents: ["horse", "monster"]
  633. },
  634. "labrador": {
  635. name: "Labrador",
  636. parents: ["dog"]
  637. },
  638. "sylveon": {
  639. name: "Sylveon",
  640. parents: ["eeveelution"]
  641. },
  642. "eeveelution": {
  643. name: "Eeveelution",
  644. parents: ["pokemon"]
  645. },
  646. "polar-bear": {
  647. name: "Polar Bear",
  648. parents: ["bear"]
  649. },
  650. "bear": {
  651. name: "Bear",
  652. parents: ["mammal"]
  653. },
  654. "absol": {
  655. name: "Absol",
  656. parents: ["pokemon"]
  657. },
  658. "wolver": {
  659. name: "Wolver",
  660. parents: ["mammal"]
  661. },
  662. "rottweiler": {
  663. name: "Rottweiler",
  664. parents: ["dog"]
  665. },
  666. "zebra": {
  667. name: "Zebra",
  668. parents: ["horse"]
  669. },
  670. "yoshi": {
  671. name: "Yoshi",
  672. parents: ["lizard"]
  673. },
  674. "lynx": {
  675. name: "Lynx",
  676. parents: ["cat"]
  677. },
  678. "unknown": {
  679. name: "Unknown",
  680. parents: []
  681. },
  682. "thylacine": {
  683. name: "Thylacine",
  684. parents: ["mammal"]
  685. },
  686. "gabumon": {
  687. name: "Gabumon",
  688. parents: ["digimon"]
  689. },
  690. "border-collie": {
  691. name: "Border Collie",
  692. parents: ["dog"]
  693. },
  694. "imp": {
  695. name: "Imp",
  696. parents: ["demon"]
  697. },
  698. "kangaroo": {
  699. name: "Kangaroo",
  700. parents: ["marsupial"]
  701. },
  702. "renamon": {
  703. name: "Renamon",
  704. parents: ["digimon"]
  705. },
  706. "candy-orca-dragon": {
  707. name: "Candy Orca Dragon",
  708. parents: ["fish", "dragon", "candy"]
  709. },
  710. "sabertooth-tiger": {
  711. name: "Sabertooth Tiger",
  712. parents: ["cat"]
  713. },
  714. "espurr": {
  715. name: "Espurr",
  716. parents: ["pokemon"]
  717. },
  718. "otter": {
  719. name: "Otter",
  720. parents: ["mustelid"]
  721. },
  722. "elemental": {
  723. name: "Elemental",
  724. parents: ["mammal"]
  725. },
  726. "mew": {
  727. name: "Mew",
  728. parents: ["pokemon"]
  729. },
  730. "goodra": {
  731. name: "Goodra",
  732. parents: ["pokemon"]
  733. },
  734. "fairy": {
  735. name: "Fairy",
  736. parents: ["magical"]
  737. },
  738. "typhlosion": {
  739. name: "Typhlosion",
  740. parents: ["pokemon"]
  741. },
  742. "magical": {
  743. name: "Magical",
  744. parents: []
  745. },
  746. "xenomorph": {
  747. name: "Xenomorph",
  748. parents: ["monster", "alien"]
  749. },
  750. "charr": {
  751. name: "Charr",
  752. parents: ["cat"]
  753. },
  754. "siberian-husky": {
  755. name: "Siberian Husky",
  756. parents: ["husky"]
  757. },
  758. "alligator": {
  759. name: "Alligator",
  760. parents: ["reptile"]
  761. },
  762. "bernese-mountain-dog": {
  763. name: "Bernese Mountain Dog",
  764. parents: ["dog"]
  765. },
  766. "reshiram": {
  767. name: "Reshiram",
  768. parents: ["pokemon"]
  769. },
  770. "grizzly-bear": {
  771. name: "Grizzly Bear",
  772. parents: ["bear"]
  773. },
  774. "water-monitor": {
  775. name: "Water Monitor",
  776. parents: ["lizard"]
  777. },
  778. "banchofossa": {
  779. name: "Banchofossa",
  780. parents: ["mammal"]
  781. },
  782. "kirin": {
  783. name: "Kirin",
  784. parents: ["monster"]
  785. },
  786. "quilava": {
  787. name: "Quilava",
  788. parents: ["pokemon"]
  789. },
  790. "seviper": {
  791. name: "Seviper",
  792. parents: ["pokemon"]
  793. },
  794. "flying-fox": {
  795. name: "Flying Fox",
  796. parents: ["bat"]
  797. },
  798. "keynain": {
  799. name: "Keynain",
  800. parents: ["avian"]
  801. },
  802. "lucario": {
  803. name: "Lucario",
  804. parents: ["pokemon"]
  805. },
  806. "siamese-cat": {
  807. name: "Siamese Cat",
  808. parents: ["cat"]
  809. },
  810. "spider": {
  811. name: "Spider",
  812. parents: ["insect"]
  813. },
  814. "samurott": {
  815. name: "Samurott",
  816. parents: ["pokemon"]
  817. },
  818. "megalodon": {
  819. name: "Megalodon",
  820. parents: ["shark"]
  821. },
  822. "unicorn": {
  823. name: "Unicorn",
  824. parents: ["horse"]
  825. },
  826. "greninja": {
  827. name: "Greninja",
  828. parents: ["pokemon"]
  829. },
  830. "water-dragon": {
  831. name: "Water Dragon",
  832. parents: ["dragon"]
  833. },
  834. "cross-fox": {
  835. name: "Cross Fox",
  836. parents: ["fox"]
  837. },
  838. "synth": {
  839. name: "Synth",
  840. parents: ["machine"]
  841. },
  842. "construct": {
  843. name: "Construct",
  844. parents: []
  845. },
  846. "mexican-wolf": {
  847. name: "Mexican Wolf",
  848. parents: ["wolf"]
  849. },
  850. "leopard": {
  851. name: "Leopard",
  852. parents: ["cat"]
  853. },
  854. "pig": {
  855. name: "Pig",
  856. parents: ["mammal"]
  857. },
  858. "ampharos": {
  859. name: "Ampharos",
  860. parents: ["pokemon"]
  861. },
  862. "orca": {
  863. name: "Orca",
  864. parents: ["fish"]
  865. },
  866. "lycanroc": {
  867. name: "Lycanroc",
  868. parents: ["pokemon"]
  869. },
  870. "surkanu": {
  871. name: "Surkanu",
  872. parents: ["monster"]
  873. },
  874. "seal": {
  875. name: "Seal",
  876. parents: ["mammal"]
  877. },
  878. "keldeo": {
  879. name: "Keldeo",
  880. parents: ["pokemon"]
  881. },
  882. "great-dane": {
  883. name: "Great Dane",
  884. parents: ["dog"]
  885. },
  886. "black-backed-jackal": {
  887. name: "Black Backed Jackal",
  888. parents: ["jackal"]
  889. },
  890. "sheep": {
  891. name: "Sheep",
  892. parents: ["mammal"]
  893. },
  894. "leopard-seal": {
  895. name: "Leopard Seal",
  896. parents: ["seal"]
  897. },
  898. "zoroark": {
  899. name: "Zoroark",
  900. parents: ["pokemon"]
  901. },
  902. "maned-wolf": {
  903. name: "Maned Wolf",
  904. parents: ["canine"]
  905. },
  906. "dracha": {
  907. name: "Dracha",
  908. parents: ["dragon"]
  909. },
  910. "wolxi": {
  911. name: "Wolxi",
  912. parents: ["mammal", "alien"]
  913. },
  914. "dratini": {
  915. name: "Dratini",
  916. parents: ["pokemon", "dragon"]
  917. },
  918. "skaven": {
  919. name: "Skaven",
  920. parents: ["rat"]
  921. },
  922. "mongoose": {
  923. name: "Mongoose",
  924. parents: ["mammal"]
  925. },
  926. "lopunny": {
  927. name: "Lopunny",
  928. parents: ["pokemon", "rabbit"]
  929. },
  930. "feraligatr": {
  931. name: "Feraligatr",
  932. parents: ["pokemon", "alligator"]
  933. },
  934. "houndoom": {
  935. name: "Houndoom",
  936. parents: ["pokemon", "dog"]
  937. },
  938. "protogen": {
  939. name: "Protogen",
  940. parents: ["machine"]
  941. },
  942. "saint-bernard": {
  943. name: "Saint Bernard",
  944. parents: ["dog"]
  945. },
  946. "crow": {
  947. name: "Crow",
  948. parents: ["corvid"]
  949. },
  950. "delphox": {
  951. name: "Delphox",
  952. parents: ["pokemon", "fox"]
  953. },
  954. "moose": {
  955. name: "Moose",
  956. parents: ["mammal"]
  957. },
  958. "joraxian": {
  959. name: "Joraxian",
  960. parents: ["monster", "canine", "demon"]
  961. },
  962. "nimbat": {
  963. name: "Nimbat",
  964. parents: ["mammal"]
  965. },
  966. "aardwolf": {
  967. name: "Aardwolf",
  968. parents: ["canine"]
  969. },
  970. "fluudrani": {
  971. name: "Fluudrani",
  972. parents: ["animal"]
  973. },
  974. "arcanine": {
  975. name: "Arcanine",
  976. parents: ["pokemon", "dog"]
  977. },
  978. "inteleon": {
  979. name: "Inteleon",
  980. parents: ["pokemon", "fish"]
  981. },
  982. "ninetales": {
  983. name: "Ninetales",
  984. parents: ["pokemon", "kitsune"]
  985. },
  986. "tigrex": {
  987. name: "Tigrex",
  988. parents: ["tiger"]
  989. },
  990. "zorua": {
  991. name: "Zorua",
  992. parents: ["pokemon", "fox"]
  993. },
  994. "vulpix": {
  995. name: "Vulpix",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "barghest": {
  999. name: "Barghest",
  1000. parents: ["monster"]
  1001. },
  1002. "gray-wolf": {
  1003. name: "Gray Wolf",
  1004. parents: ["wolf"]
  1005. },
  1006. "ruppells-fox": {
  1007. name: "Rüppell's Fox",
  1008. parents: ["fox"]
  1009. },
  1010. "bull-terrier": {
  1011. name: "Bull Terrier",
  1012. parents: ["dog"]
  1013. },
  1014. "european-honey-buzzard": {
  1015. name: "European Honey Buzzard",
  1016. parents: ["avian"]
  1017. },
  1018. "t-rex": {
  1019. name: "T Rex",
  1020. parents: ["dinosaur"]
  1021. },
  1022. "mactarian": {
  1023. name: "Mactarian",
  1024. parents: ["shark", "monster"]
  1025. },
  1026. "mewtwo-y": {
  1027. name: "Mewtwo Y",
  1028. parents: ["mewtwo"]
  1029. },
  1030. "mewtwo": {
  1031. name: "Mewtwo",
  1032. parents: ["pokemon"]
  1033. },
  1034. "mew": {
  1035. name: "Mew",
  1036. parents: ["pokemon"]
  1037. },
  1038. "eevee": {
  1039. name: "Eevee",
  1040. parents: ["eeveelution"]
  1041. },
  1042. "mienshao": {
  1043. name: "Mienshao",
  1044. parents: ["pokemon"]
  1045. },
  1046. "sugar-glider": {
  1047. name: "Sugar Glider",
  1048. parents: ["opossum"]
  1049. },
  1050. "spectral-bat": {
  1051. name: "Spectral Bat",
  1052. parents: ["bat"]
  1053. },
  1054. "scolipede": {
  1055. name: "Scolipede",
  1056. parents: ["pokemon", "insect"]
  1057. },
  1058. "jackalope": {
  1059. name: "Jackalope",
  1060. parents: ["rabbit", "antelope"]
  1061. },
  1062. "caracal": {
  1063. name: "Caracal",
  1064. parents: ["cat"]
  1065. },
  1066. "stoat": {
  1067. name: "Stoat",
  1068. parents: ["mammal"]
  1069. },
  1070. "african-golden-cat": {
  1071. name: "African Golden Cat",
  1072. parents: ["cat"]
  1073. },
  1074. "gigantosaurus": {
  1075. name: "Gigantosaurus",
  1076. parents: ["dinosaur"]
  1077. },
  1078. "zorgoia": {
  1079. name: "Zorgoia",
  1080. parents: ["mammal"]
  1081. },
  1082. "monitor-lizard": {
  1083. name: "Monitor Lizard",
  1084. parents: ["lizard"]
  1085. },
  1086. "ziralkia": {
  1087. name: "Ziralkia",
  1088. parents: ["mammal"]
  1089. },
  1090. "kiiasi": {
  1091. name: "Kiiasi",
  1092. parents: ["animal"]
  1093. },
  1094. "synx": {
  1095. name: "Synx",
  1096. parents: ["monster"]
  1097. },
  1098. "panther": {
  1099. name: "Panther",
  1100. parents: ["cat"]
  1101. },
  1102. "azumarill": {
  1103. name: "Azumarill",
  1104. parents: ["pokemon"]
  1105. },
  1106. "river-snaptail": {
  1107. name: "River Snaptail",
  1108. parents: ["otter", "crocodile"]
  1109. },
  1110. "great-blue-heron": {
  1111. name: "Great Blue Heron",
  1112. parents: ["avian"]
  1113. },
  1114. "smeargle": {
  1115. name: "Smeargle",
  1116. parents: ["pokemon"]
  1117. },
  1118. "vendeilen": {
  1119. name: "Vendeilen",
  1120. parents: ["monster"]
  1121. },
  1122. "ventura": {
  1123. name: "Ventura",
  1124. parents: ["canine"]
  1125. },
  1126. "clouded-leopard": {
  1127. name: "Clouded Leopard",
  1128. parents: ["leopard"]
  1129. },
  1130. "argonian": {
  1131. name: "Argonian",
  1132. parents: ["lizard"]
  1133. },
  1134. "salazzle": {
  1135. name: "Salazzle",
  1136. parents: ["pokemon", "lizard"]
  1137. },
  1138. "je-stoff-drachen": {
  1139. name: "Je-Stoff Drachen",
  1140. parents: ["dragon"]
  1141. },
  1142. "finnish-spitz-dog": {
  1143. name: "Finnish Spitz Dog",
  1144. parents: ["dog"]
  1145. },
  1146. "gray-fox": {
  1147. name: "Gray Fox",
  1148. parents: ["fox"]
  1149. },
  1150. "opossum": {
  1151. name: "opossum",
  1152. parents: ["mammal"]
  1153. },
  1154. "antelope": {
  1155. name: "Antelope",
  1156. parents: ["mammal"]
  1157. },
  1158. "weavile": {
  1159. name: "Weavile",
  1160. parents: ["pokemon"]
  1161. },
  1162. "pikachu": {
  1163. name: "Pikachu",
  1164. parents: ["pokemon", "mouse"]
  1165. },
  1166. "grovyle": {
  1167. name: "Grovyle",
  1168. parents: ["pokemon", "plant"]
  1169. },
  1170. "sthara": {
  1171. name: "Sthara",
  1172. parents: ["snow-leopard", "reptile"]
  1173. },
  1174. "star-warrior": {
  1175. name: "Star Warrior",
  1176. parents: ["magical"]
  1177. },
  1178. "dragonoid": {
  1179. name: "Dragonoid",
  1180. parents: ["dragon"]
  1181. },
  1182. "suicune": {
  1183. name: "Suicune",
  1184. parents: ["pokemon"]
  1185. },
  1186. "vole": {
  1187. name: "Vole",
  1188. parents: ["mammal"]
  1189. },
  1190. "blaziken": {
  1191. name: "Blaziken",
  1192. parents: ["pokemon", "avian"]
  1193. },
  1194. "buizel": {
  1195. name: "Buizel",
  1196. parents: ["pokemon", "fish"]
  1197. },
  1198. "floatzel": {
  1199. name: "Floatzel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "umok": {
  1203. name: "Umok",
  1204. parents: ["avian"]
  1205. },
  1206. "sea-monster": {
  1207. name: "Sea Monster",
  1208. parents: ["monster", "fish"]
  1209. },
  1210. "egyptian-vulture": {
  1211. name: "Egyptian Vulture",
  1212. parents: ["avian"]
  1213. },
  1214. "doberman": {
  1215. name: "Doberman",
  1216. parents: ["dog"]
  1217. },
  1218. "zangoose": {
  1219. name: "Zangoose",
  1220. parents: ["pokemon", "mongoose"]
  1221. },
  1222. "mongoose": {
  1223. name: "Mongoose",
  1224. parents: ["mammal"]
  1225. },
  1226. "wickerbeast": {
  1227. name: "Wickerbeast",
  1228. parents: ["monster"]
  1229. },
  1230. "zenari": {
  1231. name: "Zenari",
  1232. parents: ["lizard"]
  1233. },
  1234. "plant": {
  1235. name: "Plant",
  1236. parents: []
  1237. },
  1238. "raskatox": {
  1239. name: "Raskatox",
  1240. parents: ["raccoon", "skunk", "cat", "fox"]
  1241. },
  1242. "mikromare": {
  1243. name: "mikromare",
  1244. parents: ["alien"]
  1245. },
  1246. "alien": {
  1247. name: "Alien",
  1248. parents: ["animal"]
  1249. },
  1250. "deity": {
  1251. name: "Deity",
  1252. parents: []
  1253. },
  1254. "skarlan": {
  1255. name: "Skarlan",
  1256. parents: ["slug", "dragon"]
  1257. },
  1258. "slug": {
  1259. name: "Slug",
  1260. parents: ["mollusk"]
  1261. },
  1262. "mollusk": {
  1263. name: "Mollusk",
  1264. parents: ["animal"]
  1265. },
  1266. "chimera": {
  1267. name: "Chimera",
  1268. parents: ["monster"]
  1269. },
  1270. "gestalt": {
  1271. name: "Gestalt",
  1272. parents: ["construct"]
  1273. },
  1274. "mimic": {
  1275. name: "Mimic",
  1276. parents: ["monster"]
  1277. },
  1278. "calico-rat": {
  1279. name: "Calico Rat",
  1280. parents: ["rat"]
  1281. },
  1282. "panda": {
  1283. name: "Panda",
  1284. parents: ["mammal"]
  1285. },
  1286. "oni": {
  1287. name: "Oni",
  1288. parents: ["monster"]
  1289. },
  1290. "pegasus": {
  1291. name: "Pegasus",
  1292. parents: ["horse"]
  1293. },
  1294. "vulpera": {
  1295. name: "Vulpera",
  1296. parents: ["fennec-fox"]
  1297. },
  1298. "ceratosaurus": {
  1299. name: "Ceratosaurus",
  1300. parents: ["dinosaur"]
  1301. },
  1302. "nykur": {
  1303. name: "Nykur",
  1304. parents: ["horse", "monster"]
  1305. },
  1306. "giraffe": {
  1307. name: "Giraffe",
  1308. parents: ["mammal"]
  1309. },
  1310. "tauren": {
  1311. name: "Tauren",
  1312. parents: ["cow"]
  1313. },
  1314. "draconi": {
  1315. name: "Draconi",
  1316. parents: ["alien", "cat", "cyborg"]
  1317. },
  1318. "dire-wolf": {
  1319. name: "Dire Wolf",
  1320. parents: ["wolf"]
  1321. },
  1322. "ferromorph": {
  1323. name: "Ferromorph",
  1324. parents: ["construct"]
  1325. },
  1326. "meowth": {
  1327. name: "Meowth",
  1328. parents: ["cat", "pokemon"]
  1329. },
  1330. "pavodragon": {
  1331. name: "Pavodragon",
  1332. parents: ["dragon"]
  1333. },
  1334. "aaltranae": {
  1335. name: "Aaltranae",
  1336. parents: ["dragon"]
  1337. },
  1338. "cyborg": {
  1339. name: "Cyborg",
  1340. parents: ["machine"]
  1341. },
  1342. "draptor": {
  1343. name: "Draptor",
  1344. parents: ["dragon"]
  1345. },
  1346. "candy": {
  1347. name: "Candy",
  1348. parents: []
  1349. },
  1350. "drenath": {
  1351. name: "Drenath",
  1352. parents: ["dragon", "snake", "rabbit"]
  1353. },
  1354. "coyju": {
  1355. name: "Coyju",
  1356. parents: ["coyote", "kaiju"]
  1357. },
  1358. "kaiju": {
  1359. name: "Kaiju",
  1360. parents: ["monster"]
  1361. },
  1362. "nickit": {
  1363. name: "Nickit",
  1364. parents: ["pokemon", "cat"]
  1365. },
  1366. "lopunny": {
  1367. name: "Lopunny",
  1368. parents: ["pokemon", "rabbit"]
  1369. },
  1370. "korean-jindo-dog": {
  1371. name: "Korean Jindo Dog",
  1372. parents: ["dog"]
  1373. },
  1374. "naga": {
  1375. name: "Naga",
  1376. parents: ["snake", "monster"]
  1377. },
  1378. "undead": {
  1379. name: "Undead",
  1380. parents: ["monster"]
  1381. },
  1382. "whale": {
  1383. name: "Whale",
  1384. parents: ["fish"]
  1385. },
  1386. "gelato-bee": {
  1387. name: "Gelato Bee",
  1388. parents: ["bee"]
  1389. },
  1390. "bee": {
  1391. name: "Bee",
  1392. parents: ["insect"]
  1393. },
  1394. "gardevoir": {
  1395. name: "Gardevoir",
  1396. parents: ["pokemon"]
  1397. },
  1398. "ant": {
  1399. name: "Ant",
  1400. parents: ["insect"]
  1401. },
  1402. "frog": {
  1403. name: "Frog",
  1404. parents: ["amphibian"]
  1405. },
  1406. "amphibian": {
  1407. name: "Amphibian",
  1408. parents: ["animal"]
  1409. },
  1410. "pangolin": {
  1411. name: "Pangolin",
  1412. parents: ["mammal"]
  1413. },
  1414. "uragi'viidorn": {
  1415. name: "Uragi'viidorn",
  1416. parents: ["avian", "bear"]
  1417. },
  1418. "gryphdelphais": {
  1419. name: "Gryphdelphais",
  1420. parents: ["dolphin", "gryphon"]
  1421. },
  1422. "plush": {
  1423. name: "Plush",
  1424. parents: ["construct"]
  1425. },
  1426. "draiger": {
  1427. name: "Draiger",
  1428. parents: ["dragon","tiger"]
  1429. },
  1430. "foxsky": {
  1431. name: "Foxsky",
  1432. parents: ["fox", "husky"]
  1433. },
  1434. "umbreon": {
  1435. name: "Umbreon",
  1436. parents: ["eeveelution"]
  1437. },
  1438. "slime-dragon": {
  1439. name: "Slime Dragon",
  1440. parents: ["dragon"]
  1441. },
  1442. "enderman": {
  1443. name: "Enderman",
  1444. parents: ["monster"]
  1445. },
  1446. "gremlin": {
  1447. name: "Gremlin",
  1448. parents: ["monster"]
  1449. },
  1450. "dragonsune": {
  1451. name: "Dragonsune",
  1452. parents: ["dragon", "kitsune"]
  1453. },
  1454. "ghost": {
  1455. name: "Ghost",
  1456. parents: ["supernatural"]
  1457. },
  1458. "false-vampire-bat": {
  1459. name: "False Vampire Bat",
  1460. parents: ["bat"]
  1461. },
  1462. "succubus": {
  1463. name: "Succubus",
  1464. parents: ["demon"]
  1465. },
  1466. "mia": {
  1467. name: "Mia",
  1468. parents: ["canine"]
  1469. },
  1470. "rainbow": {
  1471. name: "Rainbow",
  1472. parents: ["monster"]
  1473. },
  1474. "solgaleo": {
  1475. name: "Solgaleo",
  1476. parents: ["pokemon"]
  1477. },
  1478. "lucent-nargacuga": {
  1479. name: "Lucent Nargacuga",
  1480. parents: ["monster-hunter"]
  1481. },
  1482. "monster-hunter": {
  1483. name: "Monster Hunter",
  1484. parents: ["monster"]
  1485. },
  1486. "leviathan": {
  1487. "name": "Leviathan",
  1488. "url": "sea-monster"
  1489. },
  1490. "bull": {
  1491. name: "Bull",
  1492. parents: ["mammal"]
  1493. },
  1494. "tanuki": {
  1495. name: "Tanuki",
  1496. parents: ["monster"]
  1497. },
  1498. "chakat": {
  1499. name: "Chakat",
  1500. parents: ["cat"]
  1501. },
  1502. "hydra": {
  1503. name: "Hydra",
  1504. parents: ["monster"]
  1505. },
  1506. "zigzagoon": {
  1507. name: "Zigzagoon",
  1508. parents: ["raccoon", "pokemon"]
  1509. },
  1510. "vulture": {
  1511. name: "Vulture",
  1512. parents: ["avian"]
  1513. },
  1514. "eastern-dragon": {
  1515. name: "Eastern Dragon",
  1516. parents: ["dragon"]
  1517. },
  1518. "gryffon": {
  1519. name: "Gryffon",
  1520. parents: ["phoenix", "red-panda"]
  1521. },
  1522. "amtsvane": {
  1523. name: "Amtsvane",
  1524. parents: ["reptile"]
  1525. },
  1526. "kigavi": {
  1527. name: "Kigavi",
  1528. parents: ["avian"]
  1529. },
  1530. "turian": {
  1531. name: "Turian",
  1532. parents: ["avian"]
  1533. },
  1534. "zeraora": {
  1535. name: "Zeraora",
  1536. parents: ["pokemon"]
  1537. },
  1538. "sandshrew": {
  1539. name: "Sandshrew",
  1540. parents: ["pokemon", "pangolin"]
  1541. },
  1542. "valais-blacknose-sheep": {
  1543. name: "Valais Blacknose Sheep",
  1544. parents: ["sheep"]
  1545. },
  1546. "novaleit": {
  1547. name: "Novaleit",
  1548. parents: ["mammal"]
  1549. },
  1550. "dunnoh": {
  1551. name: "Dunnoh",
  1552. parents: ["mammal"]
  1553. },
  1554. "lunaral-dragon": {
  1555. name: "Lunaral Dragon",
  1556. parents: ["dragon"]
  1557. },
  1558. "arctic-wolf": {
  1559. name: "Arctic Wolf",
  1560. parents: ["wolf"]
  1561. },
  1562. "donkey": {
  1563. name: "Donkey",
  1564. parents: ["horse"]
  1565. },
  1566. "chinchilla": {
  1567. name: "Chinchilla",
  1568. parents: ["rodent"]
  1569. },
  1570. "felkin": {
  1571. name: "Felkin",
  1572. parents: ["dragon"]
  1573. },
  1574. "tykeriel": {
  1575. name: "Tykeriel",
  1576. parents: ["avian"]
  1577. },
  1578. "folf": {
  1579. name: "Folf",
  1580. parents: ["fox", "wolf"]
  1581. },
  1582. "pooltoy": {
  1583. name: "Pooltoy",
  1584. parents: ["construct"]
  1585. },
  1586. "demi": {
  1587. name: "Demi",
  1588. parents: ["human"]
  1589. },
  1590. "stegosaurus": {
  1591. name: "Stegosaurus",
  1592. parents: ["dinosaur"]
  1593. },
  1594. "computer-virus": {
  1595. name: "Computer Virus",
  1596. parents: ["program"]
  1597. },
  1598. "program": {
  1599. name: "Program",
  1600. parents: ["construct"]
  1601. },
  1602. "space-springhare": {
  1603. name: "Space Springhare",
  1604. parents: ["rabbit"]
  1605. },
  1606. "river-drake": {
  1607. name: "River Drake",
  1608. parents: ["dragon"]
  1609. },
  1610. "djinn": {
  1611. "name": "Djinn",
  1612. "url": "supernatural"
  1613. },
  1614. "supernatural": {
  1615. name: "Supernatural",
  1616. parents: ["monster"]
  1617. },
  1618. "grasshopper-mouse": {
  1619. name: "Grasshopper Mouse",
  1620. parents: ["mouse"]
  1621. },
  1622. "somali-cat": {
  1623. name: "Somali Cat",
  1624. parents: ["cat"]
  1625. },
  1626. "minccino": {
  1627. name: "Minccino",
  1628. parents: ["pokemon", "chinchilla"]
  1629. },
  1630. "pine-marten": {
  1631. name: "Pine Marten",
  1632. parents: ["marten"]
  1633. },
  1634. "marten": {
  1635. name: "Marten",
  1636. parents: ["mustelid"]
  1637. },
  1638. "mustelid": {
  1639. name: "Mustelid",
  1640. parents: ["mammal"]
  1641. },
  1642. "caribou": {
  1643. name: "Caribou",
  1644. parents: ["deer"]
  1645. },
  1646. "gnoll": {
  1647. name: "Gnoll",
  1648. parents: ["hyena", "monster"]
  1649. },
  1650. "peacekeeper": {
  1651. name: "Peacekeeper",
  1652. parents: ["human"]
  1653. },
  1654. "river-otter": {
  1655. name: "River Otter",
  1656. parents: ["otter"]
  1657. },
  1658. "dhole": {
  1659. name: "Dhole",
  1660. parents: ["canine"]
  1661. },
  1662. "springbok": {
  1663. name: "Springbok",
  1664. parents: ["antelope"]
  1665. },
  1666. "marsupial": {
  1667. name: "Marsupial",
  1668. parents: ["mammal"]
  1669. },
  1670. "townsend-big-eared-bat": {
  1671. name: "Townsend Big-eared Bat",
  1672. parents: ["bat"]
  1673. },
  1674. }
  1675. //species
  1676. function getSpeciesInfo(speciesList) {
  1677. let result = new Set();
  1678. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1679. result.add(entry)
  1680. });
  1681. return Array.from(result);
  1682. };
  1683. function getSpeciesInfoHelper(species) {
  1684. if (!speciesData[species]) {
  1685. console.warn(species + " doesn't exist");
  1686. return [];
  1687. }
  1688. if (speciesData[species].parents) {
  1689. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1690. } else {
  1691. return [species];
  1692. }
  1693. }
  1694. characterMakers.push(() => makeCharacter(
  1695. {
  1696. name: "Fen",
  1697. species: ["crux"],
  1698. description: {
  1699. title: "Bio",
  1700. text: "Very furry. Sheds on everything."
  1701. },
  1702. tags: [
  1703. "anthro",
  1704. "goo"
  1705. ]
  1706. },
  1707. {
  1708. back: {
  1709. height: math.unit(2.2428, "meter"),
  1710. weight: math.unit(124.738, "kg"),
  1711. name: "Back",
  1712. image: {
  1713. source: "./media/characters/fen/back.svg",
  1714. extra: 2024 / 1867,
  1715. bottom: 13 / 2037
  1716. },
  1717. info: {
  1718. description: {
  1719. mode: "append",
  1720. text: "\n\nHe is not currently looking at you."
  1721. }
  1722. }
  1723. },
  1724. full: {
  1725. height: math.unit(1.34, "meter"),
  1726. weight: math.unit(225, "kg"),
  1727. name: "Full",
  1728. image: {
  1729. source: "./media/characters/fen/full.svg"
  1730. },
  1731. info: {
  1732. description: {
  1733. mode: "append",
  1734. text: "\n\nMunch."
  1735. }
  1736. }
  1737. },
  1738. kneeling: {
  1739. height: math.unit(5.4, "feet"),
  1740. weight: math.unit(124.738, "kg"),
  1741. name: "Kneeling",
  1742. image: {
  1743. source: "./media/characters/fen/kneeling.svg",
  1744. extra: 563 / 507
  1745. }
  1746. },
  1747. goo: {
  1748. height: math.unit(2.8, "feet"),
  1749. weight: math.unit(125, "kg"),
  1750. capacity: math.unit(1, "people"),
  1751. name: "Goo",
  1752. image: {
  1753. source: "./media/characters/fen/goo.svg",
  1754. bottom: 116 / 613
  1755. }
  1756. },
  1757. lounging: {
  1758. height: math.unit(6.5, "feet"),
  1759. weight: math.unit(125, "kg"),
  1760. name: "Lounging",
  1761. image: {
  1762. source: "./media/characters/fen/lounging.svg"
  1763. }
  1764. },
  1765. },
  1766. [
  1767. {
  1768. name: "Normal",
  1769. height: math.unit(2.2428, "meter")
  1770. },
  1771. {
  1772. name: "Big",
  1773. height: math.unit(12, "feet")
  1774. },
  1775. {
  1776. name: "Minimacro",
  1777. height: math.unit(40, "feet"),
  1778. default: true,
  1779. info: {
  1780. description: {
  1781. mode: "append",
  1782. text: "\n\nTOO DAMN BIG"
  1783. }
  1784. }
  1785. },
  1786. {
  1787. name: "Macro",
  1788. height: math.unit(100, "feet"),
  1789. info: {
  1790. description: {
  1791. mode: "append",
  1792. text: "\n\nTOO DAMN BIG"
  1793. }
  1794. }
  1795. },
  1796. {
  1797. name: "Macro+",
  1798. height: math.unit(300, "feet")
  1799. },
  1800. {
  1801. name: "Megamacro",
  1802. height: math.unit(2, "miles")
  1803. }
  1804. ]
  1805. ))
  1806. characterMakers.push(() => makeCharacter(
  1807. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1808. {
  1809. front: {
  1810. height: math.unit(183, "cm"),
  1811. weight: math.unit(80, "kg"),
  1812. name: "Front",
  1813. image: {
  1814. source: "./media/characters/sofia-fluttertail/front.svg",
  1815. bottom: 0.01,
  1816. extra: 2154 / 2081
  1817. }
  1818. },
  1819. frontAlt: {
  1820. height: math.unit(183, "cm"),
  1821. weight: math.unit(80, "kg"),
  1822. name: "Front (alt)",
  1823. image: {
  1824. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1825. }
  1826. },
  1827. back: {
  1828. height: math.unit(183, "cm"),
  1829. weight: math.unit(80, "kg"),
  1830. name: "Back",
  1831. image: {
  1832. source: "./media/characters/sofia-fluttertail/back.svg"
  1833. }
  1834. },
  1835. kneeling: {
  1836. height: math.unit(125, "cm"),
  1837. weight: math.unit(80, "kg"),
  1838. name: "Kneeling",
  1839. image: {
  1840. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1841. extra: 1033 / 977,
  1842. bottom: 23.7 / 1057
  1843. }
  1844. },
  1845. maw: {
  1846. height: math.unit(183 / 5, "cm"),
  1847. name: "Maw",
  1848. image: {
  1849. source: "./media/characters/sofia-fluttertail/maw.svg"
  1850. }
  1851. },
  1852. mawcloseup: {
  1853. height: math.unit(183 / 5 * 0.41, "cm"),
  1854. name: "Maw (Closeup)",
  1855. image: {
  1856. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1857. }
  1858. },
  1859. paws: {
  1860. height: math.unit(1.17, "feet"),
  1861. name: "Paws",
  1862. image: {
  1863. source: "./media/characters/sofia-fluttertail/paws.svg",
  1864. extra: 851 / 851,
  1865. bottom: 17 / 868
  1866. }
  1867. },
  1868. },
  1869. [
  1870. {
  1871. name: "Normal",
  1872. height: math.unit(1.83, "meter")
  1873. },
  1874. {
  1875. name: "Size Thief",
  1876. height: math.unit(18, "feet")
  1877. },
  1878. {
  1879. name: "50 Foot Collie",
  1880. height: math.unit(50, "feet")
  1881. },
  1882. {
  1883. name: "Macro",
  1884. height: math.unit(96, "feet"),
  1885. default: true
  1886. },
  1887. {
  1888. name: "Megamerger",
  1889. height: math.unit(650, "feet")
  1890. },
  1891. ]
  1892. ))
  1893. characterMakers.push(() => makeCharacter(
  1894. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1895. {
  1896. front: {
  1897. height: math.unit(7, "feet"),
  1898. weight: math.unit(100, "kg"),
  1899. name: "Front",
  1900. image: {
  1901. source: "./media/characters/march/front.svg",
  1902. extra: 1992/1851,
  1903. bottom: 39/2031
  1904. }
  1905. },
  1906. foot: {
  1907. height: math.unit(0.9, "feet"),
  1908. name: "Foot",
  1909. image: {
  1910. source: "./media/characters/march/foot.svg"
  1911. }
  1912. },
  1913. },
  1914. [
  1915. {
  1916. name: "Normal",
  1917. height: math.unit(7.9, "feet")
  1918. },
  1919. {
  1920. name: "Macro",
  1921. height: math.unit(220, "meters")
  1922. },
  1923. {
  1924. name: "Megamacro",
  1925. height: math.unit(2.98, "km"),
  1926. default: true
  1927. },
  1928. {
  1929. name: "Gigamacro",
  1930. height: math.unit(15963, "km")
  1931. },
  1932. {
  1933. name: "Teramacro",
  1934. height: math.unit(2980000000, "km")
  1935. },
  1936. {
  1937. name: "Examacro",
  1938. height: math.unit(250, "parsecs")
  1939. },
  1940. ]
  1941. ))
  1942. characterMakers.push(() => makeCharacter(
  1943. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1944. {
  1945. front: {
  1946. height: math.unit(6, "feet"),
  1947. weight: math.unit(60, "kg"),
  1948. name: "Front",
  1949. image: {
  1950. source: "./media/characters/noir/front.svg",
  1951. extra: 1,
  1952. bottom: 0.032
  1953. }
  1954. },
  1955. },
  1956. [
  1957. {
  1958. name: "Normal",
  1959. height: math.unit(6.6, "feet")
  1960. },
  1961. {
  1962. name: "Macro",
  1963. height: math.unit(500, "feet")
  1964. },
  1965. {
  1966. name: "Megamacro",
  1967. height: math.unit(2.5, "km"),
  1968. default: true
  1969. },
  1970. {
  1971. name: "Gigamacro",
  1972. height: math.unit(22500, "km")
  1973. },
  1974. {
  1975. name: "Teramacro",
  1976. height: math.unit(2500000000, "km")
  1977. },
  1978. {
  1979. name: "Examacro",
  1980. height: math.unit(200, "parsecs")
  1981. },
  1982. ]
  1983. ))
  1984. characterMakers.push(() => makeCharacter(
  1985. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1986. {
  1987. front: {
  1988. height: math.unit(7, "feet"),
  1989. weight: math.unit(100, "kg"),
  1990. name: "Front",
  1991. image: {
  1992. source: "./media/characters/okuri/front.svg",
  1993. extra: 1,
  1994. bottom: 0.037
  1995. }
  1996. },
  1997. back: {
  1998. height: math.unit(7, "feet"),
  1999. weight: math.unit(100, "kg"),
  2000. name: "Back",
  2001. image: {
  2002. source: "./media/characters/okuri/back.svg",
  2003. extra: 1,
  2004. bottom: 0.007
  2005. }
  2006. },
  2007. },
  2008. [
  2009. {
  2010. name: "Megamacro",
  2011. height: math.unit(100, "miles"),
  2012. default: true
  2013. },
  2014. ]
  2015. ))
  2016. characterMakers.push(() => makeCharacter(
  2017. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2018. {
  2019. front: {
  2020. height: math.unit(7, "feet"),
  2021. weight: math.unit(100, "kg"),
  2022. name: "Front",
  2023. image: {
  2024. source: "./media/characters/manny/front.svg",
  2025. extra: 1,
  2026. bottom: 0.06
  2027. }
  2028. },
  2029. back: {
  2030. height: math.unit(7, "feet"),
  2031. weight: math.unit(100, "kg"),
  2032. name: "Back",
  2033. image: {
  2034. source: "./media/characters/manny/back.svg",
  2035. extra: 1,
  2036. bottom: 0.014
  2037. }
  2038. },
  2039. },
  2040. [
  2041. {
  2042. name: "Normal",
  2043. height: math.unit(7, "feet"),
  2044. },
  2045. {
  2046. name: "Macro",
  2047. height: math.unit(78, "feet"),
  2048. default: true
  2049. },
  2050. {
  2051. name: "Macro+",
  2052. height: math.unit(300, "meters")
  2053. },
  2054. {
  2055. name: "Macro++",
  2056. height: math.unit(2400, "meters")
  2057. },
  2058. {
  2059. name: "Megamacro",
  2060. height: math.unit(5167, "meters")
  2061. },
  2062. {
  2063. name: "Gigamacro",
  2064. height: math.unit(41769, "miles")
  2065. },
  2066. ]
  2067. ))
  2068. characterMakers.push(() => makeCharacter(
  2069. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2070. {
  2071. front: {
  2072. height: math.unit(7, "feet"),
  2073. weight: math.unit(100, "kg"),
  2074. name: "Front",
  2075. image: {
  2076. source: "./media/characters/adake/front-1.svg"
  2077. }
  2078. },
  2079. frontAlt: {
  2080. height: math.unit(7, "feet"),
  2081. weight: math.unit(100, "kg"),
  2082. name: "Front (Alt)",
  2083. image: {
  2084. source: "./media/characters/adake/front-2.svg",
  2085. extra: 1,
  2086. bottom: 0.01
  2087. }
  2088. },
  2089. back: {
  2090. height: math.unit(7, "feet"),
  2091. weight: math.unit(100, "kg"),
  2092. name: "Back",
  2093. image: {
  2094. source: "./media/characters/adake/back.svg",
  2095. }
  2096. },
  2097. kneel: {
  2098. height: math.unit(5.385, "feet"),
  2099. weight: math.unit(100, "kg"),
  2100. name: "Kneeling",
  2101. image: {
  2102. source: "./media/characters/adake/kneel.svg",
  2103. bottom: 0.052
  2104. }
  2105. },
  2106. },
  2107. [
  2108. {
  2109. name: "Normal",
  2110. height: math.unit(7, "feet"),
  2111. },
  2112. {
  2113. name: "Macro",
  2114. height: math.unit(78, "feet"),
  2115. default: true
  2116. },
  2117. {
  2118. name: "Macro+",
  2119. height: math.unit(300, "meters")
  2120. },
  2121. {
  2122. name: "Macro++",
  2123. height: math.unit(2400, "meters")
  2124. },
  2125. {
  2126. name: "Megamacro",
  2127. height: math.unit(5167, "meters")
  2128. },
  2129. {
  2130. name: "Gigamacro",
  2131. height: math.unit(41769, "miles")
  2132. },
  2133. ]
  2134. ))
  2135. characterMakers.push(() => makeCharacter(
  2136. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2137. {
  2138. front: {
  2139. height: math.unit(1.65, "meters"),
  2140. weight: math.unit(50, "kg"),
  2141. name: "Front",
  2142. image: {
  2143. source: "./media/characters/elijah/front.svg",
  2144. extra: 858 / 830,
  2145. bottom: 95.5 / 953.8559
  2146. }
  2147. },
  2148. back: {
  2149. height: math.unit(1.65, "meters"),
  2150. weight: math.unit(50, "kg"),
  2151. name: "Back",
  2152. image: {
  2153. source: "./media/characters/elijah/back.svg",
  2154. extra: 895 / 850,
  2155. bottom: 5.3 / 897.956
  2156. }
  2157. },
  2158. frontNsfw: {
  2159. height: math.unit(1.65, "meters"),
  2160. weight: math.unit(50, "kg"),
  2161. name: "Front (NSFW)",
  2162. image: {
  2163. source: "./media/characters/elijah/front-nsfw.svg",
  2164. extra: 858 / 830,
  2165. bottom: 95.5 / 953.8559
  2166. }
  2167. },
  2168. backNsfw: {
  2169. height: math.unit(1.65, "meters"),
  2170. weight: math.unit(50, "kg"),
  2171. name: "Back (NSFW)",
  2172. image: {
  2173. source: "./media/characters/elijah/back-nsfw.svg",
  2174. extra: 895 / 850,
  2175. bottom: 5.3 / 897.956
  2176. }
  2177. },
  2178. dick: {
  2179. height: math.unit(1, "feet"),
  2180. name: "Dick",
  2181. image: {
  2182. source: "./media/characters/elijah/dick.svg"
  2183. }
  2184. },
  2185. beakOpen: {
  2186. height: math.unit(1.25, "feet"),
  2187. name: "Beak (Open)",
  2188. image: {
  2189. source: "./media/characters/elijah/beak-open.svg"
  2190. }
  2191. },
  2192. beakShut: {
  2193. height: math.unit(1.25, "feet"),
  2194. name: "Beak (Shut)",
  2195. image: {
  2196. source: "./media/characters/elijah/beak-shut.svg"
  2197. }
  2198. },
  2199. footFlexing: {
  2200. height: math.unit(1.61, "feet"),
  2201. name: "Foot (Flexing)",
  2202. image: {
  2203. source: "./media/characters/elijah/foot-flexing.svg"
  2204. }
  2205. },
  2206. footStepping: {
  2207. height: math.unit(1.44, "feet"),
  2208. name: "Foot (Stepping)",
  2209. image: {
  2210. source: "./media/characters/elijah/foot-stepping.svg"
  2211. }
  2212. },
  2213. plantigradeLeg: {
  2214. height: math.unit(2.34, "feet"),
  2215. name: "Plantigrade Leg",
  2216. image: {
  2217. source: "./media/characters/elijah/plantigrade-leg.svg"
  2218. }
  2219. },
  2220. plantigradeFootLeft: {
  2221. height: math.unit(0.9, "feet"),
  2222. name: "Plantigrade Foot (Left)",
  2223. image: {
  2224. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2225. }
  2226. },
  2227. plantigradeFootRight: {
  2228. height: math.unit(0.9, "feet"),
  2229. name: "Plantigrade Foot (Right)",
  2230. image: {
  2231. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2232. }
  2233. },
  2234. },
  2235. [
  2236. {
  2237. name: "Normal",
  2238. height: math.unit(1.65, "meters")
  2239. },
  2240. {
  2241. name: "Macro",
  2242. height: math.unit(55, "meters"),
  2243. default: true
  2244. },
  2245. {
  2246. name: "Macro+",
  2247. height: math.unit(105, "meters")
  2248. },
  2249. ]
  2250. ))
  2251. characterMakers.push(() => makeCharacter(
  2252. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2253. {
  2254. front: {
  2255. height: math.unit(11, "feet"),
  2256. weight: math.unit(320, "kg"),
  2257. name: "Front",
  2258. image: {
  2259. source: "./media/characters/rai/front.svg",
  2260. extra: 1802/1696,
  2261. bottom: 68/1870
  2262. }
  2263. },
  2264. frontDressed: {
  2265. height: math.unit(11, "feet"),
  2266. weight: math.unit(320, "kg"),
  2267. name: "Front (Dressed)",
  2268. image: {
  2269. source: "./media/characters/rai/front-dressed.svg",
  2270. extra: 1802/1696,
  2271. bottom: 68/1870
  2272. }
  2273. },
  2274. side: {
  2275. height: math.unit(11, "feet"),
  2276. weight: math.unit(320, "kg"),
  2277. name: "Side",
  2278. image: {
  2279. source: "./media/characters/rai/side.svg",
  2280. extra: 1789/1710,
  2281. bottom: 115/1904
  2282. }
  2283. },
  2284. back: {
  2285. height: math.unit(11, "feet"),
  2286. weight: math.unit(320, "kg"),
  2287. name: "Back",
  2288. image: {
  2289. source: "./media/characters/rai/back.svg",
  2290. extra: 1770/1707,
  2291. bottom: 28/1798
  2292. }
  2293. },
  2294. feral: {
  2295. height: math.unit(11, "feet"),
  2296. weight: math.unit(640, "kg"),
  2297. name: "Feral",
  2298. image: {
  2299. source: "./media/characters/rai/feral.svg",
  2300. extra: 1035/642,
  2301. bottom: 86/1121
  2302. }
  2303. },
  2304. dragon: {
  2305. height: math.unit(23, "feet"),
  2306. weight: math.unit(50000, "lb"),
  2307. name: "Dragon",
  2308. image: {
  2309. source: "./media/characters/rai/dragon.svg",
  2310. extra: 2498 / 2030,
  2311. bottom: 85.2 / 2584
  2312. }
  2313. },
  2314. maw: {
  2315. height: math.unit(6 / 3.81416, "feet"),
  2316. name: "Maw",
  2317. image: {
  2318. source: "./media/characters/rai/maw.svg"
  2319. }
  2320. },
  2321. },
  2322. [
  2323. {
  2324. name: "Normal",
  2325. height: math.unit(11, "feet")
  2326. },
  2327. {
  2328. name: "Macro",
  2329. height: math.unit(302, "feet"),
  2330. default: true
  2331. },
  2332. ]
  2333. ))
  2334. characterMakers.push(() => makeCharacter(
  2335. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2336. {
  2337. frontDressed: {
  2338. height: math.unit(216, "feet"),
  2339. weight: math.unit(7000000, "lb"),
  2340. name: "Front (Dressed)",
  2341. image: {
  2342. source: "./media/characters/jazzy/front-dressed.svg",
  2343. extra: 2738 / 2651,
  2344. bottom: 41.8 / 2786
  2345. }
  2346. },
  2347. backDressed: {
  2348. height: math.unit(216, "feet"),
  2349. weight: math.unit(7000000, "lb"),
  2350. name: "Back (Dressed)",
  2351. image: {
  2352. source: "./media/characters/jazzy/back-dressed.svg",
  2353. extra: 2775 / 2673,
  2354. bottom: 36.8 / 2817
  2355. }
  2356. },
  2357. front: {
  2358. height: math.unit(216, "feet"),
  2359. weight: math.unit(7000000, "lb"),
  2360. name: "Front",
  2361. image: {
  2362. source: "./media/characters/jazzy/front.svg",
  2363. extra: 2738 / 2651,
  2364. bottom: 41.8 / 2786
  2365. }
  2366. },
  2367. back: {
  2368. height: math.unit(216, "feet"),
  2369. weight: math.unit(7000000, "lb"),
  2370. name: "Back",
  2371. image: {
  2372. source: "./media/characters/jazzy/back.svg",
  2373. extra: 2775 / 2673,
  2374. bottom: 36.8 / 2817
  2375. }
  2376. },
  2377. maw: {
  2378. height: math.unit(20, "feet"),
  2379. name: "Maw",
  2380. image: {
  2381. source: "./media/characters/jazzy/maw.svg"
  2382. }
  2383. },
  2384. paws: {
  2385. height: math.unit(27.5, "feet"),
  2386. name: "Paws",
  2387. image: {
  2388. source: "./media/characters/jazzy/paws.svg"
  2389. }
  2390. },
  2391. eye: {
  2392. height: math.unit(4.4, "feet"),
  2393. name: "Eye",
  2394. image: {
  2395. source: "./media/characters/jazzy/eye.svg"
  2396. }
  2397. },
  2398. droneOffense: {
  2399. height: math.unit(9.5, "inches"),
  2400. name: "Drone (Offense)",
  2401. image: {
  2402. source: "./media/characters/jazzy/drone-offense.svg"
  2403. }
  2404. },
  2405. droneRecon: {
  2406. height: math.unit(9.5, "inches"),
  2407. name: "Drone (Recon)",
  2408. image: {
  2409. source: "./media/characters/jazzy/drone-recon.svg"
  2410. }
  2411. },
  2412. droneDefense: {
  2413. height: math.unit(9.5, "inches"),
  2414. name: "Drone (Defense)",
  2415. image: {
  2416. source: "./media/characters/jazzy/drone-defense.svg"
  2417. }
  2418. },
  2419. },
  2420. [
  2421. {
  2422. name: "Macro",
  2423. height: math.unit(216, "feet"),
  2424. default: true
  2425. },
  2426. ]
  2427. ))
  2428. characterMakers.push(() => makeCharacter(
  2429. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2430. {
  2431. front: {
  2432. height: math.unit(9 + 6/12, "feet"),
  2433. weight: math.unit(700, "lb"),
  2434. name: "Front",
  2435. image: {
  2436. source: "./media/characters/flamm/front.svg",
  2437. extra: 1751/1632,
  2438. bottom: 46/1797
  2439. }
  2440. },
  2441. buff: {
  2442. height: math.unit(9 + 6/12, "feet"),
  2443. weight: math.unit(950, "lb"),
  2444. name: "Buff",
  2445. image: {
  2446. source: "./media/characters/flamm/buff.svg",
  2447. extra: 3018/2874,
  2448. bottom: 221/3239
  2449. }
  2450. },
  2451. },
  2452. [
  2453. {
  2454. name: "Normal",
  2455. height: math.unit(9.5, "feet")
  2456. },
  2457. {
  2458. name: "Macro",
  2459. height: math.unit(200, "feet"),
  2460. default: true
  2461. },
  2462. ]
  2463. ))
  2464. characterMakers.push(() => makeCharacter(
  2465. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2466. {
  2467. front: {
  2468. height: math.unit(5 + 3/12, "feet"),
  2469. weight: math.unit(60, "kg"),
  2470. name: "Front",
  2471. image: {
  2472. source: "./media/characters/zephiro/front.svg",
  2473. extra: 2309 / 2162,
  2474. bottom: 0.069
  2475. }
  2476. },
  2477. side: {
  2478. height: math.unit(5 + 3/12, "feet"),
  2479. weight: math.unit(60, "kg"),
  2480. name: "Side",
  2481. image: {
  2482. source: "./media/characters/zephiro/side.svg",
  2483. extra: 2403 / 2279,
  2484. bottom: 0.015
  2485. }
  2486. },
  2487. back: {
  2488. height: math.unit(5 + 3/12, "feet"),
  2489. weight: math.unit(60, "kg"),
  2490. name: "Back",
  2491. image: {
  2492. source: "./media/characters/zephiro/back.svg",
  2493. extra: 2373 / 2244,
  2494. bottom: 0.013
  2495. }
  2496. },
  2497. hand: {
  2498. height: math.unit(0.68, "feet"),
  2499. name: "Hand",
  2500. image: {
  2501. source: "./media/characters/zephiro/hand.svg"
  2502. }
  2503. },
  2504. paw: {
  2505. height: math.unit(1, "feet"),
  2506. name: "Paw",
  2507. image: {
  2508. source: "./media/characters/zephiro/paw.svg"
  2509. }
  2510. },
  2511. beans: {
  2512. height: math.unit(0.93, "feet"),
  2513. name: "Beans",
  2514. image: {
  2515. source: "./media/characters/zephiro/beans.svg"
  2516. }
  2517. },
  2518. },
  2519. [
  2520. {
  2521. name: "Micro",
  2522. height: math.unit(3, "inches")
  2523. },
  2524. {
  2525. name: "Normal",
  2526. height: math.unit(5 + 3 / 12, "feet"),
  2527. default: true
  2528. },
  2529. {
  2530. name: "Macro",
  2531. height: math.unit(118, "feet")
  2532. },
  2533. ]
  2534. ))
  2535. characterMakers.push(() => makeCharacter(
  2536. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2537. {
  2538. front: {
  2539. height: math.unit(5, "feet"),
  2540. weight: math.unit(90, "kg"),
  2541. name: "Front",
  2542. image: {
  2543. source: "./media/characters/fory/front.svg",
  2544. extra: 2862 / 2674,
  2545. bottom: 180 / 3043.8
  2546. }
  2547. },
  2548. back: {
  2549. height: math.unit(5, "feet"),
  2550. weight: math.unit(90, "kg"),
  2551. name: "Back",
  2552. image: {
  2553. source: "./media/characters/fory/back.svg",
  2554. extra: 2962 / 2791,
  2555. bottom: 106 / 3071.8
  2556. }
  2557. },
  2558. foot: {
  2559. height: math.unit(2.14, "feet"),
  2560. name: "Foot",
  2561. image: {
  2562. source: "./media/characters/fory/foot.svg"
  2563. }
  2564. },
  2565. },
  2566. [
  2567. {
  2568. name: "Normal",
  2569. height: math.unit(5, "feet")
  2570. },
  2571. {
  2572. name: "Macro",
  2573. height: math.unit(50, "feet"),
  2574. default: true
  2575. },
  2576. {
  2577. name: "Megamacro",
  2578. height: math.unit(10, "miles")
  2579. },
  2580. {
  2581. name: "Gigamacro",
  2582. height: math.unit(5, "earths")
  2583. },
  2584. ]
  2585. ))
  2586. characterMakers.push(() => makeCharacter(
  2587. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2588. {
  2589. front: {
  2590. height: math.unit(7, "feet"),
  2591. weight: math.unit(90, "kg"),
  2592. name: "Front",
  2593. image: {
  2594. source: "./media/characters/kurrikage/front.svg",
  2595. extra: 1,
  2596. bottom: 0.035
  2597. }
  2598. },
  2599. back: {
  2600. height: math.unit(7, "feet"),
  2601. weight: math.unit(90, "lb"),
  2602. name: "Back",
  2603. image: {
  2604. source: "./media/characters/kurrikage/back.svg"
  2605. }
  2606. },
  2607. paw: {
  2608. height: math.unit(1.5, "feet"),
  2609. name: "Paw",
  2610. image: {
  2611. source: "./media/characters/kurrikage/paw.svg"
  2612. }
  2613. },
  2614. staff: {
  2615. height: math.unit(6.7, "feet"),
  2616. name: "Staff",
  2617. image: {
  2618. source: "./media/characters/kurrikage/staff.svg"
  2619. }
  2620. },
  2621. peek: {
  2622. height: math.unit(1.05, "feet"),
  2623. name: "Peeking",
  2624. image: {
  2625. source: "./media/characters/kurrikage/peek.svg",
  2626. bottom: 0.08
  2627. }
  2628. },
  2629. },
  2630. [
  2631. {
  2632. name: "Normal",
  2633. height: math.unit(12, "feet"),
  2634. default: true
  2635. },
  2636. {
  2637. name: "Big",
  2638. height: math.unit(20, "feet")
  2639. },
  2640. {
  2641. name: "Macro",
  2642. height: math.unit(500, "feet")
  2643. },
  2644. {
  2645. name: "Megamacro",
  2646. height: math.unit(20, "miles")
  2647. },
  2648. ]
  2649. ))
  2650. characterMakers.push(() => makeCharacter(
  2651. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2652. {
  2653. front: {
  2654. height: math.unit(6, "feet"),
  2655. weight: math.unit(75, "kg"),
  2656. name: "Front",
  2657. image: {
  2658. source: "./media/characters/shingo/front.svg",
  2659. extra: 706/681,
  2660. bottom: 11/717
  2661. }
  2662. },
  2663. frontAlt: {
  2664. height: math.unit(6, "feet"),
  2665. weight: math.unit(75, "kg"),
  2666. name: "Front (Alt)",
  2667. image: {
  2668. source: "./media/characters/shingo/front-alt.svg",
  2669. extra: 3511 / 3338,
  2670. bottom: 0.005
  2671. }
  2672. },
  2673. paw: {
  2674. height: math.unit(1, "feet"),
  2675. name: "Paw",
  2676. image: {
  2677. source: "./media/characters/shingo/paw.svg"
  2678. }
  2679. },
  2680. },
  2681. [
  2682. {
  2683. name: "Micro",
  2684. height: math.unit(4, "inches")
  2685. },
  2686. {
  2687. name: "Normal",
  2688. height: math.unit(6, "feet"),
  2689. default: true
  2690. },
  2691. {
  2692. name: "Macro",
  2693. height: math.unit(108, "feet")
  2694. },
  2695. {
  2696. name: "Macro+",
  2697. height: math.unit(1500, "feet")
  2698. },
  2699. ]
  2700. ))
  2701. characterMakers.push(() => makeCharacter(
  2702. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2703. {
  2704. side: {
  2705. height: math.unit(6, "feet"),
  2706. weight: math.unit(75, "kg"),
  2707. name: "Side",
  2708. image: {
  2709. source: "./media/characters/aigey/side.svg"
  2710. }
  2711. },
  2712. },
  2713. [
  2714. {
  2715. name: "Macro",
  2716. height: math.unit(200, "feet"),
  2717. default: true
  2718. },
  2719. {
  2720. name: "Megamacro",
  2721. height: math.unit(100, "miles")
  2722. },
  2723. ]
  2724. )
  2725. )
  2726. characterMakers.push(() => makeCharacter(
  2727. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2728. {
  2729. front: {
  2730. height: math.unit(5 + 5 / 12, "feet"),
  2731. weight: math.unit(75, "kg"),
  2732. name: "Front",
  2733. image: {
  2734. source: "./media/characters/natasha/front.svg",
  2735. extra: 859 / 824,
  2736. bottom: 23 / 879.6
  2737. }
  2738. },
  2739. frontNsfw: {
  2740. height: math.unit(5 + 5 / 12, "feet"),
  2741. weight: math.unit(75, "kg"),
  2742. name: "Front (NSFW)",
  2743. image: {
  2744. source: "./media/characters/natasha/front-nsfw.svg",
  2745. extra: 859 / 824,
  2746. bottom: 23 / 879.6
  2747. }
  2748. },
  2749. frontErect: {
  2750. height: math.unit(5 + 5 / 12, "feet"),
  2751. weight: math.unit(75, "kg"),
  2752. name: "Front (Erect)",
  2753. image: {
  2754. source: "./media/characters/natasha/front-erect.svg",
  2755. extra: 859 / 824,
  2756. bottom: 23 / 879.6
  2757. }
  2758. },
  2759. back: {
  2760. height: math.unit(5 + 5 / 12, "feet"),
  2761. weight: math.unit(75, "kg"),
  2762. name: "Back",
  2763. image: {
  2764. source: "./media/characters/natasha/back.svg",
  2765. extra: 887.9 / 852.6,
  2766. bottom: 9.7 / 896.4
  2767. }
  2768. },
  2769. backAlt: {
  2770. height: math.unit(5 + 5 / 12, "feet"),
  2771. weight: math.unit(75, "kg"),
  2772. name: "Back (Alt)",
  2773. image: {
  2774. source: "./media/characters/natasha/back-alt.svg",
  2775. extra: 1236.7 / 1192,
  2776. bottom: 22.3 / 1258.2
  2777. }
  2778. },
  2779. dick: {
  2780. height: math.unit(1.772, "feet"),
  2781. name: "Dick",
  2782. image: {
  2783. source: "./media/characters/natasha/dick.svg"
  2784. }
  2785. },
  2786. paw: {
  2787. height: math.unit(0.250, "meters"),
  2788. name: "Paw",
  2789. image: {
  2790. source: "./media/characters/natasha/paw.svg"
  2791. }
  2792. },
  2793. },
  2794. [
  2795. {
  2796. name: "Normal",
  2797. height: math.unit(5 + 5 / 12, "feet")
  2798. },
  2799. {
  2800. name: "Large",
  2801. height: math.unit(12, "feet")
  2802. },
  2803. {
  2804. name: "Macro",
  2805. height: math.unit(100, "feet"),
  2806. default: true
  2807. },
  2808. {
  2809. name: "Macro+",
  2810. height: math.unit(260, "feet")
  2811. },
  2812. {
  2813. name: "Macro++",
  2814. height: math.unit(1, "mile")
  2815. },
  2816. ]
  2817. ))
  2818. characterMakers.push(() => makeCharacter(
  2819. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2820. {
  2821. front: {
  2822. height: math.unit(6, "feet"),
  2823. weight: math.unit(75, "kg"),
  2824. name: "Front",
  2825. image: {
  2826. source: "./media/characters/malik/front.svg"
  2827. }
  2828. },
  2829. side: {
  2830. height: math.unit(6, "feet"),
  2831. weight: math.unit(75, "kg"),
  2832. name: "Side",
  2833. image: {
  2834. source: "./media/characters/malik/side.svg",
  2835. extra: 1.1539
  2836. }
  2837. },
  2838. back: {
  2839. height: math.unit(6, "feet"),
  2840. weight: math.unit(75, "kg"),
  2841. name: "Back",
  2842. image: {
  2843. source: "./media/characters/malik/back.svg"
  2844. }
  2845. },
  2846. },
  2847. [
  2848. {
  2849. name: "Macro",
  2850. height: math.unit(156, "feet"),
  2851. default: true
  2852. },
  2853. {
  2854. name: "Macro+",
  2855. height: math.unit(1188, "feet")
  2856. },
  2857. ]
  2858. ))
  2859. characterMakers.push(() => makeCharacter(
  2860. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2861. {
  2862. front: {
  2863. height: math.unit(6, "feet"),
  2864. weight: math.unit(75, "kg"),
  2865. name: "Front",
  2866. image: {
  2867. source: "./media/characters/sefer/front.svg",
  2868. extra: 848 / 659,
  2869. bottom: 28.3 / 876.442
  2870. }
  2871. },
  2872. back: {
  2873. height: math.unit(6, "feet"),
  2874. weight: math.unit(75, "kg"),
  2875. name: "Back",
  2876. image: {
  2877. source: "./media/characters/sefer/back.svg",
  2878. extra: 864 / 695,
  2879. bottom: 10 / 871
  2880. }
  2881. },
  2882. frontDressed: {
  2883. height: math.unit(6, "feet"),
  2884. weight: math.unit(75, "kg"),
  2885. name: "Front (Dressed)",
  2886. image: {
  2887. source: "./media/characters/sefer/front-dressed.svg",
  2888. extra: 839 / 653,
  2889. bottom: 37.6 / 878
  2890. }
  2891. },
  2892. },
  2893. [
  2894. {
  2895. name: "Normal",
  2896. height: math.unit(6, "feet"),
  2897. default: true
  2898. },
  2899. ]
  2900. ))
  2901. characterMakers.push(() => makeCharacter(
  2902. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2903. {
  2904. body: {
  2905. height: math.unit(2.2428, "meter"),
  2906. weight: math.unit(124.738, "kg"),
  2907. name: "Body",
  2908. image: {
  2909. extra: 1225 / 1050,
  2910. source: "./media/characters/north/front.svg"
  2911. }
  2912. }
  2913. },
  2914. [
  2915. {
  2916. name: "Micro",
  2917. height: math.unit(4, "inches")
  2918. },
  2919. {
  2920. name: "Macro",
  2921. height: math.unit(63, "meters")
  2922. },
  2923. {
  2924. name: "Megamacro",
  2925. height: math.unit(101, "miles"),
  2926. default: true
  2927. }
  2928. ]
  2929. ))
  2930. characterMakers.push(() => makeCharacter(
  2931. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2932. {
  2933. angled: {
  2934. height: math.unit(4, "meter"),
  2935. weight: math.unit(150, "kg"),
  2936. name: "Angled",
  2937. image: {
  2938. source: "./media/characters/talan/angled-sfw.svg",
  2939. bottom: 29 / 3734
  2940. }
  2941. },
  2942. angledNsfw: {
  2943. height: math.unit(4, "meter"),
  2944. weight: math.unit(150, "kg"),
  2945. name: "Angled (NSFW)",
  2946. image: {
  2947. source: "./media/characters/talan/angled-nsfw.svg",
  2948. bottom: 29 / 3734
  2949. }
  2950. },
  2951. frontNsfw: {
  2952. height: math.unit(4, "meter"),
  2953. weight: math.unit(150, "kg"),
  2954. name: "Front (NSFW)",
  2955. image: {
  2956. source: "./media/characters/talan/front-nsfw.svg",
  2957. bottom: 29 / 3734
  2958. }
  2959. },
  2960. sideNsfw: {
  2961. height: math.unit(4, "meter"),
  2962. weight: math.unit(150, "kg"),
  2963. name: "Side (NSFW)",
  2964. image: {
  2965. source: "./media/characters/talan/side-nsfw.svg",
  2966. bottom: 29 / 3734
  2967. }
  2968. },
  2969. back: {
  2970. height: math.unit(4, "meter"),
  2971. weight: math.unit(150, "kg"),
  2972. name: "Back",
  2973. image: {
  2974. source: "./media/characters/talan/back.svg"
  2975. }
  2976. },
  2977. dickBottom: {
  2978. height: math.unit(0.621, "meter"),
  2979. name: "Dick (Bottom)",
  2980. image: {
  2981. source: "./media/characters/talan/dick-bottom.svg"
  2982. }
  2983. },
  2984. dickTop: {
  2985. height: math.unit(0.621, "meter"),
  2986. name: "Dick (Top)",
  2987. image: {
  2988. source: "./media/characters/talan/dick-top.svg"
  2989. }
  2990. },
  2991. dickSide: {
  2992. height: math.unit(0.305, "meter"),
  2993. name: "Dick (Side)",
  2994. image: {
  2995. source: "./media/characters/talan/dick-side.svg"
  2996. }
  2997. },
  2998. dickFront: {
  2999. height: math.unit(0.305, "meter"),
  3000. name: "Dick (Front)",
  3001. image: {
  3002. source: "./media/characters/talan/dick-front.svg"
  3003. }
  3004. },
  3005. },
  3006. [
  3007. {
  3008. name: "Normal",
  3009. height: math.unit(4, "meters")
  3010. },
  3011. {
  3012. name: "Macro",
  3013. height: math.unit(100, "meters")
  3014. },
  3015. {
  3016. name: "Megamacro",
  3017. height: math.unit(2, "miles"),
  3018. default: true
  3019. },
  3020. {
  3021. name: "Gigamacro",
  3022. height: math.unit(5000, "miles")
  3023. },
  3024. {
  3025. name: "Teramacro",
  3026. height: math.unit(100, "parsecs")
  3027. }
  3028. ]
  3029. ))
  3030. characterMakers.push(() => makeCharacter(
  3031. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3032. {
  3033. front: {
  3034. height: math.unit(2, "meter"),
  3035. weight: math.unit(90, "kg"),
  3036. name: "Front",
  3037. image: {
  3038. source: "./media/characters/gael'rathus/front.svg"
  3039. }
  3040. },
  3041. frontAlt: {
  3042. height: math.unit(2, "meter"),
  3043. weight: math.unit(90, "kg"),
  3044. name: "Front (alt)",
  3045. image: {
  3046. source: "./media/characters/gael'rathus/front-alt.svg"
  3047. }
  3048. },
  3049. frontAlt2: {
  3050. height: math.unit(2, "meter"),
  3051. weight: math.unit(90, "kg"),
  3052. name: "Front (alt 2)",
  3053. image: {
  3054. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3055. }
  3056. }
  3057. },
  3058. [
  3059. {
  3060. name: "Normal",
  3061. height: math.unit(9, "feet"),
  3062. default: true
  3063. },
  3064. {
  3065. name: "Large",
  3066. height: math.unit(25, "feet")
  3067. },
  3068. {
  3069. name: "Macro",
  3070. height: math.unit(0.25, "miles")
  3071. },
  3072. {
  3073. name: "Megamacro",
  3074. height: math.unit(10, "miles")
  3075. }
  3076. ]
  3077. ))
  3078. characterMakers.push(() => makeCharacter(
  3079. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3080. {
  3081. side: {
  3082. height: math.unit(2, "meter"),
  3083. weight: math.unit(140, "kg"),
  3084. name: "Side",
  3085. image: {
  3086. source: "./media/characters/sosha/side.svg",
  3087. bottom: 0.042
  3088. }
  3089. },
  3090. },
  3091. [
  3092. {
  3093. name: "Normal",
  3094. height: math.unit(12, "feet"),
  3095. default: true
  3096. }
  3097. ]
  3098. ))
  3099. characterMakers.push(() => makeCharacter(
  3100. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3101. {
  3102. side: {
  3103. height: math.unit(5 + 5 / 12, "feet"),
  3104. weight: math.unit(170, "kg"),
  3105. name: "Side",
  3106. image: {
  3107. source: "./media/characters/runnola/side.svg",
  3108. extra: 741 / 448,
  3109. bottom: 0.05
  3110. }
  3111. },
  3112. },
  3113. [
  3114. {
  3115. name: "Small",
  3116. height: math.unit(3, "feet")
  3117. },
  3118. {
  3119. name: "Normal",
  3120. height: math.unit(5 + 5 / 12, "feet"),
  3121. default: true
  3122. },
  3123. {
  3124. name: "Big",
  3125. height: math.unit(10, "feet")
  3126. },
  3127. ]
  3128. ))
  3129. characterMakers.push(() => makeCharacter(
  3130. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3131. {
  3132. front: {
  3133. height: math.unit(2, "meter"),
  3134. weight: math.unit(50, "kg"),
  3135. name: "Front",
  3136. image: {
  3137. source: "./media/characters/kurribird/front.svg",
  3138. bottom: 0.015
  3139. }
  3140. },
  3141. frontAlt: {
  3142. height: math.unit(1.5, "meter"),
  3143. weight: math.unit(50, "kg"),
  3144. name: "Front (Alt)",
  3145. image: {
  3146. source: "./media/characters/kurribird/front-alt.svg",
  3147. extra: 1.45
  3148. }
  3149. },
  3150. },
  3151. [
  3152. {
  3153. name: "Normal",
  3154. height: math.unit(7, "feet")
  3155. },
  3156. {
  3157. name: "Big",
  3158. height: math.unit(12, "feet"),
  3159. default: true
  3160. },
  3161. {
  3162. name: "Macro",
  3163. height: math.unit(1500, "feet")
  3164. },
  3165. {
  3166. name: "Megamacro",
  3167. height: math.unit(2, "miles")
  3168. }
  3169. ]
  3170. ))
  3171. characterMakers.push(() => makeCharacter(
  3172. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3173. {
  3174. front: {
  3175. height: math.unit(2, "meter"),
  3176. weight: math.unit(80, "kg"),
  3177. name: "Front",
  3178. image: {
  3179. source: "./media/characters/elbial/front.svg",
  3180. extra: 1643 / 1556,
  3181. bottom: 60.2 / 1696
  3182. }
  3183. },
  3184. side: {
  3185. height: math.unit(2, "meter"),
  3186. weight: math.unit(80, "kg"),
  3187. name: "Side",
  3188. image: {
  3189. source: "./media/characters/elbial/side.svg",
  3190. extra: 1630 / 1565,
  3191. bottom: 71.5 / 1697
  3192. }
  3193. },
  3194. back: {
  3195. height: math.unit(2, "meter"),
  3196. weight: math.unit(80, "kg"),
  3197. name: "Back",
  3198. image: {
  3199. source: "./media/characters/elbial/back.svg",
  3200. extra: 1668 / 1595,
  3201. bottom: 5.6 / 1672
  3202. }
  3203. },
  3204. frontDressed: {
  3205. height: math.unit(2, "meter"),
  3206. weight: math.unit(80, "kg"),
  3207. name: "Front (Dressed)",
  3208. image: {
  3209. source: "./media/characters/elbial/front-dressed.svg",
  3210. extra: 1653 / 1584,
  3211. bottom: 57 / 1708
  3212. }
  3213. },
  3214. genitals: {
  3215. height: math.unit(2 / 3.367, "meter"),
  3216. name: "Genitals",
  3217. image: {
  3218. source: "./media/characters/elbial/genitals.svg"
  3219. }
  3220. },
  3221. },
  3222. [
  3223. {
  3224. name: "Large",
  3225. height: math.unit(100, "feet")
  3226. },
  3227. {
  3228. name: "Macro",
  3229. height: math.unit(500, "feet"),
  3230. default: true
  3231. },
  3232. {
  3233. name: "Megamacro",
  3234. height: math.unit(10, "miles")
  3235. },
  3236. {
  3237. name: "Gigamacro",
  3238. height: math.unit(25000, "miles")
  3239. },
  3240. {
  3241. name: "Full-Size",
  3242. height: math.unit(8000000, "gigaparsecs")
  3243. }
  3244. ]
  3245. ))
  3246. characterMakers.push(() => makeCharacter(
  3247. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3248. {
  3249. front: {
  3250. height: math.unit(2, "meter"),
  3251. weight: math.unit(60, "kg"),
  3252. name: "Front",
  3253. image: {
  3254. source: "./media/characters/noah/front.svg"
  3255. }
  3256. },
  3257. talons: {
  3258. height: math.unit(0.315, "meter"),
  3259. name: "Talons",
  3260. image: {
  3261. source: "./media/characters/noah/talons.svg"
  3262. }
  3263. }
  3264. },
  3265. [
  3266. {
  3267. name: "Large",
  3268. height: math.unit(50, "feet")
  3269. },
  3270. {
  3271. name: "Macro",
  3272. height: math.unit(750, "feet"),
  3273. default: true
  3274. },
  3275. {
  3276. name: "Megamacro",
  3277. height: math.unit(50, "miles")
  3278. },
  3279. {
  3280. name: "Gigamacro",
  3281. height: math.unit(100000, "miles")
  3282. },
  3283. {
  3284. name: "Full-Size",
  3285. height: math.unit(3000000000, "miles")
  3286. }
  3287. ]
  3288. ))
  3289. characterMakers.push(() => makeCharacter(
  3290. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3291. {
  3292. front: {
  3293. height: math.unit(2, "meter"),
  3294. weight: math.unit(80, "kg"),
  3295. name: "Front",
  3296. image: {
  3297. source: "./media/characters/natalya/front.svg"
  3298. }
  3299. },
  3300. back: {
  3301. height: math.unit(2, "meter"),
  3302. weight: math.unit(80, "kg"),
  3303. name: "Back",
  3304. image: {
  3305. source: "./media/characters/natalya/back.svg"
  3306. }
  3307. }
  3308. },
  3309. [
  3310. {
  3311. name: "Normal",
  3312. height: math.unit(150, "feet"),
  3313. default: true
  3314. },
  3315. {
  3316. name: "Megamacro",
  3317. height: math.unit(5, "miles")
  3318. },
  3319. {
  3320. name: "Full-Size",
  3321. height: math.unit(600, "kiloparsecs")
  3322. }
  3323. ]
  3324. ))
  3325. characterMakers.push(() => makeCharacter(
  3326. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3327. {
  3328. front: {
  3329. height: math.unit(2, "meter"),
  3330. weight: math.unit(50, "kg"),
  3331. name: "Front",
  3332. image: {
  3333. source: "./media/characters/erestrebah/front.svg",
  3334. extra: 208 / 193,
  3335. bottom: 0.055
  3336. }
  3337. },
  3338. back: {
  3339. height: math.unit(2, "meter"),
  3340. weight: math.unit(50, "kg"),
  3341. name: "Back",
  3342. image: {
  3343. source: "./media/characters/erestrebah/back.svg",
  3344. extra: 1.3
  3345. }
  3346. }
  3347. },
  3348. [
  3349. {
  3350. name: "Normal",
  3351. height: math.unit(10, "feet")
  3352. },
  3353. {
  3354. name: "Large",
  3355. height: math.unit(50, "feet"),
  3356. default: true
  3357. },
  3358. {
  3359. name: "Macro",
  3360. height: math.unit(300, "feet")
  3361. },
  3362. {
  3363. name: "Macro+",
  3364. height: math.unit(750, "feet")
  3365. },
  3366. {
  3367. name: "Megamacro",
  3368. height: math.unit(3, "miles")
  3369. }
  3370. ]
  3371. ))
  3372. characterMakers.push(() => makeCharacter(
  3373. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3374. {
  3375. front: {
  3376. height: math.unit(2, "meter"),
  3377. weight: math.unit(80, "kg"),
  3378. name: "Front",
  3379. image: {
  3380. source: "./media/characters/jennifer/front.svg",
  3381. bottom: 0.11,
  3382. extra: 1.16
  3383. }
  3384. },
  3385. frontAlt: {
  3386. height: math.unit(2, "meter"),
  3387. weight: math.unit(80, "kg"),
  3388. name: "Front (Alt)",
  3389. image: {
  3390. source: "./media/characters/jennifer/front-alt.svg"
  3391. }
  3392. }
  3393. },
  3394. [
  3395. {
  3396. name: "Canon Height",
  3397. height: math.unit(120, "feet"),
  3398. default: true
  3399. },
  3400. {
  3401. name: "Macro+",
  3402. height: math.unit(300, "feet")
  3403. },
  3404. {
  3405. name: "Megamacro",
  3406. height: math.unit(20000, "feet")
  3407. }
  3408. ]
  3409. ))
  3410. characterMakers.push(() => makeCharacter(
  3411. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3412. {
  3413. front: {
  3414. height: math.unit(2, "meter"),
  3415. weight: math.unit(50, "kg"),
  3416. name: "Front",
  3417. image: {
  3418. source: "./media/characters/kalista/front.svg",
  3419. extra: 1947 / 1700,
  3420. bottom: 76.6 / 1412.98
  3421. }
  3422. },
  3423. back: {
  3424. height: math.unit(2, "meter"),
  3425. weight: math.unit(50, "kg"),
  3426. name: "Back",
  3427. image: {
  3428. source: "./media/characters/kalista/back.svg",
  3429. extra: 1366 / 1156,
  3430. bottom: 33.9 / 1362.78
  3431. }
  3432. }
  3433. },
  3434. [
  3435. {
  3436. name: "Uncomfortably Small",
  3437. height: math.unit(10, "feet")
  3438. },
  3439. {
  3440. name: "Small",
  3441. height: math.unit(30, "feet")
  3442. },
  3443. {
  3444. name: "Macro",
  3445. height: math.unit(100, "feet"),
  3446. default: true
  3447. },
  3448. {
  3449. name: "Macro+",
  3450. height: math.unit(2000, "feet")
  3451. },
  3452. {
  3453. name: "True Form",
  3454. height: math.unit(8924, "miles")
  3455. }
  3456. ]
  3457. ))
  3458. characterMakers.push(() => makeCharacter(
  3459. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3460. {
  3461. front: {
  3462. height: math.unit(2, "meter"),
  3463. weight: math.unit(120, "kg"),
  3464. name: "Front",
  3465. image: {
  3466. source: "./media/characters/ggv/front.svg"
  3467. }
  3468. },
  3469. side: {
  3470. height: math.unit(2, "meter"),
  3471. weight: math.unit(120, "kg"),
  3472. name: "Side",
  3473. image: {
  3474. source: "./media/characters/ggv/side.svg"
  3475. }
  3476. }
  3477. },
  3478. [
  3479. {
  3480. name: "Extremely Puny",
  3481. height: math.unit(9 + 5 / 12, "feet")
  3482. },
  3483. {
  3484. name: "Horribly Small",
  3485. height: math.unit(47.7, "miles"),
  3486. default: true
  3487. },
  3488. {
  3489. name: "Reasonably Sized",
  3490. height: math.unit(25000, "parsecs")
  3491. },
  3492. {
  3493. name: "Slightly Uncompressed",
  3494. height: math.unit(7.77e31, "parsecs")
  3495. },
  3496. {
  3497. name: "Omniversal",
  3498. height: math.unit(1e300, "meters")
  3499. },
  3500. ]
  3501. ))
  3502. characterMakers.push(() => makeCharacter(
  3503. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3504. {
  3505. front: {
  3506. height: math.unit(2, "meter"),
  3507. weight: math.unit(75, "lb"),
  3508. name: "Front",
  3509. image: {
  3510. source: "./media/characters/napalm/front.svg"
  3511. }
  3512. },
  3513. back: {
  3514. height: math.unit(2, "meter"),
  3515. weight: math.unit(75, "lb"),
  3516. name: "Back",
  3517. image: {
  3518. source: "./media/characters/napalm/back.svg"
  3519. }
  3520. }
  3521. },
  3522. [
  3523. {
  3524. name: "Standard",
  3525. height: math.unit(55, "feet"),
  3526. default: true
  3527. }
  3528. ]
  3529. ))
  3530. characterMakers.push(() => makeCharacter(
  3531. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3532. {
  3533. front: {
  3534. height: math.unit(7 + 5 / 6, "feet"),
  3535. weight: math.unit(325, "lb"),
  3536. name: "Front",
  3537. image: {
  3538. source: "./media/characters/asana/front.svg",
  3539. extra: 1133 / 1060,
  3540. bottom: 15.2 / 1148.6
  3541. }
  3542. },
  3543. back: {
  3544. height: math.unit(7 + 5 / 6, "feet"),
  3545. weight: math.unit(325, "lb"),
  3546. name: "Back",
  3547. image: {
  3548. source: "./media/characters/asana/back.svg",
  3549. extra: 1114 / 1043,
  3550. bottom: 5 / 1120
  3551. }
  3552. },
  3553. dressedDark: {
  3554. height: math.unit(7 + 5 / 6, "feet"),
  3555. weight: math.unit(325, "lb"),
  3556. name: "Dressed (Dark)",
  3557. image: {
  3558. source: "./media/characters/asana/dressed-dark.svg",
  3559. extra: 1133 / 1060,
  3560. bottom: 15.2 / 1148.6
  3561. }
  3562. },
  3563. dressedLight: {
  3564. height: math.unit(7 + 5 / 6, "feet"),
  3565. weight: math.unit(325, "lb"),
  3566. name: "Dressed (Light)",
  3567. image: {
  3568. source: "./media/characters/asana/dressed-light.svg",
  3569. extra: 1133 / 1060,
  3570. bottom: 15.2 / 1148.6
  3571. }
  3572. },
  3573. },
  3574. [
  3575. {
  3576. name: "Standard",
  3577. height: math.unit(7 + 5 / 6, "feet"),
  3578. default: true
  3579. },
  3580. {
  3581. name: "Large",
  3582. height: math.unit(10, "meters")
  3583. },
  3584. {
  3585. name: "Macro",
  3586. height: math.unit(2500, "meters")
  3587. },
  3588. {
  3589. name: "Megamacro",
  3590. height: math.unit(5e6, "meters")
  3591. },
  3592. {
  3593. name: "Examacro",
  3594. height: math.unit(5e12, "lightyears")
  3595. },
  3596. {
  3597. name: "Max Size",
  3598. height: math.unit(1e31, "lightyears")
  3599. }
  3600. ]
  3601. ))
  3602. characterMakers.push(() => makeCharacter(
  3603. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3604. {
  3605. front: {
  3606. height: math.unit(2, "meter"),
  3607. weight: math.unit(60, "kg"),
  3608. name: "Front",
  3609. image: {
  3610. source: "./media/characters/ebony/front.svg",
  3611. bottom: 0.03,
  3612. extra: 1045 / 810 + 0.03
  3613. }
  3614. },
  3615. side: {
  3616. height: math.unit(2, "meter"),
  3617. weight: math.unit(60, "kg"),
  3618. name: "Side",
  3619. image: {
  3620. source: "./media/characters/ebony/side.svg",
  3621. bottom: 0.03,
  3622. extra: 1045 / 810 + 0.03
  3623. }
  3624. },
  3625. back: {
  3626. height: math.unit(2, "meter"),
  3627. weight: math.unit(60, "kg"),
  3628. name: "Back",
  3629. image: {
  3630. source: "./media/characters/ebony/back.svg",
  3631. bottom: 0.01,
  3632. extra: 1045 / 810 + 0.01
  3633. }
  3634. },
  3635. },
  3636. [
  3637. // TODO check why I did this lol
  3638. {
  3639. name: "Standard",
  3640. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3641. default: true
  3642. },
  3643. {
  3644. name: "Macro",
  3645. height: math.unit(200, "feet")
  3646. },
  3647. {
  3648. name: "Gigamacro",
  3649. height: math.unit(13000, "km")
  3650. }
  3651. ]
  3652. ))
  3653. characterMakers.push(() => makeCharacter(
  3654. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3655. {
  3656. front: {
  3657. height: math.unit(6, "feet"),
  3658. weight: math.unit(175, "lb"),
  3659. name: "Front",
  3660. image: {
  3661. source: "./media/characters/mountain/front.svg",
  3662. extra: 972 / 955,
  3663. bottom: 64 / 1036.6
  3664. }
  3665. },
  3666. back: {
  3667. height: math.unit(6, "feet"),
  3668. weight: math.unit(175, "lb"),
  3669. name: "Back",
  3670. image: {
  3671. source: "./media/characters/mountain/back.svg",
  3672. extra: 970 / 950,
  3673. bottom: 28.25 / 999
  3674. }
  3675. },
  3676. },
  3677. [
  3678. {
  3679. name: "Large",
  3680. height: math.unit(20, "meters")
  3681. },
  3682. {
  3683. name: "Macro",
  3684. height: math.unit(300, "meters")
  3685. },
  3686. {
  3687. name: "Gigamacro",
  3688. height: math.unit(10000, "km"),
  3689. default: true
  3690. },
  3691. {
  3692. name: "Examacro",
  3693. height: math.unit(10e9, "lightyears")
  3694. }
  3695. ]
  3696. ))
  3697. characterMakers.push(() => makeCharacter(
  3698. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3699. {
  3700. front: {
  3701. height: math.unit(8, "feet"),
  3702. weight: math.unit(500, "lb"),
  3703. name: "Front",
  3704. image: {
  3705. source: "./media/characters/rick/front.svg"
  3706. }
  3707. }
  3708. },
  3709. [
  3710. {
  3711. name: "Normal",
  3712. height: math.unit(8, "feet"),
  3713. default: true
  3714. },
  3715. {
  3716. name: "Macro",
  3717. height: math.unit(5, "km")
  3718. }
  3719. ]
  3720. ))
  3721. characterMakers.push(() => makeCharacter(
  3722. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3723. {
  3724. front: {
  3725. height: math.unit(8, "feet"),
  3726. weight: math.unit(120, "lb"),
  3727. name: "Front",
  3728. image: {
  3729. source: "./media/characters/ona/front.svg"
  3730. }
  3731. },
  3732. frontAlt: {
  3733. height: math.unit(8, "feet"),
  3734. weight: math.unit(120, "lb"),
  3735. name: "Front (Alt)",
  3736. image: {
  3737. source: "./media/characters/ona/front-alt.svg"
  3738. }
  3739. },
  3740. back: {
  3741. height: math.unit(8, "feet"),
  3742. weight: math.unit(120, "lb"),
  3743. name: "Back",
  3744. image: {
  3745. source: "./media/characters/ona/back.svg"
  3746. }
  3747. },
  3748. foot: {
  3749. height: math.unit(1.1, "feet"),
  3750. name: "Foot",
  3751. image: {
  3752. source: "./media/characters/ona/foot.svg"
  3753. }
  3754. }
  3755. },
  3756. [
  3757. {
  3758. name: "Megamacro",
  3759. height: math.unit(70, "km"),
  3760. default: true
  3761. },
  3762. {
  3763. name: "Gigamacro",
  3764. height: math.unit(681818, "miles")
  3765. },
  3766. {
  3767. name: "Examacro",
  3768. height: math.unit(3800000, "lightyears")
  3769. },
  3770. ]
  3771. ))
  3772. characterMakers.push(() => makeCharacter(
  3773. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3774. {
  3775. front: {
  3776. height: math.unit(12, "feet"),
  3777. weight: math.unit(3000, "lb"),
  3778. name: "Front",
  3779. image: {
  3780. source: "./media/characters/mech/front.svg",
  3781. extra: 2900 / 2770,
  3782. bottom: 110 / 3010
  3783. }
  3784. },
  3785. back: {
  3786. height: math.unit(12, "feet"),
  3787. weight: math.unit(3000, "lb"),
  3788. name: "Back",
  3789. image: {
  3790. source: "./media/characters/mech/back.svg",
  3791. extra: 3011 / 2890,
  3792. bottom: 94 / 3105
  3793. }
  3794. },
  3795. maw: {
  3796. height: math.unit(3.07, "feet"),
  3797. name: "Maw",
  3798. image: {
  3799. source: "./media/characters/mech/maw.svg"
  3800. }
  3801. },
  3802. head: {
  3803. height: math.unit(2.82, "feet"),
  3804. name: "Head",
  3805. image: {
  3806. source: "./media/characters/mech/head.svg"
  3807. }
  3808. },
  3809. dick: {
  3810. height: math.unit(1.43, "feet"),
  3811. name: "Dick",
  3812. image: {
  3813. source: "./media/characters/mech/dick.svg"
  3814. }
  3815. },
  3816. },
  3817. [
  3818. {
  3819. name: "Normal",
  3820. height: math.unit(12, "feet")
  3821. },
  3822. {
  3823. name: "Macro",
  3824. height: math.unit(300, "feet"),
  3825. default: true
  3826. },
  3827. {
  3828. name: "Macro+",
  3829. height: math.unit(1500, "feet")
  3830. },
  3831. ]
  3832. ))
  3833. characterMakers.push(() => makeCharacter(
  3834. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3835. {
  3836. front: {
  3837. height: math.unit(1.3, "meter"),
  3838. weight: math.unit(30, "kg"),
  3839. name: "Front",
  3840. image: {
  3841. source: "./media/characters/gregory/front.svg",
  3842. }
  3843. }
  3844. },
  3845. [
  3846. {
  3847. name: "Normal",
  3848. height: math.unit(1.3, "meter"),
  3849. default: true
  3850. },
  3851. {
  3852. name: "Macro",
  3853. height: math.unit(20, "meter")
  3854. }
  3855. ]
  3856. ))
  3857. characterMakers.push(() => makeCharacter(
  3858. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3859. {
  3860. front: {
  3861. height: math.unit(2.8, "meter"),
  3862. weight: math.unit(200, "kg"),
  3863. name: "Front",
  3864. image: {
  3865. source: "./media/characters/elory/front.svg",
  3866. }
  3867. }
  3868. },
  3869. [
  3870. {
  3871. name: "Normal",
  3872. height: math.unit(2.8, "meter"),
  3873. default: true
  3874. },
  3875. {
  3876. name: "Macro",
  3877. height: math.unit(38, "meter")
  3878. }
  3879. ]
  3880. ))
  3881. characterMakers.push(() => makeCharacter(
  3882. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3883. {
  3884. front: {
  3885. height: math.unit(470, "feet"),
  3886. weight: math.unit(924, "tons"),
  3887. name: "Front",
  3888. image: {
  3889. source: "./media/characters/angelpatamon/front.svg",
  3890. }
  3891. }
  3892. },
  3893. [
  3894. {
  3895. name: "Normal",
  3896. height: math.unit(470, "feet"),
  3897. default: true
  3898. },
  3899. {
  3900. name: "Deity Size I",
  3901. height: math.unit(28651.2, "km")
  3902. },
  3903. {
  3904. name: "Deity Size II",
  3905. height: math.unit(171907.2, "km")
  3906. }
  3907. ]
  3908. ))
  3909. characterMakers.push(() => makeCharacter(
  3910. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3911. {
  3912. side: {
  3913. height: math.unit(7.2, "meter"),
  3914. weight: math.unit(8.2, "tons"),
  3915. name: "Side",
  3916. image: {
  3917. source: "./media/characters/cryae/side.svg",
  3918. extra: 3500 / 1500
  3919. }
  3920. }
  3921. },
  3922. [
  3923. {
  3924. name: "Normal",
  3925. height: math.unit(7.2, "meter"),
  3926. default: true
  3927. }
  3928. ]
  3929. ))
  3930. characterMakers.push(() => makeCharacter(
  3931. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3932. {
  3933. front: {
  3934. height: math.unit(6, "feet"),
  3935. weight: math.unit(175, "lb"),
  3936. name: "Front",
  3937. image: {
  3938. source: "./media/characters/xera/front.svg",
  3939. extra: 2377 / 1972,
  3940. bottom: 75.5 / 2452
  3941. }
  3942. },
  3943. side: {
  3944. height: math.unit(6, "feet"),
  3945. weight: math.unit(175, "lb"),
  3946. name: "Side",
  3947. image: {
  3948. source: "./media/characters/xera/side.svg",
  3949. extra: 2345 / 2019,
  3950. bottom: 39.7 / 2384
  3951. }
  3952. },
  3953. back: {
  3954. height: math.unit(6, "feet"),
  3955. weight: math.unit(175, "lb"),
  3956. name: "Back",
  3957. image: {
  3958. source: "./media/characters/xera/back.svg",
  3959. extra: 2095 / 1984,
  3960. bottom: 67 / 2166
  3961. }
  3962. },
  3963. },
  3964. [
  3965. {
  3966. name: "Small",
  3967. height: math.unit(10, "feet")
  3968. },
  3969. {
  3970. name: "Macro",
  3971. height: math.unit(500, "meters"),
  3972. default: true
  3973. },
  3974. {
  3975. name: "Macro+",
  3976. height: math.unit(10, "km")
  3977. },
  3978. {
  3979. name: "Gigamacro",
  3980. height: math.unit(25000, "km")
  3981. },
  3982. {
  3983. name: "Teramacro",
  3984. height: math.unit(3e6, "km")
  3985. }
  3986. ]
  3987. ))
  3988. characterMakers.push(() => makeCharacter(
  3989. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3990. {
  3991. front: {
  3992. height: math.unit(6, "feet"),
  3993. weight: math.unit(175, "lb"),
  3994. name: "Front",
  3995. image: {
  3996. source: "./media/characters/nebula/front.svg",
  3997. extra: 2566 / 2362,
  3998. bottom: 81 / 2644
  3999. }
  4000. }
  4001. },
  4002. [
  4003. {
  4004. name: "Small",
  4005. height: math.unit(4.5, "meters")
  4006. },
  4007. {
  4008. name: "Macro",
  4009. height: math.unit(1500, "meters"),
  4010. default: true
  4011. },
  4012. {
  4013. name: "Megamacro",
  4014. height: math.unit(150, "km")
  4015. },
  4016. {
  4017. name: "Gigamacro",
  4018. height: math.unit(27000, "km")
  4019. }
  4020. ]
  4021. ))
  4022. characterMakers.push(() => makeCharacter(
  4023. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4024. {
  4025. front: {
  4026. height: math.unit(6, "feet"),
  4027. weight: math.unit(225, "lb"),
  4028. name: "Front",
  4029. image: {
  4030. source: "./media/characters/abysgar/front.svg"
  4031. }
  4032. }
  4033. },
  4034. [
  4035. {
  4036. name: "Small",
  4037. height: math.unit(4.5, "meters")
  4038. },
  4039. {
  4040. name: "Macro",
  4041. height: math.unit(1250, "meters"),
  4042. default: true
  4043. },
  4044. {
  4045. name: "Megamacro",
  4046. height: math.unit(125, "km")
  4047. },
  4048. {
  4049. name: "Gigamacro",
  4050. height: math.unit(26000, "km")
  4051. }
  4052. ]
  4053. ))
  4054. characterMakers.push(() => makeCharacter(
  4055. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4056. {
  4057. front: {
  4058. height: math.unit(6, "feet"),
  4059. weight: math.unit(180, "lb"),
  4060. name: "Front",
  4061. image: {
  4062. source: "./media/characters/yakuz/front.svg"
  4063. }
  4064. }
  4065. },
  4066. [
  4067. {
  4068. name: "Small",
  4069. height: math.unit(5, "meters")
  4070. },
  4071. {
  4072. name: "Macro",
  4073. height: math.unit(1500, "meters"),
  4074. default: true
  4075. },
  4076. {
  4077. name: "Megamacro",
  4078. height: math.unit(200, "km")
  4079. },
  4080. {
  4081. name: "Gigamacro",
  4082. height: math.unit(100000, "km")
  4083. }
  4084. ]
  4085. ))
  4086. characterMakers.push(() => makeCharacter(
  4087. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4088. {
  4089. front: {
  4090. height: math.unit(6, "feet"),
  4091. weight: math.unit(175, "lb"),
  4092. name: "Front",
  4093. image: {
  4094. source: "./media/characters/mirova/front.svg",
  4095. extra: 3334 / 3071,
  4096. bottom: 42 / 3375.6
  4097. }
  4098. }
  4099. },
  4100. [
  4101. {
  4102. name: "Small",
  4103. height: math.unit(5, "meters")
  4104. },
  4105. {
  4106. name: "Macro",
  4107. height: math.unit(900, "meters"),
  4108. default: true
  4109. },
  4110. {
  4111. name: "Megamacro",
  4112. height: math.unit(135, "km")
  4113. },
  4114. {
  4115. name: "Gigamacro",
  4116. height: math.unit(20000, "km")
  4117. }
  4118. ]
  4119. ))
  4120. characterMakers.push(() => makeCharacter(
  4121. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4122. {
  4123. side: {
  4124. height: math.unit(28.35, "feet"),
  4125. weight: math.unit(99.75, "tons"),
  4126. name: "Side",
  4127. image: {
  4128. source: "./media/characters/asana-mech/side.svg",
  4129. extra: 923 / 699,
  4130. bottom: 50 / 975
  4131. }
  4132. },
  4133. chaingun: {
  4134. height: math.unit(7, "feet"),
  4135. weight: math.unit(2400, "lb"),
  4136. name: "Chaingun",
  4137. image: {
  4138. source: "./media/characters/asana-mech/chaingun.svg"
  4139. }
  4140. },
  4141. laser: {
  4142. height: math.unit(7.12, "feet"),
  4143. weight: math.unit(2000, "lb"),
  4144. name: "Laser",
  4145. image: {
  4146. source: "./media/characters/asana-mech/laser.svg"
  4147. }
  4148. },
  4149. },
  4150. [
  4151. {
  4152. name: "Normal",
  4153. height: math.unit(28.35, "feet"),
  4154. default: true
  4155. },
  4156. {
  4157. name: "Macro",
  4158. height: math.unit(2500, "feet")
  4159. },
  4160. {
  4161. name: "Megamacro",
  4162. height: math.unit(25, "miles")
  4163. },
  4164. {
  4165. name: "Examacro",
  4166. height: math.unit(6e8, "lightyears")
  4167. },
  4168. ]
  4169. ))
  4170. characterMakers.push(() => makeCharacter(
  4171. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4172. {
  4173. front: {
  4174. height: math.unit(5, "meters"),
  4175. weight: math.unit(1000, "kg"),
  4176. name: "Front",
  4177. image: {
  4178. source: "./media/characters/asche/front.svg",
  4179. extra: 1258 / 1190,
  4180. bottom: 47 / 1305
  4181. }
  4182. },
  4183. frontUnderwear: {
  4184. height: math.unit(5, "meters"),
  4185. weight: math.unit(1000, "kg"),
  4186. name: "Front (Underwear)",
  4187. image: {
  4188. source: "./media/characters/asche/front-underwear.svg",
  4189. extra: 1258 / 1190,
  4190. bottom: 47 / 1305
  4191. }
  4192. },
  4193. frontDressed: {
  4194. height: math.unit(5, "meters"),
  4195. weight: math.unit(1000, "kg"),
  4196. name: "Front (Dressed)",
  4197. image: {
  4198. source: "./media/characters/asche/front-dressed.svg",
  4199. extra: 1258 / 1190,
  4200. bottom: 47 / 1305
  4201. }
  4202. },
  4203. frontArmor: {
  4204. height: math.unit(5, "meters"),
  4205. weight: math.unit(1000, "kg"),
  4206. name: "Front (Armored)",
  4207. image: {
  4208. source: "./media/characters/asche/front-armored.svg",
  4209. extra: 1374 / 1308,
  4210. bottom: 23 / 1397
  4211. }
  4212. },
  4213. mp724: {
  4214. height: math.unit(0.96, "meters"),
  4215. weight: math.unit(38, "kg"),
  4216. name: "H&K MP724",
  4217. image: {
  4218. source: "./media/characters/asche/h&k-mp724.svg"
  4219. }
  4220. },
  4221. side: {
  4222. height: math.unit(5, "meters"),
  4223. weight: math.unit(1000, "kg"),
  4224. name: "Side",
  4225. image: {
  4226. source: "./media/characters/asche/side.svg",
  4227. extra: 1717 / 1609,
  4228. bottom: 0.005
  4229. }
  4230. },
  4231. back: {
  4232. height: math.unit(5, "meters"),
  4233. weight: math.unit(1000, "kg"),
  4234. name: "Back",
  4235. image: {
  4236. source: "./media/characters/asche/back.svg",
  4237. extra: 1570 / 1501
  4238. }
  4239. },
  4240. },
  4241. [
  4242. {
  4243. name: "DEFCON 5",
  4244. height: math.unit(5, "meters")
  4245. },
  4246. {
  4247. name: "DEFCON 4",
  4248. height: math.unit(500, "meters"),
  4249. default: true
  4250. },
  4251. {
  4252. name: "DEFCON 3",
  4253. height: math.unit(5, "km")
  4254. },
  4255. {
  4256. name: "DEFCON 2",
  4257. height: math.unit(500, "km")
  4258. },
  4259. {
  4260. name: "DEFCON 1",
  4261. height: math.unit(500000, "km")
  4262. },
  4263. {
  4264. name: "DEFCON 0",
  4265. height: math.unit(3, "gigaparsecs")
  4266. },
  4267. ]
  4268. ))
  4269. characterMakers.push(() => makeCharacter(
  4270. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4271. {
  4272. front: {
  4273. height: math.unit(2, "meters"),
  4274. weight: math.unit(76, "kg"),
  4275. name: "Front",
  4276. image: {
  4277. source: "./media/characters/gale/front.svg"
  4278. }
  4279. },
  4280. frontAlt1: {
  4281. height: math.unit(2, "meters"),
  4282. weight: math.unit(76, "kg"),
  4283. name: "Front (Alt 1)",
  4284. image: {
  4285. source: "./media/characters/gale/front-alt-1.svg"
  4286. }
  4287. },
  4288. frontAlt2: {
  4289. height: math.unit(2, "meters"),
  4290. weight: math.unit(76, "kg"),
  4291. name: "Front (Alt 2)",
  4292. image: {
  4293. source: "./media/characters/gale/front-alt-2.svg"
  4294. }
  4295. },
  4296. },
  4297. [
  4298. {
  4299. name: "Normal",
  4300. height: math.unit(7, "feet")
  4301. },
  4302. {
  4303. name: "Macro",
  4304. height: math.unit(150, "feet"),
  4305. default: true
  4306. },
  4307. {
  4308. name: "Macro+",
  4309. height: math.unit(300, "feet")
  4310. },
  4311. ]
  4312. ))
  4313. characterMakers.push(() => makeCharacter(
  4314. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4315. {
  4316. front: {
  4317. height: math.unit(2, "meters"),
  4318. weight: math.unit(76, "kg"),
  4319. name: "Front",
  4320. image: {
  4321. source: "./media/characters/draylen/front.svg"
  4322. }
  4323. }
  4324. },
  4325. [
  4326. {
  4327. name: "Macro",
  4328. height: math.unit(150, "feet"),
  4329. default: true
  4330. }
  4331. ]
  4332. ))
  4333. characterMakers.push(() => makeCharacter(
  4334. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4335. {
  4336. front: {
  4337. height: math.unit(7 + 9 / 12, "feet"),
  4338. weight: math.unit(379, "lbs"),
  4339. name: "Front",
  4340. image: {
  4341. source: "./media/characters/chez/front.svg"
  4342. }
  4343. },
  4344. side: {
  4345. height: math.unit(7 + 9 / 12, "feet"),
  4346. weight: math.unit(379, "lbs"),
  4347. name: "Side",
  4348. image: {
  4349. source: "./media/characters/chez/side.svg"
  4350. }
  4351. }
  4352. },
  4353. [
  4354. {
  4355. name: "Normal",
  4356. height: math.unit(7 + 9 / 12, "feet"),
  4357. default: true
  4358. },
  4359. {
  4360. name: "God King",
  4361. height: math.unit(9750000, "meters")
  4362. }
  4363. ]
  4364. ))
  4365. characterMakers.push(() => makeCharacter(
  4366. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4367. {
  4368. front: {
  4369. height: math.unit(6, "feet"),
  4370. weight: math.unit(275, "lbs"),
  4371. name: "Front",
  4372. image: {
  4373. source: "./media/characters/kaylum/front.svg",
  4374. bottom: 0.01,
  4375. extra: 1166 / 1031
  4376. }
  4377. },
  4378. frontWingless: {
  4379. height: math.unit(6, "feet"),
  4380. weight: math.unit(275, "lbs"),
  4381. name: "Front (Wingless)",
  4382. image: {
  4383. source: "./media/characters/kaylum/front-wingless.svg",
  4384. bottom: 0.01,
  4385. extra: 1117 / 1031
  4386. }
  4387. }
  4388. },
  4389. [
  4390. {
  4391. name: "Normal",
  4392. height: math.unit(3.05, "meters")
  4393. },
  4394. {
  4395. name: "Master",
  4396. height: math.unit(5.5, "meters")
  4397. },
  4398. {
  4399. name: "Rampage",
  4400. height: math.unit(19, "meters")
  4401. },
  4402. {
  4403. name: "Macro Lite",
  4404. height: math.unit(37, "meters")
  4405. },
  4406. {
  4407. name: "Hyper Predator",
  4408. height: math.unit(61, "meters")
  4409. },
  4410. {
  4411. name: "Macro",
  4412. height: math.unit(138, "meters"),
  4413. default: true
  4414. }
  4415. ]
  4416. ))
  4417. characterMakers.push(() => makeCharacter(
  4418. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4419. {
  4420. front: {
  4421. height: math.unit(6, "feet"),
  4422. weight: math.unit(150, "lbs"),
  4423. name: "Front",
  4424. image: {
  4425. source: "./media/characters/geta/front.svg"
  4426. }
  4427. }
  4428. },
  4429. [
  4430. {
  4431. name: "Micro",
  4432. height: math.unit(3, "inches"),
  4433. default: true
  4434. },
  4435. {
  4436. name: "Normal",
  4437. height: math.unit(5 + 5 / 12, "feet")
  4438. }
  4439. ]
  4440. ))
  4441. characterMakers.push(() => makeCharacter(
  4442. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4443. {
  4444. front: {
  4445. height: math.unit(6, "feet"),
  4446. weight: math.unit(300, "lbs"),
  4447. name: "Front",
  4448. image: {
  4449. source: "./media/characters/tyrnn/front.svg"
  4450. }
  4451. }
  4452. },
  4453. [
  4454. {
  4455. name: "Main Height",
  4456. height: math.unit(355, "feet"),
  4457. default: true
  4458. },
  4459. {
  4460. name: "Fave. Height",
  4461. height: math.unit(2400, "feet")
  4462. }
  4463. ]
  4464. ))
  4465. characterMakers.push(() => makeCharacter(
  4466. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4467. {
  4468. front: {
  4469. height: math.unit(6, "feet"),
  4470. weight: math.unit(300, "lbs"),
  4471. name: "Front",
  4472. image: {
  4473. source: "./media/characters/appledectomy/front.svg"
  4474. }
  4475. }
  4476. },
  4477. [
  4478. {
  4479. name: "Macro",
  4480. height: math.unit(2500, "feet")
  4481. },
  4482. {
  4483. name: "Megamacro",
  4484. height: math.unit(50, "miles"),
  4485. default: true
  4486. },
  4487. {
  4488. name: "Gigamacro",
  4489. height: math.unit(5000, "miles")
  4490. },
  4491. {
  4492. name: "Teramacro",
  4493. height: math.unit(250000, "miles")
  4494. },
  4495. ]
  4496. ))
  4497. characterMakers.push(() => makeCharacter(
  4498. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4499. {
  4500. front: {
  4501. height: math.unit(6, "feet"),
  4502. weight: math.unit(200, "lbs"),
  4503. name: "Front",
  4504. image: {
  4505. source: "./media/characters/vulpes/front.svg",
  4506. extra: 573 / 543,
  4507. bottom: 0.033
  4508. }
  4509. },
  4510. side: {
  4511. height: math.unit(6, "feet"),
  4512. weight: math.unit(200, "lbs"),
  4513. name: "Side",
  4514. image: {
  4515. source: "./media/characters/vulpes/side.svg",
  4516. extra: 577 / 549,
  4517. bottom: 11 / 588
  4518. }
  4519. },
  4520. back: {
  4521. height: math.unit(6, "feet"),
  4522. weight: math.unit(200, "lbs"),
  4523. name: "Back",
  4524. image: {
  4525. source: "./media/characters/vulpes/back.svg",
  4526. extra: 573 / 549,
  4527. bottom: 20 / 593
  4528. }
  4529. },
  4530. feet: {
  4531. height: math.unit(1.276, "feet"),
  4532. name: "Feet",
  4533. image: {
  4534. source: "./media/characters/vulpes/feet.svg"
  4535. }
  4536. },
  4537. maw: {
  4538. height: math.unit(1.18, "feet"),
  4539. name: "Maw",
  4540. image: {
  4541. source: "./media/characters/vulpes/maw.svg"
  4542. }
  4543. },
  4544. },
  4545. [
  4546. {
  4547. name: "Micro",
  4548. height: math.unit(2, "inches")
  4549. },
  4550. {
  4551. name: "Normal",
  4552. height: math.unit(6.3, "feet")
  4553. },
  4554. {
  4555. name: "Macro",
  4556. height: math.unit(850, "feet")
  4557. },
  4558. {
  4559. name: "Megamacro",
  4560. height: math.unit(7500, "feet"),
  4561. default: true
  4562. },
  4563. {
  4564. name: "Gigamacro",
  4565. height: math.unit(570000, "miles")
  4566. }
  4567. ]
  4568. ))
  4569. characterMakers.push(() => makeCharacter(
  4570. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4571. {
  4572. front: {
  4573. height: math.unit(6, "feet"),
  4574. weight: math.unit(210, "lbs"),
  4575. name: "Front",
  4576. image: {
  4577. source: "./media/characters/rain-fallen/front.svg"
  4578. }
  4579. },
  4580. side: {
  4581. height: math.unit(6, "feet"),
  4582. weight: math.unit(210, "lbs"),
  4583. name: "Side",
  4584. image: {
  4585. source: "./media/characters/rain-fallen/side.svg"
  4586. }
  4587. },
  4588. back: {
  4589. height: math.unit(6, "feet"),
  4590. weight: math.unit(210, "lbs"),
  4591. name: "Back",
  4592. image: {
  4593. source: "./media/characters/rain-fallen/back.svg"
  4594. }
  4595. },
  4596. feral: {
  4597. height: math.unit(9, "feet"),
  4598. weight: math.unit(700, "lbs"),
  4599. name: "Feral",
  4600. image: {
  4601. source: "./media/characters/rain-fallen/feral.svg"
  4602. }
  4603. },
  4604. },
  4605. [
  4606. {
  4607. name: "Meddling with Mortals",
  4608. height: math.unit(8 + 8/12, "feet")
  4609. },
  4610. {
  4611. name: "Normal",
  4612. height: math.unit(5, "meter")
  4613. },
  4614. {
  4615. name: "Macro",
  4616. height: math.unit(150, "meter"),
  4617. default: true
  4618. },
  4619. {
  4620. name: "Megamacro",
  4621. height: math.unit(278e6, "meter")
  4622. },
  4623. {
  4624. name: "Gigamacro",
  4625. height: math.unit(2e9, "meter")
  4626. },
  4627. {
  4628. name: "Teramacro",
  4629. height: math.unit(8e12, "meter")
  4630. },
  4631. {
  4632. name: "Devourer",
  4633. height: math.unit(14, "zettameters")
  4634. },
  4635. {
  4636. name: "Scarlet King",
  4637. height: math.unit(18, "yottameters")
  4638. },
  4639. {
  4640. name: "Void",
  4641. height: math.unit(1e88, "yottameters")
  4642. }
  4643. ]
  4644. ))
  4645. characterMakers.push(() => makeCharacter(
  4646. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4647. {
  4648. standing: {
  4649. height: math.unit(6, "feet"),
  4650. weight: math.unit(180, "lbs"),
  4651. name: "Standing",
  4652. image: {
  4653. source: "./media/characters/zaakira/standing.svg",
  4654. extra: 1599/1504,
  4655. bottom: 39/1638
  4656. }
  4657. },
  4658. laying: {
  4659. height: math.unit(3, "feet"),
  4660. weight: math.unit(180, "lbs"),
  4661. name: "Laying",
  4662. image: {
  4663. source: "./media/characters/zaakira/laying.svg"
  4664. }
  4665. },
  4666. },
  4667. [
  4668. {
  4669. name: "Normal",
  4670. height: math.unit(12, "feet")
  4671. },
  4672. {
  4673. name: "Macro",
  4674. height: math.unit(279, "feet"),
  4675. default: true
  4676. }
  4677. ]
  4678. ))
  4679. characterMakers.push(() => makeCharacter(
  4680. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4681. {
  4682. femSfw: {
  4683. height: math.unit(8, "feet"),
  4684. weight: math.unit(350, "lb"),
  4685. name: "Fem",
  4686. image: {
  4687. source: "./media/characters/sigvald/fem-sfw.svg",
  4688. extra: 182 / 164,
  4689. bottom: 8.7 / 190.5
  4690. }
  4691. },
  4692. femNsfw: {
  4693. height: math.unit(8, "feet"),
  4694. weight: math.unit(350, "lb"),
  4695. name: "Fem (NSFW)",
  4696. image: {
  4697. source: "./media/characters/sigvald/fem-nsfw.svg",
  4698. extra: 182 / 164,
  4699. bottom: 8.7 / 190.5
  4700. }
  4701. },
  4702. maleNsfw: {
  4703. height: math.unit(8, "feet"),
  4704. weight: math.unit(350, "lb"),
  4705. name: "Male (NSFW)",
  4706. image: {
  4707. source: "./media/characters/sigvald/male-nsfw.svg",
  4708. extra: 182 / 164,
  4709. bottom: 8.7 / 190.5
  4710. }
  4711. },
  4712. hermNsfw: {
  4713. height: math.unit(8, "feet"),
  4714. weight: math.unit(350, "lb"),
  4715. name: "Herm (NSFW)",
  4716. image: {
  4717. source: "./media/characters/sigvald/herm-nsfw.svg",
  4718. extra: 182 / 164,
  4719. bottom: 8.7 / 190.5
  4720. }
  4721. },
  4722. dick: {
  4723. height: math.unit(2.36, "feet"),
  4724. name: "Dick",
  4725. image: {
  4726. source: "./media/characters/sigvald/dick.svg"
  4727. }
  4728. },
  4729. eye: {
  4730. height: math.unit(0.31, "feet"),
  4731. name: "Eye",
  4732. image: {
  4733. source: "./media/characters/sigvald/eye.svg"
  4734. }
  4735. },
  4736. mouth: {
  4737. height: math.unit(0.92, "feet"),
  4738. name: "Mouth",
  4739. image: {
  4740. source: "./media/characters/sigvald/mouth.svg"
  4741. }
  4742. },
  4743. paws: {
  4744. height: math.unit(2.2, "feet"),
  4745. name: "Paws",
  4746. image: {
  4747. source: "./media/characters/sigvald/paws.svg"
  4748. }
  4749. }
  4750. },
  4751. [
  4752. {
  4753. name: "Normal",
  4754. height: math.unit(8, "feet")
  4755. },
  4756. {
  4757. name: "Large",
  4758. height: math.unit(12, "feet")
  4759. },
  4760. {
  4761. name: "Larger",
  4762. height: math.unit(20, "feet")
  4763. },
  4764. {
  4765. name: "Macro",
  4766. height: math.unit(150, "feet")
  4767. },
  4768. {
  4769. name: "Macro+",
  4770. height: math.unit(200, "feet"),
  4771. default: true
  4772. },
  4773. ]
  4774. ))
  4775. characterMakers.push(() => makeCharacter(
  4776. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4777. {
  4778. side: {
  4779. height: math.unit(12, "feet"),
  4780. weight: math.unit(2000, "kg"),
  4781. name: "Side",
  4782. image: {
  4783. source: "./media/characters/scott/side.svg",
  4784. extra: 754 / 724,
  4785. bottom: 0.069
  4786. }
  4787. },
  4788. upright: {
  4789. height: math.unit(12, "feet"),
  4790. weight: math.unit(2000, "kg"),
  4791. name: "Upright",
  4792. image: {
  4793. source: "./media/characters/scott/upright.svg",
  4794. extra: 3881 / 3722,
  4795. bottom: 0.05
  4796. }
  4797. },
  4798. },
  4799. [
  4800. {
  4801. name: "Normal",
  4802. height: math.unit(12, "feet"),
  4803. default: true
  4804. },
  4805. ]
  4806. ))
  4807. characterMakers.push(() => makeCharacter(
  4808. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4809. {
  4810. side: {
  4811. height: math.unit(8, "meters"),
  4812. weight: math.unit(84755, "lbs"),
  4813. name: "Side",
  4814. image: {
  4815. source: "./media/characters/tobias/side.svg",
  4816. extra: 1474 / 1096,
  4817. bottom: 38.9 / 1513.1235
  4818. }
  4819. },
  4820. },
  4821. [
  4822. {
  4823. name: "Normal",
  4824. height: math.unit(8, "meters"),
  4825. default: true
  4826. },
  4827. ]
  4828. ))
  4829. characterMakers.push(() => makeCharacter(
  4830. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4831. {
  4832. front: {
  4833. height: math.unit(5.5, "feet"),
  4834. weight: math.unit(400, "lbs"),
  4835. name: "Front",
  4836. image: {
  4837. source: "./media/characters/kieran/front.svg",
  4838. extra: 2694 / 2364,
  4839. bottom: 217 / 2908
  4840. }
  4841. },
  4842. side: {
  4843. height: math.unit(5.5, "feet"),
  4844. weight: math.unit(400, "lbs"),
  4845. name: "Side",
  4846. image: {
  4847. source: "./media/characters/kieran/side.svg",
  4848. extra: 875 / 777,
  4849. bottom: 84.6 / 959
  4850. }
  4851. },
  4852. },
  4853. [
  4854. {
  4855. name: "Normal",
  4856. height: math.unit(5.5, "feet"),
  4857. default: true
  4858. },
  4859. ]
  4860. ))
  4861. characterMakers.push(() => makeCharacter(
  4862. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4863. {
  4864. side: {
  4865. height: math.unit(2, "meters"),
  4866. weight: math.unit(70, "kg"),
  4867. name: "Side",
  4868. image: {
  4869. source: "./media/characters/sanya/side.svg",
  4870. bottom: 0.02,
  4871. extra: 1.02
  4872. }
  4873. },
  4874. },
  4875. [
  4876. {
  4877. name: "Small",
  4878. height: math.unit(2, "meters")
  4879. },
  4880. {
  4881. name: "Normal",
  4882. height: math.unit(3, "meters")
  4883. },
  4884. {
  4885. name: "Macro",
  4886. height: math.unit(16, "meters"),
  4887. default: true
  4888. },
  4889. ]
  4890. ))
  4891. characterMakers.push(() => makeCharacter(
  4892. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4893. {
  4894. front: {
  4895. height: math.unit(2, "meters"),
  4896. weight: math.unit(120, "kg"),
  4897. name: "Front",
  4898. image: {
  4899. source: "./media/characters/miranda/front.svg",
  4900. extra: 195 / 185,
  4901. bottom: 10.9 / 206.5
  4902. }
  4903. },
  4904. back: {
  4905. height: math.unit(2, "meters"),
  4906. weight: math.unit(120, "kg"),
  4907. name: "Back",
  4908. image: {
  4909. source: "./media/characters/miranda/back.svg",
  4910. extra: 201 / 193,
  4911. bottom: 2.3 / 203.7
  4912. }
  4913. },
  4914. },
  4915. [
  4916. {
  4917. name: "Normal",
  4918. height: math.unit(10, "feet"),
  4919. default: true
  4920. }
  4921. ]
  4922. ))
  4923. characterMakers.push(() => makeCharacter(
  4924. { name: "James", species: ["deer"], tags: ["anthro"] },
  4925. {
  4926. side: {
  4927. height: math.unit(2, "meters"),
  4928. weight: math.unit(100, "kg"),
  4929. name: "Front",
  4930. image: {
  4931. source: "./media/characters/james/front.svg",
  4932. extra: 10 / 8.5
  4933. }
  4934. },
  4935. },
  4936. [
  4937. {
  4938. name: "Normal",
  4939. height: math.unit(8.5, "feet"),
  4940. default: true
  4941. }
  4942. ]
  4943. ))
  4944. characterMakers.push(() => makeCharacter(
  4945. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4946. {
  4947. side: {
  4948. height: math.unit(9.5, "feet"),
  4949. weight: math.unit(2500, "lbs"),
  4950. name: "Side",
  4951. image: {
  4952. source: "./media/characters/heather/side.svg"
  4953. }
  4954. },
  4955. },
  4956. [
  4957. {
  4958. name: "Normal",
  4959. height: math.unit(9.5, "feet"),
  4960. default: true
  4961. }
  4962. ]
  4963. ))
  4964. characterMakers.push(() => makeCharacter(
  4965. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4966. {
  4967. side: {
  4968. height: math.unit(6.5, "feet"),
  4969. weight: math.unit(400, "lbs"),
  4970. name: "Side",
  4971. image: {
  4972. source: "./media/characters/lukas/side.svg",
  4973. extra: 7.25 / 6.5
  4974. }
  4975. },
  4976. },
  4977. [
  4978. {
  4979. name: "Normal",
  4980. height: math.unit(6.5, "feet"),
  4981. default: true
  4982. }
  4983. ]
  4984. ))
  4985. characterMakers.push(() => makeCharacter(
  4986. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4987. {
  4988. side: {
  4989. height: math.unit(5, "feet"),
  4990. weight: math.unit(3000, "lbs"),
  4991. name: "Side",
  4992. image: {
  4993. source: "./media/characters/louise/side.svg"
  4994. }
  4995. },
  4996. },
  4997. [
  4998. {
  4999. name: "Normal",
  5000. height: math.unit(5, "feet"),
  5001. default: true
  5002. }
  5003. ]
  5004. ))
  5005. characterMakers.push(() => makeCharacter(
  5006. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5007. {
  5008. side: {
  5009. height: math.unit(6, "feet"),
  5010. weight: math.unit(150, "lbs"),
  5011. name: "Side",
  5012. image: {
  5013. source: "./media/characters/ramona/side.svg"
  5014. }
  5015. },
  5016. },
  5017. [
  5018. {
  5019. name: "Normal",
  5020. height: math.unit(5.3, "meters"),
  5021. default: true
  5022. },
  5023. {
  5024. name: "Macro",
  5025. height: math.unit(20, "stories")
  5026. },
  5027. {
  5028. name: "Macro+",
  5029. height: math.unit(50, "stories")
  5030. },
  5031. ]
  5032. ))
  5033. characterMakers.push(() => makeCharacter(
  5034. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5035. {
  5036. standing: {
  5037. height: math.unit(5.75, "feet"),
  5038. weight: math.unit(160, "lbs"),
  5039. name: "Standing",
  5040. image: {
  5041. source: "./media/characters/deerpuff/standing.svg",
  5042. extra: 682 / 624
  5043. }
  5044. },
  5045. sitting: {
  5046. height: math.unit(5.75 / 1.79, "feet"),
  5047. weight: math.unit(160, "lbs"),
  5048. name: "Sitting",
  5049. image: {
  5050. source: "./media/characters/deerpuff/sitting.svg",
  5051. bottom: 44 / 400,
  5052. extra: 1
  5053. }
  5054. },
  5055. taurLaying: {
  5056. height: math.unit(6, "feet"),
  5057. weight: math.unit(400, "lbs"),
  5058. name: "Taur (Laying)",
  5059. image: {
  5060. source: "./media/characters/deerpuff/taur-laying.svg"
  5061. }
  5062. },
  5063. },
  5064. [
  5065. {
  5066. name: "Puffball",
  5067. height: math.unit(6, "inches")
  5068. },
  5069. {
  5070. name: "Normalpuff",
  5071. height: math.unit(5.75, "feet")
  5072. },
  5073. {
  5074. name: "Macropuff",
  5075. height: math.unit(1500, "feet"),
  5076. default: true
  5077. },
  5078. {
  5079. name: "Megapuff",
  5080. height: math.unit(500, "miles")
  5081. },
  5082. {
  5083. name: "Gigapuff",
  5084. height: math.unit(250000, "miles")
  5085. },
  5086. {
  5087. name: "Omegapuff",
  5088. height: math.unit(1000, "lightyears")
  5089. },
  5090. ]
  5091. ))
  5092. characterMakers.push(() => makeCharacter(
  5093. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5094. {
  5095. stomping: {
  5096. height: math.unit(6, "feet"),
  5097. weight: math.unit(170, "lbs"),
  5098. name: "Stomping",
  5099. image: {
  5100. source: "./media/characters/vivian/stomping.svg"
  5101. }
  5102. },
  5103. sitting: {
  5104. height: math.unit(6 / 1.75, "feet"),
  5105. weight: math.unit(170, "lbs"),
  5106. name: "Sitting",
  5107. image: {
  5108. source: "./media/characters/vivian/sitting.svg",
  5109. bottom: 1 / 6.4,
  5110. extra: 1,
  5111. }
  5112. },
  5113. },
  5114. [
  5115. {
  5116. name: "Normal",
  5117. height: math.unit(7, "feet"),
  5118. default: true
  5119. },
  5120. {
  5121. name: "Macro",
  5122. height: math.unit(10, "stories")
  5123. },
  5124. {
  5125. name: "Macro+",
  5126. height: math.unit(30, "stories")
  5127. },
  5128. {
  5129. name: "Megamacro",
  5130. height: math.unit(10, "miles")
  5131. },
  5132. {
  5133. name: "Megamacro+",
  5134. height: math.unit(2750000, "meters")
  5135. },
  5136. ]
  5137. ))
  5138. characterMakers.push(() => makeCharacter(
  5139. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5140. {
  5141. front: {
  5142. height: math.unit(6, "feet"),
  5143. weight: math.unit(160, "lbs"),
  5144. name: "Front",
  5145. image: {
  5146. source: "./media/characters/prince/front.svg",
  5147. extra: 3400 / 3000
  5148. }
  5149. },
  5150. jumping: {
  5151. height: math.unit(6, "feet"),
  5152. weight: math.unit(160, "lbs"),
  5153. name: "Jumping",
  5154. image: {
  5155. source: "./media/characters/prince/jump.svg",
  5156. extra: 2555 / 2134
  5157. }
  5158. },
  5159. },
  5160. [
  5161. {
  5162. name: "Normal",
  5163. height: math.unit(7.75, "feet"),
  5164. default: true
  5165. },
  5166. {
  5167. name: "Not cute",
  5168. height: math.unit(17, "feet")
  5169. },
  5170. {
  5171. name: "I said NOT",
  5172. height: math.unit(91, "feet")
  5173. },
  5174. {
  5175. name: "Please stop",
  5176. height: math.unit(560, "feet")
  5177. },
  5178. {
  5179. name: "What have you done",
  5180. height: math.unit(2200, "feet")
  5181. },
  5182. {
  5183. name: "Deer God",
  5184. height: math.unit(3.6, "miles")
  5185. },
  5186. ]
  5187. ))
  5188. characterMakers.push(() => makeCharacter(
  5189. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5190. {
  5191. standing: {
  5192. height: math.unit(6, "feet"),
  5193. weight: math.unit(300, "lbs"),
  5194. name: "Standing",
  5195. image: {
  5196. source: "./media/characters/psymon/standing.svg",
  5197. extra: 1888 / 1810,
  5198. bottom: 0.05
  5199. }
  5200. },
  5201. slithering: {
  5202. height: math.unit(6, "feet"),
  5203. weight: math.unit(300, "lbs"),
  5204. name: "Slithering",
  5205. image: {
  5206. source: "./media/characters/psymon/slithering.svg",
  5207. extra: 1330 / 1224
  5208. }
  5209. },
  5210. slitheringAlt: {
  5211. height: math.unit(6, "feet"),
  5212. weight: math.unit(300, "lbs"),
  5213. name: "Slithering (Alt)",
  5214. image: {
  5215. source: "./media/characters/psymon/slithering-alt.svg",
  5216. extra: 1330 / 1224
  5217. }
  5218. },
  5219. },
  5220. [
  5221. {
  5222. name: "Normal",
  5223. height: math.unit(11.25, "feet"),
  5224. default: true
  5225. },
  5226. {
  5227. name: "Large",
  5228. height: math.unit(27, "feet")
  5229. },
  5230. {
  5231. name: "Giant",
  5232. height: math.unit(87, "feet")
  5233. },
  5234. {
  5235. name: "Macro",
  5236. height: math.unit(365, "feet")
  5237. },
  5238. {
  5239. name: "Megamacro",
  5240. height: math.unit(3, "miles")
  5241. },
  5242. {
  5243. name: "World Serpent",
  5244. height: math.unit(8000, "miles")
  5245. },
  5246. ]
  5247. ))
  5248. characterMakers.push(() => makeCharacter(
  5249. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5250. {
  5251. front: {
  5252. height: math.unit(6, "feet"),
  5253. weight: math.unit(180, "lbs"),
  5254. name: "Front",
  5255. image: {
  5256. source: "./media/characters/daimos/front.svg",
  5257. extra: 4160 / 3897,
  5258. bottom: 0.021
  5259. }
  5260. }
  5261. },
  5262. [
  5263. {
  5264. name: "Normal",
  5265. height: math.unit(8, "feet"),
  5266. default: true
  5267. },
  5268. {
  5269. name: "Big Dog",
  5270. height: math.unit(22, "feet")
  5271. },
  5272. {
  5273. name: "Macro",
  5274. height: math.unit(127, "feet")
  5275. },
  5276. {
  5277. name: "Megamacro",
  5278. height: math.unit(3600, "feet")
  5279. },
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5284. {
  5285. side: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(180, "lbs"),
  5288. name: "Side",
  5289. image: {
  5290. source: "./media/characters/blake/side.svg",
  5291. extra: 1212 / 1120,
  5292. bottom: 0.05
  5293. }
  5294. },
  5295. crouched: {
  5296. height: math.unit(6 * 0.57, "feet"),
  5297. weight: math.unit(180, "lbs"),
  5298. name: "Crouched",
  5299. image: {
  5300. source: "./media/characters/blake/crouched.svg",
  5301. extra: 840 / 587,
  5302. bottom: 0.04
  5303. }
  5304. },
  5305. bent: {
  5306. height: math.unit(6 * 0.75, "feet"),
  5307. weight: math.unit(180, "lbs"),
  5308. name: "Bent",
  5309. image: {
  5310. source: "./media/characters/blake/bent.svg",
  5311. extra: 592 / 544,
  5312. bottom: 0.035
  5313. }
  5314. },
  5315. },
  5316. [
  5317. {
  5318. name: "Normal",
  5319. height: math.unit(8 + 1 / 6, "feet"),
  5320. default: true
  5321. },
  5322. {
  5323. name: "Big Backside",
  5324. height: math.unit(37, "feet")
  5325. },
  5326. {
  5327. name: "Subway Shredder",
  5328. height: math.unit(72, "feet")
  5329. },
  5330. {
  5331. name: "City Carver",
  5332. height: math.unit(1675, "feet")
  5333. },
  5334. {
  5335. name: "Tectonic Tweaker",
  5336. height: math.unit(2300, "miles")
  5337. },
  5338. ]
  5339. ))
  5340. characterMakers.push(() => makeCharacter(
  5341. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5342. {
  5343. front: {
  5344. height: math.unit(6, "feet"),
  5345. weight: math.unit(180, "lbs"),
  5346. name: "Front",
  5347. image: {
  5348. source: "./media/characters/guisetto/front.svg",
  5349. extra: 856 / 817,
  5350. bottom: 0.06
  5351. }
  5352. },
  5353. airborne: {
  5354. height: math.unit(6, "feet"),
  5355. weight: math.unit(180, "lbs"),
  5356. name: "Airborne",
  5357. image: {
  5358. source: "./media/characters/guisetto/airborne.svg",
  5359. extra: 584 / 525
  5360. }
  5361. },
  5362. },
  5363. [
  5364. {
  5365. name: "Normal",
  5366. height: math.unit(10 + 11 / 12, "feet"),
  5367. default: true
  5368. },
  5369. {
  5370. name: "Large",
  5371. height: math.unit(35, "feet")
  5372. },
  5373. {
  5374. name: "Macro",
  5375. height: math.unit(475, "feet")
  5376. },
  5377. ]
  5378. ))
  5379. characterMakers.push(() => makeCharacter(
  5380. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5381. {
  5382. front: {
  5383. height: math.unit(6, "feet"),
  5384. weight: math.unit(180, "lbs"),
  5385. name: "Front",
  5386. image: {
  5387. source: "./media/characters/luxor/front.svg",
  5388. extra: 2940 / 2152
  5389. }
  5390. },
  5391. back: {
  5392. height: math.unit(6, "feet"),
  5393. weight: math.unit(180, "lbs"),
  5394. name: "Back",
  5395. image: {
  5396. source: "./media/characters/luxor/back.svg",
  5397. extra: 1083 / 960
  5398. }
  5399. },
  5400. },
  5401. [
  5402. {
  5403. name: "Normal",
  5404. height: math.unit(5 + 5 / 6, "feet"),
  5405. default: true
  5406. },
  5407. {
  5408. name: "Lamp",
  5409. height: math.unit(50, "feet")
  5410. },
  5411. {
  5412. name: "Lämp",
  5413. height: math.unit(300, "feet")
  5414. },
  5415. {
  5416. name: "The sun is a lamp",
  5417. height: math.unit(250000, "miles")
  5418. },
  5419. ]
  5420. ))
  5421. characterMakers.push(() => makeCharacter(
  5422. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5423. {
  5424. front: {
  5425. height: math.unit(6, "feet"),
  5426. weight: math.unit(50, "lbs"),
  5427. name: "Front",
  5428. image: {
  5429. source: "./media/characters/huoyan/front.svg"
  5430. }
  5431. },
  5432. side: {
  5433. height: math.unit(6, "feet"),
  5434. weight: math.unit(180, "lbs"),
  5435. name: "Side",
  5436. image: {
  5437. source: "./media/characters/huoyan/side.svg"
  5438. }
  5439. },
  5440. },
  5441. [
  5442. {
  5443. name: "Chef",
  5444. height: math.unit(9, "feet")
  5445. },
  5446. {
  5447. name: "Normal",
  5448. height: math.unit(65, "feet"),
  5449. default: true
  5450. },
  5451. {
  5452. name: "Macro",
  5453. height: math.unit(780, "feet")
  5454. },
  5455. {
  5456. name: "Flaming Mountain",
  5457. height: math.unit(4.8, "miles")
  5458. },
  5459. {
  5460. name: "Celestial",
  5461. height: math.unit(765000, "miles")
  5462. },
  5463. ]
  5464. ))
  5465. characterMakers.push(() => makeCharacter(
  5466. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5467. {
  5468. front: {
  5469. height: math.unit(5 + 3 / 4, "feet"),
  5470. weight: math.unit(120, "lbs"),
  5471. name: "Front",
  5472. image: {
  5473. source: "./media/characters/tails/front.svg"
  5474. }
  5475. }
  5476. },
  5477. [
  5478. {
  5479. name: "Normal",
  5480. height: math.unit(5 + 3 / 4, "feet"),
  5481. default: true
  5482. }
  5483. ]
  5484. ))
  5485. characterMakers.push(() => makeCharacter(
  5486. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5487. {
  5488. front: {
  5489. height: math.unit(4, "feet"),
  5490. weight: math.unit(50, "lbs"),
  5491. name: "Front",
  5492. image: {
  5493. source: "./media/characters/rainy/front.svg"
  5494. }
  5495. }
  5496. },
  5497. [
  5498. {
  5499. name: "Macro",
  5500. height: math.unit(800, "feet"),
  5501. default: true
  5502. }
  5503. ]
  5504. ))
  5505. characterMakers.push(() => makeCharacter(
  5506. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5507. {
  5508. front: {
  5509. height: math.unit(6, "feet"),
  5510. weight: math.unit(150, "lbs"),
  5511. name: "Front",
  5512. image: {
  5513. source: "./media/characters/rainier/front.svg"
  5514. }
  5515. }
  5516. },
  5517. [
  5518. {
  5519. name: "Micro",
  5520. height: math.unit(2, "mm"),
  5521. default: true
  5522. }
  5523. ]
  5524. ))
  5525. characterMakers.push(() => makeCharacter(
  5526. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5527. {
  5528. front: {
  5529. height: math.unit(8 + 4/12, "feet"),
  5530. name: "Front",
  5531. image: {
  5532. source: "./media/characters/andy-renard/front.svg",
  5533. extra: 1839/1726,
  5534. bottom: 134/1973
  5535. }
  5536. },
  5537. back: {
  5538. height: math.unit(8 + 4/12, "feet"),
  5539. name: "Back",
  5540. image: {
  5541. source: "./media/characters/andy-renard/back.svg",
  5542. extra: 1838/1710,
  5543. bottom: 105/1943
  5544. }
  5545. },
  5546. },
  5547. [
  5548. {
  5549. name: "Tall",
  5550. height: math.unit(8 + 4/12, "feet")
  5551. },
  5552. {
  5553. name: "Mini Macro",
  5554. height: math.unit(15, "feet"),
  5555. default: true
  5556. },
  5557. {
  5558. name: "Macro",
  5559. height: math.unit(100, "feet")
  5560. },
  5561. {
  5562. name: "Mega Macro",
  5563. height: math.unit(1000, "feet")
  5564. },
  5565. {
  5566. name: "Giga Macro",
  5567. height: math.unit(10, "miles")
  5568. },
  5569. {
  5570. name: "God Macro",
  5571. height: math.unit(1, "multiverse")
  5572. },
  5573. ]
  5574. ))
  5575. characterMakers.push(() => makeCharacter(
  5576. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5577. {
  5578. front: {
  5579. height: math.unit(6, "feet"),
  5580. weight: math.unit(210, "lbs"),
  5581. name: "Front",
  5582. image: {
  5583. source: "./media/characters/cimmaron/front-sfw.svg",
  5584. extra: 701 / 676,
  5585. bottom: 0.046
  5586. }
  5587. },
  5588. back: {
  5589. height: math.unit(6, "feet"),
  5590. weight: math.unit(210, "lbs"),
  5591. name: "Back",
  5592. image: {
  5593. source: "./media/characters/cimmaron/back-sfw.svg",
  5594. extra: 701 / 676,
  5595. bottom: 0.046
  5596. }
  5597. },
  5598. frontNsfw: {
  5599. height: math.unit(6, "feet"),
  5600. weight: math.unit(210, "lbs"),
  5601. name: "Front (NSFW)",
  5602. image: {
  5603. source: "./media/characters/cimmaron/front-nsfw.svg",
  5604. extra: 701 / 676,
  5605. bottom: 0.046
  5606. }
  5607. },
  5608. backNsfw: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(210, "lbs"),
  5611. name: "Back (NSFW)",
  5612. image: {
  5613. source: "./media/characters/cimmaron/back-nsfw.svg",
  5614. extra: 701 / 676,
  5615. bottom: 0.046
  5616. }
  5617. },
  5618. dick: {
  5619. height: math.unit(1.714, "feet"),
  5620. name: "Dick",
  5621. image: {
  5622. source: "./media/characters/cimmaron/dick.svg"
  5623. }
  5624. },
  5625. },
  5626. [
  5627. {
  5628. name: "Normal",
  5629. height: math.unit(6, "feet"),
  5630. default: true
  5631. },
  5632. {
  5633. name: "Macro Mayor",
  5634. height: math.unit(350, "meters")
  5635. },
  5636. ]
  5637. ))
  5638. characterMakers.push(() => makeCharacter(
  5639. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5640. {
  5641. front: {
  5642. height: math.unit(6, "feet"),
  5643. weight: math.unit(200, "lbs"),
  5644. name: "Front",
  5645. image: {
  5646. source: "./media/characters/akari/front.svg",
  5647. extra: 962 / 901,
  5648. bottom: 0.04
  5649. }
  5650. }
  5651. },
  5652. [
  5653. {
  5654. name: "Micro",
  5655. height: math.unit(5, "inches"),
  5656. default: true
  5657. },
  5658. {
  5659. name: "Normal",
  5660. height: math.unit(7, "feet")
  5661. },
  5662. ]
  5663. ))
  5664. characterMakers.push(() => makeCharacter(
  5665. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5666. {
  5667. front: {
  5668. height: math.unit(6, "feet"),
  5669. weight: math.unit(140, "lbs"),
  5670. name: "Front",
  5671. image: {
  5672. source: "./media/characters/cynosura/front.svg",
  5673. extra: 896 / 847
  5674. }
  5675. },
  5676. back: {
  5677. height: math.unit(6, "feet"),
  5678. weight: math.unit(140, "lbs"),
  5679. name: "Back",
  5680. image: {
  5681. source: "./media/characters/cynosura/back.svg",
  5682. extra: 1365 / 1250
  5683. }
  5684. },
  5685. },
  5686. [
  5687. {
  5688. name: "Micro",
  5689. height: math.unit(4, "inches")
  5690. },
  5691. {
  5692. name: "Normal",
  5693. height: math.unit(5.75, "feet"),
  5694. default: true
  5695. },
  5696. {
  5697. name: "Tall",
  5698. height: math.unit(10, "feet")
  5699. },
  5700. {
  5701. name: "Big",
  5702. height: math.unit(20, "feet")
  5703. },
  5704. {
  5705. name: "Macro",
  5706. height: math.unit(50, "feet")
  5707. },
  5708. ]
  5709. ))
  5710. characterMakers.push(() => makeCharacter(
  5711. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5712. {
  5713. front: {
  5714. height: math.unit(13 + 2/12, "feet"),
  5715. weight: math.unit(800, "kg"),
  5716. name: "Front",
  5717. image: {
  5718. source: "./media/characters/gin/front.svg",
  5719. extra: 1312/1191,
  5720. bottom: 45/1357
  5721. }
  5722. },
  5723. mouth: {
  5724. height: math.unit(2.39 * 1.8, "feet"),
  5725. name: "Mouth",
  5726. image: {
  5727. source: "./media/characters/gin/mouth.svg"
  5728. }
  5729. },
  5730. hand: {
  5731. height: math.unit(1.57 * 2.19, "feet"),
  5732. name: "Hand",
  5733. image: {
  5734. source: "./media/characters/gin/hand.svg"
  5735. }
  5736. },
  5737. foot: {
  5738. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5739. name: "Foot",
  5740. image: {
  5741. source: "./media/characters/gin/foot.svg"
  5742. }
  5743. },
  5744. sole: {
  5745. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5746. name: "Sole",
  5747. image: {
  5748. source: "./media/characters/gin/sole.svg"
  5749. }
  5750. },
  5751. },
  5752. [
  5753. {
  5754. name: "Very Small",
  5755. height: math.unit(13 + 2 / 12, "feet")
  5756. },
  5757. {
  5758. name: "Micro",
  5759. height: math.unit(600, "miles")
  5760. },
  5761. {
  5762. name: "Regular",
  5763. height: math.unit(20, "earths"),
  5764. default: true
  5765. },
  5766. {
  5767. name: "Macro",
  5768. height: math.unit(2.2, "solarradii")
  5769. },
  5770. {
  5771. name: "Teramacro",
  5772. height: math.unit(1.2, "galaxies")
  5773. },
  5774. {
  5775. name: "Omegamacro",
  5776. height: math.unit(200, "universes")
  5777. },
  5778. ]
  5779. ))
  5780. characterMakers.push(() => makeCharacter(
  5781. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5782. {
  5783. front: {
  5784. height: math.unit(6 + 1 / 6, "feet"),
  5785. weight: math.unit(178, "lbs"),
  5786. name: "Front",
  5787. image: {
  5788. source: "./media/characters/guy/front.svg"
  5789. }
  5790. }
  5791. },
  5792. [
  5793. {
  5794. name: "Normal",
  5795. height: math.unit(6 + 1 / 6, "feet"),
  5796. default: true
  5797. },
  5798. {
  5799. name: "Large",
  5800. height: math.unit(25 + 7 / 12, "feet")
  5801. },
  5802. {
  5803. name: "Macro",
  5804. height: math.unit(60 + 9 / 12, "feet")
  5805. },
  5806. {
  5807. name: "Macro+",
  5808. height: math.unit(246, "feet")
  5809. },
  5810. {
  5811. name: "Macro++",
  5812. height: math.unit(878, "feet")
  5813. }
  5814. ]
  5815. ))
  5816. characterMakers.push(() => makeCharacter(
  5817. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5818. {
  5819. front: {
  5820. height: math.unit(9, "feet"),
  5821. weight: math.unit(800, "lbs"),
  5822. name: "Front",
  5823. image: {
  5824. source: "./media/characters/tiberius/front.svg",
  5825. extra: 2295 / 2071
  5826. }
  5827. },
  5828. back: {
  5829. height: math.unit(9, "feet"),
  5830. weight: math.unit(800, "lbs"),
  5831. name: "Back",
  5832. image: {
  5833. source: "./media/characters/tiberius/back.svg",
  5834. extra: 2373 / 2160
  5835. }
  5836. },
  5837. },
  5838. [
  5839. {
  5840. name: "Normal",
  5841. height: math.unit(9, "feet"),
  5842. default: true
  5843. }
  5844. ]
  5845. ))
  5846. characterMakers.push(() => makeCharacter(
  5847. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5848. {
  5849. front: {
  5850. height: math.unit(6, "feet"),
  5851. weight: math.unit(600, "lbs"),
  5852. name: "Front",
  5853. image: {
  5854. source: "./media/characters/surgo/front.svg",
  5855. extra: 3591 / 2227
  5856. }
  5857. },
  5858. back: {
  5859. height: math.unit(6, "feet"),
  5860. weight: math.unit(600, "lbs"),
  5861. name: "Back",
  5862. image: {
  5863. source: "./media/characters/surgo/back.svg",
  5864. extra: 3557 / 2228
  5865. }
  5866. },
  5867. laying: {
  5868. height: math.unit(6 * 0.85, "feet"),
  5869. weight: math.unit(600, "lbs"),
  5870. name: "Laying",
  5871. image: {
  5872. source: "./media/characters/surgo/laying.svg"
  5873. }
  5874. },
  5875. },
  5876. [
  5877. {
  5878. name: "Normal",
  5879. height: math.unit(6, "feet"),
  5880. default: true
  5881. }
  5882. ]
  5883. ))
  5884. characterMakers.push(() => makeCharacter(
  5885. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5886. {
  5887. side: {
  5888. height: math.unit(6, "feet"),
  5889. weight: math.unit(150, "lbs"),
  5890. name: "Side",
  5891. image: {
  5892. source: "./media/characters/cibus/side.svg",
  5893. extra: 800 / 400
  5894. }
  5895. },
  5896. },
  5897. [
  5898. {
  5899. name: "Normal",
  5900. height: math.unit(6, "feet"),
  5901. default: true
  5902. }
  5903. ]
  5904. ))
  5905. characterMakers.push(() => makeCharacter(
  5906. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5907. {
  5908. front: {
  5909. height: math.unit(6, "feet"),
  5910. weight: math.unit(240, "lbs"),
  5911. name: "Front",
  5912. image: {
  5913. source: "./media/characters/nibbles/front.svg"
  5914. }
  5915. },
  5916. side: {
  5917. height: math.unit(6, "feet"),
  5918. weight: math.unit(240, "lbs"),
  5919. name: "Side",
  5920. image: {
  5921. source: "./media/characters/nibbles/side.svg"
  5922. }
  5923. },
  5924. },
  5925. [
  5926. {
  5927. name: "Normal",
  5928. height: math.unit(9, "feet"),
  5929. default: true
  5930. }
  5931. ]
  5932. ))
  5933. characterMakers.push(() => makeCharacter(
  5934. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5935. {
  5936. side: {
  5937. height: math.unit(5 + 1 / 6, "feet"),
  5938. weight: math.unit(130, "lbs"),
  5939. name: "Side",
  5940. image: {
  5941. source: "./media/characters/rikky/side.svg",
  5942. extra: 851 / 801
  5943. }
  5944. },
  5945. },
  5946. [
  5947. {
  5948. name: "Normal",
  5949. height: math.unit(5 + 1 / 6, "feet")
  5950. },
  5951. {
  5952. name: "Macro",
  5953. height: math.unit(152, "feet"),
  5954. default: true
  5955. },
  5956. {
  5957. name: "Megamacro",
  5958. height: math.unit(7, "miles")
  5959. }
  5960. ]
  5961. ))
  5962. characterMakers.push(() => makeCharacter(
  5963. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5964. {
  5965. side: {
  5966. height: math.unit(370, "cm"),
  5967. weight: math.unit(350, "lbs"),
  5968. name: "Side",
  5969. image: {
  5970. source: "./media/characters/malfressa/side.svg"
  5971. }
  5972. },
  5973. walking: {
  5974. height: math.unit(370, "cm"),
  5975. weight: math.unit(350, "lbs"),
  5976. name: "Walking",
  5977. image: {
  5978. source: "./media/characters/malfressa/walking.svg"
  5979. }
  5980. },
  5981. feral: {
  5982. height: math.unit(2500, "cm"),
  5983. weight: math.unit(100000, "lbs"),
  5984. name: "Feral",
  5985. image: {
  5986. source: "./media/characters/malfressa/feral.svg",
  5987. extra: 2108 / 837,
  5988. bottom: 0.02
  5989. }
  5990. },
  5991. },
  5992. [
  5993. {
  5994. name: "Normal",
  5995. height: math.unit(370, "cm")
  5996. },
  5997. {
  5998. name: "Macro",
  5999. height: math.unit(300, "meters"),
  6000. default: true
  6001. }
  6002. ]
  6003. ))
  6004. characterMakers.push(() => makeCharacter(
  6005. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6006. {
  6007. front: {
  6008. height: math.unit(6, "feet"),
  6009. weight: math.unit(60, "kg"),
  6010. name: "Front",
  6011. image: {
  6012. source: "./media/characters/jaro/front.svg"
  6013. }
  6014. },
  6015. back: {
  6016. height: math.unit(6, "feet"),
  6017. weight: math.unit(60, "kg"),
  6018. name: "Back",
  6019. image: {
  6020. source: "./media/characters/jaro/back.svg"
  6021. }
  6022. },
  6023. },
  6024. [
  6025. {
  6026. name: "Micro",
  6027. height: math.unit(7, "inches")
  6028. },
  6029. {
  6030. name: "Normal",
  6031. height: math.unit(5.5, "feet"),
  6032. default: true
  6033. },
  6034. {
  6035. name: "Minimacro",
  6036. height: math.unit(20, "feet")
  6037. },
  6038. {
  6039. name: "Macro",
  6040. height: math.unit(200, "meters")
  6041. }
  6042. ]
  6043. ))
  6044. characterMakers.push(() => makeCharacter(
  6045. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6046. {
  6047. front: {
  6048. height: math.unit(6, "feet"),
  6049. weight: math.unit(195, "lb"),
  6050. name: "Front",
  6051. image: {
  6052. source: "./media/characters/rogue/front.svg"
  6053. }
  6054. },
  6055. },
  6056. [
  6057. {
  6058. name: "Macro",
  6059. height: math.unit(90, "feet"),
  6060. default: true
  6061. },
  6062. ]
  6063. ))
  6064. characterMakers.push(() => makeCharacter(
  6065. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6066. {
  6067. front: {
  6068. height: math.unit(5 + 8 / 12, "feet"),
  6069. weight: math.unit(140, "lb"),
  6070. name: "Front",
  6071. image: {
  6072. source: "./media/characters/piper/front.svg",
  6073. extra: 3948/3655,
  6074. bottom: 0/3948
  6075. }
  6076. },
  6077. },
  6078. [
  6079. {
  6080. name: "Micro",
  6081. height: math.unit(2, "inches")
  6082. },
  6083. {
  6084. name: "Normal",
  6085. height: math.unit(5 + 8 / 12, "feet")
  6086. },
  6087. {
  6088. name: "Macro",
  6089. height: math.unit(250, "feet"),
  6090. default: true
  6091. },
  6092. {
  6093. name: "Megamacro",
  6094. height: math.unit(7, "miles")
  6095. },
  6096. ]
  6097. ))
  6098. characterMakers.push(() => makeCharacter(
  6099. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6100. {
  6101. front: {
  6102. height: math.unit(6, "feet"),
  6103. weight: math.unit(220, "lb"),
  6104. name: "Front",
  6105. image: {
  6106. source: "./media/characters/gemini/front.svg"
  6107. }
  6108. },
  6109. back: {
  6110. height: math.unit(6, "feet"),
  6111. weight: math.unit(220, "lb"),
  6112. name: "Back",
  6113. image: {
  6114. source: "./media/characters/gemini/back.svg"
  6115. }
  6116. },
  6117. kneeling: {
  6118. height: math.unit(6 / 1.5, "feet"),
  6119. weight: math.unit(220, "lb"),
  6120. name: "Kneeling",
  6121. image: {
  6122. source: "./media/characters/gemini/kneeling.svg",
  6123. bottom: 0.02
  6124. }
  6125. },
  6126. },
  6127. [
  6128. {
  6129. name: "Macro",
  6130. height: math.unit(300, "meters"),
  6131. default: true
  6132. },
  6133. {
  6134. name: "Megamacro",
  6135. height: math.unit(6900, "meters")
  6136. },
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6141. {
  6142. anthro: {
  6143. height: math.unit(2.35, "meters"),
  6144. weight: math.unit(73, "kg"),
  6145. name: "Anthro",
  6146. image: {
  6147. source: "./media/characters/alicia/anthro.svg",
  6148. extra: 2571 / 2385,
  6149. bottom: 75 / 2648
  6150. }
  6151. },
  6152. paw: {
  6153. height: math.unit(1.32, "feet"),
  6154. name: "Paw",
  6155. image: {
  6156. source: "./media/characters/alicia/paw.svg"
  6157. }
  6158. },
  6159. feral: {
  6160. height: math.unit(1.69, "meters"),
  6161. weight: math.unit(73, "kg"),
  6162. name: "Feral",
  6163. image: {
  6164. source: "./media/characters/alicia/feral.svg",
  6165. extra: 2123 / 1715,
  6166. bottom: 222 / 2349
  6167. }
  6168. },
  6169. },
  6170. [
  6171. {
  6172. name: "Normal",
  6173. height: math.unit(2.35, "meters")
  6174. },
  6175. {
  6176. name: "Macro",
  6177. height: math.unit(60, "meters"),
  6178. default: true
  6179. },
  6180. {
  6181. name: "Megamacro",
  6182. height: math.unit(10000, "kilometers")
  6183. },
  6184. ]
  6185. ))
  6186. characterMakers.push(() => makeCharacter(
  6187. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6188. {
  6189. front: {
  6190. height: math.unit(7, "feet"),
  6191. weight: math.unit(250, "lbs"),
  6192. name: "Front",
  6193. image: {
  6194. source: "./media/characters/archy/front.svg"
  6195. }
  6196. }
  6197. },
  6198. [
  6199. {
  6200. name: "Micro",
  6201. height: math.unit(1, "inch")
  6202. },
  6203. {
  6204. name: "Shorty",
  6205. height: math.unit(5, "feet")
  6206. },
  6207. {
  6208. name: "Normal",
  6209. height: math.unit(7, "feet")
  6210. },
  6211. {
  6212. name: "Macro",
  6213. height: math.unit(600, "meters"),
  6214. default: true
  6215. },
  6216. {
  6217. name: "Megamacro",
  6218. height: math.unit(1, "mile")
  6219. },
  6220. ]
  6221. ))
  6222. characterMakers.push(() => makeCharacter(
  6223. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6224. {
  6225. front: {
  6226. height: math.unit(1.65, "meters"),
  6227. weight: math.unit(74, "kg"),
  6228. name: "Front",
  6229. image: {
  6230. source: "./media/characters/berri/front.svg",
  6231. extra: 857 / 837,
  6232. bottom: 18 / 877
  6233. }
  6234. },
  6235. bum: {
  6236. height: math.unit(1.46, "feet"),
  6237. name: "Bum",
  6238. image: {
  6239. source: "./media/characters/berri/bum.svg"
  6240. }
  6241. },
  6242. mouth: {
  6243. height: math.unit(0.44, "feet"),
  6244. name: "Mouth",
  6245. image: {
  6246. source: "./media/characters/berri/mouth.svg"
  6247. }
  6248. },
  6249. paw: {
  6250. height: math.unit(0.826, "feet"),
  6251. name: "Paw",
  6252. image: {
  6253. source: "./media/characters/berri/paw.svg"
  6254. }
  6255. },
  6256. },
  6257. [
  6258. {
  6259. name: "Normal",
  6260. height: math.unit(1.65, "meters")
  6261. },
  6262. {
  6263. name: "Macro",
  6264. height: math.unit(60, "m"),
  6265. default: true
  6266. },
  6267. {
  6268. name: "Megamacro",
  6269. height: math.unit(9.213, "km")
  6270. },
  6271. {
  6272. name: "Planet Eater",
  6273. height: math.unit(489, "megameters")
  6274. },
  6275. {
  6276. name: "Teramacro",
  6277. height: math.unit(2471635000000, "meters")
  6278. },
  6279. {
  6280. name: "Examacro",
  6281. height: math.unit(8.0624e+26, "meters")
  6282. }
  6283. ]
  6284. ))
  6285. characterMakers.push(() => makeCharacter(
  6286. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6287. {
  6288. front: {
  6289. height: math.unit(1.72, "meters"),
  6290. weight: math.unit(68, "kg"),
  6291. name: "Front",
  6292. image: {
  6293. source: "./media/characters/lexi/front.svg"
  6294. }
  6295. }
  6296. },
  6297. [
  6298. {
  6299. name: "Very Smol",
  6300. height: math.unit(10, "mm")
  6301. },
  6302. {
  6303. name: "Micro",
  6304. height: math.unit(6.8, "cm"),
  6305. default: true
  6306. },
  6307. {
  6308. name: "Normal",
  6309. height: math.unit(1.72, "m")
  6310. }
  6311. ]
  6312. ))
  6313. characterMakers.push(() => makeCharacter(
  6314. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6315. {
  6316. front: {
  6317. height: math.unit(1.69, "meters"),
  6318. weight: math.unit(68, "kg"),
  6319. name: "Front",
  6320. image: {
  6321. source: "./media/characters/martin/front.svg",
  6322. extra: 596 / 581
  6323. }
  6324. }
  6325. },
  6326. [
  6327. {
  6328. name: "Micro",
  6329. height: math.unit(6.85, "cm"),
  6330. default: true
  6331. },
  6332. {
  6333. name: "Normal",
  6334. height: math.unit(1.69, "m")
  6335. }
  6336. ]
  6337. ))
  6338. characterMakers.push(() => makeCharacter(
  6339. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6340. {
  6341. front: {
  6342. height: math.unit(1.69, "meters"),
  6343. weight: math.unit(68, "kg"),
  6344. name: "Front",
  6345. image: {
  6346. source: "./media/characters/juno/front.svg"
  6347. }
  6348. }
  6349. },
  6350. [
  6351. {
  6352. name: "Micro",
  6353. height: math.unit(7, "cm")
  6354. },
  6355. {
  6356. name: "Normal",
  6357. height: math.unit(1.89, "m")
  6358. },
  6359. {
  6360. name: "Macro",
  6361. height: math.unit(353, "meters"),
  6362. default: true
  6363. }
  6364. ]
  6365. ))
  6366. characterMakers.push(() => makeCharacter(
  6367. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6368. {
  6369. front: {
  6370. height: math.unit(1.93, "meters"),
  6371. weight: math.unit(83, "kg"),
  6372. name: "Front",
  6373. image: {
  6374. source: "./media/characters/samantha/front.svg"
  6375. }
  6376. },
  6377. frontClothed: {
  6378. height: math.unit(1.93, "meters"),
  6379. weight: math.unit(83, "kg"),
  6380. name: "Front (Clothed)",
  6381. image: {
  6382. source: "./media/characters/samantha/front-clothed.svg"
  6383. }
  6384. },
  6385. back: {
  6386. height: math.unit(1.93, "meters"),
  6387. weight: math.unit(83, "kg"),
  6388. name: "Back",
  6389. image: {
  6390. source: "./media/characters/samantha/back.svg"
  6391. }
  6392. },
  6393. },
  6394. [
  6395. {
  6396. name: "Normal",
  6397. height: math.unit(1.93, "m")
  6398. },
  6399. {
  6400. name: "Macro",
  6401. height: math.unit(74, "meters"),
  6402. default: true
  6403. },
  6404. {
  6405. name: "Macro+",
  6406. height: math.unit(223, "meters"),
  6407. },
  6408. {
  6409. name: "Megamacro",
  6410. height: math.unit(8381, "meters"),
  6411. },
  6412. {
  6413. name: "Megamacro+",
  6414. height: math.unit(12000, "kilometers")
  6415. },
  6416. ]
  6417. ))
  6418. characterMakers.push(() => makeCharacter(
  6419. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6420. {
  6421. front: {
  6422. height: math.unit(1.92, "meters"),
  6423. weight: math.unit(80, "kg"),
  6424. name: "Front",
  6425. image: {
  6426. source: "./media/characters/dr-clay/front.svg"
  6427. }
  6428. },
  6429. frontClothed: {
  6430. height: math.unit(1.92, "meters"),
  6431. weight: math.unit(80, "kg"),
  6432. name: "Front (Clothed)",
  6433. image: {
  6434. source: "./media/characters/dr-clay/front-clothed.svg"
  6435. }
  6436. }
  6437. },
  6438. [
  6439. {
  6440. name: "Normal",
  6441. height: math.unit(1.92, "m")
  6442. },
  6443. {
  6444. name: "Macro",
  6445. height: math.unit(214, "meters"),
  6446. default: true
  6447. },
  6448. {
  6449. name: "Macro+",
  6450. height: math.unit(12.237, "meters"),
  6451. },
  6452. {
  6453. name: "Megamacro",
  6454. height: math.unit(557, "megameters"),
  6455. },
  6456. {
  6457. name: "Unimaginable",
  6458. height: math.unit(120e9, "lightyears")
  6459. },
  6460. ]
  6461. ))
  6462. characterMakers.push(() => makeCharacter(
  6463. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6464. {
  6465. front: {
  6466. height: math.unit(2, "meters"),
  6467. weight: math.unit(80, "kg"),
  6468. name: "Front",
  6469. image: {
  6470. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6471. }
  6472. }
  6473. },
  6474. [
  6475. {
  6476. name: "Teramacro",
  6477. height: math.unit(500000, "lightyears"),
  6478. default: true
  6479. },
  6480. ]
  6481. ))
  6482. characterMakers.push(() => makeCharacter(
  6483. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6484. {
  6485. front: {
  6486. height: math.unit(2, "meters"),
  6487. weight: math.unit(150, "kg"),
  6488. name: "Front",
  6489. image: {
  6490. source: "./media/characters/vemus/front.svg",
  6491. extra: 1074/936,
  6492. bottom: 23/1097
  6493. }
  6494. }
  6495. },
  6496. [
  6497. {
  6498. name: "Normal",
  6499. height: math.unit(3.75, "meters"),
  6500. default: true
  6501. },
  6502. {
  6503. name: "Big",
  6504. height: math.unit(8, "meters")
  6505. },
  6506. {
  6507. name: "Macro",
  6508. height: math.unit(100, "meters")
  6509. },
  6510. {
  6511. name: "Macro+",
  6512. height: math.unit(1500, "meters")
  6513. },
  6514. {
  6515. name: "Stellar",
  6516. height: math.unit(14e8, "meters")
  6517. },
  6518. ]
  6519. ))
  6520. characterMakers.push(() => makeCharacter(
  6521. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6522. {
  6523. front: {
  6524. height: math.unit(2, "meters"),
  6525. weight: math.unit(70, "kg"),
  6526. name: "Front",
  6527. image: {
  6528. source: "./media/characters/beherit/front.svg",
  6529. extra: 1408 / 1242
  6530. }
  6531. }
  6532. },
  6533. [
  6534. {
  6535. name: "Normal",
  6536. height: math.unit(6, "feet")
  6537. },
  6538. {
  6539. name: "Lorg",
  6540. height: math.unit(25, "feet"),
  6541. default: true
  6542. },
  6543. {
  6544. name: "Lorger",
  6545. height: math.unit(75, "feet")
  6546. },
  6547. {
  6548. name: "Macro",
  6549. height: math.unit(200, "meters")
  6550. },
  6551. ]
  6552. ))
  6553. characterMakers.push(() => makeCharacter(
  6554. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6555. {
  6556. front: {
  6557. height: math.unit(2, "meters"),
  6558. weight: math.unit(150, "kg"),
  6559. name: "Front",
  6560. image: {
  6561. source: "./media/characters/everett/front.svg",
  6562. extra: 2038 / 1737,
  6563. bottom: 0.03
  6564. }
  6565. },
  6566. paw: {
  6567. height: math.unit(2 / 3.6, "meters"),
  6568. name: "Paw",
  6569. image: {
  6570. source: "./media/characters/everett/paw.svg"
  6571. }
  6572. },
  6573. },
  6574. [
  6575. {
  6576. name: "Normal",
  6577. height: math.unit(15, "feet"),
  6578. default: true
  6579. },
  6580. {
  6581. name: "Lorg",
  6582. height: math.unit(70, "feet"),
  6583. default: true
  6584. },
  6585. {
  6586. name: "Lorger",
  6587. height: math.unit(250, "feet")
  6588. },
  6589. {
  6590. name: "Macro",
  6591. height: math.unit(500, "meters")
  6592. },
  6593. ]
  6594. ))
  6595. characterMakers.push(() => makeCharacter(
  6596. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6597. {
  6598. front: {
  6599. height: math.unit(2, "meters"),
  6600. weight: math.unit(86, "kg"),
  6601. name: "Front",
  6602. image: {
  6603. source: "./media/characters/rose/front.svg",
  6604. extra: 1785/1636,
  6605. bottom: 30/1815
  6606. }
  6607. },
  6608. frontSporty: {
  6609. height: math.unit(2, "meters"),
  6610. weight: math.unit(86, "kg"),
  6611. name: "Front (Sporty)",
  6612. image: {
  6613. source: "./media/characters/rose/front-sporty.svg",
  6614. extra: 350/335,
  6615. bottom: 10/360
  6616. }
  6617. },
  6618. frontAlt: {
  6619. height: math.unit(1.6, "meters"),
  6620. weight: math.unit(86, "kg"),
  6621. name: "Front (Alt)",
  6622. image: {
  6623. source: "./media/characters/rose/front-alt.svg",
  6624. extra: 299/283,
  6625. bottom: 3/302
  6626. }
  6627. },
  6628. plush: {
  6629. height: math.unit(2, "meters"),
  6630. weight: math.unit(86/3, "kg"),
  6631. name: "Plush",
  6632. image: {
  6633. source: "./media/characters/rose/plush.svg",
  6634. extra: 361/337,
  6635. bottom: 11/372
  6636. }
  6637. },
  6638. },
  6639. [
  6640. {
  6641. name: "True Micro",
  6642. height: math.unit(9, "cm")
  6643. },
  6644. {
  6645. name: "Micro",
  6646. height: math.unit(16, "cm")
  6647. },
  6648. {
  6649. name: "Normal",
  6650. height: math.unit(1.85, "meters"),
  6651. default: true
  6652. },
  6653. {
  6654. name: "Mini-Macro",
  6655. height: math.unit(5, "meters")
  6656. },
  6657. {
  6658. name: "Macro",
  6659. height: math.unit(15, "meters")
  6660. },
  6661. {
  6662. name: "True Macro",
  6663. height: math.unit(40, "meters")
  6664. },
  6665. {
  6666. name: "City Scale",
  6667. height: math.unit(1, "km")
  6668. },
  6669. ]
  6670. ))
  6671. characterMakers.push(() => makeCharacter(
  6672. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6673. {
  6674. front: {
  6675. height: math.unit(2, "meters"),
  6676. weight: math.unit(350, "lbs"),
  6677. name: "Front",
  6678. image: {
  6679. source: "./media/characters/regal/front.svg"
  6680. }
  6681. },
  6682. back: {
  6683. height: math.unit(2, "meters"),
  6684. weight: math.unit(350, "lbs"),
  6685. name: "Back",
  6686. image: {
  6687. source: "./media/characters/regal/back.svg"
  6688. }
  6689. },
  6690. },
  6691. [
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(350, "feet"),
  6695. default: true
  6696. }
  6697. ]
  6698. ))
  6699. characterMakers.push(() => makeCharacter(
  6700. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6701. {
  6702. front: {
  6703. height: math.unit(4 + 11 / 12, "feet"),
  6704. weight: math.unit(100, "lbs"),
  6705. name: "Front",
  6706. image: {
  6707. source: "./media/characters/opal/front.svg"
  6708. }
  6709. },
  6710. frontAlt: {
  6711. height: math.unit(4 + 11 / 12, "feet"),
  6712. weight: math.unit(100, "lbs"),
  6713. name: "Front (Alt)",
  6714. image: {
  6715. source: "./media/characters/opal/front-alt.svg"
  6716. }
  6717. },
  6718. },
  6719. [
  6720. {
  6721. name: "Small",
  6722. height: math.unit(4 + 11 / 12, "feet")
  6723. },
  6724. {
  6725. name: "Normal",
  6726. height: math.unit(20, "feet"),
  6727. default: true
  6728. },
  6729. {
  6730. name: "Macro",
  6731. height: math.unit(120, "feet")
  6732. },
  6733. {
  6734. name: "Megamacro",
  6735. height: math.unit(80, "miles")
  6736. },
  6737. {
  6738. name: "True Size",
  6739. height: math.unit(100000, "lightyears")
  6740. },
  6741. ]
  6742. ))
  6743. characterMakers.push(() => makeCharacter(
  6744. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6745. {
  6746. front: {
  6747. height: math.unit(6, "feet"),
  6748. weight: math.unit(200, "lbs"),
  6749. name: "Front",
  6750. image: {
  6751. source: "./media/characters/vector-wuff/front.svg"
  6752. }
  6753. }
  6754. },
  6755. [
  6756. {
  6757. name: "Normal",
  6758. height: math.unit(2.8, "meters")
  6759. },
  6760. {
  6761. name: "Macro",
  6762. height: math.unit(450, "meters"),
  6763. default: true
  6764. },
  6765. {
  6766. name: "Megamacro",
  6767. height: math.unit(15, "kilometers")
  6768. }
  6769. ]
  6770. ))
  6771. characterMakers.push(() => makeCharacter(
  6772. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6773. {
  6774. front: {
  6775. height: math.unit(6, "feet"),
  6776. weight: math.unit(256, "lbs"),
  6777. name: "Front",
  6778. image: {
  6779. source: "./media/characters/dannik/front.svg"
  6780. }
  6781. }
  6782. },
  6783. [
  6784. {
  6785. name: "Macro",
  6786. height: math.unit(69.57, "meters"),
  6787. default: true
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6793. {
  6794. front: {
  6795. height: math.unit(6, "feet"),
  6796. weight: math.unit(120, "lbs"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/azura-saharah/front.svg"
  6800. }
  6801. },
  6802. back: {
  6803. height: math.unit(6, "feet"),
  6804. weight: math.unit(120, "lbs"),
  6805. name: "Back",
  6806. image: {
  6807. source: "./media/characters/azura-saharah/back.svg"
  6808. }
  6809. },
  6810. },
  6811. [
  6812. {
  6813. name: "Macro",
  6814. height: math.unit(100, "feet"),
  6815. default: true
  6816. },
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6821. {
  6822. side: {
  6823. height: math.unit(5 + 4 / 12, "feet"),
  6824. weight: math.unit(163, "lbs"),
  6825. name: "Side",
  6826. image: {
  6827. source: "./media/characters/kennedy/side.svg"
  6828. }
  6829. }
  6830. },
  6831. [
  6832. {
  6833. name: "Standard Doggo",
  6834. height: math.unit(5 + 4 / 12, "feet")
  6835. },
  6836. {
  6837. name: "Big Doggo",
  6838. height: math.unit(25 + 3 / 12, "feet"),
  6839. default: true
  6840. },
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6845. {
  6846. front: {
  6847. height: math.unit(6, "feet"),
  6848. weight: math.unit(90, "lbs"),
  6849. name: "Front",
  6850. image: {
  6851. source: "./media/characters/odi-lunar/front.svg"
  6852. }
  6853. }
  6854. },
  6855. [
  6856. {
  6857. name: "Micro",
  6858. height: math.unit(3, "inches"),
  6859. default: true
  6860. },
  6861. {
  6862. name: "Normal",
  6863. height: math.unit(5.5, "feet")
  6864. }
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6869. {
  6870. back: {
  6871. height: math.unit(6, "feet"),
  6872. weight: math.unit(220, "lbs"),
  6873. name: "Back",
  6874. image: {
  6875. source: "./media/characters/mandake/back.svg"
  6876. }
  6877. }
  6878. },
  6879. [
  6880. {
  6881. name: "Normal",
  6882. height: math.unit(7, "feet"),
  6883. default: true
  6884. },
  6885. {
  6886. name: "Macro",
  6887. height: math.unit(78, "feet")
  6888. },
  6889. {
  6890. name: "Macro+",
  6891. height: math.unit(300, "meters")
  6892. },
  6893. {
  6894. name: "Macro++",
  6895. height: math.unit(2400, "feet")
  6896. },
  6897. {
  6898. name: "Megamacro",
  6899. height: math.unit(5167, "meters")
  6900. },
  6901. {
  6902. name: "Gigamacro",
  6903. height: math.unit(41769, "miles")
  6904. },
  6905. ]
  6906. ))
  6907. characterMakers.push(() => makeCharacter(
  6908. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6909. {
  6910. front: {
  6911. height: math.unit(6, "feet"),
  6912. weight: math.unit(120, "lbs"),
  6913. name: "Front",
  6914. image: {
  6915. source: "./media/characters/yozey/front.svg"
  6916. }
  6917. },
  6918. frontAlt: {
  6919. height: math.unit(6, "feet"),
  6920. weight: math.unit(120, "lbs"),
  6921. name: "Front (Alt)",
  6922. image: {
  6923. source: "./media/characters/yozey/front-alt.svg"
  6924. }
  6925. },
  6926. side: {
  6927. height: math.unit(6, "feet"),
  6928. weight: math.unit(120, "lbs"),
  6929. name: "Side",
  6930. image: {
  6931. source: "./media/characters/yozey/side.svg"
  6932. }
  6933. },
  6934. },
  6935. [
  6936. {
  6937. name: "Micro",
  6938. height: math.unit(3, "inches"),
  6939. default: true
  6940. },
  6941. {
  6942. name: "Normal",
  6943. height: math.unit(6, "feet")
  6944. }
  6945. ]
  6946. ))
  6947. characterMakers.push(() => makeCharacter(
  6948. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6949. {
  6950. front: {
  6951. height: math.unit(6, "feet"),
  6952. weight: math.unit(103, "lbs"),
  6953. name: "Front",
  6954. image: {
  6955. source: "./media/characters/valeska-voss/front.svg"
  6956. }
  6957. }
  6958. },
  6959. [
  6960. {
  6961. name: "Mini-Sized Sub",
  6962. height: math.unit(3.1, "inches")
  6963. },
  6964. {
  6965. name: "Mid-Sized Sub",
  6966. height: math.unit(6.2, "inches")
  6967. },
  6968. {
  6969. name: "Full-Sized Sub",
  6970. height: math.unit(9.3, "inches")
  6971. },
  6972. {
  6973. name: "Normal",
  6974. height: math.unit(5 + 2 / 12, "foot"),
  6975. default: true
  6976. },
  6977. ]
  6978. ))
  6979. characterMakers.push(() => makeCharacter(
  6980. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6981. {
  6982. front: {
  6983. height: math.unit(6, "feet"),
  6984. weight: math.unit(160, "lbs"),
  6985. name: "Front",
  6986. image: {
  6987. source: "./media/characters/gene-zeta/front.svg",
  6988. extra: 3006 / 2826,
  6989. bottom: 182 / 3188
  6990. }
  6991. }
  6992. },
  6993. [
  6994. {
  6995. name: "Micro",
  6996. height: math.unit(6, "inches")
  6997. },
  6998. {
  6999. name: "Normal",
  7000. height: math.unit(5 + 11 / 12, "foot"),
  7001. default: true
  7002. },
  7003. {
  7004. name: "Macro",
  7005. height: math.unit(140, "feet")
  7006. },
  7007. {
  7008. name: "Supercharged",
  7009. height: math.unit(2500, "feet")
  7010. },
  7011. ]
  7012. ))
  7013. characterMakers.push(() => makeCharacter(
  7014. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7015. {
  7016. front: {
  7017. height: math.unit(6, "feet"),
  7018. weight: math.unit(350, "lbs"),
  7019. name: "Front",
  7020. image: {
  7021. source: "./media/characters/razinox/front.svg",
  7022. extra: 1686 / 1548,
  7023. bottom: 28.2 / 1868
  7024. }
  7025. },
  7026. back: {
  7027. height: math.unit(6, "feet"),
  7028. weight: math.unit(350, "lbs"),
  7029. name: "Back",
  7030. image: {
  7031. source: "./media/characters/razinox/back.svg",
  7032. extra: 1660 / 1590,
  7033. bottom: 15 / 1665
  7034. }
  7035. },
  7036. },
  7037. [
  7038. {
  7039. name: "Normal",
  7040. height: math.unit(10 + 8 / 12, "foot")
  7041. },
  7042. {
  7043. name: "Minimacro",
  7044. height: math.unit(15, "foot")
  7045. },
  7046. {
  7047. name: "Macro",
  7048. height: math.unit(60, "foot"),
  7049. default: true
  7050. },
  7051. {
  7052. name: "Megamacro",
  7053. height: math.unit(5, "miles")
  7054. },
  7055. {
  7056. name: "Gigamacro",
  7057. height: math.unit(6000, "miles")
  7058. },
  7059. ]
  7060. ))
  7061. characterMakers.push(() => makeCharacter(
  7062. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7063. {
  7064. front: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(150, "lbs"),
  7067. name: "Front",
  7068. image: {
  7069. source: "./media/characters/cobalt/front.svg"
  7070. }
  7071. }
  7072. },
  7073. [
  7074. {
  7075. name: "Normal",
  7076. height: math.unit(8 + 1 / 12, "foot")
  7077. },
  7078. {
  7079. name: "Macro",
  7080. height: math.unit(111, "foot"),
  7081. default: true
  7082. },
  7083. {
  7084. name: "Supracosmic",
  7085. height: math.unit(1e42, "feet")
  7086. },
  7087. ]
  7088. ))
  7089. characterMakers.push(() => makeCharacter(
  7090. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7091. {
  7092. front: {
  7093. height: math.unit(6, "feet"),
  7094. weight: math.unit(140, "lbs"),
  7095. name: "Front",
  7096. image: {
  7097. source: "./media/characters/amanda/front.svg"
  7098. }
  7099. }
  7100. },
  7101. [
  7102. {
  7103. name: "Micro",
  7104. height: math.unit(5, "inches"),
  7105. default: true
  7106. },
  7107. ]
  7108. ))
  7109. characterMakers.push(() => makeCharacter(
  7110. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7111. {
  7112. front: {
  7113. height: math.unit(2.75, "meters"),
  7114. weight: math.unit(1200, "lb"),
  7115. name: "Front",
  7116. image: {
  7117. source: "./media/characters/teal/front.svg",
  7118. extra: 2463 / 2320,
  7119. bottom: 166 / 2629
  7120. }
  7121. },
  7122. back: {
  7123. height: math.unit(2.75, "meters"),
  7124. weight: math.unit(1200, "lb"),
  7125. name: "Back",
  7126. image: {
  7127. source: "./media/characters/teal/back.svg",
  7128. extra: 2580 / 2489,
  7129. bottom: 151 / 2731
  7130. }
  7131. },
  7132. sitting: {
  7133. height: math.unit(1.9, "meters"),
  7134. weight: math.unit(1200, "lb"),
  7135. name: "Sitting",
  7136. image: {
  7137. source: "./media/characters/teal/sitting.svg",
  7138. extra: 623 / 590,
  7139. bottom: 121 / 744
  7140. }
  7141. },
  7142. standing: {
  7143. height: math.unit(2.75, "meters"),
  7144. weight: math.unit(1200, "lb"),
  7145. name: "Standing",
  7146. image: {
  7147. source: "./media/characters/teal/standing.svg",
  7148. extra: 923 / 893,
  7149. bottom: 60 / 983
  7150. }
  7151. },
  7152. stretching: {
  7153. height: math.unit(3.65, "meters"),
  7154. weight: math.unit(1200, "lb"),
  7155. name: "Stretching",
  7156. image: {
  7157. source: "./media/characters/teal/stretching.svg",
  7158. extra: 1276 / 1244,
  7159. bottom: 0 / 1276
  7160. }
  7161. },
  7162. legged: {
  7163. height: math.unit(1.3, "meters"),
  7164. weight: math.unit(100, "lb"),
  7165. name: "Legged",
  7166. image: {
  7167. source: "./media/characters/teal/legged.svg",
  7168. extra: 462 / 437,
  7169. bottom: 24 / 486
  7170. }
  7171. },
  7172. naga: {
  7173. height: math.unit(5.4, "meters"),
  7174. weight: math.unit(4000, "lb"),
  7175. name: "Naga",
  7176. image: {
  7177. source: "./media/characters/teal/naga.svg",
  7178. extra: 1902 / 1858,
  7179. bottom: 0 / 1902
  7180. }
  7181. },
  7182. hand: {
  7183. height: math.unit(0.52, "meters"),
  7184. name: "Hand",
  7185. image: {
  7186. source: "./media/characters/teal/hand.svg"
  7187. }
  7188. },
  7189. maw: {
  7190. height: math.unit(0.43, "meters"),
  7191. name: "Maw",
  7192. image: {
  7193. source: "./media/characters/teal/maw.svg"
  7194. }
  7195. },
  7196. slit: {
  7197. height: math.unit(0.25, "meters"),
  7198. name: "Slit",
  7199. image: {
  7200. source: "./media/characters/teal/slit.svg"
  7201. }
  7202. },
  7203. },
  7204. [
  7205. {
  7206. name: "Normal",
  7207. height: math.unit(2.75, "meters"),
  7208. default: true
  7209. },
  7210. {
  7211. name: "Macro",
  7212. height: math.unit(300, "feet")
  7213. },
  7214. {
  7215. name: "Macro+",
  7216. height: math.unit(2000, "feet")
  7217. },
  7218. ]
  7219. ))
  7220. characterMakers.push(() => makeCharacter(
  7221. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7222. {
  7223. frontCat: {
  7224. height: math.unit(6, "feet"),
  7225. weight: math.unit(180, "lbs"),
  7226. name: "Front (Cat)",
  7227. image: {
  7228. source: "./media/characters/ravin-amulet/front-cat.svg"
  7229. }
  7230. },
  7231. frontCatAlt: {
  7232. height: math.unit(6, "feet"),
  7233. weight: math.unit(180, "lbs"),
  7234. name: "Front (Alt, Cat)",
  7235. image: {
  7236. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7237. }
  7238. },
  7239. frontWerewolf: {
  7240. height: math.unit(6 * 1.2, "feet"),
  7241. weight: math.unit(225, "lbs"),
  7242. name: "Front (Werewolf)",
  7243. image: {
  7244. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7245. }
  7246. },
  7247. backWerewolf: {
  7248. height: math.unit(6 * 1.2, "feet"),
  7249. weight: math.unit(225, "lbs"),
  7250. name: "Back (Werewolf)",
  7251. image: {
  7252. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7253. }
  7254. },
  7255. },
  7256. [
  7257. {
  7258. name: "Nano",
  7259. height: math.unit(1, "micrometer")
  7260. },
  7261. {
  7262. name: "Micro",
  7263. height: math.unit(1, "inch")
  7264. },
  7265. {
  7266. name: "Normal",
  7267. height: math.unit(6, "feet"),
  7268. default: true
  7269. },
  7270. {
  7271. name: "Macro",
  7272. height: math.unit(60, "feet")
  7273. }
  7274. ]
  7275. ))
  7276. characterMakers.push(() => makeCharacter(
  7277. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7278. {
  7279. front: {
  7280. height: math.unit(6, "feet"),
  7281. weight: math.unit(165, "lbs"),
  7282. name: "Front",
  7283. image: {
  7284. source: "./media/characters/fluoresce/front.svg"
  7285. }
  7286. }
  7287. },
  7288. [
  7289. {
  7290. name: "Micro",
  7291. height: math.unit(6, "cm")
  7292. },
  7293. {
  7294. name: "Normal",
  7295. height: math.unit(5 + 7 / 12, "feet"),
  7296. default: true
  7297. },
  7298. {
  7299. name: "Macro",
  7300. height: math.unit(56, "feet")
  7301. },
  7302. {
  7303. name: "Megamacro",
  7304. height: math.unit(1.9, "miles")
  7305. },
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7310. {
  7311. front: {
  7312. height: math.unit(9 + 6 / 12, "feet"),
  7313. weight: math.unit(523, "lbs"),
  7314. name: "Side",
  7315. image: {
  7316. source: "./media/characters/aurora/side.svg"
  7317. }
  7318. }
  7319. },
  7320. [
  7321. {
  7322. name: "Normal",
  7323. height: math.unit(9 + 6 / 12, "feet")
  7324. },
  7325. {
  7326. name: "Macro",
  7327. height: math.unit(96, "feet"),
  7328. default: true
  7329. },
  7330. {
  7331. name: "Macro+",
  7332. height: math.unit(243, "feet")
  7333. },
  7334. ]
  7335. ))
  7336. characterMakers.push(() => makeCharacter(
  7337. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7338. {
  7339. front: {
  7340. height: math.unit(194, "cm"),
  7341. weight: math.unit(90, "kg"),
  7342. name: "Front",
  7343. image: {
  7344. source: "./media/characters/ranek/front.svg"
  7345. }
  7346. },
  7347. side: {
  7348. height: math.unit(194, "cm"),
  7349. weight: math.unit(90, "kg"),
  7350. name: "Side",
  7351. image: {
  7352. source: "./media/characters/ranek/side.svg"
  7353. }
  7354. },
  7355. back: {
  7356. height: math.unit(194, "cm"),
  7357. weight: math.unit(90, "kg"),
  7358. name: "Back",
  7359. image: {
  7360. source: "./media/characters/ranek/back.svg"
  7361. }
  7362. },
  7363. feral: {
  7364. height: math.unit(30, "cm"),
  7365. weight: math.unit(1.6, "lbs"),
  7366. name: "Feral",
  7367. image: {
  7368. source: "./media/characters/ranek/feral.svg"
  7369. }
  7370. },
  7371. },
  7372. [
  7373. {
  7374. name: "Normal",
  7375. height: math.unit(194, "cm"),
  7376. default: true
  7377. },
  7378. {
  7379. name: "Macro",
  7380. height: math.unit(100, "meters")
  7381. },
  7382. ]
  7383. ))
  7384. characterMakers.push(() => makeCharacter(
  7385. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7386. {
  7387. front: {
  7388. height: math.unit(5 + 6 / 12, "feet"),
  7389. weight: math.unit(153, "lbs"),
  7390. name: "Front",
  7391. image: {
  7392. source: "./media/characters/andrew-cooper/front.svg"
  7393. }
  7394. },
  7395. },
  7396. [
  7397. {
  7398. name: "Nano",
  7399. height: math.unit(1, "mm")
  7400. },
  7401. {
  7402. name: "Micro",
  7403. height: math.unit(2, "inches")
  7404. },
  7405. {
  7406. name: "Normal",
  7407. height: math.unit(5 + 6 / 12, "feet"),
  7408. default: true
  7409. }
  7410. ]
  7411. ))
  7412. characterMakers.push(() => makeCharacter(
  7413. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7414. {
  7415. front: {
  7416. height: math.unit(6, "feet"),
  7417. weight: math.unit(180, "lbs"),
  7418. name: "Front",
  7419. image: {
  7420. source: "./media/characters/akane-sato/front.svg",
  7421. extra: 1219 / 1140
  7422. }
  7423. },
  7424. back: {
  7425. height: math.unit(6, "feet"),
  7426. weight: math.unit(180, "lbs"),
  7427. name: "Back",
  7428. image: {
  7429. source: "./media/characters/akane-sato/back.svg",
  7430. extra: 1219 / 1170
  7431. }
  7432. },
  7433. },
  7434. [
  7435. {
  7436. name: "Normal",
  7437. height: math.unit(2.5, "meters")
  7438. },
  7439. {
  7440. name: "Macro",
  7441. height: math.unit(250, "meters"),
  7442. default: true
  7443. },
  7444. {
  7445. name: "Megamacro",
  7446. height: math.unit(25, "km")
  7447. },
  7448. ]
  7449. ))
  7450. characterMakers.push(() => makeCharacter(
  7451. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7452. {
  7453. front: {
  7454. height: math.unit(6, "feet"),
  7455. weight: math.unit(65, "kg"),
  7456. name: "Front",
  7457. image: {
  7458. source: "./media/characters/rook/front.svg",
  7459. extra: 960 / 950
  7460. }
  7461. }
  7462. },
  7463. [
  7464. {
  7465. name: "Normal",
  7466. height: math.unit(8.8, "feet")
  7467. },
  7468. {
  7469. name: "Macro",
  7470. height: math.unit(88, "feet"),
  7471. default: true
  7472. },
  7473. {
  7474. name: "Megamacro",
  7475. height: math.unit(8, "miles")
  7476. },
  7477. ]
  7478. ))
  7479. characterMakers.push(() => makeCharacter(
  7480. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7481. {
  7482. front: {
  7483. height: math.unit(12 + 2 / 12, "feet"),
  7484. weight: math.unit(808, "lbs"),
  7485. name: "Front",
  7486. image: {
  7487. source: "./media/characters/prodigy/front.svg"
  7488. }
  7489. }
  7490. },
  7491. [
  7492. {
  7493. name: "Normal",
  7494. height: math.unit(12 + 2 / 12, "feet"),
  7495. default: true
  7496. },
  7497. {
  7498. name: "Macro",
  7499. height: math.unit(143, "feet")
  7500. },
  7501. {
  7502. name: "Macro+",
  7503. height: math.unit(400, "feet")
  7504. },
  7505. ]
  7506. ))
  7507. characterMakers.push(() => makeCharacter(
  7508. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7509. {
  7510. front: {
  7511. height: math.unit(6, "feet"),
  7512. weight: math.unit(225, "lbs"),
  7513. name: "Front",
  7514. image: {
  7515. source: "./media/characters/daniel/front.svg"
  7516. }
  7517. },
  7518. leaning: {
  7519. height: math.unit(6, "feet"),
  7520. weight: math.unit(225, "lbs"),
  7521. name: "Leaning",
  7522. image: {
  7523. source: "./media/characters/daniel/leaning.svg"
  7524. }
  7525. },
  7526. },
  7527. [
  7528. {
  7529. name: "Macro",
  7530. height: math.unit(1000, "feet"),
  7531. default: true
  7532. },
  7533. ]
  7534. ))
  7535. characterMakers.push(() => makeCharacter(
  7536. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7537. {
  7538. front: {
  7539. height: math.unit(6, "feet"),
  7540. weight: math.unit(88, "lbs"),
  7541. name: "Front",
  7542. image: {
  7543. source: "./media/characters/chiros/front.svg",
  7544. extra: 306 / 226
  7545. }
  7546. },
  7547. side: {
  7548. height: math.unit(6, "feet"),
  7549. weight: math.unit(88, "lbs"),
  7550. name: "Side",
  7551. image: {
  7552. source: "./media/characters/chiros/side.svg",
  7553. extra: 306 / 226
  7554. }
  7555. },
  7556. },
  7557. [
  7558. {
  7559. name: "Normal",
  7560. height: math.unit(6, "cm"),
  7561. default: true
  7562. },
  7563. ]
  7564. ))
  7565. characterMakers.push(() => makeCharacter(
  7566. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7567. {
  7568. front: {
  7569. height: math.unit(6, "feet"),
  7570. weight: math.unit(100, "lbs"),
  7571. name: "Front",
  7572. image: {
  7573. source: "./media/characters/selka/front.svg",
  7574. extra: 947 / 887
  7575. }
  7576. }
  7577. },
  7578. [
  7579. {
  7580. name: "Normal",
  7581. height: math.unit(5, "cm"),
  7582. default: true
  7583. },
  7584. ]
  7585. ))
  7586. characterMakers.push(() => makeCharacter(
  7587. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7588. {
  7589. front: {
  7590. height: math.unit(8 + 3 / 12, "feet"),
  7591. weight: math.unit(424, "lbs"),
  7592. name: "Front",
  7593. image: {
  7594. source: "./media/characters/verin/front.svg",
  7595. extra: 1845 / 1550
  7596. }
  7597. },
  7598. frontArmored: {
  7599. height: math.unit(8 + 3 / 12, "feet"),
  7600. weight: math.unit(424, "lbs"),
  7601. name: "Front (Armored)",
  7602. image: {
  7603. source: "./media/characters/verin/front-armor.svg",
  7604. extra: 1845 / 1550,
  7605. bottom: 0.01
  7606. }
  7607. },
  7608. back: {
  7609. height: math.unit(8 + 3 / 12, "feet"),
  7610. weight: math.unit(424, "lbs"),
  7611. name: "Back",
  7612. image: {
  7613. source: "./media/characters/verin/back.svg",
  7614. bottom: 0.1,
  7615. extra: 1
  7616. }
  7617. },
  7618. foot: {
  7619. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7620. name: "Foot",
  7621. image: {
  7622. source: "./media/characters/verin/foot.svg"
  7623. }
  7624. },
  7625. },
  7626. [
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(8 + 3 / 12, "feet")
  7630. },
  7631. {
  7632. name: "Minimacro",
  7633. height: math.unit(21, "feet"),
  7634. default: true
  7635. },
  7636. {
  7637. name: "Macro",
  7638. height: math.unit(626, "feet")
  7639. },
  7640. ]
  7641. ))
  7642. characterMakers.push(() => makeCharacter(
  7643. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7644. {
  7645. front: {
  7646. height: math.unit(2.718, "meters"),
  7647. weight: math.unit(150, "lbs"),
  7648. name: "Front",
  7649. image: {
  7650. source: "./media/characters/sovrim-terraquian/front.svg"
  7651. }
  7652. },
  7653. back: {
  7654. height: math.unit(2.718, "meters"),
  7655. weight: math.unit(150, "lbs"),
  7656. name: "Back",
  7657. image: {
  7658. source: "./media/characters/sovrim-terraquian/back.svg"
  7659. }
  7660. }
  7661. },
  7662. [
  7663. {
  7664. name: "Micro",
  7665. height: math.unit(2, "inches")
  7666. },
  7667. {
  7668. name: "Small",
  7669. height: math.unit(1, "meter")
  7670. },
  7671. {
  7672. name: "Normal",
  7673. height: math.unit(Math.E, "meters"),
  7674. default: true
  7675. },
  7676. {
  7677. name: "Macro",
  7678. height: math.unit(20, "meters")
  7679. },
  7680. {
  7681. name: "Macro+",
  7682. height: math.unit(400, "meters")
  7683. },
  7684. ]
  7685. ))
  7686. characterMakers.push(() => makeCharacter(
  7687. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7688. {
  7689. front: {
  7690. height: math.unit(7, "feet"),
  7691. weight: math.unit(489, "lbs"),
  7692. name: "Front",
  7693. image: {
  7694. source: "./media/characters/reece-silvermane/front.svg",
  7695. bottom: 0.02,
  7696. extra: 1
  7697. }
  7698. },
  7699. },
  7700. [
  7701. {
  7702. name: "Macro",
  7703. height: math.unit(1.5, "miles"),
  7704. default: true
  7705. },
  7706. ]
  7707. ))
  7708. characterMakers.push(() => makeCharacter(
  7709. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7710. {
  7711. front: {
  7712. height: math.unit(6, "feet"),
  7713. weight: math.unit(78, "kg"),
  7714. name: "Front",
  7715. image: {
  7716. source: "./media/characters/kane/front.svg",
  7717. extra: 978 / 899
  7718. }
  7719. },
  7720. },
  7721. [
  7722. {
  7723. name: "Normal",
  7724. height: math.unit(2.1, "m"),
  7725. },
  7726. {
  7727. name: "Macro",
  7728. height: math.unit(1, "km"),
  7729. default: true
  7730. },
  7731. ]
  7732. ))
  7733. characterMakers.push(() => makeCharacter(
  7734. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7735. {
  7736. front: {
  7737. height: math.unit(6, "feet"),
  7738. weight: math.unit(200, "kg"),
  7739. name: "Front",
  7740. image: {
  7741. source: "./media/characters/tegon/front.svg",
  7742. bottom: 0.01,
  7743. extra: 1
  7744. }
  7745. },
  7746. },
  7747. [
  7748. {
  7749. name: "Micro",
  7750. height: math.unit(1, "inch")
  7751. },
  7752. {
  7753. name: "Normal",
  7754. height: math.unit(6 + 3 / 12, "feet"),
  7755. default: true
  7756. },
  7757. {
  7758. name: "Macro",
  7759. height: math.unit(300, "feet")
  7760. },
  7761. {
  7762. name: "Megamacro",
  7763. height: math.unit(69, "miles")
  7764. },
  7765. ]
  7766. ))
  7767. characterMakers.push(() => makeCharacter(
  7768. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7769. {
  7770. side: {
  7771. height: math.unit(6, "feet"),
  7772. weight: math.unit(2304, "lbs"),
  7773. name: "Side",
  7774. image: {
  7775. source: "./media/characters/arcturax/side.svg",
  7776. extra: 790 / 376,
  7777. bottom: 0.01
  7778. }
  7779. },
  7780. },
  7781. [
  7782. {
  7783. name: "Micro",
  7784. height: math.unit(2, "inch")
  7785. },
  7786. {
  7787. name: "Normal",
  7788. height: math.unit(6, "feet")
  7789. },
  7790. {
  7791. name: "Macro",
  7792. height: math.unit(39, "feet"),
  7793. default: true
  7794. },
  7795. {
  7796. name: "Megamacro",
  7797. height: math.unit(7, "miles")
  7798. },
  7799. ]
  7800. ))
  7801. characterMakers.push(() => makeCharacter(
  7802. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7803. {
  7804. front: {
  7805. height: math.unit(6, "feet"),
  7806. weight: math.unit(50, "lbs"),
  7807. name: "Front",
  7808. image: {
  7809. source: "./media/characters/sentri/front.svg",
  7810. extra: 1750 / 1570,
  7811. bottom: 0.025
  7812. }
  7813. },
  7814. frontAlt: {
  7815. height: math.unit(6, "feet"),
  7816. weight: math.unit(50, "lbs"),
  7817. name: "Front (Alt)",
  7818. image: {
  7819. source: "./media/characters/sentri/front-alt.svg",
  7820. extra: 1750 / 1570,
  7821. bottom: 0.025
  7822. }
  7823. },
  7824. },
  7825. [
  7826. {
  7827. name: "Normal",
  7828. height: math.unit(15, "feet"),
  7829. default: true
  7830. },
  7831. {
  7832. name: "Macro",
  7833. height: math.unit(2500, "feet")
  7834. }
  7835. ]
  7836. ))
  7837. characterMakers.push(() => makeCharacter(
  7838. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7839. {
  7840. front: {
  7841. height: math.unit(5 + 8 / 12, "feet"),
  7842. weight: math.unit(130, "lbs"),
  7843. name: "Front",
  7844. image: {
  7845. source: "./media/characters/corvin/front.svg",
  7846. extra: 1803 / 1629
  7847. }
  7848. },
  7849. frontShirt: {
  7850. height: math.unit(5 + 8 / 12, "feet"),
  7851. weight: math.unit(130, "lbs"),
  7852. name: "Front (Shirt)",
  7853. image: {
  7854. source: "./media/characters/corvin/front-shirt.svg",
  7855. extra: 1803 / 1629
  7856. }
  7857. },
  7858. frontPoncho: {
  7859. height: math.unit(5 + 8 / 12, "feet"),
  7860. weight: math.unit(130, "lbs"),
  7861. name: "Front (Poncho)",
  7862. image: {
  7863. source: "./media/characters/corvin/front-poncho.svg",
  7864. extra: 1803 / 1629
  7865. }
  7866. },
  7867. side: {
  7868. height: math.unit(5 + 8 / 12, "feet"),
  7869. weight: math.unit(130, "lbs"),
  7870. name: "Side",
  7871. image: {
  7872. source: "./media/characters/corvin/side.svg",
  7873. extra: 1012 / 945
  7874. }
  7875. },
  7876. back: {
  7877. height: math.unit(5 + 8 / 12, "feet"),
  7878. weight: math.unit(130, "lbs"),
  7879. name: "Back",
  7880. image: {
  7881. source: "./media/characters/corvin/back.svg",
  7882. extra: 1803 / 1629
  7883. }
  7884. },
  7885. },
  7886. [
  7887. {
  7888. name: "Micro",
  7889. height: math.unit(3, "inches")
  7890. },
  7891. {
  7892. name: "Normal",
  7893. height: math.unit(5 + 8 / 12, "feet")
  7894. },
  7895. {
  7896. name: "Macro",
  7897. height: math.unit(300, "feet"),
  7898. default: true
  7899. },
  7900. {
  7901. name: "Megamacro",
  7902. height: math.unit(500, "miles")
  7903. }
  7904. ]
  7905. ))
  7906. characterMakers.push(() => makeCharacter(
  7907. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7908. {
  7909. front: {
  7910. height: math.unit(6, "feet"),
  7911. weight: math.unit(135, "lbs"),
  7912. name: "Front",
  7913. image: {
  7914. source: "./media/characters/q/front.svg",
  7915. extra: 854 / 752,
  7916. bottom: 0.005
  7917. }
  7918. },
  7919. back: {
  7920. height: math.unit(6, "feet"),
  7921. weight: math.unit(130, "lbs"),
  7922. name: "Back",
  7923. image: {
  7924. source: "./media/characters/q/back.svg",
  7925. extra: 854 / 752
  7926. }
  7927. },
  7928. },
  7929. [
  7930. {
  7931. name: "Macro",
  7932. height: math.unit(90, "feet"),
  7933. default: true
  7934. },
  7935. {
  7936. name: "Extra Macro",
  7937. height: math.unit(300, "feet"),
  7938. },
  7939. {
  7940. name: "BIG WALF",
  7941. height: math.unit(750, "feet"),
  7942. },
  7943. ]
  7944. ))
  7945. characterMakers.push(() => makeCharacter(
  7946. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7947. {
  7948. front: {
  7949. height: math.unit(6, "feet"),
  7950. weight: math.unit(150, "lbs"),
  7951. name: "Front",
  7952. image: {
  7953. source: "./media/characters/carley/front.svg",
  7954. extra: 3927 / 3540,
  7955. bottom: 29.2 / 735
  7956. }
  7957. }
  7958. },
  7959. [
  7960. {
  7961. name: "Normal",
  7962. height: math.unit(6 + 3 / 12, "feet")
  7963. },
  7964. {
  7965. name: "Macro",
  7966. height: math.unit(185, "feet"),
  7967. default: true
  7968. },
  7969. {
  7970. name: "Megamacro",
  7971. height: math.unit(8, "miles"),
  7972. },
  7973. ]
  7974. ))
  7975. characterMakers.push(() => makeCharacter(
  7976. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7977. {
  7978. front: {
  7979. height: math.unit(3, "feet"),
  7980. weight: math.unit(28, "lbs"),
  7981. name: "Front",
  7982. image: {
  7983. source: "./media/characters/citrine/front.svg"
  7984. }
  7985. }
  7986. },
  7987. [
  7988. {
  7989. name: "Normal",
  7990. height: math.unit(3, "feet"),
  7991. default: true
  7992. }
  7993. ]
  7994. ))
  7995. characterMakers.push(() => makeCharacter(
  7996. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7997. {
  7998. front: {
  7999. height: math.unit(14, "feet"),
  8000. weight: math.unit(1450, "kg"),
  8001. capacity: math.unit(15, "people"),
  8002. name: "Front",
  8003. image: {
  8004. source: "./media/characters/aura-starwind/front.svg",
  8005. extra: 1455 / 1335
  8006. }
  8007. },
  8008. side: {
  8009. height: math.unit(14, "feet"),
  8010. weight: math.unit(1450, "kg"),
  8011. capacity: math.unit(15, "people"),
  8012. name: "Side",
  8013. image: {
  8014. source: "./media/characters/aura-starwind/side.svg",
  8015. extra: 1654 / 1497
  8016. }
  8017. },
  8018. taur: {
  8019. height: math.unit(18, "feet"),
  8020. weight: math.unit(5500, "kg"),
  8021. capacity: math.unit(50, "people"),
  8022. name: "Taur",
  8023. image: {
  8024. source: "./media/characters/aura-starwind/taur.svg",
  8025. extra: 1760 / 1650
  8026. }
  8027. },
  8028. feral: {
  8029. height: math.unit(46, "feet"),
  8030. weight: math.unit(25000, "kg"),
  8031. capacity: math.unit(120, "people"),
  8032. name: "Feral",
  8033. image: {
  8034. source: "./media/characters/aura-starwind/feral.svg"
  8035. }
  8036. },
  8037. },
  8038. [
  8039. {
  8040. name: "Normal",
  8041. height: math.unit(14, "feet"),
  8042. default: true
  8043. },
  8044. {
  8045. name: "Macro",
  8046. height: math.unit(50, "meters")
  8047. },
  8048. {
  8049. name: "Megamacro",
  8050. height: math.unit(5000, "meters")
  8051. },
  8052. {
  8053. name: "Gigamacro",
  8054. height: math.unit(100000, "kilometers")
  8055. },
  8056. ]
  8057. ))
  8058. characterMakers.push(() => makeCharacter(
  8059. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8060. {
  8061. front: {
  8062. height: math.unit(2 + 7 / 12, "feet"),
  8063. weight: math.unit(32, "lbs"),
  8064. name: "Front",
  8065. image: {
  8066. source: "./media/characters/rivet/front.svg",
  8067. extra: 1716 / 1658,
  8068. bottom: 0.03
  8069. }
  8070. },
  8071. foot: {
  8072. height: math.unit(0.551, "feet"),
  8073. name: "Rivet's Foot",
  8074. image: {
  8075. source: "./media/characters/rivet/foot.svg"
  8076. },
  8077. rename: true
  8078. }
  8079. },
  8080. [
  8081. {
  8082. name: "Micro",
  8083. height: math.unit(1.5, "inches"),
  8084. },
  8085. {
  8086. name: "Normal",
  8087. height: math.unit(2 + 7 / 12, "feet"),
  8088. default: true
  8089. },
  8090. {
  8091. name: "Macro",
  8092. height: math.unit(85, "feet")
  8093. },
  8094. {
  8095. name: "Megamacro",
  8096. height: math.unit(2.2, "km")
  8097. }
  8098. ]
  8099. ))
  8100. characterMakers.push(() => makeCharacter(
  8101. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8102. {
  8103. front: {
  8104. height: math.unit(5 + 9 / 12, "feet"),
  8105. weight: math.unit(150, "lbs"),
  8106. name: "Front",
  8107. image: {
  8108. source: "./media/characters/coffee/front.svg",
  8109. extra: 3666 / 3032,
  8110. bottom: 0.04
  8111. }
  8112. },
  8113. foot: {
  8114. height: math.unit(1.29, "feet"),
  8115. name: "Foot",
  8116. image: {
  8117. source: "./media/characters/coffee/foot.svg"
  8118. }
  8119. },
  8120. },
  8121. [
  8122. {
  8123. name: "Micro",
  8124. height: math.unit(2, "inches"),
  8125. },
  8126. {
  8127. name: "Normal",
  8128. height: math.unit(5 + 9 / 12, "feet"),
  8129. default: true
  8130. },
  8131. {
  8132. name: "Macro",
  8133. height: math.unit(800, "feet")
  8134. },
  8135. {
  8136. name: "Megamacro",
  8137. height: math.unit(25, "miles")
  8138. }
  8139. ]
  8140. ))
  8141. characterMakers.push(() => makeCharacter(
  8142. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8143. {
  8144. front: {
  8145. height: math.unit(6, "feet"),
  8146. weight: math.unit(200, "lbs"),
  8147. name: "Front",
  8148. image: {
  8149. source: "./media/characters/chari-gal/front.svg",
  8150. extra: 1568 / 1385,
  8151. bottom: 0.047
  8152. }
  8153. },
  8154. gigantamax: {
  8155. height: math.unit(6 * 16, "feet"),
  8156. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8157. name: "Gigantamax",
  8158. image: {
  8159. source: "./media/characters/chari-gal/gigantamax.svg",
  8160. extra: 1124 / 888,
  8161. bottom: 0.03
  8162. }
  8163. },
  8164. },
  8165. [
  8166. {
  8167. name: "Normal",
  8168. height: math.unit(5 + 7 / 12, "feet")
  8169. },
  8170. {
  8171. name: "Macro",
  8172. height: math.unit(200, "feet"),
  8173. default: true
  8174. }
  8175. ]
  8176. ))
  8177. characterMakers.push(() => makeCharacter(
  8178. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8179. {
  8180. front: {
  8181. height: math.unit(6, "feet"),
  8182. weight: math.unit(150, "lbs"),
  8183. name: "Front",
  8184. image: {
  8185. source: "./media/characters/nova/front.svg",
  8186. extra: 5000 / 4722,
  8187. bottom: 0.02
  8188. }
  8189. }
  8190. },
  8191. [
  8192. {
  8193. name: "Micro-",
  8194. height: math.unit(0.8, "inches")
  8195. },
  8196. {
  8197. name: "Micro",
  8198. height: math.unit(2, "inches"),
  8199. default: true
  8200. },
  8201. ]
  8202. ))
  8203. characterMakers.push(() => makeCharacter(
  8204. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8205. {
  8206. front: {
  8207. height: math.unit(3 + 1 / 12, "feet"),
  8208. weight: math.unit(21.7, "lbs"),
  8209. name: "Front",
  8210. image: {
  8211. source: "./media/characters/argent/front.svg",
  8212. extra: 1471 / 1331,
  8213. bottom: 100.8 / 1575.5
  8214. }
  8215. }
  8216. },
  8217. [
  8218. {
  8219. name: "Micro",
  8220. height: math.unit(2, "inches")
  8221. },
  8222. {
  8223. name: "Normal",
  8224. height: math.unit(3 + 1 / 12, "feet"),
  8225. default: true
  8226. },
  8227. {
  8228. name: "Macro",
  8229. height: math.unit(120, "feet")
  8230. },
  8231. ]
  8232. ))
  8233. characterMakers.push(() => makeCharacter(
  8234. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8235. {
  8236. lamp: {
  8237. height: math.unit(7 * 1559 / 989, "feet"),
  8238. name: "Magic Lamp",
  8239. image: {
  8240. source: "./media/characters/mira-al-cul/lamp.svg",
  8241. extra: 1617 / 1559
  8242. }
  8243. },
  8244. front: {
  8245. height: math.unit(7, "feet"),
  8246. name: "Front",
  8247. image: {
  8248. source: "./media/characters/mira-al-cul/front.svg",
  8249. extra: 1044 / 990
  8250. }
  8251. },
  8252. },
  8253. [
  8254. {
  8255. name: "Heavily Restricted",
  8256. height: math.unit(7 * 1559 / 989, "feet")
  8257. },
  8258. {
  8259. name: "Freshly Freed",
  8260. height: math.unit(50 * 1559 / 989, "feet")
  8261. },
  8262. {
  8263. name: "World Encompassing",
  8264. height: math.unit(10000 * 1559 / 989, "miles")
  8265. },
  8266. {
  8267. name: "Galactic",
  8268. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8269. },
  8270. {
  8271. name: "Palmed Universe",
  8272. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8273. default: true
  8274. },
  8275. {
  8276. name: "Multiversal Matriarch",
  8277. height: math.unit(8.87e10, "yottameters")
  8278. },
  8279. {
  8280. name: "Void Mother",
  8281. height: math.unit(3.14e110, "yottaparsecs")
  8282. },
  8283. {
  8284. name: "Toying with Transcendence",
  8285. height: math.unit(1e307, "meters")
  8286. },
  8287. ]
  8288. ))
  8289. characterMakers.push(() => makeCharacter(
  8290. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8291. {
  8292. front: {
  8293. height: math.unit(17 + 1 / 12, "feet"),
  8294. weight: math.unit(476.2 * 5, "lbs"),
  8295. name: "Front",
  8296. image: {
  8297. source: "./media/characters/kuro-shi-uchū/front.svg",
  8298. extra: 2329 / 1835,
  8299. bottom: 0.02
  8300. }
  8301. },
  8302. },
  8303. [
  8304. {
  8305. name: "Micro",
  8306. height: math.unit(2, "inches")
  8307. },
  8308. {
  8309. name: "Normal",
  8310. height: math.unit(12, "meters")
  8311. },
  8312. {
  8313. name: "Planetary",
  8314. height: math.unit(0.00929, "AU"),
  8315. default: true
  8316. },
  8317. {
  8318. name: "Universal",
  8319. height: math.unit(20, "gigaparsecs")
  8320. },
  8321. ]
  8322. ))
  8323. characterMakers.push(() => makeCharacter(
  8324. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8325. {
  8326. front: {
  8327. height: math.unit(5 + 2 / 12, "feet"),
  8328. weight: math.unit(120, "lbs"),
  8329. name: "Front",
  8330. image: {
  8331. source: "./media/characters/katherine/front.svg",
  8332. extra: 2075 / 1969
  8333. }
  8334. },
  8335. dress: {
  8336. height: math.unit(5 + 2 / 12, "feet"),
  8337. weight: math.unit(120, "lbs"),
  8338. name: "Dress",
  8339. image: {
  8340. source: "./media/characters/katherine/dress.svg",
  8341. extra: 2258 / 2064
  8342. }
  8343. },
  8344. },
  8345. [
  8346. {
  8347. name: "Micro",
  8348. height: math.unit(1, "inches"),
  8349. default: true
  8350. },
  8351. {
  8352. name: "Normal",
  8353. height: math.unit(5 + 2 / 12, "feet")
  8354. },
  8355. {
  8356. name: "Macro",
  8357. height: math.unit(100, "meters")
  8358. },
  8359. {
  8360. name: "Megamacro",
  8361. height: math.unit(80, "miles")
  8362. },
  8363. ]
  8364. ))
  8365. characterMakers.push(() => makeCharacter(
  8366. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8367. {
  8368. front: {
  8369. height: math.unit(7 + 8 / 12, "feet"),
  8370. weight: math.unit(250, "lbs"),
  8371. name: "Front",
  8372. image: {
  8373. source: "./media/characters/yevis/front.svg",
  8374. extra: 1938 / 1755
  8375. }
  8376. }
  8377. },
  8378. [
  8379. {
  8380. name: "Mortal",
  8381. height: math.unit(7 + 8 / 12, "feet")
  8382. },
  8383. {
  8384. name: "Battle",
  8385. height: math.unit(25 + 11 / 12, "feet")
  8386. },
  8387. {
  8388. name: "Wrath",
  8389. height: math.unit(1654 + 11 / 12, "feet")
  8390. },
  8391. {
  8392. name: "Planet Destroyer",
  8393. height: math.unit(12000, "miles")
  8394. },
  8395. {
  8396. name: "Galaxy Conqueror",
  8397. height: math.unit(1.45, "zettameters"),
  8398. default: true
  8399. },
  8400. {
  8401. name: "Universal War",
  8402. height: math.unit(184, "gigaparsecs")
  8403. },
  8404. {
  8405. name: "Eternity War",
  8406. height: math.unit(1.98e55, "yottaparsecs")
  8407. },
  8408. ]
  8409. ))
  8410. characterMakers.push(() => makeCharacter(
  8411. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8412. {
  8413. front: {
  8414. height: math.unit(5 + 8 / 12, "feet"),
  8415. weight: math.unit(63, "kg"),
  8416. name: "Front",
  8417. image: {
  8418. source: "./media/characters/xavier/front.svg",
  8419. extra: 944 / 883
  8420. }
  8421. },
  8422. frontStretch: {
  8423. height: math.unit(5 + 8 / 12, "feet"),
  8424. weight: math.unit(63, "kg"),
  8425. name: "Stretching",
  8426. image: {
  8427. source: "./media/characters/xavier/front-stretch.svg",
  8428. extra: 962 / 820
  8429. }
  8430. },
  8431. },
  8432. [
  8433. {
  8434. name: "Normal",
  8435. height: math.unit(5 + 8 / 12, "feet")
  8436. },
  8437. {
  8438. name: "Macro",
  8439. height: math.unit(100, "meters"),
  8440. default: true
  8441. },
  8442. {
  8443. name: "McLargeHuge",
  8444. height: math.unit(10, "miles")
  8445. },
  8446. ]
  8447. ))
  8448. characterMakers.push(() => makeCharacter(
  8449. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8450. {
  8451. front: {
  8452. height: math.unit(5 + 5 / 12, "feet"),
  8453. weight: math.unit(150, "lb"),
  8454. name: "Front",
  8455. image: {
  8456. source: "./media/characters/joshii/front.svg",
  8457. extra: 765 / 653,
  8458. bottom: 51 / 816
  8459. }
  8460. },
  8461. foot: {
  8462. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8463. name: "Foot",
  8464. image: {
  8465. source: "./media/characters/joshii/foot.svg"
  8466. }
  8467. },
  8468. },
  8469. [
  8470. {
  8471. name: "Micro",
  8472. height: math.unit(2, "inches"),
  8473. default: true
  8474. },
  8475. {
  8476. name: "Normal",
  8477. height: math.unit(5 + 5 / 12, "feet")
  8478. },
  8479. {
  8480. name: "Macro",
  8481. height: math.unit(785, "feet")
  8482. },
  8483. {
  8484. name: "Megamacro",
  8485. height: math.unit(24.5, "miles")
  8486. },
  8487. ]
  8488. ))
  8489. characterMakers.push(() => makeCharacter(
  8490. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8491. {
  8492. front: {
  8493. height: math.unit(6, "feet"),
  8494. weight: math.unit(150, "lb"),
  8495. name: "Front",
  8496. image: {
  8497. source: "./media/characters/goddess-elizabeth/front.svg",
  8498. extra: 1800 / 1525,
  8499. bottom: 0.005
  8500. }
  8501. },
  8502. foot: {
  8503. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8504. name: "Foot",
  8505. image: {
  8506. source: "./media/characters/goddess-elizabeth/foot.svg"
  8507. }
  8508. },
  8509. mouth: {
  8510. height: math.unit(6, "feet"),
  8511. name: "Mouth",
  8512. image: {
  8513. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8514. }
  8515. },
  8516. },
  8517. [
  8518. {
  8519. name: "Micro",
  8520. height: math.unit(12, "feet")
  8521. },
  8522. {
  8523. name: "Normal",
  8524. height: math.unit(80, "miles"),
  8525. default: true
  8526. },
  8527. {
  8528. name: "Macro",
  8529. height: math.unit(15000, "parsecs")
  8530. },
  8531. ]
  8532. ))
  8533. characterMakers.push(() => makeCharacter(
  8534. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8535. {
  8536. front: {
  8537. height: math.unit(5 + 9 / 12, "feet"),
  8538. weight: math.unit(144, "lb"),
  8539. name: "Front",
  8540. image: {
  8541. source: "./media/characters/kara/front.svg"
  8542. }
  8543. },
  8544. feet: {
  8545. height: math.unit(6 / 6.765, "feet"),
  8546. name: "Kara's Feet",
  8547. rename: true,
  8548. image: {
  8549. source: "./media/characters/kara/feet.svg"
  8550. }
  8551. },
  8552. },
  8553. [
  8554. {
  8555. name: "Normal",
  8556. height: math.unit(5 + 9 / 12, "feet")
  8557. },
  8558. {
  8559. name: "Macro",
  8560. height: math.unit(174, "feet"),
  8561. default: true
  8562. },
  8563. ]
  8564. ))
  8565. characterMakers.push(() => makeCharacter(
  8566. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8567. {
  8568. front: {
  8569. height: math.unit(18, "feet"),
  8570. weight: math.unit(4050, "lb"),
  8571. name: "Front",
  8572. image: {
  8573. source: "./media/characters/tyrone/front.svg",
  8574. extra: 2405 / 2270,
  8575. bottom: 182 / 2587
  8576. }
  8577. },
  8578. },
  8579. [
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(18, "feet"),
  8583. default: true
  8584. },
  8585. {
  8586. name: "Macro",
  8587. height: math.unit(300, "feet")
  8588. },
  8589. {
  8590. name: "Megamacro",
  8591. height: math.unit(15, "km")
  8592. },
  8593. {
  8594. name: "Gigamacro",
  8595. height: math.unit(500, "km")
  8596. },
  8597. {
  8598. name: "Teramacro",
  8599. height: math.unit(0.5, "gigameters")
  8600. },
  8601. {
  8602. name: "Omnimacro",
  8603. height: math.unit(1e252, "yottauniverse")
  8604. },
  8605. ]
  8606. ))
  8607. characterMakers.push(() => makeCharacter(
  8608. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8609. {
  8610. front: {
  8611. height: math.unit(7 + 8 / 12, "feet"),
  8612. weight: math.unit(120, "lb"),
  8613. name: "Front",
  8614. image: {
  8615. source: "./media/characters/danny/front.svg",
  8616. extra: 1490 / 1350
  8617. }
  8618. },
  8619. back: {
  8620. height: math.unit(7 + 8 / 12, "feet"),
  8621. weight: math.unit(120, "lb"),
  8622. name: "Back",
  8623. image: {
  8624. source: "./media/characters/danny/back.svg",
  8625. extra: 1490 / 1350
  8626. }
  8627. },
  8628. },
  8629. [
  8630. {
  8631. name: "Normal",
  8632. height: math.unit(7 + 8 / 12, "feet"),
  8633. default: true
  8634. },
  8635. ]
  8636. ))
  8637. characterMakers.push(() => makeCharacter(
  8638. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8639. {
  8640. front: {
  8641. height: math.unit(3.5, "inches"),
  8642. weight: math.unit(19, "grams"),
  8643. name: "Front",
  8644. image: {
  8645. source: "./media/characters/mallow/front.svg",
  8646. extra: 471 / 431
  8647. }
  8648. },
  8649. back: {
  8650. height: math.unit(3.5, "inches"),
  8651. weight: math.unit(19, "grams"),
  8652. name: "Back",
  8653. image: {
  8654. source: "./media/characters/mallow/back.svg",
  8655. extra: 471 / 431
  8656. }
  8657. },
  8658. },
  8659. [
  8660. {
  8661. name: "Normal",
  8662. height: math.unit(3.5, "inches"),
  8663. default: true
  8664. },
  8665. ]
  8666. ))
  8667. characterMakers.push(() => makeCharacter(
  8668. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8669. {
  8670. front: {
  8671. height: math.unit(9, "feet"),
  8672. weight: math.unit(230, "kg"),
  8673. name: "Front",
  8674. image: {
  8675. source: "./media/characters/starry-aqua/front.svg"
  8676. }
  8677. },
  8678. back: {
  8679. height: math.unit(9, "feet"),
  8680. weight: math.unit(230, "kg"),
  8681. name: "Back",
  8682. image: {
  8683. source: "./media/characters/starry-aqua/back.svg"
  8684. }
  8685. },
  8686. hand: {
  8687. height: math.unit(9 * 0.1168, "feet"),
  8688. name: "Hand",
  8689. image: {
  8690. source: "./media/characters/starry-aqua/hand.svg"
  8691. }
  8692. },
  8693. foot: {
  8694. height: math.unit(9 * 0.18, "feet"),
  8695. name: "Foot",
  8696. image: {
  8697. source: "./media/characters/starry-aqua/foot.svg"
  8698. }
  8699. }
  8700. },
  8701. [
  8702. {
  8703. name: "Micro",
  8704. height: math.unit(3, "inches")
  8705. },
  8706. {
  8707. name: "Normal",
  8708. height: math.unit(9, "feet")
  8709. },
  8710. {
  8711. name: "Macro",
  8712. height: math.unit(300, "feet"),
  8713. default: true
  8714. },
  8715. {
  8716. name: "Megamacro",
  8717. height: math.unit(3200, "feet")
  8718. }
  8719. ]
  8720. ))
  8721. characterMakers.push(() => makeCharacter(
  8722. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8723. {
  8724. front: {
  8725. height: math.unit(6, "feet"),
  8726. weight: math.unit(230, "lb"),
  8727. name: "Front",
  8728. image: {
  8729. source: "./media/characters/luka/front.svg",
  8730. extra: 1,
  8731. bottom: 0.025
  8732. }
  8733. },
  8734. },
  8735. [
  8736. {
  8737. name: "Normal",
  8738. height: math.unit(12 + 8 / 12, "feet"),
  8739. default: true
  8740. },
  8741. {
  8742. name: "Minimacro",
  8743. height: math.unit(20, "feet")
  8744. },
  8745. {
  8746. name: "Macro",
  8747. height: math.unit(250, "feet")
  8748. },
  8749. {
  8750. name: "Megamacro",
  8751. height: math.unit(5, "miles")
  8752. },
  8753. {
  8754. name: "Gigamacro",
  8755. height: math.unit(8000, "miles")
  8756. },
  8757. ]
  8758. ))
  8759. characterMakers.push(() => makeCharacter(
  8760. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8761. {
  8762. front: {
  8763. height: math.unit(6, "feet"),
  8764. weight: math.unit(150, "lb"),
  8765. name: "Front",
  8766. image: {
  8767. source: "./media/characters/natalie-nightring/front.svg",
  8768. extra: 1,
  8769. bottom: 0.06
  8770. }
  8771. },
  8772. },
  8773. [
  8774. {
  8775. name: "Uh Oh",
  8776. height: math.unit(0.1, "mm")
  8777. },
  8778. {
  8779. name: "Small",
  8780. height: math.unit(3, "inches")
  8781. },
  8782. {
  8783. name: "Human Scale",
  8784. height: math.unit(6, "feet")
  8785. },
  8786. {
  8787. name: "Librarian",
  8788. height: math.unit(50, "feet"),
  8789. default: true
  8790. },
  8791. {
  8792. name: "Immense",
  8793. height: math.unit(200, "miles")
  8794. },
  8795. ]
  8796. ))
  8797. characterMakers.push(() => makeCharacter(
  8798. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8799. {
  8800. front: {
  8801. height: math.unit(6, "feet"),
  8802. weight: math.unit(180, "lbs"),
  8803. name: "Front",
  8804. image: {
  8805. source: "./media/characters/danni-rosie/front.svg",
  8806. extra: 1260 / 1128,
  8807. bottom: 0.022
  8808. }
  8809. },
  8810. },
  8811. [
  8812. {
  8813. name: "Micro",
  8814. height: math.unit(2, "inches"),
  8815. default: true
  8816. },
  8817. ]
  8818. ))
  8819. characterMakers.push(() => makeCharacter(
  8820. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8821. {
  8822. front: {
  8823. height: math.unit(5 + 9 / 12, "feet"),
  8824. weight: math.unit(220, "lb"),
  8825. name: "Front",
  8826. image: {
  8827. source: "./media/characters/samantha-kruse/front.svg",
  8828. extra: (985 / 935),
  8829. bottom: 0.03
  8830. }
  8831. },
  8832. frontUndressed: {
  8833. height: math.unit(5 + 9 / 12, "feet"),
  8834. weight: math.unit(220, "lb"),
  8835. name: "Front (Undressed)",
  8836. image: {
  8837. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8838. extra: (973 / 923),
  8839. bottom: 0.025
  8840. }
  8841. },
  8842. fat: {
  8843. height: math.unit(5 + 9 / 12, "feet"),
  8844. weight: math.unit(900, "lb"),
  8845. name: "Front (Fat)",
  8846. image: {
  8847. source: "./media/characters/samantha-kruse/fat.svg",
  8848. extra: 2688 / 2561
  8849. }
  8850. },
  8851. },
  8852. [
  8853. {
  8854. name: "Normal",
  8855. height: math.unit(5 + 9 / 12, "feet"),
  8856. default: true
  8857. }
  8858. ]
  8859. ))
  8860. characterMakers.push(() => makeCharacter(
  8861. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8862. {
  8863. back: {
  8864. height: math.unit(5 + 4 / 12, "feet"),
  8865. weight: math.unit(4963, "lb"),
  8866. name: "Back",
  8867. image: {
  8868. source: "./media/characters/amelia-rosie/back.svg",
  8869. extra: 1113 / 963,
  8870. bottom: 0.01
  8871. }
  8872. },
  8873. },
  8874. [
  8875. {
  8876. name: "Level 0",
  8877. height: math.unit(5 + 4 / 12, "feet")
  8878. },
  8879. {
  8880. name: "Level 1",
  8881. height: math.unit(164597, "feet"),
  8882. default: true
  8883. },
  8884. {
  8885. name: "Level 2",
  8886. height: math.unit(956243, "miles")
  8887. },
  8888. {
  8889. name: "Level 3",
  8890. height: math.unit(29421709423, "miles")
  8891. },
  8892. {
  8893. name: "Level 4",
  8894. height: math.unit(154, "lightyears")
  8895. },
  8896. {
  8897. name: "Level 5",
  8898. height: math.unit(4738272, "lightyears")
  8899. },
  8900. {
  8901. name: "Level 6",
  8902. height: math.unit(145787152896, "lightyears")
  8903. },
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8908. {
  8909. front: {
  8910. height: math.unit(5 + 11 / 12, "feet"),
  8911. weight: math.unit(65, "kg"),
  8912. name: "Front",
  8913. image: {
  8914. source: "./media/characters/rook-kitara/front.svg",
  8915. extra: 1347 / 1274,
  8916. bottom: 0.005
  8917. }
  8918. },
  8919. },
  8920. [
  8921. {
  8922. name: "Totally Unfair",
  8923. height: math.unit(1.8, "mm")
  8924. },
  8925. {
  8926. name: "Lap Rookie",
  8927. height: math.unit(1.4, "feet")
  8928. },
  8929. {
  8930. name: "Normal",
  8931. height: math.unit(5 + 11 / 12, "feet"),
  8932. default: true
  8933. },
  8934. {
  8935. name: "How Did This Happen",
  8936. height: math.unit(80, "miles")
  8937. }
  8938. ]
  8939. ))
  8940. characterMakers.push(() => makeCharacter(
  8941. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8942. {
  8943. front: {
  8944. height: math.unit(7, "feet"),
  8945. weight: math.unit(300, "lb"),
  8946. name: "Front",
  8947. image: {
  8948. source: "./media/characters/pisces/front.svg",
  8949. extra: 2255 / 2115,
  8950. bottom: 0.03
  8951. }
  8952. },
  8953. back: {
  8954. height: math.unit(7, "feet"),
  8955. weight: math.unit(300, "lb"),
  8956. name: "Back",
  8957. image: {
  8958. source: "./media/characters/pisces/back.svg",
  8959. extra: 2146 / 2055,
  8960. bottom: 0.04
  8961. }
  8962. },
  8963. },
  8964. [
  8965. {
  8966. name: "Normal",
  8967. height: math.unit(7, "feet"),
  8968. default: true
  8969. },
  8970. {
  8971. name: "Swimming Pool",
  8972. height: math.unit(12.2, "meters")
  8973. },
  8974. {
  8975. name: "Olympic Swimming Pool",
  8976. height: math.unit(56.3, "meters")
  8977. },
  8978. {
  8979. name: "Lake Superior",
  8980. height: math.unit(93900, "meters")
  8981. },
  8982. {
  8983. name: "Mediterranean Sea",
  8984. height: math.unit(644457, "meters")
  8985. },
  8986. {
  8987. name: "World's Oceans",
  8988. height: math.unit(4567491, "meters")
  8989. },
  8990. ]
  8991. ))
  8992. characterMakers.push(() => makeCharacter(
  8993. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8994. {
  8995. front: {
  8996. height: math.unit(2.3, "meters"),
  8997. weight: math.unit(120, "kg"),
  8998. name: "Front",
  8999. image: {
  9000. source: "./media/characters/zelas/front.svg"
  9001. }
  9002. },
  9003. side: {
  9004. height: math.unit(2.3, "meters"),
  9005. weight: math.unit(120, "kg"),
  9006. name: "Side",
  9007. image: {
  9008. source: "./media/characters/zelas/side.svg"
  9009. }
  9010. },
  9011. back: {
  9012. height: math.unit(2.3, "meters"),
  9013. weight: math.unit(120, "kg"),
  9014. name: "Back",
  9015. image: {
  9016. source: "./media/characters/zelas/back.svg"
  9017. }
  9018. },
  9019. foot: {
  9020. height: math.unit(1.116, "feet"),
  9021. name: "Foot",
  9022. image: {
  9023. source: "./media/characters/zelas/foot.svg"
  9024. }
  9025. },
  9026. },
  9027. [
  9028. {
  9029. name: "Normal",
  9030. height: math.unit(2.3, "meters")
  9031. },
  9032. {
  9033. name: "Macro",
  9034. height: math.unit(30, "meters"),
  9035. default: true
  9036. },
  9037. ]
  9038. ))
  9039. characterMakers.push(() => makeCharacter(
  9040. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9041. {
  9042. front: {
  9043. height: math.unit(1, "inch"),
  9044. weight: math.unit(0.21, "grams"),
  9045. name: "Front",
  9046. image: {
  9047. source: "./media/characters/talbot/front.svg",
  9048. extra: 594 / 544
  9049. }
  9050. },
  9051. },
  9052. [
  9053. {
  9054. name: "Micro",
  9055. height: math.unit(1, "inch"),
  9056. default: true
  9057. },
  9058. ]
  9059. ))
  9060. characterMakers.push(() => makeCharacter(
  9061. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9062. {
  9063. front: {
  9064. height: math.unit(3 + 3 / 12, "feet"),
  9065. weight: math.unit(51.8, "lb"),
  9066. name: "Front",
  9067. image: {
  9068. source: "./media/characters/fliss/front.svg",
  9069. extra: 840 / 640
  9070. }
  9071. },
  9072. },
  9073. [
  9074. {
  9075. name: "Teeny Tiny",
  9076. height: math.unit(1, "mm")
  9077. },
  9078. {
  9079. name: "Small",
  9080. height: math.unit(1, "inch"),
  9081. default: true
  9082. },
  9083. {
  9084. name: "Standard Sylveon",
  9085. height: math.unit(3 + 3 / 12, "feet")
  9086. },
  9087. {
  9088. name: "Large Nuisance",
  9089. height: math.unit(33, "feet")
  9090. },
  9091. {
  9092. name: "City Filler",
  9093. height: math.unit(3000, "feet")
  9094. },
  9095. {
  9096. name: "New Horizon",
  9097. height: math.unit(6000, "miles")
  9098. },
  9099. ]
  9100. ))
  9101. characterMakers.push(() => makeCharacter(
  9102. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9103. {
  9104. front: {
  9105. height: math.unit(5, "cm"),
  9106. weight: math.unit(1.94, "g"),
  9107. name: "Front",
  9108. image: {
  9109. source: "./media/characters/fleta/front.svg",
  9110. extra: 835 / 803
  9111. }
  9112. },
  9113. back: {
  9114. height: math.unit(5, "cm"),
  9115. weight: math.unit(1.94, "g"),
  9116. name: "Back",
  9117. image: {
  9118. source: "./media/characters/fleta/back.svg",
  9119. extra: 835 / 803
  9120. }
  9121. },
  9122. },
  9123. [
  9124. {
  9125. name: "Micro",
  9126. height: math.unit(5, "cm"),
  9127. default: true
  9128. },
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9133. {
  9134. front: {
  9135. height: math.unit(6, "feet"),
  9136. weight: math.unit(225, "lb"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/dominic/front.svg",
  9140. extra: 1770 / 1620,
  9141. bottom: 0.025
  9142. }
  9143. },
  9144. back: {
  9145. height: math.unit(6, "feet"),
  9146. weight: math.unit(225, "lb"),
  9147. name: "Back",
  9148. image: {
  9149. source: "./media/characters/dominic/back.svg",
  9150. extra: 1745 / 1620,
  9151. bottom: 0.065
  9152. }
  9153. },
  9154. },
  9155. [
  9156. {
  9157. name: "Nano",
  9158. height: math.unit(0.1, "mm")
  9159. },
  9160. {
  9161. name: "Micro-",
  9162. height: math.unit(1, "mm")
  9163. },
  9164. {
  9165. name: "Micro",
  9166. height: math.unit(4, "inches")
  9167. },
  9168. {
  9169. name: "Normal",
  9170. height: math.unit(6 + 4 / 12, "feet"),
  9171. default: true
  9172. },
  9173. {
  9174. name: "Macro",
  9175. height: math.unit(115, "feet")
  9176. },
  9177. {
  9178. name: "Macro+",
  9179. height: math.unit(955, "feet")
  9180. },
  9181. {
  9182. name: "Megamacro",
  9183. height: math.unit(8990, "feet")
  9184. },
  9185. {
  9186. name: "Gigmacro",
  9187. height: math.unit(9310, "miles")
  9188. },
  9189. {
  9190. name: "Teramacro",
  9191. height: math.unit(1567005010, "miles")
  9192. },
  9193. {
  9194. name: "Examacro",
  9195. height: math.unit(1425, "parsecs")
  9196. },
  9197. ]
  9198. ))
  9199. characterMakers.push(() => makeCharacter(
  9200. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9201. {
  9202. front: {
  9203. height: math.unit(400, "feet"),
  9204. weight: math.unit(44444444, "lb"),
  9205. name: "Front",
  9206. image: {
  9207. source: "./media/characters/major-colonel/front.svg"
  9208. }
  9209. },
  9210. back: {
  9211. height: math.unit(400, "feet"),
  9212. weight: math.unit(44444444, "lb"),
  9213. name: "Back",
  9214. image: {
  9215. source: "./media/characters/major-colonel/back.svg"
  9216. }
  9217. },
  9218. },
  9219. [
  9220. {
  9221. name: "Macro",
  9222. height: math.unit(400, "feet"),
  9223. default: true
  9224. },
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9229. {
  9230. catFront: {
  9231. height: math.unit(6, "feet"),
  9232. weight: math.unit(120, "lb"),
  9233. name: "Front (Cat Side)",
  9234. image: {
  9235. source: "./media/characters/axel-lycan/cat-front.svg",
  9236. extra: 430 / 402,
  9237. bottom: 43 / 472.35
  9238. }
  9239. },
  9240. catBack: {
  9241. height: math.unit(6, "feet"),
  9242. weight: math.unit(120, "lb"),
  9243. name: "Back (Cat Side)",
  9244. image: {
  9245. source: "./media/characters/axel-lycan/cat-back.svg",
  9246. extra: 447 / 419,
  9247. bottom: 23.3 / 469
  9248. }
  9249. },
  9250. wolfFront: {
  9251. height: math.unit(6, "feet"),
  9252. weight: math.unit(120, "lb"),
  9253. name: "Front (Wolf Side)",
  9254. image: {
  9255. source: "./media/characters/axel-lycan/wolf-front.svg",
  9256. extra: 485 / 456,
  9257. bottom: 19 / 504
  9258. }
  9259. },
  9260. wolfBack: {
  9261. height: math.unit(6, "feet"),
  9262. weight: math.unit(120, "lb"),
  9263. name: "Back (Wolf Side)",
  9264. image: {
  9265. source: "./media/characters/axel-lycan/wolf-back.svg",
  9266. extra: 475 / 438,
  9267. bottom: 39.2 / 514
  9268. }
  9269. },
  9270. },
  9271. [
  9272. {
  9273. name: "Macro",
  9274. height: math.unit(1, "km"),
  9275. default: true
  9276. },
  9277. ]
  9278. ))
  9279. characterMakers.push(() => makeCharacter(
  9280. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9281. {
  9282. front: {
  9283. height: math.unit(5 + 9 / 12, "feet"),
  9284. weight: math.unit(175, "lb"),
  9285. name: "Front",
  9286. image: {
  9287. source: "./media/characters/vanrel-hyena/front.svg",
  9288. extra: 1086 / 1010,
  9289. bottom: 0.04
  9290. }
  9291. },
  9292. },
  9293. [
  9294. {
  9295. name: "Normal",
  9296. height: math.unit(5 + 9 / 12, "feet"),
  9297. default: true
  9298. },
  9299. ]
  9300. ))
  9301. characterMakers.push(() => makeCharacter(
  9302. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9303. {
  9304. front: {
  9305. height: math.unit(6, "feet"),
  9306. weight: math.unit(103, "lb"),
  9307. name: "Front",
  9308. image: {
  9309. source: "./media/characters/abbott-absol/front.svg",
  9310. extra: 2010 / 1842
  9311. }
  9312. },
  9313. },
  9314. [
  9315. {
  9316. name: "Megamicro",
  9317. height: math.unit(0.1, "mm")
  9318. },
  9319. {
  9320. name: "Micro",
  9321. height: math.unit(1, "inch")
  9322. },
  9323. {
  9324. name: "Normal",
  9325. height: math.unit(6, "feet"),
  9326. default: true
  9327. },
  9328. ]
  9329. ))
  9330. characterMakers.push(() => makeCharacter(
  9331. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9332. {
  9333. front: {
  9334. height: math.unit(6, "feet"),
  9335. weight: math.unit(264, "lb"),
  9336. name: "Front",
  9337. image: {
  9338. source: "./media/characters/hector/front.svg",
  9339. extra: 2280 / 2130,
  9340. bottom: 0.07
  9341. }
  9342. },
  9343. },
  9344. [
  9345. {
  9346. name: "Normal",
  9347. height: math.unit(12.25, "foot"),
  9348. default: true
  9349. },
  9350. {
  9351. name: "Macro",
  9352. height: math.unit(160, "feet")
  9353. },
  9354. ]
  9355. ))
  9356. characterMakers.push(() => makeCharacter(
  9357. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9358. {
  9359. front: {
  9360. height: math.unit(6, "feet"),
  9361. weight: math.unit(150, "lb"),
  9362. name: "Front",
  9363. image: {
  9364. source: "./media/characters/sal/front.svg",
  9365. extra: 1846 / 1699,
  9366. bottom: 0.04
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Megamacro",
  9373. height: math.unit(10, "miles"),
  9374. default: true
  9375. },
  9376. ]
  9377. ))
  9378. characterMakers.push(() => makeCharacter(
  9379. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9380. {
  9381. front: {
  9382. height: math.unit(3, "meters"),
  9383. weight: math.unit(450, "kg"),
  9384. name: "front",
  9385. image: {
  9386. source: "./media/characters/ranger/front.svg",
  9387. extra: 2401 / 2243,
  9388. bottom: 0.05
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Normal",
  9395. height: math.unit(3, "meters"),
  9396. default: true
  9397. },
  9398. ]
  9399. ))
  9400. characterMakers.push(() => makeCharacter(
  9401. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9402. {
  9403. front: {
  9404. height: math.unit(14, "feet"),
  9405. weight: math.unit(800, "kg"),
  9406. name: "Front",
  9407. image: {
  9408. source: "./media/characters/theresa/front.svg",
  9409. extra: 3575 / 3346,
  9410. bottom: 0.03
  9411. }
  9412. },
  9413. },
  9414. [
  9415. {
  9416. name: "Normal",
  9417. height: math.unit(14, "feet"),
  9418. default: true
  9419. },
  9420. ]
  9421. ))
  9422. characterMakers.push(() => makeCharacter(
  9423. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9424. {
  9425. front: {
  9426. height: math.unit(6, "feet"),
  9427. weight: math.unit(3, "kg"),
  9428. name: "Front",
  9429. image: {
  9430. source: "./media/characters/ine/front.svg",
  9431. extra: 678 / 539,
  9432. bottom: 0.023
  9433. }
  9434. },
  9435. },
  9436. [
  9437. {
  9438. name: "Normal",
  9439. height: math.unit(2.265, "feet"),
  9440. default: true
  9441. },
  9442. ]
  9443. ))
  9444. characterMakers.push(() => makeCharacter(
  9445. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9446. {
  9447. front: {
  9448. height: math.unit(5, "feet"),
  9449. weight: math.unit(30, "kg"),
  9450. name: "Front",
  9451. image: {
  9452. source: "./media/characters/vial/front.svg",
  9453. extra: 1365 / 1277,
  9454. bottom: 0.04
  9455. }
  9456. },
  9457. },
  9458. [
  9459. {
  9460. name: "Normal",
  9461. height: math.unit(5, "feet"),
  9462. default: true
  9463. },
  9464. ]
  9465. ))
  9466. characterMakers.push(() => makeCharacter(
  9467. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9468. {
  9469. side: {
  9470. height: math.unit(3.4, "meters"),
  9471. weight: math.unit(1000, "lb"),
  9472. name: "Side",
  9473. image: {
  9474. source: "./media/characters/rovoska/side.svg",
  9475. extra: 4403 / 1515
  9476. }
  9477. },
  9478. },
  9479. [
  9480. {
  9481. name: "Normal",
  9482. height: math.unit(3.4, "meters"),
  9483. default: true
  9484. },
  9485. ]
  9486. ))
  9487. characterMakers.push(() => makeCharacter(
  9488. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9489. {
  9490. front: {
  9491. height: math.unit(8, "feet"),
  9492. weight: math.unit(315, "lb"),
  9493. name: "Front",
  9494. image: {
  9495. source: "./media/characters/gunner-rotthbauer/front.svg"
  9496. }
  9497. },
  9498. back: {
  9499. height: math.unit(8, "feet"),
  9500. weight: math.unit(315, "lb"),
  9501. name: "Back",
  9502. image: {
  9503. source: "./media/characters/gunner-rotthbauer/back.svg"
  9504. }
  9505. },
  9506. },
  9507. [
  9508. {
  9509. name: "Micro",
  9510. height: math.unit(3.5, "inches")
  9511. },
  9512. {
  9513. name: "Normal",
  9514. height: math.unit(8, "feet"),
  9515. default: true
  9516. },
  9517. {
  9518. name: "Macro",
  9519. height: math.unit(250, "feet")
  9520. },
  9521. {
  9522. name: "Megamacro",
  9523. height: math.unit(1, "AU")
  9524. },
  9525. ]
  9526. ))
  9527. characterMakers.push(() => makeCharacter(
  9528. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9529. {
  9530. front: {
  9531. height: math.unit(5 + 5 / 12, "feet"),
  9532. weight: math.unit(140, "lb"),
  9533. name: "Front",
  9534. image: {
  9535. source: "./media/characters/allatia/front.svg",
  9536. extra: 1227 / 1180,
  9537. bottom: 0.027
  9538. }
  9539. },
  9540. },
  9541. [
  9542. {
  9543. name: "Normal",
  9544. height: math.unit(5 + 5 / 12, "feet")
  9545. },
  9546. {
  9547. name: "Macro",
  9548. height: math.unit(250, "feet"),
  9549. default: true
  9550. },
  9551. {
  9552. name: "Megamacro",
  9553. height: math.unit(8, "miles")
  9554. }
  9555. ]
  9556. ))
  9557. characterMakers.push(() => makeCharacter(
  9558. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9559. {
  9560. front: {
  9561. height: math.unit(6, "feet"),
  9562. weight: math.unit(120, "lb"),
  9563. name: "Front",
  9564. image: {
  9565. source: "./media/characters/tene/front.svg",
  9566. extra: 1728 / 1578,
  9567. bottom: 0.022
  9568. }
  9569. },
  9570. stomping: {
  9571. height: math.unit(2.025, "meters"),
  9572. weight: math.unit(120, "lb"),
  9573. name: "Stomping",
  9574. image: {
  9575. source: "./media/characters/tene/stomping.svg",
  9576. extra: 938 / 873,
  9577. bottom: 0.01
  9578. }
  9579. },
  9580. sitting: {
  9581. height: math.unit(1, "meter"),
  9582. weight: math.unit(120, "lb"),
  9583. name: "Sitting",
  9584. image: {
  9585. source: "./media/characters/tene/sitting.svg",
  9586. extra: 437 / 415,
  9587. bottom: 0.1
  9588. }
  9589. },
  9590. feral: {
  9591. height: math.unit(3.9, "feet"),
  9592. weight: math.unit(250, "lb"),
  9593. name: "Feral",
  9594. image: {
  9595. source: "./media/characters/tene/feral.svg",
  9596. extra: 717 / 458,
  9597. bottom: 0.179
  9598. }
  9599. },
  9600. },
  9601. [
  9602. {
  9603. name: "Normal",
  9604. height: math.unit(6, "feet")
  9605. },
  9606. {
  9607. name: "Macro",
  9608. height: math.unit(300, "feet"),
  9609. default: true
  9610. },
  9611. {
  9612. name: "Megamacro",
  9613. height: math.unit(5, "miles")
  9614. },
  9615. ]
  9616. ))
  9617. characterMakers.push(() => makeCharacter(
  9618. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9619. {
  9620. side: {
  9621. height: math.unit(6, "feet"),
  9622. name: "Side",
  9623. image: {
  9624. source: "./media/characters/evander/side.svg",
  9625. extra: 877 / 477
  9626. }
  9627. },
  9628. },
  9629. [
  9630. {
  9631. name: "Normal",
  9632. height: math.unit(0.83, "meters"),
  9633. default: true
  9634. },
  9635. ]
  9636. ))
  9637. characterMakers.push(() => makeCharacter(
  9638. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9639. {
  9640. front: {
  9641. height: math.unit(12, "feet"),
  9642. weight: math.unit(1000, "lb"),
  9643. name: "Front",
  9644. image: {
  9645. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9646. extra: 1762 / 1611
  9647. }
  9648. },
  9649. back: {
  9650. height: math.unit(12, "feet"),
  9651. weight: math.unit(1000, "lb"),
  9652. name: "Back",
  9653. image: {
  9654. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9655. extra: 1762 / 1611
  9656. }
  9657. },
  9658. },
  9659. [
  9660. {
  9661. name: "Normal",
  9662. height: math.unit(12, "feet"),
  9663. default: true
  9664. },
  9665. {
  9666. name: "Kaiju",
  9667. height: math.unit(150, "feet")
  9668. },
  9669. ]
  9670. ))
  9671. characterMakers.push(() => makeCharacter(
  9672. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9673. {
  9674. front: {
  9675. height: math.unit(6, "feet"),
  9676. weight: math.unit(150, "lb"),
  9677. name: "Front",
  9678. image: {
  9679. source: "./media/characters/zero-alurus/front.svg"
  9680. }
  9681. },
  9682. back: {
  9683. height: math.unit(6, "feet"),
  9684. weight: math.unit(150, "lb"),
  9685. name: "Back",
  9686. image: {
  9687. source: "./media/characters/zero-alurus/back.svg"
  9688. }
  9689. },
  9690. },
  9691. [
  9692. {
  9693. name: "Normal",
  9694. height: math.unit(5 + 10 / 12, "feet")
  9695. },
  9696. {
  9697. name: "Macro",
  9698. height: math.unit(60, "feet"),
  9699. default: true
  9700. },
  9701. {
  9702. name: "Macro+",
  9703. height: math.unit(450, "feet")
  9704. },
  9705. ]
  9706. ))
  9707. characterMakers.push(() => makeCharacter(
  9708. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9709. {
  9710. front: {
  9711. height: math.unit(6, "feet"),
  9712. weight: math.unit(200, "lb"),
  9713. name: "Front",
  9714. image: {
  9715. source: "./media/characters/mega-shi/front.svg",
  9716. extra: 1279 / 1250,
  9717. bottom: 0.02
  9718. }
  9719. },
  9720. back: {
  9721. height: math.unit(6, "feet"),
  9722. weight: math.unit(200, "lb"),
  9723. name: "Back",
  9724. image: {
  9725. source: "./media/characters/mega-shi/back.svg",
  9726. extra: 1279 / 1250,
  9727. bottom: 0.02
  9728. }
  9729. },
  9730. },
  9731. [
  9732. {
  9733. name: "Micro",
  9734. height: math.unit(16 + 6 / 12, "feet")
  9735. },
  9736. {
  9737. name: "Third Dimension",
  9738. height: math.unit(40, "meters")
  9739. },
  9740. {
  9741. name: "Normal",
  9742. height: math.unit(660, "feet"),
  9743. default: true
  9744. },
  9745. {
  9746. name: "Megamacro",
  9747. height: math.unit(10, "miles")
  9748. },
  9749. {
  9750. name: "Planetary Launch",
  9751. height: math.unit(500, "miles")
  9752. },
  9753. {
  9754. name: "Interstellar",
  9755. height: math.unit(1e9, "miles")
  9756. },
  9757. {
  9758. name: "Leaving the Universe",
  9759. height: math.unit(1, "gigaparsec")
  9760. },
  9761. {
  9762. name: "Travelling Universes",
  9763. height: math.unit(30e15, "parsecs")
  9764. },
  9765. ]
  9766. ))
  9767. characterMakers.push(() => makeCharacter(
  9768. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9769. {
  9770. front: {
  9771. height: math.unit(6, "feet"),
  9772. weight: math.unit(150, "lb"),
  9773. name: "Front",
  9774. image: {
  9775. source: "./media/characters/odyssey/front.svg",
  9776. extra: 1782 / 1582,
  9777. bottom: 0.01
  9778. }
  9779. },
  9780. side: {
  9781. height: math.unit(5.7, "feet"),
  9782. weight: math.unit(140, "lb"),
  9783. name: "Side",
  9784. image: {
  9785. source: "./media/characters/odyssey/side.svg",
  9786. extra: 6462 / 5700
  9787. }
  9788. },
  9789. },
  9790. [
  9791. {
  9792. name: "Normal",
  9793. height: math.unit(5 + 4 / 12, "feet")
  9794. },
  9795. {
  9796. name: "Macro",
  9797. height: math.unit(1, "km")
  9798. },
  9799. {
  9800. name: "Megamacro",
  9801. height: math.unit(3000, "km")
  9802. },
  9803. {
  9804. name: "Gigamacro",
  9805. height: math.unit(1, "AU"),
  9806. default: true
  9807. },
  9808. {
  9809. name: "Omniversal",
  9810. height: math.unit(100e14, "lightyears")
  9811. },
  9812. ]
  9813. ))
  9814. characterMakers.push(() => makeCharacter(
  9815. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9816. {
  9817. front: {
  9818. height: math.unit(6, "feet"),
  9819. weight: math.unit(300, "lb"),
  9820. name: "Front",
  9821. image: {
  9822. source: "./media/characters/mekuto/front.svg",
  9823. extra: 921 / 832,
  9824. bottom: 0.03
  9825. }
  9826. },
  9827. hand: {
  9828. height: math.unit(6 / 10.24, "feet"),
  9829. name: "Hand",
  9830. image: {
  9831. source: "./media/characters/mekuto/hand.svg"
  9832. }
  9833. },
  9834. foot: {
  9835. height: math.unit(6 / 5.05, "feet"),
  9836. name: "Foot",
  9837. image: {
  9838. source: "./media/characters/mekuto/foot.svg"
  9839. }
  9840. },
  9841. },
  9842. [
  9843. {
  9844. name: "Minimicro",
  9845. height: math.unit(0.2, "inches")
  9846. },
  9847. {
  9848. name: "Micro",
  9849. height: math.unit(1.5, "inches")
  9850. },
  9851. {
  9852. name: "Normal",
  9853. height: math.unit(5 + 11 / 12, "feet"),
  9854. default: true
  9855. },
  9856. {
  9857. name: "Minimacro",
  9858. height: math.unit(17 + 9 / 12, "feet")
  9859. },
  9860. {
  9861. name: "Macro",
  9862. height: math.unit(177.5, "feet")
  9863. },
  9864. {
  9865. name: "Megamacro",
  9866. height: math.unit(152, "miles")
  9867. },
  9868. ]
  9869. ))
  9870. characterMakers.push(() => makeCharacter(
  9871. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9872. {
  9873. front: {
  9874. height: math.unit(6.5, "inches"),
  9875. weight: math.unit(13, "oz"),
  9876. name: "Front",
  9877. image: {
  9878. source: "./media/characters/dafydd-tomos/front.svg",
  9879. extra: 2990 / 2603,
  9880. bottom: 0.03
  9881. }
  9882. },
  9883. },
  9884. [
  9885. {
  9886. name: "Micro",
  9887. height: math.unit(6.5, "inches"),
  9888. default: true
  9889. },
  9890. ]
  9891. ))
  9892. characterMakers.push(() => makeCharacter(
  9893. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9894. {
  9895. front: {
  9896. height: math.unit(6, "feet"),
  9897. weight: math.unit(150, "lb"),
  9898. name: "Front",
  9899. image: {
  9900. source: "./media/characters/splinter/front.svg",
  9901. extra: 2990 / 2882,
  9902. bottom: 0.04
  9903. }
  9904. },
  9905. back: {
  9906. height: math.unit(6, "feet"),
  9907. weight: math.unit(150, "lb"),
  9908. name: "Back",
  9909. image: {
  9910. source: "./media/characters/splinter/back.svg",
  9911. extra: 2990 / 2882,
  9912. bottom: 0.04
  9913. }
  9914. },
  9915. },
  9916. [
  9917. {
  9918. name: "Normal",
  9919. height: math.unit(6, "feet")
  9920. },
  9921. {
  9922. name: "Macro",
  9923. height: math.unit(230, "meters"),
  9924. default: true
  9925. },
  9926. ]
  9927. ))
  9928. characterMakers.push(() => makeCharacter(
  9929. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9930. {
  9931. front: {
  9932. height: math.unit(4 + 10 / 12, "feet"),
  9933. weight: math.unit(480, "lb"),
  9934. name: "Front",
  9935. image: {
  9936. source: "./media/characters/snow-gabumon/front.svg",
  9937. extra: 1140 / 963,
  9938. bottom: 0.058
  9939. }
  9940. },
  9941. back: {
  9942. height: math.unit(4 + 10 / 12, "feet"),
  9943. weight: math.unit(480, "lb"),
  9944. name: "Back",
  9945. image: {
  9946. source: "./media/characters/snow-gabumon/back.svg",
  9947. extra: 1115 / 962,
  9948. bottom: 0.041
  9949. }
  9950. },
  9951. frontUndresed: {
  9952. height: math.unit(4 + 10 / 12, "feet"),
  9953. weight: math.unit(480, "lb"),
  9954. name: "Front (Undressed)",
  9955. image: {
  9956. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9957. extra: 1061 / 960,
  9958. bottom: 0.045
  9959. }
  9960. },
  9961. },
  9962. [
  9963. {
  9964. name: "Micro",
  9965. height: math.unit(1, "inch")
  9966. },
  9967. {
  9968. name: "Normal",
  9969. height: math.unit(4 + 10 / 12, "feet"),
  9970. default: true
  9971. },
  9972. {
  9973. name: "Macro",
  9974. height: math.unit(200, "feet")
  9975. },
  9976. {
  9977. name: "Megamacro",
  9978. height: math.unit(120, "miles")
  9979. },
  9980. {
  9981. name: "Gigamacro",
  9982. height: math.unit(9800, "miles")
  9983. },
  9984. ]
  9985. ))
  9986. characterMakers.push(() => makeCharacter(
  9987. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9988. {
  9989. front: {
  9990. height: math.unit(1.7, "meters"),
  9991. weight: math.unit(140, "lb"),
  9992. name: "Front",
  9993. image: {
  9994. source: "./media/characters/moody/front.svg",
  9995. extra: 3226 / 3007,
  9996. bottom: 0.087
  9997. }
  9998. },
  9999. },
  10000. [
  10001. {
  10002. name: "Micro",
  10003. height: math.unit(1, "mm")
  10004. },
  10005. {
  10006. name: "Normal",
  10007. height: math.unit(1.7, "meters"),
  10008. default: true
  10009. },
  10010. {
  10011. name: "Macro",
  10012. height: math.unit(80, "meters")
  10013. },
  10014. {
  10015. name: "Macro+",
  10016. height: math.unit(500, "meters")
  10017. },
  10018. ]
  10019. ))
  10020. characterMakers.push(() => makeCharacter(
  10021. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10022. {
  10023. front: {
  10024. height: math.unit(6, "feet"),
  10025. weight: math.unit(150, "lb"),
  10026. name: "Front",
  10027. image: {
  10028. source: "./media/characters/zyas/front.svg",
  10029. extra: 1180 / 1120,
  10030. bottom: 0.045
  10031. }
  10032. },
  10033. },
  10034. [
  10035. {
  10036. name: "Normal",
  10037. height: math.unit(10, "feet"),
  10038. default: true
  10039. },
  10040. {
  10041. name: "Macro",
  10042. height: math.unit(500, "feet")
  10043. },
  10044. {
  10045. name: "Megamacro",
  10046. height: math.unit(5, "miles")
  10047. },
  10048. {
  10049. name: "Teramacro",
  10050. height: math.unit(150000, "miles")
  10051. },
  10052. ]
  10053. ))
  10054. characterMakers.push(() => makeCharacter(
  10055. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10056. {
  10057. front: {
  10058. height: math.unit(6, "feet"),
  10059. weight: math.unit(150, "lb"),
  10060. name: "Front",
  10061. image: {
  10062. source: "./media/characters/cuon/front.svg",
  10063. extra: 1390 / 1320,
  10064. bottom: 0.008
  10065. }
  10066. },
  10067. },
  10068. [
  10069. {
  10070. name: "Micro",
  10071. height: math.unit(3, "inches")
  10072. },
  10073. {
  10074. name: "Normal",
  10075. height: math.unit(18 + 9 / 12, "feet"),
  10076. default: true
  10077. },
  10078. {
  10079. name: "Macro",
  10080. height: math.unit(360, "feet")
  10081. },
  10082. {
  10083. name: "Megamacro",
  10084. height: math.unit(360, "miles")
  10085. },
  10086. ]
  10087. ))
  10088. characterMakers.push(() => makeCharacter(
  10089. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10090. {
  10091. front: {
  10092. height: math.unit(2.4, "meters"),
  10093. weight: math.unit(70, "kg"),
  10094. name: "Front",
  10095. image: {
  10096. source: "./media/characters/nyanuxk/front.svg",
  10097. extra: 1172 / 1084,
  10098. bottom: 0.065
  10099. }
  10100. },
  10101. side: {
  10102. height: math.unit(2.4, "meters"),
  10103. weight: math.unit(70, "kg"),
  10104. name: "Side",
  10105. image: {
  10106. source: "./media/characters/nyanuxk/side.svg",
  10107. extra: 1190 / 1132,
  10108. bottom: 0.007
  10109. }
  10110. },
  10111. back: {
  10112. height: math.unit(2.4, "meters"),
  10113. weight: math.unit(70, "kg"),
  10114. name: "Back",
  10115. image: {
  10116. source: "./media/characters/nyanuxk/back.svg",
  10117. extra: 1200 / 1141,
  10118. bottom: 0.015
  10119. }
  10120. },
  10121. foot: {
  10122. height: math.unit(0.52, "meters"),
  10123. name: "Foot",
  10124. image: {
  10125. source: "./media/characters/nyanuxk/foot.svg"
  10126. }
  10127. },
  10128. },
  10129. [
  10130. {
  10131. name: "Micro",
  10132. height: math.unit(2, "cm")
  10133. },
  10134. {
  10135. name: "Normal",
  10136. height: math.unit(2.4, "meters"),
  10137. default: true
  10138. },
  10139. {
  10140. name: "Smaller Macro",
  10141. height: math.unit(120, "meters")
  10142. },
  10143. {
  10144. name: "Bigger Macro",
  10145. height: math.unit(1.2, "km")
  10146. },
  10147. {
  10148. name: "Megamacro",
  10149. height: math.unit(15, "kilometers")
  10150. },
  10151. {
  10152. name: "Gigamacro",
  10153. height: math.unit(2000, "km")
  10154. },
  10155. {
  10156. name: "Teramacro",
  10157. height: math.unit(500000, "km")
  10158. },
  10159. ]
  10160. ))
  10161. characterMakers.push(() => makeCharacter(
  10162. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10163. {
  10164. side: {
  10165. height: math.unit(6, "feet"),
  10166. name: "Side",
  10167. image: {
  10168. source: "./media/characters/ailbhe/side.svg",
  10169. extra: 757 / 464,
  10170. bottom: 0.041
  10171. }
  10172. },
  10173. },
  10174. [
  10175. {
  10176. name: "Normal",
  10177. height: math.unit(1.07, "meters"),
  10178. default: true
  10179. },
  10180. ]
  10181. ))
  10182. characterMakers.push(() => makeCharacter(
  10183. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10184. {
  10185. front: {
  10186. height: math.unit(6, "feet"),
  10187. weight: math.unit(120, "kg"),
  10188. name: "Front",
  10189. image: {
  10190. source: "./media/characters/zevulfius/front.svg",
  10191. extra: 965 / 903
  10192. }
  10193. },
  10194. side: {
  10195. height: math.unit(6, "feet"),
  10196. weight: math.unit(120, "kg"),
  10197. name: "Side",
  10198. image: {
  10199. source: "./media/characters/zevulfius/side.svg",
  10200. extra: 939 / 900
  10201. }
  10202. },
  10203. back: {
  10204. height: math.unit(6, "feet"),
  10205. weight: math.unit(120, "kg"),
  10206. name: "Back",
  10207. image: {
  10208. source: "./media/characters/zevulfius/back.svg",
  10209. extra: 918 / 854,
  10210. bottom: 0.005
  10211. }
  10212. },
  10213. foot: {
  10214. height: math.unit(6 / 3.72, "feet"),
  10215. name: "Foot",
  10216. image: {
  10217. source: "./media/characters/zevulfius/foot.svg"
  10218. }
  10219. },
  10220. },
  10221. [
  10222. {
  10223. name: "Macro",
  10224. height: math.unit(750, "meters")
  10225. },
  10226. {
  10227. name: "Megamacro",
  10228. height: math.unit(20, "km"),
  10229. default: true
  10230. },
  10231. {
  10232. name: "Gigamacro",
  10233. height: math.unit(2000, "km")
  10234. },
  10235. {
  10236. name: "Teramacro",
  10237. height: math.unit(250000, "km")
  10238. },
  10239. ]
  10240. ))
  10241. characterMakers.push(() => makeCharacter(
  10242. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10243. {
  10244. front: {
  10245. height: math.unit(100, "feet"),
  10246. weight: math.unit(350, "kg"),
  10247. name: "Front",
  10248. image: {
  10249. source: "./media/characters/rikes/front.svg",
  10250. extra: 1565 / 1483,
  10251. bottom: 0.017
  10252. }
  10253. },
  10254. },
  10255. [
  10256. {
  10257. name: "Macro",
  10258. height: math.unit(100, "feet"),
  10259. default: true
  10260. },
  10261. ]
  10262. ))
  10263. characterMakers.push(() => makeCharacter(
  10264. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10265. {
  10266. anthro: {
  10267. height: math.unit(8, "feet"),
  10268. weight: math.unit(120, "kg"),
  10269. name: "Anthro",
  10270. image: {
  10271. source: "./media/characters/adam-silver-mane/anthro.svg",
  10272. extra: 5743 / 5339,
  10273. bottom: 0.07
  10274. }
  10275. },
  10276. taur: {
  10277. height: math.unit(16, "feet"),
  10278. weight: math.unit(1500, "kg"),
  10279. name: "Taur",
  10280. image: {
  10281. source: "./media/characters/adam-silver-mane/taur.svg",
  10282. extra: 1713 / 1571,
  10283. bottom: 0.01
  10284. }
  10285. },
  10286. },
  10287. [
  10288. {
  10289. name: "Normal",
  10290. height: math.unit(8, "feet")
  10291. },
  10292. {
  10293. name: "Minimacro",
  10294. height: math.unit(80, "feet")
  10295. },
  10296. {
  10297. name: "Macro",
  10298. height: math.unit(800, "feet"),
  10299. default: true
  10300. },
  10301. {
  10302. name: "Megamacro",
  10303. height: math.unit(8000, "feet")
  10304. },
  10305. {
  10306. name: "Gigamacro",
  10307. height: math.unit(800, "miles")
  10308. },
  10309. {
  10310. name: "Teramacro",
  10311. height: math.unit(80000, "miles")
  10312. },
  10313. {
  10314. name: "Celestial",
  10315. height: math.unit(8e6, "miles")
  10316. },
  10317. {
  10318. name: "Star Dragon",
  10319. height: math.unit(800000, "parsecs")
  10320. },
  10321. {
  10322. name: "Godly",
  10323. height: math.unit(800, "teraparsecs")
  10324. },
  10325. ]
  10326. ))
  10327. characterMakers.push(() => makeCharacter(
  10328. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10329. {
  10330. front: {
  10331. height: math.unit(6, "feet"),
  10332. weight: math.unit(150, "lb"),
  10333. name: "Front",
  10334. image: {
  10335. source: "./media/characters/ky'owin/front.svg",
  10336. extra: 3888 / 3068,
  10337. bottom: 0.015
  10338. }
  10339. },
  10340. },
  10341. [
  10342. {
  10343. name: "Normal",
  10344. height: math.unit(6 + 8 / 12, "feet")
  10345. },
  10346. {
  10347. name: "Large",
  10348. height: math.unit(68, "feet")
  10349. },
  10350. {
  10351. name: "Macro",
  10352. height: math.unit(132, "feet")
  10353. },
  10354. {
  10355. name: "Macro+",
  10356. height: math.unit(340, "feet")
  10357. },
  10358. {
  10359. name: "Macro++",
  10360. height: math.unit(680, "feet"),
  10361. default: true
  10362. },
  10363. {
  10364. name: "Megamacro",
  10365. height: math.unit(1, "mile")
  10366. },
  10367. {
  10368. name: "Megamacro+",
  10369. height: math.unit(10, "miles")
  10370. },
  10371. ]
  10372. ))
  10373. characterMakers.push(() => makeCharacter(
  10374. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10375. {
  10376. front: {
  10377. height: math.unit(4, "feet"),
  10378. weight: math.unit(50, "lb"),
  10379. name: "Front",
  10380. image: {
  10381. source: "./media/characters/mal/front.svg",
  10382. extra: 785 / 724,
  10383. bottom: 0.07
  10384. }
  10385. },
  10386. },
  10387. [
  10388. {
  10389. name: "Micro",
  10390. height: math.unit(4, "inches")
  10391. },
  10392. {
  10393. name: "Normal",
  10394. height: math.unit(4, "feet"),
  10395. default: true
  10396. },
  10397. {
  10398. name: "Macro",
  10399. height: math.unit(200, "feet")
  10400. },
  10401. ]
  10402. ))
  10403. characterMakers.push(() => makeCharacter(
  10404. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10405. {
  10406. front: {
  10407. height: math.unit(6, "feet"),
  10408. weight: math.unit(150, "lb"),
  10409. name: "Front",
  10410. image: {
  10411. source: "./media/characters/jordan-deware/front.svg",
  10412. extra: 1191 / 1012
  10413. }
  10414. },
  10415. },
  10416. [
  10417. {
  10418. name: "Nano",
  10419. height: math.unit(0.01, "mm")
  10420. },
  10421. {
  10422. name: "Minimicro",
  10423. height: math.unit(1, "mm")
  10424. },
  10425. {
  10426. name: "Micro",
  10427. height: math.unit(0.5, "inches")
  10428. },
  10429. {
  10430. name: "Normal",
  10431. height: math.unit(4, "feet"),
  10432. default: true
  10433. },
  10434. {
  10435. name: "Minimacro",
  10436. height: math.unit(40, "meters")
  10437. },
  10438. {
  10439. name: "Small Macro",
  10440. height: math.unit(400, "meters")
  10441. },
  10442. {
  10443. name: "Macro",
  10444. height: math.unit(4, "miles")
  10445. },
  10446. {
  10447. name: "Megamacro",
  10448. height: math.unit(40, "miles")
  10449. },
  10450. {
  10451. name: "Megamacro+",
  10452. height: math.unit(400, "miles")
  10453. },
  10454. {
  10455. name: "Gigamacro",
  10456. height: math.unit(400000, "miles")
  10457. },
  10458. ]
  10459. ))
  10460. characterMakers.push(() => makeCharacter(
  10461. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10462. {
  10463. side: {
  10464. height: math.unit(6, "feet"),
  10465. weight: math.unit(150, "lb"),
  10466. name: "Side",
  10467. image: {
  10468. source: "./media/characters/kimiko/side.svg",
  10469. extra: 600 / 358
  10470. }
  10471. },
  10472. },
  10473. [
  10474. {
  10475. name: "Normal",
  10476. height: math.unit(15, "feet"),
  10477. default: true
  10478. },
  10479. {
  10480. name: "Macro",
  10481. height: math.unit(220, "feet")
  10482. },
  10483. {
  10484. name: "Macro+",
  10485. height: math.unit(1450, "feet")
  10486. },
  10487. {
  10488. name: "Megamacro",
  10489. height: math.unit(11500, "feet")
  10490. },
  10491. {
  10492. name: "Gigamacro",
  10493. height: math.unit(9500, "miles")
  10494. },
  10495. {
  10496. name: "Teramacro",
  10497. height: math.unit(2208005005, "miles")
  10498. },
  10499. {
  10500. name: "Examacro",
  10501. height: math.unit(2750, "parsecs")
  10502. },
  10503. {
  10504. name: "Zettamacro",
  10505. height: math.unit(101500, "parsecs")
  10506. },
  10507. ]
  10508. ))
  10509. characterMakers.push(() => makeCharacter(
  10510. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10511. {
  10512. front: {
  10513. height: math.unit(6, "feet"),
  10514. weight: math.unit(70, "kg"),
  10515. name: "Front",
  10516. image: {
  10517. source: "./media/characters/andrew-sleepy/front.svg"
  10518. }
  10519. },
  10520. side: {
  10521. height: math.unit(6, "feet"),
  10522. weight: math.unit(70, "kg"),
  10523. name: "Side",
  10524. image: {
  10525. source: "./media/characters/andrew-sleepy/side.svg"
  10526. }
  10527. },
  10528. },
  10529. [
  10530. {
  10531. name: "Micro",
  10532. height: math.unit(1, "mm"),
  10533. default: true
  10534. },
  10535. ]
  10536. ))
  10537. characterMakers.push(() => makeCharacter(
  10538. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10539. {
  10540. front: {
  10541. height: math.unit(6, "feet"),
  10542. weight: math.unit(150, "lb"),
  10543. name: "Front",
  10544. image: {
  10545. source: "./media/characters/judio/front.svg",
  10546. extra: 1258 / 1110
  10547. }
  10548. },
  10549. },
  10550. [
  10551. {
  10552. name: "Normal",
  10553. height: math.unit(5 + 6 / 12, "feet")
  10554. },
  10555. {
  10556. name: "Macro",
  10557. height: math.unit(1000, "feet"),
  10558. default: true
  10559. },
  10560. {
  10561. name: "Megamacro",
  10562. height: math.unit(10, "miles")
  10563. },
  10564. ]
  10565. ))
  10566. characterMakers.push(() => makeCharacter(
  10567. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10568. {
  10569. front: {
  10570. height: math.unit(6, "feet"),
  10571. weight: math.unit(68, "kg"),
  10572. name: "Front",
  10573. image: {
  10574. source: "./media/characters/nomaxice/front.svg",
  10575. extra: 1498 / 1073,
  10576. bottom: 0.075
  10577. }
  10578. },
  10579. foot: {
  10580. height: math.unit(1.1, "feet"),
  10581. name: "Foot",
  10582. image: {
  10583. source: "./media/characters/nomaxice/foot.svg"
  10584. }
  10585. },
  10586. },
  10587. [
  10588. {
  10589. name: "Micro",
  10590. height: math.unit(8, "cm")
  10591. },
  10592. {
  10593. name: "Norm",
  10594. height: math.unit(1.82, "m")
  10595. },
  10596. {
  10597. name: "Norm+",
  10598. height: math.unit(8.8, "feet")
  10599. },
  10600. {
  10601. name: "Big",
  10602. height: math.unit(8, "meters"),
  10603. default: true
  10604. },
  10605. {
  10606. name: "Macro",
  10607. height: math.unit(18, "meters")
  10608. },
  10609. {
  10610. name: "Macro+",
  10611. height: math.unit(88, "meters")
  10612. },
  10613. ]
  10614. ))
  10615. characterMakers.push(() => makeCharacter(
  10616. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10617. {
  10618. front: {
  10619. height: math.unit(12, "feet"),
  10620. weight: math.unit(1.5, "tons"),
  10621. name: "Front",
  10622. image: {
  10623. source: "./media/characters/dydros/front.svg",
  10624. extra: 863 / 800,
  10625. bottom: 0.015
  10626. }
  10627. },
  10628. back: {
  10629. height: math.unit(12, "feet"),
  10630. weight: math.unit(1.5, "tons"),
  10631. name: "Back",
  10632. image: {
  10633. source: "./media/characters/dydros/back.svg",
  10634. extra: 900 / 843,
  10635. bottom: 0.005
  10636. }
  10637. },
  10638. },
  10639. [
  10640. {
  10641. name: "Normal",
  10642. height: math.unit(12, "feet"),
  10643. default: true
  10644. },
  10645. ]
  10646. ))
  10647. characterMakers.push(() => makeCharacter(
  10648. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10649. {
  10650. front: {
  10651. height: math.unit(6, "feet"),
  10652. weight: math.unit(100, "kg"),
  10653. name: "Front",
  10654. image: {
  10655. source: "./media/characters/riggi/front.svg",
  10656. extra: 5787 / 5303
  10657. }
  10658. },
  10659. hyper: {
  10660. height: math.unit(6 * 5 / 3, "feet"),
  10661. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10662. name: "Hyper",
  10663. image: {
  10664. source: "./media/characters/riggi/hyper.svg",
  10665. extra: 3595 / 3485
  10666. }
  10667. },
  10668. },
  10669. [
  10670. {
  10671. name: "Small Macro",
  10672. height: math.unit(50, "feet")
  10673. },
  10674. {
  10675. name: "Default",
  10676. height: math.unit(200, "feet"),
  10677. default: true
  10678. },
  10679. {
  10680. name: "Loom",
  10681. height: math.unit(10000, "feet")
  10682. },
  10683. {
  10684. name: "Cruising Altitude",
  10685. height: math.unit(30000, "feet")
  10686. },
  10687. {
  10688. name: "Megamacro",
  10689. height: math.unit(100, "miles")
  10690. },
  10691. {
  10692. name: "Continent Sized",
  10693. height: math.unit(2800, "miles")
  10694. },
  10695. {
  10696. name: "Earth Sized",
  10697. height: math.unit(8000, "miles")
  10698. },
  10699. ]
  10700. ))
  10701. characterMakers.push(() => makeCharacter(
  10702. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10703. {
  10704. front: {
  10705. height: math.unit(6, "feet"),
  10706. weight: math.unit(250, "lb"),
  10707. name: "Front",
  10708. image: {
  10709. source: "./media/characters/alexi/front.svg",
  10710. extra: 3483 / 3291,
  10711. bottom: 0.04
  10712. }
  10713. },
  10714. back: {
  10715. height: math.unit(6, "feet"),
  10716. weight: math.unit(250, "lb"),
  10717. name: "Back",
  10718. image: {
  10719. source: "./media/characters/alexi/back.svg",
  10720. extra: 3533 / 3356,
  10721. bottom: 0.021
  10722. }
  10723. },
  10724. frontTransforming: {
  10725. height: math.unit(8.58, "feet"),
  10726. weight: math.unit(1300, "lb"),
  10727. name: "Transforming",
  10728. image: {
  10729. source: "./media/characters/alexi/front-transforming.svg",
  10730. extra: 437 / 409,
  10731. bottom: 19 / 458.66
  10732. }
  10733. },
  10734. frontTransformed: {
  10735. height: math.unit(12.5, "feet"),
  10736. weight: math.unit(4000, "lb"),
  10737. name: "Transformed",
  10738. image: {
  10739. source: "./media/characters/alexi/front-transformed.svg",
  10740. extra: 639 / 614,
  10741. bottom: 30.55 / 671
  10742. }
  10743. },
  10744. },
  10745. [
  10746. {
  10747. name: "Normal",
  10748. height: math.unit(14, "feet"),
  10749. default: true
  10750. },
  10751. {
  10752. name: "Minimacro",
  10753. height: math.unit(30, "meters")
  10754. },
  10755. {
  10756. name: "Macro",
  10757. height: math.unit(500, "meters")
  10758. },
  10759. {
  10760. name: "Megamacro",
  10761. height: math.unit(9000, "km")
  10762. },
  10763. {
  10764. name: "Teramacro",
  10765. height: math.unit(384000, "km")
  10766. },
  10767. ]
  10768. ))
  10769. characterMakers.push(() => makeCharacter(
  10770. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10771. {
  10772. front: {
  10773. height: math.unit(6, "feet"),
  10774. weight: math.unit(150, "lb"),
  10775. name: "Front",
  10776. image: {
  10777. source: "./media/characters/kayroo/front.svg",
  10778. extra: 1153 / 1038,
  10779. bottom: 0.06
  10780. }
  10781. },
  10782. foot: {
  10783. height: math.unit(6, "feet"),
  10784. weight: math.unit(150, "lb"),
  10785. name: "Foot",
  10786. image: {
  10787. source: "./media/characters/kayroo/foot.svg"
  10788. }
  10789. },
  10790. },
  10791. [
  10792. {
  10793. name: "Normal",
  10794. height: math.unit(8, "feet"),
  10795. default: true
  10796. },
  10797. {
  10798. name: "Minimacro",
  10799. height: math.unit(250, "feet")
  10800. },
  10801. {
  10802. name: "Macro",
  10803. height: math.unit(2800, "feet")
  10804. },
  10805. {
  10806. name: "Megamacro",
  10807. height: math.unit(5200, "feet")
  10808. },
  10809. {
  10810. name: "Gigamacro",
  10811. height: math.unit(27000, "feet")
  10812. },
  10813. {
  10814. name: "Omega",
  10815. height: math.unit(45000, "feet")
  10816. },
  10817. ]
  10818. ))
  10819. characterMakers.push(() => makeCharacter(
  10820. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10821. {
  10822. front: {
  10823. height: math.unit(18, "feet"),
  10824. weight: math.unit(5800, "lb"),
  10825. name: "Front",
  10826. image: {
  10827. source: "./media/characters/rhys/front.svg",
  10828. extra: 3386 / 3090,
  10829. bottom: 0.07
  10830. }
  10831. },
  10832. },
  10833. [
  10834. {
  10835. name: "Normal",
  10836. height: math.unit(18, "feet"),
  10837. default: true
  10838. },
  10839. {
  10840. name: "Working Size",
  10841. height: math.unit(200, "feet")
  10842. },
  10843. {
  10844. name: "Demolition Size",
  10845. height: math.unit(2000, "feet")
  10846. },
  10847. {
  10848. name: "Maximum Licensed Size",
  10849. height: math.unit(5, "miles")
  10850. },
  10851. {
  10852. name: "Maximum Observed Size",
  10853. height: math.unit(10, "yottameters")
  10854. },
  10855. ]
  10856. ))
  10857. characterMakers.push(() => makeCharacter(
  10858. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10859. {
  10860. front: {
  10861. height: math.unit(6, "feet"),
  10862. weight: math.unit(250, "lb"),
  10863. name: "Front",
  10864. image: {
  10865. source: "./media/characters/toto/front.svg",
  10866. extra: 527 / 479,
  10867. bottom: 0.05
  10868. }
  10869. },
  10870. },
  10871. [
  10872. {
  10873. name: "Micro",
  10874. height: math.unit(3, "feet")
  10875. },
  10876. {
  10877. name: "Normal",
  10878. height: math.unit(10, "feet")
  10879. },
  10880. {
  10881. name: "Macro",
  10882. height: math.unit(150, "feet"),
  10883. default: true
  10884. },
  10885. {
  10886. name: "Megamacro",
  10887. height: math.unit(1200, "feet")
  10888. },
  10889. ]
  10890. ))
  10891. characterMakers.push(() => makeCharacter(
  10892. { name: "King", species: ["lion"], tags: ["anthro"] },
  10893. {
  10894. back: {
  10895. height: math.unit(6, "feet"),
  10896. weight: math.unit(150, "lb"),
  10897. name: "Back",
  10898. image: {
  10899. source: "./media/characters/king/back.svg"
  10900. }
  10901. },
  10902. },
  10903. [
  10904. {
  10905. name: "Micro",
  10906. height: math.unit(2, "inches")
  10907. },
  10908. {
  10909. name: "Normal",
  10910. height: math.unit(8, "feet")
  10911. },
  10912. {
  10913. name: "Macro",
  10914. height: math.unit(200, "feet"),
  10915. default: true
  10916. },
  10917. {
  10918. name: "Megamacro",
  10919. height: math.unit(50, "miles")
  10920. },
  10921. ]
  10922. ))
  10923. characterMakers.push(() => makeCharacter(
  10924. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10925. {
  10926. anthro: {
  10927. height: math.unit(6 + 5 / 12, "feet"),
  10928. weight: math.unit(280, "lb"),
  10929. name: "Anthro",
  10930. image: {
  10931. source: "./media/characters/cordite/anthro.svg",
  10932. extra: 1986 / 1905,
  10933. bottom: 0.025
  10934. }
  10935. },
  10936. feral: {
  10937. height: math.unit(2, "feet"),
  10938. weight: math.unit(90, "lb"),
  10939. name: "Feral",
  10940. image: {
  10941. source: "./media/characters/cordite/feral.svg",
  10942. extra: 1260 / 755,
  10943. bottom: 0.05
  10944. }
  10945. },
  10946. },
  10947. [
  10948. {
  10949. name: "Normal",
  10950. height: math.unit(6 + 5 / 12, "feet"),
  10951. default: true
  10952. },
  10953. ]
  10954. ))
  10955. characterMakers.push(() => makeCharacter(
  10956. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10957. {
  10958. front: {
  10959. height: math.unit(6, "feet"),
  10960. weight: math.unit(150, "lb"),
  10961. name: "Front",
  10962. image: {
  10963. source: "./media/characters/pianostrong/front.svg",
  10964. extra: 6577 / 6254,
  10965. bottom: 0.02
  10966. }
  10967. },
  10968. side: {
  10969. height: math.unit(6, "feet"),
  10970. weight: math.unit(150, "lb"),
  10971. name: "Side",
  10972. image: {
  10973. source: "./media/characters/pianostrong/side.svg",
  10974. extra: 6106 / 5730
  10975. }
  10976. },
  10977. back: {
  10978. height: math.unit(6, "feet"),
  10979. weight: math.unit(150, "lb"),
  10980. name: "Back",
  10981. image: {
  10982. source: "./media/characters/pianostrong/back.svg",
  10983. extra: 6085 / 5733,
  10984. bottom: 0.01
  10985. }
  10986. },
  10987. },
  10988. [
  10989. {
  10990. name: "Macro",
  10991. height: math.unit(100, "feet")
  10992. },
  10993. {
  10994. name: "Macro+",
  10995. height: math.unit(300, "feet"),
  10996. default: true
  10997. },
  10998. {
  10999. name: "Macro++",
  11000. height: math.unit(1000, "feet")
  11001. },
  11002. ]
  11003. ))
  11004. characterMakers.push(() => makeCharacter(
  11005. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11006. {
  11007. front: {
  11008. height: math.unit(6, "feet"),
  11009. weight: math.unit(150, "lb"),
  11010. name: "Front",
  11011. image: {
  11012. source: "./media/characters/kona/front.svg",
  11013. extra: 2960 / 2629,
  11014. bottom: 0.005
  11015. }
  11016. },
  11017. },
  11018. [
  11019. {
  11020. name: "Normal",
  11021. height: math.unit(11 + 8 / 12, "feet")
  11022. },
  11023. {
  11024. name: "Macro",
  11025. height: math.unit(850, "feet"),
  11026. default: true
  11027. },
  11028. {
  11029. name: "Macro+",
  11030. height: math.unit(1.5, "km"),
  11031. default: true
  11032. },
  11033. {
  11034. name: "Megamacro",
  11035. height: math.unit(80, "miles")
  11036. },
  11037. {
  11038. name: "Gigamacro",
  11039. height: math.unit(3500, "miles")
  11040. },
  11041. ]
  11042. ))
  11043. characterMakers.push(() => makeCharacter(
  11044. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11045. {
  11046. side: {
  11047. height: math.unit(1.9, "meters"),
  11048. weight: math.unit(326, "kg"),
  11049. name: "Side",
  11050. image: {
  11051. source: "./media/characters/levi/side.svg",
  11052. extra: 1704 / 1334,
  11053. bottom: 0.02
  11054. }
  11055. },
  11056. },
  11057. [
  11058. {
  11059. name: "Normal",
  11060. height: math.unit(1.9, "meters"),
  11061. default: true
  11062. },
  11063. {
  11064. name: "Macro",
  11065. height: math.unit(20, "meters")
  11066. },
  11067. {
  11068. name: "Macro+",
  11069. height: math.unit(200, "meters")
  11070. },
  11071. {
  11072. name: "Megamacro",
  11073. height: math.unit(2, "km")
  11074. },
  11075. {
  11076. name: "Megamacro+",
  11077. height: math.unit(20, "km")
  11078. },
  11079. {
  11080. name: "Gigamacro",
  11081. height: math.unit(2500, "km")
  11082. },
  11083. {
  11084. name: "Gigamacro+",
  11085. height: math.unit(120000, "km")
  11086. },
  11087. {
  11088. name: "Teramacro",
  11089. height: math.unit(7.77e6, "km")
  11090. },
  11091. ]
  11092. ))
  11093. characterMakers.push(() => makeCharacter(
  11094. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11095. {
  11096. front: {
  11097. height: math.unit(6 + 4 / 12, "feet"),
  11098. weight: math.unit(188, "lb"),
  11099. name: "Front",
  11100. image: {
  11101. source: "./media/characters/bmc/front.svg",
  11102. extra: 1067 / 1022,
  11103. bottom: 0.047
  11104. }
  11105. },
  11106. },
  11107. [
  11108. {
  11109. name: "Human-sized",
  11110. height: math.unit(6 + 4 / 12, "feet")
  11111. },
  11112. {
  11113. name: "Small",
  11114. height: math.unit(250, "feet")
  11115. },
  11116. {
  11117. name: "Normal",
  11118. height: math.unit(1250, "feet"),
  11119. default: true
  11120. },
  11121. {
  11122. name: "Good Day",
  11123. height: math.unit(88, "miles")
  11124. },
  11125. {
  11126. name: "Largest Measured Size",
  11127. height: math.unit(11.2e6, "lightyears")
  11128. },
  11129. ]
  11130. ))
  11131. characterMakers.push(() => makeCharacter(
  11132. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11133. {
  11134. front: {
  11135. height: math.unit(20, "feet"),
  11136. weight: math.unit(2016, "kg"),
  11137. name: "Front",
  11138. image: {
  11139. source: "./media/characters/sven-the-kaiju/front.svg",
  11140. extra: 1277/1250,
  11141. bottom: 35/1312
  11142. }
  11143. },
  11144. mouth: {
  11145. height: math.unit(1.85, "feet"),
  11146. name: "Mouth",
  11147. image: {
  11148. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11149. }
  11150. },
  11151. },
  11152. [
  11153. {
  11154. name: "Fairy",
  11155. height: math.unit(6, "inches")
  11156. },
  11157. {
  11158. name: "Normal",
  11159. height: math.unit(20, "feet"),
  11160. default: true
  11161. },
  11162. {
  11163. name: "Rampage",
  11164. height: math.unit(200, "feet")
  11165. },
  11166. {
  11167. name: "Archfey Forest Guardian",
  11168. height: math.unit(1, "mile")
  11169. },
  11170. ]
  11171. ))
  11172. characterMakers.push(() => makeCharacter(
  11173. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11174. {
  11175. front: {
  11176. height: math.unit(4, "meters"),
  11177. weight: math.unit(2, "tons"),
  11178. name: "Front",
  11179. image: {
  11180. source: "./media/characters/marik/front.svg",
  11181. extra: 1057 / 1003,
  11182. bottom: 0.08
  11183. }
  11184. },
  11185. },
  11186. [
  11187. {
  11188. name: "Normal",
  11189. height: math.unit(4, "meters"),
  11190. default: true
  11191. },
  11192. {
  11193. name: "Macro",
  11194. height: math.unit(20, "meters")
  11195. },
  11196. {
  11197. name: "Megamacro",
  11198. height: math.unit(50, "km")
  11199. },
  11200. {
  11201. name: "Gigamacro",
  11202. height: math.unit(100, "km")
  11203. },
  11204. {
  11205. name: "Alpha Macro",
  11206. height: math.unit(7.88e7, "yottameters")
  11207. },
  11208. ]
  11209. ))
  11210. characterMakers.push(() => makeCharacter(
  11211. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11212. {
  11213. front: {
  11214. height: math.unit(6, "feet"),
  11215. weight: math.unit(110, "lb"),
  11216. name: "Front",
  11217. image: {
  11218. source: "./media/characters/mel/front.svg",
  11219. extra: 736 / 617,
  11220. bottom: 0.017
  11221. }
  11222. },
  11223. },
  11224. [
  11225. {
  11226. name: "Pico",
  11227. height: math.unit(3, "pm")
  11228. },
  11229. {
  11230. name: "Nano",
  11231. height: math.unit(3, "nm")
  11232. },
  11233. {
  11234. name: "Micro",
  11235. height: math.unit(0.3, "mm"),
  11236. default: true
  11237. },
  11238. {
  11239. name: "Micro+",
  11240. height: math.unit(3, "mm")
  11241. },
  11242. {
  11243. name: "Normal",
  11244. height: math.unit(5 + 10.5 / 12, "feet")
  11245. },
  11246. ]
  11247. ))
  11248. characterMakers.push(() => makeCharacter(
  11249. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11250. {
  11251. kaiju: {
  11252. height: math.unit(1.75, "meters"),
  11253. weight: math.unit(55, "kg"),
  11254. name: "Kaiju",
  11255. image: {
  11256. source: "./media/characters/lykonous/kaiju.svg",
  11257. extra: 1055 / 946,
  11258. bottom: 0.135
  11259. }
  11260. },
  11261. },
  11262. [
  11263. {
  11264. name: "Normal",
  11265. height: math.unit(2.5, "meters"),
  11266. default: true
  11267. },
  11268. {
  11269. name: "Kaiju Dragon",
  11270. height: math.unit(60, "meters")
  11271. },
  11272. {
  11273. name: "Mega Kaiju",
  11274. height: math.unit(120, "km")
  11275. },
  11276. {
  11277. name: "Giga Kaiju",
  11278. height: math.unit(200, "megameters")
  11279. },
  11280. {
  11281. name: "Terra Kaiju",
  11282. height: math.unit(400, "gigameters")
  11283. },
  11284. {
  11285. name: "Kaiju Dragon God",
  11286. height: math.unit(13000, "exaparsecs")
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11292. {
  11293. front: {
  11294. height: math.unit(6, "feet"),
  11295. weight: math.unit(150, "lb"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/blü/front.svg",
  11299. extra: 1883 / 1564,
  11300. bottom: 0.031
  11301. }
  11302. },
  11303. },
  11304. [
  11305. {
  11306. name: "Normal",
  11307. height: math.unit(13, "feet"),
  11308. default: true
  11309. },
  11310. {
  11311. name: "Big Boi",
  11312. height: math.unit(150, "meters")
  11313. },
  11314. {
  11315. name: "Mini Stomper",
  11316. height: math.unit(300, "meters")
  11317. },
  11318. {
  11319. name: "Macro",
  11320. height: math.unit(1000, "meters")
  11321. },
  11322. {
  11323. name: "Megamacro",
  11324. height: math.unit(11000, "meters")
  11325. },
  11326. {
  11327. name: "Gigamacro",
  11328. height: math.unit(11000, "km")
  11329. },
  11330. {
  11331. name: "Teramacro",
  11332. height: math.unit(420000, "km")
  11333. },
  11334. {
  11335. name: "Examacro",
  11336. height: math.unit(120, "parsecs")
  11337. },
  11338. {
  11339. name: "God Tho",
  11340. height: math.unit(98000000000, "parsecs")
  11341. },
  11342. ]
  11343. ))
  11344. characterMakers.push(() => makeCharacter(
  11345. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11346. {
  11347. taurFront: {
  11348. height: math.unit(6, "feet"),
  11349. weight: math.unit(200, "lb"),
  11350. name: "Taur (Front)",
  11351. image: {
  11352. source: "./media/characters/scales/taur-front.svg",
  11353. extra: 1,
  11354. bottom: 0.05
  11355. }
  11356. },
  11357. taurBack: {
  11358. height: math.unit(6, "feet"),
  11359. weight: math.unit(200, "lb"),
  11360. name: "Taur (Back)",
  11361. image: {
  11362. source: "./media/characters/scales/taur-back.svg",
  11363. extra: 1,
  11364. bottom: 0.08
  11365. }
  11366. },
  11367. anthro: {
  11368. height: math.unit(6 * 7 / 12, "feet"),
  11369. weight: math.unit(100, "lb"),
  11370. name: "Anthro",
  11371. image: {
  11372. source: "./media/characters/scales/anthro.svg",
  11373. extra: 1,
  11374. bottom: 0.06
  11375. }
  11376. },
  11377. },
  11378. [
  11379. {
  11380. name: "Normal",
  11381. height: math.unit(12, "feet"),
  11382. default: true
  11383. },
  11384. ]
  11385. ))
  11386. characterMakers.push(() => makeCharacter(
  11387. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11388. {
  11389. front: {
  11390. height: math.unit(6, "feet"),
  11391. weight: math.unit(150, "lb"),
  11392. name: "Front",
  11393. image: {
  11394. source: "./media/characters/koragos/front.svg",
  11395. extra: 841 / 794,
  11396. bottom: 0.035
  11397. }
  11398. },
  11399. back: {
  11400. height: math.unit(6, "feet"),
  11401. weight: math.unit(150, "lb"),
  11402. name: "Back",
  11403. image: {
  11404. source: "./media/characters/koragos/back.svg",
  11405. extra: 841 / 810,
  11406. bottom: 0.022
  11407. }
  11408. },
  11409. },
  11410. [
  11411. {
  11412. name: "Normal",
  11413. height: math.unit(6 + 11 / 12, "feet"),
  11414. default: true
  11415. },
  11416. {
  11417. name: "Macro",
  11418. height: math.unit(490, "feet")
  11419. },
  11420. {
  11421. name: "Megamacro",
  11422. height: math.unit(10, "miles")
  11423. },
  11424. {
  11425. name: "Gigamacro",
  11426. height: math.unit(50, "miles")
  11427. },
  11428. ]
  11429. ))
  11430. characterMakers.push(() => makeCharacter(
  11431. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11432. {
  11433. front: {
  11434. height: math.unit(6, "feet"),
  11435. weight: math.unit(250, "lb"),
  11436. name: "Front",
  11437. image: {
  11438. source: "./media/characters/xylrem/front.svg",
  11439. extra: 3323 / 3050,
  11440. bottom: 0.065
  11441. }
  11442. },
  11443. },
  11444. [
  11445. {
  11446. name: "Micro",
  11447. height: math.unit(4, "feet")
  11448. },
  11449. {
  11450. name: "Normal",
  11451. height: math.unit(16, "feet"),
  11452. default: true
  11453. },
  11454. {
  11455. name: "Macro",
  11456. height: math.unit(2720, "feet")
  11457. },
  11458. {
  11459. name: "Megamacro",
  11460. height: math.unit(25000, "miles")
  11461. },
  11462. ]
  11463. ))
  11464. characterMakers.push(() => makeCharacter(
  11465. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11466. {
  11467. front: {
  11468. height: math.unit(8, "feet"),
  11469. weight: math.unit(250, "kg"),
  11470. name: "Front",
  11471. image: {
  11472. source: "./media/characters/ikideru/front.svg",
  11473. extra: 930 / 870,
  11474. bottom: 0.087
  11475. }
  11476. },
  11477. back: {
  11478. height: math.unit(8, "feet"),
  11479. weight: math.unit(250, "kg"),
  11480. name: "Back",
  11481. image: {
  11482. source: "./media/characters/ikideru/back.svg",
  11483. extra: 919 / 852,
  11484. bottom: 0.055
  11485. }
  11486. },
  11487. },
  11488. [
  11489. {
  11490. name: "Rare",
  11491. height: math.unit(8, "feet"),
  11492. default: true
  11493. },
  11494. {
  11495. name: "Playful Loom",
  11496. height: math.unit(80, "feet")
  11497. },
  11498. {
  11499. name: "City Leaner",
  11500. height: math.unit(230, "feet")
  11501. },
  11502. {
  11503. name: "Megamacro",
  11504. height: math.unit(2500, "feet")
  11505. },
  11506. {
  11507. name: "Gigamacro",
  11508. height: math.unit(26400, "feet")
  11509. },
  11510. {
  11511. name: "Tectonic Shifter",
  11512. height: math.unit(1.7, "megameters")
  11513. },
  11514. {
  11515. name: "Planet Carer",
  11516. height: math.unit(21, "megameters")
  11517. },
  11518. {
  11519. name: "God",
  11520. height: math.unit(11157.22, "parsecs")
  11521. },
  11522. ]
  11523. ))
  11524. characterMakers.push(() => makeCharacter(
  11525. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11526. {
  11527. front: {
  11528. height: math.unit(6, "feet"),
  11529. weight: math.unit(120, "lb"),
  11530. name: "Front",
  11531. image: {
  11532. source: "./media/characters/neo/front.svg"
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Micro",
  11539. height: math.unit(2, "inches"),
  11540. default: true
  11541. },
  11542. {
  11543. name: "Human Size",
  11544. height: math.unit(5 + 8 / 12, "feet")
  11545. },
  11546. ]
  11547. ))
  11548. characterMakers.push(() => makeCharacter(
  11549. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11550. {
  11551. front: {
  11552. height: math.unit(13 + 10 / 12, "feet"),
  11553. weight: math.unit(5320, "lb"),
  11554. name: "Front",
  11555. image: {
  11556. source: "./media/characters/chauncey-chantz/front.svg",
  11557. extra: 1587 / 1435,
  11558. bottom: 0.02
  11559. }
  11560. },
  11561. },
  11562. [
  11563. {
  11564. name: "Normal",
  11565. height: math.unit(13 + 10 / 12, "feet"),
  11566. default: true
  11567. },
  11568. {
  11569. name: "Macro",
  11570. height: math.unit(45, "feet")
  11571. },
  11572. {
  11573. name: "Megamacro",
  11574. height: math.unit(250, "miles")
  11575. },
  11576. {
  11577. name: "Planetary",
  11578. height: math.unit(10000, "miles")
  11579. },
  11580. {
  11581. name: "Galactic",
  11582. height: math.unit(40000, "parsecs")
  11583. },
  11584. {
  11585. name: "Universal",
  11586. height: math.unit(1, "yottameter")
  11587. },
  11588. ]
  11589. ))
  11590. characterMakers.push(() => makeCharacter(
  11591. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11592. {
  11593. front: {
  11594. height: math.unit(6, "feet"),
  11595. weight: math.unit(150, "lb"),
  11596. name: "Front",
  11597. image: {
  11598. source: "./media/characters/epifox/front.svg",
  11599. extra: 1,
  11600. bottom: 0.075
  11601. }
  11602. },
  11603. },
  11604. [
  11605. {
  11606. name: "Micro",
  11607. height: math.unit(6, "inches")
  11608. },
  11609. {
  11610. name: "Normal",
  11611. height: math.unit(12, "feet"),
  11612. default: true
  11613. },
  11614. {
  11615. name: "Macro",
  11616. height: math.unit(3810, "feet")
  11617. },
  11618. {
  11619. name: "Megamacro",
  11620. height: math.unit(500, "miles")
  11621. },
  11622. ]
  11623. ))
  11624. characterMakers.push(() => makeCharacter(
  11625. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11626. {
  11627. front: {
  11628. height: math.unit(1.8796, "m"),
  11629. weight: math.unit(230, "lb"),
  11630. name: "Front",
  11631. image: {
  11632. source: "./media/characters/colin-t/front.svg",
  11633. extra: 1272 / 1193,
  11634. bottom: 0.07
  11635. }
  11636. },
  11637. },
  11638. [
  11639. {
  11640. name: "Micro",
  11641. height: math.unit(0.571, "meters")
  11642. },
  11643. {
  11644. name: "Normal",
  11645. height: math.unit(1.8796, "meters"),
  11646. default: true
  11647. },
  11648. {
  11649. name: "Tall",
  11650. height: math.unit(4, "meters")
  11651. },
  11652. {
  11653. name: "Macro",
  11654. height: math.unit(67.241, "meters")
  11655. },
  11656. {
  11657. name: "Megamacro",
  11658. height: math.unit(371.856, "meters")
  11659. },
  11660. {
  11661. name: "Planetary",
  11662. height: math.unit(12631.5689, "km")
  11663. },
  11664. ]
  11665. ))
  11666. characterMakers.push(() => makeCharacter(
  11667. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11668. {
  11669. front: {
  11670. height: math.unit(1.85, "meters"),
  11671. weight: math.unit(80, "kg"),
  11672. name: "Front",
  11673. image: {
  11674. source: "./media/characters/matvei/front.svg",
  11675. extra: 614 / 594,
  11676. bottom: 0.01
  11677. }
  11678. },
  11679. },
  11680. [
  11681. {
  11682. name: "Normal",
  11683. height: math.unit(1.85, "meters"),
  11684. default: true
  11685. },
  11686. ]
  11687. ))
  11688. characterMakers.push(() => makeCharacter(
  11689. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11690. {
  11691. front: {
  11692. height: math.unit(5 + 9 / 12, "feet"),
  11693. weight: math.unit(70, "lb"),
  11694. name: "Front",
  11695. image: {
  11696. source: "./media/characters/quincy/front.svg",
  11697. extra: 3041 / 2751
  11698. }
  11699. },
  11700. back: {
  11701. height: math.unit(5 + 9 / 12, "feet"),
  11702. weight: math.unit(70, "lb"),
  11703. name: "Back",
  11704. image: {
  11705. source: "./media/characters/quincy/back.svg",
  11706. extra: 3041 / 2751
  11707. }
  11708. },
  11709. flying: {
  11710. height: math.unit(5 + 4 / 12, "feet"),
  11711. weight: math.unit(70, "lb"),
  11712. name: "Flying",
  11713. image: {
  11714. source: "./media/characters/quincy/flying.svg",
  11715. extra: 1044 / 930
  11716. }
  11717. },
  11718. },
  11719. [
  11720. {
  11721. name: "Micro",
  11722. height: math.unit(3, "cm")
  11723. },
  11724. {
  11725. name: "Normal",
  11726. height: math.unit(5 + 9 / 12, "feet")
  11727. },
  11728. {
  11729. name: "Macro",
  11730. height: math.unit(200, "meters"),
  11731. default: true
  11732. },
  11733. {
  11734. name: "Megamacro",
  11735. height: math.unit(1000, "meters")
  11736. },
  11737. ]
  11738. ))
  11739. characterMakers.push(() => makeCharacter(
  11740. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11741. {
  11742. front: {
  11743. height: math.unit(4 + 7 / 12, "feet"),
  11744. weight: math.unit(50, "lb"),
  11745. name: "Front",
  11746. image: {
  11747. source: "./media/characters/vanrel/front.svg",
  11748. extra: 1,
  11749. bottom: 0.02
  11750. }
  11751. },
  11752. frontAlt: {
  11753. height: math.unit(4 + 7 / 12, "feet"),
  11754. weight: math.unit(50, "lb"),
  11755. name: "Front-alt",
  11756. image: {
  11757. source: "./media/characters/vanrel/front-alt.svg",
  11758. extra: 1,
  11759. bottom: 15 / 1511
  11760. }
  11761. },
  11762. elemental: {
  11763. height: math.unit(3, "feet"),
  11764. weight: math.unit(50, "lb"),
  11765. name: "Elemental",
  11766. image: {
  11767. source: "./media/characters/vanrel/elemental.svg",
  11768. extra: 192.3 / 162.8,
  11769. bottom: 1.79 / 194.17
  11770. }
  11771. },
  11772. side: {
  11773. height: math.unit(4 + 7 / 12, "feet"),
  11774. weight: math.unit(50, "lb"),
  11775. name: "Side",
  11776. image: {
  11777. source: "./media/characters/vanrel/side.svg",
  11778. extra: 1,
  11779. bottom: 0.025
  11780. }
  11781. },
  11782. tome: {
  11783. height: math.unit(1.35, "feet"),
  11784. weight: math.unit(10, "lb"),
  11785. name: "Vanrel's Tome",
  11786. rename: true,
  11787. image: {
  11788. source: "./media/characters/vanrel/tome.svg"
  11789. }
  11790. },
  11791. beans: {
  11792. height: math.unit(0.89, "feet"),
  11793. name: "Beans",
  11794. image: {
  11795. source: "./media/characters/vanrel/beans.svg"
  11796. }
  11797. },
  11798. },
  11799. [
  11800. {
  11801. name: "Normal",
  11802. height: math.unit(4 + 7 / 12, "feet"),
  11803. default: true
  11804. },
  11805. ]
  11806. ))
  11807. characterMakers.push(() => makeCharacter(
  11808. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11809. {
  11810. front: {
  11811. height: math.unit(7 + 5 / 12, "feet"),
  11812. weight: math.unit(150, "lb"),
  11813. name: "Front",
  11814. image: {
  11815. source: "./media/characters/kuiper-vanrel/front.svg",
  11816. extra: 1118 / 1068,
  11817. bottom: 0.09
  11818. }
  11819. },
  11820. foot: {
  11821. height: math.unit(0.55, "meters"),
  11822. name: "Foot",
  11823. image: {
  11824. source: "./media/characters/kuiper-vanrel/foot.svg",
  11825. }
  11826. },
  11827. battle: {
  11828. height: math.unit(6.824, "feet"),
  11829. weight: math.unit(150, "lb"),
  11830. name: "Battle",
  11831. image: {
  11832. source: "./media/characters/kuiper-vanrel/battle.svg",
  11833. extra: 1466 / 1327,
  11834. bottom: 29 / 1492.5
  11835. }
  11836. },
  11837. battleAlt: {
  11838. height: math.unit(6.824, "feet"),
  11839. weight: math.unit(150, "lb"),
  11840. name: "Battle (Alt)",
  11841. image: {
  11842. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11843. extra: 2081 / 1965,
  11844. bottom: 40 / 2121
  11845. }
  11846. },
  11847. },
  11848. [
  11849. {
  11850. name: "Normal",
  11851. height: math.unit(7 + 5 / 12, "feet"),
  11852. default: true
  11853. },
  11854. ]
  11855. ))
  11856. characterMakers.push(() => makeCharacter(
  11857. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11858. {
  11859. front: {
  11860. height: math.unit(8 + 5 / 12, "feet"),
  11861. weight: math.unit(150, "lb"),
  11862. name: "Front",
  11863. image: {
  11864. source: "./media/characters/keset-vanrel/front.svg",
  11865. extra: 1150 / 1084,
  11866. bottom: 0.05
  11867. }
  11868. },
  11869. hand: {
  11870. height: math.unit(0.6, "meters"),
  11871. name: "Hand",
  11872. image: {
  11873. source: "./media/characters/keset-vanrel/hand.svg"
  11874. }
  11875. },
  11876. foot: {
  11877. height: math.unit(0.94978, "meters"),
  11878. name: "Foot",
  11879. image: {
  11880. source: "./media/characters/keset-vanrel/foot.svg"
  11881. }
  11882. },
  11883. battle: {
  11884. height: math.unit(7.408, "feet"),
  11885. weight: math.unit(150, "lb"),
  11886. name: "Battle",
  11887. image: {
  11888. source: "./media/characters/keset-vanrel/battle.svg",
  11889. extra: 1890 / 1386,
  11890. bottom: 73.28 / 1970
  11891. }
  11892. },
  11893. },
  11894. [
  11895. {
  11896. name: "Normal",
  11897. height: math.unit(8 + 5 / 12, "feet"),
  11898. default: true
  11899. },
  11900. ]
  11901. ))
  11902. characterMakers.push(() => makeCharacter(
  11903. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11904. {
  11905. front: {
  11906. height: math.unit(6, "feet"),
  11907. weight: math.unit(150, "lb"),
  11908. name: "Front",
  11909. image: {
  11910. source: "./media/characters/neos/front.svg",
  11911. extra: 1696 / 992,
  11912. bottom: 0.14
  11913. }
  11914. },
  11915. },
  11916. [
  11917. {
  11918. name: "Normal",
  11919. height: math.unit(54, "cm"),
  11920. default: true
  11921. },
  11922. {
  11923. name: "Macro",
  11924. height: math.unit(100, "m")
  11925. },
  11926. {
  11927. name: "Megamacro",
  11928. height: math.unit(10, "km")
  11929. },
  11930. {
  11931. name: "Megamacro+",
  11932. height: math.unit(100, "km")
  11933. },
  11934. {
  11935. name: "Gigamacro",
  11936. height: math.unit(100, "Mm")
  11937. },
  11938. {
  11939. name: "Teramacro",
  11940. height: math.unit(100, "Gm")
  11941. },
  11942. {
  11943. name: "Examacro",
  11944. height: math.unit(100, "Em")
  11945. },
  11946. {
  11947. name: "Godly",
  11948. height: math.unit(10000, "Ym")
  11949. },
  11950. {
  11951. name: "Beyond Godly",
  11952. height: math.unit(25, "multiverses")
  11953. },
  11954. ]
  11955. ))
  11956. characterMakers.push(() => makeCharacter(
  11957. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11958. {
  11959. feminine: {
  11960. height: math.unit(5, "feet"),
  11961. weight: math.unit(100, "lb"),
  11962. name: "Feminine",
  11963. image: {
  11964. source: "./media/characters/sammy-mouse/feminine.svg",
  11965. extra: 2526 / 2425,
  11966. bottom: 0.123
  11967. }
  11968. },
  11969. masculine: {
  11970. height: math.unit(5, "feet"),
  11971. weight: math.unit(100, "lb"),
  11972. name: "Masculine",
  11973. image: {
  11974. source: "./media/characters/sammy-mouse/masculine.svg",
  11975. extra: 2526 / 2425,
  11976. bottom: 0.123
  11977. }
  11978. },
  11979. },
  11980. [
  11981. {
  11982. name: "Micro",
  11983. height: math.unit(5, "inches")
  11984. },
  11985. {
  11986. name: "Normal",
  11987. height: math.unit(5, "feet"),
  11988. default: true
  11989. },
  11990. {
  11991. name: "Macro",
  11992. height: math.unit(60, "feet")
  11993. },
  11994. ]
  11995. ))
  11996. characterMakers.push(() => makeCharacter(
  11997. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11998. {
  11999. front: {
  12000. height: math.unit(4, "feet"),
  12001. weight: math.unit(50, "lb"),
  12002. name: "Front",
  12003. image: {
  12004. source: "./media/characters/kole/front.svg",
  12005. extra: 1423 / 1303,
  12006. bottom: 0.025
  12007. }
  12008. },
  12009. back: {
  12010. height: math.unit(4, "feet"),
  12011. weight: math.unit(50, "lb"),
  12012. name: "Back",
  12013. image: {
  12014. source: "./media/characters/kole/back.svg",
  12015. extra: 1426 / 1280,
  12016. bottom: 0.02
  12017. }
  12018. },
  12019. },
  12020. [
  12021. {
  12022. name: "Normal",
  12023. height: math.unit(4, "feet"),
  12024. default: true
  12025. },
  12026. ]
  12027. ))
  12028. characterMakers.push(() => makeCharacter(
  12029. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  12030. {
  12031. front: {
  12032. height: math.unit(2 + 6 / 12, "feet"),
  12033. weight: math.unit(20, "lb"),
  12034. name: "Front",
  12035. image: {
  12036. source: "./media/characters/rufran/front.svg",
  12037. extra: 2041 / 1839,
  12038. bottom: 0.055
  12039. }
  12040. },
  12041. back: {
  12042. height: math.unit(2 + 6 / 12, "feet"),
  12043. weight: math.unit(20, "lb"),
  12044. name: "Back",
  12045. image: {
  12046. source: "./media/characters/rufran/back.svg",
  12047. extra: 2054 / 1839,
  12048. bottom: 0.01
  12049. }
  12050. },
  12051. hand: {
  12052. height: math.unit(0.2166, "meters"),
  12053. name: "Hand",
  12054. image: {
  12055. source: "./media/characters/rufran/hand.svg"
  12056. }
  12057. },
  12058. foot: {
  12059. height: math.unit(0.185, "meters"),
  12060. name: "Foot",
  12061. image: {
  12062. source: "./media/characters/rufran/foot.svg"
  12063. }
  12064. },
  12065. },
  12066. [
  12067. {
  12068. name: "Micro",
  12069. height: math.unit(1, "inch")
  12070. },
  12071. {
  12072. name: "Normal",
  12073. height: math.unit(2 + 6 / 12, "feet"),
  12074. default: true
  12075. },
  12076. {
  12077. name: "Big",
  12078. height: math.unit(60, "feet")
  12079. },
  12080. {
  12081. name: "Macro",
  12082. height: math.unit(325, "feet")
  12083. },
  12084. ]
  12085. ))
  12086. characterMakers.push(() => makeCharacter(
  12087. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12088. {
  12089. front: {
  12090. height: math.unit(0.3, "meters"),
  12091. weight: math.unit(3.5, "kg"),
  12092. name: "Front",
  12093. image: {
  12094. source: "./media/characters/chip/front.svg",
  12095. extra: 748 / 674
  12096. }
  12097. },
  12098. },
  12099. [
  12100. {
  12101. name: "Micro",
  12102. height: math.unit(1, "inch"),
  12103. default: true
  12104. },
  12105. ]
  12106. ))
  12107. characterMakers.push(() => makeCharacter(
  12108. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12109. {
  12110. side: {
  12111. height: math.unit(2.3, "meters"),
  12112. weight: math.unit(3500, "lb"),
  12113. name: "Side",
  12114. image: {
  12115. source: "./media/characters/torvid/side.svg",
  12116. extra: 1972 / 722,
  12117. bottom: 0.035
  12118. }
  12119. },
  12120. },
  12121. [
  12122. {
  12123. name: "Normal",
  12124. height: math.unit(2.3, "meters"),
  12125. default: true
  12126. },
  12127. ]
  12128. ))
  12129. characterMakers.push(() => makeCharacter(
  12130. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12131. {
  12132. front: {
  12133. height: math.unit(2, "meters"),
  12134. weight: math.unit(150.5, "kg"),
  12135. name: "Front",
  12136. image: {
  12137. source: "./media/characters/susan/front.svg",
  12138. extra: 693 / 635,
  12139. bottom: 0.05
  12140. }
  12141. },
  12142. },
  12143. [
  12144. {
  12145. name: "Megamacro",
  12146. height: math.unit(505, "miles"),
  12147. default: true
  12148. },
  12149. ]
  12150. ))
  12151. characterMakers.push(() => makeCharacter(
  12152. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12153. {
  12154. front: {
  12155. height: math.unit(6, "feet"),
  12156. weight: math.unit(150, "lb"),
  12157. name: "Front",
  12158. image: {
  12159. source: "./media/characters/raindrops/front.svg",
  12160. extra: 2655 / 2461,
  12161. bottom: 49 / 2705
  12162. }
  12163. },
  12164. back: {
  12165. height: math.unit(6, "feet"),
  12166. weight: math.unit(150, "lb"),
  12167. name: "Back",
  12168. image: {
  12169. source: "./media/characters/raindrops/back.svg",
  12170. extra: 2574 / 2400,
  12171. bottom: 65 / 2634
  12172. }
  12173. },
  12174. },
  12175. [
  12176. {
  12177. name: "Micro",
  12178. height: math.unit(6, "inches")
  12179. },
  12180. {
  12181. name: "Normal",
  12182. height: math.unit(6 + 2 / 12, "feet")
  12183. },
  12184. {
  12185. name: "Macro",
  12186. height: math.unit(131, "feet"),
  12187. default: true
  12188. },
  12189. {
  12190. name: "Megamacro",
  12191. height: math.unit(15, "miles")
  12192. },
  12193. {
  12194. name: "Gigamacro",
  12195. height: math.unit(4000, "miles")
  12196. },
  12197. {
  12198. name: "Teramacro",
  12199. height: math.unit(315000, "miles")
  12200. },
  12201. ]
  12202. ))
  12203. characterMakers.push(() => makeCharacter(
  12204. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12205. {
  12206. front: {
  12207. height: math.unit(2.794, "meters"),
  12208. weight: math.unit(325, "kg"),
  12209. name: "Front",
  12210. image: {
  12211. source: "./media/characters/tezwa/front.svg",
  12212. extra: 2083 / 1906,
  12213. bottom: 0.031
  12214. }
  12215. },
  12216. foot: {
  12217. height: math.unit(0.687, "meters"),
  12218. name: "Foot",
  12219. image: {
  12220. source: "./media/characters/tezwa/foot.svg"
  12221. }
  12222. },
  12223. },
  12224. [
  12225. {
  12226. name: "Normal",
  12227. height: math.unit(9 + 2 / 12, "feet"),
  12228. default: true
  12229. },
  12230. ]
  12231. ))
  12232. characterMakers.push(() => makeCharacter(
  12233. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12234. {
  12235. front: {
  12236. height: math.unit(58, "feet"),
  12237. weight: math.unit(89000, "lb"),
  12238. name: "Front",
  12239. image: {
  12240. source: "./media/characters/typhus/front.svg",
  12241. extra: 816 / 800,
  12242. bottom: 0.065
  12243. }
  12244. },
  12245. },
  12246. [
  12247. {
  12248. name: "Macro",
  12249. height: math.unit(58, "feet"),
  12250. default: true
  12251. },
  12252. ]
  12253. ))
  12254. characterMakers.push(() => makeCharacter(
  12255. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12256. {
  12257. front: {
  12258. height: math.unit(12, "feet"),
  12259. weight: math.unit(6, "tonnes"),
  12260. name: "Front",
  12261. image: {
  12262. source: "./media/characters/lyra-von-wulf/front.svg",
  12263. extra: 1,
  12264. bottom: 0.10
  12265. }
  12266. },
  12267. frontMecha: {
  12268. height: math.unit(12, "feet"),
  12269. weight: math.unit(12, "tonnes"),
  12270. name: "Front (Mecha)",
  12271. image: {
  12272. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12273. extra: 1,
  12274. bottom: 0.042
  12275. }
  12276. },
  12277. maw: {
  12278. height: math.unit(2.2, "feet"),
  12279. name: "Maw",
  12280. image: {
  12281. source: "./media/characters/lyra-von-wulf/maw.svg"
  12282. }
  12283. },
  12284. },
  12285. [
  12286. {
  12287. name: "Normal",
  12288. height: math.unit(12, "feet"),
  12289. default: true
  12290. },
  12291. {
  12292. name: "Classic",
  12293. height: math.unit(50, "feet")
  12294. },
  12295. {
  12296. name: "Macro",
  12297. height: math.unit(500, "feet")
  12298. },
  12299. {
  12300. name: "Megamacro",
  12301. height: math.unit(1, "mile")
  12302. },
  12303. {
  12304. name: "Gigamacro",
  12305. height: math.unit(400, "miles")
  12306. },
  12307. {
  12308. name: "Teramacro",
  12309. height: math.unit(22000, "miles")
  12310. },
  12311. {
  12312. name: "Solarmacro",
  12313. height: math.unit(8600000, "miles")
  12314. },
  12315. {
  12316. name: "Galactic",
  12317. height: math.unit(1057000, "lightyears")
  12318. },
  12319. ]
  12320. ))
  12321. characterMakers.push(() => makeCharacter(
  12322. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12323. {
  12324. front: {
  12325. height: math.unit(6 + 10 / 12, "feet"),
  12326. weight: math.unit(150, "lb"),
  12327. name: "Front",
  12328. image: {
  12329. source: "./media/characters/dixon/front.svg",
  12330. extra: 3361 / 3209,
  12331. bottom: 0.01
  12332. }
  12333. },
  12334. },
  12335. [
  12336. {
  12337. name: "Normal",
  12338. height: math.unit(6 + 10 / 12, "feet"),
  12339. default: true
  12340. },
  12341. {
  12342. name: "Big",
  12343. height: math.unit(12, "meters")
  12344. },
  12345. {
  12346. name: "Macro",
  12347. height: math.unit(500, "meters")
  12348. },
  12349. {
  12350. name: "Megamacro",
  12351. height: math.unit(2, "km")
  12352. },
  12353. ]
  12354. ))
  12355. characterMakers.push(() => makeCharacter(
  12356. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12357. {
  12358. front: {
  12359. height: math.unit(185, "cm"),
  12360. weight: math.unit(68, "kg"),
  12361. name: "Front",
  12362. image: {
  12363. source: "./media/characters/kauko/front.svg",
  12364. extra: 1455 / 1421,
  12365. bottom: 0.03
  12366. }
  12367. },
  12368. back: {
  12369. height: math.unit(185, "cm"),
  12370. weight: math.unit(68, "kg"),
  12371. name: "Back",
  12372. image: {
  12373. source: "./media/characters/kauko/back.svg",
  12374. extra: 1455 / 1421,
  12375. bottom: 0.004
  12376. }
  12377. },
  12378. },
  12379. [
  12380. {
  12381. name: "Normal",
  12382. height: math.unit(185, "cm"),
  12383. default: true
  12384. },
  12385. ]
  12386. ))
  12387. characterMakers.push(() => makeCharacter(
  12388. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12389. {
  12390. front: {
  12391. height: math.unit(6, "feet"),
  12392. weight: math.unit(150, "kg"),
  12393. name: "Front",
  12394. image: {
  12395. source: "./media/characters/varg/front.svg",
  12396. extra: 1108 / 1018,
  12397. bottom: 0.0375
  12398. }
  12399. },
  12400. },
  12401. [
  12402. {
  12403. name: "Normal",
  12404. height: math.unit(5, "meters")
  12405. },
  12406. {
  12407. name: "Macro",
  12408. height: math.unit(200, "meters")
  12409. },
  12410. {
  12411. name: "Megamacro",
  12412. height: math.unit(20, "kilometers")
  12413. },
  12414. {
  12415. name: "True Size",
  12416. height: math.unit(211, "km"),
  12417. default: true
  12418. },
  12419. {
  12420. name: "Gigamacro",
  12421. height: math.unit(1000, "km")
  12422. },
  12423. {
  12424. name: "Gigamacro+",
  12425. height: math.unit(8000, "km")
  12426. },
  12427. {
  12428. name: "Teramacro",
  12429. height: math.unit(1000000, "km")
  12430. },
  12431. ]
  12432. ))
  12433. characterMakers.push(() => makeCharacter(
  12434. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12435. {
  12436. front: {
  12437. height: math.unit(7 + 7 / 12, "feet"),
  12438. weight: math.unit(267, "lb"),
  12439. name: "Front",
  12440. image: {
  12441. source: "./media/characters/dayza/front.svg",
  12442. extra: 1262 / 1200,
  12443. bottom: 0.035
  12444. }
  12445. },
  12446. side: {
  12447. height: math.unit(7 + 7 / 12, "feet"),
  12448. weight: math.unit(267, "lb"),
  12449. name: "Side",
  12450. image: {
  12451. source: "./media/characters/dayza/side.svg",
  12452. extra: 1295 / 1245,
  12453. bottom: 0.05
  12454. }
  12455. },
  12456. back: {
  12457. height: math.unit(7 + 7 / 12, "feet"),
  12458. weight: math.unit(267, "lb"),
  12459. name: "Back",
  12460. image: {
  12461. source: "./media/characters/dayza/back.svg",
  12462. extra: 1241 / 1170
  12463. }
  12464. },
  12465. },
  12466. [
  12467. {
  12468. name: "Normal",
  12469. height: math.unit(7 + 7 / 12, "feet"),
  12470. default: true
  12471. },
  12472. {
  12473. name: "Macro",
  12474. height: math.unit(155, "feet")
  12475. },
  12476. ]
  12477. ))
  12478. characterMakers.push(() => makeCharacter(
  12479. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12480. {
  12481. front: {
  12482. height: math.unit(6 + 5 / 12, "feet"),
  12483. weight: math.unit(160, "lb"),
  12484. name: "Front",
  12485. image: {
  12486. source: "./media/characters/xanthos/front.svg",
  12487. extra: 1,
  12488. bottom: 0.04
  12489. }
  12490. },
  12491. back: {
  12492. height: math.unit(6 + 5 / 12, "feet"),
  12493. weight: math.unit(160, "lb"),
  12494. name: "Back",
  12495. image: {
  12496. source: "./media/characters/xanthos/back.svg",
  12497. extra: 1,
  12498. bottom: 0.03
  12499. }
  12500. },
  12501. hand: {
  12502. height: math.unit(0.928, "feet"),
  12503. name: "Hand",
  12504. image: {
  12505. source: "./media/characters/xanthos/hand.svg"
  12506. }
  12507. },
  12508. foot: {
  12509. height: math.unit(1.286, "feet"),
  12510. name: "Foot",
  12511. image: {
  12512. source: "./media/characters/xanthos/foot.svg"
  12513. }
  12514. },
  12515. },
  12516. [
  12517. {
  12518. name: "Normal",
  12519. height: math.unit(6 + 5 / 12, "feet"),
  12520. default: true
  12521. },
  12522. {
  12523. name: "Normal+",
  12524. height: math.unit(6, "meters")
  12525. },
  12526. {
  12527. name: "Macro",
  12528. height: math.unit(40, "feet")
  12529. },
  12530. {
  12531. name: "Macro+",
  12532. height: math.unit(200, "meters")
  12533. },
  12534. {
  12535. name: "Megamacro",
  12536. height: math.unit(20, "km")
  12537. },
  12538. {
  12539. name: "Megamacro+",
  12540. height: math.unit(100, "km")
  12541. },
  12542. ]
  12543. ))
  12544. characterMakers.push(() => makeCharacter(
  12545. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12546. {
  12547. front: {
  12548. height: math.unit(6 + 3 / 12, "feet"),
  12549. weight: math.unit(215, "lb"),
  12550. name: "Front",
  12551. image: {
  12552. source: "./media/characters/grynn/front.svg",
  12553. extra: 4627 / 4209,
  12554. bottom: 0.047
  12555. }
  12556. },
  12557. },
  12558. [
  12559. {
  12560. name: "Micro",
  12561. height: math.unit(6, "inches")
  12562. },
  12563. {
  12564. name: "Normal",
  12565. height: math.unit(6 + 3 / 12, "feet"),
  12566. default: true
  12567. },
  12568. {
  12569. name: "Big",
  12570. height: math.unit(104, "feet")
  12571. },
  12572. {
  12573. name: "Macro",
  12574. height: math.unit(944, "feet")
  12575. },
  12576. {
  12577. name: "Macro+",
  12578. height: math.unit(9480, "feet")
  12579. },
  12580. {
  12581. name: "Megamacro",
  12582. height: math.unit(78752, "feet")
  12583. },
  12584. {
  12585. name: "Megamacro+",
  12586. height: math.unit(630128, "feet")
  12587. },
  12588. {
  12589. name: "Megamacro++",
  12590. height: math.unit(3150695, "feet")
  12591. },
  12592. ]
  12593. ))
  12594. characterMakers.push(() => makeCharacter(
  12595. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12596. {
  12597. front: {
  12598. height: math.unit(7 + 5 / 12, "feet"),
  12599. weight: math.unit(450, "lb"),
  12600. name: "Front",
  12601. image: {
  12602. source: "./media/characters/mocha-aura/front.svg",
  12603. extra: 1907 / 1817,
  12604. bottom: 0.04
  12605. }
  12606. },
  12607. back: {
  12608. height: math.unit(7 + 5 / 12, "feet"),
  12609. weight: math.unit(450, "lb"),
  12610. name: "Back",
  12611. image: {
  12612. source: "./media/characters/mocha-aura/back.svg",
  12613. extra: 1900 / 1825,
  12614. bottom: 0.045
  12615. }
  12616. },
  12617. },
  12618. [
  12619. {
  12620. name: "Nano",
  12621. height: math.unit(1, "nm")
  12622. },
  12623. {
  12624. name: "Megamicro",
  12625. height: math.unit(1, "mm")
  12626. },
  12627. {
  12628. name: "Micro",
  12629. height: math.unit(3, "inches")
  12630. },
  12631. {
  12632. name: "Normal",
  12633. height: math.unit(7 + 5 / 12, "feet"),
  12634. default: true
  12635. },
  12636. {
  12637. name: "Macro",
  12638. height: math.unit(30, "feet")
  12639. },
  12640. {
  12641. name: "Megamacro",
  12642. height: math.unit(3500, "feet")
  12643. },
  12644. {
  12645. name: "Teramacro",
  12646. height: math.unit(500000, "miles")
  12647. },
  12648. {
  12649. name: "Petamacro",
  12650. height: math.unit(50000000000000000, "parsecs")
  12651. },
  12652. ]
  12653. ))
  12654. characterMakers.push(() => makeCharacter(
  12655. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], 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/ilisha-devya/front.svg",
  12663. extra: 1,
  12664. bottom: 0.175
  12665. }
  12666. },
  12667. back: {
  12668. height: math.unit(6, "feet"),
  12669. weight: math.unit(150, "lb"),
  12670. name: "Back",
  12671. image: {
  12672. source: "./media/characters/ilisha-devya/back.svg",
  12673. extra: 1,
  12674. bottom: 0.015
  12675. }
  12676. },
  12677. },
  12678. [
  12679. {
  12680. name: "Macro",
  12681. height: math.unit(500, "feet"),
  12682. default: true
  12683. },
  12684. {
  12685. name: "Megamacro",
  12686. height: math.unit(10, "miles")
  12687. },
  12688. {
  12689. name: "Gigamacro",
  12690. height: math.unit(100000, "miles")
  12691. },
  12692. {
  12693. name: "Examacro",
  12694. height: math.unit(1e9, "lightyears")
  12695. },
  12696. {
  12697. name: "Omniversal",
  12698. height: math.unit(1e33, "lightyears")
  12699. },
  12700. {
  12701. name: "Beyond Infinite",
  12702. height: math.unit(1e100, "lightyears")
  12703. },
  12704. ]
  12705. ))
  12706. characterMakers.push(() => makeCharacter(
  12707. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12708. {
  12709. Side: {
  12710. height: math.unit(6, "feet"),
  12711. weight: math.unit(150, "lb"),
  12712. name: "Side",
  12713. image: {
  12714. source: "./media/characters/mira/side.svg",
  12715. extra: 900 / 799,
  12716. bottom: 0.02
  12717. }
  12718. },
  12719. },
  12720. [
  12721. {
  12722. name: "Human Size",
  12723. height: math.unit(6, "feet")
  12724. },
  12725. {
  12726. name: "Macro",
  12727. height: math.unit(100, "feet"),
  12728. default: true
  12729. },
  12730. {
  12731. name: "Megamacro",
  12732. height: math.unit(10, "miles")
  12733. },
  12734. {
  12735. name: "Gigamacro",
  12736. height: math.unit(25000, "miles")
  12737. },
  12738. {
  12739. name: "Teramacro",
  12740. height: math.unit(300, "AU")
  12741. },
  12742. {
  12743. name: "Full Size",
  12744. height: math.unit(4.5e10, "lightyears")
  12745. },
  12746. ]
  12747. ))
  12748. characterMakers.push(() => makeCharacter(
  12749. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12750. {
  12751. front: {
  12752. height: math.unit(6, "feet"),
  12753. weight: math.unit(150, "lb"),
  12754. name: "Front",
  12755. image: {
  12756. source: "./media/characters/holly/front.svg",
  12757. extra: 639 / 606
  12758. }
  12759. },
  12760. back: {
  12761. height: math.unit(6, "feet"),
  12762. weight: math.unit(150, "lb"),
  12763. name: "Back",
  12764. image: {
  12765. source: "./media/characters/holly/back.svg",
  12766. extra: 623 / 598
  12767. }
  12768. },
  12769. frontWorking: {
  12770. height: math.unit(6, "feet"),
  12771. weight: math.unit(150, "lb"),
  12772. name: "Front (Working)",
  12773. image: {
  12774. source: "./media/characters/holly/front-working.svg",
  12775. extra: 607 / 577,
  12776. bottom: 0.048
  12777. }
  12778. },
  12779. },
  12780. [
  12781. {
  12782. name: "Normal",
  12783. height: math.unit(12 + 3 / 12, "feet"),
  12784. default: true
  12785. },
  12786. ]
  12787. ))
  12788. characterMakers.push(() => makeCharacter(
  12789. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12790. {
  12791. front: {
  12792. height: math.unit(6, "feet"),
  12793. weight: math.unit(150, "lb"),
  12794. name: "Front",
  12795. image: {
  12796. source: "./media/characters/porter/front.svg",
  12797. extra: 1,
  12798. bottom: 0.01
  12799. }
  12800. },
  12801. frontRobes: {
  12802. height: math.unit(6, "feet"),
  12803. weight: math.unit(150, "lb"),
  12804. name: "Front (Robes)",
  12805. image: {
  12806. source: "./media/characters/porter/front-robes.svg",
  12807. extra: 1.01,
  12808. bottom: 0.01
  12809. }
  12810. },
  12811. },
  12812. [
  12813. {
  12814. name: "Normal",
  12815. height: math.unit(11 + 9 / 12, "feet"),
  12816. default: true
  12817. },
  12818. ]
  12819. ))
  12820. characterMakers.push(() => makeCharacter(
  12821. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12822. {
  12823. legendary: {
  12824. height: math.unit(6, "feet"),
  12825. weight: math.unit(150, "lb"),
  12826. name: "Legendary",
  12827. image: {
  12828. source: "./media/characters/lucy/legendary.svg",
  12829. extra: 1355 / 1100,
  12830. bottom: 0.045
  12831. }
  12832. },
  12833. },
  12834. [
  12835. {
  12836. name: "Legendary",
  12837. height: math.unit(86882 * 2, "miles"),
  12838. default: true
  12839. },
  12840. ]
  12841. ))
  12842. characterMakers.push(() => makeCharacter(
  12843. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12844. {
  12845. front: {
  12846. height: math.unit(6, "feet"),
  12847. weight: math.unit(150, "lb"),
  12848. name: "Front",
  12849. image: {
  12850. source: "./media/characters/drusilla/front.svg",
  12851. extra: 678 / 635,
  12852. bottom: 0.03
  12853. }
  12854. },
  12855. back: {
  12856. height: math.unit(6, "feet"),
  12857. weight: math.unit(150, "lb"),
  12858. name: "Back",
  12859. image: {
  12860. source: "./media/characters/drusilla/back.svg",
  12861. extra: 678 / 635,
  12862. bottom: 0.005
  12863. }
  12864. },
  12865. },
  12866. [
  12867. {
  12868. name: "Macro",
  12869. height: math.unit(100, "feet")
  12870. },
  12871. {
  12872. name: "Canon Height",
  12873. height: math.unit(2000, "feet"),
  12874. default: true
  12875. },
  12876. ]
  12877. ))
  12878. characterMakers.push(() => makeCharacter(
  12879. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12880. {
  12881. front: {
  12882. height: math.unit(6, "feet"),
  12883. weight: math.unit(180, "lb"),
  12884. name: "Front",
  12885. image: {
  12886. source: "./media/characters/renard-thatch/front.svg",
  12887. extra: 2411 / 2275,
  12888. bottom: 0.01
  12889. }
  12890. },
  12891. frontPosing: {
  12892. height: math.unit(6, "feet"),
  12893. weight: math.unit(180, "lb"),
  12894. name: "Front (Posing)",
  12895. image: {
  12896. source: "./media/characters/renard-thatch/front-posing.svg",
  12897. extra: 2381 / 2261,
  12898. bottom: 0.01
  12899. }
  12900. },
  12901. back: {
  12902. height: math.unit(6, "feet"),
  12903. weight: math.unit(180, "lb"),
  12904. name: "Back",
  12905. image: {
  12906. source: "./media/characters/renard-thatch/back.svg",
  12907. extra: 2428 / 2288
  12908. }
  12909. },
  12910. },
  12911. [
  12912. {
  12913. name: "Micro",
  12914. height: math.unit(3, "inches")
  12915. },
  12916. {
  12917. name: "Default",
  12918. height: math.unit(6, "feet"),
  12919. default: true
  12920. },
  12921. {
  12922. name: "Macro",
  12923. height: math.unit(75, "feet")
  12924. },
  12925. ]
  12926. ))
  12927. characterMakers.push(() => makeCharacter(
  12928. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12929. {
  12930. front: {
  12931. height: math.unit(1450, "feet"),
  12932. weight: math.unit(1.21e6, "tons"),
  12933. name: "Front",
  12934. image: {
  12935. source: "./media/characters/sekvra/front.svg",
  12936. extra: 1,
  12937. bottom: 0.03
  12938. }
  12939. },
  12940. frontClothed: {
  12941. height: math.unit(1450, "feet"),
  12942. weight: math.unit(1.21e6, "tons"),
  12943. name: "Front (Clothed)",
  12944. image: {
  12945. source: "./media/characters/sekvra/front-clothed.svg",
  12946. extra: 1,
  12947. bottom: 0.03
  12948. }
  12949. },
  12950. side: {
  12951. height: math.unit(1450, "feet"),
  12952. weight: math.unit(1.21e6, "tons"),
  12953. name: "Side",
  12954. image: {
  12955. source: "./media/characters/sekvra/side.svg",
  12956. extra: 1,
  12957. bottom: 0.025
  12958. }
  12959. },
  12960. back: {
  12961. height: math.unit(1450, "feet"),
  12962. weight: math.unit(1.21e6, "tons"),
  12963. name: "Back",
  12964. image: {
  12965. source: "./media/characters/sekvra/back.svg",
  12966. extra: 1,
  12967. bottom: 0.005
  12968. }
  12969. },
  12970. },
  12971. [
  12972. {
  12973. name: "Macro",
  12974. height: math.unit(1450, "feet"),
  12975. default: true
  12976. },
  12977. {
  12978. name: "Megamacro",
  12979. height: math.unit(15000, "feet")
  12980. },
  12981. ]
  12982. ))
  12983. characterMakers.push(() => makeCharacter(
  12984. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12985. {
  12986. front: {
  12987. height: math.unit(6, "feet"),
  12988. weight: math.unit(150, "lb"),
  12989. name: "Front",
  12990. image: {
  12991. source: "./media/characters/carmine/front.svg",
  12992. extra: 1,
  12993. bottom: 0.035
  12994. }
  12995. },
  12996. frontArmor: {
  12997. height: math.unit(6, "feet"),
  12998. weight: math.unit(150, "lb"),
  12999. name: "Front (Armor)",
  13000. image: {
  13001. source: "./media/characters/carmine/front-armor.svg",
  13002. extra: 1,
  13003. bottom: 0.035
  13004. }
  13005. },
  13006. },
  13007. [
  13008. {
  13009. name: "Large",
  13010. height: math.unit(1, "mile")
  13011. },
  13012. {
  13013. name: "Huge",
  13014. height: math.unit(40, "miles"),
  13015. default: true
  13016. },
  13017. {
  13018. name: "Colossal",
  13019. height: math.unit(2500, "miles")
  13020. },
  13021. ]
  13022. ))
  13023. characterMakers.push(() => makeCharacter(
  13024. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13025. {
  13026. front: {
  13027. height: math.unit(6, "feet"),
  13028. weight: math.unit(150, "lb"),
  13029. name: "Front",
  13030. image: {
  13031. source: "./media/characters/elyssia/front.svg",
  13032. extra: 2201 / 2035,
  13033. bottom: 0.05
  13034. }
  13035. },
  13036. frontClothed: {
  13037. height: math.unit(6, "feet"),
  13038. weight: math.unit(150, "lb"),
  13039. name: "Front (Clothed)",
  13040. image: {
  13041. source: "./media/characters/elyssia/front-clothed.svg",
  13042. extra: 2201 / 2035,
  13043. bottom: 0.05
  13044. }
  13045. },
  13046. back: {
  13047. height: math.unit(6, "feet"),
  13048. weight: math.unit(150, "lb"),
  13049. name: "Back",
  13050. image: {
  13051. source: "./media/characters/elyssia/back.svg",
  13052. extra: 2201 / 2035,
  13053. bottom: 0.013
  13054. }
  13055. },
  13056. },
  13057. [
  13058. {
  13059. name: "Smaller",
  13060. height: math.unit(150, "feet")
  13061. },
  13062. {
  13063. name: "Standard",
  13064. height: math.unit(1400, "feet"),
  13065. default: true
  13066. },
  13067. {
  13068. name: "Distracted",
  13069. height: math.unit(15000, "feet")
  13070. },
  13071. ]
  13072. ))
  13073. characterMakers.push(() => makeCharacter(
  13074. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13075. {
  13076. front: {
  13077. height: math.unit(7 + 4 / 12, "feet"),
  13078. weight: math.unit(500, "lb"),
  13079. name: "Front",
  13080. image: {
  13081. source: "./media/characters/geno-maxwell/front.svg",
  13082. extra: 2207 / 2040,
  13083. bottom: 0.015
  13084. }
  13085. },
  13086. },
  13087. [
  13088. {
  13089. name: "Micro",
  13090. height: math.unit(3, "inches")
  13091. },
  13092. {
  13093. name: "Normal",
  13094. height: math.unit(7 + 4 / 12, "feet"),
  13095. default: true
  13096. },
  13097. {
  13098. name: "Macro",
  13099. height: math.unit(220, "feet")
  13100. },
  13101. {
  13102. name: "Megamacro",
  13103. height: math.unit(11, "miles")
  13104. },
  13105. ]
  13106. ))
  13107. characterMakers.push(() => makeCharacter(
  13108. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13109. {
  13110. front: {
  13111. height: math.unit(7 + 4 / 12, "feet"),
  13112. weight: math.unit(500, "lb"),
  13113. name: "Front",
  13114. image: {
  13115. source: "./media/characters/regena-maxwell/front.svg",
  13116. extra: 3115 / 2770,
  13117. bottom: 0.02
  13118. }
  13119. },
  13120. },
  13121. [
  13122. {
  13123. name: "Normal",
  13124. height: math.unit(7 + 4 / 12, "feet"),
  13125. default: true
  13126. },
  13127. {
  13128. name: "Macro",
  13129. height: math.unit(220, "feet")
  13130. },
  13131. {
  13132. name: "Megamacro",
  13133. height: math.unit(11, "miles")
  13134. },
  13135. ]
  13136. ))
  13137. characterMakers.push(() => makeCharacter(
  13138. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13139. {
  13140. front: {
  13141. height: math.unit(6, "feet"),
  13142. weight: math.unit(150, "lb"),
  13143. name: "Front",
  13144. image: {
  13145. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13146. extra: 860 / 690,
  13147. bottom: 0.03
  13148. }
  13149. },
  13150. },
  13151. [
  13152. {
  13153. name: "Normal",
  13154. height: math.unit(1.7, "meters"),
  13155. default: true
  13156. },
  13157. ]
  13158. ))
  13159. characterMakers.push(() => makeCharacter(
  13160. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13161. {
  13162. front: {
  13163. height: math.unit(6, "feet"),
  13164. weight: math.unit(150, "lb"),
  13165. name: "Front",
  13166. image: {
  13167. source: "./media/characters/quilly/front.svg",
  13168. extra: 890 / 776
  13169. }
  13170. },
  13171. },
  13172. [
  13173. {
  13174. name: "Gigamacro",
  13175. height: math.unit(404090, "miles"),
  13176. default: true
  13177. },
  13178. ]
  13179. ))
  13180. characterMakers.push(() => makeCharacter(
  13181. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13182. {
  13183. front: {
  13184. height: math.unit(7 + 8 / 12, "feet"),
  13185. weight: math.unit(350, "lb"),
  13186. name: "Front",
  13187. image: {
  13188. source: "./media/characters/tempest/front.svg",
  13189. extra: 1175 / 1086,
  13190. bottom: 0.02
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Normal",
  13197. height: math.unit(7 + 8 / 12, "feet"),
  13198. default: true
  13199. },
  13200. ]
  13201. ))
  13202. characterMakers.push(() => makeCharacter(
  13203. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13204. {
  13205. side: {
  13206. height: math.unit(4 + 5 / 12, "feet"),
  13207. weight: math.unit(80, "lb"),
  13208. name: "Side",
  13209. image: {
  13210. source: "./media/characters/rodger/side.svg",
  13211. extra: 1235 / 1118
  13212. }
  13213. },
  13214. },
  13215. [
  13216. {
  13217. name: "Micro",
  13218. height: math.unit(1, "inch")
  13219. },
  13220. {
  13221. name: "Normal",
  13222. height: math.unit(4 + 5 / 12, "feet"),
  13223. default: true
  13224. },
  13225. {
  13226. name: "Macro",
  13227. height: math.unit(120, "feet")
  13228. },
  13229. ]
  13230. ))
  13231. characterMakers.push(() => makeCharacter(
  13232. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13233. {
  13234. front: {
  13235. height: math.unit(6, "feet"),
  13236. weight: math.unit(150, "lb"),
  13237. name: "Front",
  13238. image: {
  13239. source: "./media/characters/danyel/front.svg",
  13240. extra: 1185 / 1123,
  13241. bottom: 0.05
  13242. }
  13243. },
  13244. },
  13245. [
  13246. {
  13247. name: "Shrunken",
  13248. height: math.unit(0.5, "mm")
  13249. },
  13250. {
  13251. name: "Micro",
  13252. height: math.unit(1, "mm"),
  13253. default: true
  13254. },
  13255. {
  13256. name: "Upsized",
  13257. height: math.unit(5 + 5 / 12, "feet")
  13258. },
  13259. ]
  13260. ))
  13261. characterMakers.push(() => makeCharacter(
  13262. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13263. {
  13264. front: {
  13265. height: math.unit(5 + 6 / 12, "feet"),
  13266. weight: math.unit(200, "lb"),
  13267. name: "Front",
  13268. image: {
  13269. source: "./media/characters/vivian-bijoux/front.svg",
  13270. extra: 1,
  13271. bottom: 0.072
  13272. }
  13273. },
  13274. },
  13275. [
  13276. {
  13277. name: "Normal",
  13278. height: math.unit(5 + 6 / 12, "feet"),
  13279. default: true
  13280. },
  13281. {
  13282. name: "Bad Dream",
  13283. height: math.unit(500, "feet")
  13284. },
  13285. {
  13286. name: "Nightmare",
  13287. height: math.unit(500, "miles")
  13288. },
  13289. ]
  13290. ))
  13291. characterMakers.push(() => makeCharacter(
  13292. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13293. {
  13294. front: {
  13295. height: math.unit(6 + 1 / 12, "feet"),
  13296. weight: math.unit(260, "lb"),
  13297. name: "Front",
  13298. image: {
  13299. source: "./media/characters/zeta/front.svg",
  13300. extra: 1968 / 1889,
  13301. bottom: 0.06
  13302. }
  13303. },
  13304. back: {
  13305. height: math.unit(6 + 1 / 12, "feet"),
  13306. weight: math.unit(260, "lb"),
  13307. name: "Back",
  13308. image: {
  13309. source: "./media/characters/zeta/back.svg",
  13310. extra: 1944 / 1858,
  13311. bottom: 0.03
  13312. }
  13313. },
  13314. hand: {
  13315. height: math.unit(1.112, "feet"),
  13316. name: "Hand",
  13317. image: {
  13318. source: "./media/characters/zeta/hand.svg"
  13319. }
  13320. },
  13321. foot: {
  13322. height: math.unit(1.48, "feet"),
  13323. name: "Foot",
  13324. image: {
  13325. source: "./media/characters/zeta/foot.svg"
  13326. }
  13327. },
  13328. },
  13329. [
  13330. {
  13331. name: "Micro",
  13332. height: math.unit(6, "inches")
  13333. },
  13334. {
  13335. name: "Normal",
  13336. height: math.unit(6 + 1 / 12, "feet"),
  13337. default: true
  13338. },
  13339. {
  13340. name: "Macro",
  13341. height: math.unit(20, "feet")
  13342. },
  13343. ]
  13344. ))
  13345. characterMakers.push(() => makeCharacter(
  13346. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13347. {
  13348. front: {
  13349. height: math.unit(6, "feet"),
  13350. weight: math.unit(150, "lb"),
  13351. name: "Front",
  13352. image: {
  13353. source: "./media/characters/jamie-larsen/front.svg",
  13354. extra: 962 / 933,
  13355. bottom: 0.02
  13356. }
  13357. },
  13358. back: {
  13359. height: math.unit(6, "feet"),
  13360. weight: math.unit(150, "lb"),
  13361. name: "Back",
  13362. image: {
  13363. source: "./media/characters/jamie-larsen/back.svg",
  13364. extra: 997 / 946
  13365. }
  13366. },
  13367. },
  13368. [
  13369. {
  13370. name: "Macro",
  13371. height: math.unit(28 + 7 / 12, "feet"),
  13372. default: true
  13373. },
  13374. {
  13375. name: "Macro+",
  13376. height: math.unit(180, "feet")
  13377. },
  13378. {
  13379. name: "Megamacro",
  13380. height: math.unit(10, "miles")
  13381. },
  13382. {
  13383. name: "Gigamacro",
  13384. height: math.unit(200000, "miles")
  13385. },
  13386. ]
  13387. ))
  13388. characterMakers.push(() => makeCharacter(
  13389. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13390. {
  13391. front: {
  13392. height: math.unit(6, "feet"),
  13393. weight: math.unit(120, "lb"),
  13394. name: "Front",
  13395. image: {
  13396. source: "./media/characters/vance/front.svg",
  13397. extra: 1980 / 1890,
  13398. bottom: 0.09
  13399. }
  13400. },
  13401. back: {
  13402. height: math.unit(6, "feet"),
  13403. weight: math.unit(120, "lb"),
  13404. name: "Back",
  13405. image: {
  13406. source: "./media/characters/vance/back.svg",
  13407. extra: 2081 / 1994,
  13408. bottom: 0.014
  13409. }
  13410. },
  13411. hand: {
  13412. height: math.unit(0.88, "feet"),
  13413. name: "Hand",
  13414. image: {
  13415. source: "./media/characters/vance/hand.svg"
  13416. }
  13417. },
  13418. foot: {
  13419. height: math.unit(0.64, "feet"),
  13420. name: "Foot",
  13421. image: {
  13422. source: "./media/characters/vance/foot.svg"
  13423. }
  13424. },
  13425. },
  13426. [
  13427. {
  13428. name: "Small",
  13429. height: math.unit(90, "feet"),
  13430. default: true
  13431. },
  13432. {
  13433. name: "Macro",
  13434. height: math.unit(100, "meters")
  13435. },
  13436. {
  13437. name: "Megamacro",
  13438. height: math.unit(15, "miles")
  13439. },
  13440. ]
  13441. ))
  13442. characterMakers.push(() => makeCharacter(
  13443. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13444. {
  13445. front: {
  13446. height: math.unit(6, "feet"),
  13447. weight: math.unit(180, "lb"),
  13448. name: "Front",
  13449. image: {
  13450. source: "./media/characters/xochitl/front.svg",
  13451. extra: 2297 / 2261,
  13452. bottom: 0.065
  13453. }
  13454. },
  13455. back: {
  13456. height: math.unit(6, "feet"),
  13457. weight: math.unit(180, "lb"),
  13458. name: "Back",
  13459. image: {
  13460. source: "./media/characters/xochitl/back.svg",
  13461. extra: 2386 / 2354,
  13462. bottom: 0.01
  13463. }
  13464. },
  13465. foot: {
  13466. height: math.unit(6 / 5 * 1.15, "feet"),
  13467. weight: math.unit(150, "lb"),
  13468. name: "Foot",
  13469. image: {
  13470. source: "./media/characters/xochitl/foot.svg"
  13471. }
  13472. },
  13473. },
  13474. [
  13475. {
  13476. name: "Macro",
  13477. height: math.unit(80, "feet")
  13478. },
  13479. {
  13480. name: "Macro+",
  13481. height: math.unit(400, "feet"),
  13482. default: true
  13483. },
  13484. {
  13485. name: "Gigamacro",
  13486. height: math.unit(80000, "miles")
  13487. },
  13488. {
  13489. name: "Gigamacro+",
  13490. height: math.unit(400000, "miles")
  13491. },
  13492. {
  13493. name: "Teramacro",
  13494. height: math.unit(300, "AU")
  13495. },
  13496. ]
  13497. ))
  13498. characterMakers.push(() => makeCharacter(
  13499. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13500. {
  13501. front: {
  13502. height: math.unit(6, "feet"),
  13503. weight: math.unit(150, "lb"),
  13504. name: "Front",
  13505. image: {
  13506. source: "./media/characters/vincent/front.svg",
  13507. extra: 1130 / 1080,
  13508. bottom: 0.055
  13509. }
  13510. },
  13511. beak: {
  13512. height: math.unit(6 * 0.1, "feet"),
  13513. name: "Beak",
  13514. image: {
  13515. source: "./media/characters/vincent/beak.svg"
  13516. }
  13517. },
  13518. hand: {
  13519. height: math.unit(6 * 0.85, "feet"),
  13520. weight: math.unit(150, "lb"),
  13521. name: "Hand",
  13522. image: {
  13523. source: "./media/characters/vincent/hand.svg"
  13524. }
  13525. },
  13526. foot: {
  13527. height: math.unit(6 * 0.19, "feet"),
  13528. weight: math.unit(150, "lb"),
  13529. name: "Foot",
  13530. image: {
  13531. source: "./media/characters/vincent/foot.svg"
  13532. }
  13533. },
  13534. },
  13535. [
  13536. {
  13537. name: "Base",
  13538. height: math.unit(6 + 5 / 12, "feet"),
  13539. default: true
  13540. },
  13541. {
  13542. name: "Macro",
  13543. height: math.unit(300, "feet")
  13544. },
  13545. {
  13546. name: "Megamacro",
  13547. height: math.unit(2, "miles")
  13548. },
  13549. {
  13550. name: "Gigamacro",
  13551. height: math.unit(1000, "miles")
  13552. },
  13553. ]
  13554. ))
  13555. characterMakers.push(() => makeCharacter(
  13556. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13557. {
  13558. front: {
  13559. height: math.unit(2, "meters"),
  13560. weight: math.unit(500, "kg"),
  13561. name: "Front",
  13562. image: {
  13563. source: "./media/characters/coatl/front.svg",
  13564. extra: 3948 / 3500,
  13565. bottom: 0.082
  13566. }
  13567. },
  13568. },
  13569. [
  13570. {
  13571. name: "Normal",
  13572. height: math.unit(4, "meters")
  13573. },
  13574. {
  13575. name: "Macro",
  13576. height: math.unit(100, "meters"),
  13577. default: true
  13578. },
  13579. {
  13580. name: "Macro+",
  13581. height: math.unit(300, "meters")
  13582. },
  13583. {
  13584. name: "Megamacro",
  13585. height: math.unit(3, "gigameters")
  13586. },
  13587. {
  13588. name: "Megamacro+",
  13589. height: math.unit(300, "terameters")
  13590. },
  13591. {
  13592. name: "Megamacro++",
  13593. height: math.unit(3, "lightyears")
  13594. },
  13595. ]
  13596. ))
  13597. characterMakers.push(() => makeCharacter(
  13598. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13599. {
  13600. front: {
  13601. height: math.unit(6, "feet"),
  13602. weight: math.unit(50, "kg"),
  13603. name: "front",
  13604. image: {
  13605. source: "./media/characters/shiroryu/front.svg",
  13606. extra: 1990 / 1935
  13607. }
  13608. },
  13609. },
  13610. [
  13611. {
  13612. name: "Mortal Mingling",
  13613. height: math.unit(3, "meters")
  13614. },
  13615. {
  13616. name: "Kaiju-ish",
  13617. height: math.unit(250, "meters")
  13618. },
  13619. {
  13620. name: "Somewhat Godly",
  13621. height: math.unit(400, "km"),
  13622. default: true
  13623. },
  13624. {
  13625. name: "Planetary",
  13626. height: math.unit(300, "megameters")
  13627. },
  13628. {
  13629. name: "Galaxy-dwarfing",
  13630. height: math.unit(450, "kiloparsecs")
  13631. },
  13632. {
  13633. name: "Universe Eater",
  13634. height: math.unit(150, "gigaparsecs")
  13635. },
  13636. {
  13637. name: "Almost Immeasurable",
  13638. height: math.unit(1.3e266, "yottaparsecs")
  13639. },
  13640. ]
  13641. ))
  13642. characterMakers.push(() => makeCharacter(
  13643. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13644. {
  13645. front: {
  13646. height: math.unit(6, "feet"),
  13647. weight: math.unit(150, "lb"),
  13648. name: "Front",
  13649. image: {
  13650. source: "./media/characters/umeko/front.svg",
  13651. extra: 1,
  13652. bottom: 0.019
  13653. }
  13654. },
  13655. frontArmored: {
  13656. height: math.unit(6, "feet"),
  13657. weight: math.unit(150, "lb"),
  13658. name: "Front (Armored)",
  13659. image: {
  13660. source: "./media/characters/umeko/front-armored.svg",
  13661. extra: 1,
  13662. bottom: 0.021
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Macro",
  13669. height: math.unit(220, "feet"),
  13670. default: true
  13671. },
  13672. {
  13673. name: "Guardian Dragon",
  13674. height: math.unit(50, "miles")
  13675. },
  13676. {
  13677. name: "Cosmic",
  13678. height: math.unit(800000, "miles")
  13679. },
  13680. ]
  13681. ))
  13682. characterMakers.push(() => makeCharacter(
  13683. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13684. {
  13685. front: {
  13686. height: math.unit(6, "feet"),
  13687. weight: math.unit(150, "lb"),
  13688. name: "Front",
  13689. image: {
  13690. source: "./media/characters/cassidy/front.svg",
  13691. extra: 1,
  13692. bottom: 0.043
  13693. }
  13694. },
  13695. },
  13696. [
  13697. {
  13698. name: "Canon Height",
  13699. height: math.unit(120, "feet"),
  13700. default: true
  13701. },
  13702. {
  13703. name: "Macro+",
  13704. height: math.unit(400, "feet")
  13705. },
  13706. {
  13707. name: "Macro++",
  13708. height: math.unit(4000, "feet")
  13709. },
  13710. {
  13711. name: "Megamacro",
  13712. height: math.unit(3, "miles")
  13713. },
  13714. ]
  13715. ))
  13716. characterMakers.push(() => makeCharacter(
  13717. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13718. {
  13719. front: {
  13720. height: math.unit(6, "feet"),
  13721. weight: math.unit(150, "lb"),
  13722. name: "Front",
  13723. image: {
  13724. source: "./media/characters/isaac/front.svg",
  13725. extra: 896 / 815,
  13726. bottom: 0.11
  13727. }
  13728. },
  13729. },
  13730. [
  13731. {
  13732. name: "Human Size",
  13733. height: math.unit(8, "feet"),
  13734. default: true
  13735. },
  13736. {
  13737. name: "Macro",
  13738. height: math.unit(400, "feet")
  13739. },
  13740. {
  13741. name: "Megamacro",
  13742. height: math.unit(50, "miles")
  13743. },
  13744. {
  13745. name: "Canon Height",
  13746. height: math.unit(200, "AU")
  13747. },
  13748. ]
  13749. ))
  13750. characterMakers.push(() => makeCharacter(
  13751. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13752. {
  13753. front: {
  13754. height: math.unit(6, "feet"),
  13755. weight: math.unit(72, "kg"),
  13756. name: "Front",
  13757. image: {
  13758. source: "./media/characters/sleekit/front.svg",
  13759. extra: 4693 / 4487,
  13760. bottom: 0.012
  13761. }
  13762. },
  13763. },
  13764. [
  13765. {
  13766. name: "Minimum Height",
  13767. height: math.unit(10, "meters")
  13768. },
  13769. {
  13770. name: "Smaller",
  13771. height: math.unit(25, "meters")
  13772. },
  13773. {
  13774. name: "Larger",
  13775. height: math.unit(38, "meters"),
  13776. default: true
  13777. },
  13778. {
  13779. name: "Maximum height",
  13780. height: math.unit(100, "meters")
  13781. },
  13782. ]
  13783. ))
  13784. characterMakers.push(() => makeCharacter(
  13785. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13786. {
  13787. front: {
  13788. height: math.unit(6, "feet"),
  13789. weight: math.unit(150, "lb"),
  13790. name: "Front",
  13791. image: {
  13792. source: "./media/characters/nillia/front.svg",
  13793. extra: 2195 / 2037,
  13794. bottom: 0.005
  13795. }
  13796. },
  13797. back: {
  13798. height: math.unit(6, "feet"),
  13799. weight: math.unit(150, "lb"),
  13800. name: "Back",
  13801. image: {
  13802. source: "./media/characters/nillia/back.svg",
  13803. extra: 2195 / 2037,
  13804. bottom: 0.005
  13805. }
  13806. },
  13807. },
  13808. [
  13809. {
  13810. name: "Canon Height",
  13811. height: math.unit(489, "feet"),
  13812. default: true
  13813. }
  13814. ]
  13815. ))
  13816. characterMakers.push(() => makeCharacter(
  13817. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13818. {
  13819. front: {
  13820. height: math.unit(6, "feet"),
  13821. weight: math.unit(150, "lb"),
  13822. name: "Front",
  13823. image: {
  13824. source: "./media/characters/mesmyriza/front.svg",
  13825. extra: 2067 / 1784,
  13826. bottom: 0.035
  13827. }
  13828. },
  13829. foot: {
  13830. height: math.unit(6 / (250 / 35), "feet"),
  13831. name: "Foot",
  13832. image: {
  13833. source: "./media/characters/mesmyriza/foot.svg"
  13834. }
  13835. },
  13836. },
  13837. [
  13838. {
  13839. name: "Macro",
  13840. height: math.unit(457, "meters"),
  13841. default: true
  13842. },
  13843. {
  13844. name: "Megamacro",
  13845. height: math.unit(8, "megameters")
  13846. },
  13847. ]
  13848. ))
  13849. characterMakers.push(() => makeCharacter(
  13850. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13851. {
  13852. front: {
  13853. height: math.unit(6, "feet"),
  13854. weight: math.unit(250, "lb"),
  13855. name: "Front",
  13856. image: {
  13857. source: "./media/characters/saudade/front.svg",
  13858. extra: 1172 / 1139,
  13859. bottom: 0.035
  13860. }
  13861. },
  13862. },
  13863. [
  13864. {
  13865. name: "Micro",
  13866. height: math.unit(3, "inches")
  13867. },
  13868. {
  13869. name: "Normal",
  13870. height: math.unit(6, "feet"),
  13871. default: true
  13872. },
  13873. {
  13874. name: "Macro",
  13875. height: math.unit(50, "feet")
  13876. },
  13877. {
  13878. name: "Megamacro",
  13879. height: math.unit(2800, "feet")
  13880. },
  13881. ]
  13882. ))
  13883. characterMakers.push(() => makeCharacter(
  13884. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13885. {
  13886. front: {
  13887. height: math.unit(5 + 4 / 12, "feet"),
  13888. weight: math.unit(100, "lb"),
  13889. name: "Front",
  13890. image: {
  13891. source: "./media/characters/keireer/front.svg",
  13892. extra: 716 / 666,
  13893. bottom: 0.05
  13894. }
  13895. },
  13896. },
  13897. [
  13898. {
  13899. name: "Normal",
  13900. height: math.unit(5 + 4 / 12, "feet"),
  13901. default: true
  13902. },
  13903. ]
  13904. ))
  13905. characterMakers.push(() => makeCharacter(
  13906. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13907. {
  13908. front: {
  13909. height: math.unit(6, "feet"),
  13910. weight: math.unit(90, "kg"),
  13911. name: "Front",
  13912. image: {
  13913. source: "./media/characters/mirja/front.svg",
  13914. extra: 1789 / 1683,
  13915. bottom: 0.05
  13916. }
  13917. },
  13918. frontDressed: {
  13919. height: math.unit(6, "feet"),
  13920. weight: math.unit(90, "lb"),
  13921. name: "Front (Dressed)",
  13922. image: {
  13923. source: "./media/characters/mirja/front-dressed.svg",
  13924. extra: 1789 / 1683,
  13925. bottom: 0.05
  13926. }
  13927. },
  13928. back: {
  13929. height: math.unit(6, "feet"),
  13930. weight: math.unit(90, "lb"),
  13931. name: "Back",
  13932. image: {
  13933. source: "./media/characters/mirja/back.svg",
  13934. extra: 953 / 917,
  13935. bottom: 0.017
  13936. }
  13937. },
  13938. },
  13939. [
  13940. {
  13941. name: "\"Incognito\"",
  13942. height: math.unit(3, "meters")
  13943. },
  13944. {
  13945. name: "Strolling Size",
  13946. height: math.unit(15, "km")
  13947. },
  13948. {
  13949. name: "Larger Strolling Size",
  13950. height: math.unit(400, "km")
  13951. },
  13952. {
  13953. name: "Preferred Size",
  13954. height: math.unit(5000, "km")
  13955. },
  13956. {
  13957. name: "True Size",
  13958. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13959. default: true
  13960. },
  13961. ]
  13962. ))
  13963. characterMakers.push(() => makeCharacter(
  13964. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13965. {
  13966. front: {
  13967. height: math.unit(15, "feet"),
  13968. weight: math.unit(880, "kg"),
  13969. name: "Front",
  13970. image: {
  13971. source: "./media/characters/nightraver/front.svg",
  13972. extra: 2444 / 2160,
  13973. bottom: 0.027
  13974. }
  13975. },
  13976. back: {
  13977. height: math.unit(15, "feet"),
  13978. weight: math.unit(880, "kg"),
  13979. name: "Back",
  13980. image: {
  13981. source: "./media/characters/nightraver/back.svg",
  13982. extra: 2309 / 2180,
  13983. bottom: 0.005
  13984. }
  13985. },
  13986. sole: {
  13987. height: math.unit(2.878, "feet"),
  13988. name: "Sole",
  13989. image: {
  13990. source: "./media/characters/nightraver/sole.svg"
  13991. }
  13992. },
  13993. foot: {
  13994. height: math.unit(2.285, "feet"),
  13995. name: "Foot",
  13996. image: {
  13997. source: "./media/characters/nightraver/foot.svg"
  13998. }
  13999. },
  14000. maw: {
  14001. height: math.unit(2.67, "feet"),
  14002. name: "Maw",
  14003. image: {
  14004. source: "./media/characters/nightraver/maw.svg"
  14005. }
  14006. },
  14007. },
  14008. [
  14009. {
  14010. name: "Micro",
  14011. height: math.unit(1, "cm")
  14012. },
  14013. {
  14014. name: "Normal",
  14015. height: math.unit(15, "feet"),
  14016. default: true
  14017. },
  14018. {
  14019. name: "Macro",
  14020. height: math.unit(300, "feet")
  14021. },
  14022. {
  14023. name: "Megamacro",
  14024. height: math.unit(300, "miles")
  14025. },
  14026. {
  14027. name: "Gigamacro",
  14028. height: math.unit(10000, "miles")
  14029. },
  14030. ]
  14031. ))
  14032. characterMakers.push(() => makeCharacter(
  14033. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14034. {
  14035. side: {
  14036. height: math.unit(2, "inches"),
  14037. weight: math.unit(5, "grams"),
  14038. name: "Side",
  14039. image: {
  14040. source: "./media/characters/arc/side.svg"
  14041. }
  14042. },
  14043. },
  14044. [
  14045. {
  14046. name: "Micro",
  14047. height: math.unit(2, "inches"),
  14048. default: true
  14049. },
  14050. ]
  14051. ))
  14052. characterMakers.push(() => makeCharacter(
  14053. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14054. {
  14055. front: {
  14056. height: math.unit(1.1938, "meters"),
  14057. weight: math.unit(54, "kg"),
  14058. name: "Front",
  14059. image: {
  14060. source: "./media/characters/nebula-shahar/front.svg",
  14061. extra: 1642 / 1436,
  14062. bottom: 0.06
  14063. }
  14064. },
  14065. },
  14066. [
  14067. {
  14068. name: "Megamicro",
  14069. height: math.unit(0.3, "mm")
  14070. },
  14071. {
  14072. name: "Micro",
  14073. height: math.unit(3, "cm")
  14074. },
  14075. {
  14076. name: "Normal",
  14077. height: math.unit(138, "cm"),
  14078. default: true
  14079. },
  14080. {
  14081. name: "Macro",
  14082. height: math.unit(30, "m")
  14083. },
  14084. ]
  14085. ))
  14086. characterMakers.push(() => makeCharacter(
  14087. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14088. {
  14089. front: {
  14090. height: math.unit(5.24, "feet"),
  14091. weight: math.unit(150, "lb"),
  14092. name: "Front",
  14093. image: {
  14094. source: "./media/characters/shayla/front.svg",
  14095. extra: 1512 / 1414,
  14096. bottom: 0.01
  14097. }
  14098. },
  14099. back: {
  14100. height: math.unit(5.24, "feet"),
  14101. weight: math.unit(150, "lb"),
  14102. name: "Back",
  14103. image: {
  14104. source: "./media/characters/shayla/back.svg",
  14105. extra: 1512 / 1414
  14106. }
  14107. },
  14108. hand: {
  14109. height: math.unit(0.7781496062992126, "feet"),
  14110. name: "Hand",
  14111. image: {
  14112. source: "./media/characters/shayla/hand.svg"
  14113. }
  14114. },
  14115. foot: {
  14116. height: math.unit(1.4206036745406823, "feet"),
  14117. name: "Foot",
  14118. image: {
  14119. source: "./media/characters/shayla/foot.svg"
  14120. }
  14121. },
  14122. },
  14123. [
  14124. {
  14125. name: "Micro",
  14126. height: math.unit(0.32, "feet")
  14127. },
  14128. {
  14129. name: "Normal",
  14130. height: math.unit(5.24, "feet"),
  14131. default: true
  14132. },
  14133. {
  14134. name: "Macro",
  14135. height: math.unit(492.12, "feet")
  14136. },
  14137. {
  14138. name: "Megamacro",
  14139. height: math.unit(186.41, "miles")
  14140. },
  14141. ]
  14142. ))
  14143. characterMakers.push(() => makeCharacter(
  14144. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14145. {
  14146. front: {
  14147. height: math.unit(2.2, "m"),
  14148. weight: math.unit(120, "kg"),
  14149. name: "Front",
  14150. image: {
  14151. source: "./media/characters/pia-jr/front.svg",
  14152. extra: 1000 / 970,
  14153. bottom: 0.035
  14154. }
  14155. },
  14156. hand: {
  14157. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14158. name: "Hand",
  14159. image: {
  14160. source: "./media/characters/pia-jr/hand.svg"
  14161. }
  14162. },
  14163. paw: {
  14164. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14165. name: "Paw",
  14166. image: {
  14167. source: "./media/characters/pia-jr/paw.svg"
  14168. }
  14169. },
  14170. },
  14171. [
  14172. {
  14173. name: "Micro",
  14174. height: math.unit(1.2, "cm")
  14175. },
  14176. {
  14177. name: "Normal",
  14178. height: math.unit(2.2, "m"),
  14179. default: true
  14180. },
  14181. {
  14182. name: "Macro",
  14183. height: math.unit(180, "m")
  14184. },
  14185. {
  14186. name: "Megamacro",
  14187. height: math.unit(420, "km")
  14188. },
  14189. ]
  14190. ))
  14191. characterMakers.push(() => makeCharacter(
  14192. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14193. {
  14194. front: {
  14195. height: math.unit(2, "m"),
  14196. weight: math.unit(115, "kg"),
  14197. name: "Front",
  14198. image: {
  14199. source: "./media/characters/pia-sr/front.svg",
  14200. extra: 760 / 730,
  14201. bottom: 0.015
  14202. }
  14203. },
  14204. back: {
  14205. height: math.unit(2, "m"),
  14206. weight: math.unit(115, "kg"),
  14207. name: "Back",
  14208. image: {
  14209. source: "./media/characters/pia-sr/back.svg",
  14210. extra: 760 / 730,
  14211. bottom: 0.01
  14212. }
  14213. },
  14214. hand: {
  14215. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14216. name: "Hand",
  14217. image: {
  14218. source: "./media/characters/pia-sr/hand.svg"
  14219. }
  14220. },
  14221. foot: {
  14222. height: math.unit(1.83, "feet"),
  14223. name: "Foot",
  14224. image: {
  14225. source: "./media/characters/pia-sr/foot.svg"
  14226. }
  14227. },
  14228. },
  14229. [
  14230. {
  14231. name: "Micro",
  14232. height: math.unit(88, "mm")
  14233. },
  14234. {
  14235. name: "Normal",
  14236. height: math.unit(2, "m"),
  14237. default: true
  14238. },
  14239. {
  14240. name: "Macro",
  14241. height: math.unit(200, "m")
  14242. },
  14243. {
  14244. name: "Megamacro",
  14245. height: math.unit(420, "km")
  14246. },
  14247. ]
  14248. ))
  14249. characterMakers.push(() => makeCharacter(
  14250. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14251. {
  14252. front: {
  14253. height: math.unit(8 + 2 / 12, "feet"),
  14254. weight: math.unit(300, "lb"),
  14255. name: "Front",
  14256. image: {
  14257. source: "./media/characters/kibibyte/front.svg",
  14258. extra: 2221 / 2098,
  14259. bottom: 0.04
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Normal",
  14266. height: math.unit(8 + 2 / 12, "feet"),
  14267. default: true
  14268. },
  14269. {
  14270. name: "Socialable Macro",
  14271. height: math.unit(50, "feet")
  14272. },
  14273. {
  14274. name: "Macro",
  14275. height: math.unit(300, "feet")
  14276. },
  14277. {
  14278. name: "Megamacro",
  14279. height: math.unit(500, "miles")
  14280. },
  14281. ]
  14282. ))
  14283. characterMakers.push(() => makeCharacter(
  14284. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14285. {
  14286. front: {
  14287. height: math.unit(6, "feet"),
  14288. weight: math.unit(150, "lb"),
  14289. name: "Front",
  14290. image: {
  14291. source: "./media/characters/felix/front.svg",
  14292. extra: 762 / 722,
  14293. bottom: 0.02
  14294. }
  14295. },
  14296. frontClothed: {
  14297. height: math.unit(6, "feet"),
  14298. weight: math.unit(150, "lb"),
  14299. name: "Front (Clothed)",
  14300. image: {
  14301. source: "./media/characters/felix/front-clothed.svg",
  14302. extra: 762 / 722,
  14303. bottom: 0.02
  14304. }
  14305. },
  14306. },
  14307. [
  14308. {
  14309. name: "Normal",
  14310. height: math.unit(6 + 8 / 12, "feet"),
  14311. default: true
  14312. },
  14313. {
  14314. name: "Macro",
  14315. height: math.unit(2600, "feet")
  14316. },
  14317. {
  14318. name: "Megamacro",
  14319. height: math.unit(450, "miles")
  14320. },
  14321. ]
  14322. ))
  14323. characterMakers.push(() => makeCharacter(
  14324. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14325. {
  14326. front: {
  14327. height: math.unit(6 + 1 / 12, "feet"),
  14328. weight: math.unit(250, "lb"),
  14329. name: "Front",
  14330. image: {
  14331. source: "./media/characters/tobo/front.svg",
  14332. extra: 608 / 586,
  14333. bottom: 0.023
  14334. }
  14335. },
  14336. back: {
  14337. height: math.unit(6 + 1 / 12, "feet"),
  14338. weight: math.unit(250, "lb"),
  14339. name: "Back",
  14340. image: {
  14341. source: "./media/characters/tobo/back.svg",
  14342. extra: 608 / 586
  14343. }
  14344. },
  14345. },
  14346. [
  14347. {
  14348. name: "Nano",
  14349. height: math.unit(2, "nm")
  14350. },
  14351. {
  14352. name: "Megamicro",
  14353. height: math.unit(0.1, "mm")
  14354. },
  14355. {
  14356. name: "Micro",
  14357. height: math.unit(1, "inch"),
  14358. default: true
  14359. },
  14360. {
  14361. name: "Human-sized",
  14362. height: math.unit(6 + 1 / 12, "feet")
  14363. },
  14364. {
  14365. name: "Macro",
  14366. height: math.unit(250, "feet")
  14367. },
  14368. {
  14369. name: "Megamacro",
  14370. height: math.unit(75, "miles")
  14371. },
  14372. {
  14373. name: "Texas-sized",
  14374. height: math.unit(750, "miles")
  14375. },
  14376. {
  14377. name: "Teramacro",
  14378. height: math.unit(50000, "miles")
  14379. },
  14380. ]
  14381. ))
  14382. characterMakers.push(() => makeCharacter(
  14383. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14384. {
  14385. front: {
  14386. height: math.unit(6, "feet"),
  14387. weight: math.unit(269, "lb"),
  14388. name: "Front",
  14389. image: {
  14390. source: "./media/characters/danny-kapowsky/front.svg",
  14391. extra: 766 / 736,
  14392. bottom: 0.044
  14393. }
  14394. },
  14395. back: {
  14396. height: math.unit(6, "feet"),
  14397. weight: math.unit(269, "lb"),
  14398. name: "Back",
  14399. image: {
  14400. source: "./media/characters/danny-kapowsky/back.svg",
  14401. extra: 797 / 760,
  14402. bottom: 0.025
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Macro",
  14409. height: math.unit(150, "feet"),
  14410. default: true
  14411. },
  14412. {
  14413. name: "Macro+",
  14414. height: math.unit(200, "feet")
  14415. },
  14416. {
  14417. name: "Macro++",
  14418. height: math.unit(300, "feet")
  14419. },
  14420. {
  14421. name: "Macro+++",
  14422. height: math.unit(400, "feet")
  14423. },
  14424. ]
  14425. ))
  14426. characterMakers.push(() => makeCharacter(
  14427. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14428. {
  14429. side: {
  14430. height: math.unit(6, "feet"),
  14431. weight: math.unit(170, "lb"),
  14432. name: "Side",
  14433. image: {
  14434. source: "./media/characters/finn/side.svg",
  14435. extra: 1953 / 1807,
  14436. bottom: 0.057
  14437. }
  14438. },
  14439. },
  14440. [
  14441. {
  14442. name: "Megamacro",
  14443. height: math.unit(14445, "feet"),
  14444. default: true
  14445. },
  14446. ]
  14447. ))
  14448. characterMakers.push(() => makeCharacter(
  14449. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14450. {
  14451. front: {
  14452. height: math.unit(5 + 6 / 12, "feet"),
  14453. weight: math.unit(125, "lb"),
  14454. name: "Front",
  14455. image: {
  14456. source: "./media/characters/roy/front.svg",
  14457. extra: 1,
  14458. bottom: 0.11
  14459. }
  14460. },
  14461. },
  14462. [
  14463. {
  14464. name: "Micro",
  14465. height: math.unit(3, "inches"),
  14466. default: true
  14467. },
  14468. {
  14469. name: "Normal",
  14470. height: math.unit(5 + 6 / 12, "feet")
  14471. },
  14472. {
  14473. name: "Lesser Macro",
  14474. height: math.unit(60, "feet")
  14475. },
  14476. {
  14477. name: "Greater Macro",
  14478. height: math.unit(120, "feet")
  14479. },
  14480. ]
  14481. ))
  14482. characterMakers.push(() => makeCharacter(
  14483. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14484. {
  14485. front: {
  14486. height: math.unit(6, "feet"),
  14487. weight: math.unit(100, "lb"),
  14488. name: "Front",
  14489. image: {
  14490. source: "./media/characters/aevsivs/front.svg",
  14491. extra: 1,
  14492. bottom: 0.03
  14493. }
  14494. },
  14495. back: {
  14496. height: math.unit(6, "feet"),
  14497. weight: math.unit(100, "lb"),
  14498. name: "Back",
  14499. image: {
  14500. source: "./media/characters/aevsivs/back.svg"
  14501. }
  14502. },
  14503. },
  14504. [
  14505. {
  14506. name: "Micro",
  14507. height: math.unit(2, "inches"),
  14508. default: true
  14509. },
  14510. {
  14511. name: "Normal",
  14512. height: math.unit(5, "feet")
  14513. },
  14514. ]
  14515. ))
  14516. characterMakers.push(() => makeCharacter(
  14517. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14518. {
  14519. front: {
  14520. height: math.unit(5 + 7 / 12, "feet"),
  14521. weight: math.unit(159, "lb"),
  14522. name: "Front",
  14523. image: {
  14524. source: "./media/characters/hildegard/front.svg",
  14525. extra: 289 / 269,
  14526. bottom: 7.63 / 297.8
  14527. }
  14528. },
  14529. back: {
  14530. height: math.unit(5 + 7 / 12, "feet"),
  14531. weight: math.unit(159, "lb"),
  14532. name: "Back",
  14533. image: {
  14534. source: "./media/characters/hildegard/back.svg",
  14535. extra: 280 / 260,
  14536. bottom: 2.3 / 282
  14537. }
  14538. },
  14539. },
  14540. [
  14541. {
  14542. name: "Normal",
  14543. height: math.unit(5 + 7 / 12, "feet"),
  14544. default: true
  14545. },
  14546. ]
  14547. ))
  14548. characterMakers.push(() => makeCharacter(
  14549. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14550. {
  14551. bernard: {
  14552. height: math.unit(2 + 7 / 12, "feet"),
  14553. weight: math.unit(66, "lb"),
  14554. name: "Bernard",
  14555. rename: true,
  14556. image: {
  14557. source: "./media/characters/bernard-wilder/bernard.svg",
  14558. extra: 192 / 128,
  14559. bottom: 0.05
  14560. }
  14561. },
  14562. wilder: {
  14563. height: math.unit(5 + 8 / 12, "feet"),
  14564. weight: math.unit(143, "lb"),
  14565. name: "Wilder",
  14566. rename: true,
  14567. image: {
  14568. source: "./media/characters/bernard-wilder/wilder.svg",
  14569. extra: 361 / 312,
  14570. bottom: 0.02
  14571. }
  14572. },
  14573. },
  14574. [
  14575. {
  14576. name: "Normal",
  14577. height: math.unit(2 + 7 / 12, "feet"),
  14578. default: true
  14579. },
  14580. ]
  14581. ))
  14582. characterMakers.push(() => makeCharacter(
  14583. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14584. {
  14585. anthro: {
  14586. height: math.unit(6 + 1 / 12, "feet"),
  14587. weight: math.unit(155, "lb"),
  14588. name: "Anthro",
  14589. image: {
  14590. source: "./media/characters/hearth/anthro.svg",
  14591. extra: 260 / 250,
  14592. bottom: 0.02
  14593. }
  14594. },
  14595. feral: {
  14596. height: math.unit(3.78, "feet"),
  14597. weight: math.unit(35, "kg"),
  14598. name: "Feral",
  14599. image: {
  14600. source: "./media/characters/hearth/feral.svg",
  14601. extra: 153 / 135,
  14602. bottom: 0.03
  14603. }
  14604. },
  14605. },
  14606. [
  14607. {
  14608. name: "Normal",
  14609. height: math.unit(6 + 1 / 12, "feet"),
  14610. default: true
  14611. },
  14612. ]
  14613. ))
  14614. characterMakers.push(() => makeCharacter(
  14615. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14616. {
  14617. front: {
  14618. height: math.unit(6, "feet"),
  14619. weight: math.unit(182, "lb"),
  14620. name: "Front",
  14621. image: {
  14622. source: "./media/characters/ingrid/front.svg",
  14623. extra: 294 / 268,
  14624. bottom: 0.027
  14625. }
  14626. },
  14627. },
  14628. [
  14629. {
  14630. name: "Normal",
  14631. height: math.unit(6, "feet"),
  14632. default: true
  14633. },
  14634. ]
  14635. ))
  14636. characterMakers.push(() => makeCharacter(
  14637. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14638. {
  14639. eevee: {
  14640. height: math.unit(2 + 10 / 12, "feet"),
  14641. weight: math.unit(86, "lb"),
  14642. name: "Malgam",
  14643. image: {
  14644. source: "./media/characters/malgam/eevee.svg",
  14645. extra: 218 / 180,
  14646. bottom: 0.2
  14647. }
  14648. },
  14649. sylveon: {
  14650. height: math.unit(4, "feet"),
  14651. weight: math.unit(101, "lb"),
  14652. name: "Future Malgam",
  14653. rename: true,
  14654. image: {
  14655. source: "./media/characters/malgam/sylveon.svg",
  14656. extra: 371 / 325,
  14657. bottom: 0.015
  14658. }
  14659. },
  14660. gigantamax: {
  14661. height: math.unit(50, "feet"),
  14662. name: "Gigantamax Malgam",
  14663. rename: true,
  14664. image: {
  14665. source: "./media/characters/malgam/gigantamax.svg"
  14666. }
  14667. },
  14668. },
  14669. [
  14670. {
  14671. name: "Normal",
  14672. height: math.unit(2 + 10 / 12, "feet"),
  14673. default: true
  14674. },
  14675. ]
  14676. ))
  14677. characterMakers.push(() => makeCharacter(
  14678. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14679. {
  14680. front: {
  14681. height: math.unit(5 + 11 / 12, "feet"),
  14682. weight: math.unit(188, "lb"),
  14683. name: "Front",
  14684. image: {
  14685. source: "./media/characters/fleur/front.svg",
  14686. extra: 309 / 283,
  14687. bottom: 0.007
  14688. }
  14689. },
  14690. },
  14691. [
  14692. {
  14693. name: "Normal",
  14694. height: math.unit(5 + 11 / 12, "feet"),
  14695. default: true
  14696. },
  14697. ]
  14698. ))
  14699. characterMakers.push(() => makeCharacter(
  14700. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14701. {
  14702. front: {
  14703. height: math.unit(5 + 4 / 12, "feet"),
  14704. weight: math.unit(122, "lb"),
  14705. name: "Front",
  14706. image: {
  14707. source: "./media/characters/jude/front.svg",
  14708. extra: 288 / 273,
  14709. bottom: 0.03
  14710. }
  14711. },
  14712. },
  14713. [
  14714. {
  14715. name: "Normal",
  14716. height: math.unit(5 + 4 / 12, "feet"),
  14717. default: true
  14718. },
  14719. ]
  14720. ))
  14721. characterMakers.push(() => makeCharacter(
  14722. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14723. {
  14724. front: {
  14725. height: math.unit(5 + 11 / 12, "feet"),
  14726. weight: math.unit(190, "lb"),
  14727. name: "Front",
  14728. image: {
  14729. source: "./media/characters/seara/front.svg",
  14730. extra: 1,
  14731. bottom: 0.05
  14732. }
  14733. },
  14734. },
  14735. [
  14736. {
  14737. name: "Normal",
  14738. height: math.unit(5 + 11 / 12, "feet"),
  14739. default: true
  14740. },
  14741. ]
  14742. ))
  14743. characterMakers.push(() => makeCharacter(
  14744. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14745. {
  14746. front: {
  14747. height: math.unit(16 + 5 / 12, "feet"),
  14748. weight: math.unit(524, "lb"),
  14749. name: "Front",
  14750. image: {
  14751. source: "./media/characters/caspian/front.svg",
  14752. extra: 1,
  14753. bottom: 0.04
  14754. }
  14755. },
  14756. },
  14757. [
  14758. {
  14759. name: "Normal",
  14760. height: math.unit(16 + 5 / 12, "feet"),
  14761. default: true
  14762. },
  14763. ]
  14764. ))
  14765. characterMakers.push(() => makeCharacter(
  14766. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14767. {
  14768. front: {
  14769. height: math.unit(5 + 7 / 12, "feet"),
  14770. weight: math.unit(170, "lb"),
  14771. name: "Front",
  14772. image: {
  14773. source: "./media/characters/mika/front.svg",
  14774. extra: 1,
  14775. bottom: 0.016
  14776. }
  14777. },
  14778. },
  14779. [
  14780. {
  14781. name: "Normal",
  14782. height: math.unit(5 + 7 / 12, "feet"),
  14783. default: true
  14784. },
  14785. ]
  14786. ))
  14787. characterMakers.push(() => makeCharacter(
  14788. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14789. {
  14790. front: {
  14791. height: math.unit(6 + 2 / 12, "feet"),
  14792. weight: math.unit(268, "lb"),
  14793. name: "Front",
  14794. image: {
  14795. source: "./media/characters/sol/front.svg",
  14796. extra: 247 / 231,
  14797. bottom: 0.05
  14798. }
  14799. },
  14800. },
  14801. [
  14802. {
  14803. name: "Normal",
  14804. height: math.unit(6 + 2 / 12, "feet"),
  14805. default: true
  14806. },
  14807. ]
  14808. ))
  14809. characterMakers.push(() => makeCharacter(
  14810. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14811. {
  14812. buizel: {
  14813. height: math.unit(2 + 5 / 12, "feet"),
  14814. weight: math.unit(87, "lb"),
  14815. name: "Buizel",
  14816. image: {
  14817. source: "./media/characters/umiko/buizel.svg",
  14818. extra: 172 / 157,
  14819. bottom: 0.01
  14820. }
  14821. },
  14822. floatzel: {
  14823. height: math.unit(5 + 9 / 12, "feet"),
  14824. weight: math.unit(250, "lb"),
  14825. name: "Floatzel",
  14826. image: {
  14827. source: "./media/characters/umiko/floatzel.svg",
  14828. extra: 262 / 248
  14829. }
  14830. },
  14831. },
  14832. [
  14833. {
  14834. name: "Normal",
  14835. height: math.unit(2 + 5 / 12, "feet"),
  14836. default: true
  14837. },
  14838. ]
  14839. ))
  14840. characterMakers.push(() => makeCharacter(
  14841. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14842. {
  14843. front: {
  14844. height: math.unit(6 + 2 / 12, "feet"),
  14845. weight: math.unit(146, "lb"),
  14846. name: "Front",
  14847. image: {
  14848. source: "./media/characters/iliac/front.svg",
  14849. extra: 389 / 365,
  14850. bottom: 0.035
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Normal",
  14857. height: math.unit(6 + 2 / 12, "feet"),
  14858. default: true
  14859. },
  14860. ]
  14861. ))
  14862. characterMakers.push(() => makeCharacter(
  14863. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14864. {
  14865. front: {
  14866. height: math.unit(6, "feet"),
  14867. weight: math.unit(170, "lb"),
  14868. name: "Front",
  14869. image: {
  14870. source: "./media/characters/topaz/front.svg",
  14871. extra: 317 / 303,
  14872. bottom: 0.055
  14873. }
  14874. },
  14875. },
  14876. [
  14877. {
  14878. name: "Normal",
  14879. height: math.unit(6, "feet"),
  14880. default: true
  14881. },
  14882. ]
  14883. ))
  14884. characterMakers.push(() => makeCharacter(
  14885. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14886. {
  14887. front: {
  14888. height: math.unit(5 + 11 / 12, "feet"),
  14889. weight: math.unit(144, "lb"),
  14890. name: "Front",
  14891. image: {
  14892. source: "./media/characters/gabriel/front.svg",
  14893. extra: 285 / 262,
  14894. bottom: 0.004
  14895. }
  14896. },
  14897. },
  14898. [
  14899. {
  14900. name: "Normal",
  14901. height: math.unit(5 + 11 / 12, "feet"),
  14902. default: true
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14908. {
  14909. side: {
  14910. height: math.unit(6 + 5 / 12, "feet"),
  14911. weight: math.unit(300, "lb"),
  14912. name: "Side",
  14913. image: {
  14914. source: "./media/characters/tempest-suicune/side.svg",
  14915. extra: 195 / 154,
  14916. bottom: 0.04
  14917. }
  14918. },
  14919. },
  14920. [
  14921. {
  14922. name: "Normal",
  14923. height: math.unit(6 + 5 / 12, "feet"),
  14924. default: true
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14930. {
  14931. front: {
  14932. height: math.unit(7 + 2 / 12, "feet"),
  14933. weight: math.unit(322, "lb"),
  14934. name: "Front",
  14935. image: {
  14936. source: "./media/characters/vulcan/front.svg",
  14937. extra: 154 / 147,
  14938. bottom: 0.04
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Normal",
  14945. height: math.unit(7 + 2 / 12, "feet"),
  14946. default: true
  14947. },
  14948. ]
  14949. ))
  14950. characterMakers.push(() => makeCharacter(
  14951. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14952. {
  14953. front: {
  14954. height: math.unit(5 + 10 / 12, "feet"),
  14955. weight: math.unit(264, "lb"),
  14956. name: "Front",
  14957. image: {
  14958. source: "./media/characters/gault/front.svg",
  14959. extra: 161 / 140,
  14960. bottom: 0.028
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Normal",
  14967. height: math.unit(5 + 10 / 12, "feet"),
  14968. default: true
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Shard", species: ["weavile"], 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/shard/front.svg",
  14981. extra: 273 / 238,
  14982. bottom: 0.02
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Normal",
  14989. height: math.unit(3 + 6 / 12, "feet"),
  14990. default: true
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14996. {
  14997. front: {
  14998. height: math.unit(5 + 11 / 12, "feet"),
  14999. weight: math.unit(146, "lb"),
  15000. name: "Front",
  15001. image: {
  15002. source: "./media/characters/ashe/front.svg",
  15003. extra: 400 / 373,
  15004. bottom: 0.01
  15005. }
  15006. },
  15007. },
  15008. [
  15009. {
  15010. name: "Normal",
  15011. height: math.unit(5 + 11 / 12, "feet"),
  15012. default: true
  15013. },
  15014. ]
  15015. ))
  15016. characterMakers.push(() => makeCharacter(
  15017. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15018. {
  15019. front: {
  15020. height: math.unit(5 + 5 / 12, "feet"),
  15021. weight: math.unit(135, "lb"),
  15022. name: "Front",
  15023. image: {
  15024. source: "./media/characters/beatrix/front.svg",
  15025. extra: 392 / 379,
  15026. bottom: 0.01
  15027. }
  15028. },
  15029. },
  15030. [
  15031. {
  15032. name: "Normal",
  15033. height: math.unit(6, "feet"),
  15034. default: true
  15035. },
  15036. ]
  15037. ))
  15038. characterMakers.push(() => makeCharacter(
  15039. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15040. {
  15041. front: {
  15042. height: math.unit(6, "feet"),
  15043. weight: math.unit(150, "lb"),
  15044. name: "Front",
  15045. image: {
  15046. source: "./media/characters/ignatius/front.svg",
  15047. extra: 245 / 222,
  15048. bottom: 0.01
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Normal",
  15055. height: math.unit(5 + 5 / 12, "feet"),
  15056. default: true
  15057. },
  15058. ]
  15059. ))
  15060. characterMakers.push(() => makeCharacter(
  15061. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15062. {
  15063. front: {
  15064. height: math.unit(6 + 2 / 12, "feet"),
  15065. weight: math.unit(138, "lb"),
  15066. name: "Front",
  15067. image: {
  15068. source: "./media/characters/mei-li/front.svg",
  15069. extra: 237 / 229,
  15070. bottom: 0.03
  15071. }
  15072. },
  15073. },
  15074. [
  15075. {
  15076. name: "Normal",
  15077. height: math.unit(6 + 2 / 12, "feet"),
  15078. default: true
  15079. },
  15080. ]
  15081. ))
  15082. characterMakers.push(() => makeCharacter(
  15083. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15084. {
  15085. front: {
  15086. height: math.unit(2 + 4 / 12, "feet"),
  15087. weight: math.unit(62, "lb"),
  15088. name: "Front",
  15089. image: {
  15090. source: "./media/characters/puru/front.svg",
  15091. extra: 206 / 149,
  15092. bottom: 0.06
  15093. }
  15094. },
  15095. },
  15096. [
  15097. {
  15098. name: "Normal",
  15099. height: math.unit(2 + 4 / 12, "feet"),
  15100. default: true
  15101. },
  15102. ]
  15103. ))
  15104. characterMakers.push(() => makeCharacter(
  15105. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15106. {
  15107. anthro: {
  15108. height: math.unit(5 + 8/12, "feet"),
  15109. weight: math.unit(200, "lb"),
  15110. energyNeed: math.unit(2000, "kcal"),
  15111. name: "Anthro",
  15112. image: {
  15113. source: "./media/characters/kee/anthro.svg",
  15114. extra: 3251/3184,
  15115. bottom: 250/3501
  15116. }
  15117. },
  15118. taur: {
  15119. height: math.unit(11, "feet"),
  15120. weight: math.unit(500, "lb"),
  15121. energyNeed: math.unit(5000, "kcal"),
  15122. name: "Taur",
  15123. image: {
  15124. source: "./media/characters/kee/taur.svg",
  15125. extra: 1362/1320,
  15126. bottom: 83/1445
  15127. }
  15128. },
  15129. },
  15130. [
  15131. {
  15132. name: "Normal",
  15133. height: math.unit(5 + 8/12, "feet"),
  15134. default: true
  15135. },
  15136. {
  15137. name: "Macro",
  15138. height: math.unit(35, "feet")
  15139. },
  15140. ]
  15141. ))
  15142. characterMakers.push(() => makeCharacter(
  15143. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15144. {
  15145. anthro: {
  15146. height: math.unit(7, "feet"),
  15147. weight: math.unit(190, "lb"),
  15148. name: "Anthro",
  15149. image: {
  15150. source: "./media/characters/cobalt-dracha/anthro.svg",
  15151. extra: 231 / 225,
  15152. bottom: 0.04
  15153. }
  15154. },
  15155. feral: {
  15156. height: math.unit(9 + 7 / 12, "feet"),
  15157. weight: math.unit(294, "lb"),
  15158. name: "Feral",
  15159. image: {
  15160. source: "./media/characters/cobalt-dracha/feral.svg",
  15161. extra: 692 / 633,
  15162. bottom: 0.05
  15163. }
  15164. },
  15165. },
  15166. [
  15167. {
  15168. name: "Normal",
  15169. height: math.unit(7, "feet"),
  15170. default: true
  15171. },
  15172. ]
  15173. ))
  15174. characterMakers.push(() => makeCharacter(
  15175. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15176. {
  15177. fallen: {
  15178. height: math.unit(11 + 8 / 12, "feet"),
  15179. weight: math.unit(485, "lb"),
  15180. name: "Java (Fallen)",
  15181. rename: true,
  15182. image: {
  15183. source: "./media/characters/java/fallen.svg",
  15184. extra: 226 / 208,
  15185. bottom: 0.005
  15186. }
  15187. },
  15188. godkin: {
  15189. height: math.unit(10 + 6 / 12, "feet"),
  15190. weight: math.unit(328, "lb"),
  15191. name: "Java (Godkin)",
  15192. rename: true,
  15193. image: {
  15194. source: "./media/characters/java/godkin.svg",
  15195. extra: 270 / 262,
  15196. bottom: 0.02
  15197. }
  15198. },
  15199. },
  15200. [
  15201. {
  15202. name: "Normal",
  15203. height: math.unit(11 + 8 / 12, "feet"),
  15204. default: true
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15210. {
  15211. front: {
  15212. height: math.unit(7 + 8 / 12, "feet"),
  15213. weight: math.unit(320, "lb"),
  15214. name: "Front",
  15215. image: {
  15216. source: "./media/characters/skoll/front.svg",
  15217. extra: 232 / 220,
  15218. bottom: 0.02
  15219. }
  15220. },
  15221. },
  15222. [
  15223. {
  15224. name: "Normal",
  15225. height: math.unit(7 + 8 / 12, "feet"),
  15226. default: true
  15227. },
  15228. ]
  15229. ))
  15230. characterMakers.push(() => makeCharacter(
  15231. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15232. {
  15233. front: {
  15234. height: math.unit(5 + 9 / 12, "feet"),
  15235. weight: math.unit(170, "lb"),
  15236. name: "Front",
  15237. image: {
  15238. source: "./media/characters/purna/front.svg",
  15239. extra: 239 / 229,
  15240. bottom: 0.01
  15241. }
  15242. },
  15243. },
  15244. [
  15245. {
  15246. name: "Normal",
  15247. height: math.unit(5 + 9 / 12, "feet"),
  15248. default: true
  15249. },
  15250. ]
  15251. ))
  15252. characterMakers.push(() => makeCharacter(
  15253. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15254. {
  15255. front: {
  15256. height: math.unit(5 + 9 / 12, "feet"),
  15257. weight: math.unit(142, "lb"),
  15258. name: "Front",
  15259. image: {
  15260. source: "./media/characters/kuva/front.svg",
  15261. extra: 281 / 271,
  15262. bottom: 0.006
  15263. }
  15264. },
  15265. },
  15266. [
  15267. {
  15268. name: "Normal",
  15269. height: math.unit(5 + 9 / 12, "feet"),
  15270. default: true
  15271. },
  15272. ]
  15273. ))
  15274. characterMakers.push(() => makeCharacter(
  15275. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15276. {
  15277. anthro: {
  15278. height: math.unit(9 + 2 / 12, "feet"),
  15279. weight: math.unit(270, "lb"),
  15280. name: "Anthro",
  15281. image: {
  15282. source: "./media/characters/embra/anthro.svg",
  15283. extra: 200 / 187,
  15284. bottom: 0.02
  15285. }
  15286. },
  15287. feral: {
  15288. height: math.unit(18 + 8 / 12, "feet"),
  15289. weight: math.unit(576, "lb"),
  15290. name: "Feral",
  15291. image: {
  15292. source: "./media/characters/embra/feral.svg",
  15293. extra: 152 / 137,
  15294. bottom: 0.037
  15295. }
  15296. },
  15297. },
  15298. [
  15299. {
  15300. name: "Normal",
  15301. height: math.unit(9 + 2 / 12, "feet"),
  15302. default: true
  15303. },
  15304. ]
  15305. ))
  15306. characterMakers.push(() => makeCharacter(
  15307. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15308. {
  15309. anthro: {
  15310. height: math.unit(10 + 9 / 12, "feet"),
  15311. weight: math.unit(224, "lb"),
  15312. name: "Anthro",
  15313. image: {
  15314. source: "./media/characters/grottos/anthro.svg",
  15315. extra: 350 / 332,
  15316. bottom: 0.045
  15317. }
  15318. },
  15319. feral: {
  15320. height: math.unit(20 + 7 / 12, "feet"),
  15321. weight: math.unit(629, "lb"),
  15322. name: "Feral",
  15323. image: {
  15324. source: "./media/characters/grottos/feral.svg",
  15325. extra: 207 / 190,
  15326. bottom: 0.05
  15327. }
  15328. },
  15329. },
  15330. [
  15331. {
  15332. name: "Normal",
  15333. height: math.unit(10 + 9 / 12, "feet"),
  15334. default: true
  15335. },
  15336. ]
  15337. ))
  15338. characterMakers.push(() => makeCharacter(
  15339. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15340. {
  15341. anthro: {
  15342. height: math.unit(9 + 6 / 12, "feet"),
  15343. weight: math.unit(298, "lb"),
  15344. name: "Anthro",
  15345. image: {
  15346. source: "./media/characters/frifna/anthro.svg",
  15347. extra: 282 / 269,
  15348. bottom: 0.015
  15349. }
  15350. },
  15351. feral: {
  15352. height: math.unit(16 + 2 / 12, "feet"),
  15353. weight: math.unit(624, "lb"),
  15354. name: "Feral",
  15355. image: {
  15356. source: "./media/characters/frifna/feral.svg"
  15357. }
  15358. },
  15359. },
  15360. [
  15361. {
  15362. name: "Normal",
  15363. height: math.unit(9 + 6 / 12, "feet"),
  15364. default: true
  15365. },
  15366. ]
  15367. ))
  15368. characterMakers.push(() => makeCharacter(
  15369. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15370. {
  15371. front: {
  15372. height: math.unit(6 + 2 / 12, "feet"),
  15373. weight: math.unit(168, "lb"),
  15374. name: "Front",
  15375. image: {
  15376. source: "./media/characters/elise/front.svg",
  15377. extra: 276 / 271
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Normal",
  15384. height: math.unit(6 + 2 / 12, "feet"),
  15385. default: true
  15386. },
  15387. ]
  15388. ))
  15389. characterMakers.push(() => makeCharacter(
  15390. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15391. {
  15392. front: {
  15393. height: math.unit(5 + 10 / 12, "feet"),
  15394. weight: math.unit(210, "lb"),
  15395. name: "Front",
  15396. image: {
  15397. source: "./media/characters/glade/front.svg",
  15398. extra: 258 / 247,
  15399. bottom: 0.008
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Normal",
  15406. height: math.unit(5 + 10 / 12, "feet"),
  15407. default: true
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(5 + 10 / 12, "feet"),
  15416. weight: math.unit(129, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/rina/front.svg",
  15420. extra: 266 / 255,
  15421. bottom: 0.005
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(5 + 10 / 12, "feet"),
  15429. default: true
  15430. },
  15431. ]
  15432. ))
  15433. characterMakers.push(() => makeCharacter(
  15434. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15435. {
  15436. front: {
  15437. height: math.unit(6 + 1 / 12, "feet"),
  15438. weight: math.unit(192, "lb"),
  15439. name: "Front",
  15440. image: {
  15441. source: "./media/characters/veronica/front.svg",
  15442. extra: 319 / 309,
  15443. bottom: 0.005
  15444. }
  15445. },
  15446. },
  15447. [
  15448. {
  15449. name: "Normal",
  15450. height: math.unit(6 + 1 / 12, "feet"),
  15451. default: true
  15452. },
  15453. ]
  15454. ))
  15455. characterMakers.push(() => makeCharacter(
  15456. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15457. {
  15458. front: {
  15459. height: math.unit(9 + 3 / 12, "feet"),
  15460. weight: math.unit(1100, "lb"),
  15461. name: "Front",
  15462. image: {
  15463. source: "./media/characters/braxton/front.svg",
  15464. extra: 1057 / 984,
  15465. bottom: 0.05
  15466. }
  15467. },
  15468. },
  15469. [
  15470. {
  15471. name: "Normal",
  15472. height: math.unit(9 + 3 / 12, "feet")
  15473. },
  15474. {
  15475. name: "Giant",
  15476. height: math.unit(300, "feet"),
  15477. default: true
  15478. },
  15479. {
  15480. name: "Macro",
  15481. height: math.unit(700, "feet")
  15482. },
  15483. {
  15484. name: "Megamacro",
  15485. height: math.unit(6000, "feet")
  15486. },
  15487. ]
  15488. ))
  15489. characterMakers.push(() => makeCharacter(
  15490. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15491. {
  15492. front: {
  15493. height: math.unit(6 + 7 / 12, "feet"),
  15494. weight: math.unit(150, "lb"),
  15495. name: "Front",
  15496. image: {
  15497. source: "./media/characters/blue-feyonics/front.svg",
  15498. extra: 1403 / 1306,
  15499. bottom: 0.047
  15500. }
  15501. },
  15502. },
  15503. [
  15504. {
  15505. name: "Normal",
  15506. height: math.unit(6 + 7 / 12, "feet"),
  15507. default: true
  15508. },
  15509. ]
  15510. ))
  15511. characterMakers.push(() => makeCharacter(
  15512. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15513. {
  15514. front: {
  15515. height: math.unit(1.8, "meters"),
  15516. weight: math.unit(60, "kg"),
  15517. name: "Front",
  15518. image: {
  15519. source: "./media/characters/maxwell/front.svg",
  15520. extra: 2060 / 1873
  15521. }
  15522. },
  15523. },
  15524. [
  15525. {
  15526. name: "Micro",
  15527. height: math.unit(1, "mm")
  15528. },
  15529. {
  15530. name: "Normal",
  15531. height: math.unit(1.8, "meter"),
  15532. default: true
  15533. },
  15534. {
  15535. name: "Macro",
  15536. height: math.unit(30, "meters")
  15537. },
  15538. {
  15539. name: "Megamacro",
  15540. height: math.unit(10, "km")
  15541. },
  15542. ]
  15543. ))
  15544. characterMakers.push(() => makeCharacter(
  15545. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15546. {
  15547. front: {
  15548. height: math.unit(6, "feet"),
  15549. weight: math.unit(150, "lb"),
  15550. name: "Front",
  15551. image: {
  15552. source: "./media/characters/jack/front.svg",
  15553. extra: 1754 / 1640,
  15554. bottom: 0.01
  15555. }
  15556. },
  15557. },
  15558. [
  15559. {
  15560. name: "Normal",
  15561. height: math.unit(80000, "feet"),
  15562. default: true
  15563. },
  15564. {
  15565. name: "Max size",
  15566. height: math.unit(10, "lightyears")
  15567. },
  15568. ]
  15569. ))
  15570. characterMakers.push(() => makeCharacter(
  15571. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15572. {
  15573. upright: {
  15574. height: math.unit(7, "feet"),
  15575. weight: math.unit(170, "lb"),
  15576. name: "Upright",
  15577. image: {
  15578. source: "./media/characters/cafat/upright.svg",
  15579. bottom: 0.01
  15580. }
  15581. },
  15582. uprightFull: {
  15583. height: math.unit(7, "feet"),
  15584. weight: math.unit(170, "lb"),
  15585. name: "Upright (Full)",
  15586. image: {
  15587. source: "./media/characters/cafat/upright-full.svg",
  15588. bottom: 0.01
  15589. }
  15590. },
  15591. side: {
  15592. height: math.unit(5, "feet"),
  15593. weight: math.unit(150, "lb"),
  15594. name: "Side",
  15595. image: {
  15596. source: "./media/characters/cafat/side.svg"
  15597. }
  15598. },
  15599. },
  15600. [
  15601. {
  15602. name: "Small",
  15603. height: math.unit(7, "feet"),
  15604. default: true
  15605. },
  15606. {
  15607. name: "Large",
  15608. height: math.unit(15.5, "feet")
  15609. },
  15610. ]
  15611. ))
  15612. characterMakers.push(() => makeCharacter(
  15613. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15614. {
  15615. front: {
  15616. height: math.unit(6, "feet"),
  15617. weight: math.unit(150, "lb"),
  15618. name: "Front",
  15619. image: {
  15620. source: "./media/characters/verin-raharra/front.svg",
  15621. extra: 5019 / 4835,
  15622. bottom: 0.023
  15623. }
  15624. },
  15625. },
  15626. [
  15627. {
  15628. name: "Normal",
  15629. height: math.unit(7 + 5 / 12, "feet"),
  15630. default: true
  15631. },
  15632. {
  15633. name: "Upsized",
  15634. height: math.unit(20, "feet")
  15635. },
  15636. ]
  15637. ))
  15638. characterMakers.push(() => makeCharacter(
  15639. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15640. {
  15641. front: {
  15642. height: math.unit(7, "feet"),
  15643. weight: math.unit(230, "lb"),
  15644. name: "Front",
  15645. image: {
  15646. source: "./media/characters/nakata/front.svg",
  15647. extra: 1.005,
  15648. bottom: 0.01
  15649. }
  15650. },
  15651. },
  15652. [
  15653. {
  15654. name: "Normal",
  15655. height: math.unit(7, "feet"),
  15656. default: true
  15657. },
  15658. {
  15659. name: "Big",
  15660. height: math.unit(14, "feet")
  15661. },
  15662. {
  15663. name: "Macro",
  15664. height: math.unit(400, "feet")
  15665. },
  15666. ]
  15667. ))
  15668. characterMakers.push(() => makeCharacter(
  15669. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15670. {
  15671. front: {
  15672. height: math.unit(4.91, "feet"),
  15673. weight: math.unit(100, "lb"),
  15674. name: "Front",
  15675. image: {
  15676. source: "./media/characters/lily/front.svg",
  15677. extra: 1585 / 1415,
  15678. bottom: 0.02
  15679. }
  15680. },
  15681. },
  15682. [
  15683. {
  15684. name: "Normal",
  15685. height: math.unit(4.91, "feet"),
  15686. default: true
  15687. },
  15688. ]
  15689. ))
  15690. characterMakers.push(() => makeCharacter(
  15691. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15692. {
  15693. laying: {
  15694. height: math.unit(4 + 4 / 12, "feet"),
  15695. weight: math.unit(600, "lb"),
  15696. name: "Laying",
  15697. image: {
  15698. source: "./media/characters/sheila/laying.svg",
  15699. extra: 1333 / 1265,
  15700. bottom: 0.16
  15701. }
  15702. },
  15703. },
  15704. [
  15705. {
  15706. name: "Normal",
  15707. height: math.unit(4 + 4 / 12, "feet"),
  15708. default: true
  15709. },
  15710. ]
  15711. ))
  15712. characterMakers.push(() => makeCharacter(
  15713. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15714. {
  15715. front: {
  15716. height: math.unit(6, "feet"),
  15717. weight: math.unit(190, "lb"),
  15718. name: "Front",
  15719. image: {
  15720. source: "./media/characters/sax/front.svg",
  15721. extra: 1187 / 973,
  15722. bottom: 0.042
  15723. }
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Micro",
  15729. height: math.unit(4, "inches"),
  15730. default: true
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15736. {
  15737. front: {
  15738. height: math.unit(6, "feet"),
  15739. weight: math.unit(150, "lb"),
  15740. name: "Front",
  15741. image: {
  15742. source: "./media/characters/pandora/front.svg",
  15743. extra: 2720 / 2556,
  15744. bottom: 0.015
  15745. }
  15746. },
  15747. back: {
  15748. height: math.unit(6, "feet"),
  15749. weight: math.unit(150, "lb"),
  15750. name: "Back",
  15751. image: {
  15752. source: "./media/characters/pandora/back.svg",
  15753. extra: 2720 / 2556,
  15754. bottom: 0.01
  15755. }
  15756. },
  15757. beans: {
  15758. height: math.unit(6 / 8, "feet"),
  15759. name: "Beans",
  15760. image: {
  15761. source: "./media/characters/pandora/beans.svg"
  15762. }
  15763. },
  15764. collar: {
  15765. height: math.unit(0.31, "feet"),
  15766. name: "Collar",
  15767. image: {
  15768. source: "./media/characters/pandora/collar.svg"
  15769. }
  15770. },
  15771. skirt: {
  15772. height: math.unit(6, "feet"),
  15773. weight: math.unit(150, "lb"),
  15774. name: "Skirt",
  15775. image: {
  15776. source: "./media/characters/pandora/skirt.svg",
  15777. extra: 1622 / 1525,
  15778. bottom: 0.015
  15779. }
  15780. },
  15781. hoodie: {
  15782. height: math.unit(6, "feet"),
  15783. weight: math.unit(150, "lb"),
  15784. name: "Hoodie",
  15785. image: {
  15786. source: "./media/characters/pandora/hoodie.svg",
  15787. extra: 1622 / 1525,
  15788. bottom: 0.015
  15789. }
  15790. },
  15791. casual: {
  15792. height: math.unit(6, "feet"),
  15793. weight: math.unit(150, "lb"),
  15794. name: "Casual",
  15795. image: {
  15796. source: "./media/characters/pandora/casual.svg",
  15797. extra: 1622 / 1525,
  15798. bottom: 0.015
  15799. }
  15800. },
  15801. },
  15802. [
  15803. {
  15804. name: "Normal",
  15805. height: math.unit(6, "feet")
  15806. },
  15807. {
  15808. name: "Big Steppy",
  15809. height: math.unit(1, "km"),
  15810. default: true
  15811. },
  15812. {
  15813. name: "Galactic Steppy",
  15814. height: math.unit(2, "gigameters")
  15815. },
  15816. ]
  15817. ))
  15818. characterMakers.push(() => makeCharacter(
  15819. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15820. {
  15821. side: {
  15822. height: math.unit(10, "feet"),
  15823. weight: math.unit(800, "kg"),
  15824. name: "Side",
  15825. image: {
  15826. source: "./media/characters/venio-darcony/side.svg",
  15827. extra: 1373 / 1003,
  15828. bottom: 0.037
  15829. }
  15830. },
  15831. front: {
  15832. height: math.unit(19, "feet"),
  15833. weight: math.unit(800, "kg"),
  15834. name: "Front",
  15835. image: {
  15836. source: "./media/characters/venio-darcony/front.svg"
  15837. }
  15838. },
  15839. back: {
  15840. height: math.unit(19, "feet"),
  15841. weight: math.unit(800, "kg"),
  15842. name: "Back",
  15843. image: {
  15844. source: "./media/characters/venio-darcony/back.svg"
  15845. }
  15846. },
  15847. sideNsfw: {
  15848. height: math.unit(10, "feet"),
  15849. weight: math.unit(800, "kg"),
  15850. name: "Side (NSFW)",
  15851. image: {
  15852. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15853. extra: 1373 / 1003,
  15854. bottom: 0.037
  15855. }
  15856. },
  15857. frontNsfw: {
  15858. height: math.unit(19, "feet"),
  15859. weight: math.unit(800, "kg"),
  15860. name: "Front (NSFW)",
  15861. image: {
  15862. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15863. }
  15864. },
  15865. backNsfw: {
  15866. height: math.unit(19, "feet"),
  15867. weight: math.unit(800, "kg"),
  15868. name: "Back (NSFW)",
  15869. image: {
  15870. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15871. }
  15872. },
  15873. sideArmored: {
  15874. height: math.unit(10, "feet"),
  15875. weight: math.unit(800, "kg"),
  15876. name: "Side (Armored)",
  15877. image: {
  15878. source: "./media/characters/venio-darcony/side-armored.svg",
  15879. extra: 1373 / 1003,
  15880. bottom: 0.037
  15881. }
  15882. },
  15883. frontArmored: {
  15884. height: math.unit(19, "feet"),
  15885. weight: math.unit(900, "kg"),
  15886. name: "Front (Armored)",
  15887. image: {
  15888. source: "./media/characters/venio-darcony/front-armored.svg"
  15889. }
  15890. },
  15891. backArmored: {
  15892. height: math.unit(19, "feet"),
  15893. weight: math.unit(900, "kg"),
  15894. name: "Back (Armored)",
  15895. image: {
  15896. source: "./media/characters/venio-darcony/back-armored.svg"
  15897. }
  15898. },
  15899. sword: {
  15900. height: math.unit(10, "feet"),
  15901. weight: math.unit(50, "lb"),
  15902. name: "Sword",
  15903. image: {
  15904. source: "./media/characters/venio-darcony/sword.svg"
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Normal",
  15911. height: math.unit(10, "feet")
  15912. },
  15913. {
  15914. name: "Macro",
  15915. height: math.unit(130, "feet"),
  15916. default: true
  15917. },
  15918. {
  15919. name: "Macro+",
  15920. height: math.unit(240, "feet")
  15921. },
  15922. ]
  15923. ))
  15924. characterMakers.push(() => makeCharacter(
  15925. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15926. {
  15927. front: {
  15928. height: math.unit(6, "feet"),
  15929. weight: math.unit(150, "lb"),
  15930. name: "Front",
  15931. image: {
  15932. source: "./media/characters/veski/front.svg",
  15933. extra: 1299 / 1225,
  15934. bottom: 0.04
  15935. }
  15936. },
  15937. back: {
  15938. height: math.unit(6, "feet"),
  15939. weight: math.unit(150, "lb"),
  15940. name: "Back",
  15941. image: {
  15942. source: "./media/characters/veski/back.svg",
  15943. extra: 1299 / 1225,
  15944. bottom: 0.008
  15945. }
  15946. },
  15947. maw: {
  15948. height: math.unit(1.5 * 1.21, "feet"),
  15949. name: "Maw",
  15950. image: {
  15951. source: "./media/characters/veski/maw.svg"
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "Macro",
  15958. height: math.unit(2, "km"),
  15959. default: true
  15960. },
  15961. ]
  15962. ))
  15963. characterMakers.push(() => makeCharacter(
  15964. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15965. {
  15966. front: {
  15967. height: math.unit(5 + 7 / 12, "feet"),
  15968. name: "Front",
  15969. image: {
  15970. source: "./media/characters/isabelle/front.svg",
  15971. extra: 2130 / 1976,
  15972. bottom: 0.05
  15973. }
  15974. },
  15975. },
  15976. [
  15977. {
  15978. name: "Supermicro",
  15979. height: math.unit(10, "micrometers")
  15980. },
  15981. {
  15982. name: "Micro",
  15983. height: math.unit(1, "inch")
  15984. },
  15985. {
  15986. name: "Tiny",
  15987. height: math.unit(5, "inches")
  15988. },
  15989. {
  15990. name: "Standard",
  15991. height: math.unit(5 + 7 / 12, "inches")
  15992. },
  15993. {
  15994. name: "Macro",
  15995. height: math.unit(80, "meters"),
  15996. default: true
  15997. },
  15998. {
  15999. name: "Megamacro",
  16000. height: math.unit(250, "meters")
  16001. },
  16002. {
  16003. name: "Gigamacro",
  16004. height: math.unit(5, "km")
  16005. },
  16006. {
  16007. name: "Cosmic",
  16008. height: math.unit(2.5e6, "miles")
  16009. },
  16010. ]
  16011. ))
  16012. characterMakers.push(() => makeCharacter(
  16013. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16014. {
  16015. front: {
  16016. height: math.unit(6, "feet"),
  16017. weight: math.unit(150, "lb"),
  16018. name: "Front",
  16019. image: {
  16020. source: "./media/characters/hanzo/front.svg",
  16021. extra: 374 / 344,
  16022. bottom: 0.02
  16023. }
  16024. },
  16025. },
  16026. [
  16027. {
  16028. name: "Normal",
  16029. height: math.unit(8, "feet"),
  16030. default: true
  16031. },
  16032. ]
  16033. ))
  16034. characterMakers.push(() => makeCharacter(
  16035. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16036. {
  16037. front: {
  16038. height: math.unit(7, "feet"),
  16039. weight: math.unit(130, "lb"),
  16040. name: "Front",
  16041. image: {
  16042. source: "./media/characters/anna/front.svg",
  16043. extra: 169 / 145,
  16044. bottom: 0.06
  16045. }
  16046. },
  16047. full: {
  16048. height: math.unit(4.96, "feet"),
  16049. weight: math.unit(220, "lb"),
  16050. name: "Full",
  16051. image: {
  16052. source: "./media/characters/anna/full.svg",
  16053. extra: 138 / 114,
  16054. bottom: 0.15
  16055. }
  16056. },
  16057. tongue: {
  16058. height: math.unit(2.53, "feet"),
  16059. name: "Tongue",
  16060. image: {
  16061. source: "./media/characters/anna/tongue.svg"
  16062. }
  16063. },
  16064. },
  16065. [
  16066. {
  16067. name: "Normal",
  16068. height: math.unit(7, "feet"),
  16069. default: true
  16070. },
  16071. ]
  16072. ))
  16073. characterMakers.push(() => makeCharacter(
  16074. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16075. {
  16076. front: {
  16077. height: math.unit(7, "feet"),
  16078. weight: math.unit(150, "lb"),
  16079. name: "Front",
  16080. image: {
  16081. source: "./media/characters/ian-corvid/front.svg",
  16082. extra: 150 / 142,
  16083. bottom: 0.02
  16084. }
  16085. },
  16086. back: {
  16087. height: math.unit(7, "feet"),
  16088. weight: math.unit(150, "lb"),
  16089. name: "Back",
  16090. image: {
  16091. source: "./media/characters/ian-corvid/back.svg",
  16092. extra: 150 / 143,
  16093. bottom: 0.01
  16094. }
  16095. },
  16096. stomping: {
  16097. height: math.unit(7, "feet"),
  16098. weight: math.unit(150, "lb"),
  16099. name: "Stomping",
  16100. image: {
  16101. source: "./media/characters/ian-corvid/stomping.svg",
  16102. extra: 76 / 72
  16103. }
  16104. },
  16105. sitting: {
  16106. height: math.unit(7 / 1.8, "feet"),
  16107. weight: math.unit(150, "lb"),
  16108. name: "Sitting",
  16109. image: {
  16110. source: "./media/characters/ian-corvid/sitting.svg",
  16111. extra: 1400 / 1269,
  16112. bottom: 0.15
  16113. }
  16114. },
  16115. },
  16116. [
  16117. {
  16118. name: "Tiny Microw",
  16119. height: math.unit(1, "inch")
  16120. },
  16121. {
  16122. name: "Microw",
  16123. height: math.unit(6, "inches")
  16124. },
  16125. {
  16126. name: "Crow",
  16127. height: math.unit(7 + 1 / 12, "feet"),
  16128. default: true
  16129. },
  16130. {
  16131. name: "Macrow",
  16132. height: math.unit(176, "feet")
  16133. },
  16134. ]
  16135. ))
  16136. characterMakers.push(() => makeCharacter(
  16137. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16138. {
  16139. front: {
  16140. height: math.unit(5 + 7 / 12, "feet"),
  16141. weight: math.unit(147, "lb"),
  16142. name: "Front",
  16143. image: {
  16144. source: "./media/characters/natalie-kellon/front.svg",
  16145. extra: 1214 / 1141,
  16146. bottom: 0.02
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Micro",
  16153. height: math.unit(1 / 16, "inch")
  16154. },
  16155. {
  16156. name: "Tiny",
  16157. height: math.unit(4, "inches")
  16158. },
  16159. {
  16160. name: "Normal",
  16161. height: math.unit(5 + 7 / 12, "feet"),
  16162. default: true
  16163. },
  16164. {
  16165. name: "Amazon",
  16166. height: math.unit(12, "feet")
  16167. },
  16168. {
  16169. name: "Giantess",
  16170. height: math.unit(160, "meters")
  16171. },
  16172. {
  16173. name: "Titaness",
  16174. height: math.unit(800, "meters")
  16175. },
  16176. ]
  16177. ))
  16178. characterMakers.push(() => makeCharacter(
  16179. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16180. {
  16181. front: {
  16182. height: math.unit(6, "feet"),
  16183. weight: math.unit(150, "lb"),
  16184. name: "Front",
  16185. image: {
  16186. source: "./media/characters/alluria/front.svg",
  16187. extra: 806 / 738,
  16188. bottom: 0.01
  16189. }
  16190. },
  16191. side: {
  16192. height: math.unit(6, "feet"),
  16193. weight: math.unit(150, "lb"),
  16194. name: "Side",
  16195. image: {
  16196. source: "./media/characters/alluria/side.svg",
  16197. extra: 800 / 750,
  16198. }
  16199. },
  16200. back: {
  16201. height: math.unit(6, "feet"),
  16202. weight: math.unit(150, "lb"),
  16203. name: "Back",
  16204. image: {
  16205. source: "./media/characters/alluria/back.svg",
  16206. extra: 806 / 738,
  16207. }
  16208. },
  16209. frontMaid: {
  16210. height: math.unit(6, "feet"),
  16211. weight: math.unit(150, "lb"),
  16212. name: "Front (Maid)",
  16213. image: {
  16214. source: "./media/characters/alluria/front-maid.svg",
  16215. extra: 806 / 738,
  16216. bottom: 0.01
  16217. }
  16218. },
  16219. sideMaid: {
  16220. height: math.unit(6, "feet"),
  16221. weight: math.unit(150, "lb"),
  16222. name: "Side (Maid)",
  16223. image: {
  16224. source: "./media/characters/alluria/side-maid.svg",
  16225. extra: 800 / 750,
  16226. bottom: 0.005
  16227. }
  16228. },
  16229. backMaid: {
  16230. height: math.unit(6, "feet"),
  16231. weight: math.unit(150, "lb"),
  16232. name: "Back (Maid)",
  16233. image: {
  16234. source: "./media/characters/alluria/back-maid.svg",
  16235. extra: 806 / 738,
  16236. }
  16237. },
  16238. },
  16239. [
  16240. {
  16241. name: "Micro",
  16242. height: math.unit(6, "inches"),
  16243. default: true
  16244. },
  16245. ]
  16246. ))
  16247. characterMakers.push(() => makeCharacter(
  16248. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16249. {
  16250. front: {
  16251. height: math.unit(6, "feet"),
  16252. weight: math.unit(150, "lb"),
  16253. name: "Front",
  16254. image: {
  16255. source: "./media/characters/kyle/front.svg",
  16256. extra: 1069 / 962,
  16257. bottom: 77.228 / 1727.45
  16258. }
  16259. },
  16260. },
  16261. [
  16262. {
  16263. name: "Macro",
  16264. height: math.unit(150, "feet"),
  16265. default: true
  16266. },
  16267. ]
  16268. ))
  16269. characterMakers.push(() => makeCharacter(
  16270. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16271. {
  16272. front: {
  16273. height: math.unit(6, "feet"),
  16274. weight: math.unit(300, "lb"),
  16275. name: "Front",
  16276. image: {
  16277. source: "./media/characters/duncan/front.svg",
  16278. extra: 1650 / 1482,
  16279. bottom: 0.05
  16280. }
  16281. },
  16282. },
  16283. [
  16284. {
  16285. name: "Macro",
  16286. height: math.unit(100, "feet"),
  16287. default: true
  16288. },
  16289. ]
  16290. ))
  16291. characterMakers.push(() => makeCharacter(
  16292. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16293. {
  16294. front: {
  16295. height: math.unit(5 + 4 / 12, "feet"),
  16296. weight: math.unit(220, "lb"),
  16297. name: "Front",
  16298. image: {
  16299. source: "./media/characters/memory/front.svg",
  16300. extra: 3641 / 3545,
  16301. bottom: 0.03
  16302. }
  16303. },
  16304. back: {
  16305. height: math.unit(5 + 4 / 12, "feet"),
  16306. weight: math.unit(220, "lb"),
  16307. name: "Back",
  16308. image: {
  16309. source: "./media/characters/memory/back.svg",
  16310. extra: 3641 / 3545,
  16311. bottom: 0.025
  16312. }
  16313. },
  16314. frontSkirt: {
  16315. height: math.unit(5 + 4 / 12, "feet"),
  16316. weight: math.unit(220, "lb"),
  16317. name: "Front (Skirt)",
  16318. image: {
  16319. source: "./media/characters/memory/front-skirt.svg",
  16320. extra: 3641 / 3545,
  16321. bottom: 0.03
  16322. }
  16323. },
  16324. frontDress: {
  16325. height: math.unit(5 + 4 / 12, "feet"),
  16326. weight: math.unit(220, "lb"),
  16327. name: "Front (Dress)",
  16328. image: {
  16329. source: "./media/characters/memory/front-dress.svg",
  16330. extra: 3641 / 3545,
  16331. bottom: 0.03
  16332. }
  16333. },
  16334. },
  16335. [
  16336. {
  16337. name: "Micro",
  16338. height: math.unit(6, "inches"),
  16339. default: true
  16340. },
  16341. {
  16342. name: "Normal",
  16343. height: math.unit(5 + 4 / 12, "feet")
  16344. },
  16345. ]
  16346. ))
  16347. characterMakers.push(() => makeCharacter(
  16348. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16349. {
  16350. front: {
  16351. height: math.unit(4 + 11 / 12, "feet"),
  16352. weight: math.unit(100, "lb"),
  16353. name: "Front",
  16354. image: {
  16355. source: "./media/characters/luno/front.svg",
  16356. extra: 1535 / 1487,
  16357. bottom: 0.03
  16358. }
  16359. },
  16360. },
  16361. [
  16362. {
  16363. name: "Micro",
  16364. height: math.unit(3, "inches")
  16365. },
  16366. {
  16367. name: "Normal",
  16368. height: math.unit(4 + 11 / 12, "feet"),
  16369. default: true
  16370. },
  16371. {
  16372. name: "Macro",
  16373. height: math.unit(300, "feet")
  16374. },
  16375. {
  16376. name: "Megamacro",
  16377. height: math.unit(700, "miles")
  16378. },
  16379. ]
  16380. ))
  16381. characterMakers.push(() => makeCharacter(
  16382. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16383. {
  16384. front: {
  16385. height: math.unit(6 + 2 / 12, "feet"),
  16386. weight: math.unit(170, "lb"),
  16387. name: "Front",
  16388. image: {
  16389. source: "./media/characters/jamesy/front.svg",
  16390. extra: 440 / 382,
  16391. bottom: 0.005
  16392. }
  16393. },
  16394. },
  16395. [
  16396. {
  16397. name: "Micro",
  16398. height: math.unit(3, "inches")
  16399. },
  16400. {
  16401. name: "Normal",
  16402. height: math.unit(6 + 2 / 12, "feet"),
  16403. default: true
  16404. },
  16405. {
  16406. name: "Macro",
  16407. height: math.unit(300, "feet")
  16408. },
  16409. {
  16410. name: "Megamacro",
  16411. height: math.unit(700, "miles")
  16412. },
  16413. ]
  16414. ))
  16415. characterMakers.push(() => makeCharacter(
  16416. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16417. {
  16418. front: {
  16419. height: math.unit(6, "feet"),
  16420. weight: math.unit(160, "lb"),
  16421. name: "Front",
  16422. image: {
  16423. source: "./media/characters/mark/front.svg",
  16424. extra: 3300 / 3100,
  16425. bottom: 136.42 / 3440.47
  16426. }
  16427. },
  16428. },
  16429. [
  16430. {
  16431. name: "Macro",
  16432. height: math.unit(120, "meters")
  16433. },
  16434. {
  16435. name: "Bigger Macro",
  16436. height: math.unit(350, "meters")
  16437. },
  16438. {
  16439. name: "Megamacro",
  16440. height: math.unit(8, "km"),
  16441. default: true
  16442. },
  16443. {
  16444. name: "Continental",
  16445. height: math.unit(4550, "km")
  16446. },
  16447. {
  16448. name: "Planetary",
  16449. height: math.unit(65000, "km")
  16450. },
  16451. ]
  16452. ))
  16453. characterMakers.push(() => makeCharacter(
  16454. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16455. {
  16456. front: {
  16457. height: math.unit(6, "feet"),
  16458. weight: math.unit(400, "lb"),
  16459. name: "Front",
  16460. image: {
  16461. source: "./media/characters/mac/front.svg",
  16462. extra: 1048 / 987.7,
  16463. bottom: 60 / 1107.6,
  16464. }
  16465. },
  16466. },
  16467. [
  16468. {
  16469. name: "Macro",
  16470. height: math.unit(500, "feet"),
  16471. default: true
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16477. {
  16478. front: {
  16479. height: math.unit(5 + 2 / 12, "feet"),
  16480. weight: math.unit(190, "lb"),
  16481. name: "Front",
  16482. image: {
  16483. source: "./media/characters/bari/front.svg",
  16484. extra: 3156 / 2880,
  16485. bottom: 0.03
  16486. }
  16487. },
  16488. back: {
  16489. height: math.unit(5 + 2 / 12, "feet"),
  16490. weight: math.unit(190, "lb"),
  16491. name: "Back",
  16492. image: {
  16493. source: "./media/characters/bari/back.svg",
  16494. extra: 3260 / 2834,
  16495. bottom: 0.025
  16496. }
  16497. },
  16498. frontPlush: {
  16499. height: math.unit(5 + 2 / 12, "feet"),
  16500. weight: math.unit(190, "lb"),
  16501. name: "Front (Plush)",
  16502. image: {
  16503. source: "./media/characters/bari/front-plush.svg",
  16504. extra: 1112 / 1061,
  16505. bottom: 0.002
  16506. }
  16507. },
  16508. },
  16509. [
  16510. {
  16511. name: "Micro",
  16512. height: math.unit(3, "inches")
  16513. },
  16514. {
  16515. name: "Normal",
  16516. height: math.unit(5 + 2 / 12, "feet"),
  16517. default: true
  16518. },
  16519. {
  16520. name: "Macro",
  16521. height: math.unit(20, "feet")
  16522. },
  16523. ]
  16524. ))
  16525. characterMakers.push(() => makeCharacter(
  16526. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16527. {
  16528. front: {
  16529. height: math.unit(6 + 1 / 12, "feet"),
  16530. weight: math.unit(275, "lb"),
  16531. name: "Front",
  16532. image: {
  16533. source: "./media/characters/hunter-misha-raven/front.svg"
  16534. }
  16535. },
  16536. },
  16537. [
  16538. {
  16539. name: "Mortal",
  16540. height: math.unit(6 + 1 / 12, "feet")
  16541. },
  16542. {
  16543. name: "Divine",
  16544. height: math.unit(1.12134e34, "parsecs"),
  16545. default: true
  16546. },
  16547. ]
  16548. ))
  16549. characterMakers.push(() => makeCharacter(
  16550. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16551. {
  16552. front: {
  16553. height: math.unit(6 + 3 / 12, "feet"),
  16554. weight: math.unit(220, "lb"),
  16555. name: "Front",
  16556. image: {
  16557. source: "./media/characters/max-calore/front.svg",
  16558. extra: 1700 / 1648,
  16559. bottom: 0.01
  16560. }
  16561. },
  16562. back: {
  16563. height: math.unit(6 + 3 / 12, "feet"),
  16564. weight: math.unit(220, "lb"),
  16565. name: "Back",
  16566. image: {
  16567. source: "./media/characters/max-calore/back.svg",
  16568. extra: 1700 / 1648,
  16569. bottom: 0.01
  16570. }
  16571. },
  16572. },
  16573. [
  16574. {
  16575. name: "Normal",
  16576. height: math.unit(6 + 3 / 12, "feet"),
  16577. default: true
  16578. },
  16579. ]
  16580. ))
  16581. characterMakers.push(() => makeCharacter(
  16582. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16583. {
  16584. side: {
  16585. height: math.unit(2 + 8 / 12, "feet"),
  16586. weight: math.unit(99, "lb"),
  16587. name: "Side",
  16588. image: {
  16589. source: "./media/characters/aspen/side.svg",
  16590. extra: 152 / 138,
  16591. bottom: 0.032
  16592. }
  16593. },
  16594. },
  16595. [
  16596. {
  16597. name: "Normal",
  16598. height: math.unit(2 + 8 / 12, "feet"),
  16599. default: true
  16600. },
  16601. ]
  16602. ))
  16603. characterMakers.push(() => makeCharacter(
  16604. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16605. {
  16606. side: {
  16607. height: math.unit(3 + 2 / 12, "feet"),
  16608. weight: math.unit(224, "lb"),
  16609. name: "Side",
  16610. image: {
  16611. source: "./media/characters/sheila-feral-wolf/side.svg",
  16612. extra: 179 / 166,
  16613. bottom: 0.03
  16614. }
  16615. },
  16616. },
  16617. [
  16618. {
  16619. name: "Normal",
  16620. height: math.unit(3 + 2 / 12, "feet"),
  16621. default: true
  16622. },
  16623. ]
  16624. ))
  16625. characterMakers.push(() => makeCharacter(
  16626. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16627. {
  16628. side: {
  16629. height: math.unit(1 + 9 / 12, "feet"),
  16630. weight: math.unit(38, "lb"),
  16631. name: "Side",
  16632. image: {
  16633. source: "./media/characters/michelle/side.svg",
  16634. extra: 147 / 136.7,
  16635. bottom: 0.03
  16636. }
  16637. },
  16638. },
  16639. [
  16640. {
  16641. name: "Normal",
  16642. height: math.unit(1 + 9 / 12, "feet"),
  16643. default: true
  16644. },
  16645. ]
  16646. ))
  16647. characterMakers.push(() => makeCharacter(
  16648. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16649. {
  16650. front: {
  16651. height: math.unit(1 + 1 / 12, "feet"),
  16652. weight: math.unit(18, "lb"),
  16653. name: "Front",
  16654. image: {
  16655. source: "./media/characters/nino/front.svg"
  16656. }
  16657. },
  16658. },
  16659. [
  16660. {
  16661. name: "Normal",
  16662. height: math.unit(1 + 1 / 12, "feet"),
  16663. default: true
  16664. },
  16665. ]
  16666. ))
  16667. characterMakers.push(() => makeCharacter(
  16668. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16669. {
  16670. front: {
  16671. height: math.unit(1, "feet"),
  16672. weight: math.unit(16, "lb"),
  16673. name: "Front",
  16674. image: {
  16675. source: "./media/characters/viola/front.svg"
  16676. }
  16677. },
  16678. },
  16679. [
  16680. {
  16681. name: "Normal",
  16682. height: math.unit(1, "feet"),
  16683. default: true
  16684. },
  16685. ]
  16686. ))
  16687. characterMakers.push(() => makeCharacter(
  16688. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16689. {
  16690. front: {
  16691. height: math.unit(6 + 5 / 12, "feet"),
  16692. weight: math.unit(580, "lb"),
  16693. name: "Front",
  16694. image: {
  16695. source: "./media/characters/atlas/front.svg",
  16696. extra: 298.5 / 290,
  16697. bottom: 0.015
  16698. }
  16699. },
  16700. },
  16701. [
  16702. {
  16703. name: "Normal",
  16704. height: math.unit(6 + 5 / 12, "feet"),
  16705. default: true
  16706. },
  16707. ]
  16708. ))
  16709. characterMakers.push(() => makeCharacter(
  16710. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16711. {
  16712. side: {
  16713. height: math.unit(1 + 10 / 12, "feet"),
  16714. weight: math.unit(25, "lb"),
  16715. name: "Side",
  16716. image: {
  16717. source: "./media/characters/davy/side.svg",
  16718. extra: 200 / 170,
  16719. bottom: 0.01
  16720. }
  16721. },
  16722. },
  16723. [
  16724. {
  16725. name: "Normal",
  16726. height: math.unit(1 + 10 / 12, "feet"),
  16727. default: true
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16733. {
  16734. side: {
  16735. height: math.unit(4 + 8 / 12, "feet"),
  16736. weight: math.unit(166, "lb"),
  16737. name: "Side",
  16738. image: {
  16739. source: "./media/characters/fiona/side.svg",
  16740. extra: 232 / 220,
  16741. bottom: 0.03
  16742. }
  16743. },
  16744. },
  16745. [
  16746. {
  16747. name: "Normal",
  16748. height: math.unit(4 + 8 / 12, "feet"),
  16749. default: true
  16750. },
  16751. ]
  16752. ))
  16753. characterMakers.push(() => makeCharacter(
  16754. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16755. {
  16756. front: {
  16757. height: math.unit(2, "feet"),
  16758. weight: math.unit(62, "lb"),
  16759. name: "Front",
  16760. image: {
  16761. source: "./media/characters/lyla/front.svg",
  16762. bottom: 0.1
  16763. }
  16764. },
  16765. },
  16766. [
  16767. {
  16768. name: "Normal",
  16769. height: math.unit(2, "feet"),
  16770. default: true
  16771. },
  16772. ]
  16773. ))
  16774. characterMakers.push(() => makeCharacter(
  16775. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16776. {
  16777. side: {
  16778. height: math.unit(1.8, "feet"),
  16779. weight: math.unit(44, "lb"),
  16780. name: "Side",
  16781. image: {
  16782. source: "./media/characters/perseus/side.svg",
  16783. bottom: 0.21
  16784. }
  16785. },
  16786. },
  16787. [
  16788. {
  16789. name: "Normal",
  16790. height: math.unit(1.8, "feet"),
  16791. default: true
  16792. },
  16793. ]
  16794. ))
  16795. characterMakers.push(() => makeCharacter(
  16796. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16797. {
  16798. side: {
  16799. height: math.unit(4 + 2 / 12, "feet"),
  16800. weight: math.unit(20, "lb"),
  16801. name: "Side",
  16802. image: {
  16803. source: "./media/characters/remus/side.svg"
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Normal",
  16810. height: math.unit(4 + 2 / 12, "feet"),
  16811. default: true
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16817. {
  16818. front: {
  16819. height: math.unit(4 + 11 / 12, "feet"),
  16820. weight: math.unit(114, "lb"),
  16821. name: "Front",
  16822. image: {
  16823. source: "./media/characters/raf/front.svg",
  16824. bottom: 20.5 / 1863
  16825. }
  16826. },
  16827. side: {
  16828. height: math.unit(4 + 11 / 12, "feet"),
  16829. weight: math.unit(114, "lb"),
  16830. name: "Side",
  16831. image: {
  16832. source: "./media/characters/raf/side.svg",
  16833. bottom: 22 / 1822
  16834. }
  16835. },
  16836. },
  16837. [
  16838. {
  16839. name: "Micro",
  16840. height: math.unit(2, "inches")
  16841. },
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(4 + 11 / 12, "feet"),
  16845. default: true
  16846. },
  16847. {
  16848. name: "Macro",
  16849. height: math.unit(70, "feet")
  16850. },
  16851. ]
  16852. ))
  16853. characterMakers.push(() => makeCharacter(
  16854. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16855. {
  16856. front: {
  16857. height: math.unit(1.5, "meters"),
  16858. weight: math.unit(68, "kg"),
  16859. name: "Front",
  16860. image: {
  16861. source: "./media/characters/liam-einarr/front.svg",
  16862. extra: 2822 / 2666
  16863. }
  16864. },
  16865. back: {
  16866. height: math.unit(1.5, "meters"),
  16867. weight: math.unit(68, "kg"),
  16868. name: "Back",
  16869. image: {
  16870. source: "./media/characters/liam-einarr/back.svg",
  16871. extra: 2822 / 2666,
  16872. bottom: 0.015
  16873. }
  16874. },
  16875. },
  16876. [
  16877. {
  16878. name: "Normal",
  16879. height: math.unit(1.5, "meters"),
  16880. default: true
  16881. },
  16882. {
  16883. name: "Macro",
  16884. height: math.unit(150, "meters")
  16885. },
  16886. {
  16887. name: "Megamacro",
  16888. height: math.unit(35, "km")
  16889. },
  16890. ]
  16891. ))
  16892. characterMakers.push(() => makeCharacter(
  16893. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16894. {
  16895. front: {
  16896. height: math.unit(6, "feet"),
  16897. weight: math.unit(75, "kg"),
  16898. name: "Front",
  16899. image: {
  16900. source: "./media/characters/linda/front.svg",
  16901. extra: 930 / 874,
  16902. bottom: 0.004
  16903. }
  16904. },
  16905. },
  16906. [
  16907. {
  16908. name: "Normal",
  16909. height: math.unit(6, "feet"),
  16910. default: true
  16911. },
  16912. ]
  16913. ))
  16914. characterMakers.push(() => makeCharacter(
  16915. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16916. {
  16917. front: {
  16918. height: math.unit(6 + 8 / 12, "feet"),
  16919. weight: math.unit(220, "lb"),
  16920. name: "Front",
  16921. image: {
  16922. source: "./media/characters/caylex/front.svg",
  16923. extra: 821 / 772,
  16924. bottom: 0.07
  16925. }
  16926. },
  16927. back: {
  16928. height: math.unit(6 + 8 / 12, "feet"),
  16929. weight: math.unit(220, "lb"),
  16930. name: "Back",
  16931. image: {
  16932. source: "./media/characters/caylex/back.svg",
  16933. extra: 821 / 772,
  16934. bottom: 0.022
  16935. }
  16936. },
  16937. hand: {
  16938. height: math.unit(1.25, "feet"),
  16939. name: "Hand",
  16940. image: {
  16941. source: "./media/characters/caylex/hand.svg"
  16942. }
  16943. },
  16944. foot: {
  16945. height: math.unit(1.6, "feet"),
  16946. name: "Foot",
  16947. image: {
  16948. source: "./media/characters/caylex/foot.svg"
  16949. }
  16950. },
  16951. armored: {
  16952. height: math.unit(6 + 8 / 12, "feet"),
  16953. weight: math.unit(250, "lb"),
  16954. name: "Armored",
  16955. image: {
  16956. source: "./media/characters/caylex/armored.svg",
  16957. extra: 1420 / 1310,
  16958. bottom: 0.045
  16959. }
  16960. },
  16961. },
  16962. [
  16963. {
  16964. name: "Normal",
  16965. height: math.unit(6 + 8 / 12, "feet"),
  16966. default: true
  16967. },
  16968. {
  16969. name: "Normal+",
  16970. height: math.unit(12, "feet")
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16976. {
  16977. front: {
  16978. height: math.unit(7 + 6 / 12, "feet"),
  16979. weight: math.unit(288, "lb"),
  16980. name: "Front",
  16981. image: {
  16982. source: "./media/characters/alana/front.svg",
  16983. extra: 679 / 653,
  16984. bottom: 22.5 / 701
  16985. }
  16986. },
  16987. },
  16988. [
  16989. {
  16990. name: "Normal",
  16991. height: math.unit(7 + 6 / 12, "feet")
  16992. },
  16993. {
  16994. name: "Large",
  16995. height: math.unit(50, "feet")
  16996. },
  16997. {
  16998. name: "Macro",
  16999. height: math.unit(100, "feet"),
  17000. default: true
  17001. },
  17002. {
  17003. name: "Macro+",
  17004. height: math.unit(200, "feet")
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17010. {
  17011. front: {
  17012. height: math.unit(6 + 1 / 12, "feet"),
  17013. weight: math.unit(210, "lb"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/hasani/front.svg",
  17017. extra: 244 / 232,
  17018. bottom: 0.01
  17019. }
  17020. },
  17021. back: {
  17022. height: math.unit(6 + 1 / 12, "feet"),
  17023. weight: math.unit(210, "lb"),
  17024. name: "Back",
  17025. image: {
  17026. source: "./media/characters/hasani/back.svg",
  17027. extra: 244 / 232,
  17028. bottom: 0.01
  17029. }
  17030. },
  17031. },
  17032. [
  17033. {
  17034. name: "Normal",
  17035. height: math.unit(6 + 1 / 12, "feet")
  17036. },
  17037. {
  17038. name: "Macro",
  17039. height: math.unit(175, "feet"),
  17040. default: true
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17046. {
  17047. front: {
  17048. height: math.unit(1.82, "meters"),
  17049. weight: math.unit(140, "lb"),
  17050. name: "Front",
  17051. image: {
  17052. source: "./media/characters/nita/front.svg",
  17053. extra: 2473 / 2363,
  17054. bottom: 0.01
  17055. }
  17056. },
  17057. },
  17058. [
  17059. {
  17060. name: "Normal",
  17061. height: math.unit(1.82, "m")
  17062. },
  17063. {
  17064. name: "Macro",
  17065. height: math.unit(300, "m")
  17066. },
  17067. {
  17068. name: "Mistake Canon",
  17069. height: math.unit(0.5, "miles"),
  17070. default: true
  17071. },
  17072. {
  17073. name: "Big Mistake",
  17074. height: math.unit(13, "miles")
  17075. },
  17076. {
  17077. name: "Playing God",
  17078. height: math.unit(2450, "miles")
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17084. {
  17085. front: {
  17086. height: math.unit(4, "feet"),
  17087. weight: math.unit(120, "lb"),
  17088. name: "Front",
  17089. image: {
  17090. source: "./media/characters/shiriko/front.svg",
  17091. extra: 195 / 188
  17092. }
  17093. },
  17094. },
  17095. [
  17096. {
  17097. name: "Normal",
  17098. height: math.unit(4, "feet"),
  17099. default: true
  17100. },
  17101. ]
  17102. ))
  17103. characterMakers.push(() => makeCharacter(
  17104. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17105. {
  17106. front: {
  17107. height: math.unit(6, "feet"),
  17108. name: "front",
  17109. image: {
  17110. source: "./media/characters/deja/front.svg",
  17111. extra: 926 / 840,
  17112. bottom: 0.07
  17113. }
  17114. },
  17115. },
  17116. [
  17117. {
  17118. name: "Planck Length",
  17119. height: math.unit(1.6e-35, "meters")
  17120. },
  17121. {
  17122. name: "Normal",
  17123. height: math.unit(30.48, "meters"),
  17124. default: true
  17125. },
  17126. {
  17127. name: "Universal",
  17128. height: math.unit(8.8e26, "meters")
  17129. },
  17130. ]
  17131. ))
  17132. characterMakers.push(() => makeCharacter(
  17133. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17134. {
  17135. side: {
  17136. height: math.unit(8, "feet"),
  17137. weight: math.unit(6300, "lb"),
  17138. name: "Side",
  17139. image: {
  17140. source: "./media/characters/anima/side.svg",
  17141. bottom: 0.035
  17142. }
  17143. },
  17144. },
  17145. [
  17146. {
  17147. name: "Normal",
  17148. height: math.unit(8, "feet"),
  17149. default: true
  17150. },
  17151. ]
  17152. ))
  17153. characterMakers.push(() => makeCharacter(
  17154. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17155. {
  17156. front: {
  17157. height: math.unit(8, "feet"),
  17158. weight: math.unit(350, "lb"),
  17159. name: "Front",
  17160. image: {
  17161. source: "./media/characters/bianca/front.svg",
  17162. extra: 234 / 225,
  17163. bottom: 0.03
  17164. }
  17165. },
  17166. },
  17167. [
  17168. {
  17169. name: "Normal",
  17170. height: math.unit(8, "feet"),
  17171. default: true
  17172. },
  17173. ]
  17174. ))
  17175. characterMakers.push(() => makeCharacter(
  17176. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17177. {
  17178. front: {
  17179. height: math.unit(6, "feet"),
  17180. weight: math.unit(150, "lb"),
  17181. name: "Front",
  17182. image: {
  17183. source: "./media/characters/adinia/front.svg",
  17184. extra: 1845 / 1672,
  17185. bottom: 0.02
  17186. }
  17187. },
  17188. back: {
  17189. height: math.unit(6, "feet"),
  17190. weight: math.unit(150, "lb"),
  17191. name: "Back",
  17192. image: {
  17193. source: "./media/characters/adinia/back.svg",
  17194. extra: 1845 / 1672,
  17195. bottom: 0.002
  17196. }
  17197. },
  17198. },
  17199. [
  17200. {
  17201. name: "Normal",
  17202. height: math.unit(11 + 5 / 12, "feet"),
  17203. default: true
  17204. },
  17205. ]
  17206. ))
  17207. characterMakers.push(() => makeCharacter(
  17208. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17209. {
  17210. front: {
  17211. height: math.unit(3, "meters"),
  17212. weight: math.unit(200, "kg"),
  17213. name: "Front",
  17214. image: {
  17215. source: "./media/characters/lykasa/front.svg",
  17216. extra: 1076 / 976,
  17217. bottom: 0.06
  17218. }
  17219. },
  17220. },
  17221. [
  17222. {
  17223. name: "Normal",
  17224. height: math.unit(3, "meters")
  17225. },
  17226. {
  17227. name: "Kaiju",
  17228. height: math.unit(120, "meters"),
  17229. default: true
  17230. },
  17231. {
  17232. name: "Mega Kaiju",
  17233. height: math.unit(240, "km")
  17234. },
  17235. {
  17236. name: "Giga Kaiju",
  17237. height: math.unit(400, "megameters")
  17238. },
  17239. {
  17240. name: "Tera Kaiju",
  17241. height: math.unit(800, "gigameters")
  17242. },
  17243. {
  17244. name: "Kaiju Dragon Goddess",
  17245. height: math.unit(26, "zettaparsecs")
  17246. },
  17247. ]
  17248. ))
  17249. characterMakers.push(() => makeCharacter(
  17250. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17251. {
  17252. side: {
  17253. height: math.unit(283 / 124 * 6, "feet"),
  17254. weight: math.unit(35000, "lb"),
  17255. name: "Side",
  17256. image: {
  17257. source: "./media/characters/malfaren/side.svg",
  17258. extra: 2500 / 1010,
  17259. bottom: 0.01
  17260. }
  17261. },
  17262. front: {
  17263. height: math.unit(22.36, "feet"),
  17264. weight: math.unit(35000, "lb"),
  17265. name: "Front",
  17266. image: {
  17267. source: "./media/characters/malfaren/front.svg",
  17268. extra: 1631 / 1476,
  17269. bottom: 0.01
  17270. }
  17271. },
  17272. maw: {
  17273. height: math.unit(6.9, "feet"),
  17274. name: "Maw",
  17275. image: {
  17276. source: "./media/characters/malfaren/maw.svg"
  17277. }
  17278. },
  17279. },
  17280. [
  17281. {
  17282. name: "Big",
  17283. height: math.unit(283 / 162 * 6, "feet"),
  17284. },
  17285. {
  17286. name: "Bigger",
  17287. height: math.unit(283 / 124 * 6, "feet")
  17288. },
  17289. {
  17290. name: "Massive",
  17291. height: math.unit(283 / 92 * 6, "feet"),
  17292. default: true
  17293. },
  17294. {
  17295. name: "👀💦",
  17296. height: math.unit(283 / 73 * 6, "feet"),
  17297. },
  17298. ]
  17299. ))
  17300. characterMakers.push(() => makeCharacter(
  17301. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17302. {
  17303. front: {
  17304. height: math.unit(1.7, "m"),
  17305. weight: math.unit(70, "kg"),
  17306. name: "Front",
  17307. image: {
  17308. source: "./media/characters/kernel/front.svg",
  17309. extra: 222 / 210,
  17310. bottom: 0.007
  17311. }
  17312. },
  17313. },
  17314. [
  17315. {
  17316. name: "Nano",
  17317. height: math.unit(17, "micrometers")
  17318. },
  17319. {
  17320. name: "Micro",
  17321. height: math.unit(1.7, "mm")
  17322. },
  17323. {
  17324. name: "Small",
  17325. height: math.unit(1.7, "cm")
  17326. },
  17327. {
  17328. name: "Normal",
  17329. height: math.unit(1.7, "m"),
  17330. default: true
  17331. },
  17332. ]
  17333. ))
  17334. characterMakers.push(() => makeCharacter(
  17335. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17336. {
  17337. front: {
  17338. height: math.unit(1.75, "meters"),
  17339. weight: math.unit(65, "kg"),
  17340. name: "Front",
  17341. image: {
  17342. source: "./media/characters/jayne-folest/front.svg",
  17343. extra: 2115 / 2007,
  17344. bottom: 0.02
  17345. }
  17346. },
  17347. back: {
  17348. height: math.unit(1.75, "meters"),
  17349. weight: math.unit(65, "kg"),
  17350. name: "Back",
  17351. image: {
  17352. source: "./media/characters/jayne-folest/back.svg",
  17353. extra: 2115 / 2007,
  17354. bottom: 0.005
  17355. }
  17356. },
  17357. frontClothed: {
  17358. height: math.unit(1.75, "meters"),
  17359. weight: math.unit(65, "kg"),
  17360. name: "Front (Clothed)",
  17361. image: {
  17362. source: "./media/characters/jayne-folest/front-clothed.svg",
  17363. extra: 2115 / 2007,
  17364. bottom: 0.035
  17365. }
  17366. },
  17367. hand: {
  17368. height: math.unit(1 / 1.260, "feet"),
  17369. name: "Hand",
  17370. image: {
  17371. source: "./media/characters/jayne-folest/hand.svg"
  17372. }
  17373. },
  17374. foot: {
  17375. height: math.unit(1 / 0.918, "feet"),
  17376. name: "Foot",
  17377. image: {
  17378. source: "./media/characters/jayne-folest/foot.svg"
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Micro",
  17385. height: math.unit(4, "cm")
  17386. },
  17387. {
  17388. name: "Normal",
  17389. height: math.unit(1.75, "meters")
  17390. },
  17391. {
  17392. name: "Macro",
  17393. height: math.unit(47.5, "meters"),
  17394. default: true
  17395. },
  17396. ]
  17397. ))
  17398. characterMakers.push(() => makeCharacter(
  17399. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17400. {
  17401. front: {
  17402. height: math.unit(180, "cm"),
  17403. weight: math.unit(70, "kg"),
  17404. name: "Front",
  17405. image: {
  17406. source: "./media/characters/algier/front.svg",
  17407. extra: 596 / 572,
  17408. bottom: 0.04
  17409. }
  17410. },
  17411. back: {
  17412. height: math.unit(180, "cm"),
  17413. weight: math.unit(70, "kg"),
  17414. name: "Back",
  17415. image: {
  17416. source: "./media/characters/algier/back.svg",
  17417. extra: 596 / 572,
  17418. bottom: 0.025
  17419. }
  17420. },
  17421. frontdressed: {
  17422. height: math.unit(180, "cm"),
  17423. weight: math.unit(150, "kg"),
  17424. name: "Front-dressed",
  17425. image: {
  17426. source: "./media/characters/algier/front-dressed.svg",
  17427. extra: 596 / 572,
  17428. bottom: 0.038
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Micro",
  17435. height: math.unit(5, "cm")
  17436. },
  17437. {
  17438. name: "Normal",
  17439. height: math.unit(180, "cm"),
  17440. default: true
  17441. },
  17442. {
  17443. name: "Macro",
  17444. height: math.unit(64, "m")
  17445. },
  17446. ]
  17447. ))
  17448. characterMakers.push(() => makeCharacter(
  17449. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17450. {
  17451. upright: {
  17452. height: math.unit(7, "feet"),
  17453. weight: math.unit(300, "lb"),
  17454. name: "Upright",
  17455. image: {
  17456. source: "./media/characters/pretzel/upright.svg",
  17457. extra: 534 / 522,
  17458. bottom: 0.065
  17459. }
  17460. },
  17461. sprawling: {
  17462. height: math.unit(3.75, "feet"),
  17463. weight: math.unit(300, "lb"),
  17464. name: "Sprawling",
  17465. image: {
  17466. source: "./media/characters/pretzel/sprawling.svg",
  17467. extra: 314 / 281,
  17468. bottom: 0.1
  17469. }
  17470. },
  17471. tongue: {
  17472. height: math.unit(2, "feet"),
  17473. name: "Tongue",
  17474. image: {
  17475. source: "./media/characters/pretzel/tongue.svg"
  17476. }
  17477. },
  17478. },
  17479. [
  17480. {
  17481. name: "Normal",
  17482. height: math.unit(7, "feet"),
  17483. default: true
  17484. },
  17485. {
  17486. name: "Oversized",
  17487. height: math.unit(15, "feet")
  17488. },
  17489. {
  17490. name: "Huge",
  17491. height: math.unit(30, "feet")
  17492. },
  17493. {
  17494. name: "Macro",
  17495. height: math.unit(250, "feet")
  17496. },
  17497. ]
  17498. ))
  17499. characterMakers.push(() => makeCharacter(
  17500. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17501. {
  17502. sideFront: {
  17503. height: math.unit(5 + 2 / 12, "feet"),
  17504. weight: math.unit(120, "lb"),
  17505. name: "Front Side",
  17506. image: {
  17507. source: "./media/characters/roxi/side-front.svg",
  17508. extra: 2924 / 2717,
  17509. bottom: 0.08
  17510. }
  17511. },
  17512. sideBack: {
  17513. height: math.unit(5 + 2 / 12, "feet"),
  17514. weight: math.unit(120, "lb"),
  17515. name: "Back Side",
  17516. image: {
  17517. source: "./media/characters/roxi/side-back.svg",
  17518. extra: 2904 / 2693,
  17519. bottom: 0.06
  17520. }
  17521. },
  17522. front: {
  17523. height: math.unit(5 + 2 / 12, "feet"),
  17524. weight: math.unit(120, "lb"),
  17525. name: "Front",
  17526. image: {
  17527. source: "./media/characters/roxi/front.svg",
  17528. extra: 2028 / 1907,
  17529. bottom: 0.01
  17530. }
  17531. },
  17532. frontAlt: {
  17533. height: math.unit(5 + 2 / 12, "feet"),
  17534. weight: math.unit(120, "lb"),
  17535. name: "Front (Alt)",
  17536. image: {
  17537. source: "./media/characters/roxi/front-alt.svg",
  17538. extra: 1828 / 1798,
  17539. bottom: 0.01
  17540. }
  17541. },
  17542. sitting: {
  17543. height: math.unit(2.8, "feet"),
  17544. weight: math.unit(120, "lb"),
  17545. name: "Sitting",
  17546. image: {
  17547. source: "./media/characters/roxi/sitting.svg",
  17548. extra: 2660 / 2462,
  17549. bottom: 0.1
  17550. }
  17551. },
  17552. },
  17553. [
  17554. {
  17555. name: "Normal",
  17556. height: math.unit(5 + 2 / 12, "feet"),
  17557. default: true
  17558. },
  17559. ]
  17560. ))
  17561. characterMakers.push(() => makeCharacter(
  17562. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17563. {
  17564. side: {
  17565. height: math.unit(55, "feet"),
  17566. weight: math.unit(153, "tons"),
  17567. name: "Side",
  17568. image: {
  17569. source: "./media/characters/shadow/side.svg",
  17570. extra: 701 / 628,
  17571. bottom: 0.02
  17572. }
  17573. },
  17574. flying: {
  17575. height: math.unit(145, "feet"),
  17576. weight: math.unit(153, "tons"),
  17577. name: "Flying",
  17578. image: {
  17579. source: "./media/characters/shadow/flying.svg"
  17580. }
  17581. },
  17582. },
  17583. [
  17584. {
  17585. name: "Normal",
  17586. height: math.unit(55, "feet"),
  17587. default: true
  17588. },
  17589. ]
  17590. ))
  17591. characterMakers.push(() => makeCharacter(
  17592. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17593. {
  17594. front: {
  17595. height: math.unit(6, "feet"),
  17596. weight: math.unit(200, "lb"),
  17597. name: "Front",
  17598. image: {
  17599. source: "./media/characters/marcie/front.svg",
  17600. extra: 960 / 876,
  17601. bottom: 58 / 1017.87
  17602. }
  17603. },
  17604. },
  17605. [
  17606. {
  17607. name: "Macro",
  17608. height: math.unit(1, "mile"),
  17609. default: true
  17610. },
  17611. ]
  17612. ))
  17613. characterMakers.push(() => makeCharacter(
  17614. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17615. {
  17616. front: {
  17617. height: math.unit(7, "feet"),
  17618. weight: math.unit(200, "lb"),
  17619. name: "Front",
  17620. image: {
  17621. source: "./media/characters/kachina/front.svg",
  17622. extra: 1290.68 / 1119,
  17623. bottom: 36.5 / 1327.18
  17624. }
  17625. },
  17626. },
  17627. [
  17628. {
  17629. name: "Normal",
  17630. height: math.unit(7, "feet"),
  17631. default: true
  17632. },
  17633. ]
  17634. ))
  17635. characterMakers.push(() => makeCharacter(
  17636. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17637. {
  17638. looking: {
  17639. height: math.unit(2, "meters"),
  17640. weight: math.unit(300, "kg"),
  17641. name: "Looking",
  17642. image: {
  17643. source: "./media/characters/kash/looking.svg",
  17644. extra: 474 / 344,
  17645. bottom: 0.03
  17646. }
  17647. },
  17648. side: {
  17649. height: math.unit(2, "meters"),
  17650. weight: math.unit(300, "kg"),
  17651. name: "Side",
  17652. image: {
  17653. source: "./media/characters/kash/side.svg",
  17654. extra: 302 / 251,
  17655. bottom: 0.03
  17656. }
  17657. },
  17658. front: {
  17659. height: math.unit(2, "meters"),
  17660. weight: math.unit(300, "kg"),
  17661. name: "Front",
  17662. image: {
  17663. source: "./media/characters/kash/front.svg",
  17664. extra: 495 / 360,
  17665. bottom: 0.015
  17666. }
  17667. },
  17668. },
  17669. [
  17670. {
  17671. name: "Normal",
  17672. height: math.unit(2, "meters"),
  17673. default: true
  17674. },
  17675. {
  17676. name: "Big",
  17677. height: math.unit(3, "meters")
  17678. },
  17679. {
  17680. name: "Large",
  17681. height: math.unit(5, "meters")
  17682. },
  17683. ]
  17684. ))
  17685. characterMakers.push(() => makeCharacter(
  17686. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17687. {
  17688. feeding: {
  17689. height: math.unit(6.7, "feet"),
  17690. weight: math.unit(350, "lb"),
  17691. name: "Feeding",
  17692. image: {
  17693. source: "./media/characters/lalim/feeding.svg",
  17694. }
  17695. },
  17696. },
  17697. [
  17698. {
  17699. name: "Normal",
  17700. height: math.unit(6.7, "feet"),
  17701. default: true
  17702. },
  17703. ]
  17704. ))
  17705. characterMakers.push(() => makeCharacter(
  17706. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17707. {
  17708. front: {
  17709. height: math.unit(9.5, "feet"),
  17710. weight: math.unit(600, "lb"),
  17711. name: "Front",
  17712. image: {
  17713. source: "./media/characters/de'vout/front.svg",
  17714. extra: 1443 / 1328,
  17715. bottom: 0.025
  17716. }
  17717. },
  17718. back: {
  17719. height: math.unit(9.5, "feet"),
  17720. weight: math.unit(600, "lb"),
  17721. name: "Back",
  17722. image: {
  17723. source: "./media/characters/de'vout/back.svg",
  17724. extra: 1443 / 1328
  17725. }
  17726. },
  17727. frontDressed: {
  17728. height: math.unit(9.5, "feet"),
  17729. weight: math.unit(600, "lb"),
  17730. name: "Front (Dressed",
  17731. image: {
  17732. source: "./media/characters/de'vout/front-dressed.svg",
  17733. extra: 1443 / 1328,
  17734. bottom: 0.025
  17735. }
  17736. },
  17737. backDressed: {
  17738. height: math.unit(9.5, "feet"),
  17739. weight: math.unit(600, "lb"),
  17740. name: "Back (Dressed",
  17741. image: {
  17742. source: "./media/characters/de'vout/back-dressed.svg",
  17743. extra: 1443 / 1328
  17744. }
  17745. },
  17746. },
  17747. [
  17748. {
  17749. name: "Normal",
  17750. height: math.unit(9.5, "feet"),
  17751. default: true
  17752. },
  17753. ]
  17754. ))
  17755. characterMakers.push(() => makeCharacter(
  17756. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17757. {
  17758. front: {
  17759. height: math.unit(8, "feet"),
  17760. weight: math.unit(225, "lb"),
  17761. name: "Front",
  17762. image: {
  17763. source: "./media/characters/talana/front.svg",
  17764. extra: 1410 / 1300,
  17765. bottom: 0.015
  17766. }
  17767. },
  17768. frontDressed: {
  17769. height: math.unit(8, "feet"),
  17770. weight: math.unit(225, "lb"),
  17771. name: "Front (Dressed",
  17772. image: {
  17773. source: "./media/characters/talana/front-dressed.svg",
  17774. extra: 1410 / 1300,
  17775. bottom: 0.015
  17776. }
  17777. },
  17778. },
  17779. [
  17780. {
  17781. name: "Normal",
  17782. height: math.unit(8, "feet"),
  17783. default: true
  17784. },
  17785. ]
  17786. ))
  17787. characterMakers.push(() => makeCharacter(
  17788. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17789. {
  17790. side: {
  17791. height: math.unit(7.2, "feet"),
  17792. weight: math.unit(150, "lb"),
  17793. name: "Side",
  17794. image: {
  17795. source: "./media/characters/xeauvok/side.svg",
  17796. extra: 1975 / 1523,
  17797. bottom: 0.07
  17798. }
  17799. },
  17800. },
  17801. [
  17802. {
  17803. name: "Normal",
  17804. height: math.unit(7.2, "feet"),
  17805. default: true
  17806. },
  17807. ]
  17808. ))
  17809. characterMakers.push(() => makeCharacter(
  17810. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17811. {
  17812. side: {
  17813. height: math.unit(10, "feet"),
  17814. weight: math.unit(900, "kg"),
  17815. name: "Side",
  17816. image: {
  17817. source: "./media/characters/zara/side.svg",
  17818. extra: 504 / 498
  17819. }
  17820. },
  17821. },
  17822. [
  17823. {
  17824. name: "Normal",
  17825. height: math.unit(10, "feet"),
  17826. default: true
  17827. },
  17828. ]
  17829. ))
  17830. characterMakers.push(() => makeCharacter(
  17831. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17832. {
  17833. side: {
  17834. height: math.unit(6, "feet"),
  17835. weight: math.unit(150, "lb"),
  17836. name: "Side",
  17837. image: {
  17838. source: "./media/characters/richard-dragon/side.svg",
  17839. extra: 845 / 340,
  17840. bottom: 0.017
  17841. }
  17842. },
  17843. maw: {
  17844. height: math.unit(2.97, "feet"),
  17845. name: "Maw",
  17846. image: {
  17847. source: "./media/characters/richard-dragon/maw.svg"
  17848. }
  17849. },
  17850. },
  17851. [
  17852. ]
  17853. ))
  17854. characterMakers.push(() => makeCharacter(
  17855. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17856. {
  17857. front: {
  17858. height: math.unit(4, "feet"),
  17859. weight: math.unit(100, "lb"),
  17860. name: "Front",
  17861. image: {
  17862. source: "./media/characters/richard-smeargle/front.svg",
  17863. extra: 2952 / 2820,
  17864. bottom: 0.028
  17865. }
  17866. },
  17867. },
  17868. [
  17869. {
  17870. name: "Normal",
  17871. height: math.unit(4, "feet"),
  17872. default: true
  17873. },
  17874. {
  17875. name: "Dynamax",
  17876. height: math.unit(20, "meters")
  17877. },
  17878. ]
  17879. ))
  17880. characterMakers.push(() => makeCharacter(
  17881. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17882. {
  17883. front: {
  17884. height: math.unit(6, "feet"),
  17885. weight: math.unit(110, "lb"),
  17886. name: "Front",
  17887. image: {
  17888. source: "./media/characters/klay/front.svg",
  17889. extra: 962 / 883,
  17890. bottom: 0.04
  17891. }
  17892. },
  17893. back: {
  17894. height: math.unit(6, "feet"),
  17895. weight: math.unit(110, "lb"),
  17896. name: "Back",
  17897. image: {
  17898. source: "./media/characters/klay/back.svg",
  17899. extra: 962 / 883
  17900. }
  17901. },
  17902. beans: {
  17903. height: math.unit(1.15, "feet"),
  17904. name: "Beans",
  17905. image: {
  17906. source: "./media/characters/klay/beans.svg"
  17907. }
  17908. },
  17909. },
  17910. [
  17911. {
  17912. name: "Micro",
  17913. height: math.unit(6, "inches")
  17914. },
  17915. {
  17916. name: "Mini",
  17917. height: math.unit(3, "feet")
  17918. },
  17919. {
  17920. name: "Normal",
  17921. height: math.unit(6, "feet"),
  17922. default: true
  17923. },
  17924. {
  17925. name: "Big",
  17926. height: math.unit(25, "feet")
  17927. },
  17928. {
  17929. name: "Macro",
  17930. height: math.unit(100, "feet")
  17931. },
  17932. {
  17933. name: "Megamacro",
  17934. height: math.unit(400, "feet")
  17935. },
  17936. ]
  17937. ))
  17938. characterMakers.push(() => makeCharacter(
  17939. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17940. {
  17941. front: {
  17942. height: math.unit(6, "feet"),
  17943. weight: math.unit(160, "lb"),
  17944. name: "Front",
  17945. image: {
  17946. source: "./media/characters/marcus/front.svg",
  17947. extra: 734 / 676,
  17948. bottom: 0.03
  17949. }
  17950. },
  17951. },
  17952. [
  17953. {
  17954. name: "Little",
  17955. height: math.unit(6, "feet")
  17956. },
  17957. {
  17958. name: "Normal",
  17959. height: math.unit(110, "feet"),
  17960. default: true
  17961. },
  17962. {
  17963. name: "Macro",
  17964. height: math.unit(250, "feet")
  17965. },
  17966. {
  17967. name: "Megamacro",
  17968. height: math.unit(1000, "feet")
  17969. },
  17970. ]
  17971. ))
  17972. characterMakers.push(() => makeCharacter(
  17973. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17974. {
  17975. front: {
  17976. height: math.unit(7, "feet"),
  17977. weight: math.unit(275, "lb"),
  17978. name: "Front",
  17979. image: {
  17980. source: "./media/characters/claude-delroute/front.svg",
  17981. extra: 230 / 214,
  17982. bottom: 0.007
  17983. }
  17984. },
  17985. side: {
  17986. height: math.unit(7, "feet"),
  17987. weight: math.unit(275, "lb"),
  17988. name: "Side",
  17989. image: {
  17990. source: "./media/characters/claude-delroute/side.svg",
  17991. extra: 222 / 214,
  17992. bottom: 0.01
  17993. }
  17994. },
  17995. back: {
  17996. height: math.unit(7, "feet"),
  17997. weight: math.unit(275, "lb"),
  17998. name: "Back",
  17999. image: {
  18000. source: "./media/characters/claude-delroute/back.svg",
  18001. extra: 230 / 214,
  18002. bottom: 0.015
  18003. }
  18004. },
  18005. maw: {
  18006. height: math.unit(0.6407, "meters"),
  18007. name: "Maw",
  18008. image: {
  18009. source: "./media/characters/claude-delroute/maw.svg"
  18010. }
  18011. },
  18012. },
  18013. [
  18014. {
  18015. name: "Normal",
  18016. height: math.unit(7, "feet"),
  18017. default: true
  18018. },
  18019. {
  18020. name: "Lorge",
  18021. height: math.unit(20, "feet")
  18022. },
  18023. ]
  18024. ))
  18025. characterMakers.push(() => makeCharacter(
  18026. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18027. {
  18028. front: {
  18029. height: math.unit(8 + 4 / 12, "feet"),
  18030. weight: math.unit(600, "lb"),
  18031. name: "Front",
  18032. image: {
  18033. source: "./media/characters/dragonien/front.svg",
  18034. extra: 100 / 94,
  18035. bottom: 3.3 / 103.3445
  18036. }
  18037. },
  18038. back: {
  18039. height: math.unit(8 + 4 / 12, "feet"),
  18040. weight: math.unit(600, "lb"),
  18041. name: "Back",
  18042. image: {
  18043. source: "./media/characters/dragonien/back.svg",
  18044. extra: 776 / 746,
  18045. bottom: 6.4 / 782.0616
  18046. }
  18047. },
  18048. foot: {
  18049. height: math.unit(1.54, "feet"),
  18050. name: "Foot",
  18051. image: {
  18052. source: "./media/characters/dragonien/foot.svg",
  18053. }
  18054. },
  18055. },
  18056. [
  18057. {
  18058. name: "Normal",
  18059. height: math.unit(8 + 4 / 12, "feet"),
  18060. default: true
  18061. },
  18062. {
  18063. name: "Macro",
  18064. height: math.unit(200, "feet")
  18065. },
  18066. {
  18067. name: "Megamacro",
  18068. height: math.unit(1, "mile")
  18069. },
  18070. {
  18071. name: "Gigamacro",
  18072. height: math.unit(1000, "miles")
  18073. },
  18074. ]
  18075. ))
  18076. characterMakers.push(() => makeCharacter(
  18077. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18078. {
  18079. front: {
  18080. height: math.unit(5 + 2 / 12, "feet"),
  18081. weight: math.unit(110, "lb"),
  18082. name: "Front",
  18083. image: {
  18084. source: "./media/characters/desta/front.svg",
  18085. extra: 767 / 726,
  18086. bottom: 11.7 / 779
  18087. }
  18088. },
  18089. back: {
  18090. height: math.unit(5 + 2 / 12, "feet"),
  18091. weight: math.unit(110, "lb"),
  18092. name: "Back",
  18093. image: {
  18094. source: "./media/characters/desta/back.svg",
  18095. extra: 777 / 728,
  18096. bottom: 6 / 784
  18097. }
  18098. },
  18099. frontAlt: {
  18100. height: math.unit(5 + 2 / 12, "feet"),
  18101. weight: math.unit(110, "lb"),
  18102. name: "Front",
  18103. image: {
  18104. source: "./media/characters/desta/front-alt.svg",
  18105. extra: 1482 / 1417
  18106. }
  18107. },
  18108. side: {
  18109. height: math.unit(5 + 2 / 12, "feet"),
  18110. weight: math.unit(110, "lb"),
  18111. name: "Side",
  18112. image: {
  18113. source: "./media/characters/desta/side.svg",
  18114. extra: 2579 / 2491,
  18115. bottom: 0.053
  18116. }
  18117. },
  18118. },
  18119. [
  18120. {
  18121. name: "Micro",
  18122. height: math.unit(6, "inches")
  18123. },
  18124. {
  18125. name: "Normal",
  18126. height: math.unit(5 + 2 / 12, "feet"),
  18127. default: true
  18128. },
  18129. {
  18130. name: "Macro",
  18131. height: math.unit(62, "feet")
  18132. },
  18133. {
  18134. name: "Megamacro",
  18135. height: math.unit(1800, "feet")
  18136. },
  18137. ]
  18138. ))
  18139. characterMakers.push(() => makeCharacter(
  18140. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18141. {
  18142. front: {
  18143. height: math.unit(10, "feet"),
  18144. weight: math.unit(700, "lb"),
  18145. name: "Front",
  18146. image: {
  18147. source: "./media/characters/storm-alystar/front.svg",
  18148. extra: 2112 / 1898,
  18149. bottom: 0.034
  18150. }
  18151. },
  18152. },
  18153. [
  18154. {
  18155. name: "Micro",
  18156. height: math.unit(3.5, "inches")
  18157. },
  18158. {
  18159. name: "Normal",
  18160. height: math.unit(10, "feet"),
  18161. default: true
  18162. },
  18163. {
  18164. name: "Macro",
  18165. height: math.unit(400, "feet")
  18166. },
  18167. {
  18168. name: "Deific",
  18169. height: math.unit(60, "miles")
  18170. },
  18171. ]
  18172. ))
  18173. characterMakers.push(() => makeCharacter(
  18174. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18175. {
  18176. front: {
  18177. height: math.unit(2.35, "meters"),
  18178. weight: math.unit(119, "kg"),
  18179. name: "Front",
  18180. image: {
  18181. source: "./media/characters/ilia/front.svg",
  18182. extra: 1285 / 1255,
  18183. bottom: 0.06
  18184. }
  18185. },
  18186. },
  18187. [
  18188. {
  18189. name: "Normal",
  18190. height: math.unit(2.35, "meters")
  18191. },
  18192. {
  18193. name: "Macro",
  18194. height: math.unit(140, "meters"),
  18195. default: true
  18196. },
  18197. {
  18198. name: "Megamacro",
  18199. height: math.unit(100, "miles")
  18200. },
  18201. ]
  18202. ))
  18203. characterMakers.push(() => makeCharacter(
  18204. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18205. {
  18206. front: {
  18207. height: math.unit(6 + 5 / 12, "feet"),
  18208. weight: math.unit(190, "lb"),
  18209. name: "Front",
  18210. image: {
  18211. source: "./media/characters/kingdead/front.svg",
  18212. extra: 1228 / 1177
  18213. }
  18214. },
  18215. },
  18216. [
  18217. {
  18218. name: "Micro",
  18219. height: math.unit(7, "inches")
  18220. },
  18221. {
  18222. name: "Normal",
  18223. height: math.unit(6 + 5 / 12, "feet")
  18224. },
  18225. {
  18226. name: "Macro",
  18227. height: math.unit(150, "feet"),
  18228. default: true
  18229. },
  18230. {
  18231. name: "Megamacro",
  18232. height: math.unit(200, "miles")
  18233. },
  18234. ]
  18235. ))
  18236. characterMakers.push(() => makeCharacter(
  18237. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18238. {
  18239. front: {
  18240. height: math.unit(8, "feet"),
  18241. weight: math.unit(600, "lb"),
  18242. name: "Front",
  18243. image: {
  18244. source: "./media/characters/kyrehx/front.svg",
  18245. extra: 1195 / 1095,
  18246. bottom: 0.034
  18247. }
  18248. },
  18249. },
  18250. [
  18251. {
  18252. name: "Micro",
  18253. height: math.unit(2, "inches")
  18254. },
  18255. {
  18256. name: "Normal",
  18257. height: math.unit(8, "feet"),
  18258. default: true
  18259. },
  18260. {
  18261. name: "Macro",
  18262. height: math.unit(255, "feet")
  18263. },
  18264. ]
  18265. ))
  18266. characterMakers.push(() => makeCharacter(
  18267. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18268. {
  18269. front: {
  18270. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18271. weight: math.unit(184, "lb"),
  18272. name: "Front",
  18273. image: {
  18274. source: "./media/characters/xang/front.svg",
  18275. extra: 845 / 755
  18276. }
  18277. },
  18278. },
  18279. [
  18280. {
  18281. name: "Normal",
  18282. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18283. default: true
  18284. },
  18285. {
  18286. name: "Macro",
  18287. height: math.unit(0.935 * 146, "feet")
  18288. },
  18289. {
  18290. name: "Megamacro",
  18291. height: math.unit(0.935 * 3, "miles")
  18292. },
  18293. ]
  18294. ))
  18295. characterMakers.push(() => makeCharacter(
  18296. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18297. {
  18298. frontDressed: {
  18299. height: math.unit(5 + 7 / 12, "feet"),
  18300. weight: math.unit(140, "lb"),
  18301. name: "Front (Dressed)",
  18302. image: {
  18303. source: "./media/characters/doc-weardno/front-dressed.svg",
  18304. extra: 263 / 234
  18305. }
  18306. },
  18307. backDressed: {
  18308. height: math.unit(5 + 7 / 12, "feet"),
  18309. weight: math.unit(140, "lb"),
  18310. name: "Back (Dressed)",
  18311. image: {
  18312. source: "./media/characters/doc-weardno/back-dressed.svg",
  18313. extra: 266 / 238
  18314. }
  18315. },
  18316. front: {
  18317. height: math.unit(5 + 7 / 12, "feet"),
  18318. weight: math.unit(140, "lb"),
  18319. name: "Front",
  18320. image: {
  18321. source: "./media/characters/doc-weardno/front.svg",
  18322. extra: 254 / 233
  18323. }
  18324. },
  18325. },
  18326. [
  18327. {
  18328. name: "Micro",
  18329. height: math.unit(3, "inches")
  18330. },
  18331. {
  18332. name: "Normal",
  18333. height: math.unit(5 + 7 / 12, "feet"),
  18334. default: true
  18335. },
  18336. {
  18337. name: "Macro",
  18338. height: math.unit(25, "feet")
  18339. },
  18340. {
  18341. name: "Megamacro",
  18342. height: math.unit(2, "miles")
  18343. },
  18344. ]
  18345. ))
  18346. characterMakers.push(() => makeCharacter(
  18347. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18348. {
  18349. front: {
  18350. height: math.unit(6 + 2 / 12, "feet"),
  18351. weight: math.unit(153, "lb"),
  18352. name: "Front",
  18353. image: {
  18354. source: "./media/characters/seth-whilst/front.svg",
  18355. bottom: 0.07
  18356. }
  18357. },
  18358. },
  18359. [
  18360. {
  18361. name: "Micro",
  18362. height: math.unit(5, "inches")
  18363. },
  18364. {
  18365. name: "Normal",
  18366. height: math.unit(6 + 2 / 12, "feet"),
  18367. default: true
  18368. },
  18369. ]
  18370. ))
  18371. characterMakers.push(() => makeCharacter(
  18372. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18373. {
  18374. front: {
  18375. height: math.unit(3, "inches"),
  18376. weight: math.unit(8, "grams"),
  18377. name: "Front",
  18378. image: {
  18379. source: "./media/characters/pocket-jabari/front.svg",
  18380. extra: 1024 / 974,
  18381. bottom: 0.039
  18382. }
  18383. },
  18384. },
  18385. [
  18386. {
  18387. name: "Minimicro",
  18388. height: math.unit(8, "mm")
  18389. },
  18390. {
  18391. name: "Micro",
  18392. height: math.unit(3, "inches"),
  18393. default: true
  18394. },
  18395. {
  18396. name: "Normal",
  18397. height: math.unit(3, "feet")
  18398. },
  18399. ]
  18400. ))
  18401. characterMakers.push(() => makeCharacter(
  18402. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18403. {
  18404. front: {
  18405. height: math.unit(15, "feet"),
  18406. weight: math.unit(3280, "lb"),
  18407. name: "Front",
  18408. image: {
  18409. source: "./media/characters/sapphy/front.svg",
  18410. extra: 671 / 577,
  18411. bottom: 0.085
  18412. }
  18413. },
  18414. back: {
  18415. height: math.unit(15, "feet"),
  18416. weight: math.unit(3280, "lb"),
  18417. name: "Back",
  18418. image: {
  18419. source: "./media/characters/sapphy/back.svg",
  18420. extra: 631 / 607,
  18421. bottom: 0.045
  18422. }
  18423. },
  18424. },
  18425. [
  18426. {
  18427. name: "Normal",
  18428. height: math.unit(15, "feet")
  18429. },
  18430. {
  18431. name: "Casual Macro",
  18432. height: math.unit(120, "feet")
  18433. },
  18434. {
  18435. name: "Macro",
  18436. height: math.unit(2150, "feet"),
  18437. default: true
  18438. },
  18439. {
  18440. name: "Megamacro",
  18441. height: math.unit(8, "miles")
  18442. },
  18443. {
  18444. name: "Galaxy Mom",
  18445. height: math.unit(6, "megalightyears")
  18446. },
  18447. ]
  18448. ))
  18449. characterMakers.push(() => makeCharacter(
  18450. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18451. {
  18452. front: {
  18453. height: math.unit(6, "feet"),
  18454. weight: math.unit(170, "lb"),
  18455. name: "Front",
  18456. image: {
  18457. source: "./media/characters/kiro/front.svg",
  18458. extra: 1064 / 1012,
  18459. bottom: 0.052
  18460. }
  18461. },
  18462. },
  18463. [
  18464. {
  18465. name: "Micro",
  18466. height: math.unit(6, "inches")
  18467. },
  18468. {
  18469. name: "Normal",
  18470. height: math.unit(6, "feet"),
  18471. default: true
  18472. },
  18473. {
  18474. name: "Macro",
  18475. height: math.unit(72, "feet")
  18476. },
  18477. ]
  18478. ))
  18479. characterMakers.push(() => makeCharacter(
  18480. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18481. {
  18482. front: {
  18483. height: math.unit(5 + 9 / 12, "feet"),
  18484. weight: math.unit(175, "lb"),
  18485. name: "Front",
  18486. image: {
  18487. source: "./media/characters/irishfox/front.svg",
  18488. extra: 1912 / 1680,
  18489. bottom: 0.02
  18490. }
  18491. },
  18492. },
  18493. [
  18494. {
  18495. name: "Nano",
  18496. height: math.unit(1, "mm")
  18497. },
  18498. {
  18499. name: "Micro",
  18500. height: math.unit(2, "inches")
  18501. },
  18502. {
  18503. name: "Normal",
  18504. height: math.unit(5 + 9 / 12, "feet"),
  18505. default: true
  18506. },
  18507. {
  18508. name: "Macro",
  18509. height: math.unit(45, "feet")
  18510. },
  18511. ]
  18512. ))
  18513. characterMakers.push(() => makeCharacter(
  18514. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18515. {
  18516. front: {
  18517. height: math.unit(6 + 1 / 12, "feet"),
  18518. weight: math.unit(75, "lb"),
  18519. name: "Front",
  18520. image: {
  18521. source: "./media/characters/aronai-sieyes/front.svg",
  18522. extra: 1556 / 1480,
  18523. bottom: 0.015
  18524. }
  18525. },
  18526. side: {
  18527. height: math.unit(6 + 1 / 12, "feet"),
  18528. weight: math.unit(75, "lb"),
  18529. name: "Side",
  18530. image: {
  18531. source: "./media/characters/aronai-sieyes/side.svg",
  18532. extra: 1433 / 1390,
  18533. bottom: 0.0393
  18534. }
  18535. },
  18536. back: {
  18537. height: math.unit(6 + 1 / 12, "feet"),
  18538. weight: math.unit(75, "lb"),
  18539. name: "Back",
  18540. image: {
  18541. source: "./media/characters/aronai-sieyes/back.svg",
  18542. extra: 1544 / 1494,
  18543. bottom: 0.02
  18544. }
  18545. },
  18546. frontClothed: {
  18547. height: math.unit(6 + 1 / 12, "feet"),
  18548. weight: math.unit(75, "lb"),
  18549. name: "Front (Clothed)",
  18550. image: {
  18551. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18552. extra: 1582 / 1527
  18553. }
  18554. },
  18555. feral: {
  18556. height: math.unit(18, "feet"),
  18557. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18558. name: "Feral",
  18559. image: {
  18560. source: "./media/characters/aronai-sieyes/feral.svg",
  18561. extra: 1530 / 1240,
  18562. bottom: 0.035
  18563. }
  18564. },
  18565. },
  18566. [
  18567. {
  18568. name: "Micro",
  18569. height: math.unit(2, "inches")
  18570. },
  18571. {
  18572. name: "Normal",
  18573. height: math.unit(6 + 1 / 12, "feet"),
  18574. default: true
  18575. }
  18576. ]
  18577. ))
  18578. characterMakers.push(() => makeCharacter(
  18579. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18580. {
  18581. front: {
  18582. height: math.unit(12, "feet"),
  18583. weight: math.unit(410, "kg"),
  18584. name: "Front",
  18585. image: {
  18586. source: "./media/characters/xuna/front.svg",
  18587. extra: 2184 / 1980
  18588. }
  18589. },
  18590. side: {
  18591. height: math.unit(12, "feet"),
  18592. weight: math.unit(410, "kg"),
  18593. name: "Side",
  18594. image: {
  18595. source: "./media/characters/xuna/side.svg",
  18596. extra: 2184 / 1980
  18597. }
  18598. },
  18599. back: {
  18600. height: math.unit(12, "feet"),
  18601. weight: math.unit(410, "kg"),
  18602. name: "Back",
  18603. image: {
  18604. source: "./media/characters/xuna/back.svg",
  18605. extra: 2184 / 1980
  18606. }
  18607. },
  18608. },
  18609. [
  18610. {
  18611. name: "Nano glow",
  18612. height: math.unit(10, "nm")
  18613. },
  18614. {
  18615. name: "Micro floof",
  18616. height: math.unit(0.3, "m")
  18617. },
  18618. {
  18619. name: "Huggable softy boi",
  18620. height: math.unit(3.6576, "m"),
  18621. default: true
  18622. },
  18623. {
  18624. name: "Admirable floof",
  18625. height: math.unit(80, "meters")
  18626. },
  18627. {
  18628. name: "Gentle macro",
  18629. height: math.unit(300, "meters")
  18630. },
  18631. {
  18632. name: "Very careful floof",
  18633. height: math.unit(3200, "meters")
  18634. },
  18635. {
  18636. name: "The mega floof",
  18637. height: math.unit(36000, "meters")
  18638. },
  18639. {
  18640. name: "Giga-fur-Wicker",
  18641. height: math.unit(4800000, "meters")
  18642. },
  18643. {
  18644. name: "Licky world",
  18645. height: math.unit(20000000, "meters")
  18646. },
  18647. {
  18648. name: "Floofy cyan sun",
  18649. height: math.unit(1500000000, "meters")
  18650. },
  18651. {
  18652. name: "Milky Wicker",
  18653. height: math.unit(1000000000000000000000, "meters")
  18654. },
  18655. {
  18656. name: "The observing Wicker",
  18657. height: math.unit(999999999999999999999999999, "meters")
  18658. },
  18659. ]
  18660. ))
  18661. characterMakers.push(() => makeCharacter(
  18662. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18663. {
  18664. front: {
  18665. height: math.unit(5 + 9 / 12, "feet"),
  18666. weight: math.unit(150, "lb"),
  18667. name: "Front",
  18668. image: {
  18669. source: "./media/characters/arokha-sieyes/front.svg",
  18670. extra: 1425 / 1284,
  18671. bottom: 0.05
  18672. }
  18673. },
  18674. },
  18675. [
  18676. {
  18677. name: "Normal",
  18678. height: math.unit(5 + 9 / 12, "feet")
  18679. },
  18680. {
  18681. name: "Macro",
  18682. height: math.unit(30, "meters"),
  18683. default: true
  18684. },
  18685. ]
  18686. ))
  18687. characterMakers.push(() => makeCharacter(
  18688. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18689. {
  18690. front: {
  18691. height: math.unit(6, "feet"),
  18692. weight: math.unit(180, "lb"),
  18693. name: "Front",
  18694. image: {
  18695. source: "./media/characters/arokh-sieyes/front.svg",
  18696. extra: 1830 / 1769,
  18697. bottom: 0.01
  18698. }
  18699. },
  18700. },
  18701. [
  18702. {
  18703. name: "Normal",
  18704. height: math.unit(6, "feet")
  18705. },
  18706. {
  18707. name: "Macro",
  18708. height: math.unit(30, "meters"),
  18709. default: true
  18710. },
  18711. ]
  18712. ))
  18713. characterMakers.push(() => makeCharacter(
  18714. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18715. {
  18716. side: {
  18717. height: math.unit(13 + 1 / 12, "feet"),
  18718. weight: math.unit(8.5, "tonnes"),
  18719. name: "Side",
  18720. image: {
  18721. source: "./media/characters/goldeneye/side.svg",
  18722. extra: 1182 / 778,
  18723. bottom: 0.067
  18724. }
  18725. },
  18726. paw: {
  18727. height: math.unit(3.4, "feet"),
  18728. name: "Paw",
  18729. image: {
  18730. source: "./media/characters/goldeneye/paw.svg"
  18731. }
  18732. },
  18733. },
  18734. [
  18735. {
  18736. name: "Normal",
  18737. height: math.unit(13 + 1 / 12, "feet"),
  18738. default: true
  18739. },
  18740. ]
  18741. ))
  18742. characterMakers.push(() => makeCharacter(
  18743. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18744. {
  18745. front: {
  18746. height: math.unit(6 + 1 / 12, "feet"),
  18747. weight: math.unit(210, "lb"),
  18748. name: "Front",
  18749. image: {
  18750. source: "./media/characters/leonardo-lycheborne/front.svg",
  18751. extra: 390 / 365,
  18752. bottom: 0.032
  18753. }
  18754. },
  18755. side: {
  18756. height: math.unit(6 + 1 / 12, "feet"),
  18757. weight: math.unit(210, "lb"),
  18758. name: "Side",
  18759. image: {
  18760. source: "./media/characters/leonardo-lycheborne/side.svg",
  18761. extra: 390 / 365,
  18762. bottom: 0.005
  18763. }
  18764. },
  18765. back: {
  18766. height: math.unit(6 + 1 / 12, "feet"),
  18767. weight: math.unit(210, "lb"),
  18768. name: "Back",
  18769. image: {
  18770. source: "./media/characters/leonardo-lycheborne/back.svg",
  18771. extra: 392 / 366,
  18772. bottom: 0.01
  18773. }
  18774. },
  18775. hand: {
  18776. height: math.unit(1.08, "feet"),
  18777. name: "Hand",
  18778. image: {
  18779. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18780. }
  18781. },
  18782. foot: {
  18783. height: math.unit(1.32, "feet"),
  18784. name: "Foot",
  18785. image: {
  18786. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18787. }
  18788. },
  18789. were: {
  18790. height: math.unit(20, "feet"),
  18791. weight: math.unit(7800, "lb"),
  18792. name: "Were",
  18793. image: {
  18794. source: "./media/characters/leonardo-lycheborne/were.svg",
  18795. extra: 308 / 294,
  18796. bottom: 0.048
  18797. }
  18798. },
  18799. feral: {
  18800. height: math.unit(7.5, "feet"),
  18801. weight: math.unit(600, "lb"),
  18802. name: "Feral",
  18803. image: {
  18804. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18805. extra: 210 / 186,
  18806. bottom: 0.108
  18807. }
  18808. },
  18809. taur: {
  18810. height: math.unit(11, "feet"),
  18811. weight: math.unit(3300, "lb"),
  18812. name: "Taur",
  18813. image: {
  18814. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18815. extra: 320 / 303,
  18816. bottom: 0.025
  18817. }
  18818. },
  18819. barghest: {
  18820. height: math.unit(11, "feet"),
  18821. weight: math.unit(1300, "lb"),
  18822. name: "Barghest",
  18823. image: {
  18824. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18825. extra: 323 / 302,
  18826. bottom: 0.027
  18827. }
  18828. },
  18829. dick: {
  18830. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18831. name: "Dick",
  18832. image: {
  18833. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18834. }
  18835. },
  18836. dickWere: {
  18837. height: math.unit((20) / 3.8, "feet"),
  18838. name: "Dick (Were)",
  18839. image: {
  18840. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18841. }
  18842. },
  18843. },
  18844. [
  18845. {
  18846. name: "Normal",
  18847. height: math.unit(6 + 1 / 12, "feet"),
  18848. default: true
  18849. },
  18850. ]
  18851. ))
  18852. characterMakers.push(() => makeCharacter(
  18853. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18854. {
  18855. front: {
  18856. height: math.unit(10, "feet"),
  18857. weight: math.unit(350, "lb"),
  18858. name: "Front",
  18859. image: {
  18860. source: "./media/characters/jet/front.svg",
  18861. extra: 2050 / 1980,
  18862. bottom: 0.013
  18863. }
  18864. },
  18865. back: {
  18866. height: math.unit(10, "feet"),
  18867. weight: math.unit(350, "lb"),
  18868. name: "Back",
  18869. image: {
  18870. source: "./media/characters/jet/back.svg",
  18871. extra: 2050 / 1980,
  18872. bottom: 0.013
  18873. }
  18874. },
  18875. },
  18876. [
  18877. {
  18878. name: "Micro",
  18879. height: math.unit(6, "inches")
  18880. },
  18881. {
  18882. name: "Normal",
  18883. height: math.unit(10, "feet"),
  18884. default: true
  18885. },
  18886. {
  18887. name: "Macro",
  18888. height: math.unit(100, "feet")
  18889. },
  18890. ]
  18891. ))
  18892. characterMakers.push(() => makeCharacter(
  18893. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18894. {
  18895. front: {
  18896. height: math.unit(15, "feet"),
  18897. weight: math.unit(2800, "lb"),
  18898. name: "Front",
  18899. image: {
  18900. source: "./media/characters/tanarath/front.svg",
  18901. extra: 2392 / 2220,
  18902. bottom: 0.03
  18903. }
  18904. },
  18905. back: {
  18906. height: math.unit(15, "feet"),
  18907. weight: math.unit(2800, "lb"),
  18908. name: "Back",
  18909. image: {
  18910. source: "./media/characters/tanarath/back.svg",
  18911. extra: 2392 / 2220,
  18912. bottom: 0.03
  18913. }
  18914. },
  18915. },
  18916. [
  18917. {
  18918. name: "Normal",
  18919. height: math.unit(15, "feet"),
  18920. default: true
  18921. },
  18922. ]
  18923. ))
  18924. characterMakers.push(() => makeCharacter(
  18925. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18926. {
  18927. front: {
  18928. height: math.unit(7 + 1 / 12, "feet"),
  18929. weight: math.unit(175, "lb"),
  18930. name: "Front",
  18931. image: {
  18932. source: "./media/characters/patty-cattybatty/front.svg",
  18933. extra: 908 / 874,
  18934. bottom: 0.025
  18935. }
  18936. },
  18937. },
  18938. [
  18939. {
  18940. name: "Micro",
  18941. height: math.unit(1, "inch")
  18942. },
  18943. {
  18944. name: "Normal",
  18945. height: math.unit(7 + 1 / 12, "feet")
  18946. },
  18947. {
  18948. name: "Mini Macro",
  18949. height: math.unit(155, "feet")
  18950. },
  18951. {
  18952. name: "Macro",
  18953. height: math.unit(1077, "feet")
  18954. },
  18955. {
  18956. name: "Mega Macro",
  18957. height: math.unit(47650, "feet"),
  18958. default: true
  18959. },
  18960. {
  18961. name: "Giga Macro",
  18962. height: math.unit(440, "miles")
  18963. },
  18964. {
  18965. name: "Tera Macro",
  18966. height: math.unit(8700, "miles")
  18967. },
  18968. {
  18969. name: "Planetary Macro",
  18970. height: math.unit(32700, "miles")
  18971. },
  18972. {
  18973. name: "Solar Macro",
  18974. height: math.unit(550000, "miles")
  18975. },
  18976. {
  18977. name: "Celestial Macro",
  18978. height: math.unit(2.5, "AU")
  18979. },
  18980. ]
  18981. ))
  18982. characterMakers.push(() => makeCharacter(
  18983. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18984. {
  18985. front: {
  18986. height: math.unit(4 + 5 / 12, "feet"),
  18987. weight: math.unit(90, "lb"),
  18988. name: "Front",
  18989. image: {
  18990. source: "./media/characters/cappu/front.svg",
  18991. extra: 1247 / 1152,
  18992. bottom: 0.012
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(4 + 5 / 12, "feet"),
  19000. default: true
  19001. },
  19002. ]
  19003. ))
  19004. characterMakers.push(() => makeCharacter(
  19005. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19006. {
  19007. frontDressed: {
  19008. height: math.unit(70, "cm"),
  19009. weight: math.unit(6, "kg"),
  19010. name: "Front (Dressed)",
  19011. image: {
  19012. source: "./media/characters/sebi/front-dressed.svg",
  19013. extra: 713.5 / 686.5,
  19014. bottom: 0.003
  19015. }
  19016. },
  19017. front: {
  19018. height: math.unit(70, "cm"),
  19019. weight: math.unit(5, "kg"),
  19020. name: "Front",
  19021. image: {
  19022. source: "./media/characters/sebi/front.svg",
  19023. extra: 713.5 / 686.5,
  19024. bottom: 0.003
  19025. }
  19026. }
  19027. },
  19028. [
  19029. {
  19030. name: "Normal",
  19031. height: math.unit(70, "cm"),
  19032. default: true
  19033. },
  19034. {
  19035. name: "Macro",
  19036. height: math.unit(8, "meters")
  19037. },
  19038. ]
  19039. ))
  19040. characterMakers.push(() => makeCharacter(
  19041. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19042. {
  19043. front: {
  19044. height: math.unit(6, "feet"),
  19045. weight: math.unit(150, "lb"),
  19046. name: "Front",
  19047. image: {
  19048. source: "./media/characters/typhek/front.svg",
  19049. extra: 1948 / 1929,
  19050. bottom: 0.025
  19051. }
  19052. },
  19053. side: {
  19054. height: math.unit(6, "feet"),
  19055. weight: math.unit(150, "lb"),
  19056. name: "Side",
  19057. image: {
  19058. source: "./media/characters/typhek/side.svg",
  19059. extra: 2034 / 2010,
  19060. bottom: 0.003
  19061. }
  19062. },
  19063. back: {
  19064. height: math.unit(6, "feet"),
  19065. weight: math.unit(150, "lb"),
  19066. name: "Back",
  19067. image: {
  19068. source: "./media/characters/typhek/back.svg",
  19069. extra: 2005 / 1978,
  19070. bottom: 0.004
  19071. }
  19072. },
  19073. palm: {
  19074. height: math.unit(1.2, "feet"),
  19075. name: "Palm",
  19076. image: {
  19077. source: "./media/characters/typhek/palm.svg"
  19078. }
  19079. },
  19080. fist: {
  19081. height: math.unit(1.1, "feet"),
  19082. name: "Fist",
  19083. image: {
  19084. source: "./media/characters/typhek/fist.svg"
  19085. }
  19086. },
  19087. foot: {
  19088. height: math.unit(1.57, "feet"),
  19089. name: "Foot",
  19090. image: {
  19091. source: "./media/characters/typhek/foot.svg"
  19092. }
  19093. },
  19094. sole: {
  19095. height: math.unit(2.05, "feet"),
  19096. name: "Sole",
  19097. image: {
  19098. source: "./media/characters/typhek/sole.svg"
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Macro",
  19105. height: math.unit(40, "stories"),
  19106. default: true
  19107. },
  19108. {
  19109. name: "Megamacro",
  19110. height: math.unit(1, "mile")
  19111. },
  19112. {
  19113. name: "Gigamacro",
  19114. height: math.unit(4000, "solarradii")
  19115. },
  19116. {
  19117. name: "Universal",
  19118. height: math.unit(1.1, "universes")
  19119. }
  19120. ]
  19121. ))
  19122. characterMakers.push(() => makeCharacter(
  19123. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19124. {
  19125. side: {
  19126. height: math.unit(5 + 7 / 12, "feet"),
  19127. weight: math.unit(150, "lb"),
  19128. name: "Side",
  19129. image: {
  19130. source: "./media/characters/kassy/side.svg",
  19131. extra: 1280 / 1225,
  19132. bottom: 0.002
  19133. }
  19134. },
  19135. front: {
  19136. height: math.unit(5 + 7 / 12, "feet"),
  19137. weight: math.unit(150, "lb"),
  19138. name: "Front",
  19139. image: {
  19140. source: "./media/characters/kassy/front.svg",
  19141. extra: 1280 / 1225,
  19142. bottom: 0.025
  19143. }
  19144. },
  19145. back: {
  19146. height: math.unit(5 + 7 / 12, "feet"),
  19147. weight: math.unit(150, "lb"),
  19148. name: "Back",
  19149. image: {
  19150. source: "./media/characters/kassy/back.svg",
  19151. extra: 1280 / 1225,
  19152. bottom: 0.002
  19153. }
  19154. },
  19155. foot: {
  19156. height: math.unit(1.266, "feet"),
  19157. name: "Foot",
  19158. image: {
  19159. source: "./media/characters/kassy/foot.svg"
  19160. }
  19161. },
  19162. },
  19163. [
  19164. {
  19165. name: "Normal",
  19166. height: math.unit(5 + 7 / 12, "feet")
  19167. },
  19168. {
  19169. name: "Macro",
  19170. height: math.unit(137, "feet"),
  19171. default: true
  19172. },
  19173. {
  19174. name: "Megamacro",
  19175. height: math.unit(1, "mile")
  19176. },
  19177. ]
  19178. ))
  19179. characterMakers.push(() => makeCharacter(
  19180. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19181. {
  19182. front: {
  19183. height: math.unit(6 + 1 / 12, "feet"),
  19184. weight: math.unit(200, "lb"),
  19185. name: "Front",
  19186. image: {
  19187. source: "./media/characters/neil/front.svg",
  19188. extra: 1326 / 1250,
  19189. bottom: 0.023
  19190. }
  19191. },
  19192. },
  19193. [
  19194. {
  19195. name: "Normal",
  19196. height: math.unit(6 + 1 / 12, "feet"),
  19197. default: true
  19198. },
  19199. {
  19200. name: "Macro",
  19201. height: math.unit(200, "feet")
  19202. },
  19203. ]
  19204. ))
  19205. characterMakers.push(() => makeCharacter(
  19206. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19207. {
  19208. front: {
  19209. height: math.unit(5 + 9 / 12, "feet"),
  19210. weight: math.unit(190, "lb"),
  19211. name: "Front",
  19212. image: {
  19213. source: "./media/characters/atticus/front.svg",
  19214. extra: 2934 / 2785,
  19215. bottom: 0.025
  19216. }
  19217. },
  19218. },
  19219. [
  19220. {
  19221. name: "Normal",
  19222. height: math.unit(5 + 9 / 12, "feet"),
  19223. default: true
  19224. },
  19225. {
  19226. name: "Macro",
  19227. height: math.unit(180, "feet")
  19228. },
  19229. ]
  19230. ))
  19231. characterMakers.push(() => makeCharacter(
  19232. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19233. {
  19234. side: {
  19235. height: math.unit(9, "feet"),
  19236. weight: math.unit(650, "lb"),
  19237. name: "Side",
  19238. image: {
  19239. source: "./media/characters/milo/side.svg",
  19240. extra: 2644 / 2310,
  19241. bottom: 0.032
  19242. }
  19243. },
  19244. },
  19245. [
  19246. {
  19247. name: "Normal",
  19248. height: math.unit(9, "feet"),
  19249. default: true
  19250. },
  19251. {
  19252. name: "Macro",
  19253. height: math.unit(300, "feet")
  19254. },
  19255. ]
  19256. ))
  19257. characterMakers.push(() => makeCharacter(
  19258. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19259. {
  19260. side: {
  19261. height: math.unit(8, "meters"),
  19262. weight: math.unit(90000, "kg"),
  19263. name: "Side",
  19264. image: {
  19265. source: "./media/characters/ijzer/side.svg",
  19266. extra: 2756 / 1600,
  19267. bottom: 0.01
  19268. }
  19269. },
  19270. },
  19271. [
  19272. {
  19273. name: "Small",
  19274. height: math.unit(3, "meters")
  19275. },
  19276. {
  19277. name: "Normal",
  19278. height: math.unit(8, "meters"),
  19279. default: true
  19280. },
  19281. {
  19282. name: "Normal+",
  19283. height: math.unit(10, "meters")
  19284. },
  19285. {
  19286. name: "Bigger",
  19287. height: math.unit(24, "meters")
  19288. },
  19289. {
  19290. name: "Huge",
  19291. height: math.unit(80, "meters")
  19292. },
  19293. ]
  19294. ))
  19295. characterMakers.push(() => makeCharacter(
  19296. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19297. {
  19298. front: {
  19299. height: math.unit(6 + 2 / 12, "feet"),
  19300. weight: math.unit(153, "lb"),
  19301. name: "Front",
  19302. image: {
  19303. source: "./media/characters/luca-cervicum/front.svg",
  19304. extra: 370 / 327,
  19305. bottom: 0.015
  19306. }
  19307. },
  19308. back: {
  19309. height: math.unit(6 + 2 / 12, "feet"),
  19310. weight: math.unit(153, "lb"),
  19311. name: "Back",
  19312. image: {
  19313. source: "./media/characters/luca-cervicum/back.svg",
  19314. extra: 367 / 333,
  19315. bottom: 0.005
  19316. }
  19317. },
  19318. frontGear: {
  19319. height: math.unit(6 + 2 / 12, "feet"),
  19320. weight: math.unit(173, "lb"),
  19321. name: "Front (Gear)",
  19322. image: {
  19323. source: "./media/characters/luca-cervicum/front-gear.svg",
  19324. extra: 377 / 333,
  19325. bottom: 0.006
  19326. }
  19327. },
  19328. },
  19329. [
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(6 + 2 / 12, "feet"),
  19333. default: true
  19334. },
  19335. ]
  19336. ))
  19337. characterMakers.push(() => makeCharacter(
  19338. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19339. {
  19340. front: {
  19341. height: math.unit(6 + 1 / 12, "feet"),
  19342. weight: math.unit(304, "lb"),
  19343. name: "Front",
  19344. image: {
  19345. source: "./media/characters/oliver/front.svg",
  19346. extra: 157 / 143,
  19347. bottom: 0.08
  19348. }
  19349. },
  19350. },
  19351. [
  19352. {
  19353. name: "Normal",
  19354. height: math.unit(6 + 1 / 12, "feet"),
  19355. default: true
  19356. },
  19357. ]
  19358. ))
  19359. characterMakers.push(() => makeCharacter(
  19360. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19361. {
  19362. front: {
  19363. height: math.unit(5 + 7 / 12, "feet"),
  19364. weight: math.unit(140, "lb"),
  19365. name: "Front",
  19366. image: {
  19367. source: "./media/characters/shane/front.svg",
  19368. extra: 304 / 289,
  19369. bottom: 0.005
  19370. }
  19371. },
  19372. },
  19373. [
  19374. {
  19375. name: "Normal",
  19376. height: math.unit(5 + 7 / 12, "feet"),
  19377. default: true
  19378. },
  19379. ]
  19380. ))
  19381. characterMakers.push(() => makeCharacter(
  19382. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19383. {
  19384. front: {
  19385. height: math.unit(5 + 9 / 12, "feet"),
  19386. weight: math.unit(178, "lb"),
  19387. name: "Front",
  19388. image: {
  19389. source: "./media/characters/shin/front.svg",
  19390. extra: 159 / 151,
  19391. bottom: 0.015
  19392. }
  19393. },
  19394. },
  19395. [
  19396. {
  19397. name: "Normal",
  19398. height: math.unit(5 + 9 / 12, "feet"),
  19399. default: true
  19400. },
  19401. ]
  19402. ))
  19403. characterMakers.push(() => makeCharacter(
  19404. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19405. {
  19406. front: {
  19407. height: math.unit(5 + 10 / 12, "feet"),
  19408. weight: math.unit(168, "lb"),
  19409. name: "Front",
  19410. image: {
  19411. source: "./media/characters/xerxes/front.svg",
  19412. extra: 282 / 260,
  19413. bottom: 0.045
  19414. }
  19415. },
  19416. },
  19417. [
  19418. {
  19419. name: "Normal",
  19420. height: math.unit(5 + 10 / 12, "feet"),
  19421. default: true
  19422. },
  19423. ]
  19424. ))
  19425. characterMakers.push(() => makeCharacter(
  19426. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19427. {
  19428. front: {
  19429. height: math.unit(6 + 7 / 12, "feet"),
  19430. weight: math.unit(208, "lb"),
  19431. name: "Front",
  19432. image: {
  19433. source: "./media/characters/chaska/front.svg",
  19434. extra: 332 / 319,
  19435. bottom: 0.015
  19436. }
  19437. },
  19438. },
  19439. [
  19440. {
  19441. name: "Normal",
  19442. height: math.unit(6 + 7 / 12, "feet"),
  19443. default: true
  19444. },
  19445. ]
  19446. ))
  19447. characterMakers.push(() => makeCharacter(
  19448. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19449. {
  19450. front: {
  19451. height: math.unit(5 + 8 / 12, "feet"),
  19452. weight: math.unit(208, "lb"),
  19453. name: "Front",
  19454. image: {
  19455. source: "./media/characters/enuk/front.svg",
  19456. extra: 437 / 406,
  19457. bottom: 0.02
  19458. }
  19459. },
  19460. },
  19461. [
  19462. {
  19463. name: "Normal",
  19464. height: math.unit(5 + 8 / 12, "feet"),
  19465. default: true
  19466. },
  19467. ]
  19468. ))
  19469. characterMakers.push(() => makeCharacter(
  19470. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19471. {
  19472. front: {
  19473. height: math.unit(5 + 10 / 12, "feet"),
  19474. weight: math.unit(252, "lb"),
  19475. name: "Front",
  19476. image: {
  19477. source: "./media/characters/bruun/front.svg",
  19478. extra: 197 / 187,
  19479. bottom: 0.012
  19480. }
  19481. },
  19482. },
  19483. [
  19484. {
  19485. name: "Normal",
  19486. height: math.unit(5 + 10 / 12, "feet"),
  19487. default: true
  19488. },
  19489. ]
  19490. ))
  19491. characterMakers.push(() => makeCharacter(
  19492. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19493. {
  19494. front: {
  19495. height: math.unit(6 + 10 / 12, "feet"),
  19496. weight: math.unit(255, "lb"),
  19497. name: "Front",
  19498. image: {
  19499. source: "./media/characters/alexeev/front.svg",
  19500. extra: 213 / 200,
  19501. bottom: 0.05
  19502. }
  19503. },
  19504. },
  19505. [
  19506. {
  19507. name: "Normal",
  19508. height: math.unit(6 + 10 / 12, "feet"),
  19509. default: true
  19510. },
  19511. ]
  19512. ))
  19513. characterMakers.push(() => makeCharacter(
  19514. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19515. {
  19516. front: {
  19517. height: math.unit(2 + 8 / 12, "feet"),
  19518. weight: math.unit(22, "lb"),
  19519. name: "Front",
  19520. image: {
  19521. source: "./media/characters/evelyn/front.svg",
  19522. extra: 208 / 180
  19523. }
  19524. },
  19525. },
  19526. [
  19527. {
  19528. name: "Normal",
  19529. height: math.unit(2 + 8 / 12, "feet"),
  19530. default: true
  19531. },
  19532. ]
  19533. ))
  19534. characterMakers.push(() => makeCharacter(
  19535. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19536. {
  19537. front: {
  19538. height: math.unit(5 + 9 / 12, "feet"),
  19539. weight: math.unit(139, "lb"),
  19540. name: "Front",
  19541. image: {
  19542. source: "./media/characters/inca/front.svg",
  19543. extra: 294 / 291,
  19544. bottom: 0.03
  19545. }
  19546. },
  19547. },
  19548. [
  19549. {
  19550. name: "Normal",
  19551. height: math.unit(5 + 9 / 12, "feet"),
  19552. default: true
  19553. },
  19554. ]
  19555. ))
  19556. characterMakers.push(() => makeCharacter(
  19557. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19558. {
  19559. front: {
  19560. height: math.unit(5 + 1 / 12, "feet"),
  19561. weight: math.unit(84, "lb"),
  19562. name: "Front",
  19563. image: {
  19564. source: "./media/characters/magdalene/front.svg",
  19565. extra: 293 / 273
  19566. }
  19567. },
  19568. },
  19569. [
  19570. {
  19571. name: "Normal",
  19572. height: math.unit(5 + 1 / 12, "feet"),
  19573. default: true
  19574. },
  19575. ]
  19576. ))
  19577. characterMakers.push(() => makeCharacter(
  19578. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19579. {
  19580. front: {
  19581. height: math.unit(6 + 3 / 12, "feet"),
  19582. weight: math.unit(185, "lb"),
  19583. name: "Front",
  19584. image: {
  19585. source: "./media/characters/mera/front.svg",
  19586. extra: 291 / 277,
  19587. bottom: 0.03
  19588. }
  19589. },
  19590. },
  19591. [
  19592. {
  19593. name: "Normal",
  19594. height: math.unit(6 + 3 / 12, "feet"),
  19595. default: true
  19596. },
  19597. ]
  19598. ))
  19599. characterMakers.push(() => makeCharacter(
  19600. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19601. {
  19602. front: {
  19603. height: math.unit(6 + 7 / 12, "feet"),
  19604. weight: math.unit(160, "lb"),
  19605. name: "Front",
  19606. image: {
  19607. source: "./media/characters/ceres/front.svg",
  19608. extra: 1023 / 950,
  19609. bottom: 0.027
  19610. }
  19611. },
  19612. back: {
  19613. height: math.unit(6 + 7 / 12, "feet"),
  19614. weight: math.unit(160, "lb"),
  19615. name: "Back",
  19616. image: {
  19617. source: "./media/characters/ceres/back.svg",
  19618. extra: 1023 / 950
  19619. }
  19620. },
  19621. },
  19622. [
  19623. {
  19624. name: "Normal",
  19625. height: math.unit(6 + 7 / 12, "feet"),
  19626. default: true
  19627. },
  19628. ]
  19629. ))
  19630. characterMakers.push(() => makeCharacter(
  19631. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19632. {
  19633. front: {
  19634. height: math.unit(5 + 10 / 12, "feet"),
  19635. weight: math.unit(150, "lb"),
  19636. name: "Front",
  19637. image: {
  19638. source: "./media/characters/kris/front.svg",
  19639. extra: 885 / 803,
  19640. bottom: 0.03
  19641. }
  19642. },
  19643. },
  19644. [
  19645. {
  19646. name: "Normal",
  19647. height: math.unit(5 + 10 / 12, "feet"),
  19648. default: true
  19649. },
  19650. ]
  19651. ))
  19652. characterMakers.push(() => makeCharacter(
  19653. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19654. {
  19655. front: {
  19656. height: math.unit(7, "feet"),
  19657. weight: math.unit(120, "kg"),
  19658. name: "Front",
  19659. image: {
  19660. source: "./media/characters/taluthus/front.svg",
  19661. extra: 903 / 833,
  19662. bottom: 0.015
  19663. }
  19664. },
  19665. },
  19666. [
  19667. {
  19668. name: "Normal",
  19669. height: math.unit(7, "feet"),
  19670. default: true
  19671. },
  19672. {
  19673. name: "Macro",
  19674. height: math.unit(300, "feet")
  19675. },
  19676. ]
  19677. ))
  19678. characterMakers.push(() => makeCharacter(
  19679. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19680. {
  19681. front: {
  19682. height: math.unit(5 + 9 / 12, "feet"),
  19683. weight: math.unit(145, "lb"),
  19684. name: "Front",
  19685. image: {
  19686. source: "./media/characters/dawn/front.svg",
  19687. extra: 2094 / 2016,
  19688. bottom: 0.025
  19689. }
  19690. },
  19691. back: {
  19692. height: math.unit(5 + 9 / 12, "feet"),
  19693. weight: math.unit(160, "lb"),
  19694. name: "Back",
  19695. image: {
  19696. source: "./media/characters/dawn/back.svg",
  19697. extra: 2112 / 2080,
  19698. bottom: 0.005
  19699. }
  19700. },
  19701. },
  19702. [
  19703. {
  19704. name: "Normal",
  19705. height: math.unit(6 + 7 / 12, "feet"),
  19706. default: true
  19707. },
  19708. ]
  19709. ))
  19710. characterMakers.push(() => makeCharacter(
  19711. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19712. {
  19713. anthro: {
  19714. height: math.unit(8 + 3 / 12, "feet"),
  19715. weight: math.unit(450, "lb"),
  19716. name: "Anthro",
  19717. image: {
  19718. source: "./media/characters/arador/anthro.svg",
  19719. extra: 1835 / 1718,
  19720. bottom: 0.025
  19721. }
  19722. },
  19723. feral: {
  19724. height: math.unit(4, "feet"),
  19725. weight: math.unit(200, "lb"),
  19726. name: "Feral",
  19727. image: {
  19728. source: "./media/characters/arador/feral.svg",
  19729. extra: 1683 / 1514,
  19730. bottom: 0.07
  19731. }
  19732. },
  19733. },
  19734. [
  19735. {
  19736. name: "Normal",
  19737. height: math.unit(8 + 3 / 12, "feet")
  19738. },
  19739. {
  19740. name: "Macro",
  19741. height: math.unit(82.5, "feet"),
  19742. default: true
  19743. },
  19744. ]
  19745. ))
  19746. characterMakers.push(() => makeCharacter(
  19747. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19748. {
  19749. front: {
  19750. height: math.unit(5 + 10 / 12, "feet"),
  19751. weight: math.unit(125, "lb"),
  19752. name: "Front",
  19753. image: {
  19754. source: "./media/characters/dharsi/front.svg",
  19755. extra: 716 / 630,
  19756. bottom: 0.035
  19757. }
  19758. },
  19759. },
  19760. [
  19761. {
  19762. name: "Nano",
  19763. height: math.unit(100, "nm")
  19764. },
  19765. {
  19766. name: "Micro",
  19767. height: math.unit(2, "inches")
  19768. },
  19769. {
  19770. name: "Normal",
  19771. height: math.unit(5 + 10 / 12, "feet"),
  19772. default: true
  19773. },
  19774. {
  19775. name: "Macro",
  19776. height: math.unit(1000, "feet")
  19777. },
  19778. {
  19779. name: "Megamacro",
  19780. height: math.unit(10, "miles")
  19781. },
  19782. {
  19783. name: "Gigamacro",
  19784. height: math.unit(3000, "miles")
  19785. },
  19786. {
  19787. name: "Teramacro",
  19788. height: math.unit(500000, "miles")
  19789. },
  19790. {
  19791. name: "Teramacro+",
  19792. height: math.unit(30, "galaxies")
  19793. },
  19794. ]
  19795. ))
  19796. characterMakers.push(() => makeCharacter(
  19797. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19798. {
  19799. front: {
  19800. height: math.unit(6, "feet"),
  19801. weight: math.unit(150, "lb"),
  19802. name: "Front",
  19803. image: {
  19804. source: "./media/characters/deathy/front.svg",
  19805. extra: 1552 / 1463,
  19806. bottom: 0.025
  19807. }
  19808. },
  19809. side: {
  19810. height: math.unit(6, "feet"),
  19811. weight: math.unit(150, "lb"),
  19812. name: "Side",
  19813. image: {
  19814. source: "./media/characters/deathy/side.svg",
  19815. extra: 1604 / 1455,
  19816. bottom: 0.025
  19817. }
  19818. },
  19819. back: {
  19820. height: math.unit(6, "feet"),
  19821. weight: math.unit(150, "lb"),
  19822. name: "Back",
  19823. image: {
  19824. source: "./media/characters/deathy/back.svg",
  19825. extra: 1580 / 1463,
  19826. bottom: 0.005
  19827. }
  19828. },
  19829. },
  19830. [
  19831. {
  19832. name: "Micro",
  19833. height: math.unit(5, "millimeters")
  19834. },
  19835. {
  19836. name: "Normal",
  19837. height: math.unit(6 + 5 / 12, "feet"),
  19838. default: true
  19839. },
  19840. ]
  19841. ))
  19842. characterMakers.push(() => makeCharacter(
  19843. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19844. {
  19845. front: {
  19846. height: math.unit(16, "feet"),
  19847. weight: math.unit(4000, "lb"),
  19848. name: "Front",
  19849. image: {
  19850. source: "./media/characters/juniper/front.svg",
  19851. bottom: 0.04
  19852. }
  19853. },
  19854. },
  19855. [
  19856. {
  19857. name: "Normal",
  19858. height: math.unit(16, "feet"),
  19859. default: true
  19860. },
  19861. ]
  19862. ))
  19863. characterMakers.push(() => makeCharacter(
  19864. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19865. {
  19866. front: {
  19867. height: math.unit(6, "feet"),
  19868. weight: math.unit(150, "lb"),
  19869. name: "Front",
  19870. image: {
  19871. source: "./media/characters/hipster/front.svg",
  19872. extra: 1312 / 1209,
  19873. bottom: 0.025
  19874. }
  19875. },
  19876. back: {
  19877. height: math.unit(6, "feet"),
  19878. weight: math.unit(150, "lb"),
  19879. name: "Back",
  19880. image: {
  19881. source: "./media/characters/hipster/back.svg",
  19882. extra: 1281 / 1196,
  19883. bottom: 0.01
  19884. }
  19885. },
  19886. },
  19887. [
  19888. {
  19889. name: "Micro",
  19890. height: math.unit(1, "mm")
  19891. },
  19892. {
  19893. name: "Normal",
  19894. height: math.unit(4, "inches"),
  19895. default: true
  19896. },
  19897. {
  19898. name: "Macro",
  19899. height: math.unit(500, "feet")
  19900. },
  19901. {
  19902. name: "Megamacro",
  19903. height: math.unit(1000, "miles")
  19904. },
  19905. ]
  19906. ))
  19907. characterMakers.push(() => makeCharacter(
  19908. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19909. {
  19910. front: {
  19911. height: math.unit(6, "feet"),
  19912. weight: math.unit(150, "lb"),
  19913. name: "Front",
  19914. image: {
  19915. source: "./media/characters/tendirmuldr/front.svg",
  19916. extra: 1878 / 1772,
  19917. bottom: 0.015
  19918. }
  19919. },
  19920. },
  19921. [
  19922. {
  19923. name: "Megamacro",
  19924. height: math.unit(1500, "miles"),
  19925. default: true
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19931. {
  19932. front: {
  19933. height: math.unit(14, "feet"),
  19934. weight: math.unit(12000, "lb"),
  19935. name: "Front",
  19936. image: {
  19937. source: "./media/characters/mort/front.svg",
  19938. extra: 365 / 318,
  19939. bottom: 0.01
  19940. }
  19941. },
  19942. side: {
  19943. height: math.unit(14, "feet"),
  19944. weight: math.unit(12000, "lb"),
  19945. name: "Side",
  19946. image: {
  19947. source: "./media/characters/mort/side.svg",
  19948. extra: 365 / 318,
  19949. bottom: 0.052
  19950. },
  19951. default: true
  19952. },
  19953. back: {
  19954. height: math.unit(14, "feet"),
  19955. weight: math.unit(12000, "lb"),
  19956. name: "Back",
  19957. image: {
  19958. source: "./media/characters/mort/back.svg",
  19959. extra: 371 / 332,
  19960. bottom: 0.18
  19961. }
  19962. },
  19963. },
  19964. [
  19965. {
  19966. name: "Normal",
  19967. height: math.unit(14, "feet"),
  19968. default: true
  19969. },
  19970. ]
  19971. ))
  19972. characterMakers.push(() => makeCharacter(
  19973. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19974. {
  19975. front: {
  19976. height: math.unit(8, "feet"),
  19977. weight: math.unit(1, "ton"),
  19978. name: "Front",
  19979. image: {
  19980. source: "./media/characters/lycoa/front.svg",
  19981. extra: 1875 / 1789,
  19982. bottom: 0.022
  19983. }
  19984. },
  19985. back: {
  19986. height: math.unit(8, "feet"),
  19987. weight: math.unit(1, "ton"),
  19988. name: "Back",
  19989. image: {
  19990. source: "./media/characters/lycoa/back.svg",
  19991. extra: 1835 / 1781,
  19992. bottom: 0.03
  19993. }
  19994. },
  19995. head: {
  19996. height: math.unit(2.1, "feet"),
  19997. name: "Head",
  19998. image: {
  19999. source: "./media/characters/lycoa/head.svg"
  20000. }
  20001. },
  20002. tailmaw: {
  20003. height: math.unit(1.9, "feet"),
  20004. name: "Tailmaw",
  20005. image: {
  20006. source: "./media/characters/lycoa/tailmaw.svg"
  20007. }
  20008. },
  20009. tentacles: {
  20010. height: math.unit(2.1, "feet"),
  20011. name: "Tentacles",
  20012. image: {
  20013. source: "./media/characters/lycoa/tentacles.svg"
  20014. }
  20015. },
  20016. dick: {
  20017. height: math.unit(1.73, "feet"),
  20018. name: "Dick",
  20019. image: {
  20020. source: "./media/characters/lycoa/dick.svg"
  20021. }
  20022. },
  20023. },
  20024. [
  20025. {
  20026. name: "Normal",
  20027. height: math.unit(8, "feet"),
  20028. default: true
  20029. },
  20030. {
  20031. name: "Macro",
  20032. height: math.unit(30, "feet")
  20033. },
  20034. ]
  20035. ))
  20036. characterMakers.push(() => makeCharacter(
  20037. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20038. {
  20039. front: {
  20040. height: math.unit(4 + 2 / 12, "feet"),
  20041. weight: math.unit(70, "lb"),
  20042. name: "Front",
  20043. image: {
  20044. source: "./media/characters/naldara/front.svg",
  20045. extra: 841 / 720,
  20046. bottom: 0.04
  20047. }
  20048. },
  20049. naga: {
  20050. height: math.unit(23, "feet"),
  20051. weight: math.unit(15000, "kg"),
  20052. name: "Naga",
  20053. image: {
  20054. source: "./media/characters/naldara/naga.svg",
  20055. extra: 3290 / 2959,
  20056. bottom: 124 / 3432
  20057. }
  20058. },
  20059. },
  20060. [
  20061. {
  20062. name: "Normal",
  20063. height: math.unit(4 + 2 / 12, "feet"),
  20064. default: true
  20065. },
  20066. ]
  20067. ))
  20068. characterMakers.push(() => makeCharacter(
  20069. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20070. {
  20071. front: {
  20072. height: math.unit(13 + 7 / 12, "feet"),
  20073. weight: math.unit(1500, "lb"),
  20074. name: "Front",
  20075. image: {
  20076. source: "./media/characters/briar/front.svg",
  20077. extra: 626 / 596,
  20078. bottom: 0.08
  20079. }
  20080. },
  20081. },
  20082. [
  20083. {
  20084. name: "Normal",
  20085. height: math.unit(13 + 7 / 12, "feet"),
  20086. default: true
  20087. },
  20088. ]
  20089. ))
  20090. characterMakers.push(() => makeCharacter(
  20091. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20092. {
  20093. side: {
  20094. height: math.unit(10, "feet"),
  20095. weight: math.unit(500, "lb"),
  20096. name: "Side",
  20097. image: {
  20098. source: "./media/characters/vanguard/side.svg",
  20099. extra: 502 / 425,
  20100. bottom: 0.087
  20101. }
  20102. },
  20103. },
  20104. [
  20105. {
  20106. name: "Normal",
  20107. height: math.unit(10, "feet"),
  20108. default: true
  20109. },
  20110. ]
  20111. ))
  20112. characterMakers.push(() => makeCharacter(
  20113. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20114. {
  20115. front: {
  20116. height: math.unit(7.5, "feet"),
  20117. weight: math.unit(2, "lb"),
  20118. name: "Front",
  20119. image: {
  20120. source: "./media/characters/artemis/front.svg",
  20121. extra: 1192 / 1075,
  20122. bottom: 0.07
  20123. }
  20124. },
  20125. frontNsfw: {
  20126. height: math.unit(7.5, "feet"),
  20127. weight: math.unit(2, "lb"),
  20128. name: "Front (NSFW)",
  20129. image: {
  20130. source: "./media/characters/artemis/front-nsfw.svg",
  20131. extra: 1192 / 1075,
  20132. bottom: 0.07
  20133. }
  20134. },
  20135. frontNsfwer: {
  20136. height: math.unit(7.5, "feet"),
  20137. weight: math.unit(2, "lb"),
  20138. name: "Front (NSFW-er)",
  20139. image: {
  20140. source: "./media/characters/artemis/front-nsfwer.svg",
  20141. extra: 1192 / 1075,
  20142. bottom: 0.07
  20143. }
  20144. },
  20145. side: {
  20146. height: math.unit(7.5, "feet"),
  20147. weight: math.unit(2, "lb"),
  20148. name: "Side",
  20149. image: {
  20150. source: "./media/characters/artemis/side.svg",
  20151. extra: 1192 / 1075,
  20152. bottom: 0.07
  20153. }
  20154. },
  20155. sideNsfw: {
  20156. height: math.unit(7.5, "feet"),
  20157. weight: math.unit(2, "lb"),
  20158. name: "Side (NSFW)",
  20159. image: {
  20160. source: "./media/characters/artemis/side-nsfw.svg",
  20161. extra: 1192 / 1075,
  20162. bottom: 0.07
  20163. }
  20164. },
  20165. sideNsfwer: {
  20166. height: math.unit(7.5, "feet"),
  20167. weight: math.unit(2, "lb"),
  20168. name: "Side (NSFW-er)",
  20169. image: {
  20170. source: "./media/characters/artemis/side-nsfwer.svg",
  20171. extra: 1192 / 1075,
  20172. bottom: 0.07
  20173. }
  20174. },
  20175. maw: {
  20176. height: math.unit(1.1, "feet"),
  20177. name: "Maw",
  20178. image: {
  20179. source: "./media/characters/artemis/maw.svg"
  20180. }
  20181. },
  20182. stomach: {
  20183. height: math.unit(0.95, "feet"),
  20184. name: "Stomach",
  20185. image: {
  20186. source: "./media/characters/artemis/stomach.svg"
  20187. }
  20188. },
  20189. dickCanine: {
  20190. height: math.unit(1, "feet"),
  20191. name: "Dick (Canine)",
  20192. image: {
  20193. source: "./media/characters/artemis/dick-canine.svg"
  20194. }
  20195. },
  20196. dickEquine: {
  20197. height: math.unit(0.85, "feet"),
  20198. name: "Dick (Equine)",
  20199. image: {
  20200. source: "./media/characters/artemis/dick-equine.svg"
  20201. }
  20202. },
  20203. dickExotic: {
  20204. height: math.unit(0.85, "feet"),
  20205. name: "Dick (Exotic)",
  20206. image: {
  20207. source: "./media/characters/artemis/dick-exotic.svg"
  20208. }
  20209. },
  20210. },
  20211. [
  20212. {
  20213. name: "Normal",
  20214. height: math.unit(7.5, "feet"),
  20215. default: true
  20216. },
  20217. {
  20218. name: "Enlarged",
  20219. height: math.unit(12, "feet")
  20220. },
  20221. ]
  20222. ))
  20223. characterMakers.push(() => makeCharacter(
  20224. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20225. {
  20226. front: {
  20227. height: math.unit(5 + 3 / 12, "feet"),
  20228. weight: math.unit(160, "lb"),
  20229. name: "Front",
  20230. image: {
  20231. source: "./media/characters/kira/front.svg",
  20232. extra: 906 / 786,
  20233. bottom: 0.01
  20234. }
  20235. },
  20236. back: {
  20237. height: math.unit(5 + 3 / 12, "feet"),
  20238. weight: math.unit(160, "lb"),
  20239. name: "Back",
  20240. image: {
  20241. source: "./media/characters/kira/back.svg",
  20242. extra: 882 / 757,
  20243. bottom: 0.005
  20244. }
  20245. },
  20246. frontDressed: {
  20247. height: math.unit(5 + 3 / 12, "feet"),
  20248. weight: math.unit(160, "lb"),
  20249. name: "Front (Dressed)",
  20250. image: {
  20251. source: "./media/characters/kira/front-dressed.svg",
  20252. extra: 906 / 786,
  20253. bottom: 0.01
  20254. }
  20255. },
  20256. beans: {
  20257. height: math.unit(0.92, "feet"),
  20258. name: "Beans",
  20259. image: {
  20260. source: "./media/characters/kira/beans.svg"
  20261. }
  20262. },
  20263. },
  20264. [
  20265. {
  20266. name: "Normal",
  20267. height: math.unit(5 + 3 / 12, "feet"),
  20268. default: true
  20269. },
  20270. ]
  20271. ))
  20272. characterMakers.push(() => makeCharacter(
  20273. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20274. {
  20275. front: {
  20276. height: math.unit(5 + 4 / 12, "feet"),
  20277. weight: math.unit(145, "lb"),
  20278. name: "Front",
  20279. image: {
  20280. source: "./media/characters/scramble/front.svg",
  20281. extra: 763 / 727,
  20282. bottom: 0.05
  20283. }
  20284. },
  20285. back: {
  20286. height: math.unit(5 + 4 / 12, "feet"),
  20287. weight: math.unit(145, "lb"),
  20288. name: "Back",
  20289. image: {
  20290. source: "./media/characters/scramble/back.svg",
  20291. extra: 826 / 737,
  20292. bottom: 0.002
  20293. }
  20294. },
  20295. },
  20296. [
  20297. {
  20298. name: "Normal",
  20299. height: math.unit(5 + 4 / 12, "feet"),
  20300. default: true
  20301. },
  20302. ]
  20303. ))
  20304. characterMakers.push(() => makeCharacter(
  20305. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20306. {
  20307. side: {
  20308. height: math.unit(6 + 2 / 12, "feet"),
  20309. weight: math.unit(190, "lb"),
  20310. name: "Side",
  20311. image: {
  20312. source: "./media/characters/biscuit/side.svg",
  20313. extra: 858 / 791,
  20314. bottom: 0.044
  20315. }
  20316. },
  20317. },
  20318. [
  20319. {
  20320. name: "Normal",
  20321. height: math.unit(6 + 2 / 12, "feet"),
  20322. default: true
  20323. },
  20324. ]
  20325. ))
  20326. characterMakers.push(() => makeCharacter(
  20327. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20328. {
  20329. front: {
  20330. height: math.unit(5 + 2 / 12, "feet"),
  20331. weight: math.unit(120, "lb"),
  20332. name: "Front",
  20333. image: {
  20334. source: "./media/characters/poffin/front.svg",
  20335. extra: 786 / 680,
  20336. bottom: 0.005
  20337. }
  20338. },
  20339. },
  20340. [
  20341. {
  20342. name: "Normal",
  20343. height: math.unit(5 + 2 / 12, "feet"),
  20344. default: true
  20345. },
  20346. ]
  20347. ))
  20348. characterMakers.push(() => makeCharacter(
  20349. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20350. {
  20351. front: {
  20352. height: math.unit(6 + 3 / 12, "feet"),
  20353. weight: math.unit(519, "lb"),
  20354. name: "Front",
  20355. image: {
  20356. source: "./media/characters/dhari/front.svg",
  20357. extra: 1048 / 946,
  20358. bottom: 0.015
  20359. }
  20360. },
  20361. back: {
  20362. height: math.unit(6 + 3 / 12, "feet"),
  20363. weight: math.unit(519, "lb"),
  20364. name: "Back",
  20365. image: {
  20366. source: "./media/characters/dhari/back.svg",
  20367. extra: 1048 / 931,
  20368. bottom: 0.005
  20369. }
  20370. },
  20371. frontDressed: {
  20372. height: math.unit(6 + 3 / 12, "feet"),
  20373. weight: math.unit(519, "lb"),
  20374. name: "Front (Dressed)",
  20375. image: {
  20376. source: "./media/characters/dhari/front-dressed.svg",
  20377. extra: 1713 / 1546,
  20378. bottom: 0.02
  20379. }
  20380. },
  20381. backDressed: {
  20382. height: math.unit(6 + 3 / 12, "feet"),
  20383. weight: math.unit(519, "lb"),
  20384. name: "Back (Dressed)",
  20385. image: {
  20386. source: "./media/characters/dhari/back-dressed.svg",
  20387. extra: 1699 / 1537,
  20388. bottom: 0.01
  20389. }
  20390. },
  20391. maw: {
  20392. height: math.unit(0.95, "feet"),
  20393. name: "Maw",
  20394. image: {
  20395. source: "./media/characters/dhari/maw.svg"
  20396. }
  20397. },
  20398. wereFront: {
  20399. height: math.unit(12 + 8 / 12, "feet"),
  20400. weight: math.unit(4000, "lb"),
  20401. name: "Front (Were)",
  20402. image: {
  20403. source: "./media/characters/dhari/were-front.svg",
  20404. extra: 1065 / 969,
  20405. bottom: 0.015
  20406. }
  20407. },
  20408. wereBack: {
  20409. height: math.unit(12 + 8 / 12, "feet"),
  20410. weight: math.unit(4000, "lb"),
  20411. name: "Back (Were)",
  20412. image: {
  20413. source: "./media/characters/dhari/were-back.svg",
  20414. extra: 1065 / 969,
  20415. bottom: 0.012
  20416. }
  20417. },
  20418. wereMaw: {
  20419. height: math.unit(0.625, "meters"),
  20420. name: "Maw (Were)",
  20421. image: {
  20422. source: "./media/characters/dhari/were-maw.svg"
  20423. }
  20424. },
  20425. },
  20426. [
  20427. {
  20428. name: "Normal",
  20429. height: math.unit(6 + 3 / 12, "feet"),
  20430. default: true
  20431. },
  20432. ]
  20433. ))
  20434. characterMakers.push(() => makeCharacter(
  20435. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20436. {
  20437. anthro: {
  20438. height: math.unit(5 + 7 / 12, "feet"),
  20439. weight: math.unit(175, "lb"),
  20440. name: "Anthro",
  20441. image: {
  20442. source: "./media/characters/rena-dyne/anthro.svg",
  20443. extra: 1849 / 1785,
  20444. bottom: 0.005
  20445. }
  20446. },
  20447. taur: {
  20448. height: math.unit(15 + 6 / 12, "feet"),
  20449. weight: math.unit(8000, "lb"),
  20450. name: "Taur",
  20451. image: {
  20452. source: "./media/characters/rena-dyne/taur.svg",
  20453. extra: 2315 / 2234,
  20454. bottom: 0.033
  20455. }
  20456. },
  20457. },
  20458. [
  20459. {
  20460. name: "Normal",
  20461. height: math.unit(5 + 7 / 12, "feet"),
  20462. default: true
  20463. },
  20464. ]
  20465. ))
  20466. characterMakers.push(() => makeCharacter(
  20467. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20468. {
  20469. front: {
  20470. height: math.unit(8, "feet"),
  20471. weight: math.unit(600, "lb"),
  20472. name: "Front",
  20473. image: {
  20474. source: "./media/characters/weremeep/front.svg",
  20475. extra: 967 / 862,
  20476. bottom: 0.01
  20477. }
  20478. },
  20479. },
  20480. [
  20481. {
  20482. name: "Normal",
  20483. height: math.unit(8, "feet"),
  20484. default: true
  20485. },
  20486. {
  20487. name: "Lorg",
  20488. height: math.unit(12, "feet")
  20489. },
  20490. {
  20491. name: "Oh Lawd She Comin'",
  20492. height: math.unit(20, "feet")
  20493. },
  20494. ]
  20495. ))
  20496. characterMakers.push(() => makeCharacter(
  20497. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20498. {
  20499. front: {
  20500. height: math.unit(4, "feet"),
  20501. weight: math.unit(90, "lb"),
  20502. name: "Front",
  20503. image: {
  20504. source: "./media/characters/reza/front.svg",
  20505. extra: 1183 / 1111,
  20506. bottom: 0.017
  20507. }
  20508. },
  20509. back: {
  20510. height: math.unit(4, "feet"),
  20511. weight: math.unit(90, "lb"),
  20512. name: "Back",
  20513. image: {
  20514. source: "./media/characters/reza/back.svg",
  20515. extra: 1183 / 1111,
  20516. bottom: 0.01
  20517. }
  20518. },
  20519. drake: {
  20520. height: math.unit(30, "feet"),
  20521. weight: math.unit(246960, "lb"),
  20522. name: "Drake",
  20523. image: {
  20524. source: "./media/characters/reza/drake.svg",
  20525. extra: 2350 / 2024,
  20526. bottom: 60.7 / 2403
  20527. }
  20528. },
  20529. },
  20530. [
  20531. {
  20532. name: "Normal",
  20533. height: math.unit(4, "feet"),
  20534. default: true
  20535. },
  20536. ]
  20537. ))
  20538. characterMakers.push(() => makeCharacter(
  20539. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20540. {
  20541. side: {
  20542. height: math.unit(15, "feet"),
  20543. weight: math.unit(14, "tons"),
  20544. name: "Side",
  20545. image: {
  20546. source: "./media/characters/athea/side.svg",
  20547. extra: 960 / 540,
  20548. bottom: 0.003
  20549. }
  20550. },
  20551. sitting: {
  20552. height: math.unit(6 * 2.85, "feet"),
  20553. weight: math.unit(14, "tons"),
  20554. name: "Sitting",
  20555. image: {
  20556. source: "./media/characters/athea/sitting.svg",
  20557. extra: 621 / 581,
  20558. bottom: 0.075
  20559. }
  20560. },
  20561. maw: {
  20562. height: math.unit(7.59498031496063, "feet"),
  20563. name: "Maw",
  20564. image: {
  20565. source: "./media/characters/athea/maw.svg"
  20566. }
  20567. },
  20568. },
  20569. [
  20570. {
  20571. name: "Lap Cat",
  20572. height: math.unit(2.5, "feet")
  20573. },
  20574. {
  20575. name: "Minimacro",
  20576. height: math.unit(15, "feet"),
  20577. default: true
  20578. },
  20579. {
  20580. name: "Macro",
  20581. height: math.unit(120, "feet")
  20582. },
  20583. {
  20584. name: "Macro+",
  20585. height: math.unit(640, "feet")
  20586. },
  20587. {
  20588. name: "Colossus",
  20589. height: math.unit(2.2, "miles")
  20590. },
  20591. ]
  20592. ))
  20593. characterMakers.push(() => makeCharacter(
  20594. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20595. {
  20596. front: {
  20597. height: math.unit(8 + 8 / 12, "feet"),
  20598. weight: math.unit(130, "kg"),
  20599. name: "Front",
  20600. image: {
  20601. source: "./media/characters/seroko/front.svg",
  20602. extra: 1385 / 1280,
  20603. bottom: 0.025
  20604. }
  20605. },
  20606. back: {
  20607. height: math.unit(8 + 8 / 12, "feet"),
  20608. weight: math.unit(130, "kg"),
  20609. name: "Back",
  20610. image: {
  20611. source: "./media/characters/seroko/back.svg",
  20612. extra: 1369 / 1238,
  20613. bottom: 0.018
  20614. }
  20615. },
  20616. frontDressed: {
  20617. height: math.unit(8 + 8 / 12, "feet"),
  20618. weight: math.unit(130, "kg"),
  20619. name: "Front (Dressed)",
  20620. image: {
  20621. source: "./media/characters/seroko/front-dressed.svg",
  20622. extra: 1366 / 1275,
  20623. bottom: 0.03
  20624. }
  20625. },
  20626. },
  20627. [
  20628. {
  20629. name: "Normal",
  20630. height: math.unit(8 + 8 / 12, "feet"),
  20631. default: true
  20632. },
  20633. ]
  20634. ))
  20635. characterMakers.push(() => makeCharacter(
  20636. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20637. {
  20638. front: {
  20639. height: math.unit(5.5, "feet"),
  20640. weight: math.unit(160, "lb"),
  20641. name: "Front",
  20642. image: {
  20643. source: "./media/characters/quatzi/front.svg",
  20644. extra: 2346 / 2242,
  20645. bottom: 0.015
  20646. }
  20647. },
  20648. },
  20649. [
  20650. {
  20651. name: "Normal",
  20652. height: math.unit(5.5, "feet"),
  20653. default: true
  20654. },
  20655. {
  20656. name: "Big",
  20657. height: math.unit(7.7, "feet")
  20658. },
  20659. ]
  20660. ))
  20661. characterMakers.push(() => makeCharacter(
  20662. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20663. {
  20664. front: {
  20665. height: math.unit(5 + 11 / 12, "feet"),
  20666. weight: math.unit(180, "lb"),
  20667. name: "Front",
  20668. image: {
  20669. source: "./media/characters/sen/front.svg",
  20670. extra: 1321 / 1254,
  20671. bottom: 0.015
  20672. }
  20673. },
  20674. side: {
  20675. height: math.unit(5 + 11 / 12, "feet"),
  20676. weight: math.unit(180, "lb"),
  20677. name: "Side",
  20678. image: {
  20679. source: "./media/characters/sen/side.svg",
  20680. extra: 1321 / 1254,
  20681. bottom: 0.007
  20682. }
  20683. },
  20684. back: {
  20685. height: math.unit(5 + 11 / 12, "feet"),
  20686. weight: math.unit(180, "lb"),
  20687. name: "Back",
  20688. image: {
  20689. source: "./media/characters/sen/back.svg",
  20690. extra: 1321 / 1254
  20691. }
  20692. },
  20693. },
  20694. [
  20695. {
  20696. name: "Normal",
  20697. height: math.unit(5 + 11 / 12, "feet"),
  20698. default: true
  20699. },
  20700. ]
  20701. ))
  20702. characterMakers.push(() => makeCharacter(
  20703. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20704. {
  20705. front: {
  20706. height: math.unit(166.6, "cm"),
  20707. weight: math.unit(66.6, "kg"),
  20708. name: "Front",
  20709. image: {
  20710. source: "./media/characters/fruity/front.svg",
  20711. extra: 1510 / 1386,
  20712. bottom: 0.04
  20713. }
  20714. },
  20715. back: {
  20716. height: math.unit(166.6, "cm"),
  20717. weight: math.unit(66.6, "lb"),
  20718. name: "Back",
  20719. image: {
  20720. source: "./media/characters/fruity/back.svg",
  20721. extra: 1563 / 1435,
  20722. bottom: 0.005
  20723. }
  20724. },
  20725. },
  20726. [
  20727. {
  20728. name: "Normal",
  20729. height: math.unit(166.6, "cm"),
  20730. default: true
  20731. },
  20732. {
  20733. name: "Demonic",
  20734. height: math.unit(166.6, "feet")
  20735. },
  20736. ]
  20737. ))
  20738. characterMakers.push(() => makeCharacter(
  20739. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20740. {
  20741. side: {
  20742. height: math.unit(10, "feet"),
  20743. weight: math.unit(500, "lb"),
  20744. name: "Side",
  20745. image: {
  20746. source: "./media/characters/zost/side.svg",
  20747. extra: 966 / 880,
  20748. bottom: 0.075
  20749. }
  20750. },
  20751. mawFront: {
  20752. height: math.unit(1.08, "meters"),
  20753. name: "Maw (Front)",
  20754. image: {
  20755. source: "./media/characters/zost/maw-front.svg"
  20756. }
  20757. },
  20758. mawSide: {
  20759. height: math.unit(2.66, "feet"),
  20760. name: "Maw (Side)",
  20761. image: {
  20762. source: "./media/characters/zost/maw-side.svg"
  20763. }
  20764. },
  20765. },
  20766. [
  20767. {
  20768. name: "Normal",
  20769. height: math.unit(10, "feet"),
  20770. default: true
  20771. },
  20772. ]
  20773. ))
  20774. characterMakers.push(() => makeCharacter(
  20775. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20776. {
  20777. front: {
  20778. height: math.unit(5 + 4 / 12, "feet"),
  20779. weight: math.unit(120, "lb"),
  20780. name: "Front",
  20781. image: {
  20782. source: "./media/characters/luci/front.svg",
  20783. extra: 1985 / 1884,
  20784. bottom: 0.04
  20785. }
  20786. },
  20787. back: {
  20788. height: math.unit(5 + 4 / 12, "feet"),
  20789. weight: math.unit(120, "lb"),
  20790. name: "Back",
  20791. image: {
  20792. source: "./media/characters/luci/back.svg",
  20793. extra: 1892 / 1791,
  20794. bottom: 0.002
  20795. }
  20796. },
  20797. },
  20798. [
  20799. {
  20800. name: "Normal",
  20801. height: math.unit(5 + 4 / 12, "feet"),
  20802. default: true
  20803. },
  20804. ]
  20805. ))
  20806. characterMakers.push(() => makeCharacter(
  20807. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20808. {
  20809. front: {
  20810. height: math.unit(1500, "feet"),
  20811. weight: math.unit(3.8e6, "tons"),
  20812. name: "Front",
  20813. image: {
  20814. source: "./media/characters/2th/front.svg",
  20815. extra: 3489 / 3350,
  20816. bottom: 0.1
  20817. }
  20818. },
  20819. foot: {
  20820. height: math.unit(461, "feet"),
  20821. name: "Foot",
  20822. image: {
  20823. source: "./media/characters/2th/foot.svg"
  20824. }
  20825. },
  20826. },
  20827. [
  20828. {
  20829. name: "\"Micro\"",
  20830. height: math.unit(15 + 7 / 12, "feet")
  20831. },
  20832. {
  20833. name: "Normal",
  20834. height: math.unit(1500, "feet"),
  20835. default: true
  20836. },
  20837. {
  20838. name: "Macro",
  20839. height: math.unit(5000, "feet")
  20840. },
  20841. {
  20842. name: "Megamacro",
  20843. height: math.unit(15, "miles")
  20844. },
  20845. {
  20846. name: "Gigamacro",
  20847. height: math.unit(4000, "miles")
  20848. },
  20849. {
  20850. name: "Galactic",
  20851. height: math.unit(50, "AU")
  20852. },
  20853. ]
  20854. ))
  20855. characterMakers.push(() => makeCharacter(
  20856. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20857. {
  20858. front: {
  20859. height: math.unit(5 + 6 / 12, "feet"),
  20860. weight: math.unit(220, "lb"),
  20861. name: "Front",
  20862. image: {
  20863. source: "./media/characters/amethyst/front.svg",
  20864. extra: 2078 / 2040,
  20865. bottom: 0.045
  20866. }
  20867. },
  20868. back: {
  20869. height: math.unit(5 + 6 / 12, "feet"),
  20870. weight: math.unit(220, "lb"),
  20871. name: "Back",
  20872. image: {
  20873. source: "./media/characters/amethyst/back.svg",
  20874. extra: 2021 / 1989,
  20875. bottom: 0.02
  20876. }
  20877. },
  20878. },
  20879. [
  20880. {
  20881. name: "Normal",
  20882. height: math.unit(5 + 6 / 12, "feet"),
  20883. default: true
  20884. },
  20885. ]
  20886. ))
  20887. characterMakers.push(() => makeCharacter(
  20888. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20889. {
  20890. front: {
  20891. height: math.unit(4 + 11 / 12, "feet"),
  20892. weight: math.unit(120, "lb"),
  20893. name: "Front",
  20894. image: {
  20895. source: "./media/characters/yumi-akiyama/front.svg",
  20896. extra: 1327 / 1235,
  20897. bottom: 0.02
  20898. }
  20899. },
  20900. back: {
  20901. height: math.unit(4 + 11 / 12, "feet"),
  20902. weight: math.unit(120, "lb"),
  20903. name: "Back",
  20904. image: {
  20905. source: "./media/characters/yumi-akiyama/back.svg",
  20906. extra: 1287 / 1245,
  20907. bottom: 0.002
  20908. }
  20909. },
  20910. },
  20911. [
  20912. {
  20913. name: "Galactic",
  20914. height: math.unit(50, "galaxies"),
  20915. default: true
  20916. },
  20917. {
  20918. name: "Universal",
  20919. height: math.unit(100, "universes")
  20920. },
  20921. ]
  20922. ))
  20923. characterMakers.push(() => makeCharacter(
  20924. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20925. {
  20926. front: {
  20927. height: math.unit(8, "feet"),
  20928. weight: math.unit(500, "lb"),
  20929. name: "Front",
  20930. image: {
  20931. source: "./media/characters/rifter-yrmori/front.svg",
  20932. extra: 1180 / 1125,
  20933. bottom: 0.02
  20934. }
  20935. },
  20936. back: {
  20937. height: math.unit(8, "feet"),
  20938. weight: math.unit(500, "lb"),
  20939. name: "Back",
  20940. image: {
  20941. source: "./media/characters/rifter-yrmori/back.svg",
  20942. extra: 1190 / 1145,
  20943. bottom: 0.001
  20944. }
  20945. },
  20946. wings: {
  20947. height: math.unit(7.75, "feet"),
  20948. weight: math.unit(500, "lb"),
  20949. name: "Wings",
  20950. image: {
  20951. source: "./media/characters/rifter-yrmori/wings.svg",
  20952. extra: 1357 / 1285
  20953. }
  20954. },
  20955. maw: {
  20956. height: math.unit(0.8, "feet"),
  20957. name: "Maw",
  20958. image: {
  20959. source: "./media/characters/rifter-yrmori/maw.svg"
  20960. }
  20961. },
  20962. mawfront: {
  20963. height: math.unit(1.45, "feet"),
  20964. name: "Maw (Front)",
  20965. image: {
  20966. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20967. }
  20968. },
  20969. },
  20970. [
  20971. {
  20972. name: "Normal",
  20973. height: math.unit(8, "feet"),
  20974. default: true
  20975. },
  20976. {
  20977. name: "Macro",
  20978. height: math.unit(42, "meters")
  20979. },
  20980. ]
  20981. ))
  20982. characterMakers.push(() => makeCharacter(
  20983. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20984. {
  20985. were: {
  20986. height: math.unit(25 + 6 / 12, "feet"),
  20987. weight: math.unit(10000, "lb"),
  20988. name: "Were",
  20989. image: {
  20990. source: "./media/characters/tahajin/were.svg",
  20991. extra: 801 / 770,
  20992. bottom: 0.042
  20993. }
  20994. },
  20995. aquatic: {
  20996. height: math.unit(6 + 4 / 12, "feet"),
  20997. weight: math.unit(160, "lb"),
  20998. name: "Aquatic",
  20999. image: {
  21000. source: "./media/characters/tahajin/aquatic.svg",
  21001. extra: 572 / 542,
  21002. bottom: 0.04
  21003. }
  21004. },
  21005. chow: {
  21006. height: math.unit(8 + 11 / 12, "feet"),
  21007. weight: math.unit(450, "lb"),
  21008. name: "Chow",
  21009. image: {
  21010. source: "./media/characters/tahajin/chow.svg",
  21011. extra: 660 / 640,
  21012. bottom: 0.015
  21013. }
  21014. },
  21015. demiNaga: {
  21016. height: math.unit(6 + 8 / 12, "feet"),
  21017. weight: math.unit(300, "lb"),
  21018. name: "Demi Naga",
  21019. image: {
  21020. source: "./media/characters/tahajin/demi-naga.svg",
  21021. extra: 643 / 615,
  21022. bottom: 0.1
  21023. }
  21024. },
  21025. data: {
  21026. height: math.unit(5, "inches"),
  21027. weight: math.unit(0.1, "lb"),
  21028. name: "Data",
  21029. image: {
  21030. source: "./media/characters/tahajin/data.svg"
  21031. }
  21032. },
  21033. fluu: {
  21034. height: math.unit(5 + 7 / 12, "feet"),
  21035. weight: math.unit(140, "lb"),
  21036. name: "Fluu",
  21037. image: {
  21038. source: "./media/characters/tahajin/fluu.svg",
  21039. extra: 628 / 592,
  21040. bottom: 0.02
  21041. }
  21042. },
  21043. starWarrior: {
  21044. height: math.unit(4 + 5 / 12, "feet"),
  21045. weight: math.unit(50, "lb"),
  21046. name: "Star Warrior",
  21047. image: {
  21048. source: "./media/characters/tahajin/star-warrior.svg"
  21049. }
  21050. },
  21051. },
  21052. [
  21053. {
  21054. name: "Normal",
  21055. height: math.unit(25 + 6 / 12, "feet"),
  21056. default: true
  21057. },
  21058. ]
  21059. ))
  21060. characterMakers.push(() => makeCharacter(
  21061. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21062. {
  21063. front: {
  21064. height: math.unit(8, "feet"),
  21065. weight: math.unit(350, "lb"),
  21066. name: "Front",
  21067. image: {
  21068. source: "./media/characters/gabira/front.svg",
  21069. extra: 608 / 580,
  21070. bottom: 0.03
  21071. }
  21072. },
  21073. back: {
  21074. height: math.unit(8, "feet"),
  21075. weight: math.unit(350, "lb"),
  21076. name: "Back",
  21077. image: {
  21078. source: "./media/characters/gabira/back.svg",
  21079. extra: 608 / 580,
  21080. bottom: 0.03
  21081. }
  21082. },
  21083. },
  21084. [
  21085. {
  21086. name: "Normal",
  21087. height: math.unit(8, "feet"),
  21088. default: true
  21089. },
  21090. ]
  21091. ))
  21092. characterMakers.push(() => makeCharacter(
  21093. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21094. {
  21095. front: {
  21096. height: math.unit(5 + 3 / 12, "feet"),
  21097. weight: math.unit(137, "lb"),
  21098. name: "Front",
  21099. image: {
  21100. source: "./media/characters/sasha-katraine/front.svg",
  21101. bottom: 0.045
  21102. }
  21103. },
  21104. },
  21105. [
  21106. {
  21107. name: "Micro",
  21108. height: math.unit(5, "inches")
  21109. },
  21110. {
  21111. name: "Normal",
  21112. height: math.unit(5 + 3 / 12, "feet"),
  21113. default: true
  21114. },
  21115. ]
  21116. ))
  21117. characterMakers.push(() => makeCharacter(
  21118. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21119. {
  21120. side: {
  21121. height: math.unit(4, "inches"),
  21122. weight: math.unit(200, "grams"),
  21123. name: "Side",
  21124. image: {
  21125. source: "./media/characters/der/side.svg",
  21126. extra: 719 / 400,
  21127. bottom: 30.6 / 749.9187
  21128. }
  21129. },
  21130. },
  21131. [
  21132. {
  21133. name: "Micro",
  21134. height: math.unit(4, "inches"),
  21135. default: true
  21136. },
  21137. ]
  21138. ))
  21139. characterMakers.push(() => makeCharacter(
  21140. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21141. {
  21142. side: {
  21143. height: math.unit(30, "meters"),
  21144. weight: math.unit(700, "tonnes"),
  21145. name: "Side",
  21146. image: {
  21147. source: "./media/characters/fixerdragon/side.svg",
  21148. extra: (1293.0514 - 116.03) / 1106.86,
  21149. bottom: 116.03 / 1293.0514
  21150. }
  21151. },
  21152. },
  21153. [
  21154. {
  21155. name: "Planck",
  21156. height: math.unit(1.6e-35, "meters")
  21157. },
  21158. {
  21159. name: "Micro",
  21160. height: math.unit(0.4, "meters")
  21161. },
  21162. {
  21163. name: "Normal",
  21164. height: math.unit(30, "meters"),
  21165. default: true
  21166. },
  21167. {
  21168. name: "Megamacro",
  21169. height: math.unit(1.2, "megameters")
  21170. },
  21171. {
  21172. name: "Teramacro",
  21173. height: math.unit(130, "terameters")
  21174. },
  21175. {
  21176. name: "Yottamacro",
  21177. height: math.unit(6200, "yottameters")
  21178. },
  21179. ]
  21180. ));
  21181. characterMakers.push(() => makeCharacter(
  21182. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21183. {
  21184. front: {
  21185. height: math.unit(8, "feet"),
  21186. weight: math.unit(250, "lb"),
  21187. name: "Front",
  21188. image: {
  21189. source: "./media/characters/kite/front.svg",
  21190. extra: 2796 / 2659,
  21191. bottom: 0.002
  21192. }
  21193. },
  21194. },
  21195. [
  21196. {
  21197. name: "Normal",
  21198. height: math.unit(8, "feet"),
  21199. default: true
  21200. },
  21201. {
  21202. name: "Macro",
  21203. height: math.unit(360, "feet")
  21204. },
  21205. {
  21206. name: "Megamacro",
  21207. height: math.unit(1500, "feet")
  21208. },
  21209. ]
  21210. ))
  21211. characterMakers.push(() => makeCharacter(
  21212. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21213. {
  21214. front: {
  21215. height: math.unit(5 + 10 / 12, "feet"),
  21216. weight: math.unit(150, "lb"),
  21217. name: "Front",
  21218. image: {
  21219. source: "./media/characters/poojawa-vynar/front.svg",
  21220. extra: (1506.1547 - 55) / 1356.6,
  21221. bottom: 55 / 1506.1547
  21222. }
  21223. },
  21224. frontTailless: {
  21225. height: math.unit(5 + 10 / 12, "feet"),
  21226. weight: math.unit(150, "lb"),
  21227. name: "Front (Tailless)",
  21228. image: {
  21229. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21230. extra: (1506.1547 - 55) / 1356.6,
  21231. bottom: 55 / 1506.1547
  21232. }
  21233. },
  21234. },
  21235. [
  21236. {
  21237. name: "Normal",
  21238. height: math.unit(5 + 10 / 12, "feet"),
  21239. default: true
  21240. },
  21241. ]
  21242. ))
  21243. characterMakers.push(() => makeCharacter(
  21244. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21245. {
  21246. front: {
  21247. height: math.unit(293, "meters"),
  21248. weight: math.unit(70400, "tons"),
  21249. name: "Front",
  21250. image: {
  21251. source: "./media/characters/violette/front.svg",
  21252. extra: 1227 / 1180,
  21253. bottom: 0.005
  21254. }
  21255. },
  21256. back: {
  21257. height: math.unit(293, "meters"),
  21258. weight: math.unit(70400, "tons"),
  21259. name: "Back",
  21260. image: {
  21261. source: "./media/characters/violette/back.svg",
  21262. extra: 1227 / 1180,
  21263. bottom: 0.005
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Macro",
  21270. height: math.unit(293, "meters"),
  21271. default: true
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21277. {
  21278. front: {
  21279. height: math.unit(1050, "feet"),
  21280. weight: math.unit(200000, "tons"),
  21281. name: "Front",
  21282. image: {
  21283. source: "./media/characters/alessandra/front.svg",
  21284. extra: 960 / 912,
  21285. bottom: 0.06
  21286. }
  21287. },
  21288. },
  21289. [
  21290. {
  21291. name: "Macro",
  21292. height: math.unit(1050, "feet")
  21293. },
  21294. {
  21295. name: "Macro+",
  21296. height: math.unit(900, "meters"),
  21297. default: true
  21298. },
  21299. ]
  21300. ))
  21301. characterMakers.push(() => makeCharacter(
  21302. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21303. {
  21304. front: {
  21305. height: math.unit(5, "feet"),
  21306. weight: math.unit(187, "lb"),
  21307. name: "Front",
  21308. image: {
  21309. source: "./media/characters/person/front.svg",
  21310. extra: 3087 / 2945,
  21311. bottom: 91 / 3181
  21312. }
  21313. },
  21314. },
  21315. [
  21316. {
  21317. name: "Micro",
  21318. height: math.unit(3, "inches")
  21319. },
  21320. {
  21321. name: "Normal",
  21322. height: math.unit(5, "feet"),
  21323. default: true
  21324. },
  21325. {
  21326. name: "Macro",
  21327. height: math.unit(90, "feet")
  21328. },
  21329. {
  21330. name: "Max Size",
  21331. height: math.unit(280, "feet")
  21332. },
  21333. ]
  21334. ))
  21335. characterMakers.push(() => makeCharacter(
  21336. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21337. {
  21338. front: {
  21339. height: math.unit(4.5, "meters"),
  21340. weight: math.unit(3200, "lb"),
  21341. name: "Front",
  21342. image: {
  21343. source: "./media/characters/ty/front.svg",
  21344. extra: 1038 / 960,
  21345. bottom: 31.156 / 1068
  21346. }
  21347. },
  21348. back: {
  21349. height: math.unit(4.5, "meters"),
  21350. weight: math.unit(3200, "lb"),
  21351. name: "Back",
  21352. image: {
  21353. source: "./media/characters/ty/back.svg",
  21354. extra: 1044 / 966,
  21355. bottom: 7.48 / 1049
  21356. }
  21357. },
  21358. },
  21359. [
  21360. {
  21361. name: "Normal",
  21362. height: math.unit(4.5, "meters"),
  21363. default: true
  21364. },
  21365. ]
  21366. ))
  21367. characterMakers.push(() => makeCharacter(
  21368. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21369. {
  21370. front: {
  21371. height: math.unit(5 + 4 / 12, "feet"),
  21372. weight: math.unit(115, "lb"),
  21373. name: "Front",
  21374. image: {
  21375. source: "./media/characters/rocky/front.svg",
  21376. extra: 1012 / 975,
  21377. bottom: 54 / 1066
  21378. }
  21379. },
  21380. },
  21381. [
  21382. {
  21383. name: "Normal",
  21384. height: math.unit(5 + 4 / 12, "feet"),
  21385. default: true
  21386. },
  21387. ]
  21388. ))
  21389. characterMakers.push(() => makeCharacter(
  21390. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21391. {
  21392. upright: {
  21393. height: math.unit(6, "meters"),
  21394. weight: math.unit(4000, "kg"),
  21395. name: "Upright",
  21396. image: {
  21397. source: "./media/characters/ruin/upright.svg",
  21398. extra: 668 / 661,
  21399. bottom: 42 / 799.8396
  21400. }
  21401. },
  21402. },
  21403. [
  21404. {
  21405. name: "Normal",
  21406. height: math.unit(6, "meters"),
  21407. default: true
  21408. },
  21409. ]
  21410. ))
  21411. characterMakers.push(() => makeCharacter(
  21412. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21413. {
  21414. front: {
  21415. height: math.unit(5, "feet"),
  21416. weight: math.unit(106, "lb"),
  21417. name: "Front",
  21418. image: {
  21419. source: "./media/characters/robin/front.svg",
  21420. extra: 862 / 799,
  21421. bottom: 42.4 / 914.8856
  21422. }
  21423. },
  21424. },
  21425. [
  21426. {
  21427. name: "Normal",
  21428. height: math.unit(5, "feet"),
  21429. default: true
  21430. },
  21431. ]
  21432. ))
  21433. characterMakers.push(() => makeCharacter(
  21434. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21435. {
  21436. side: {
  21437. height: math.unit(3, "feet"),
  21438. weight: math.unit(225, "lb"),
  21439. name: "Side",
  21440. image: {
  21441. source: "./media/characters/saian/side.svg",
  21442. extra: 566 / 356,
  21443. bottom: 79.7 / 643
  21444. }
  21445. },
  21446. maw: {
  21447. height: math.unit(2.85, "feet"),
  21448. name: "Maw",
  21449. image: {
  21450. source: "./media/characters/saian/maw.svg"
  21451. }
  21452. },
  21453. },
  21454. [
  21455. {
  21456. name: "Normal",
  21457. height: math.unit(3, "feet"),
  21458. default: true
  21459. },
  21460. ]
  21461. ))
  21462. characterMakers.push(() => makeCharacter(
  21463. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21464. {
  21465. side: {
  21466. height: math.unit(8, "feet"),
  21467. weight: math.unit(300, "lb"),
  21468. name: "Side",
  21469. image: {
  21470. source: "./media/characters/equus-silvermane/side.svg",
  21471. extra: 2176 / 2050,
  21472. bottom: 65.7 / 2245
  21473. }
  21474. },
  21475. front: {
  21476. height: math.unit(8, "feet"),
  21477. weight: math.unit(300, "lb"),
  21478. name: "Front",
  21479. image: {
  21480. source: "./media/characters/equus-silvermane/front.svg",
  21481. extra: 4633 / 4400,
  21482. bottom: 71.3 / 4706.915
  21483. }
  21484. },
  21485. sideStepping: {
  21486. height: math.unit(8, "feet"),
  21487. weight: math.unit(300, "lb"),
  21488. name: "Side (Stepping)",
  21489. image: {
  21490. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21491. extra: 1968 / 1860,
  21492. bottom: 16.4 / 1989
  21493. }
  21494. },
  21495. },
  21496. [
  21497. {
  21498. name: "Normal",
  21499. height: math.unit(8, "feet")
  21500. },
  21501. {
  21502. name: "Minimacro",
  21503. height: math.unit(75, "feet"),
  21504. default: true
  21505. },
  21506. {
  21507. name: "Macro",
  21508. height: math.unit(150, "feet")
  21509. },
  21510. {
  21511. name: "Macro+",
  21512. height: math.unit(1000, "feet")
  21513. },
  21514. {
  21515. name: "Megamacro",
  21516. height: math.unit(1, "mile")
  21517. },
  21518. ]
  21519. ))
  21520. characterMakers.push(() => makeCharacter(
  21521. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21522. {
  21523. side: {
  21524. height: math.unit(20, "feet"),
  21525. weight: math.unit(30000, "kg"),
  21526. name: "Side",
  21527. image: {
  21528. source: "./media/characters/windar/side.svg",
  21529. extra: 1491 / 1248,
  21530. bottom: 82.56 / 1568
  21531. }
  21532. },
  21533. },
  21534. [
  21535. {
  21536. name: "Normal",
  21537. height: math.unit(20, "feet"),
  21538. default: true
  21539. },
  21540. ]
  21541. ))
  21542. characterMakers.push(() => makeCharacter(
  21543. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21544. {
  21545. side: {
  21546. height: math.unit(15.66, "feet"),
  21547. weight: math.unit(150, "lb"),
  21548. name: "Side",
  21549. image: {
  21550. source: "./media/characters/melody/side.svg",
  21551. extra: 1097 / 944,
  21552. bottom: 11.8 / 1109
  21553. }
  21554. },
  21555. sideOutfit: {
  21556. height: math.unit(15.66, "feet"),
  21557. weight: math.unit(150, "lb"),
  21558. name: "Side (Outfit)",
  21559. image: {
  21560. source: "./media/characters/melody/side-outfit.svg",
  21561. extra: 1097 / 944,
  21562. bottom: 11.8 / 1109
  21563. }
  21564. },
  21565. },
  21566. [
  21567. {
  21568. name: "Normal",
  21569. height: math.unit(15.66, "feet"),
  21570. default: true
  21571. },
  21572. ]
  21573. ))
  21574. characterMakers.push(() => makeCharacter(
  21575. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21576. {
  21577. front: {
  21578. height: math.unit(8, "feet"),
  21579. weight: math.unit(325, "lb"),
  21580. name: "Front",
  21581. image: {
  21582. source: "./media/characters/windera/front.svg",
  21583. extra: 3180 / 2845,
  21584. bottom: 178 / 3365
  21585. }
  21586. },
  21587. },
  21588. [
  21589. {
  21590. name: "Normal",
  21591. height: math.unit(8, "feet"),
  21592. default: true
  21593. },
  21594. ]
  21595. ))
  21596. characterMakers.push(() => makeCharacter(
  21597. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21598. {
  21599. front: {
  21600. height: math.unit(28.75, "feet"),
  21601. weight: math.unit(2000, "kg"),
  21602. name: "Front",
  21603. image: {
  21604. source: "./media/characters/sonear/front.svg",
  21605. extra: 1041.1 / 964.9,
  21606. bottom: 53.7 / 1096.6
  21607. }
  21608. },
  21609. },
  21610. [
  21611. {
  21612. name: "Normal",
  21613. height: math.unit(28.75, "feet"),
  21614. default: true
  21615. },
  21616. ]
  21617. ))
  21618. characterMakers.push(() => makeCharacter(
  21619. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21620. {
  21621. side: {
  21622. height: math.unit(25.5, "feet"),
  21623. weight: math.unit(23000, "kg"),
  21624. name: "Side",
  21625. image: {
  21626. source: "./media/characters/kanara/side.svg"
  21627. }
  21628. },
  21629. },
  21630. [
  21631. {
  21632. name: "Normal",
  21633. height: math.unit(25.5, "feet"),
  21634. default: true
  21635. },
  21636. ]
  21637. ))
  21638. characterMakers.push(() => makeCharacter(
  21639. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21640. {
  21641. side: {
  21642. height: math.unit(10, "feet"),
  21643. weight: math.unit(1000, "kg"),
  21644. name: "Side",
  21645. image: {
  21646. source: "./media/characters/ereus/side.svg",
  21647. extra: 1157 / 959,
  21648. bottom: 153 / 1312.5
  21649. }
  21650. },
  21651. },
  21652. [
  21653. {
  21654. name: "Normal",
  21655. height: math.unit(10, "feet"),
  21656. default: true
  21657. },
  21658. ]
  21659. ))
  21660. characterMakers.push(() => makeCharacter(
  21661. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21662. {
  21663. side: {
  21664. height: math.unit(4.5, "feet"),
  21665. weight: math.unit(500, "lb"),
  21666. name: "Side",
  21667. image: {
  21668. source: "./media/characters/e-ter/side.svg",
  21669. extra: 1550 / 1248,
  21670. bottom: 146 / 1694
  21671. }
  21672. },
  21673. },
  21674. [
  21675. {
  21676. name: "Normal",
  21677. height: math.unit(4.5, "feet"),
  21678. default: true
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21684. {
  21685. side: {
  21686. height: math.unit(9.7, "feet"),
  21687. weight: math.unit(4000, "kg"),
  21688. name: "Side",
  21689. image: {
  21690. source: "./media/characters/yamie/side.svg"
  21691. }
  21692. },
  21693. },
  21694. [
  21695. {
  21696. name: "Normal",
  21697. height: math.unit(9.7, "feet"),
  21698. default: true
  21699. },
  21700. ]
  21701. ))
  21702. characterMakers.push(() => makeCharacter(
  21703. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21704. {
  21705. front: {
  21706. height: math.unit(50, "feet"),
  21707. weight: math.unit(50000, "kg"),
  21708. name: "Front",
  21709. image: {
  21710. source: "./media/characters/anders/front.svg",
  21711. extra: 570 / 539,
  21712. bottom: 14.7 / 586.7
  21713. }
  21714. },
  21715. },
  21716. [
  21717. {
  21718. name: "Large",
  21719. height: math.unit(50, "feet")
  21720. },
  21721. {
  21722. name: "Macro",
  21723. height: math.unit(2000, "feet"),
  21724. default: true
  21725. },
  21726. {
  21727. name: "Megamacro",
  21728. height: math.unit(12, "miles")
  21729. },
  21730. ]
  21731. ))
  21732. characterMakers.push(() => makeCharacter(
  21733. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21734. {
  21735. front: {
  21736. height: math.unit(7 + 2 / 12, "feet"),
  21737. weight: math.unit(300, "lb"),
  21738. name: "Front",
  21739. image: {
  21740. source: "./media/characters/reban/front.svg",
  21741. extra: 516 / 487,
  21742. bottom: 42.82 / 558.356
  21743. }
  21744. },
  21745. dick: {
  21746. height: math.unit(7 / 5, "feet"),
  21747. name: "Dick",
  21748. image: {
  21749. source: "./media/characters/reban/dick.svg"
  21750. }
  21751. },
  21752. },
  21753. [
  21754. {
  21755. name: "Natural Height",
  21756. height: math.unit(7 + 2 / 12, "feet")
  21757. },
  21758. {
  21759. name: "Macro",
  21760. height: math.unit(500, "feet"),
  21761. default: true
  21762. },
  21763. {
  21764. name: "Canon Height",
  21765. height: math.unit(50, "AU")
  21766. },
  21767. ]
  21768. ))
  21769. characterMakers.push(() => makeCharacter(
  21770. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21771. {
  21772. front: {
  21773. height: math.unit(6, "feet"),
  21774. weight: math.unit(150, "lb"),
  21775. name: "Front",
  21776. image: {
  21777. source: "./media/characters/terrance-keayes/front.svg",
  21778. extra: 1.005,
  21779. bottom: 151 / 1615
  21780. }
  21781. },
  21782. side: {
  21783. height: math.unit(6, "feet"),
  21784. weight: math.unit(150, "lb"),
  21785. name: "Side",
  21786. image: {
  21787. source: "./media/characters/terrance-keayes/side.svg",
  21788. extra: 1.005,
  21789. bottom: 129.4 / 1544
  21790. }
  21791. },
  21792. back: {
  21793. height: math.unit(6, "feet"),
  21794. weight: math.unit(150, "lb"),
  21795. name: "Back",
  21796. image: {
  21797. source: "./media/characters/terrance-keayes/back.svg",
  21798. extra: 1.005,
  21799. bottom: 58.4 / 1557.3
  21800. }
  21801. },
  21802. dick: {
  21803. height: math.unit(6 * 0.208, "feet"),
  21804. name: "Dick",
  21805. image: {
  21806. source: "./media/characters/terrance-keayes/dick.svg"
  21807. }
  21808. },
  21809. },
  21810. [
  21811. {
  21812. name: "Canon Height",
  21813. height: math.unit(35, "miles"),
  21814. default: true
  21815. },
  21816. ]
  21817. ))
  21818. characterMakers.push(() => makeCharacter(
  21819. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21820. {
  21821. front: {
  21822. height: math.unit(6, "feet"),
  21823. weight: math.unit(150, "lb"),
  21824. name: "Front",
  21825. image: {
  21826. source: "./media/characters/ofelia/front.svg",
  21827. extra: 546 / 541,
  21828. bottom: 39 / 583
  21829. }
  21830. },
  21831. back: {
  21832. height: math.unit(6, "feet"),
  21833. weight: math.unit(150, "lb"),
  21834. name: "Back",
  21835. image: {
  21836. source: "./media/characters/ofelia/back.svg",
  21837. extra: 564 / 559.5,
  21838. bottom: 8.69 / 573.02
  21839. }
  21840. },
  21841. maw: {
  21842. height: math.unit(1, "feet"),
  21843. name: "Maw",
  21844. image: {
  21845. source: "./media/characters/ofelia/maw.svg"
  21846. }
  21847. },
  21848. foot: {
  21849. height: math.unit(1.949, "feet"),
  21850. name: "Foot",
  21851. image: {
  21852. source: "./media/characters/ofelia/foot.svg"
  21853. }
  21854. },
  21855. },
  21856. [
  21857. {
  21858. name: "Canon Height",
  21859. height: math.unit(2000, "miles"),
  21860. default: true
  21861. },
  21862. ]
  21863. ))
  21864. characterMakers.push(() => makeCharacter(
  21865. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21866. {
  21867. front: {
  21868. height: math.unit(6, "feet"),
  21869. weight: math.unit(150, "lb"),
  21870. name: "Front",
  21871. image: {
  21872. source: "./media/characters/samuel/front.svg",
  21873. extra: 265 / 258,
  21874. bottom: 2 / 266.1566
  21875. }
  21876. },
  21877. },
  21878. [
  21879. {
  21880. name: "Macro",
  21881. height: math.unit(100, "feet"),
  21882. default: true
  21883. },
  21884. {
  21885. name: "Full Size",
  21886. height: math.unit(1000, "miles")
  21887. },
  21888. ]
  21889. ))
  21890. characterMakers.push(() => makeCharacter(
  21891. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21892. {
  21893. front: {
  21894. height: math.unit(6, "feet"),
  21895. weight: math.unit(300, "lb"),
  21896. name: "Front",
  21897. image: {
  21898. source: "./media/characters/beishir-kiel/front.svg",
  21899. extra: 569 / 547,
  21900. bottom: 41.9 / 609
  21901. }
  21902. },
  21903. maw: {
  21904. height: math.unit(6 * 0.202, "feet"),
  21905. name: "Maw",
  21906. image: {
  21907. source: "./media/characters/beishir-kiel/maw.svg"
  21908. }
  21909. },
  21910. },
  21911. [
  21912. {
  21913. name: "Macro",
  21914. height: math.unit(300, "feet"),
  21915. default: true
  21916. },
  21917. ]
  21918. ))
  21919. characterMakers.push(() => makeCharacter(
  21920. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21921. {
  21922. front: {
  21923. height: math.unit(5 + 7/12, "feet"),
  21924. weight: math.unit(120, "lb"),
  21925. name: "Front",
  21926. image: {
  21927. source: "./media/characters/logan-grey/front.svg",
  21928. extra: 1836/1738,
  21929. bottom: 108/1944
  21930. }
  21931. },
  21932. back: {
  21933. height: math.unit(5 + 7/12, "feet"),
  21934. weight: math.unit(120, "lb"),
  21935. name: "Back",
  21936. image: {
  21937. source: "./media/characters/logan-grey/back.svg",
  21938. extra: 1880/1794,
  21939. bottom: 24/1904
  21940. }
  21941. },
  21942. frontSfw: {
  21943. height: math.unit(5 + 7/12, "feet"),
  21944. weight: math.unit(120, "lb"),
  21945. name: "Front (SFW)",
  21946. image: {
  21947. source: "./media/characters/logan-grey/front-sfw.svg",
  21948. extra: 1836/1738,
  21949. bottom: 108/1944
  21950. }
  21951. },
  21952. backSfw: {
  21953. height: math.unit(5 + 7/12, "feet"),
  21954. weight: math.unit(120, "lb"),
  21955. name: "Back (SFW)",
  21956. image: {
  21957. source: "./media/characters/logan-grey/back-sfw.svg",
  21958. extra: 1880/1794,
  21959. bottom: 24/1904
  21960. }
  21961. },
  21962. hands: {
  21963. height: math.unit(0.84, "feet"),
  21964. name: "Hands",
  21965. image: {
  21966. source: "./media/characters/logan-grey/hands.svg"
  21967. }
  21968. },
  21969. paws: {
  21970. height: math.unit(0.72, "feet"),
  21971. name: "Paws",
  21972. image: {
  21973. source: "./media/characters/logan-grey/paws.svg"
  21974. }
  21975. },
  21976. cock: {
  21977. height: math.unit(1.45, "feet"),
  21978. name: "Cock",
  21979. image: {
  21980. source: "./media/characters/logan-grey/cock.svg"
  21981. }
  21982. },
  21983. cockAlt: {
  21984. height: math.unit(1.437, "feet"),
  21985. name: "Cock (alt)",
  21986. image: {
  21987. source: "./media/characters/logan-grey/cock-alt.svg"
  21988. }
  21989. },
  21990. },
  21991. [
  21992. {
  21993. name: "Normal",
  21994. height: math.unit(5 + 8 / 12, "feet")
  21995. },
  21996. {
  21997. name: "The 500 Foot Femboy",
  21998. height: math.unit(500, "feet"),
  21999. default: true
  22000. },
  22001. {
  22002. name: "Megmacro",
  22003. height: math.unit(20, "miles")
  22004. },
  22005. ]
  22006. ))
  22007. characterMakers.push(() => makeCharacter(
  22008. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22009. {
  22010. front: {
  22011. height: math.unit(8 + 2 / 12, "feet"),
  22012. weight: math.unit(275, "lb"),
  22013. name: "Front",
  22014. image: {
  22015. source: "./media/characters/draganta/front.svg",
  22016. extra: 1177 / 1135,
  22017. bottom: 33.46 / 1212.1
  22018. }
  22019. },
  22020. },
  22021. [
  22022. {
  22023. name: "Normal",
  22024. height: math.unit(8 + 6 / 12, "feet"),
  22025. default: true
  22026. },
  22027. {
  22028. name: "Macro",
  22029. height: math.unit(150, "feet")
  22030. },
  22031. {
  22032. name: "Megamacro",
  22033. height: math.unit(1000, "miles")
  22034. },
  22035. ]
  22036. ))
  22037. characterMakers.push(() => makeCharacter(
  22038. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22039. {
  22040. front: {
  22041. height: math.unit(1.72, "m"),
  22042. weight: math.unit(80, "lb"),
  22043. name: "Front",
  22044. image: {
  22045. source: "./media/characters/voski/front.svg",
  22046. extra: 2076.22 / 2022.4,
  22047. bottom: 102.7 / 2177.3866
  22048. }
  22049. },
  22050. frontNsfw: {
  22051. height: math.unit(1.72, "m"),
  22052. weight: math.unit(80, "lb"),
  22053. name: "Front (NSFW)",
  22054. image: {
  22055. source: "./media/characters/voski/front-nsfw.svg",
  22056. extra: 2076.22 / 2022.4,
  22057. bottom: 102.7 / 2177.3866
  22058. }
  22059. },
  22060. back: {
  22061. height: math.unit(1.72, "m"),
  22062. weight: math.unit(80, "lb"),
  22063. name: "Back",
  22064. image: {
  22065. source: "./media/characters/voski/back.svg",
  22066. extra: 2104 / 2051,
  22067. bottom: 10.45 / 2113.63
  22068. }
  22069. },
  22070. },
  22071. [
  22072. {
  22073. name: "Normal",
  22074. height: math.unit(1.72, "m")
  22075. },
  22076. {
  22077. name: "Macro",
  22078. height: math.unit(55, "m"),
  22079. default: true
  22080. },
  22081. {
  22082. name: "Macro+",
  22083. height: math.unit(300, "m")
  22084. },
  22085. {
  22086. name: "Macro++",
  22087. height: math.unit(700, "m")
  22088. },
  22089. {
  22090. name: "Macro+++",
  22091. height: math.unit(4500, "m")
  22092. },
  22093. {
  22094. name: "Macro++++",
  22095. height: math.unit(45, "km")
  22096. },
  22097. {
  22098. name: "Macro+++++",
  22099. height: math.unit(1220, "km")
  22100. },
  22101. ]
  22102. ))
  22103. characterMakers.push(() => makeCharacter(
  22104. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22105. {
  22106. front: {
  22107. height: math.unit(2.3, "m"),
  22108. weight: math.unit(304, "kg"),
  22109. name: "Front",
  22110. image: {
  22111. source: "./media/characters/icowom-lee/front.svg",
  22112. extra: 985 / 955,
  22113. bottom: 25.4 / 1012
  22114. }
  22115. },
  22116. fronttentacles: {
  22117. height: math.unit(2.3, "m"),
  22118. weight: math.unit(304, "kg"),
  22119. name: "Front-tentacles",
  22120. image: {
  22121. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22122. extra: 985 / 955,
  22123. bottom: 25.4 / 1012
  22124. }
  22125. },
  22126. back: {
  22127. height: math.unit(2.3, "m"),
  22128. weight: math.unit(304, "kg"),
  22129. name: "Back",
  22130. image: {
  22131. source: "./media/characters/icowom-lee/back.svg",
  22132. extra: 975 / 954,
  22133. bottom: 9.5 / 985
  22134. }
  22135. },
  22136. backtentacles: {
  22137. height: math.unit(2.3, "m"),
  22138. weight: math.unit(304, "kg"),
  22139. name: "Back-tentacles",
  22140. image: {
  22141. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22142. extra: 975 / 954,
  22143. bottom: 9.5 / 985
  22144. }
  22145. },
  22146. frontDressed: {
  22147. height: math.unit(2.3, "m"),
  22148. weight: math.unit(304, "kg"),
  22149. name: "Front (Dressed)",
  22150. image: {
  22151. source: "./media/characters/icowom-lee/front-dressed.svg",
  22152. extra: 3076 / 2933,
  22153. bottom: 51.4 / 3125.1889
  22154. }
  22155. },
  22156. rump: {
  22157. height: math.unit(0.776, "meters"),
  22158. name: "Rump",
  22159. image: {
  22160. source: "./media/characters/icowom-lee/rump.svg"
  22161. }
  22162. },
  22163. genitals: {
  22164. height: math.unit(0.78, "meters"),
  22165. name: "Genitals",
  22166. image: {
  22167. source: "./media/characters/icowom-lee/genitals.svg"
  22168. }
  22169. },
  22170. },
  22171. [
  22172. {
  22173. name: "Normal",
  22174. height: math.unit(2.3, "meters"),
  22175. default: true
  22176. },
  22177. {
  22178. name: "Macro",
  22179. height: math.unit(94, "meters"),
  22180. default: true
  22181. },
  22182. ]
  22183. ))
  22184. characterMakers.push(() => makeCharacter(
  22185. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22186. {
  22187. front: {
  22188. height: math.unit(22, "meters"),
  22189. weight: math.unit(21000, "kg"),
  22190. name: "Front",
  22191. image: {
  22192. source: "./media/characters/shock-diamond/front.svg",
  22193. extra: 2204 / 2053,
  22194. bottom: 65 / 2239.47
  22195. }
  22196. },
  22197. frontNude: {
  22198. height: math.unit(22, "meters"),
  22199. weight: math.unit(21000, "kg"),
  22200. name: "Front (Nude)",
  22201. image: {
  22202. source: "./media/characters/shock-diamond/front-nude.svg",
  22203. extra: 2514 / 2285,
  22204. bottom: 13 / 2527.56
  22205. }
  22206. },
  22207. },
  22208. [
  22209. {
  22210. name: "Normal",
  22211. height: math.unit(3, "meters")
  22212. },
  22213. {
  22214. name: "Macro",
  22215. height: math.unit(22, "meters"),
  22216. default: true
  22217. },
  22218. ]
  22219. ))
  22220. characterMakers.push(() => makeCharacter(
  22221. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22222. {
  22223. front: {
  22224. height: math.unit(5 + 4 / 12, "feet"),
  22225. weight: math.unit(120, "lb"),
  22226. name: "Front",
  22227. image: {
  22228. source: "./media/characters/rory/front.svg",
  22229. extra: 589 / 556,
  22230. bottom: 45.7 / 635.76
  22231. }
  22232. },
  22233. frontNude: {
  22234. height: math.unit(5 + 4 / 12, "feet"),
  22235. weight: math.unit(120, "lb"),
  22236. name: "Front (Nude)",
  22237. image: {
  22238. source: "./media/characters/rory/front-nude.svg",
  22239. extra: 589 / 556,
  22240. bottom: 45.7 / 635.76
  22241. }
  22242. },
  22243. side: {
  22244. height: math.unit(5 + 4 / 12, "feet"),
  22245. weight: math.unit(120, "lb"),
  22246. name: "Side",
  22247. image: {
  22248. source: "./media/characters/rory/side.svg",
  22249. extra: 597 / 564,
  22250. bottom: 55 / 653
  22251. }
  22252. },
  22253. back: {
  22254. height: math.unit(5 + 4 / 12, "feet"),
  22255. weight: math.unit(120, "lb"),
  22256. name: "Back",
  22257. image: {
  22258. source: "./media/characters/rory/back.svg",
  22259. extra: 620 / 585,
  22260. bottom: 8.86 / 630.43
  22261. }
  22262. },
  22263. dick: {
  22264. height: math.unit(0.86, "feet"),
  22265. name: "Dick",
  22266. image: {
  22267. source: "./media/characters/rory/dick.svg"
  22268. }
  22269. },
  22270. },
  22271. [
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(5 + 4 / 12, "feet"),
  22275. default: true
  22276. },
  22277. {
  22278. name: "Macro",
  22279. height: math.unit(100, "feet")
  22280. },
  22281. {
  22282. name: "Macro+",
  22283. height: math.unit(140, "feet")
  22284. },
  22285. {
  22286. name: "Macro++",
  22287. height: math.unit(300, "feet")
  22288. },
  22289. ]
  22290. ))
  22291. characterMakers.push(() => makeCharacter(
  22292. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22293. {
  22294. front: {
  22295. height: math.unit(5 + 9 / 12, "feet"),
  22296. weight: math.unit(190, "lb"),
  22297. name: "Front",
  22298. image: {
  22299. source: "./media/characters/sprisk/front.svg",
  22300. extra: 1225 / 1180,
  22301. bottom: 42.7 / 1266.4
  22302. }
  22303. },
  22304. frontNsfw: {
  22305. height: math.unit(5 + 9 / 12, "feet"),
  22306. weight: math.unit(190, "lb"),
  22307. name: "Front (NSFW)",
  22308. image: {
  22309. source: "./media/characters/sprisk/front-nsfw.svg",
  22310. extra: 1225 / 1180,
  22311. bottom: 42.7 / 1266.4
  22312. }
  22313. },
  22314. back: {
  22315. height: math.unit(5 + 9 / 12, "feet"),
  22316. weight: math.unit(190, "lb"),
  22317. name: "Back",
  22318. image: {
  22319. source: "./media/characters/sprisk/back.svg",
  22320. extra: 1247 / 1200,
  22321. bottom: 5.6 / 1253.04
  22322. }
  22323. },
  22324. },
  22325. [
  22326. {
  22327. name: "Tiny",
  22328. height: math.unit(2, "inches")
  22329. },
  22330. {
  22331. name: "Normal",
  22332. height: math.unit(5 + 9 / 12, "feet"),
  22333. default: true
  22334. },
  22335. {
  22336. name: "Mini Macro",
  22337. height: math.unit(18, "feet")
  22338. },
  22339. {
  22340. name: "Macro",
  22341. height: math.unit(100, "feet")
  22342. },
  22343. {
  22344. name: "MACRO",
  22345. height: math.unit(50, "miles")
  22346. },
  22347. {
  22348. name: "M A C R O",
  22349. height: math.unit(300, "miles")
  22350. },
  22351. ]
  22352. ))
  22353. characterMakers.push(() => makeCharacter(
  22354. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22355. {
  22356. side: {
  22357. height: math.unit(15.6, "meters"),
  22358. weight: math.unit(700000, "kg"),
  22359. name: "Side",
  22360. image: {
  22361. source: "./media/characters/bunsen/side.svg",
  22362. extra: 1644 / 358
  22363. }
  22364. },
  22365. foot: {
  22366. height: math.unit(1.611 * 1644 / 358, "meter"),
  22367. name: "Foot",
  22368. image: {
  22369. source: "./media/characters/bunsen/foot.svg"
  22370. }
  22371. },
  22372. },
  22373. [
  22374. {
  22375. name: "Small",
  22376. height: math.unit(10, "feet")
  22377. },
  22378. {
  22379. name: "Normal",
  22380. height: math.unit(15.6, "meters"),
  22381. default: true
  22382. },
  22383. ]
  22384. ))
  22385. characterMakers.push(() => makeCharacter(
  22386. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22387. {
  22388. front: {
  22389. height: math.unit(4 + 11 / 12, "feet"),
  22390. weight: math.unit(140, "lb"),
  22391. name: "Front",
  22392. image: {
  22393. source: "./media/characters/sesh/front.svg",
  22394. extra: 3420 / 3231,
  22395. bottom: 72 / 3949.5
  22396. }
  22397. },
  22398. },
  22399. [
  22400. {
  22401. name: "Normal",
  22402. height: math.unit(4 + 11 / 12, "feet")
  22403. },
  22404. {
  22405. name: "Grown",
  22406. height: math.unit(15, "feet"),
  22407. default: true
  22408. },
  22409. {
  22410. name: "Macro",
  22411. height: math.unit(1500, "feet")
  22412. },
  22413. {
  22414. name: "Megamacro",
  22415. height: math.unit(30, "miles")
  22416. },
  22417. {
  22418. name: "Continental",
  22419. height: math.unit(3000, "miles")
  22420. },
  22421. {
  22422. name: "Gravity Mass",
  22423. height: math.unit(300000, "miles")
  22424. },
  22425. {
  22426. name: "Planet Buster",
  22427. height: math.unit(30000000, "miles")
  22428. },
  22429. {
  22430. name: "Big",
  22431. height: math.unit(3000000000, "miles")
  22432. },
  22433. ]
  22434. ))
  22435. characterMakers.push(() => makeCharacter(
  22436. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22437. {
  22438. front: {
  22439. height: math.unit(9, "feet"),
  22440. weight: math.unit(350, "lb"),
  22441. name: "Front",
  22442. image: {
  22443. source: "./media/characters/pepper/front.svg",
  22444. extra: 1448 / 1312,
  22445. bottom: 9.4 / 1457.88
  22446. }
  22447. },
  22448. back: {
  22449. height: math.unit(9, "feet"),
  22450. weight: math.unit(350, "lb"),
  22451. name: "Back",
  22452. image: {
  22453. source: "./media/characters/pepper/back.svg",
  22454. extra: 1423 / 1300,
  22455. bottom: 4.6 / 1429
  22456. }
  22457. },
  22458. maw: {
  22459. height: math.unit(0.932, "feet"),
  22460. name: "Maw",
  22461. image: {
  22462. source: "./media/characters/pepper/maw.svg"
  22463. }
  22464. },
  22465. },
  22466. [
  22467. {
  22468. name: "Normal",
  22469. height: math.unit(9, "feet"),
  22470. default: true
  22471. },
  22472. ]
  22473. ))
  22474. characterMakers.push(() => makeCharacter(
  22475. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22476. {
  22477. front: {
  22478. height: math.unit(6, "feet"),
  22479. weight: math.unit(150, "lb"),
  22480. name: "Front",
  22481. image: {
  22482. source: "./media/characters/maelstrom/front.svg",
  22483. extra: 2100 / 1883,
  22484. bottom: 94 / 2196.7
  22485. }
  22486. },
  22487. },
  22488. [
  22489. {
  22490. name: "Less Kaiju",
  22491. height: math.unit(200, "feet")
  22492. },
  22493. {
  22494. name: "Kaiju",
  22495. height: math.unit(400, "feet"),
  22496. default: true
  22497. },
  22498. {
  22499. name: "Kaiju-er",
  22500. height: math.unit(600, "feet")
  22501. },
  22502. ]
  22503. ))
  22504. characterMakers.push(() => makeCharacter(
  22505. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22506. {
  22507. front: {
  22508. height: math.unit(6 + 5 / 12, "feet"),
  22509. weight: math.unit(180, "lb"),
  22510. name: "Front",
  22511. image: {
  22512. source: "./media/characters/lexir/front.svg",
  22513. extra: 180 / 172,
  22514. bottom: 12 / 192
  22515. }
  22516. },
  22517. back: {
  22518. height: math.unit(6 + 5 / 12, "feet"),
  22519. weight: math.unit(180, "lb"),
  22520. name: "Back",
  22521. image: {
  22522. source: "./media/characters/lexir/back.svg",
  22523. extra: 183.84 / 175.5,
  22524. bottom: 3.1 / 187
  22525. }
  22526. },
  22527. },
  22528. [
  22529. {
  22530. name: "Very Smal",
  22531. height: math.unit(1, "nm")
  22532. },
  22533. {
  22534. name: "Normal",
  22535. height: math.unit(6 + 5 / 12, "feet"),
  22536. default: true
  22537. },
  22538. {
  22539. name: "Macro",
  22540. height: math.unit(1, "mile")
  22541. },
  22542. {
  22543. name: "Megamacro",
  22544. height: math.unit(50, "miles")
  22545. },
  22546. ]
  22547. ))
  22548. characterMakers.push(() => makeCharacter(
  22549. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22550. {
  22551. front: {
  22552. height: math.unit(1.5, "meters"),
  22553. weight: math.unit(100, "lb"),
  22554. name: "Front",
  22555. image: {
  22556. source: "./media/characters/maksio/front.svg",
  22557. extra: 1549 / 1531,
  22558. bottom: 123.7 / 1674.5429
  22559. }
  22560. },
  22561. back: {
  22562. height: math.unit(1.5, "meters"),
  22563. weight: math.unit(100, "lb"),
  22564. name: "Back",
  22565. image: {
  22566. source: "./media/characters/maksio/back.svg",
  22567. extra: 1541 / 1509,
  22568. bottom: 97 / 1639
  22569. }
  22570. },
  22571. hand: {
  22572. height: math.unit(0.621, "feet"),
  22573. name: "Hand",
  22574. image: {
  22575. source: "./media/characters/maksio/hand.svg"
  22576. }
  22577. },
  22578. foot: {
  22579. height: math.unit(1.611, "feet"),
  22580. name: "Foot",
  22581. image: {
  22582. source: "./media/characters/maksio/foot.svg"
  22583. }
  22584. },
  22585. },
  22586. [
  22587. {
  22588. name: "Shrunken",
  22589. height: math.unit(10, "cm")
  22590. },
  22591. {
  22592. name: "Normal",
  22593. height: math.unit(150, "cm"),
  22594. default: true
  22595. },
  22596. ]
  22597. ))
  22598. characterMakers.push(() => makeCharacter(
  22599. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22600. {
  22601. front: {
  22602. height: math.unit(100, "feet"),
  22603. name: "Front",
  22604. image: {
  22605. source: "./media/characters/erza-bear/front.svg",
  22606. extra: 2449 / 2390,
  22607. bottom: 46 / 2494
  22608. }
  22609. },
  22610. back: {
  22611. height: math.unit(100, "feet"),
  22612. name: "Back",
  22613. image: {
  22614. source: "./media/characters/erza-bear/back.svg",
  22615. extra: 2489 / 2430,
  22616. bottom: 85.4 / 2480
  22617. }
  22618. },
  22619. tail: {
  22620. height: math.unit(42, "feet"),
  22621. name: "Tail",
  22622. image: {
  22623. source: "./media/characters/erza-bear/tail.svg"
  22624. }
  22625. },
  22626. tongue: {
  22627. height: math.unit(8, "feet"),
  22628. name: "Tongue",
  22629. image: {
  22630. source: "./media/characters/erza-bear/tongue.svg"
  22631. }
  22632. },
  22633. dick: {
  22634. height: math.unit(10.5, "feet"),
  22635. name: "Dick",
  22636. image: {
  22637. source: "./media/characters/erza-bear/dick.svg"
  22638. }
  22639. },
  22640. dickVertical: {
  22641. height: math.unit(16.9, "feet"),
  22642. name: "Dick (Vertical)",
  22643. image: {
  22644. source: "./media/characters/erza-bear/dick-vertical.svg"
  22645. }
  22646. },
  22647. },
  22648. [
  22649. {
  22650. name: "Macro",
  22651. height: math.unit(100, "feet"),
  22652. default: true
  22653. },
  22654. ]
  22655. ))
  22656. characterMakers.push(() => makeCharacter(
  22657. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22658. {
  22659. front: {
  22660. height: math.unit(172, "cm"),
  22661. weight: math.unit(73, "kg"),
  22662. name: "Front",
  22663. image: {
  22664. source: "./media/characters/violet-flor/front.svg",
  22665. extra: 1530 / 1442,
  22666. bottom: 61.9 / 1588.8
  22667. }
  22668. },
  22669. back: {
  22670. height: math.unit(180, "cm"),
  22671. weight: math.unit(73, "kg"),
  22672. name: "Back",
  22673. image: {
  22674. source: "./media/characters/violet-flor/back.svg",
  22675. extra: 1692 / 1630,
  22676. bottom: 20 / 1712
  22677. }
  22678. },
  22679. },
  22680. [
  22681. {
  22682. name: "Normal",
  22683. height: math.unit(172, "cm"),
  22684. default: true
  22685. },
  22686. ]
  22687. ))
  22688. characterMakers.push(() => makeCharacter(
  22689. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22690. {
  22691. front: {
  22692. height: math.unit(6, "feet"),
  22693. weight: math.unit(220, "lb"),
  22694. name: "Front",
  22695. image: {
  22696. source: "./media/characters/lynn-rhea/front.svg",
  22697. extra: 310 / 273
  22698. }
  22699. },
  22700. back: {
  22701. height: math.unit(6, "feet"),
  22702. weight: math.unit(220, "lb"),
  22703. name: "Back",
  22704. image: {
  22705. source: "./media/characters/lynn-rhea/back.svg",
  22706. extra: 310 / 273
  22707. }
  22708. },
  22709. dicks: {
  22710. height: math.unit(0.9, "feet"),
  22711. name: "Dicks",
  22712. image: {
  22713. source: "./media/characters/lynn-rhea/dicks.svg"
  22714. }
  22715. },
  22716. slit: {
  22717. height: math.unit(0.4, "feet"),
  22718. name: "Slit",
  22719. image: {
  22720. source: "./media/characters/lynn-rhea/slit.svg"
  22721. }
  22722. },
  22723. },
  22724. [
  22725. {
  22726. name: "Micro",
  22727. height: math.unit(1, "inch")
  22728. },
  22729. {
  22730. name: "Macro",
  22731. height: math.unit(60, "feet"),
  22732. default: true
  22733. },
  22734. {
  22735. name: "Megamacro",
  22736. height: math.unit(2, "miles")
  22737. },
  22738. {
  22739. name: "Gigamacro",
  22740. height: math.unit(3, "earths")
  22741. },
  22742. {
  22743. name: "Galactic",
  22744. height: math.unit(0.8, "galaxies")
  22745. },
  22746. ]
  22747. ))
  22748. characterMakers.push(() => makeCharacter(
  22749. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22750. {
  22751. front: {
  22752. height: math.unit(1600, "feet"),
  22753. weight: math.unit(85758785169, "kg"),
  22754. name: "Front",
  22755. image: {
  22756. source: "./media/characters/valathos/front.svg",
  22757. extra: 1451 / 1339
  22758. }
  22759. },
  22760. },
  22761. [
  22762. {
  22763. name: "Macro",
  22764. height: math.unit(1600, "feet"),
  22765. default: true
  22766. },
  22767. ]
  22768. ))
  22769. characterMakers.push(() => makeCharacter(
  22770. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22771. {
  22772. front: {
  22773. height: math.unit(7 + 5 / 12, "feet"),
  22774. weight: math.unit(300, "lb"),
  22775. name: "Front",
  22776. image: {
  22777. source: "./media/characters/azula/front.svg",
  22778. extra: 3208 / 2880,
  22779. bottom: 80.2 / 3277
  22780. }
  22781. },
  22782. back: {
  22783. height: math.unit(7 + 5 / 12, "feet"),
  22784. weight: math.unit(300, "lb"),
  22785. name: "Back",
  22786. image: {
  22787. source: "./media/characters/azula/back.svg",
  22788. extra: 3169 / 2822,
  22789. bottom: 150.6 / 3321
  22790. }
  22791. },
  22792. },
  22793. [
  22794. {
  22795. name: "Normal",
  22796. height: math.unit(7 + 5 / 12, "feet"),
  22797. default: true
  22798. },
  22799. {
  22800. name: "Big",
  22801. height: math.unit(20, "feet")
  22802. },
  22803. ]
  22804. ))
  22805. characterMakers.push(() => makeCharacter(
  22806. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22807. {
  22808. front: {
  22809. height: math.unit(5 + 1 / 12, "feet"),
  22810. weight: math.unit(110, "lb"),
  22811. name: "Front",
  22812. image: {
  22813. source: "./media/characters/rupert/front.svg",
  22814. extra: 1549 / 1495,
  22815. bottom: 54.2 / 1604.4
  22816. }
  22817. },
  22818. },
  22819. [
  22820. {
  22821. name: "Normal",
  22822. height: math.unit(5 + 1 / 12, "feet"),
  22823. default: true
  22824. },
  22825. ]
  22826. ))
  22827. characterMakers.push(() => makeCharacter(
  22828. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22829. {
  22830. front: {
  22831. height: math.unit(8 + 4 / 12, "feet"),
  22832. weight: math.unit(350, "lb"),
  22833. name: "Front",
  22834. image: {
  22835. source: "./media/characters/sheera-castellar/front.svg",
  22836. extra: 1957 / 1894,
  22837. bottom: 26.97 / 1975.017
  22838. }
  22839. },
  22840. side: {
  22841. height: math.unit(8 + 4 / 12, "feet"),
  22842. weight: math.unit(350, "lb"),
  22843. name: "Side",
  22844. image: {
  22845. source: "./media/characters/sheera-castellar/side.svg",
  22846. extra: 1957 / 1894
  22847. }
  22848. },
  22849. back: {
  22850. height: math.unit(8 + 4 / 12, "feet"),
  22851. weight: math.unit(350, "lb"),
  22852. name: "Back",
  22853. image: {
  22854. source: "./media/characters/sheera-castellar/back.svg",
  22855. extra: 1957 / 1894
  22856. }
  22857. },
  22858. angled: {
  22859. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22860. weight: math.unit(350, "lb"),
  22861. name: "Angled",
  22862. image: {
  22863. source: "./media/characters/sheera-castellar/angled.svg",
  22864. extra: 1807 / 1707,
  22865. bottom: 68 / 1875
  22866. }
  22867. },
  22868. genitals: {
  22869. height: math.unit(2.2, "feet"),
  22870. name: "Genitals",
  22871. image: {
  22872. source: "./media/characters/sheera-castellar/genitals.svg"
  22873. }
  22874. },
  22875. taur: {
  22876. height: math.unit(10 + 6/12, "feet"),
  22877. name: "Taur",
  22878. image: {
  22879. source: "./media/characters/sheera-castellar/taur.svg",
  22880. extra: 2017/1909,
  22881. bottom: 185/2202
  22882. }
  22883. },
  22884. },
  22885. [
  22886. {
  22887. name: "Normal",
  22888. height: math.unit(8 + 4 / 12, "feet")
  22889. },
  22890. {
  22891. name: "Macro",
  22892. height: math.unit(150, "feet"),
  22893. default: true
  22894. },
  22895. {
  22896. name: "Macro+",
  22897. height: math.unit(800, "feet")
  22898. },
  22899. ]
  22900. ))
  22901. characterMakers.push(() => makeCharacter(
  22902. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22903. {
  22904. front: {
  22905. height: math.unit(6, "feet"),
  22906. weight: math.unit(150, "lb"),
  22907. name: "Front",
  22908. image: {
  22909. source: "./media/characters/jaipur/front.svg",
  22910. extra: 3860 / 3731,
  22911. bottom: 287 / 4140
  22912. }
  22913. },
  22914. back: {
  22915. height: math.unit(6, "feet"),
  22916. weight: math.unit(150, "lb"),
  22917. name: "Back",
  22918. image: {
  22919. source: "./media/characters/jaipur/back.svg",
  22920. extra: 4060 / 3930,
  22921. bottom: 151 / 4200
  22922. }
  22923. },
  22924. },
  22925. [
  22926. {
  22927. name: "Normal",
  22928. height: math.unit(1.85, "meters"),
  22929. default: true
  22930. },
  22931. {
  22932. name: "Macro",
  22933. height: math.unit(150, "meters")
  22934. },
  22935. {
  22936. name: "Macro+",
  22937. height: math.unit(0.5, "miles")
  22938. },
  22939. {
  22940. name: "Macro++",
  22941. height: math.unit(2.5, "miles")
  22942. },
  22943. {
  22944. name: "Macro+++",
  22945. height: math.unit(12, "miles")
  22946. },
  22947. {
  22948. name: "Macro++++",
  22949. height: math.unit(120, "miles")
  22950. },
  22951. {
  22952. name: "Macro+++++",
  22953. height: math.unit(1200, "miles")
  22954. },
  22955. ]
  22956. ))
  22957. characterMakers.push(() => makeCharacter(
  22958. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22959. {
  22960. front: {
  22961. height: math.unit(6, "feet"),
  22962. weight: math.unit(150, "lb"),
  22963. name: "Front",
  22964. image: {
  22965. source: "./media/characters/sheila-wolf/front.svg",
  22966. extra: 1931 / 1808,
  22967. bottom: 29.5 / 1960
  22968. }
  22969. },
  22970. dick: {
  22971. height: math.unit(1.464, "feet"),
  22972. name: "Dick",
  22973. image: {
  22974. source: "./media/characters/sheila-wolf/dick.svg"
  22975. }
  22976. },
  22977. muzzle: {
  22978. height: math.unit(0.513, "feet"),
  22979. name: "Muzzle",
  22980. image: {
  22981. source: "./media/characters/sheila-wolf/muzzle.svg"
  22982. }
  22983. },
  22984. },
  22985. [
  22986. {
  22987. name: "Macro",
  22988. height: math.unit(70, "feet"),
  22989. default: true
  22990. },
  22991. ]
  22992. ))
  22993. characterMakers.push(() => makeCharacter(
  22994. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22995. {
  22996. front: {
  22997. height: math.unit(32, "meters"),
  22998. weight: math.unit(300000, "kg"),
  22999. name: "Front",
  23000. image: {
  23001. source: "./media/characters/almor/front.svg",
  23002. extra: 1408 / 1322,
  23003. bottom: 94.6 / 1506.5
  23004. }
  23005. },
  23006. },
  23007. [
  23008. {
  23009. name: "Macro",
  23010. height: math.unit(32, "meters"),
  23011. default: true
  23012. },
  23013. ]
  23014. ))
  23015. characterMakers.push(() => makeCharacter(
  23016. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23017. {
  23018. front: {
  23019. height: math.unit(7, "feet"),
  23020. weight: math.unit(200, "lb"),
  23021. name: "Front",
  23022. image: {
  23023. source: "./media/characters/silver/front.svg",
  23024. extra: 472.1 / 450.5,
  23025. bottom: 26.5 / 499.424
  23026. }
  23027. },
  23028. },
  23029. [
  23030. {
  23031. name: "Normal",
  23032. height: math.unit(7, "feet"),
  23033. default: true
  23034. },
  23035. {
  23036. name: "Macro",
  23037. height: math.unit(800, "feet")
  23038. },
  23039. {
  23040. name: "Megamacro",
  23041. height: math.unit(250, "miles")
  23042. },
  23043. ]
  23044. ))
  23045. characterMakers.push(() => makeCharacter(
  23046. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23047. {
  23048. front: {
  23049. height: math.unit(6, "feet"),
  23050. weight: math.unit(150, "lb"),
  23051. name: "Front",
  23052. image: {
  23053. source: "./media/characters/pliskin/front.svg",
  23054. extra: 1469 / 1359,
  23055. bottom: 70 / 1540
  23056. }
  23057. },
  23058. },
  23059. [
  23060. {
  23061. name: "Micro",
  23062. height: math.unit(3, "inches")
  23063. },
  23064. {
  23065. name: "Normal",
  23066. height: math.unit(5 + 11 / 12, "feet"),
  23067. default: true
  23068. },
  23069. {
  23070. name: "Macro",
  23071. height: math.unit(120, "feet")
  23072. },
  23073. ]
  23074. ))
  23075. characterMakers.push(() => makeCharacter(
  23076. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23077. {
  23078. front: {
  23079. height: math.unit(6, "feet"),
  23080. weight: math.unit(150, "lb"),
  23081. name: "Front",
  23082. image: {
  23083. source: "./media/characters/sammy/front.svg",
  23084. extra: 1193 / 1089,
  23085. bottom: 30.5 / 1226
  23086. }
  23087. },
  23088. },
  23089. [
  23090. {
  23091. name: "Macro",
  23092. height: math.unit(1700, "feet"),
  23093. default: true
  23094. },
  23095. {
  23096. name: "Examacro",
  23097. height: math.unit(2.5e9, "lightyears")
  23098. },
  23099. ]
  23100. ))
  23101. characterMakers.push(() => makeCharacter(
  23102. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23103. {
  23104. front: {
  23105. height: math.unit(21, "meters"),
  23106. weight: math.unit(12, "tonnes"),
  23107. name: "Front",
  23108. image: {
  23109. source: "./media/characters/kuru/front.svg",
  23110. extra: 4301 / 3785,
  23111. bottom: 371.3 / 4691
  23112. }
  23113. },
  23114. },
  23115. [
  23116. {
  23117. name: "Macro",
  23118. height: math.unit(21, "meters"),
  23119. default: true
  23120. },
  23121. ]
  23122. ))
  23123. characterMakers.push(() => makeCharacter(
  23124. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23125. {
  23126. front: {
  23127. height: math.unit(23, "meters"),
  23128. weight: math.unit(12.2, "tonnes"),
  23129. name: "Front",
  23130. image: {
  23131. source: "./media/characters/rakka/front.svg",
  23132. extra: 4670 / 4169,
  23133. bottom: 301 / 4968.7
  23134. }
  23135. },
  23136. },
  23137. [
  23138. {
  23139. name: "Macro",
  23140. height: math.unit(23, "meters"),
  23141. default: true
  23142. },
  23143. ]
  23144. ))
  23145. characterMakers.push(() => makeCharacter(
  23146. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23147. {
  23148. front: {
  23149. height: math.unit(6, "feet"),
  23150. weight: math.unit(150, "lb"),
  23151. name: "Front",
  23152. image: {
  23153. source: "./media/characters/rhys-feline/front.svg",
  23154. extra: 2488 / 2308,
  23155. bottom: 35.67 / 2519.19
  23156. }
  23157. },
  23158. },
  23159. [
  23160. {
  23161. name: "Really Small",
  23162. height: math.unit(1, "nm")
  23163. },
  23164. {
  23165. name: "Micro",
  23166. height: math.unit(4, "inches")
  23167. },
  23168. {
  23169. name: "Normal",
  23170. height: math.unit(4 + 10 / 12, "feet"),
  23171. default: true
  23172. },
  23173. {
  23174. name: "Macro",
  23175. height: math.unit(100, "feet")
  23176. },
  23177. {
  23178. name: "Megamacto",
  23179. height: math.unit(50, "miles")
  23180. },
  23181. ]
  23182. ))
  23183. characterMakers.push(() => makeCharacter(
  23184. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23185. {
  23186. side: {
  23187. height: math.unit(30, "feet"),
  23188. weight: math.unit(35000, "kg"),
  23189. name: "Side",
  23190. image: {
  23191. source: "./media/characters/alydar/side.svg",
  23192. extra: 234 / 222,
  23193. bottom: 6.5 / 241
  23194. }
  23195. },
  23196. front: {
  23197. height: math.unit(30, "feet"),
  23198. weight: math.unit(35000, "kg"),
  23199. name: "Front",
  23200. image: {
  23201. source: "./media/characters/alydar/front.svg",
  23202. extra: 223.37 / 210.2,
  23203. bottom: 22.3 / 246.76
  23204. }
  23205. },
  23206. top: {
  23207. height: math.unit(64.54, "feet"),
  23208. weight: math.unit(35000, "kg"),
  23209. name: "Top",
  23210. image: {
  23211. source: "./media/characters/alydar/top.svg"
  23212. }
  23213. },
  23214. anthro: {
  23215. height: math.unit(30, "feet"),
  23216. weight: math.unit(9000, "kg"),
  23217. name: "Anthro",
  23218. image: {
  23219. source: "./media/characters/alydar/anthro.svg",
  23220. extra: 432 / 421,
  23221. bottom: 7.18 / 440
  23222. }
  23223. },
  23224. maw: {
  23225. height: math.unit(11.693, "feet"),
  23226. name: "Maw",
  23227. image: {
  23228. source: "./media/characters/alydar/maw.svg"
  23229. }
  23230. },
  23231. head: {
  23232. height: math.unit(11.693, "feet"),
  23233. name: "Head",
  23234. image: {
  23235. source: "./media/characters/alydar/head.svg"
  23236. }
  23237. },
  23238. headAlt: {
  23239. height: math.unit(12.861, "feet"),
  23240. name: "Head (Alt)",
  23241. image: {
  23242. source: "./media/characters/alydar/head-alt.svg"
  23243. }
  23244. },
  23245. wing: {
  23246. height: math.unit(20.712, "feet"),
  23247. name: "Wing",
  23248. image: {
  23249. source: "./media/characters/alydar/wing.svg"
  23250. }
  23251. },
  23252. wingFeather: {
  23253. height: math.unit(9.662, "feet"),
  23254. name: "Wing Feather",
  23255. image: {
  23256. source: "./media/characters/alydar/wing-feather.svg"
  23257. }
  23258. },
  23259. countourFeather: {
  23260. height: math.unit(4.154, "feet"),
  23261. name: "Contour Feather",
  23262. image: {
  23263. source: "./media/characters/alydar/contour-feather.svg"
  23264. }
  23265. },
  23266. },
  23267. [
  23268. {
  23269. name: "Diplomatic",
  23270. height: math.unit(13, "feet"),
  23271. default: true
  23272. },
  23273. {
  23274. name: "Small",
  23275. height: math.unit(30, "feet")
  23276. },
  23277. {
  23278. name: "Normal",
  23279. height: math.unit(95, "feet"),
  23280. default: true
  23281. },
  23282. {
  23283. name: "Large",
  23284. height: math.unit(285, "feet")
  23285. },
  23286. {
  23287. name: "Incomprehensible",
  23288. height: math.unit(450, "megameters")
  23289. },
  23290. ]
  23291. ))
  23292. characterMakers.push(() => makeCharacter(
  23293. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23294. {
  23295. side: {
  23296. height: math.unit(11, "feet"),
  23297. weight: math.unit(1750, "kg"),
  23298. name: "Side",
  23299. image: {
  23300. source: "./media/characters/selicia/side.svg",
  23301. extra: 440 / 396,
  23302. bottom: 24.8 / 465.979
  23303. }
  23304. },
  23305. maw: {
  23306. height: math.unit(4.665, "feet"),
  23307. name: "Maw",
  23308. image: {
  23309. source: "./media/characters/selicia/maw.svg"
  23310. }
  23311. },
  23312. },
  23313. [
  23314. {
  23315. name: "Normal",
  23316. height: math.unit(11, "feet"),
  23317. default: true
  23318. },
  23319. ]
  23320. ))
  23321. characterMakers.push(() => makeCharacter(
  23322. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23323. {
  23324. side: {
  23325. height: math.unit(2 + 6 / 12, "feet"),
  23326. weight: math.unit(30, "lb"),
  23327. name: "Side",
  23328. image: {
  23329. source: "./media/characters/layla/side.svg",
  23330. extra: 244 / 188,
  23331. bottom: 18.2 / 262.1
  23332. }
  23333. },
  23334. back: {
  23335. height: math.unit(2 + 6 / 12, "feet"),
  23336. weight: math.unit(30, "lb"),
  23337. name: "Back",
  23338. image: {
  23339. source: "./media/characters/layla/back.svg",
  23340. extra: 308 / 241.5,
  23341. bottom: 8.9 / 316.8
  23342. }
  23343. },
  23344. cumming: {
  23345. height: math.unit(2 + 6 / 12, "feet"),
  23346. weight: math.unit(30, "lb"),
  23347. name: "Cumming",
  23348. image: {
  23349. source: "./media/characters/layla/cumming.svg",
  23350. extra: 342 / 279,
  23351. bottom: 595 / 938
  23352. }
  23353. },
  23354. dickFlaccid: {
  23355. height: math.unit(2.595, "feet"),
  23356. name: "Flaccid Genitals",
  23357. image: {
  23358. source: "./media/characters/layla/dick-flaccid.svg"
  23359. }
  23360. },
  23361. dickErect: {
  23362. height: math.unit(2.359, "feet"),
  23363. name: "Erect Genitals",
  23364. image: {
  23365. source: "./media/characters/layla/dick-erect.svg"
  23366. }
  23367. },
  23368. dragon: {
  23369. height: math.unit(40, "feet"),
  23370. name: "Dragon",
  23371. image: {
  23372. source: "./media/characters/layla/dragon.svg",
  23373. extra: 610/535,
  23374. bottom: 367/977
  23375. }
  23376. },
  23377. taur: {
  23378. height: math.unit(30, "feet"),
  23379. name: "Taur",
  23380. image: {
  23381. source: "./media/characters/layla/taur.svg",
  23382. extra: 1268/1199,
  23383. bottom: 112/1380
  23384. }
  23385. },
  23386. },
  23387. [
  23388. {
  23389. name: "Micro",
  23390. height: math.unit(1, "inch")
  23391. },
  23392. {
  23393. name: "Small",
  23394. height: math.unit(1, "foot")
  23395. },
  23396. {
  23397. name: "Normal",
  23398. height: math.unit(2 + 6 / 12, "feet"),
  23399. default: true
  23400. },
  23401. {
  23402. name: "Macro",
  23403. height: math.unit(200, "feet")
  23404. },
  23405. {
  23406. name: "Megamacro",
  23407. height: math.unit(1000, "miles")
  23408. },
  23409. {
  23410. name: "Planetary",
  23411. height: math.unit(8000, "miles")
  23412. },
  23413. {
  23414. name: "True Layla",
  23415. height: math.unit(200000 * 7, "multiverses")
  23416. },
  23417. ]
  23418. ))
  23419. characterMakers.push(() => makeCharacter(
  23420. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23421. {
  23422. back: {
  23423. height: math.unit(10.5, "feet"),
  23424. weight: math.unit(800, "lb"),
  23425. name: "Back",
  23426. image: {
  23427. source: "./media/characters/knox/back.svg",
  23428. extra: 1486 / 1089,
  23429. bottom: 107 / 1601.4
  23430. }
  23431. },
  23432. side: {
  23433. height: math.unit(10.5, "feet"),
  23434. weight: math.unit(800, "lb"),
  23435. name: "Side",
  23436. image: {
  23437. source: "./media/characters/knox/side.svg",
  23438. extra: 244 / 218,
  23439. bottom: 14 / 260
  23440. }
  23441. },
  23442. },
  23443. [
  23444. {
  23445. name: "Compact",
  23446. height: math.unit(10.5, "feet"),
  23447. default: true
  23448. },
  23449. {
  23450. name: "Dynamax",
  23451. height: math.unit(210, "feet")
  23452. },
  23453. {
  23454. name: "Full Macro",
  23455. height: math.unit(850, "feet")
  23456. },
  23457. ]
  23458. ))
  23459. characterMakers.push(() => makeCharacter(
  23460. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23461. {
  23462. front: {
  23463. height: math.unit(6, "feet"),
  23464. weight: math.unit(152, "lb"),
  23465. name: "Front",
  23466. image: {
  23467. source: "./media/characters/shin-pikachu/front.svg",
  23468. extra: 1854/1602,
  23469. bottom: 166/2020
  23470. }
  23471. },
  23472. hand: {
  23473. height: math.unit(1.055, "feet"),
  23474. name: "Hand",
  23475. image: {
  23476. source: "./media/characters/shin-pikachu/hand.svg"
  23477. }
  23478. },
  23479. foot: {
  23480. height: math.unit(1.1, "feet"),
  23481. name: "Foot",
  23482. image: {
  23483. source: "./media/characters/shin-pikachu/foot.svg"
  23484. }
  23485. },
  23486. collar: {
  23487. height: math.unit(0.386, "feet"),
  23488. name: "Collar",
  23489. image: {
  23490. source: "./media/characters/shin-pikachu/collar.svg"
  23491. }
  23492. },
  23493. },
  23494. [
  23495. {
  23496. name: "Smallest",
  23497. height: math.unit(0.5, "inches")
  23498. },
  23499. {
  23500. name: "Micro",
  23501. height: math.unit(6, "inches")
  23502. },
  23503. {
  23504. name: "Normal",
  23505. height: math.unit(6, "feet"),
  23506. default: true
  23507. },
  23508. {
  23509. name: "Macro",
  23510. height: math.unit(150, "feet")
  23511. },
  23512. ]
  23513. ))
  23514. characterMakers.push(() => makeCharacter(
  23515. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23516. {
  23517. front: {
  23518. height: math.unit(28, "feet"),
  23519. weight: math.unit(10500, "lb"),
  23520. name: "Front",
  23521. image: {
  23522. source: "./media/characters/kayda/front.svg",
  23523. extra: 1536 / 1428,
  23524. bottom: 68.7 / 1603
  23525. }
  23526. },
  23527. back: {
  23528. height: math.unit(28, "feet"),
  23529. weight: math.unit(10500, "lb"),
  23530. name: "Back",
  23531. image: {
  23532. source: "./media/characters/kayda/back.svg",
  23533. extra: 1557 / 1464,
  23534. bottom: 39.5 / 1597.49
  23535. }
  23536. },
  23537. dick: {
  23538. height: math.unit(3.858, "feet"),
  23539. name: "Dick",
  23540. image: {
  23541. source: "./media/characters/kayda/dick.svg"
  23542. }
  23543. },
  23544. },
  23545. [
  23546. {
  23547. name: "Macro",
  23548. height: math.unit(28, "feet"),
  23549. default: true
  23550. },
  23551. ]
  23552. ))
  23553. characterMakers.push(() => makeCharacter(
  23554. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23555. {
  23556. front: {
  23557. height: math.unit(10 + 11 / 12, "feet"),
  23558. weight: math.unit(1400, "lb"),
  23559. name: "Front",
  23560. image: {
  23561. source: "./media/characters/brian/front.svg",
  23562. extra: 737 / 692,
  23563. bottom: 55.4 / 785
  23564. }
  23565. },
  23566. },
  23567. [
  23568. {
  23569. name: "Normal",
  23570. height: math.unit(10 + 11 / 12, "feet"),
  23571. default: true
  23572. },
  23573. ]
  23574. ))
  23575. characterMakers.push(() => makeCharacter(
  23576. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23577. {
  23578. front: {
  23579. height: math.unit(5 + 8 / 12, "feet"),
  23580. weight: math.unit(140, "lb"),
  23581. name: "Front",
  23582. image: {
  23583. source: "./media/characters/khemri/front.svg",
  23584. extra: 4780 / 4059,
  23585. bottom: 80.1 / 4859.25
  23586. }
  23587. },
  23588. },
  23589. [
  23590. {
  23591. name: "Micro",
  23592. height: math.unit(6, "inches")
  23593. },
  23594. {
  23595. name: "Normal",
  23596. height: math.unit(5 + 8 / 12, "feet"),
  23597. default: true
  23598. },
  23599. ]
  23600. ))
  23601. characterMakers.push(() => makeCharacter(
  23602. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23603. {
  23604. front: {
  23605. height: math.unit(13, "feet"),
  23606. weight: math.unit(1700, "lb"),
  23607. name: "Front",
  23608. image: {
  23609. source: "./media/characters/felix-braveheart/front.svg",
  23610. extra: 1222 / 1157,
  23611. bottom: 53.2 / 1280
  23612. }
  23613. },
  23614. back: {
  23615. height: math.unit(13, "feet"),
  23616. weight: math.unit(1700, "lb"),
  23617. name: "Back",
  23618. image: {
  23619. source: "./media/characters/felix-braveheart/back.svg",
  23620. extra: 1277 / 1203,
  23621. bottom: 50.2 / 1327
  23622. }
  23623. },
  23624. feral: {
  23625. height: math.unit(6, "feet"),
  23626. weight: math.unit(400, "lb"),
  23627. name: "Feral",
  23628. image: {
  23629. source: "./media/characters/felix-braveheart/feral.svg",
  23630. extra: 682 / 625,
  23631. bottom: 6.9 / 688
  23632. }
  23633. },
  23634. },
  23635. [
  23636. {
  23637. name: "Normal",
  23638. height: math.unit(13, "feet"),
  23639. default: true
  23640. },
  23641. ]
  23642. ))
  23643. characterMakers.push(() => makeCharacter(
  23644. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23645. {
  23646. side: {
  23647. height: math.unit(5 + 11 / 12, "feet"),
  23648. weight: math.unit(1400, "lb"),
  23649. name: "Side",
  23650. image: {
  23651. source: "./media/characters/shadow-blade/side.svg",
  23652. extra: 1726 / 1267,
  23653. bottom: 58.4 / 1785
  23654. }
  23655. },
  23656. },
  23657. [
  23658. {
  23659. name: "Normal",
  23660. height: math.unit(5 + 11 / 12, "feet"),
  23661. default: true
  23662. },
  23663. ]
  23664. ))
  23665. characterMakers.push(() => makeCharacter(
  23666. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23667. {
  23668. front: {
  23669. height: math.unit(1 + 6 / 12, "feet"),
  23670. weight: math.unit(25, "lb"),
  23671. name: "Front",
  23672. image: {
  23673. source: "./media/characters/karla-halldor/front.svg",
  23674. extra: 1459 / 1383,
  23675. bottom: 12 / 1472
  23676. }
  23677. },
  23678. },
  23679. [
  23680. {
  23681. name: "Normal",
  23682. height: math.unit(1 + 6 / 12, "feet"),
  23683. default: true
  23684. },
  23685. ]
  23686. ))
  23687. characterMakers.push(() => makeCharacter(
  23688. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23689. {
  23690. front: {
  23691. height: math.unit(6 + 2 / 12, "feet"),
  23692. weight: math.unit(160, "lb"),
  23693. name: "Front",
  23694. image: {
  23695. source: "./media/characters/ariam/front.svg",
  23696. extra: 714 / 617,
  23697. bottom: 23.4 / 737,
  23698. }
  23699. },
  23700. squatting: {
  23701. height: math.unit(4.1, "feet"),
  23702. weight: math.unit(160, "lb"),
  23703. name: "Squatting",
  23704. image: {
  23705. source: "./media/characters/ariam/squatting.svg",
  23706. extra: 2617 / 2112,
  23707. bottom: 61.2 / 2681,
  23708. }
  23709. },
  23710. },
  23711. [
  23712. {
  23713. name: "Normal",
  23714. height: math.unit(6 + 2 / 12, "feet"),
  23715. default: true
  23716. },
  23717. {
  23718. name: "Normal+",
  23719. height: math.unit(4, "meters")
  23720. },
  23721. {
  23722. name: "Macro",
  23723. height: math.unit(50, "meters")
  23724. },
  23725. {
  23726. name: "Macro+",
  23727. height: math.unit(100, "meters")
  23728. },
  23729. {
  23730. name: "Megamacro",
  23731. height: math.unit(20, "km")
  23732. },
  23733. ]
  23734. ))
  23735. characterMakers.push(() => makeCharacter(
  23736. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23737. {
  23738. front: {
  23739. height: math.unit(1.67, "meters"),
  23740. weight: math.unit(140, "lb"),
  23741. name: "Front",
  23742. image: {
  23743. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23744. extra: 438 / 410,
  23745. bottom: 0.75 / 439
  23746. }
  23747. },
  23748. },
  23749. [
  23750. {
  23751. name: "Shrunken",
  23752. height: math.unit(7.6, "cm")
  23753. },
  23754. {
  23755. name: "Human Scale",
  23756. height: math.unit(1.67, "meters")
  23757. },
  23758. {
  23759. name: "Wolxi Scale",
  23760. height: math.unit(36.7, "meters"),
  23761. default: true
  23762. },
  23763. ]
  23764. ))
  23765. characterMakers.push(() => makeCharacter(
  23766. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23767. {
  23768. front: {
  23769. height: math.unit(1.73, "meters"),
  23770. weight: math.unit(240, "lb"),
  23771. name: "Front",
  23772. image: {
  23773. source: "./media/characters/izue-two-mothers/front.svg",
  23774. extra: 469 / 437,
  23775. bottom: 1.24 / 470.6
  23776. }
  23777. },
  23778. },
  23779. [
  23780. {
  23781. name: "Shrunken",
  23782. height: math.unit(7.86, "cm")
  23783. },
  23784. {
  23785. name: "Human Scale",
  23786. height: math.unit(1.73, "meters")
  23787. },
  23788. {
  23789. name: "Wolxi Scale",
  23790. height: math.unit(38, "meters"),
  23791. default: true
  23792. },
  23793. ]
  23794. ))
  23795. characterMakers.push(() => makeCharacter(
  23796. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23797. {
  23798. front: {
  23799. height: math.unit(1.55, "meters"),
  23800. weight: math.unit(120, "lb"),
  23801. name: "Front",
  23802. image: {
  23803. source: "./media/characters/teeku-love-shack/front.svg",
  23804. extra: 387 / 362,
  23805. bottom: 1.51 / 388
  23806. }
  23807. },
  23808. },
  23809. [
  23810. {
  23811. name: "Shrunken",
  23812. height: math.unit(7, "cm")
  23813. },
  23814. {
  23815. name: "Human Scale",
  23816. height: math.unit(1.55, "meters")
  23817. },
  23818. {
  23819. name: "Wolxi Scale",
  23820. height: math.unit(34.1, "meters"),
  23821. default: true
  23822. },
  23823. ]
  23824. ))
  23825. characterMakers.push(() => makeCharacter(
  23826. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23827. {
  23828. front: {
  23829. height: math.unit(1.83, "meters"),
  23830. weight: math.unit(135, "lb"),
  23831. name: "Front",
  23832. image: {
  23833. source: "./media/characters/dejma-the-red/front.svg",
  23834. extra: 480 / 458,
  23835. bottom: 1.8 / 482
  23836. }
  23837. },
  23838. },
  23839. [
  23840. {
  23841. name: "Shrunken",
  23842. height: math.unit(8.3, "cm")
  23843. },
  23844. {
  23845. name: "Human Scale",
  23846. height: math.unit(1.83, "meters")
  23847. },
  23848. {
  23849. name: "Wolxi Scale",
  23850. height: math.unit(40, "meters"),
  23851. default: true
  23852. },
  23853. ]
  23854. ))
  23855. characterMakers.push(() => makeCharacter(
  23856. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23857. {
  23858. front: {
  23859. height: math.unit(1.78, "meters"),
  23860. weight: math.unit(65, "kg"),
  23861. name: "Front",
  23862. image: {
  23863. source: "./media/characters/aki/front.svg",
  23864. extra: 452 / 415
  23865. }
  23866. },
  23867. frontNsfw: {
  23868. height: math.unit(1.78, "meters"),
  23869. weight: math.unit(65, "kg"),
  23870. name: "Front (NSFW)",
  23871. image: {
  23872. source: "./media/characters/aki/front-nsfw.svg",
  23873. extra: 452 / 415
  23874. }
  23875. },
  23876. back: {
  23877. height: math.unit(1.78, "meters"),
  23878. weight: math.unit(65, "kg"),
  23879. name: "Back",
  23880. image: {
  23881. source: "./media/characters/aki/back.svg",
  23882. extra: 452 / 415
  23883. }
  23884. },
  23885. rump: {
  23886. height: math.unit(2.05, "feet"),
  23887. name: "Rump",
  23888. image: {
  23889. source: "./media/characters/aki/rump.svg"
  23890. }
  23891. },
  23892. dick: {
  23893. height: math.unit(0.95, "feet"),
  23894. name: "Dick",
  23895. image: {
  23896. source: "./media/characters/aki/dick.svg"
  23897. }
  23898. },
  23899. },
  23900. [
  23901. {
  23902. name: "Micro",
  23903. height: math.unit(15, "cm")
  23904. },
  23905. {
  23906. name: "Normal",
  23907. height: math.unit(178, "cm"),
  23908. default: true
  23909. },
  23910. {
  23911. name: "Macro",
  23912. height: math.unit(214, "m")
  23913. },
  23914. {
  23915. name: "Macro+",
  23916. height: math.unit(534, "m")
  23917. },
  23918. ]
  23919. ))
  23920. characterMakers.push(() => makeCharacter(
  23921. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23922. {
  23923. front: {
  23924. height: math.unit(5 + 5 / 12, "feet"),
  23925. weight: math.unit(120, "lb"),
  23926. name: "Front",
  23927. image: {
  23928. source: "./media/characters/ari/front.svg",
  23929. extra: 714.5 / 682,
  23930. bottom: 8 / 722.5
  23931. }
  23932. },
  23933. },
  23934. [
  23935. {
  23936. name: "Normal",
  23937. height: math.unit(5 + 5 / 12, "feet")
  23938. },
  23939. {
  23940. name: "Macro",
  23941. height: math.unit(100, "feet"),
  23942. default: true
  23943. },
  23944. {
  23945. name: "Megamacro",
  23946. height: math.unit(100, "miles")
  23947. },
  23948. {
  23949. name: "Gigamacro",
  23950. height: math.unit(80000, "miles")
  23951. },
  23952. ]
  23953. ))
  23954. characterMakers.push(() => makeCharacter(
  23955. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23956. {
  23957. side: {
  23958. height: math.unit(9, "feet"),
  23959. weight: math.unit(400, "kg"),
  23960. name: "Side",
  23961. image: {
  23962. source: "./media/characters/bolt/side.svg",
  23963. extra: 1126 / 896,
  23964. bottom: 60 / 1187.3,
  23965. }
  23966. },
  23967. },
  23968. [
  23969. {
  23970. name: "Micro",
  23971. height: math.unit(5, "inches")
  23972. },
  23973. {
  23974. name: "Normal",
  23975. height: math.unit(9, "feet"),
  23976. default: true
  23977. },
  23978. {
  23979. name: "Macro",
  23980. height: math.unit(700, "feet")
  23981. },
  23982. {
  23983. name: "Max Size",
  23984. height: math.unit(1.52e22, "yottameters")
  23985. },
  23986. ]
  23987. ))
  23988. characterMakers.push(() => makeCharacter(
  23989. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23990. {
  23991. front: {
  23992. height: math.unit(4.53, "meters"),
  23993. weight: math.unit(3, "tons"),
  23994. name: "Front",
  23995. image: {
  23996. source: "./media/characters/draekon-sylviar/front.svg",
  23997. extra: 1228 / 1068,
  23998. bottom: 41 / 1270
  23999. }
  24000. },
  24001. tail: {
  24002. height: math.unit(1.772, "meter"),
  24003. name: "Tail",
  24004. image: {
  24005. source: "./media/characters/draekon-sylviar/tail.svg"
  24006. }
  24007. },
  24008. head: {
  24009. height: math.unit(1.331, "meter"),
  24010. name: "Head",
  24011. image: {
  24012. source: "./media/characters/draekon-sylviar/head.svg"
  24013. }
  24014. },
  24015. hand: {
  24016. height: math.unit(0.564, "meter"),
  24017. name: "Hand",
  24018. image: {
  24019. source: "./media/characters/draekon-sylviar/hand.svg"
  24020. }
  24021. },
  24022. foot: {
  24023. height: math.unit(0.621, "meter"),
  24024. name: "Foot",
  24025. image: {
  24026. source: "./media/characters/draekon-sylviar/foot.svg",
  24027. bottom: 32 / 324
  24028. }
  24029. },
  24030. dick: {
  24031. height: math.unit(61, "cm"),
  24032. name: "Dick",
  24033. image: {
  24034. source: "./media/characters/draekon-sylviar/dick.svg"
  24035. }
  24036. },
  24037. dickseparated: {
  24038. height: math.unit(61, "cm"),
  24039. name: "Dick-separated",
  24040. image: {
  24041. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24042. }
  24043. },
  24044. },
  24045. [
  24046. {
  24047. name: "Small",
  24048. height: math.unit(4.53 / 2, "meters"),
  24049. default: true
  24050. },
  24051. {
  24052. name: "Normal",
  24053. height: math.unit(4.53, "meters"),
  24054. default: true
  24055. },
  24056. {
  24057. name: "Large",
  24058. height: math.unit(4.53 * 2, "meters"),
  24059. },
  24060. ]
  24061. ))
  24062. characterMakers.push(() => makeCharacter(
  24063. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24064. {
  24065. front: {
  24066. height: math.unit(6 + 2 / 12, "feet"),
  24067. weight: math.unit(180, "lb"),
  24068. name: "Front",
  24069. image: {
  24070. source: "./media/characters/brawler/front.svg",
  24071. extra: 3301 / 3027,
  24072. bottom: 138 / 3439
  24073. }
  24074. },
  24075. },
  24076. [
  24077. {
  24078. name: "Normal",
  24079. height: math.unit(6 + 2 / 12, "feet"),
  24080. default: true
  24081. },
  24082. ]
  24083. ))
  24084. characterMakers.push(() => makeCharacter(
  24085. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24086. {
  24087. front: {
  24088. height: math.unit(11, "feet"),
  24089. weight: math.unit(1000, "lb"),
  24090. name: "Front",
  24091. image: {
  24092. source: "./media/characters/alex/front.svg",
  24093. bottom: 44.5 / 620
  24094. }
  24095. },
  24096. },
  24097. [
  24098. {
  24099. name: "Micro",
  24100. height: math.unit(5, "inches")
  24101. },
  24102. {
  24103. name: "Normal",
  24104. height: math.unit(11, "feet"),
  24105. default: true
  24106. },
  24107. {
  24108. name: "Macro",
  24109. height: math.unit(9.5e9, "feet")
  24110. },
  24111. {
  24112. name: "Max Size",
  24113. height: math.unit(1.4e283, "yottameters")
  24114. },
  24115. ]
  24116. ))
  24117. characterMakers.push(() => makeCharacter(
  24118. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24119. {
  24120. female: {
  24121. height: math.unit(29.9, "m"),
  24122. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24123. name: "Female",
  24124. image: {
  24125. source: "./media/characters/zenari/female.svg",
  24126. extra: 3281.6 / 3217,
  24127. bottom: 72.2 / 3353
  24128. }
  24129. },
  24130. male: {
  24131. height: math.unit(27.7, "m"),
  24132. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24133. name: "Male",
  24134. image: {
  24135. source: "./media/characters/zenari/male.svg",
  24136. extra: 3008 / 2991,
  24137. bottom: 54.6 / 3069
  24138. }
  24139. },
  24140. },
  24141. [
  24142. {
  24143. name: "Macro",
  24144. height: math.unit(29.7, "meters"),
  24145. default: true
  24146. },
  24147. ]
  24148. ))
  24149. characterMakers.push(() => makeCharacter(
  24150. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24151. {
  24152. female: {
  24153. height: math.unit(23.8, "m"),
  24154. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24155. name: "Female",
  24156. image: {
  24157. source: "./media/characters/mactarian/female.svg",
  24158. extra: 2662 / 2569,
  24159. bottom: 73 / 2736
  24160. }
  24161. },
  24162. male: {
  24163. height: math.unit(23.8, "m"),
  24164. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24165. name: "Male",
  24166. image: {
  24167. source: "./media/characters/mactarian/male.svg",
  24168. extra: 2673 / 2600,
  24169. bottom: 76 / 2750
  24170. }
  24171. },
  24172. },
  24173. [
  24174. {
  24175. name: "Macro",
  24176. height: math.unit(23.8, "meters"),
  24177. default: true
  24178. },
  24179. ]
  24180. ))
  24181. characterMakers.push(() => makeCharacter(
  24182. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24183. {
  24184. female: {
  24185. height: math.unit(19.3, "m"),
  24186. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24187. name: "Female",
  24188. image: {
  24189. source: "./media/characters/umok/female.svg",
  24190. extra: 2186 / 2078,
  24191. bottom: 87 / 2277
  24192. }
  24193. },
  24194. male: {
  24195. height: math.unit(19.5, "m"),
  24196. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24197. name: "Male",
  24198. image: {
  24199. source: "./media/characters/umok/male.svg",
  24200. extra: 2233 / 2140,
  24201. bottom: 24.4 / 2258
  24202. }
  24203. },
  24204. },
  24205. [
  24206. {
  24207. name: "Macro",
  24208. height: math.unit(19.3, "meters"),
  24209. default: true
  24210. },
  24211. ]
  24212. ))
  24213. characterMakers.push(() => makeCharacter(
  24214. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24215. {
  24216. female: {
  24217. height: math.unit(26.15, "m"),
  24218. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24219. name: "Female",
  24220. image: {
  24221. source: "./media/characters/joraxian/female.svg",
  24222. extra: 2912 / 2824,
  24223. bottom: 36 / 2956
  24224. }
  24225. },
  24226. male: {
  24227. height: math.unit(25.4, "m"),
  24228. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24229. name: "Male",
  24230. image: {
  24231. source: "./media/characters/joraxian/male.svg",
  24232. extra: 2877 / 2721,
  24233. bottom: 82 / 2967
  24234. }
  24235. },
  24236. },
  24237. [
  24238. {
  24239. name: "Macro",
  24240. height: math.unit(26.15, "meters"),
  24241. default: true
  24242. },
  24243. ]
  24244. ))
  24245. characterMakers.push(() => makeCharacter(
  24246. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24247. {
  24248. female: {
  24249. height: math.unit(21.6, "m"),
  24250. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24251. name: "Female",
  24252. image: {
  24253. source: "./media/characters/sthara/female.svg",
  24254. extra: 2516 / 2347,
  24255. bottom: 21.5 / 2537
  24256. }
  24257. },
  24258. male: {
  24259. height: math.unit(24, "m"),
  24260. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24261. name: "Male",
  24262. image: {
  24263. source: "./media/characters/sthara/male.svg",
  24264. extra: 2732 / 2607,
  24265. bottom: 23 / 2732
  24266. }
  24267. },
  24268. },
  24269. [
  24270. {
  24271. name: "Macro",
  24272. height: math.unit(21.6, "meters"),
  24273. default: true
  24274. },
  24275. ]
  24276. ))
  24277. characterMakers.push(() => makeCharacter(
  24278. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24279. {
  24280. front: {
  24281. height: math.unit(6 + 4 / 12, "feet"),
  24282. weight: math.unit(175, "lb"),
  24283. name: "Front",
  24284. image: {
  24285. source: "./media/characters/luka-bryzant/front.svg",
  24286. extra: 311 / 289,
  24287. bottom: 4 / 315
  24288. }
  24289. },
  24290. back: {
  24291. height: math.unit(6 + 4 / 12, "feet"),
  24292. weight: math.unit(175, "lb"),
  24293. name: "Back",
  24294. image: {
  24295. source: "./media/characters/luka-bryzant/back.svg",
  24296. extra: 311 / 289,
  24297. bottom: 3.8 / 313.7
  24298. }
  24299. },
  24300. },
  24301. [
  24302. {
  24303. name: "Micro",
  24304. height: math.unit(10, "inches")
  24305. },
  24306. {
  24307. name: "Normal",
  24308. height: math.unit(6 + 4 / 12, "feet"),
  24309. default: true
  24310. },
  24311. {
  24312. name: "Large",
  24313. height: math.unit(12, "feet")
  24314. },
  24315. ]
  24316. ))
  24317. characterMakers.push(() => makeCharacter(
  24318. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24319. {
  24320. front: {
  24321. height: math.unit(5 + 7 / 12, "feet"),
  24322. weight: math.unit(185, "lb"),
  24323. name: "Front",
  24324. image: {
  24325. source: "./media/characters/aman-aquila/front.svg",
  24326. extra: 1013 / 976,
  24327. bottom: 45.6 / 1057
  24328. }
  24329. },
  24330. side: {
  24331. height: math.unit(5 + 7 / 12, "feet"),
  24332. weight: math.unit(185, "lb"),
  24333. name: "Side",
  24334. image: {
  24335. source: "./media/characters/aman-aquila/side.svg",
  24336. extra: 1054 / 1011,
  24337. bottom: 15 / 1070
  24338. }
  24339. },
  24340. back: {
  24341. height: math.unit(5 + 7 / 12, "feet"),
  24342. weight: math.unit(185, "lb"),
  24343. name: "Back",
  24344. image: {
  24345. source: "./media/characters/aman-aquila/back.svg",
  24346. extra: 1026 / 970,
  24347. bottom: 12 / 1039
  24348. }
  24349. },
  24350. head: {
  24351. height: math.unit(1.211, "feet"),
  24352. name: "Head",
  24353. image: {
  24354. source: "./media/characters/aman-aquila/head.svg",
  24355. }
  24356. },
  24357. },
  24358. [
  24359. {
  24360. name: "Minimicro",
  24361. height: math.unit(0.057, "inches")
  24362. },
  24363. {
  24364. name: "Micro",
  24365. height: math.unit(7, "inches")
  24366. },
  24367. {
  24368. name: "Mini",
  24369. height: math.unit(3 + 7 / 12, "feet")
  24370. },
  24371. {
  24372. name: "Normal",
  24373. height: math.unit(5 + 7 / 12, "feet"),
  24374. default: true
  24375. },
  24376. {
  24377. name: "Macro",
  24378. height: math.unit(157 + 7 / 12, "feet")
  24379. },
  24380. {
  24381. name: "Megamacro",
  24382. height: math.unit(1557 + 7 / 12, "feet")
  24383. },
  24384. {
  24385. name: "Gigamacro",
  24386. height: math.unit(15557 + 7 / 12, "feet")
  24387. },
  24388. ]
  24389. ))
  24390. characterMakers.push(() => makeCharacter(
  24391. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24392. {
  24393. front: {
  24394. height: math.unit(3 + 2 / 12, "inches"),
  24395. weight: math.unit(0.3, "ounces"),
  24396. name: "Front",
  24397. image: {
  24398. source: "./media/characters/hiphae/front.svg",
  24399. extra: 1931 / 1683,
  24400. bottom: 24 / 1955
  24401. }
  24402. },
  24403. },
  24404. [
  24405. {
  24406. name: "Normal",
  24407. height: math.unit(3 + 1 / 2, "inches"),
  24408. default: true
  24409. },
  24410. ]
  24411. ))
  24412. characterMakers.push(() => makeCharacter(
  24413. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24414. {
  24415. front: {
  24416. height: math.unit(5 + 10 / 12, "feet"),
  24417. weight: math.unit(165, "lb"),
  24418. name: "Front",
  24419. image: {
  24420. source: "./media/characters/nicky/front.svg",
  24421. extra: 3144 / 2886,
  24422. bottom: 45.6 / 3192
  24423. }
  24424. },
  24425. back: {
  24426. height: math.unit(5 + 10 / 12, "feet"),
  24427. weight: math.unit(165, "lb"),
  24428. name: "Back",
  24429. image: {
  24430. source: "./media/characters/nicky/back.svg",
  24431. extra: 3055 / 2804,
  24432. bottom: 28.4 / 3087
  24433. }
  24434. },
  24435. frontclothed: {
  24436. height: math.unit(5 + 10 / 12, "feet"),
  24437. weight: math.unit(165, "lb"),
  24438. name: "Front-clothed",
  24439. image: {
  24440. source: "./media/characters/nicky/front-clothed.svg",
  24441. extra: 3184.9 / 2926.9,
  24442. bottom: 86.5 / 3239.9
  24443. }
  24444. },
  24445. foot: {
  24446. height: math.unit(1.16, "feet"),
  24447. name: "Foot",
  24448. image: {
  24449. source: "./media/characters/nicky/foot.svg"
  24450. }
  24451. },
  24452. feet: {
  24453. height: math.unit(1.34, "feet"),
  24454. name: "Feet",
  24455. image: {
  24456. source: "./media/characters/nicky/feet.svg"
  24457. }
  24458. },
  24459. maw: {
  24460. height: math.unit(0.9, "feet"),
  24461. name: "Maw",
  24462. image: {
  24463. source: "./media/characters/nicky/maw.svg"
  24464. }
  24465. },
  24466. },
  24467. [
  24468. {
  24469. name: "Normal",
  24470. height: math.unit(5 + 10 / 12, "feet"),
  24471. default: true
  24472. },
  24473. {
  24474. name: "Macro",
  24475. height: math.unit(60, "feet")
  24476. },
  24477. {
  24478. name: "Megamacro",
  24479. height: math.unit(1, "mile")
  24480. },
  24481. ]
  24482. ))
  24483. characterMakers.push(() => makeCharacter(
  24484. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24485. {
  24486. side: {
  24487. height: math.unit(10, "feet"),
  24488. weight: math.unit(600, "lb"),
  24489. name: "Side",
  24490. image: {
  24491. source: "./media/characters/blair/side.svg",
  24492. bottom: 16.6 / 475,
  24493. extra: 458 / 431
  24494. }
  24495. },
  24496. },
  24497. [
  24498. {
  24499. name: "Micro",
  24500. height: math.unit(8, "inches")
  24501. },
  24502. {
  24503. name: "Normal",
  24504. height: math.unit(10, "feet"),
  24505. default: true
  24506. },
  24507. {
  24508. name: "Macro",
  24509. height: math.unit(180, "feet")
  24510. },
  24511. ]
  24512. ))
  24513. characterMakers.push(() => makeCharacter(
  24514. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24515. {
  24516. front: {
  24517. height: math.unit(5 + 4 / 12, "feet"),
  24518. weight: math.unit(125, "lb"),
  24519. name: "Front",
  24520. image: {
  24521. source: "./media/characters/fisher/front.svg",
  24522. extra: 444 / 390,
  24523. bottom: 2 / 444.8
  24524. }
  24525. },
  24526. },
  24527. [
  24528. {
  24529. name: "Micro",
  24530. height: math.unit(4, "inches")
  24531. },
  24532. {
  24533. name: "Normal",
  24534. height: math.unit(5 + 4 / 12, "feet"),
  24535. default: true
  24536. },
  24537. {
  24538. name: "Macro",
  24539. height: math.unit(100, "feet")
  24540. },
  24541. ]
  24542. ))
  24543. characterMakers.push(() => makeCharacter(
  24544. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24545. {
  24546. front: {
  24547. height: math.unit(6.71, "feet"),
  24548. weight: math.unit(200, "lb"),
  24549. capacity: math.unit(1000000, "people"),
  24550. name: "Front",
  24551. image: {
  24552. source: "./media/characters/gliss/front.svg",
  24553. extra: 2347 / 2231,
  24554. bottom: 113 / 2462
  24555. }
  24556. },
  24557. hammerspaceSize: {
  24558. height: math.unit(6.71 * 717, "feet"),
  24559. weight: math.unit(200, "lb"),
  24560. capacity: math.unit(1000000, "people"),
  24561. name: "Hammerspace Size",
  24562. image: {
  24563. source: "./media/characters/gliss/front.svg",
  24564. extra: 2347 / 2231,
  24565. bottom: 113 / 2462
  24566. }
  24567. },
  24568. },
  24569. [
  24570. {
  24571. name: "Normal",
  24572. height: math.unit(6.71, "feet"),
  24573. default: true
  24574. },
  24575. ]
  24576. ))
  24577. characterMakers.push(() => makeCharacter(
  24578. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24579. {
  24580. side: {
  24581. height: math.unit(1.44, "m"),
  24582. weight: math.unit(80, "kg"),
  24583. name: "Side",
  24584. image: {
  24585. source: "./media/characters/dune-anderson/side.svg",
  24586. bottom: 49 / 1426
  24587. }
  24588. },
  24589. },
  24590. [
  24591. {
  24592. name: "Wolf-sized",
  24593. height: math.unit(1.44, "meters")
  24594. },
  24595. {
  24596. name: "Normal",
  24597. height: math.unit(5.05, "meters"),
  24598. default: true
  24599. },
  24600. {
  24601. name: "Big",
  24602. height: math.unit(14.4, "meters")
  24603. },
  24604. {
  24605. name: "Huge",
  24606. height: math.unit(144, "meters")
  24607. },
  24608. ]
  24609. ))
  24610. characterMakers.push(() => makeCharacter(
  24611. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24612. {
  24613. front: {
  24614. height: math.unit(7, "feet"),
  24615. weight: math.unit(425, "lb"),
  24616. name: "Front",
  24617. image: {
  24618. source: "./media/characters/hind/front.svg",
  24619. extra: 2091 / 1860,
  24620. bottom: 129 / 2220
  24621. }
  24622. },
  24623. back: {
  24624. height: math.unit(7, "feet"),
  24625. weight: math.unit(425, "lb"),
  24626. name: "Back",
  24627. image: {
  24628. source: "./media/characters/hind/back.svg",
  24629. extra: 2091 / 1860,
  24630. bottom: 24.6 / 2309
  24631. }
  24632. },
  24633. tail: {
  24634. height: math.unit(2.8, "feet"),
  24635. name: "Tail",
  24636. image: {
  24637. source: "./media/characters/hind/tail.svg"
  24638. }
  24639. },
  24640. head: {
  24641. height: math.unit(2.55, "feet"),
  24642. name: "Head",
  24643. image: {
  24644. source: "./media/characters/hind/head.svg"
  24645. }
  24646. },
  24647. },
  24648. [
  24649. {
  24650. name: "XS",
  24651. height: math.unit(0.7, "feet")
  24652. },
  24653. {
  24654. name: "Normal",
  24655. height: math.unit(7, "feet"),
  24656. default: true
  24657. },
  24658. {
  24659. name: "XL",
  24660. height: math.unit(70, "feet")
  24661. },
  24662. ]
  24663. ))
  24664. characterMakers.push(() => makeCharacter(
  24665. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24666. {
  24667. front: {
  24668. height: math.unit(6, "feet"),
  24669. weight: math.unit(150, "lb"),
  24670. name: "Front",
  24671. image: {
  24672. source: "./media/characters/dylan-skaven/front.svg",
  24673. extra: 2318 / 2063,
  24674. bottom: 93.4 / 2410
  24675. }
  24676. },
  24677. },
  24678. [
  24679. {
  24680. name: "Nano",
  24681. height: math.unit(1, "mm")
  24682. },
  24683. {
  24684. name: "Micro",
  24685. height: math.unit(1, "cm")
  24686. },
  24687. {
  24688. name: "Normal",
  24689. height: math.unit(2.1, "meters"),
  24690. default: true
  24691. },
  24692. ]
  24693. ))
  24694. characterMakers.push(() => makeCharacter(
  24695. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24696. {
  24697. front: {
  24698. height: math.unit(7 + 5 / 12, "feet"),
  24699. weight: math.unit(357, "lb"),
  24700. name: "Front",
  24701. image: {
  24702. source: "./media/characters/solex-draconov/front.svg",
  24703. extra: 1993 / 1865,
  24704. bottom: 117 / 2111
  24705. }
  24706. },
  24707. },
  24708. [
  24709. {
  24710. name: "Natural Height",
  24711. height: math.unit(7 + 5 / 12, "feet"),
  24712. default: true
  24713. },
  24714. {
  24715. name: "Macro",
  24716. height: math.unit(350, "feet")
  24717. },
  24718. {
  24719. name: "Macro+",
  24720. height: math.unit(1000, "feet")
  24721. },
  24722. {
  24723. name: "Megamacro",
  24724. height: math.unit(20, "km")
  24725. },
  24726. {
  24727. name: "Megamacro+",
  24728. height: math.unit(1000, "km")
  24729. },
  24730. {
  24731. name: "Gigamacro",
  24732. height: math.unit(2.5, "Gm")
  24733. },
  24734. {
  24735. name: "Teramacro",
  24736. height: math.unit(15, "Tm")
  24737. },
  24738. {
  24739. name: "Galactic",
  24740. height: math.unit(30, "Zm")
  24741. },
  24742. {
  24743. name: "Universal",
  24744. height: math.unit(21000, "Ym")
  24745. },
  24746. {
  24747. name: "Omniversal",
  24748. height: math.unit(9.861e50, "Ym")
  24749. },
  24750. {
  24751. name: "Existential",
  24752. height: math.unit(1e300, "meters")
  24753. },
  24754. ]
  24755. ))
  24756. characterMakers.push(() => makeCharacter(
  24757. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24758. {
  24759. side: {
  24760. height: math.unit(25, "feet"),
  24761. weight: math.unit(90000, "lb"),
  24762. name: "Side",
  24763. image: {
  24764. source: "./media/characters/mandarax/side.svg",
  24765. extra: 614 / 332,
  24766. bottom: 55 / 630
  24767. }
  24768. },
  24769. head: {
  24770. height: math.unit(11.4, "feet"),
  24771. name: "Head",
  24772. image: {
  24773. source: "./media/characters/mandarax/head.svg"
  24774. }
  24775. },
  24776. belly: {
  24777. height: math.unit(33, "feet"),
  24778. name: "Belly",
  24779. capacity: math.unit(500, "people"),
  24780. image: {
  24781. source: "./media/characters/mandarax/belly.svg"
  24782. }
  24783. },
  24784. dick: {
  24785. height: math.unit(8.46, "feet"),
  24786. name: "Dick",
  24787. image: {
  24788. source: "./media/characters/mandarax/dick.svg"
  24789. }
  24790. },
  24791. top: {
  24792. height: math.unit(28, "meters"),
  24793. name: "Top",
  24794. image: {
  24795. source: "./media/characters/mandarax/top.svg"
  24796. }
  24797. },
  24798. },
  24799. [
  24800. {
  24801. name: "Normal",
  24802. height: math.unit(25, "feet"),
  24803. default: true
  24804. },
  24805. ]
  24806. ))
  24807. characterMakers.push(() => makeCharacter(
  24808. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24809. {
  24810. front: {
  24811. height: math.unit(5, "feet"),
  24812. weight: math.unit(90, "lb"),
  24813. name: "Front",
  24814. image: {
  24815. source: "./media/characters/pixil/front.svg",
  24816. extra: 2000 / 1618,
  24817. bottom: 12.3 / 2011
  24818. }
  24819. },
  24820. },
  24821. [
  24822. {
  24823. name: "Normal",
  24824. height: math.unit(5, "feet"),
  24825. default: true
  24826. },
  24827. {
  24828. name: "Megamacro",
  24829. height: math.unit(10, "miles"),
  24830. },
  24831. ]
  24832. ))
  24833. characterMakers.push(() => makeCharacter(
  24834. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24835. {
  24836. front: {
  24837. height: math.unit(7 + 2 / 12, "feet"),
  24838. weight: math.unit(200, "lb"),
  24839. name: "Front",
  24840. image: {
  24841. source: "./media/characters/angel/front.svg",
  24842. extra: 1830 / 1737,
  24843. bottom: 22.6 / 1854,
  24844. }
  24845. },
  24846. },
  24847. [
  24848. {
  24849. name: "Normal",
  24850. height: math.unit(7 + 2 / 12, "feet"),
  24851. default: true
  24852. },
  24853. {
  24854. name: "Macro",
  24855. height: math.unit(1000, "feet")
  24856. },
  24857. {
  24858. name: "Megamacro",
  24859. height: math.unit(2, "miles")
  24860. },
  24861. {
  24862. name: "Gigamacro",
  24863. height: math.unit(20, "earths")
  24864. },
  24865. ]
  24866. ))
  24867. characterMakers.push(() => makeCharacter(
  24868. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24869. {
  24870. front: {
  24871. height: math.unit(5, "feet"),
  24872. weight: math.unit(180, "lb"),
  24873. name: "Front",
  24874. image: {
  24875. source: "./media/characters/mekana/front.svg",
  24876. extra: 1671 / 1605,
  24877. bottom: 3.5 / 1691
  24878. }
  24879. },
  24880. side: {
  24881. height: math.unit(5, "feet"),
  24882. weight: math.unit(180, "lb"),
  24883. name: "Side",
  24884. image: {
  24885. source: "./media/characters/mekana/side.svg",
  24886. extra: 1671 / 1605,
  24887. bottom: 3.5 / 1691
  24888. }
  24889. },
  24890. back: {
  24891. height: math.unit(5, "feet"),
  24892. weight: math.unit(180, "lb"),
  24893. name: "Back",
  24894. image: {
  24895. source: "./media/characters/mekana/back.svg",
  24896. extra: 1671 / 1605,
  24897. bottom: 3.5 / 1691
  24898. }
  24899. },
  24900. },
  24901. [
  24902. {
  24903. name: "Normal",
  24904. height: math.unit(5, "feet"),
  24905. default: true
  24906. },
  24907. ]
  24908. ))
  24909. characterMakers.push(() => makeCharacter(
  24910. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24911. {
  24912. front: {
  24913. height: math.unit(4 + 6 / 12, "feet"),
  24914. weight: math.unit(80, "lb"),
  24915. name: "Front",
  24916. image: {
  24917. source: "./media/characters/pixie/front.svg",
  24918. extra: 1924 / 1825,
  24919. bottom: 22.4 / 1946
  24920. }
  24921. },
  24922. },
  24923. [
  24924. {
  24925. name: "Normal",
  24926. height: math.unit(4 + 6 / 12, "feet"),
  24927. default: true
  24928. },
  24929. {
  24930. name: "Macro",
  24931. height: math.unit(40, "feet")
  24932. },
  24933. ]
  24934. ))
  24935. characterMakers.push(() => makeCharacter(
  24936. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24937. {
  24938. front: {
  24939. height: math.unit(2.1, "meters"),
  24940. weight: math.unit(200, "lb"),
  24941. name: "Front",
  24942. image: {
  24943. source: "./media/characters/the-lascivious/front.svg",
  24944. extra: 1 / 0.893,
  24945. bottom: 3.5 / 573.7
  24946. }
  24947. },
  24948. },
  24949. [
  24950. {
  24951. name: "Human Scale",
  24952. height: math.unit(2.1, "meters")
  24953. },
  24954. {
  24955. name: "Wolxi Scale",
  24956. height: math.unit(46.2, "m"),
  24957. default: true
  24958. },
  24959. {
  24960. name: "Boinker of Buildings",
  24961. height: math.unit(10, "km")
  24962. },
  24963. {
  24964. name: "Shagger of Skyscrapers",
  24965. height: math.unit(40, "km")
  24966. },
  24967. {
  24968. name: "Banger of Boroughs",
  24969. height: math.unit(4000, "km")
  24970. },
  24971. {
  24972. name: "Screwer of States",
  24973. height: math.unit(100000, "km")
  24974. },
  24975. {
  24976. name: "Pounder of Planets",
  24977. height: math.unit(2000000, "km")
  24978. },
  24979. ]
  24980. ))
  24981. characterMakers.push(() => makeCharacter(
  24982. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24983. {
  24984. front: {
  24985. height: math.unit(6, "feet"),
  24986. weight: math.unit(150, "lb"),
  24987. name: "Front",
  24988. image: {
  24989. source: "./media/characters/aj/front.svg",
  24990. extra: 2039 / 1562,
  24991. bottom: 40 / 2079
  24992. }
  24993. },
  24994. },
  24995. [
  24996. {
  24997. name: "Normal",
  24998. height: math.unit(11 + 6 / 12, "feet"),
  24999. default: true
  25000. },
  25001. {
  25002. name: "Megamacro",
  25003. height: math.unit(60, "megameters")
  25004. },
  25005. ]
  25006. ))
  25007. characterMakers.push(() => makeCharacter(
  25008. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25009. {
  25010. side: {
  25011. height: math.unit(31 + 8 / 12, "feet"),
  25012. weight: math.unit(75000, "kg"),
  25013. name: "Side",
  25014. image: {
  25015. source: "./media/characters/koros/side.svg",
  25016. extra: 1442 / 1297,
  25017. bottom: 122.7 / 1562
  25018. }
  25019. },
  25020. dicksKingsCrown: {
  25021. height: math.unit(6, "feet"),
  25022. name: "Dicks (King's Crown)",
  25023. image: {
  25024. source: "./media/characters/koros/dicks-kings-crown.svg"
  25025. }
  25026. },
  25027. dicksTailSet: {
  25028. height: math.unit(3, "feet"),
  25029. name: "Dicks (Tail Set)",
  25030. image: {
  25031. source: "./media/characters/koros/dicks-tail-set.svg"
  25032. }
  25033. },
  25034. dickCumming: {
  25035. height: math.unit(7.98, "feet"),
  25036. name: "Dick (Cumming)",
  25037. image: {
  25038. source: "./media/characters/koros/dick-cumming.svg"
  25039. }
  25040. },
  25041. dicksBack: {
  25042. height: math.unit(5.9, "feet"),
  25043. name: "Dicks (Back)",
  25044. image: {
  25045. source: "./media/characters/koros/dicks-back.svg"
  25046. }
  25047. },
  25048. dicksFront: {
  25049. height: math.unit(3.72, "feet"),
  25050. name: "Dicks (Front)",
  25051. image: {
  25052. source: "./media/characters/koros/dicks-front.svg"
  25053. }
  25054. },
  25055. dicksPeeking: {
  25056. height: math.unit(3.0, "feet"),
  25057. name: "Dicks (Peeking)",
  25058. image: {
  25059. source: "./media/characters/koros/dicks-peeking.svg"
  25060. }
  25061. },
  25062. eye: {
  25063. height: math.unit(1.7, "feet"),
  25064. name: "Eye",
  25065. image: {
  25066. source: "./media/characters/koros/eye.svg"
  25067. }
  25068. },
  25069. headFront: {
  25070. height: math.unit(11.69, "feet"),
  25071. name: "Head (Front)",
  25072. image: {
  25073. source: "./media/characters/koros/head-front.svg"
  25074. }
  25075. },
  25076. headSide: {
  25077. height: math.unit(14, "feet"),
  25078. name: "Head (Side)",
  25079. image: {
  25080. source: "./media/characters/koros/head-side.svg"
  25081. }
  25082. },
  25083. leg: {
  25084. height: math.unit(17, "feet"),
  25085. name: "Leg",
  25086. image: {
  25087. source: "./media/characters/koros/leg.svg"
  25088. }
  25089. },
  25090. mawSide: {
  25091. height: math.unit(12.8, "feet"),
  25092. name: "Maw (Side)",
  25093. image: {
  25094. source: "./media/characters/koros/maw-side.svg"
  25095. }
  25096. },
  25097. mawSpitting: {
  25098. height: math.unit(17, "feet"),
  25099. name: "Maw (Spitting)",
  25100. image: {
  25101. source: "./media/characters/koros/maw-spitting.svg"
  25102. }
  25103. },
  25104. slit: {
  25105. height: math.unit(2.8, "feet"),
  25106. name: "Slit",
  25107. image: {
  25108. source: "./media/characters/koros/slit.svg"
  25109. }
  25110. },
  25111. stomach: {
  25112. height: math.unit(6.8, "feet"),
  25113. capacity: math.unit(20, "people"),
  25114. name: "Stomach",
  25115. image: {
  25116. source: "./media/characters/koros/stomach.svg"
  25117. }
  25118. },
  25119. wingspanBottom: {
  25120. height: math.unit(114, "feet"),
  25121. name: "Wingspan (Bottom)",
  25122. image: {
  25123. source: "./media/characters/koros/wingspan-bottom.svg"
  25124. }
  25125. },
  25126. wingspanTop: {
  25127. height: math.unit(104, "feet"),
  25128. name: "Wingspan (Top)",
  25129. image: {
  25130. source: "./media/characters/koros/wingspan-top.svg"
  25131. }
  25132. },
  25133. },
  25134. [
  25135. {
  25136. name: "Normal",
  25137. height: math.unit(31 + 8 / 12, "feet"),
  25138. default: true
  25139. },
  25140. ]
  25141. ))
  25142. characterMakers.push(() => makeCharacter(
  25143. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25144. {
  25145. front: {
  25146. height: math.unit(18 + 5 / 12, "feet"),
  25147. weight: math.unit(3750, "kg"),
  25148. name: "Front",
  25149. image: {
  25150. source: "./media/characters/vexx/front.svg",
  25151. extra: 426 / 396,
  25152. bottom: 31.5 / 458
  25153. }
  25154. },
  25155. maw: {
  25156. height: math.unit(6, "feet"),
  25157. name: "Maw",
  25158. image: {
  25159. source: "./media/characters/vexx/maw.svg"
  25160. }
  25161. },
  25162. },
  25163. [
  25164. {
  25165. name: "Normal",
  25166. height: math.unit(18 + 5 / 12, "feet"),
  25167. default: true
  25168. },
  25169. ]
  25170. ))
  25171. characterMakers.push(() => makeCharacter(
  25172. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25173. {
  25174. front: {
  25175. height: math.unit(17 + 6 / 12, "feet"),
  25176. weight: math.unit(150, "lb"),
  25177. name: "Front",
  25178. image: {
  25179. source: "./media/characters/baadra/front.svg",
  25180. extra: 3137 / 2890,
  25181. bottom: 168.4 / 3305
  25182. }
  25183. },
  25184. back: {
  25185. height: math.unit(17 + 6 / 12, "feet"),
  25186. weight: math.unit(150, "lb"),
  25187. name: "Back",
  25188. image: {
  25189. source: "./media/characters/baadra/back.svg",
  25190. extra: 3142 / 2890,
  25191. bottom: 220 / 3371
  25192. }
  25193. },
  25194. head: {
  25195. height: math.unit(5.45, "feet"),
  25196. name: "Head",
  25197. image: {
  25198. source: "./media/characters/baadra/head.svg"
  25199. }
  25200. },
  25201. headAngry: {
  25202. height: math.unit(4.95, "feet"),
  25203. name: "Head (Angry)",
  25204. image: {
  25205. source: "./media/characters/baadra/head-angry.svg"
  25206. }
  25207. },
  25208. headOpen: {
  25209. height: math.unit(6, "feet"),
  25210. name: "Head (Open)",
  25211. image: {
  25212. source: "./media/characters/baadra/head-open.svg"
  25213. }
  25214. },
  25215. },
  25216. [
  25217. {
  25218. name: "Normal",
  25219. height: math.unit(17 + 6 / 12, "feet"),
  25220. default: true
  25221. },
  25222. ]
  25223. ))
  25224. characterMakers.push(() => makeCharacter(
  25225. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25226. {
  25227. front: {
  25228. height: math.unit(7 + 3 / 12, "feet"),
  25229. weight: math.unit(180, "lb"),
  25230. name: "Front",
  25231. image: {
  25232. source: "./media/characters/juri/front.svg",
  25233. extra: 1401 / 1237,
  25234. bottom: 18.5 / 1418
  25235. }
  25236. },
  25237. side: {
  25238. height: math.unit(7 + 3 / 12, "feet"),
  25239. weight: math.unit(180, "lb"),
  25240. name: "Side",
  25241. image: {
  25242. source: "./media/characters/juri/side.svg",
  25243. extra: 1424 / 1242,
  25244. bottom: 18.5 / 1447
  25245. }
  25246. },
  25247. sitting: {
  25248. height: math.unit(6, "feet"),
  25249. weight: math.unit(180, "lb"),
  25250. name: "Sitting",
  25251. image: {
  25252. source: "./media/characters/juri/sitting.svg",
  25253. extra: 1270 / 1143,
  25254. bottom: 100 / 1343
  25255. }
  25256. },
  25257. back: {
  25258. height: math.unit(7 + 3 / 12, "feet"),
  25259. weight: math.unit(180, "lb"),
  25260. name: "Back",
  25261. image: {
  25262. source: "./media/characters/juri/back.svg",
  25263. extra: 1377 / 1240,
  25264. bottom: 23.7 / 1405
  25265. }
  25266. },
  25267. maw: {
  25268. height: math.unit(2.8, "feet"),
  25269. name: "Maw",
  25270. image: {
  25271. source: "./media/characters/juri/maw.svg"
  25272. }
  25273. },
  25274. stomach: {
  25275. height: math.unit(0.89, "feet"),
  25276. capacity: math.unit(4, "liters"),
  25277. name: "Stomach",
  25278. image: {
  25279. source: "./media/characters/juri/stomach.svg"
  25280. }
  25281. },
  25282. },
  25283. [
  25284. {
  25285. name: "Normal",
  25286. height: math.unit(7 + 3 / 12, "feet"),
  25287. default: true
  25288. },
  25289. ]
  25290. ))
  25291. characterMakers.push(() => makeCharacter(
  25292. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25293. {
  25294. fox: {
  25295. height: math.unit(5 + 6 / 12, "feet"),
  25296. weight: math.unit(140, "lb"),
  25297. name: "Fox",
  25298. image: {
  25299. source: "./media/characters/maxene-sita/fox.svg",
  25300. extra: 146 / 138,
  25301. bottom: 2.1 / 148.19
  25302. }
  25303. },
  25304. foxLaying: {
  25305. height: math.unit(1.70, "feet"),
  25306. weight: math.unit(140, "lb"),
  25307. name: "Fox (Laying)",
  25308. image: {
  25309. source: "./media/characters/maxene-sita/fox-laying.svg",
  25310. extra: 910 / 572,
  25311. bottom: 71 / 981
  25312. }
  25313. },
  25314. kitsune: {
  25315. height: math.unit(10, "feet"),
  25316. weight: math.unit(800, "lb"),
  25317. name: "Kitsune",
  25318. image: {
  25319. source: "./media/characters/maxene-sita/kitsune.svg",
  25320. extra: 185 / 176,
  25321. bottom: 4.7 / 189.9
  25322. }
  25323. },
  25324. hellhound: {
  25325. height: math.unit(10, "feet"),
  25326. weight: math.unit(700, "lb"),
  25327. name: "Hellhound",
  25328. image: {
  25329. source: "./media/characters/maxene-sita/hellhound.svg",
  25330. extra: 1600 / 1545,
  25331. bottom: 81 / 1681
  25332. }
  25333. },
  25334. },
  25335. [
  25336. {
  25337. name: "Normal",
  25338. height: math.unit(5 + 6 / 12, "feet"),
  25339. default: true
  25340. },
  25341. ]
  25342. ))
  25343. characterMakers.push(() => makeCharacter(
  25344. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25345. {
  25346. front: {
  25347. height: math.unit(3 + 4 / 12, "feet"),
  25348. weight: math.unit(70, "lb"),
  25349. name: "Front",
  25350. image: {
  25351. source: "./media/characters/maia/front.svg",
  25352. extra: 227 / 219.5,
  25353. bottom: 40 / 267
  25354. }
  25355. },
  25356. back: {
  25357. height: math.unit(3 + 4 / 12, "feet"),
  25358. weight: math.unit(70, "lb"),
  25359. name: "Back",
  25360. image: {
  25361. source: "./media/characters/maia/back.svg",
  25362. extra: 237 / 225
  25363. }
  25364. },
  25365. },
  25366. [
  25367. {
  25368. name: "Normal",
  25369. height: math.unit(3 + 4 / 12, "feet"),
  25370. default: true
  25371. },
  25372. ]
  25373. ))
  25374. characterMakers.push(() => makeCharacter(
  25375. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25376. {
  25377. front: {
  25378. height: math.unit(5 + 10 / 12, "feet"),
  25379. weight: math.unit(197, "lb"),
  25380. name: "Front",
  25381. image: {
  25382. source: "./media/characters/jabaro/front.svg",
  25383. extra: 225 / 216,
  25384. bottom: 5.06 / 230
  25385. }
  25386. },
  25387. back: {
  25388. height: math.unit(5 + 10 / 12, "feet"),
  25389. weight: math.unit(197, "lb"),
  25390. name: "Back",
  25391. image: {
  25392. source: "./media/characters/jabaro/back.svg",
  25393. extra: 225 / 219,
  25394. bottom: 1.9 / 227
  25395. }
  25396. },
  25397. },
  25398. [
  25399. {
  25400. name: "Normal",
  25401. height: math.unit(5 + 10 / 12, "feet"),
  25402. default: true
  25403. },
  25404. ]
  25405. ))
  25406. characterMakers.push(() => makeCharacter(
  25407. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25408. {
  25409. front: {
  25410. height: math.unit(5 + 8 / 12, "feet"),
  25411. weight: math.unit(139, "lb"),
  25412. name: "Front",
  25413. image: {
  25414. source: "./media/characters/risa/front.svg",
  25415. extra: 270 / 260,
  25416. bottom: 11.2 / 282
  25417. }
  25418. },
  25419. back: {
  25420. height: math.unit(5 + 8 / 12, "feet"),
  25421. weight: math.unit(139, "lb"),
  25422. name: "Back",
  25423. image: {
  25424. source: "./media/characters/risa/back.svg",
  25425. extra: 264 / 255,
  25426. bottom: 4 / 268
  25427. }
  25428. },
  25429. },
  25430. [
  25431. {
  25432. name: "Normal",
  25433. height: math.unit(5 + 8 / 12, "feet"),
  25434. default: true
  25435. },
  25436. ]
  25437. ))
  25438. characterMakers.push(() => makeCharacter(
  25439. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25440. {
  25441. front: {
  25442. height: math.unit(2 + 11 / 12, "feet"),
  25443. weight: math.unit(30, "lb"),
  25444. name: "Front",
  25445. image: {
  25446. source: "./media/characters/weatley/front.svg",
  25447. bottom: 10.7 / 414,
  25448. extra: 403.5 / 362
  25449. }
  25450. },
  25451. back: {
  25452. height: math.unit(2 + 11 / 12, "feet"),
  25453. weight: math.unit(30, "lb"),
  25454. name: "Back",
  25455. image: {
  25456. source: "./media/characters/weatley/back.svg",
  25457. bottom: 10.7 / 414,
  25458. extra: 403.5 / 362
  25459. }
  25460. },
  25461. },
  25462. [
  25463. {
  25464. name: "Normal",
  25465. height: math.unit(2 + 11 / 12, "feet"),
  25466. default: true
  25467. },
  25468. ]
  25469. ))
  25470. characterMakers.push(() => makeCharacter(
  25471. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25472. {
  25473. front: {
  25474. height: math.unit(5 + 2 / 12, "feet"),
  25475. weight: math.unit(50, "kg"),
  25476. name: "Front",
  25477. image: {
  25478. source: "./media/characters/mercury-crescent/front.svg",
  25479. extra: 1088 / 1033,
  25480. bottom: 18.9 / 1109
  25481. }
  25482. },
  25483. },
  25484. [
  25485. {
  25486. name: "Normal",
  25487. height: math.unit(5 + 2 / 12, "feet"),
  25488. default: true
  25489. },
  25490. ]
  25491. ))
  25492. characterMakers.push(() => makeCharacter(
  25493. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25494. {
  25495. front: {
  25496. height: math.unit(2, "feet"),
  25497. weight: math.unit(15, "kg"),
  25498. name: "Front",
  25499. image: {
  25500. source: "./media/characters/diamond-jones/front.svg",
  25501. extra: 727/723,
  25502. bottom: 46/773
  25503. }
  25504. },
  25505. },
  25506. [
  25507. {
  25508. name: "Normal",
  25509. height: math.unit(2, "feet"),
  25510. default: true
  25511. },
  25512. ]
  25513. ))
  25514. characterMakers.push(() => makeCharacter(
  25515. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25516. {
  25517. front: {
  25518. height: math.unit(3, "feet"),
  25519. weight: math.unit(30, "kg"),
  25520. name: "Front",
  25521. image: {
  25522. source: "./media/characters/sweet-bit/front.svg",
  25523. extra: 675 / 567,
  25524. bottom: 27.7 / 703
  25525. }
  25526. },
  25527. },
  25528. [
  25529. {
  25530. name: "Normal",
  25531. height: math.unit(3, "feet"),
  25532. default: true
  25533. },
  25534. ]
  25535. ))
  25536. characterMakers.push(() => makeCharacter(
  25537. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25538. {
  25539. side: {
  25540. height: math.unit(9.178, "feet"),
  25541. weight: math.unit(500, "lb"),
  25542. name: "Side",
  25543. image: {
  25544. source: "./media/characters/umbrazen/side.svg",
  25545. extra: 1730 / 1473,
  25546. bottom: 34.6 / 1765
  25547. }
  25548. },
  25549. },
  25550. [
  25551. {
  25552. name: "Normal",
  25553. height: math.unit(9.178, "feet"),
  25554. default: true
  25555. },
  25556. ]
  25557. ))
  25558. characterMakers.push(() => makeCharacter(
  25559. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25560. {
  25561. front: {
  25562. height: math.unit(10, "feet"),
  25563. weight: math.unit(750, "lb"),
  25564. name: "Front",
  25565. image: {
  25566. source: "./media/characters/arlist/front.svg",
  25567. extra: 961 / 778,
  25568. bottom: 6.2 / 986
  25569. }
  25570. },
  25571. },
  25572. [
  25573. {
  25574. name: "Normal",
  25575. height: math.unit(10, "feet"),
  25576. default: true
  25577. },
  25578. ]
  25579. ))
  25580. characterMakers.push(() => makeCharacter(
  25581. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25582. {
  25583. front: {
  25584. height: math.unit(5 + 1 / 12, "feet"),
  25585. weight: math.unit(110, "lb"),
  25586. name: "Front",
  25587. image: {
  25588. source: "./media/characters/aradel/front.svg",
  25589. extra: 324 / 303,
  25590. bottom: 3.6 / 329.4
  25591. }
  25592. },
  25593. },
  25594. [
  25595. {
  25596. name: "Normal",
  25597. height: math.unit(5 + 1 / 12, "feet"),
  25598. default: true
  25599. },
  25600. ]
  25601. ))
  25602. characterMakers.push(() => makeCharacter(
  25603. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25604. {
  25605. front: {
  25606. height: math.unit(3 + 8 / 12, "feet"),
  25607. weight: math.unit(50, "lb"),
  25608. name: "Front",
  25609. image: {
  25610. source: "./media/characters/serryn/front.svg",
  25611. extra: 1792 / 1656,
  25612. bottom: 43.5 / 1840
  25613. }
  25614. },
  25615. },
  25616. [
  25617. {
  25618. name: "Normal",
  25619. height: math.unit(3 + 8 / 12, "feet"),
  25620. default: true
  25621. },
  25622. ]
  25623. ))
  25624. characterMakers.push(() => makeCharacter(
  25625. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25626. {
  25627. front: {
  25628. height: math.unit(7 + 10 / 12, "feet"),
  25629. weight: math.unit(255, "lb"),
  25630. name: "Front",
  25631. image: {
  25632. source: "./media/characters/xavier-thyme/front.svg",
  25633. extra: 3733 / 3642,
  25634. bottom: 131 / 3869
  25635. }
  25636. },
  25637. frontRaven: {
  25638. height: math.unit(7 + 10 / 12, "feet"),
  25639. weight: math.unit(255, "lb"),
  25640. name: "Front (Raven)",
  25641. image: {
  25642. source: "./media/characters/xavier-thyme/front-raven.svg",
  25643. extra: 4385 / 3642,
  25644. bottom: 131 / 4517
  25645. }
  25646. },
  25647. },
  25648. [
  25649. {
  25650. name: "Normal",
  25651. height: math.unit(7 + 10 / 12, "feet"),
  25652. default: true
  25653. },
  25654. ]
  25655. ))
  25656. characterMakers.push(() => makeCharacter(
  25657. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25658. {
  25659. front: {
  25660. height: math.unit(1.6, "m"),
  25661. weight: math.unit(50, "kg"),
  25662. name: "Front",
  25663. image: {
  25664. source: "./media/characters/kiki/front.svg",
  25665. extra: 4682 / 3610,
  25666. bottom: 115 / 4777
  25667. }
  25668. },
  25669. },
  25670. [
  25671. {
  25672. name: "Normal",
  25673. height: math.unit(1.6, "meters"),
  25674. default: true
  25675. },
  25676. ]
  25677. ))
  25678. characterMakers.push(() => makeCharacter(
  25679. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25680. {
  25681. front: {
  25682. height: math.unit(50, "m"),
  25683. weight: math.unit(500, "tonnes"),
  25684. name: "Front",
  25685. image: {
  25686. source: "./media/characters/ryoko/front.svg",
  25687. extra: 4632 / 3926,
  25688. bottom: 193 / 4823
  25689. }
  25690. },
  25691. },
  25692. [
  25693. {
  25694. name: "Normal",
  25695. height: math.unit(50, "meters"),
  25696. default: true
  25697. },
  25698. ]
  25699. ))
  25700. characterMakers.push(() => makeCharacter(
  25701. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25702. {
  25703. front: {
  25704. height: math.unit(30, "m"),
  25705. weight: math.unit(22, "tonnes"),
  25706. name: "Front",
  25707. image: {
  25708. source: "./media/characters/elio/front.svg",
  25709. extra: 4582 / 3720,
  25710. bottom: 236 / 4828
  25711. }
  25712. },
  25713. },
  25714. [
  25715. {
  25716. name: "Normal",
  25717. height: math.unit(30, "meters"),
  25718. default: true
  25719. },
  25720. ]
  25721. ))
  25722. characterMakers.push(() => makeCharacter(
  25723. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25724. {
  25725. front: {
  25726. height: math.unit(6 + 3 / 12, "feet"),
  25727. weight: math.unit(120, "lb"),
  25728. name: "Front",
  25729. image: {
  25730. source: "./media/characters/azura/front.svg",
  25731. extra: 1149 / 1135,
  25732. bottom: 45 / 1194
  25733. }
  25734. },
  25735. frontClothed: {
  25736. height: math.unit(6 + 3 / 12, "feet"),
  25737. weight: math.unit(120, "lb"),
  25738. name: "Front (Clothed)",
  25739. image: {
  25740. source: "./media/characters/azura/front-clothed.svg",
  25741. extra: 1149 / 1135,
  25742. bottom: 45 / 1194
  25743. }
  25744. },
  25745. },
  25746. [
  25747. {
  25748. name: "Normal",
  25749. height: math.unit(6 + 3 / 12, "feet"),
  25750. default: true
  25751. },
  25752. {
  25753. name: "Macro",
  25754. height: math.unit(20 + 6 / 12, "feet")
  25755. },
  25756. {
  25757. name: "Megamacro",
  25758. height: math.unit(12, "miles")
  25759. },
  25760. {
  25761. name: "Gigamacro",
  25762. height: math.unit(10000, "miles")
  25763. },
  25764. {
  25765. name: "Teramacro",
  25766. height: math.unit(900000, "miles")
  25767. },
  25768. ]
  25769. ))
  25770. characterMakers.push(() => makeCharacter(
  25771. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25772. {
  25773. front: {
  25774. height: math.unit(12, "feet"),
  25775. weight: math.unit(1, "ton"),
  25776. capacity: math.unit(660000, "gallons"),
  25777. name: "Front",
  25778. image: {
  25779. source: "./media/characters/zeus/front.svg",
  25780. extra: 5005 / 4717,
  25781. bottom: 363 / 5388
  25782. }
  25783. },
  25784. },
  25785. [
  25786. {
  25787. name: "Normal",
  25788. height: math.unit(12, "feet")
  25789. },
  25790. {
  25791. name: "Preferred Size",
  25792. height: math.unit(0.5, "miles"),
  25793. default: true
  25794. },
  25795. {
  25796. name: "Giga Horse",
  25797. height: math.unit(300, "miles")
  25798. },
  25799. {
  25800. name: "Riding Planets",
  25801. height: math.unit(30, "megameters")
  25802. },
  25803. {
  25804. name: "Cosmic Giant",
  25805. height: math.unit(3, "zettameters")
  25806. },
  25807. {
  25808. name: "Breeding God",
  25809. height: math.unit(9.92e22, "yottameters")
  25810. },
  25811. ]
  25812. ))
  25813. characterMakers.push(() => makeCharacter(
  25814. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25815. {
  25816. side: {
  25817. height: math.unit(9, "feet"),
  25818. weight: math.unit(1500, "kg"),
  25819. name: "Side",
  25820. image: {
  25821. source: "./media/characters/fang/side.svg",
  25822. extra: 924 / 866,
  25823. bottom: 47.5 / 972.3
  25824. }
  25825. },
  25826. },
  25827. [
  25828. {
  25829. name: "Normal",
  25830. height: math.unit(9, "feet"),
  25831. default: true
  25832. },
  25833. {
  25834. name: "Macro",
  25835. height: math.unit(75 + 6 / 12, "feet")
  25836. },
  25837. {
  25838. name: "Teramacro",
  25839. height: math.unit(50000, "miles")
  25840. },
  25841. ]
  25842. ))
  25843. characterMakers.push(() => makeCharacter(
  25844. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25845. {
  25846. front: {
  25847. height: math.unit(10, "feet"),
  25848. weight: math.unit(2, "tons"),
  25849. name: "Front",
  25850. image: {
  25851. source: "./media/characters/rekhit/front.svg",
  25852. extra: 2796 / 2590,
  25853. bottom: 225 / 3022
  25854. }
  25855. },
  25856. },
  25857. [
  25858. {
  25859. name: "Normal",
  25860. height: math.unit(10, "feet"),
  25861. default: true
  25862. },
  25863. {
  25864. name: "Macro",
  25865. height: math.unit(500, "feet")
  25866. },
  25867. ]
  25868. ))
  25869. characterMakers.push(() => makeCharacter(
  25870. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  25871. {
  25872. front: {
  25873. height: math.unit(7 + 6.451 / 12, "feet"),
  25874. weight: math.unit(310, "lb"),
  25875. name: "Front",
  25876. image: {
  25877. source: "./media/characters/dahlia-verrick/front.svg",
  25878. extra: 1488 / 1365,
  25879. bottom: 6.2 / 1495
  25880. }
  25881. },
  25882. back: {
  25883. height: math.unit(7 + 6.451 / 12, "feet"),
  25884. weight: math.unit(310, "lb"),
  25885. name: "Back",
  25886. image: {
  25887. source: "./media/characters/dahlia-verrick/back.svg",
  25888. extra: 1472 / 1351,
  25889. bottom: 5.28 / 1477
  25890. }
  25891. },
  25892. frontBusiness: {
  25893. height: math.unit(7 + 6.451 / 12, "feet"),
  25894. weight: math.unit(200, "lb"),
  25895. name: "Front (Business)",
  25896. image: {
  25897. source: "./media/characters/dahlia-verrick/front-business.svg",
  25898. extra: 1478 / 1381,
  25899. bottom: 5.5 / 1484
  25900. }
  25901. },
  25902. frontCasual: {
  25903. height: math.unit(7 + 6.451 / 12, "feet"),
  25904. weight: math.unit(200, "lb"),
  25905. name: "Front (Casual)",
  25906. image: {
  25907. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25908. extra: 1478 / 1381,
  25909. bottom: 5.5 / 1484
  25910. }
  25911. },
  25912. },
  25913. [
  25914. {
  25915. name: "Travel-Sized",
  25916. height: math.unit(7.45, "inches")
  25917. },
  25918. {
  25919. name: "Normal",
  25920. height: math.unit(7 + 6.451 / 12, "feet"),
  25921. default: true
  25922. },
  25923. {
  25924. name: "Hitting the Town",
  25925. height: math.unit(37 + 8 / 12, "feet")
  25926. },
  25927. {
  25928. name: "Stomp in the Suburbs",
  25929. height: math.unit(964 + 9.728 / 12, "feet")
  25930. },
  25931. {
  25932. name: "Sit on the City",
  25933. height: math.unit(61747 + 10.592 / 12, "feet")
  25934. },
  25935. {
  25936. name: "Glomp the Globe",
  25937. height: math.unit(252919327 + 4.832 / 12, "feet")
  25938. },
  25939. ]
  25940. ))
  25941. characterMakers.push(() => makeCharacter(
  25942. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25943. {
  25944. front: {
  25945. height: math.unit(6 + 4 / 12, "feet"),
  25946. weight: math.unit(320, "lb"),
  25947. name: "Front",
  25948. image: {
  25949. source: "./media/characters/balina-mahigan/front.svg",
  25950. extra: 447 / 428,
  25951. bottom: 18 / 466
  25952. }
  25953. },
  25954. back: {
  25955. height: math.unit(6 + 4 / 12, "feet"),
  25956. weight: math.unit(320, "lb"),
  25957. name: "Back",
  25958. image: {
  25959. source: "./media/characters/balina-mahigan/back.svg",
  25960. extra: 445 / 428,
  25961. bottom: 4.07 / 448
  25962. }
  25963. },
  25964. arm: {
  25965. height: math.unit(1.88, "feet"),
  25966. name: "Arm",
  25967. image: {
  25968. source: "./media/characters/balina-mahigan/arm.svg"
  25969. }
  25970. },
  25971. backPort: {
  25972. height: math.unit(0.685, "feet"),
  25973. name: "Back Port",
  25974. image: {
  25975. source: "./media/characters/balina-mahigan/back-port.svg"
  25976. }
  25977. },
  25978. hoofpaw: {
  25979. height: math.unit(1.41, "feet"),
  25980. name: "Hoofpaw",
  25981. image: {
  25982. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25983. }
  25984. },
  25985. leftHandBack: {
  25986. height: math.unit(0.938, "feet"),
  25987. name: "Left Hand (Back)",
  25988. image: {
  25989. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25990. }
  25991. },
  25992. leftHandFront: {
  25993. height: math.unit(0.938, "feet"),
  25994. name: "Left Hand (Front)",
  25995. image: {
  25996. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25997. }
  25998. },
  25999. rightHandBack: {
  26000. height: math.unit(0.95, "feet"),
  26001. name: "Right Hand (Back)",
  26002. image: {
  26003. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26004. }
  26005. },
  26006. rightHandFront: {
  26007. height: math.unit(0.95, "feet"),
  26008. name: "Right Hand (Front)",
  26009. image: {
  26010. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26011. }
  26012. },
  26013. },
  26014. [
  26015. {
  26016. name: "Normal",
  26017. height: math.unit(6 + 4 / 12, "feet"),
  26018. default: true
  26019. },
  26020. ]
  26021. ))
  26022. characterMakers.push(() => makeCharacter(
  26023. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26024. {
  26025. front: {
  26026. height: math.unit(6, "feet"),
  26027. weight: math.unit(320, "lb"),
  26028. name: "Front",
  26029. image: {
  26030. source: "./media/characters/balina-mejeri/front.svg",
  26031. extra: 517 / 488,
  26032. bottom: 44.2 / 561
  26033. }
  26034. },
  26035. },
  26036. [
  26037. {
  26038. name: "Normal",
  26039. height: math.unit(6 + 4 / 12, "feet")
  26040. },
  26041. {
  26042. name: "Business",
  26043. height: math.unit(155, "feet"),
  26044. default: true
  26045. },
  26046. ]
  26047. ))
  26048. characterMakers.push(() => makeCharacter(
  26049. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26050. {
  26051. kneeling: {
  26052. height: math.unit(6 + 4 / 12, "feet"),
  26053. weight: math.unit(300 * 20, "lb"),
  26054. name: "Kneeling",
  26055. image: {
  26056. source: "./media/characters/balbarian/kneeling.svg",
  26057. extra: 922 / 862,
  26058. bottom: 42.4 / 965
  26059. }
  26060. },
  26061. },
  26062. [
  26063. {
  26064. name: "Normal",
  26065. height: math.unit(6 + 4 / 12, "feet")
  26066. },
  26067. {
  26068. name: "Treasured",
  26069. height: math.unit(18 + 9 / 12, "feet"),
  26070. default: true
  26071. },
  26072. {
  26073. name: "Macro",
  26074. height: math.unit(900, "feet")
  26075. },
  26076. ]
  26077. ))
  26078. characterMakers.push(() => makeCharacter(
  26079. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26080. {
  26081. front: {
  26082. height: math.unit(6 + 4 / 12, "feet"),
  26083. weight: math.unit(325, "lb"),
  26084. name: "Front",
  26085. image: {
  26086. source: "./media/characters/balina-amarini/front.svg",
  26087. extra: 415 / 403,
  26088. bottom: 19 / 433.4
  26089. }
  26090. },
  26091. back: {
  26092. height: math.unit(6 + 4 / 12, "feet"),
  26093. weight: math.unit(325, "lb"),
  26094. name: "Back",
  26095. image: {
  26096. source: "./media/characters/balina-amarini/back.svg",
  26097. extra: 415 / 403,
  26098. bottom: 13.5 / 432
  26099. }
  26100. },
  26101. overdrive: {
  26102. height: math.unit(6 + 4 / 12, "feet"),
  26103. weight: math.unit(400, "lb"),
  26104. name: "Overdrive",
  26105. image: {
  26106. source: "./media/characters/balina-amarini/overdrive.svg",
  26107. extra: 269 / 259,
  26108. bottom: 12 / 282
  26109. }
  26110. },
  26111. },
  26112. [
  26113. {
  26114. name: "Boom",
  26115. height: math.unit(9 + 10 / 12, "feet"),
  26116. default: true
  26117. },
  26118. {
  26119. name: "Macro",
  26120. height: math.unit(280, "feet")
  26121. },
  26122. ]
  26123. ))
  26124. characterMakers.push(() => makeCharacter(
  26125. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26126. {
  26127. goddess: {
  26128. height: math.unit(600, "feet"),
  26129. weight: math.unit(2000000, "tons"),
  26130. name: "Goddess",
  26131. image: {
  26132. source: "./media/characters/lady-kubwa/goddess.svg",
  26133. extra: 1240.5 / 1223,
  26134. bottom: 22 / 1263
  26135. }
  26136. },
  26137. goddesser: {
  26138. height: math.unit(900, "feet"),
  26139. weight: math.unit(20000000, "lb"),
  26140. name: "Goddess-er",
  26141. image: {
  26142. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26143. extra: 899 / 888,
  26144. bottom: 12.6 / 912
  26145. }
  26146. },
  26147. },
  26148. [
  26149. {
  26150. name: "Macro",
  26151. height: math.unit(600, "feet"),
  26152. default: true
  26153. },
  26154. {
  26155. name: "Megamacro",
  26156. height: math.unit(250, "miles")
  26157. },
  26158. ]
  26159. ))
  26160. characterMakers.push(() => makeCharacter(
  26161. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26162. {
  26163. front: {
  26164. height: math.unit(7 + 7 / 12, "feet"),
  26165. weight: math.unit(250, "lb"),
  26166. name: "Front",
  26167. image: {
  26168. source: "./media/characters/tala-grovehorn/front.svg",
  26169. extra: 2636 / 2525,
  26170. bottom: 147 / 2781
  26171. }
  26172. },
  26173. back: {
  26174. height: math.unit(7 + 7 / 12, "feet"),
  26175. weight: math.unit(250, "lb"),
  26176. name: "Back",
  26177. image: {
  26178. source: "./media/characters/tala-grovehorn/back.svg",
  26179. extra: 2635 / 2539,
  26180. bottom: 100 / 2732.8
  26181. }
  26182. },
  26183. mouth: {
  26184. height: math.unit(1.15, "feet"),
  26185. name: "Mouth",
  26186. image: {
  26187. source: "./media/characters/tala-grovehorn/mouth.svg"
  26188. }
  26189. },
  26190. dick: {
  26191. height: math.unit(2.36, "feet"),
  26192. name: "Dick",
  26193. image: {
  26194. source: "./media/characters/tala-grovehorn/dick.svg"
  26195. }
  26196. },
  26197. slit: {
  26198. height: math.unit(0.61, "feet"),
  26199. name: "Slit",
  26200. image: {
  26201. source: "./media/characters/tala-grovehorn/slit.svg"
  26202. }
  26203. },
  26204. },
  26205. [
  26206. ]
  26207. ))
  26208. characterMakers.push(() => makeCharacter(
  26209. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26210. {
  26211. front: {
  26212. height: math.unit(7 + 7 / 12, "feet"),
  26213. weight: math.unit(225, "lb"),
  26214. name: "Front",
  26215. image: {
  26216. source: "./media/characters/epona/front.svg",
  26217. extra: 2445 / 2290,
  26218. bottom: 251 / 2696
  26219. }
  26220. },
  26221. back: {
  26222. height: math.unit(7 + 7 / 12, "feet"),
  26223. weight: math.unit(225, "lb"),
  26224. name: "Back",
  26225. image: {
  26226. source: "./media/characters/epona/back.svg",
  26227. extra: 2546 / 2408,
  26228. bottom: 44 / 2589
  26229. }
  26230. },
  26231. genitals: {
  26232. height: math.unit(1.5, "feet"),
  26233. name: "Genitals",
  26234. image: {
  26235. source: "./media/characters/epona/genitals.svg"
  26236. }
  26237. },
  26238. },
  26239. [
  26240. {
  26241. name: "Normal",
  26242. height: math.unit(7 + 7 / 12, "feet"),
  26243. default: true
  26244. },
  26245. ]
  26246. ))
  26247. characterMakers.push(() => makeCharacter(
  26248. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26249. {
  26250. front: {
  26251. height: math.unit(7, "feet"),
  26252. weight: math.unit(518, "lb"),
  26253. name: "Front",
  26254. image: {
  26255. source: "./media/characters/avia-bloodbourn/front.svg",
  26256. extra: 1466 / 1350,
  26257. bottom: 65 / 1527
  26258. }
  26259. },
  26260. },
  26261. [
  26262. ]
  26263. ))
  26264. characterMakers.push(() => makeCharacter(
  26265. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26266. {
  26267. front: {
  26268. height: math.unit(9.35, "feet"),
  26269. weight: math.unit(600, "lb"),
  26270. name: "Front",
  26271. image: {
  26272. source: "./media/characters/amera/front.svg",
  26273. extra: 891 / 818,
  26274. bottom: 30 / 922.7
  26275. }
  26276. },
  26277. back: {
  26278. height: math.unit(9.35, "feet"),
  26279. weight: math.unit(600, "lb"),
  26280. name: "Back",
  26281. image: {
  26282. source: "./media/characters/amera/back.svg",
  26283. extra: 876 / 824,
  26284. bottom: 6.8 / 884
  26285. }
  26286. },
  26287. dick: {
  26288. height: math.unit(2.14, "feet"),
  26289. name: "Dick",
  26290. image: {
  26291. source: "./media/characters/amera/dick.svg"
  26292. }
  26293. },
  26294. },
  26295. [
  26296. {
  26297. name: "Normal",
  26298. height: math.unit(9.35, "feet"),
  26299. default: true
  26300. },
  26301. ]
  26302. ))
  26303. characterMakers.push(() => makeCharacter(
  26304. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26305. {
  26306. kneeling: {
  26307. height: math.unit(3 + 4 / 12, "feet"),
  26308. weight: math.unit(90, "lb"),
  26309. name: "Kneeling",
  26310. image: {
  26311. source: "./media/characters/rosewen/kneeling.svg",
  26312. extra: 1835 / 1571,
  26313. bottom: 27.7 / 1862
  26314. }
  26315. },
  26316. },
  26317. [
  26318. {
  26319. name: "Normal",
  26320. height: math.unit(3 + 4 / 12, "feet"),
  26321. default: true
  26322. },
  26323. ]
  26324. ))
  26325. characterMakers.push(() => makeCharacter(
  26326. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26327. {
  26328. front: {
  26329. height: math.unit(5 + 10 / 12, "feet"),
  26330. weight: math.unit(200, "lb"),
  26331. name: "Front",
  26332. image: {
  26333. source: "./media/characters/sabah/front.svg",
  26334. extra: 849 / 763,
  26335. bottom: 33.9 / 881
  26336. }
  26337. },
  26338. },
  26339. [
  26340. {
  26341. name: "Normal",
  26342. height: math.unit(5 + 10 / 12, "feet"),
  26343. default: true
  26344. },
  26345. ]
  26346. ))
  26347. characterMakers.push(() => makeCharacter(
  26348. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26349. {
  26350. front: {
  26351. height: math.unit(3 + 5 / 12, "feet"),
  26352. weight: math.unit(40, "kg"),
  26353. name: "Front",
  26354. image: {
  26355. source: "./media/characters/purple-flame/front.svg",
  26356. extra: 1577 / 1412,
  26357. bottom: 97 / 1694
  26358. }
  26359. },
  26360. frontDressed: {
  26361. height: math.unit(3 + 5 / 12, "feet"),
  26362. weight: math.unit(40, "kg"),
  26363. name: "Front (Dressed)",
  26364. image: {
  26365. source: "./media/characters/purple-flame/front-dressed.svg",
  26366. extra: 1577 / 1412,
  26367. bottom: 97 / 1694
  26368. }
  26369. },
  26370. headphones: {
  26371. height: math.unit(0.85, "feet"),
  26372. name: "Headphones",
  26373. image: {
  26374. source: "./media/characters/purple-flame/headphones.svg"
  26375. }
  26376. },
  26377. },
  26378. [
  26379. {
  26380. name: "Really Small",
  26381. height: math.unit(5, "cm")
  26382. },
  26383. {
  26384. name: "Micro",
  26385. height: math.unit(1 + 5 / 12, "feet")
  26386. },
  26387. {
  26388. name: "Normal",
  26389. height: math.unit(3 + 5 / 12, "feet"),
  26390. default: true
  26391. },
  26392. {
  26393. name: "Minimacro",
  26394. height: math.unit(125, "feet")
  26395. },
  26396. {
  26397. name: "Macro",
  26398. height: math.unit(0.5, "miles")
  26399. },
  26400. {
  26401. name: "Megamacro",
  26402. height: math.unit(50, "miles")
  26403. },
  26404. {
  26405. name: "Gigantic",
  26406. height: math.unit(750, "miles")
  26407. },
  26408. {
  26409. name: "Planetary",
  26410. height: math.unit(15000, "miles")
  26411. },
  26412. ]
  26413. ))
  26414. characterMakers.push(() => makeCharacter(
  26415. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26416. {
  26417. front: {
  26418. height: math.unit(14, "feet"),
  26419. weight: math.unit(959, "lb"),
  26420. name: "Front",
  26421. image: {
  26422. source: "./media/characters/arsenal/front.svg",
  26423. extra: 2357 / 2157,
  26424. bottom: 93 / 2458
  26425. }
  26426. },
  26427. },
  26428. [
  26429. {
  26430. name: "Normal",
  26431. height: math.unit(14, "feet"),
  26432. default: true
  26433. },
  26434. ]
  26435. ))
  26436. characterMakers.push(() => makeCharacter(
  26437. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26438. {
  26439. front: {
  26440. height: math.unit(6, "feet"),
  26441. weight: math.unit(150, "lb"),
  26442. name: "Front",
  26443. image: {
  26444. source: "./media/characters/adira/front.svg",
  26445. extra: 1078 / 1029,
  26446. bottom: 87 / 1166
  26447. }
  26448. },
  26449. },
  26450. [
  26451. {
  26452. name: "Micro",
  26453. height: math.unit(4, "inches"),
  26454. default: true
  26455. },
  26456. {
  26457. name: "Macro",
  26458. height: math.unit(50, "feet")
  26459. },
  26460. ]
  26461. ))
  26462. characterMakers.push(() => makeCharacter(
  26463. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26464. {
  26465. front: {
  26466. height: math.unit(16, "feet"),
  26467. weight: math.unit(1000, "lb"),
  26468. name: "Front",
  26469. image: {
  26470. source: "./media/characters/grim/front.svg",
  26471. extra: 622 / 614,
  26472. bottom: 18.1 / 642
  26473. }
  26474. },
  26475. back: {
  26476. height: math.unit(16, "feet"),
  26477. weight: math.unit(1000, "lb"),
  26478. name: "Back",
  26479. image: {
  26480. source: "./media/characters/grim/back.svg",
  26481. extra: 610.6 / 602,
  26482. bottom: 40.8 / 652
  26483. }
  26484. },
  26485. hunched: {
  26486. height: math.unit(9.75, "feet"),
  26487. weight: math.unit(1000, "lb"),
  26488. name: "Hunched",
  26489. image: {
  26490. source: "./media/characters/grim/hunched.svg",
  26491. extra: 304 / 297,
  26492. bottom: 35.4 / 394
  26493. }
  26494. },
  26495. },
  26496. [
  26497. {
  26498. name: "Normal",
  26499. height: math.unit(16, "feet"),
  26500. default: true
  26501. },
  26502. ]
  26503. ))
  26504. characterMakers.push(() => makeCharacter(
  26505. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26506. {
  26507. front: {
  26508. height: math.unit(2.3, "meters"),
  26509. weight: math.unit(300, "lb"),
  26510. name: "Front",
  26511. image: {
  26512. source: "./media/characters/sinja/front-sfw.svg",
  26513. extra: 1393 / 1294,
  26514. bottom: 70 / 1463
  26515. }
  26516. },
  26517. frontNsfw: {
  26518. height: math.unit(2.3, "meters"),
  26519. weight: math.unit(300, "lb"),
  26520. name: "Front (NSFW)",
  26521. image: {
  26522. source: "./media/characters/sinja/front-nsfw.svg",
  26523. extra: 1393 / 1294,
  26524. bottom: 70 / 1463
  26525. }
  26526. },
  26527. back: {
  26528. height: math.unit(2.3, "meters"),
  26529. weight: math.unit(300, "lb"),
  26530. name: "Back",
  26531. image: {
  26532. source: "./media/characters/sinja/back.svg",
  26533. extra: 1393 / 1294,
  26534. bottom: 70 / 1463
  26535. }
  26536. },
  26537. head: {
  26538. height: math.unit(1.771, "feet"),
  26539. name: "Head",
  26540. image: {
  26541. source: "./media/characters/sinja/head.svg"
  26542. }
  26543. },
  26544. slit: {
  26545. height: math.unit(0.8, "feet"),
  26546. name: "Slit",
  26547. image: {
  26548. source: "./media/characters/sinja/slit.svg"
  26549. }
  26550. },
  26551. },
  26552. [
  26553. {
  26554. name: "Normal",
  26555. height: math.unit(2.3, "meters")
  26556. },
  26557. {
  26558. name: "Macro",
  26559. height: math.unit(91, "meters"),
  26560. default: true
  26561. },
  26562. {
  26563. name: "Megamacro",
  26564. height: math.unit(91440, "meters")
  26565. },
  26566. {
  26567. name: "Gigamacro",
  26568. height: math.unit(60960000, "meters")
  26569. },
  26570. {
  26571. name: "Teramacro",
  26572. height: math.unit(9144000000, "meters")
  26573. },
  26574. ]
  26575. ))
  26576. characterMakers.push(() => makeCharacter(
  26577. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26578. {
  26579. front: {
  26580. height: math.unit(1.7, "meters"),
  26581. weight: math.unit(130, "lb"),
  26582. name: "Front",
  26583. image: {
  26584. source: "./media/characters/kyu/front.svg",
  26585. extra: 415 / 395,
  26586. bottom: 5 / 420
  26587. }
  26588. },
  26589. head: {
  26590. height: math.unit(1.75, "feet"),
  26591. name: "Head",
  26592. image: {
  26593. source: "./media/characters/kyu/head.svg"
  26594. }
  26595. },
  26596. foot: {
  26597. height: math.unit(0.81, "feet"),
  26598. name: "Foot",
  26599. image: {
  26600. source: "./media/characters/kyu/foot.svg"
  26601. }
  26602. },
  26603. },
  26604. [
  26605. {
  26606. name: "Normal",
  26607. height: math.unit(1.7, "meters")
  26608. },
  26609. {
  26610. name: "Macro",
  26611. height: math.unit(131, "feet"),
  26612. default: true
  26613. },
  26614. {
  26615. name: "Megamacro",
  26616. height: math.unit(91440, "meters")
  26617. },
  26618. {
  26619. name: "Gigamacro",
  26620. height: math.unit(60960000, "meters")
  26621. },
  26622. {
  26623. name: "Teramacro",
  26624. height: math.unit(9144000000, "meters")
  26625. },
  26626. ]
  26627. ))
  26628. characterMakers.push(() => makeCharacter(
  26629. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26630. {
  26631. front: {
  26632. height: math.unit(7 + 1 / 12, "feet"),
  26633. weight: math.unit(250, "lb"),
  26634. name: "Front",
  26635. image: {
  26636. source: "./media/characters/joey/front.svg",
  26637. extra: 1791 / 1537,
  26638. bottom: 28 / 1816
  26639. }
  26640. },
  26641. },
  26642. [
  26643. {
  26644. name: "Micro",
  26645. height: math.unit(3, "inches")
  26646. },
  26647. {
  26648. name: "Normal",
  26649. height: math.unit(7 + 1 / 12, "feet"),
  26650. default: true
  26651. },
  26652. ]
  26653. ))
  26654. characterMakers.push(() => makeCharacter(
  26655. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26656. {
  26657. front: {
  26658. height: math.unit(165, "cm"),
  26659. weight: math.unit(140, "lb"),
  26660. name: "Front",
  26661. image: {
  26662. source: "./media/characters/sam-evans/front.svg",
  26663. extra: 3417 / 3230,
  26664. bottom: 41.3 / 3417
  26665. }
  26666. },
  26667. frontSixTails: {
  26668. height: math.unit(165, "cm"),
  26669. weight: math.unit(140, "lb"),
  26670. name: "Front-six-tails",
  26671. image: {
  26672. source: "./media/characters/sam-evans/front-six-tails.svg",
  26673. extra: 3417 / 3230,
  26674. bottom: 41.3 / 3417
  26675. }
  26676. },
  26677. back: {
  26678. height: math.unit(165, "cm"),
  26679. weight: math.unit(140, "lb"),
  26680. name: "Back",
  26681. image: {
  26682. source: "./media/characters/sam-evans/back.svg",
  26683. extra: 3227 / 3032,
  26684. bottom: 6.8 / 3234
  26685. }
  26686. },
  26687. face: {
  26688. height: math.unit(0.68, "feet"),
  26689. name: "Face",
  26690. image: {
  26691. source: "./media/characters/sam-evans/face.svg"
  26692. }
  26693. },
  26694. },
  26695. [
  26696. {
  26697. name: "Normal",
  26698. height: math.unit(165, "cm"),
  26699. default: true
  26700. },
  26701. {
  26702. name: "Macro",
  26703. height: math.unit(100, "meters")
  26704. },
  26705. {
  26706. name: "Macro+",
  26707. height: math.unit(800, "meters")
  26708. },
  26709. {
  26710. name: "Macro++",
  26711. height: math.unit(3, "km")
  26712. },
  26713. {
  26714. name: "Macro+++",
  26715. height: math.unit(30, "km")
  26716. },
  26717. ]
  26718. ))
  26719. characterMakers.push(() => makeCharacter(
  26720. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26721. {
  26722. front: {
  26723. height: math.unit(10, "feet"),
  26724. weight: math.unit(750, "lb"),
  26725. name: "Front",
  26726. image: {
  26727. source: "./media/characters/juliet-a/front.svg",
  26728. extra: 1766 / 1720,
  26729. bottom: 43 / 1809
  26730. }
  26731. },
  26732. back: {
  26733. height: math.unit(10, "feet"),
  26734. weight: math.unit(750, "lb"),
  26735. name: "Back",
  26736. image: {
  26737. source: "./media/characters/juliet-a/back.svg",
  26738. extra: 1781 / 1734,
  26739. bottom: 35 / 1810,
  26740. }
  26741. },
  26742. },
  26743. [
  26744. {
  26745. name: "Normal",
  26746. height: math.unit(10, "feet"),
  26747. default: true
  26748. },
  26749. {
  26750. name: "Dragon Form",
  26751. height: math.unit(250, "feet")
  26752. },
  26753. {
  26754. name: "Macro",
  26755. height: math.unit(1000, "feet")
  26756. },
  26757. {
  26758. name: "Megamacro",
  26759. height: math.unit(10000, "feet")
  26760. }
  26761. ]
  26762. ))
  26763. characterMakers.push(() => makeCharacter(
  26764. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26765. {
  26766. regular: {
  26767. height: math.unit(7 + 3 / 12, "feet"),
  26768. weight: math.unit(260, "lb"),
  26769. name: "Regular",
  26770. image: {
  26771. source: "./media/characters/wild/regular.svg",
  26772. extra: 97.45 / 92,
  26773. bottom: 6.8 / 104.3
  26774. }
  26775. },
  26776. biggums: {
  26777. height: math.unit(8 + 6 / 12, "feet"),
  26778. weight: math.unit(425, "lb"),
  26779. name: "Biggums",
  26780. image: {
  26781. source: "./media/characters/wild/biggums.svg",
  26782. extra: 97.45 / 92,
  26783. bottom: 7.5 / 132.34
  26784. }
  26785. },
  26786. mawRegular: {
  26787. height: math.unit(1.24, "feet"),
  26788. name: "Maw (Regular)",
  26789. image: {
  26790. source: "./media/characters/wild/maw.svg"
  26791. }
  26792. },
  26793. mawBiggums: {
  26794. height: math.unit(1.47, "feet"),
  26795. name: "Maw (Biggums)",
  26796. image: {
  26797. source: "./media/characters/wild/maw.svg"
  26798. }
  26799. },
  26800. },
  26801. [
  26802. {
  26803. name: "Normal",
  26804. height: math.unit(7 + 3 / 12, "feet"),
  26805. default: true
  26806. },
  26807. ]
  26808. ))
  26809. characterMakers.push(() => makeCharacter(
  26810. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26811. {
  26812. front: {
  26813. height: math.unit(2.5, "meters"),
  26814. weight: math.unit(200, "kg"),
  26815. name: "Front",
  26816. image: {
  26817. source: "./media/characters/vidar/front.svg",
  26818. extra: 2994 / 2795,
  26819. bottom: 56 / 3061
  26820. }
  26821. },
  26822. back: {
  26823. height: math.unit(2.5, "meters"),
  26824. weight: math.unit(200, "kg"),
  26825. name: "Back",
  26826. image: {
  26827. source: "./media/characters/vidar/back.svg",
  26828. extra: 3131 / 2928,
  26829. bottom: 13.5 / 3141.5
  26830. }
  26831. },
  26832. feral: {
  26833. height: math.unit(2.5, "meters"),
  26834. weight: math.unit(2000, "kg"),
  26835. name: "Feral",
  26836. image: {
  26837. source: "./media/characters/vidar/feral.svg",
  26838. extra: 2790 / 1765,
  26839. bottom: 6 / 2796
  26840. }
  26841. },
  26842. },
  26843. [
  26844. {
  26845. name: "Normal",
  26846. height: math.unit(2.5, "meters"),
  26847. default: true
  26848. },
  26849. {
  26850. name: "Macro",
  26851. height: math.unit(100, "meters")
  26852. },
  26853. ]
  26854. ))
  26855. characterMakers.push(() => makeCharacter(
  26856. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26857. {
  26858. front: {
  26859. height: math.unit(5 + 9 / 12, "feet"),
  26860. weight: math.unit(120, "lb"),
  26861. name: "Front",
  26862. image: {
  26863. source: "./media/characters/ash/front.svg",
  26864. extra: 2189 / 1961,
  26865. bottom: 5.2 / 2194
  26866. }
  26867. },
  26868. },
  26869. [
  26870. {
  26871. name: "Normal",
  26872. height: math.unit(5 + 9 / 12, "feet"),
  26873. default: true
  26874. },
  26875. ]
  26876. ))
  26877. characterMakers.push(() => makeCharacter(
  26878. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26879. {
  26880. front: {
  26881. height: math.unit(9, "feet"),
  26882. weight: math.unit(10000, "lb"),
  26883. name: "Front",
  26884. image: {
  26885. source: "./media/characters/gygabite/front.svg",
  26886. bottom: 31.7 / 537.8,
  26887. extra: 505 / 370
  26888. }
  26889. },
  26890. },
  26891. [
  26892. {
  26893. name: "Normal",
  26894. height: math.unit(9, "feet"),
  26895. default: true
  26896. },
  26897. ]
  26898. ))
  26899. characterMakers.push(() => makeCharacter(
  26900. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26901. {
  26902. front: {
  26903. height: math.unit(12, "feet"),
  26904. weight: math.unit(35000, "lb"),
  26905. name: "Front",
  26906. image: {
  26907. source: "./media/characters/p0tat0/front.svg",
  26908. extra: 1065 / 921,
  26909. bottom: 55.7 / 1121.25
  26910. }
  26911. },
  26912. },
  26913. [
  26914. {
  26915. name: "Normal",
  26916. height: math.unit(12, "feet"),
  26917. default: true
  26918. },
  26919. ]
  26920. ))
  26921. characterMakers.push(() => makeCharacter(
  26922. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26923. {
  26924. side: {
  26925. height: math.unit(6.5, "feet"),
  26926. weight: math.unit(800, "lb"),
  26927. name: "Side",
  26928. image: {
  26929. source: "./media/characters/dusk/side.svg",
  26930. extra: 615 / 373,
  26931. bottom: 53 / 664
  26932. }
  26933. },
  26934. sitting: {
  26935. height: math.unit(7, "feet"),
  26936. weight: math.unit(800, "lb"),
  26937. name: "Sitting",
  26938. image: {
  26939. source: "./media/characters/dusk/sitting.svg",
  26940. extra: 753 / 425,
  26941. bottom: 33 / 774
  26942. }
  26943. },
  26944. head: {
  26945. height: math.unit(6.1, "feet"),
  26946. name: "Head",
  26947. image: {
  26948. source: "./media/characters/dusk/head.svg"
  26949. }
  26950. },
  26951. },
  26952. [
  26953. {
  26954. name: "Normal",
  26955. height: math.unit(7, "feet"),
  26956. default: true
  26957. },
  26958. ]
  26959. ))
  26960. characterMakers.push(() => makeCharacter(
  26961. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26962. {
  26963. front: {
  26964. height: math.unit(15, "feet"),
  26965. weight: math.unit(7000, "lb"),
  26966. name: "Front",
  26967. image: {
  26968. source: "./media/characters/jay-direwolf/front.svg",
  26969. extra: 1810 / 1732,
  26970. bottom: 66 / 1892
  26971. }
  26972. },
  26973. },
  26974. [
  26975. {
  26976. name: "Normal",
  26977. height: math.unit(15, "feet"),
  26978. default: true
  26979. },
  26980. ]
  26981. ))
  26982. characterMakers.push(() => makeCharacter(
  26983. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26984. {
  26985. front: {
  26986. height: math.unit(4 + 9 / 12, "feet"),
  26987. weight: math.unit(130, "lb"),
  26988. name: "Front",
  26989. image: {
  26990. source: "./media/characters/anchovie/front.svg",
  26991. extra: 382 / 350,
  26992. bottom: 25 / 409
  26993. }
  26994. },
  26995. back: {
  26996. height: math.unit(4 + 9 / 12, "feet"),
  26997. weight: math.unit(130, "lb"),
  26998. name: "Back",
  26999. image: {
  27000. source: "./media/characters/anchovie/back.svg",
  27001. extra: 385 / 352,
  27002. bottom: 16.6 / 402
  27003. }
  27004. },
  27005. frontDressed: {
  27006. height: math.unit(4 + 9 / 12, "feet"),
  27007. weight: math.unit(130, "lb"),
  27008. name: "Front (Dressed)",
  27009. image: {
  27010. source: "./media/characters/anchovie/front-dressed.svg",
  27011. extra: 382 / 350,
  27012. bottom: 25 / 409
  27013. }
  27014. },
  27015. backDressed: {
  27016. height: math.unit(4 + 9 / 12, "feet"),
  27017. weight: math.unit(130, "lb"),
  27018. name: "Back (Dressed)",
  27019. image: {
  27020. source: "./media/characters/anchovie/back-dressed.svg",
  27021. extra: 385 / 352,
  27022. bottom: 16.6 / 402
  27023. }
  27024. },
  27025. },
  27026. [
  27027. {
  27028. name: "Micro",
  27029. height: math.unit(6.4, "inches")
  27030. },
  27031. {
  27032. name: "Normal",
  27033. height: math.unit(4 + 9 / 12, "feet"),
  27034. default: true
  27035. },
  27036. ]
  27037. ))
  27038. characterMakers.push(() => makeCharacter(
  27039. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27040. {
  27041. front: {
  27042. height: math.unit(2, "meters"),
  27043. weight: math.unit(180, "lb"),
  27044. name: "Front",
  27045. image: {
  27046. source: "./media/characters/acidrenamon/front.svg",
  27047. extra: 987 / 890,
  27048. bottom: 22.8 / 1009
  27049. }
  27050. },
  27051. back: {
  27052. height: math.unit(2, "meters"),
  27053. weight: math.unit(180, "lb"),
  27054. name: "Back",
  27055. image: {
  27056. source: "./media/characters/acidrenamon/back.svg",
  27057. extra: 983 / 891,
  27058. bottom: 8.4 / 992
  27059. }
  27060. },
  27061. head: {
  27062. height: math.unit(1.92, "feet"),
  27063. name: "Head",
  27064. image: {
  27065. source: "./media/characters/acidrenamon/head.svg"
  27066. }
  27067. },
  27068. rump: {
  27069. height: math.unit(1.72, "feet"),
  27070. name: "Rump",
  27071. image: {
  27072. source: "./media/characters/acidrenamon/rump.svg"
  27073. }
  27074. },
  27075. tail: {
  27076. height: math.unit(4.2, "feet"),
  27077. name: "Tail",
  27078. image: {
  27079. source: "./media/characters/acidrenamon/tail.svg"
  27080. }
  27081. },
  27082. },
  27083. [
  27084. {
  27085. name: "Normal",
  27086. height: math.unit(2, "meters"),
  27087. default: true
  27088. },
  27089. {
  27090. name: "Minimacro",
  27091. height: math.unit(7, "meters")
  27092. },
  27093. {
  27094. name: "Macro",
  27095. height: math.unit(200, "meters")
  27096. },
  27097. {
  27098. name: "Gigamacro",
  27099. height: math.unit(0.2, "earths")
  27100. },
  27101. ]
  27102. ))
  27103. characterMakers.push(() => makeCharacter(
  27104. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27105. {
  27106. front: {
  27107. height: math.unit(6, "feet"),
  27108. weight: math.unit(150, "lb"),
  27109. name: "Front",
  27110. image: {
  27111. source: "./media/characters/kenzie-lee/front.svg",
  27112. extra: 1525 / 1465,
  27113. bottom: 45 / 1570
  27114. }
  27115. },
  27116. side: {
  27117. height: math.unit(6, "feet"),
  27118. weight: math.unit(150, "lb"),
  27119. name: "Side",
  27120. image: {
  27121. source: "./media/characters/kenzie-lee/side.svg",
  27122. extra: 5505 / 5383,
  27123. bottom: 60 / 5573
  27124. }
  27125. },
  27126. paw: {
  27127. height: math.unit(0.57, "feet"),
  27128. name: "Paw",
  27129. image: {
  27130. source: "./media/characters/kenzie-lee/paw.svg"
  27131. }
  27132. },
  27133. },
  27134. [
  27135. {
  27136. name: "Normal",
  27137. height: math.unit(152, "feet"),
  27138. default: true
  27139. },
  27140. {
  27141. name: "Megamacro",
  27142. height: math.unit(7, "miles")
  27143. },
  27144. {
  27145. name: "Gigamacro",
  27146. height: math.unit(8000, "miles")
  27147. },
  27148. ]
  27149. ))
  27150. characterMakers.push(() => makeCharacter(
  27151. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27152. {
  27153. side: {
  27154. height: math.unit(6, "feet"),
  27155. weight: math.unit(150, "lb"),
  27156. name: "Side",
  27157. image: {
  27158. source: "./media/characters/withers/side.svg",
  27159. extra: 1830 / 1728,
  27160. bottom: 96 / 1927
  27161. }
  27162. },
  27163. front: {
  27164. height: math.unit(6, "feet"),
  27165. weight: math.unit(150, "lb"),
  27166. name: "Front",
  27167. image: {
  27168. source: "./media/characters/withers/front.svg",
  27169. extra: 1514 / 1438,
  27170. bottom: 118 / 1632
  27171. }
  27172. },
  27173. },
  27174. [
  27175. {
  27176. name: "Macro",
  27177. height: math.unit(168, "feet"),
  27178. default: true
  27179. },
  27180. {
  27181. name: "Megamacro",
  27182. height: math.unit(15, "miles")
  27183. }
  27184. ]
  27185. ))
  27186. characterMakers.push(() => makeCharacter(
  27187. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27188. {
  27189. front: {
  27190. height: math.unit(6 + 7 / 12, "feet"),
  27191. weight: math.unit(250, "lb"),
  27192. name: "Front",
  27193. image: {
  27194. source: "./media/characters/nemoskii/front.svg",
  27195. extra: 2270 / 1734,
  27196. bottom: 86 / 2354
  27197. }
  27198. },
  27199. back: {
  27200. height: math.unit(6 + 7 / 12, "feet"),
  27201. weight: math.unit(250, "lb"),
  27202. name: "Back",
  27203. image: {
  27204. source: "./media/characters/nemoskii/back.svg",
  27205. extra: 1845 / 1788,
  27206. bottom: 10.5 / 1852
  27207. }
  27208. },
  27209. head: {
  27210. height: math.unit(1.31, "feet"),
  27211. name: "Head",
  27212. image: {
  27213. source: "./media/characters/nemoskii/head.svg"
  27214. }
  27215. },
  27216. },
  27217. [
  27218. {
  27219. name: "Micro",
  27220. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27221. },
  27222. {
  27223. name: "Normal",
  27224. height: math.unit(6 + 7 / 12, "feet"),
  27225. default: true
  27226. },
  27227. {
  27228. name: "Macro",
  27229. height: math.unit((6 + 7 / 12) * 150, "feet")
  27230. },
  27231. {
  27232. name: "Macro+",
  27233. height: math.unit((6 + 7 / 12) * 500, "feet")
  27234. },
  27235. {
  27236. name: "Megamacro",
  27237. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27238. },
  27239. ]
  27240. ))
  27241. characterMakers.push(() => makeCharacter(
  27242. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27243. {
  27244. front: {
  27245. height: math.unit(1, "mile"),
  27246. weight: math.unit(265261.9, "lb"),
  27247. name: "Front",
  27248. image: {
  27249. source: "./media/characters/shui/front.svg",
  27250. extra: 1633 / 1564,
  27251. bottom: 91.5 / 1726
  27252. }
  27253. },
  27254. },
  27255. [
  27256. {
  27257. name: "Macro",
  27258. height: math.unit(1, "mile"),
  27259. default: true
  27260. },
  27261. ]
  27262. ))
  27263. characterMakers.push(() => makeCharacter(
  27264. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27265. {
  27266. front: {
  27267. height: math.unit(12 + 6 / 12, "feet"),
  27268. weight: math.unit(1342, "lb"),
  27269. name: "Front",
  27270. image: {
  27271. source: "./media/characters/arokh-takakura/front.svg",
  27272. extra: 1089 / 1043,
  27273. bottom: 77.4 / 1176.7
  27274. }
  27275. },
  27276. back: {
  27277. height: math.unit(12 + 6 / 12, "feet"),
  27278. weight: math.unit(1342, "lb"),
  27279. name: "Back",
  27280. image: {
  27281. source: "./media/characters/arokh-takakura/back.svg",
  27282. extra: 1046 / 1019,
  27283. bottom: 102 / 1150
  27284. }
  27285. },
  27286. },
  27287. [
  27288. {
  27289. name: "Big",
  27290. height: math.unit(12 + 6 / 12, "feet"),
  27291. default: true
  27292. },
  27293. ]
  27294. ))
  27295. characterMakers.push(() => makeCharacter(
  27296. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27297. {
  27298. front: {
  27299. height: math.unit(5 + 6 / 12, "feet"),
  27300. weight: math.unit(150, "lb"),
  27301. name: "Front",
  27302. image: {
  27303. source: "./media/characters/theo/front.svg",
  27304. extra: 1184 / 1131,
  27305. bottom: 7.4 / 1191
  27306. }
  27307. },
  27308. },
  27309. [
  27310. {
  27311. name: "Micro",
  27312. height: math.unit(5, "inches")
  27313. },
  27314. {
  27315. name: "Normal",
  27316. height: math.unit(5 + 6 / 12, "feet"),
  27317. default: true
  27318. },
  27319. ]
  27320. ))
  27321. characterMakers.push(() => makeCharacter(
  27322. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27323. {
  27324. front: {
  27325. height: math.unit(5 + 9 / 12, "feet"),
  27326. weight: math.unit(130, "lb"),
  27327. name: "Front",
  27328. image: {
  27329. source: "./media/characters/cecelia-swift/front.svg",
  27330. extra: 502 / 484,
  27331. bottom: 23 / 523
  27332. }
  27333. },
  27334. back: {
  27335. height: math.unit(5 + 9 / 12, "feet"),
  27336. weight: math.unit(130, "lb"),
  27337. name: "Back",
  27338. image: {
  27339. source: "./media/characters/cecelia-swift/back.svg",
  27340. extra: 499 / 485,
  27341. bottom: 12 / 511
  27342. }
  27343. },
  27344. head: {
  27345. height: math.unit(0.90, "feet"),
  27346. name: "Head",
  27347. image: {
  27348. source: "./media/characters/cecelia-swift/head.svg"
  27349. }
  27350. },
  27351. rump: {
  27352. height: math.unit(1.75, "feet"),
  27353. name: "Rump",
  27354. image: {
  27355. source: "./media/characters/cecelia-swift/rump.svg"
  27356. }
  27357. },
  27358. },
  27359. [
  27360. {
  27361. name: "Normal",
  27362. height: math.unit(5 + 9 / 12, "feet"),
  27363. default: true
  27364. },
  27365. {
  27366. name: "Big",
  27367. height: math.unit(50, "feet")
  27368. },
  27369. {
  27370. name: "Macro",
  27371. height: math.unit(100, "feet")
  27372. },
  27373. {
  27374. name: "Macro+",
  27375. height: math.unit(500, "feet")
  27376. },
  27377. {
  27378. name: "Macro++",
  27379. height: math.unit(1000, "feet")
  27380. },
  27381. ]
  27382. ))
  27383. characterMakers.push(() => makeCharacter(
  27384. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27385. {
  27386. front: {
  27387. height: math.unit(6, "feet"),
  27388. weight: math.unit(150, "lb"),
  27389. name: "Front",
  27390. image: {
  27391. source: "./media/characters/kaunan/front.svg",
  27392. extra: 2890 / 2523,
  27393. bottom: 49 / 2939
  27394. }
  27395. },
  27396. },
  27397. [
  27398. {
  27399. name: "Macro",
  27400. height: math.unit(150, "feet"),
  27401. default: true
  27402. },
  27403. ]
  27404. ))
  27405. characterMakers.push(() => makeCharacter(
  27406. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27407. {
  27408. front: {
  27409. height: math.unit(175, "cm"),
  27410. weight: math.unit(60, "kg"),
  27411. name: "Front",
  27412. image: {
  27413. source: "./media/characters/fei/front.svg",
  27414. extra: 1873/1723,
  27415. bottom: 53/1926
  27416. }
  27417. },
  27418. },
  27419. [
  27420. {
  27421. name: "Mortal",
  27422. height: math.unit(175, "cm")
  27423. },
  27424. {
  27425. name: "Normal",
  27426. height: math.unit(3500, "m"),
  27427. default: true
  27428. },
  27429. {
  27430. name: "Stroll",
  27431. height: math.unit(17.5, "km")
  27432. },
  27433. {
  27434. name: "Showoff",
  27435. height: math.unit(175, "km")
  27436. },
  27437. ]
  27438. ))
  27439. characterMakers.push(() => makeCharacter(
  27440. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27441. {
  27442. front: {
  27443. height: math.unit(7, "feet"),
  27444. weight: math.unit(1000, "kg"),
  27445. name: "Front",
  27446. image: {
  27447. source: "./media/characters/edrax/front.svg",
  27448. extra: 2838 / 2550,
  27449. bottom: 130 / 2968
  27450. }
  27451. },
  27452. },
  27453. [
  27454. {
  27455. name: "Small",
  27456. height: math.unit(7, "feet")
  27457. },
  27458. {
  27459. name: "Normal",
  27460. height: math.unit(1500, "meters")
  27461. },
  27462. {
  27463. name: "Mega",
  27464. height: math.unit(12000000, "km"),
  27465. default: true
  27466. },
  27467. {
  27468. name: "Megamacro",
  27469. height: math.unit(10600000, "lightyears")
  27470. },
  27471. {
  27472. name: "Hypermacro",
  27473. height: math.unit(256, "yottameters")
  27474. },
  27475. ]
  27476. ))
  27477. characterMakers.push(() => makeCharacter(
  27478. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27479. {
  27480. front: {
  27481. height: math.unit(10, "feet"),
  27482. weight: math.unit(750, "lb"),
  27483. name: "Front",
  27484. image: {
  27485. source: "./media/characters/clove/front.svg",
  27486. extra: 2031 / 1860,
  27487. bottom: 47.8 / 2080
  27488. }
  27489. },
  27490. back: {
  27491. height: math.unit(10, "feet"),
  27492. weight: math.unit(750, "lb"),
  27493. name: "Back",
  27494. image: {
  27495. source: "./media/characters/clove/back.svg",
  27496. extra: 2025 / 1859,
  27497. bottom: 46 / 2071
  27498. }
  27499. },
  27500. },
  27501. [
  27502. {
  27503. name: "Normal",
  27504. height: math.unit(10, "feet"),
  27505. default: true
  27506. },
  27507. ]
  27508. ))
  27509. characterMakers.push(() => makeCharacter(
  27510. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27511. {
  27512. front: {
  27513. height: math.unit(4, "feet"),
  27514. weight: math.unit(50, "lb"),
  27515. name: "Front",
  27516. image: {
  27517. source: "./media/characters/alex-rabbit/front.svg",
  27518. extra: 507 / 458,
  27519. bottom: 18.5 / 527
  27520. }
  27521. },
  27522. back: {
  27523. height: math.unit(4, "feet"),
  27524. weight: math.unit(50, "lb"),
  27525. name: "Back",
  27526. image: {
  27527. source: "./media/characters/alex-rabbit/back.svg",
  27528. extra: 502 / 460,
  27529. bottom: 18.9 / 521
  27530. }
  27531. },
  27532. },
  27533. [
  27534. {
  27535. name: "Normal",
  27536. height: math.unit(4, "feet"),
  27537. default: true
  27538. },
  27539. ]
  27540. ))
  27541. characterMakers.push(() => makeCharacter(
  27542. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27543. {
  27544. front: {
  27545. height: math.unit(1 + 3 / 12, "feet"),
  27546. weight: math.unit(80, "lb"),
  27547. name: "Front",
  27548. image: {
  27549. source: "./media/characters/zander-rose/front.svg",
  27550. extra: 916 / 797,
  27551. bottom: 17 / 933
  27552. }
  27553. },
  27554. back: {
  27555. height: math.unit(1 + 3 / 12, "feet"),
  27556. weight: math.unit(80, "lb"),
  27557. name: "Back",
  27558. image: {
  27559. source: "./media/characters/zander-rose/back.svg",
  27560. extra: 903 / 779,
  27561. bottom: 31 / 934
  27562. }
  27563. },
  27564. },
  27565. [
  27566. {
  27567. name: "Normal",
  27568. height: math.unit(1 + 3 / 12, "feet"),
  27569. default: true
  27570. },
  27571. ]
  27572. ))
  27573. characterMakers.push(() => makeCharacter(
  27574. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27575. {
  27576. anthro: {
  27577. height: math.unit(6, "feet"),
  27578. weight: math.unit(150, "lb"),
  27579. name: "Anthro",
  27580. image: {
  27581. source: "./media/characters/razz/anthro.svg",
  27582. extra: 1437 / 1343,
  27583. bottom: 48 / 1485
  27584. }
  27585. },
  27586. feral: {
  27587. height: math.unit(6, "feet"),
  27588. weight: math.unit(150, "lb"),
  27589. name: "Feral",
  27590. image: {
  27591. source: "./media/characters/razz/feral.svg",
  27592. extra: 2569 / 1385,
  27593. bottom: 95 / 2664
  27594. }
  27595. },
  27596. },
  27597. [
  27598. {
  27599. name: "Normal",
  27600. height: math.unit(6, "feet"),
  27601. default: true
  27602. },
  27603. ]
  27604. ))
  27605. characterMakers.push(() => makeCharacter(
  27606. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27607. {
  27608. front: {
  27609. height: math.unit(9 + 4 / 12, "feet"),
  27610. weight: math.unit(500, "lb"),
  27611. name: "Front",
  27612. image: {
  27613. source: "./media/characters/morrigan/front.svg",
  27614. extra: 2707 / 2579,
  27615. bottom: 156 / 2863
  27616. }
  27617. },
  27618. },
  27619. [
  27620. {
  27621. name: "Normal",
  27622. height: math.unit(9 + 4 / 12, "feet"),
  27623. default: true
  27624. },
  27625. ]
  27626. ))
  27627. characterMakers.push(() => makeCharacter(
  27628. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27629. {
  27630. front: {
  27631. height: math.unit(5, "stories"),
  27632. weight: math.unit(4000, "lb"),
  27633. name: "Front",
  27634. image: {
  27635. source: "./media/characters/jenene/front.svg",
  27636. extra: 1780 / 1710,
  27637. bottom: 57 / 1837
  27638. }
  27639. },
  27640. },
  27641. [
  27642. {
  27643. name: "Normal",
  27644. height: math.unit(5, "stories"),
  27645. default: true
  27646. },
  27647. ]
  27648. ))
  27649. characterMakers.push(() => makeCharacter(
  27650. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27651. {
  27652. taurSfw: {
  27653. height: math.unit(10, "meters"),
  27654. weight: math.unit(17500, "kg"),
  27655. name: "Taur",
  27656. image: {
  27657. source: "./media/characters/faey/taur-sfw.svg",
  27658. extra: 1200 / 968,
  27659. bottom: 41 / 1241
  27660. }
  27661. },
  27662. chestmaw: {
  27663. height: math.unit(2.01, "meters"),
  27664. name: "Chestmaw",
  27665. image: {
  27666. source: "./media/characters/faey/chestmaw.svg"
  27667. }
  27668. },
  27669. foot: {
  27670. height: math.unit(2.43, "meters"),
  27671. name: "Foot",
  27672. image: {
  27673. source: "./media/characters/faey/foot.svg"
  27674. }
  27675. },
  27676. jaws: {
  27677. height: math.unit(1.66, "meters"),
  27678. name: "Jaws",
  27679. image: {
  27680. source: "./media/characters/faey/jaws.svg"
  27681. }
  27682. },
  27683. tongues: {
  27684. height: math.unit(2.01, "meters"),
  27685. name: "Tongues",
  27686. image: {
  27687. source: "./media/characters/faey/tongues.svg"
  27688. }
  27689. },
  27690. },
  27691. [
  27692. {
  27693. name: "Small",
  27694. height: math.unit(10, "meters"),
  27695. default: true
  27696. },
  27697. {
  27698. name: "Big",
  27699. height: math.unit(500000, "km")
  27700. },
  27701. ]
  27702. ))
  27703. characterMakers.push(() => makeCharacter(
  27704. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27705. {
  27706. front: {
  27707. height: math.unit(7, "feet"),
  27708. weight: math.unit(275, "lb"),
  27709. name: "Front",
  27710. image: {
  27711. source: "./media/characters/roku/front.svg",
  27712. extra: 903 / 878,
  27713. bottom: 37 / 940
  27714. }
  27715. },
  27716. },
  27717. [
  27718. {
  27719. name: "Normal",
  27720. height: math.unit(7, "feet"),
  27721. default: true
  27722. },
  27723. {
  27724. name: "Macro",
  27725. height: math.unit(500, "feet")
  27726. },
  27727. {
  27728. name: "Megamacro",
  27729. height: math.unit(200, "miles")
  27730. },
  27731. ]
  27732. ))
  27733. characterMakers.push(() => makeCharacter(
  27734. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27735. {
  27736. front: {
  27737. height: math.unit(6 + 2 / 12, "feet"),
  27738. weight: math.unit(150, "lb"),
  27739. name: "Front",
  27740. image: {
  27741. source: "./media/characters/lira/front.svg",
  27742. extra: 1727 / 1605,
  27743. bottom: 26 / 1753
  27744. }
  27745. },
  27746. back: {
  27747. height: math.unit(6 + 2 / 12, "feet"),
  27748. weight: math.unit(150, "lb"),
  27749. name: "Back",
  27750. image: {
  27751. source: "./media/characters/lira/back.svg",
  27752. extra: 1713/1621,
  27753. bottom: 20/1733
  27754. }
  27755. },
  27756. hand: {
  27757. height: math.unit(0.75, "feet"),
  27758. name: "Hand",
  27759. image: {
  27760. source: "./media/characters/lira/hand.svg"
  27761. }
  27762. },
  27763. maw: {
  27764. height: math.unit(0.65, "feet"),
  27765. name: "Maw",
  27766. image: {
  27767. source: "./media/characters/lira/maw.svg"
  27768. }
  27769. },
  27770. pawDigi: {
  27771. height: math.unit(1.6, "feet"),
  27772. name: "Paw Digi",
  27773. image: {
  27774. source: "./media/characters/lira/paw-digi.svg"
  27775. }
  27776. },
  27777. pawPlanti: {
  27778. height: math.unit(1.4, "feet"),
  27779. name: "Paw Planti",
  27780. image: {
  27781. source: "./media/characters/lira/paw-planti.svg"
  27782. }
  27783. },
  27784. },
  27785. [
  27786. {
  27787. name: "Normal",
  27788. height: math.unit(6 + 2 / 12, "feet"),
  27789. default: true
  27790. },
  27791. {
  27792. name: "Macro",
  27793. height: math.unit(100, "feet")
  27794. },
  27795. {
  27796. name: "Macro²",
  27797. height: math.unit(1600, "feet")
  27798. },
  27799. {
  27800. name: "Planetary",
  27801. height: math.unit(20, "earths")
  27802. },
  27803. ]
  27804. ))
  27805. characterMakers.push(() => makeCharacter(
  27806. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27807. {
  27808. front: {
  27809. height: math.unit(6, "feet"),
  27810. weight: math.unit(150, "lb"),
  27811. name: "Front",
  27812. image: {
  27813. source: "./media/characters/hadjet/front.svg",
  27814. extra: 1480 / 1346,
  27815. bottom: 26 / 1506
  27816. }
  27817. },
  27818. frontNsfw: {
  27819. height: math.unit(6, "feet"),
  27820. weight: math.unit(150, "lb"),
  27821. name: "Front (NSFW)",
  27822. image: {
  27823. source: "./media/characters/hadjet/front-nsfw.svg",
  27824. extra: 1440 / 1358,
  27825. bottom: 52 / 1492
  27826. }
  27827. },
  27828. },
  27829. [
  27830. {
  27831. name: "Macro",
  27832. height: math.unit(10, "stories"),
  27833. default: true
  27834. },
  27835. {
  27836. name: "Megamacro",
  27837. height: math.unit(1.5, "miles")
  27838. },
  27839. {
  27840. name: "Megamacro+",
  27841. height: math.unit(5, "miles")
  27842. },
  27843. ]
  27844. ))
  27845. characterMakers.push(() => makeCharacter(
  27846. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27847. {
  27848. side: {
  27849. height: math.unit(106, "feet"),
  27850. weight: math.unit(500, "tonnes"),
  27851. name: "Side",
  27852. image: {
  27853. source: "./media/characters/kodran/side.svg",
  27854. extra: 553 / 480,
  27855. bottom: 33 / 586
  27856. }
  27857. },
  27858. front: {
  27859. height: math.unit(132, "feet"),
  27860. weight: math.unit(500, "tonnes"),
  27861. name: "Front",
  27862. image: {
  27863. source: "./media/characters/kodran/front.svg",
  27864. extra: 667 / 643,
  27865. bottom: 42 / 709
  27866. }
  27867. },
  27868. flying: {
  27869. height: math.unit(350, "feet"),
  27870. weight: math.unit(500, "tonnes"),
  27871. name: "Flying",
  27872. image: {
  27873. source: "./media/characters/kodran/flying.svg"
  27874. }
  27875. },
  27876. foot: {
  27877. height: math.unit(33, "feet"),
  27878. name: "Foot",
  27879. image: {
  27880. source: "./media/characters/kodran/foot.svg"
  27881. }
  27882. },
  27883. footFront: {
  27884. height: math.unit(19, "feet"),
  27885. name: "Foot (Front)",
  27886. image: {
  27887. source: "./media/characters/kodran/foot-front.svg",
  27888. extra: 261 / 261,
  27889. bottom: 91 / 352
  27890. }
  27891. },
  27892. headFront: {
  27893. height: math.unit(53, "feet"),
  27894. name: "Head (Front)",
  27895. image: {
  27896. source: "./media/characters/kodran/head-front.svg"
  27897. }
  27898. },
  27899. headSide: {
  27900. height: math.unit(65, "feet"),
  27901. name: "Head (Side)",
  27902. image: {
  27903. source: "./media/characters/kodran/head-side.svg"
  27904. }
  27905. },
  27906. throat: {
  27907. height: math.unit(79, "feet"),
  27908. name: "Throat",
  27909. image: {
  27910. source: "./media/characters/kodran/throat.svg"
  27911. }
  27912. },
  27913. },
  27914. [
  27915. {
  27916. name: "Large",
  27917. height: math.unit(106, "feet"),
  27918. default: true
  27919. },
  27920. ]
  27921. ))
  27922. characterMakers.push(() => makeCharacter(
  27923. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27924. {
  27925. side: {
  27926. height: math.unit(11, "feet"),
  27927. weight: math.unit(150, "lb"),
  27928. name: "Side",
  27929. image: {
  27930. source: "./media/characters/pyxaron/side.svg",
  27931. extra: 305 / 195,
  27932. bottom: 17 / 322
  27933. }
  27934. },
  27935. },
  27936. [
  27937. {
  27938. name: "Normal",
  27939. height: math.unit(11, "feet"),
  27940. default: true
  27941. },
  27942. ]
  27943. ))
  27944. characterMakers.push(() => makeCharacter(
  27945. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27946. {
  27947. front: {
  27948. height: math.unit(6, "feet"),
  27949. weight: math.unit(150, "lb"),
  27950. name: "Front",
  27951. image: {
  27952. source: "./media/characters/meep/front.svg",
  27953. extra: 88 / 80,
  27954. bottom: 6 / 94
  27955. }
  27956. },
  27957. },
  27958. [
  27959. {
  27960. name: "Fun Sized",
  27961. height: math.unit(2, "inches"),
  27962. default: true
  27963. },
  27964. {
  27965. name: "Friend Sized",
  27966. height: math.unit(8, "inches")
  27967. },
  27968. ]
  27969. ))
  27970. characterMakers.push(() => makeCharacter(
  27971. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27972. {
  27973. front: {
  27974. height: math.unit(15, "feet"),
  27975. weight: math.unit(2500, "lb"),
  27976. name: "Front",
  27977. image: {
  27978. source: "./media/characters/holly-rabbit/front.svg",
  27979. extra: 1433 / 1233,
  27980. bottom: 125 / 1558
  27981. }
  27982. },
  27983. dick: {
  27984. height: math.unit(4.6, "feet"),
  27985. name: "Dick",
  27986. image: {
  27987. source: "./media/characters/holly-rabbit/dick.svg"
  27988. }
  27989. },
  27990. },
  27991. [
  27992. {
  27993. name: "Normal",
  27994. height: math.unit(15, "feet"),
  27995. default: true
  27996. },
  27997. {
  27998. name: "Macro",
  27999. height: math.unit(250, "feet")
  28000. },
  28001. {
  28002. name: "Macro+",
  28003. height: math.unit(2500, "feet")
  28004. },
  28005. ]
  28006. ))
  28007. characterMakers.push(() => makeCharacter(
  28008. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28009. {
  28010. front: {
  28011. height: math.unit(3.02, "meters"),
  28012. weight: math.unit(500, "kg"),
  28013. name: "Front",
  28014. image: {
  28015. source: "./media/characters/drena/front.svg",
  28016. extra: 282 / 243,
  28017. bottom: 8 / 290
  28018. }
  28019. },
  28020. side: {
  28021. height: math.unit(3.02, "meters"),
  28022. weight: math.unit(500, "kg"),
  28023. name: "Side",
  28024. image: {
  28025. source: "./media/characters/drena/side.svg",
  28026. extra: 280 / 245,
  28027. bottom: 10 / 290
  28028. }
  28029. },
  28030. back: {
  28031. height: math.unit(3.02, "meters"),
  28032. weight: math.unit(500, "kg"),
  28033. name: "Back",
  28034. image: {
  28035. source: "./media/characters/drena/back.svg",
  28036. extra: 278 / 243,
  28037. bottom: 2 / 280
  28038. }
  28039. },
  28040. foot: {
  28041. height: math.unit(0.75, "meters"),
  28042. name: "Foot",
  28043. image: {
  28044. source: "./media/characters/drena/foot.svg"
  28045. }
  28046. },
  28047. maw: {
  28048. height: math.unit(0.82, "meters"),
  28049. name: "Maw",
  28050. image: {
  28051. source: "./media/characters/drena/maw.svg"
  28052. }
  28053. },
  28054. rump: {
  28055. height: math.unit(0.93, "meters"),
  28056. name: "Rump",
  28057. image: {
  28058. source: "./media/characters/drena/rump.svg"
  28059. }
  28060. },
  28061. },
  28062. [
  28063. {
  28064. name: "Normal",
  28065. height: math.unit(3.02, "meters"),
  28066. default: true
  28067. },
  28068. ]
  28069. ))
  28070. characterMakers.push(() => makeCharacter(
  28071. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28072. {
  28073. front: {
  28074. height: math.unit(6 + 4 / 12, "feet"),
  28075. weight: math.unit(250, "lb"),
  28076. name: "Front",
  28077. image: {
  28078. source: "./media/characters/remmyzilla/front.svg",
  28079. extra: 4033 / 3588,
  28080. bottom: 123 / 4156
  28081. }
  28082. },
  28083. back: {
  28084. height: math.unit(6 + 4 / 12, "feet"),
  28085. weight: math.unit(250, "lb"),
  28086. name: "Back",
  28087. image: {
  28088. source: "./media/characters/remmyzilla/back.svg",
  28089. extra: 2687 / 2555,
  28090. bottom: 48 / 2735
  28091. }
  28092. },
  28093. paw: {
  28094. height: math.unit(1.73, "feet"),
  28095. name: "Paw",
  28096. image: {
  28097. source: "./media/characters/remmyzilla/paw.svg"
  28098. }
  28099. },
  28100. maw: {
  28101. height: math.unit(1.73, "feet"),
  28102. name: "Maw",
  28103. image: {
  28104. source: "./media/characters/remmyzilla/maw.svg"
  28105. }
  28106. },
  28107. },
  28108. [
  28109. {
  28110. name: "Normal",
  28111. height: math.unit(6 + 4 / 12, "feet")
  28112. },
  28113. {
  28114. name: "Minimacro",
  28115. height: math.unit(12 + 8 / 12, "feet")
  28116. },
  28117. {
  28118. name: "Normal",
  28119. height: math.unit(640, "feet"),
  28120. default: true
  28121. },
  28122. {
  28123. name: "Megamacro",
  28124. height: math.unit(6400, "feet")
  28125. },
  28126. {
  28127. name: "Gigamacro",
  28128. height: math.unit(64000, "miles")
  28129. },
  28130. ]
  28131. ))
  28132. characterMakers.push(() => makeCharacter(
  28133. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28134. {
  28135. front: {
  28136. height: math.unit(2.5, "meters"),
  28137. weight: math.unit(300, "lb"),
  28138. name: "Front",
  28139. image: {
  28140. source: "./media/characters/lawrence/front.svg",
  28141. extra: 357 / 335,
  28142. bottom: 30 / 387
  28143. }
  28144. },
  28145. back: {
  28146. height: math.unit(2.5, "meters"),
  28147. weight: math.unit(300, "lb"),
  28148. name: "Back",
  28149. image: {
  28150. source: "./media/characters/lawrence/back.svg",
  28151. extra: 357 / 338,
  28152. bottom: 16 / 373
  28153. }
  28154. },
  28155. head: {
  28156. height: math.unit(0.9, "meter"),
  28157. name: "Head",
  28158. image: {
  28159. source: "./media/characters/lawrence/head.svg"
  28160. }
  28161. },
  28162. maw: {
  28163. height: math.unit(0.7, "meter"),
  28164. name: "Maw",
  28165. image: {
  28166. source: "./media/characters/lawrence/maw.svg"
  28167. }
  28168. },
  28169. footBottom: {
  28170. height: math.unit(0.5, "meter"),
  28171. name: "Foot (Bottom)",
  28172. image: {
  28173. source: "./media/characters/lawrence/foot-bottom.svg"
  28174. }
  28175. },
  28176. footTop: {
  28177. height: math.unit(0.5, "meter"),
  28178. name: "Foot (Top)",
  28179. image: {
  28180. source: "./media/characters/lawrence/foot-top.svg"
  28181. }
  28182. },
  28183. },
  28184. [
  28185. {
  28186. name: "Normal",
  28187. height: math.unit(2.5, "meters"),
  28188. default: true
  28189. },
  28190. {
  28191. name: "Macro",
  28192. height: math.unit(95, "meters")
  28193. },
  28194. {
  28195. name: "Megamacro",
  28196. height: math.unit(150, "km")
  28197. },
  28198. ]
  28199. ))
  28200. characterMakers.push(() => makeCharacter(
  28201. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28202. {
  28203. front: {
  28204. height: math.unit(4.2, "meters"),
  28205. name: "Front",
  28206. image: {
  28207. source: "./media/characters/sydney/front.svg",
  28208. extra: 1323 / 1277,
  28209. bottom: 111 / 1434
  28210. }
  28211. },
  28212. },
  28213. [
  28214. {
  28215. name: "Normal",
  28216. height: math.unit(4.2, "meters"),
  28217. default: true
  28218. },
  28219. ]
  28220. ))
  28221. characterMakers.push(() => makeCharacter(
  28222. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28223. {
  28224. back: {
  28225. height: math.unit(201, "feet"),
  28226. name: "Back",
  28227. image: {
  28228. source: "./media/characters/jessica/back.svg",
  28229. extra: 273 / 259,
  28230. bottom: 7 / 280
  28231. }
  28232. },
  28233. },
  28234. [
  28235. {
  28236. name: "Normal",
  28237. height: math.unit(201, "feet"),
  28238. default: true
  28239. },
  28240. {
  28241. name: "Megamacro",
  28242. height: math.unit(8, "miles")
  28243. },
  28244. ]
  28245. ))
  28246. characterMakers.push(() => makeCharacter(
  28247. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28248. {
  28249. side: {
  28250. height: math.unit(320, "cm"),
  28251. name: "Side",
  28252. image: {
  28253. source: "./media/characters/victoria/side.svg",
  28254. extra: 778 / 346,
  28255. bottom: 56 / 834
  28256. }
  28257. },
  28258. maw: {
  28259. height: math.unit(5.9, "feet"),
  28260. name: "Maw",
  28261. image: {
  28262. source: "./media/characters/victoria/maw.svg"
  28263. }
  28264. },
  28265. },
  28266. [
  28267. {
  28268. name: "Normal",
  28269. height: math.unit(320, "cm"),
  28270. default: true
  28271. },
  28272. ]
  28273. ))
  28274. characterMakers.push(() => makeCharacter(
  28275. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28276. {
  28277. front: {
  28278. height: math.unit(5 + 6 / 12, "feet"),
  28279. name: "Front",
  28280. image: {
  28281. source: "./media/characters/cat/front.svg",
  28282. extra: 1374 / 1257,
  28283. bottom: 59 / 1433
  28284. }
  28285. },
  28286. back: {
  28287. height: math.unit(5 + 6 / 12, "feet"),
  28288. name: "Back",
  28289. image: {
  28290. source: "./media/characters/cat/back.svg",
  28291. extra: 1337 / 1226,
  28292. bottom: 34 / 1371
  28293. }
  28294. },
  28295. taur: {
  28296. height: math.unit(7, "feet"),
  28297. name: "Taur",
  28298. image: {
  28299. source: "./media/characters/cat/taur.svg",
  28300. extra: 1345 / 1231,
  28301. bottom: 66 / 1411
  28302. }
  28303. },
  28304. lucario: {
  28305. height: math.unit(4, "feet"),
  28306. name: "Lucario",
  28307. image: {
  28308. source: "./media/characters/cat/lucario.svg",
  28309. extra: 1470 / 1318,
  28310. bottom: 65 / 1535
  28311. }
  28312. },
  28313. megaLucario: {
  28314. height: math.unit(4, "feet"),
  28315. name: "Mega Lucario",
  28316. image: {
  28317. source: "./media/characters/cat/mega-lucario.svg",
  28318. extra: 1515 / 1319,
  28319. bottom: 63 / 1578
  28320. }
  28321. },
  28322. nickit: {
  28323. height: math.unit(2, "feet"),
  28324. name: "Nickit",
  28325. image: {
  28326. source: "./media/characters/cat/nickit.svg",
  28327. extra: 1980 / 1585,
  28328. bottom: 102 / 2082
  28329. }
  28330. },
  28331. lopunnyFront: {
  28332. height: math.unit(5, "feet"),
  28333. name: "Lopunny (Front)",
  28334. image: {
  28335. source: "./media/characters/cat/lopunny-front.svg",
  28336. extra: 1782 / 1469,
  28337. bottom: 38 / 1820
  28338. }
  28339. },
  28340. lopunnyBack: {
  28341. height: math.unit(5, "feet"),
  28342. name: "Lopunny (Back)",
  28343. image: {
  28344. source: "./media/characters/cat/lopunny-back.svg",
  28345. extra: 1660 / 1490,
  28346. bottom: 25 / 1685
  28347. }
  28348. },
  28349. },
  28350. [
  28351. {
  28352. name: "Really small",
  28353. height: math.unit(1, "nm")
  28354. },
  28355. {
  28356. name: "Micro",
  28357. height: math.unit(5, "inches")
  28358. },
  28359. {
  28360. name: "Normal",
  28361. height: math.unit(5 + 6 / 12, "feet"),
  28362. default: true
  28363. },
  28364. {
  28365. name: "Macro",
  28366. height: math.unit(50, "feet")
  28367. },
  28368. {
  28369. name: "Macro+",
  28370. height: math.unit(150, "feet")
  28371. },
  28372. {
  28373. name: "Megamacro",
  28374. height: math.unit(100, "miles")
  28375. },
  28376. ]
  28377. ))
  28378. characterMakers.push(() => makeCharacter(
  28379. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28380. {
  28381. front: {
  28382. height: math.unit(63.4, "meters"),
  28383. weight: math.unit(3.28349e+6, "kilograms"),
  28384. name: "Front",
  28385. image: {
  28386. source: "./media/characters/kirina-violet/front.svg",
  28387. extra: 2812 / 2725,
  28388. bottom: 0 / 2812
  28389. }
  28390. },
  28391. back: {
  28392. height: math.unit(63.4, "meters"),
  28393. weight: math.unit(3.28349e+6, "kilograms"),
  28394. name: "Back",
  28395. image: {
  28396. source: "./media/characters/kirina-violet/back.svg",
  28397. extra: 2812 / 2725,
  28398. bottom: 0 / 2812
  28399. }
  28400. },
  28401. mouth: {
  28402. height: math.unit(4.35, "meters"),
  28403. name: "Mouth",
  28404. image: {
  28405. source: "./media/characters/kirina-violet/mouth.svg"
  28406. }
  28407. },
  28408. paw: {
  28409. height: math.unit(5.6, "meters"),
  28410. name: "Paw",
  28411. image: {
  28412. source: "./media/characters/kirina-violet/paw.svg"
  28413. }
  28414. },
  28415. tail: {
  28416. height: math.unit(18, "meters"),
  28417. name: "Tail",
  28418. image: {
  28419. source: "./media/characters/kirina-violet/tail.svg"
  28420. }
  28421. },
  28422. },
  28423. [
  28424. {
  28425. name: "Macro",
  28426. height: math.unit(63.4, "meters"),
  28427. default: true
  28428. },
  28429. ]
  28430. ))
  28431. characterMakers.push(() => makeCharacter(
  28432. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28433. {
  28434. front: {
  28435. height: math.unit(75, "feet"),
  28436. name: "Front",
  28437. image: {
  28438. source: "./media/characters/cat-gigachu/front.svg",
  28439. extra: 1239/1027,
  28440. bottom: 32/1271
  28441. }
  28442. },
  28443. back: {
  28444. height: math.unit(75, "feet"),
  28445. name: "Back",
  28446. image: {
  28447. source: "./media/characters/cat-gigachu/back.svg",
  28448. extra: 1229/1030,
  28449. bottom: 9/1238
  28450. }
  28451. },
  28452. },
  28453. [
  28454. {
  28455. name: "Dynamax",
  28456. height: math.unit(75, "feet"),
  28457. default: true
  28458. },
  28459. ]
  28460. ))
  28461. characterMakers.push(() => makeCharacter(
  28462. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28463. {
  28464. front: {
  28465. height: math.unit(6, "feet"),
  28466. weight: math.unit(150, "lb"),
  28467. name: "Front",
  28468. image: {
  28469. source: "./media/characters/sfaiyan/front.svg",
  28470. extra: 999 / 978,
  28471. bottom: 5 / 1004
  28472. }
  28473. },
  28474. },
  28475. [
  28476. {
  28477. name: "Normal",
  28478. height: math.unit(1.82, "meters")
  28479. },
  28480. {
  28481. name: "Giant",
  28482. height: math.unit(2.27, "km"),
  28483. default: true
  28484. },
  28485. ]
  28486. ))
  28487. characterMakers.push(() => makeCharacter(
  28488. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28489. {
  28490. front: {
  28491. height: math.unit(179, "cm"),
  28492. weight: math.unit(100, "kg"),
  28493. name: "Front",
  28494. image: {
  28495. source: "./media/characters/raunehkeli/front.svg",
  28496. extra: 1934 / 1926,
  28497. bottom: 0 / 1934
  28498. }
  28499. },
  28500. },
  28501. [
  28502. {
  28503. name: "Normal",
  28504. height: math.unit(179, "cm")
  28505. },
  28506. {
  28507. name: "Maximum",
  28508. height: math.unit(575, "meters"),
  28509. default: true
  28510. },
  28511. ]
  28512. ))
  28513. characterMakers.push(() => makeCharacter(
  28514. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28515. {
  28516. front: {
  28517. height: math.unit(6, "feet"),
  28518. weight: math.unit(150, "lb"),
  28519. name: "Front",
  28520. image: {
  28521. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28522. extra: 2625 / 2518,
  28523. bottom: 60 / 2685
  28524. }
  28525. },
  28526. },
  28527. [
  28528. {
  28529. name: "Normal",
  28530. height: math.unit(6 + 2 / 12, "feet")
  28531. },
  28532. {
  28533. name: "Macro",
  28534. height: math.unit(1180, "feet"),
  28535. default: true
  28536. },
  28537. ]
  28538. ))
  28539. characterMakers.push(() => makeCharacter(
  28540. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28541. {
  28542. front: {
  28543. height: math.unit(5 + 6 / 12, "feet"),
  28544. weight: math.unit(108, "lb"),
  28545. name: "Front",
  28546. image: {
  28547. source: "./media/characters/lilith-zott/front.svg",
  28548. extra: 2510 / 2238,
  28549. bottom: 100 / 2610
  28550. }
  28551. },
  28552. frontDressed: {
  28553. height: math.unit(5 + 6 / 12, "feet"),
  28554. weight: math.unit(108, "lb"),
  28555. name: "Front (Dressed)",
  28556. image: {
  28557. source: "./media/characters/lilith-zott/front-dressed.svg",
  28558. extra: 2510 / 2238,
  28559. bottom: 100 / 2610
  28560. }
  28561. },
  28562. },
  28563. [
  28564. {
  28565. name: "Normal",
  28566. height: math.unit(5 + 6 / 12, "feet")
  28567. },
  28568. {
  28569. name: "Macro",
  28570. height: math.unit(1030, "feet"),
  28571. default: true
  28572. },
  28573. ]
  28574. ))
  28575. characterMakers.push(() => makeCharacter(
  28576. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28577. {
  28578. front: {
  28579. height: math.unit(6, "feet"),
  28580. weight: math.unit(150, "lb"),
  28581. name: "Front",
  28582. image: {
  28583. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28584. extra: 2567 / 2435,
  28585. bottom: 39 / 2606
  28586. }
  28587. },
  28588. frontSuper: {
  28589. height: math.unit(6, "feet"),
  28590. name: "Front (Super)",
  28591. image: {
  28592. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28593. extra: 2567 / 2435,
  28594. bottom: 39 / 2606
  28595. }
  28596. },
  28597. },
  28598. [
  28599. {
  28600. name: "Normal",
  28601. height: math.unit(5 + 10 / 12, "feet")
  28602. },
  28603. {
  28604. name: "Macro",
  28605. height: math.unit(1100, "feet"),
  28606. default: true
  28607. },
  28608. ]
  28609. ))
  28610. characterMakers.push(() => makeCharacter(
  28611. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28612. {
  28613. front: {
  28614. height: math.unit(100, "miles"),
  28615. name: "Front",
  28616. image: {
  28617. source: "./media/characters/sona/front.svg",
  28618. extra: 2433 / 2201,
  28619. bottom: 53 / 2486
  28620. }
  28621. },
  28622. foot: {
  28623. height: math.unit(16.1, "miles"),
  28624. name: "Foot",
  28625. image: {
  28626. source: "./media/characters/sona/foot.svg"
  28627. }
  28628. },
  28629. },
  28630. [
  28631. {
  28632. name: "Macro",
  28633. height: math.unit(100, "miles"),
  28634. default: true
  28635. },
  28636. ]
  28637. ))
  28638. characterMakers.push(() => makeCharacter(
  28639. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28640. {
  28641. front: {
  28642. height: math.unit(6, "feet"),
  28643. weight: math.unit(150, "lb"),
  28644. name: "Front",
  28645. image: {
  28646. source: "./media/characters/bailey/front.svg",
  28647. extra: 1778 / 1724,
  28648. bottom: 30 / 1808
  28649. }
  28650. },
  28651. },
  28652. [
  28653. {
  28654. name: "Micro",
  28655. height: math.unit(4, "inches")
  28656. },
  28657. {
  28658. name: "Normal",
  28659. height: math.unit(5 + 5 / 12, "feet"),
  28660. default: true
  28661. },
  28662. {
  28663. name: "Macro",
  28664. height: math.unit(250, "feet")
  28665. },
  28666. {
  28667. name: "Megamacro",
  28668. height: math.unit(100, "miles")
  28669. },
  28670. ]
  28671. ))
  28672. characterMakers.push(() => makeCharacter(
  28673. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28674. {
  28675. front: {
  28676. height: math.unit(5 + 2 / 12, "feet"),
  28677. weight: math.unit(120, "lb"),
  28678. name: "Front",
  28679. image: {
  28680. source: "./media/characters/snaps/front.svg",
  28681. extra: 2370 / 2177,
  28682. bottom: 48 / 2418
  28683. }
  28684. },
  28685. back: {
  28686. height: math.unit(5 + 2 / 12, "feet"),
  28687. weight: math.unit(120, "lb"),
  28688. name: "Back",
  28689. image: {
  28690. source: "./media/characters/snaps/back.svg",
  28691. extra: 2408 / 2258,
  28692. bottom: 15 / 2423
  28693. }
  28694. },
  28695. },
  28696. [
  28697. {
  28698. name: "Micro",
  28699. height: math.unit(9, "inches")
  28700. },
  28701. {
  28702. name: "Normal",
  28703. height: math.unit(5 + 2 / 12, "feet"),
  28704. default: true
  28705. },
  28706. {
  28707. name: "Mini Macro",
  28708. height: math.unit(10, "feet")
  28709. },
  28710. ]
  28711. ))
  28712. characterMakers.push(() => makeCharacter(
  28713. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28714. {
  28715. front: {
  28716. height: math.unit(1.8, "meters"),
  28717. weight: math.unit(85, "kg"),
  28718. name: "Front",
  28719. image: {
  28720. source: "./media/characters/azteck/front.svg",
  28721. extra: 2815 / 2625,
  28722. bottom: 89 / 2904
  28723. }
  28724. },
  28725. back: {
  28726. height: math.unit(1.8, "meters"),
  28727. weight: math.unit(85, "kg"),
  28728. name: "Back",
  28729. image: {
  28730. source: "./media/characters/azteck/back.svg",
  28731. extra: 2856 / 2648,
  28732. bottom: 85 / 2941
  28733. }
  28734. },
  28735. frontDressed: {
  28736. height: math.unit(1.8, "meters"),
  28737. weight: math.unit(85, "kg"),
  28738. name: "Front (Dressed)",
  28739. image: {
  28740. source: "./media/characters/azteck/front-dressed.svg",
  28741. extra: 2147 / 2003,
  28742. bottom: 68 / 2215
  28743. }
  28744. },
  28745. head: {
  28746. height: math.unit(0.47, "meters"),
  28747. weight: math.unit(85, "kg"),
  28748. name: "Head",
  28749. image: {
  28750. source: "./media/characters/azteck/head.svg"
  28751. }
  28752. },
  28753. },
  28754. [
  28755. {
  28756. name: "Bite sized",
  28757. height: math.unit(16, "cm")
  28758. },
  28759. {
  28760. name: "Normal",
  28761. height: math.unit(1.8, "meters"),
  28762. default: true
  28763. },
  28764. ]
  28765. ))
  28766. characterMakers.push(() => makeCharacter(
  28767. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28768. {
  28769. front: {
  28770. height: math.unit(6, "feet"),
  28771. weight: math.unit(150, "lb"),
  28772. name: "Front",
  28773. image: {
  28774. source: "./media/characters/pidge/front.svg",
  28775. extra: 620 / 588,
  28776. bottom: 9 / 629
  28777. }
  28778. },
  28779. back: {
  28780. height: math.unit(6, "feet"),
  28781. weight: math.unit(150, "lb"),
  28782. name: "Back",
  28783. image: {
  28784. source: "./media/characters/pidge/back.svg",
  28785. extra: 620 / 588,
  28786. bottom: 9 / 629
  28787. }
  28788. },
  28789. },
  28790. [
  28791. {
  28792. name: "Macro",
  28793. height: math.unit(1, "mile"),
  28794. default: true
  28795. },
  28796. ]
  28797. ))
  28798. characterMakers.push(() => makeCharacter(
  28799. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28800. {
  28801. front: {
  28802. height: math.unit(6, "feet"),
  28803. weight: math.unit(150, "lb"),
  28804. name: "Front",
  28805. image: {
  28806. source: "./media/characters/en/front.svg",
  28807. extra: 1697 / 1563,
  28808. bottom: 103 / 1800
  28809. }
  28810. },
  28811. back: {
  28812. height: math.unit(6, "feet"),
  28813. weight: math.unit(150, "lb"),
  28814. name: "Back",
  28815. image: {
  28816. source: "./media/characters/en/back.svg",
  28817. extra: 1700 / 1570,
  28818. bottom: 51 / 1751
  28819. }
  28820. },
  28821. frontDressed: {
  28822. height: math.unit(6, "feet"),
  28823. weight: math.unit(150, "lb"),
  28824. name: "Front (Dressed)",
  28825. image: {
  28826. source: "./media/characters/en/front-dressed.svg",
  28827. extra: 1697 / 1563,
  28828. bottom: 103 / 1800
  28829. }
  28830. },
  28831. backDressed: {
  28832. height: math.unit(6, "feet"),
  28833. weight: math.unit(150, "lb"),
  28834. name: "Back (Dressed)",
  28835. image: {
  28836. source: "./media/characters/en/back-dressed.svg",
  28837. extra: 1700 / 1570,
  28838. bottom: 51 / 1751
  28839. }
  28840. },
  28841. },
  28842. [
  28843. {
  28844. name: "Macro",
  28845. height: math.unit(210, "feet"),
  28846. default: true
  28847. },
  28848. ]
  28849. ))
  28850. characterMakers.push(() => makeCharacter(
  28851. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28852. {
  28853. front: {
  28854. height: math.unit(6, "feet"),
  28855. weight: math.unit(150, "lb"),
  28856. name: "Front",
  28857. image: {
  28858. source: "./media/characters/haze-orris/front.svg",
  28859. extra: 3975 / 3525,
  28860. bottom: 137 / 4112
  28861. }
  28862. },
  28863. },
  28864. [
  28865. {
  28866. name: "Micro",
  28867. height: math.unit(150, "mm"),
  28868. default: true
  28869. },
  28870. ]
  28871. ))
  28872. characterMakers.push(() => makeCharacter(
  28873. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28874. {
  28875. front: {
  28876. height: math.unit(6, "feet"),
  28877. weight: math.unit(150, "lb"),
  28878. name: "Front",
  28879. image: {
  28880. source: "./media/characters/casselene-yaro/front.svg",
  28881. extra: 4721 / 4541,
  28882. bottom: 82 / 4803
  28883. }
  28884. },
  28885. back: {
  28886. height: math.unit(6, "feet"),
  28887. weight: math.unit(150, "lb"),
  28888. name: "Back",
  28889. image: {
  28890. source: "./media/characters/casselene-yaro/back.svg",
  28891. extra: 4569 / 4377,
  28892. bottom: 69 / 4638
  28893. }
  28894. },
  28895. frontDressed: {
  28896. height: math.unit(6, "feet"),
  28897. weight: math.unit(150, "lb"),
  28898. name: "Front-dressed",
  28899. image: {
  28900. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28901. extra: 4721 / 4541,
  28902. bottom: 82 / 4803
  28903. }
  28904. },
  28905. },
  28906. [
  28907. {
  28908. name: "Macro",
  28909. height: math.unit(190, "feet"),
  28910. default: true
  28911. },
  28912. ]
  28913. ))
  28914. characterMakers.push(() => makeCharacter(
  28915. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28916. {
  28917. front: {
  28918. height: math.unit(6, "feet"),
  28919. weight: math.unit(150, "lb"),
  28920. name: "Front",
  28921. image: {
  28922. source: "./media/characters/myra-rue-delore/front.svg",
  28923. extra: 1340 / 1308,
  28924. bottom: 67 / 1407
  28925. }
  28926. },
  28927. back: {
  28928. height: math.unit(6, "feet"),
  28929. weight: math.unit(150, "lb"),
  28930. name: "Back",
  28931. image: {
  28932. source: "./media/characters/myra-rue-delore/back.svg",
  28933. extra: 1341 / 1310,
  28934. bottom: 40 / 1381
  28935. }
  28936. },
  28937. frontDressed: {
  28938. height: math.unit(6, "feet"),
  28939. weight: math.unit(150, "lb"),
  28940. name: "Front (Dressed)",
  28941. image: {
  28942. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28943. extra: 1340 / 1308,
  28944. bottom: 67 / 1407
  28945. }
  28946. },
  28947. },
  28948. [
  28949. {
  28950. name: "Macro",
  28951. height: math.unit(150, "feet"),
  28952. default: true
  28953. },
  28954. ]
  28955. ))
  28956. characterMakers.push(() => makeCharacter(
  28957. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28958. {
  28959. front: {
  28960. height: math.unit(10, "feet"),
  28961. weight: math.unit(15015, "lb"),
  28962. name: "Front",
  28963. image: {
  28964. source: "./media/characters/fem!plat/front.svg",
  28965. extra: 2799 / 2604,
  28966. bottom: 149 / 2948
  28967. }
  28968. },
  28969. },
  28970. [
  28971. {
  28972. name: "Normal",
  28973. height: math.unit(10, "feet"),
  28974. default: true
  28975. },
  28976. {
  28977. name: "Macro",
  28978. height: math.unit(100, "feet")
  28979. },
  28980. {
  28981. name: "Megamacro",
  28982. height: math.unit(1000, "feet")
  28983. },
  28984. ]
  28985. ))
  28986. characterMakers.push(() => makeCharacter(
  28987. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28988. {
  28989. front: {
  28990. height: math.unit(15 + 5 / 12, "feet"),
  28991. weight: math.unit(4600, "lb"),
  28992. name: "Front",
  28993. image: {
  28994. source: "./media/characters/neapolitan-ananassa/front.svg",
  28995. extra: 2903 / 2736,
  28996. bottom: 0 / 2903
  28997. }
  28998. },
  28999. side: {
  29000. height: math.unit(15 + 5 / 12, "feet"),
  29001. weight: math.unit(4600, "lb"),
  29002. name: "Side",
  29003. image: {
  29004. source: "./media/characters/neapolitan-ananassa/side.svg",
  29005. extra: 2925 / 2719,
  29006. bottom: 0 / 2925
  29007. }
  29008. },
  29009. back: {
  29010. height: math.unit(15 + 5 / 12, "feet"),
  29011. weight: math.unit(4600, "lb"),
  29012. name: "Back",
  29013. image: {
  29014. source: "./media/characters/neapolitan-ananassa/back.svg",
  29015. extra: 2903 / 2736,
  29016. bottom: 0 / 2903
  29017. }
  29018. },
  29019. },
  29020. [
  29021. {
  29022. name: "Normal",
  29023. height: math.unit(15 + 5 / 12, "feet"),
  29024. default: true
  29025. },
  29026. {
  29027. name: "Post-Millenium",
  29028. height: math.unit(35 + 5 / 12, "feet")
  29029. },
  29030. {
  29031. name: "Post-Era",
  29032. height: math.unit(450 + 5 / 12, "feet")
  29033. },
  29034. ]
  29035. ))
  29036. characterMakers.push(() => makeCharacter(
  29037. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29038. {
  29039. front: {
  29040. height: math.unit(300, "meters"),
  29041. weight: math.unit(125000, "tonnes"),
  29042. name: "Front",
  29043. image: {
  29044. source: "./media/characters/pazuzu/front.svg",
  29045. extra: 877 / 794,
  29046. bottom: 47 / 924
  29047. }
  29048. },
  29049. },
  29050. [
  29051. {
  29052. name: "Macro",
  29053. height: math.unit(300, "meters"),
  29054. default: true
  29055. },
  29056. ]
  29057. ))
  29058. characterMakers.push(() => makeCharacter(
  29059. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29060. {
  29061. side: {
  29062. height: math.unit(10 + 7 / 12, "feet"),
  29063. weight: math.unit(2.5, "tons"),
  29064. name: "Side",
  29065. image: {
  29066. source: "./media/characters/aasha/side.svg",
  29067. extra: 1345 / 1245,
  29068. bottom: 111 / 1456
  29069. }
  29070. },
  29071. back: {
  29072. height: math.unit(10 + 7 / 12, "feet"),
  29073. weight: math.unit(2.5, "tons"),
  29074. name: "Back",
  29075. image: {
  29076. source: "./media/characters/aasha/back.svg",
  29077. extra: 1133 / 1057,
  29078. bottom: 257 / 1390
  29079. }
  29080. },
  29081. },
  29082. [
  29083. {
  29084. name: "Normal",
  29085. height: math.unit(10 + 7 / 12, "feet"),
  29086. default: true
  29087. },
  29088. ]
  29089. ))
  29090. characterMakers.push(() => makeCharacter(
  29091. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29092. {
  29093. front: {
  29094. height: math.unit(6 + 3 / 12, "feet"),
  29095. name: "Front",
  29096. image: {
  29097. source: "./media/characters/nevan/front.svg",
  29098. extra: 704 / 704,
  29099. bottom: 28 / 732
  29100. }
  29101. },
  29102. back: {
  29103. height: math.unit(6 + 3 / 12, "feet"),
  29104. name: "Back",
  29105. image: {
  29106. source: "./media/characters/nevan/back.svg",
  29107. extra: 714 / 714,
  29108. bottom: 21 / 735
  29109. }
  29110. },
  29111. frontFlaccid: {
  29112. height: math.unit(6 + 3 / 12, "feet"),
  29113. name: "Front (Flaccid)",
  29114. image: {
  29115. source: "./media/characters/nevan/front-flaccid.svg",
  29116. extra: 704 / 704,
  29117. bottom: 28 / 732
  29118. }
  29119. },
  29120. frontErect: {
  29121. height: math.unit(6 + 3 / 12, "feet"),
  29122. name: "Front (Erect)",
  29123. image: {
  29124. source: "./media/characters/nevan/front-erect.svg",
  29125. extra: 704 / 704,
  29126. bottom: 28 / 732
  29127. }
  29128. },
  29129. backFlaccid: {
  29130. height: math.unit(6 + 3 / 12, "feet"),
  29131. name: "Back (Flaccid)",
  29132. image: {
  29133. source: "./media/characters/nevan/back-flaccid.svg",
  29134. extra: 714 / 714,
  29135. bottom: 21 / 735
  29136. }
  29137. },
  29138. },
  29139. [
  29140. {
  29141. name: "Normal",
  29142. height: math.unit(6 + 3 / 12, "feet"),
  29143. default: true
  29144. },
  29145. ]
  29146. ))
  29147. characterMakers.push(() => makeCharacter(
  29148. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29149. {
  29150. front: {
  29151. height: math.unit(4, "feet"),
  29152. name: "Front",
  29153. image: {
  29154. source: "./media/characters/arhan/front.svg",
  29155. extra: 3368 / 3133,
  29156. bottom: 0 / 3368
  29157. }
  29158. },
  29159. side: {
  29160. height: math.unit(4, "feet"),
  29161. name: "Side",
  29162. image: {
  29163. source: "./media/characters/arhan/side.svg",
  29164. extra: 3347 / 3105,
  29165. bottom: 0 / 3347
  29166. }
  29167. },
  29168. tongue: {
  29169. height: math.unit(1.42, "feet"),
  29170. name: "Tongue",
  29171. image: {
  29172. source: "./media/characters/arhan/tongue.svg"
  29173. }
  29174. },
  29175. head: {
  29176. height: math.unit(0.85, "feet"),
  29177. name: "Head",
  29178. image: {
  29179. source: "./media/characters/arhan/head.svg"
  29180. }
  29181. },
  29182. },
  29183. [
  29184. {
  29185. name: "Normal",
  29186. height: math.unit(4, "feet"),
  29187. default: true
  29188. },
  29189. ]
  29190. ))
  29191. characterMakers.push(() => makeCharacter(
  29192. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29193. {
  29194. front: {
  29195. height: math.unit(5 + 7.5 / 12, "feet"),
  29196. weight: math.unit(120, "lb"),
  29197. name: "Front",
  29198. image: {
  29199. source: "./media/characters/digi-duncan/front.svg",
  29200. extra: 330 / 326,
  29201. bottom: 16 / 346
  29202. }
  29203. },
  29204. side: {
  29205. height: math.unit(5 + 7.5 / 12, "feet"),
  29206. weight: math.unit(120, "lb"),
  29207. name: "Side",
  29208. image: {
  29209. source: "./media/characters/digi-duncan/side.svg",
  29210. extra: 341 / 337,
  29211. bottom: 1 / 342
  29212. }
  29213. },
  29214. back: {
  29215. height: math.unit(5 + 7.5 / 12, "feet"),
  29216. weight: math.unit(120, "lb"),
  29217. name: "Back",
  29218. image: {
  29219. source: "./media/characters/digi-duncan/back.svg",
  29220. extra: 330 / 326,
  29221. bottom: 12 / 342
  29222. }
  29223. },
  29224. },
  29225. [
  29226. {
  29227. name: "Speck",
  29228. height: math.unit(0.25, "mm")
  29229. },
  29230. {
  29231. name: "Micro",
  29232. height: math.unit(5, "mm")
  29233. },
  29234. {
  29235. name: "Tiny",
  29236. height: math.unit(0.5, "inches"),
  29237. default: true
  29238. },
  29239. {
  29240. name: "Human",
  29241. height: math.unit(5 + 7.5 / 12, "feet")
  29242. },
  29243. {
  29244. name: "Minigiant",
  29245. height: math.unit(8 + 5.25, "feet")
  29246. },
  29247. {
  29248. name: "Giant",
  29249. height: math.unit(2000, "feet")
  29250. },
  29251. {
  29252. name: "Mega",
  29253. height: math.unit(371.1, "miles")
  29254. },
  29255. ]
  29256. ))
  29257. characterMakers.push(() => makeCharacter(
  29258. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29259. {
  29260. front: {
  29261. height: math.unit(2, "meters"),
  29262. weight: math.unit(350, "kg"),
  29263. name: "Front",
  29264. image: {
  29265. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29266. extra: 898 / 838,
  29267. bottom: 9 / 907
  29268. }
  29269. },
  29270. },
  29271. [
  29272. {
  29273. name: "Micro",
  29274. height: math.unit(8, "meters")
  29275. },
  29276. {
  29277. name: "Normal",
  29278. height: math.unit(50, "meters"),
  29279. default: true
  29280. },
  29281. {
  29282. name: "Macro",
  29283. height: math.unit(500, "meters")
  29284. },
  29285. ]
  29286. ))
  29287. characterMakers.push(() => makeCharacter(
  29288. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29289. {
  29290. front: {
  29291. height: math.unit(6 + 6 / 12, "feet"),
  29292. name: "Front",
  29293. image: {
  29294. source: "./media/characters/khardesh/front.svg",
  29295. extra: 888 / 797,
  29296. bottom: 25 / 913
  29297. }
  29298. },
  29299. },
  29300. [
  29301. {
  29302. name: "Normal",
  29303. height: math.unit(6 + 6 / 12, "feet"),
  29304. default: true
  29305. },
  29306. {
  29307. name: "Normal+",
  29308. height: math.unit(4, "meters")
  29309. },
  29310. {
  29311. name: "Macro",
  29312. height: math.unit(50, "meters")
  29313. },
  29314. {
  29315. name: "Macro+",
  29316. height: math.unit(100, "meters")
  29317. },
  29318. {
  29319. name: "Megamacro",
  29320. height: math.unit(20, "km")
  29321. },
  29322. ]
  29323. ))
  29324. characterMakers.push(() => makeCharacter(
  29325. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29326. {
  29327. front: {
  29328. height: math.unit(6, "feet"),
  29329. weight: math.unit(150, "lb"),
  29330. name: "Front",
  29331. image: {
  29332. source: "./media/characters/kosho/front.svg",
  29333. extra: 1847 / 1847,
  29334. bottom: 86 / 1933
  29335. }
  29336. },
  29337. },
  29338. [
  29339. {
  29340. name: "Second-stage micro",
  29341. height: math.unit(0.5, "inches")
  29342. },
  29343. {
  29344. name: "First-stage micro",
  29345. height: math.unit(6, "inches")
  29346. },
  29347. {
  29348. name: "Normal",
  29349. height: math.unit(6, "feet"),
  29350. default: true
  29351. },
  29352. {
  29353. name: "First-stage macro",
  29354. height: math.unit(72, "feet")
  29355. },
  29356. {
  29357. name: "Second-stage macro",
  29358. height: math.unit(864, "feet")
  29359. },
  29360. ]
  29361. ))
  29362. characterMakers.push(() => makeCharacter(
  29363. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29364. {
  29365. normal: {
  29366. height: math.unit(4 + 6 / 12, "feet"),
  29367. name: "Normal",
  29368. image: {
  29369. source: "./media/characters/hydra/normal.svg",
  29370. extra: 2833 / 2634,
  29371. bottom: 68 / 2901
  29372. }
  29373. },
  29374. smol: {
  29375. height: math.unit(0.705, "inches"),
  29376. name: "Smol",
  29377. image: {
  29378. source: "./media/characters/hydra/smol.svg",
  29379. extra: 2715 / 2540,
  29380. bottom: 0 / 2715
  29381. }
  29382. },
  29383. },
  29384. [
  29385. {
  29386. name: "Normal",
  29387. height: math.unit(4 + 6 / 12, "feet"),
  29388. default: true
  29389. }
  29390. ]
  29391. ))
  29392. characterMakers.push(() => makeCharacter(
  29393. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29394. {
  29395. front: {
  29396. height: math.unit(0.6, "cm"),
  29397. name: "Front",
  29398. image: {
  29399. source: "./media/characters/daz/front.svg",
  29400. extra: 1682 / 1164,
  29401. bottom: 42 / 1724
  29402. }
  29403. },
  29404. },
  29405. [
  29406. {
  29407. name: "Normal",
  29408. height: math.unit(0.6, "cm"),
  29409. default: true
  29410. },
  29411. ]
  29412. ))
  29413. characterMakers.push(() => makeCharacter(
  29414. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29415. {
  29416. front: {
  29417. height: math.unit(6, "feet"),
  29418. weight: math.unit(235, "lb"),
  29419. name: "Front",
  29420. image: {
  29421. source: "./media/characters/theo-pangolin/front.svg",
  29422. extra: 1996 / 1969,
  29423. bottom: 115 / 2111
  29424. }
  29425. },
  29426. back: {
  29427. height: math.unit(6, "feet"),
  29428. weight: math.unit(235, "lb"),
  29429. name: "Back",
  29430. image: {
  29431. source: "./media/characters/theo-pangolin/back.svg",
  29432. extra: 1979 / 1979,
  29433. bottom: 40 / 2019
  29434. }
  29435. },
  29436. feral: {
  29437. height: math.unit(2, "feet"),
  29438. weight: math.unit(30, "lb"),
  29439. name: "Feral",
  29440. image: {
  29441. source: "./media/characters/theo-pangolin/feral.svg",
  29442. extra: 803 / 791,
  29443. bottom: 181 / 984
  29444. }
  29445. },
  29446. footFive: {
  29447. height: math.unit(1.43, "feet"),
  29448. name: "Foot (Five Toes)",
  29449. image: {
  29450. source: "./media/characters/theo-pangolin/foot-five.svg"
  29451. }
  29452. },
  29453. footFour: {
  29454. height: math.unit(1.43, "feet"),
  29455. name: "Foot (Four Toes)",
  29456. image: {
  29457. source: "./media/characters/theo-pangolin/foot-four.svg"
  29458. }
  29459. },
  29460. handFour: {
  29461. height: math.unit(0.81, "feet"),
  29462. name: "Hand (Four Fingers)",
  29463. image: {
  29464. source: "./media/characters/theo-pangolin/hand-four.svg"
  29465. }
  29466. },
  29467. handThree: {
  29468. height: math.unit(0.81, "feet"),
  29469. name: "Hand (Three Fingers)",
  29470. image: {
  29471. source: "./media/characters/theo-pangolin/hand-three.svg"
  29472. }
  29473. },
  29474. headFront: {
  29475. height: math.unit(1.37, "feet"),
  29476. name: "Head (Front)",
  29477. image: {
  29478. source: "./media/characters/theo-pangolin/head-front.svg"
  29479. }
  29480. },
  29481. headSide: {
  29482. height: math.unit(1.43, "feet"),
  29483. name: "Head (Side)",
  29484. image: {
  29485. source: "./media/characters/theo-pangolin/head-side.svg"
  29486. }
  29487. },
  29488. tongue: {
  29489. height: math.unit(2.29, "feet"),
  29490. name: "Tongue",
  29491. image: {
  29492. source: "./media/characters/theo-pangolin/tongue.svg"
  29493. }
  29494. },
  29495. },
  29496. [
  29497. {
  29498. name: "Normal",
  29499. height: math.unit(6, "feet")
  29500. },
  29501. {
  29502. name: "Macro",
  29503. height: math.unit(400, "feet"),
  29504. default: true
  29505. },
  29506. ]
  29507. ))
  29508. characterMakers.push(() => makeCharacter(
  29509. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29510. {
  29511. front: {
  29512. height: math.unit(6, "inches"),
  29513. weight: math.unit(0.036, "kg"),
  29514. name: "Front",
  29515. image: {
  29516. source: "./media/characters/renée/front.svg",
  29517. extra: 900 / 886,
  29518. bottom: 8 / 908
  29519. }
  29520. },
  29521. },
  29522. [
  29523. {
  29524. name: "Nano",
  29525. height: math.unit(1, "nm")
  29526. },
  29527. {
  29528. name: "Micro",
  29529. height: math.unit(1, "mm")
  29530. },
  29531. {
  29532. name: "Normal",
  29533. height: math.unit(6, "inches")
  29534. },
  29535. {
  29536. name: "Macro",
  29537. height: math.unit(2000, "feet"),
  29538. default: true
  29539. },
  29540. {
  29541. name: "Megamacro",
  29542. height: math.unit(2, "km")
  29543. },
  29544. {
  29545. name: "Gigamacro",
  29546. height: math.unit(2000, "km")
  29547. },
  29548. {
  29549. name: "Teramacro",
  29550. height: math.unit(250000, "km")
  29551. },
  29552. ]
  29553. ))
  29554. characterMakers.push(() => makeCharacter(
  29555. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29556. {
  29557. front: {
  29558. height: math.unit(4, "meters"),
  29559. weight: math.unit(150, "kg"),
  29560. name: "Front",
  29561. image: {
  29562. source: "./media/characters/caledvwlch/front.svg",
  29563. extra: 1760 / 1551,
  29564. bottom: 28 / 1788
  29565. }
  29566. },
  29567. side: {
  29568. height: math.unit(4, "meters"),
  29569. weight: math.unit(150, "kg"),
  29570. name: "Side",
  29571. image: {
  29572. source: "./media/characters/caledvwlch/side.svg",
  29573. extra: 1605 / 1536,
  29574. bottom: 31 / 1636
  29575. }
  29576. },
  29577. back: {
  29578. height: math.unit(4, "meters"),
  29579. weight: math.unit(150, "kg"),
  29580. name: "Back",
  29581. image: {
  29582. source: "./media/characters/caledvwlch/back.svg",
  29583. extra: 1635 / 1565,
  29584. bottom: 27 / 1662
  29585. }
  29586. },
  29587. },
  29588. [
  29589. {
  29590. name: "\"Incognito\"",
  29591. height: math.unit(4, "meters")
  29592. },
  29593. {
  29594. name: "Small rampage",
  29595. height: math.unit(600, "meters")
  29596. },
  29597. {
  29598. name: "Mega",
  29599. height: math.unit(30, "km")
  29600. },
  29601. {
  29602. name: "Home-size",
  29603. height: math.unit(50, "km"),
  29604. default: true
  29605. },
  29606. {
  29607. name: "Giga",
  29608. height: math.unit(300, "km")
  29609. },
  29610. {
  29611. name: "Lounging",
  29612. height: math.unit(11000, "km")
  29613. },
  29614. {
  29615. name: "Planet snacking",
  29616. height: math.unit(2000000, "km")
  29617. },
  29618. ]
  29619. ))
  29620. characterMakers.push(() => makeCharacter(
  29621. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29622. {
  29623. front: {
  29624. height: math.unit(6, "feet"),
  29625. weight: math.unit(215, "lb"),
  29626. name: "Front",
  29627. image: {
  29628. source: "./media/characters/sapphire-svell/front.svg",
  29629. extra: 495 / 455,
  29630. bottom: 20 / 515
  29631. }
  29632. },
  29633. back: {
  29634. height: math.unit(6, "feet"),
  29635. weight: math.unit(216, "lb"),
  29636. name: "Back",
  29637. image: {
  29638. source: "./media/characters/sapphire-svell/back.svg",
  29639. extra: 497 / 477,
  29640. bottom: 7 / 504
  29641. }
  29642. },
  29643. maw: {
  29644. height: math.unit(1.57, "feet"),
  29645. name: "Maw",
  29646. image: {
  29647. source: "./media/characters/sapphire-svell/maw.svg"
  29648. }
  29649. },
  29650. foot: {
  29651. height: math.unit(1.07, "feet"),
  29652. name: "Foot",
  29653. image: {
  29654. source: "./media/characters/sapphire-svell/foot.svg"
  29655. }
  29656. },
  29657. toering: {
  29658. height: math.unit(1.7, "inch"),
  29659. name: "Toering",
  29660. image: {
  29661. source: "./media/characters/sapphire-svell/toering.svg"
  29662. }
  29663. },
  29664. },
  29665. [
  29666. {
  29667. name: "Normal",
  29668. height: math.unit(300, "feet"),
  29669. default: true
  29670. },
  29671. {
  29672. name: "Augmented",
  29673. height: math.unit(1250, "feet")
  29674. },
  29675. {
  29676. name: "Unleashed",
  29677. height: math.unit(3000, "feet")
  29678. },
  29679. ]
  29680. ))
  29681. characterMakers.push(() => makeCharacter(
  29682. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29683. {
  29684. side: {
  29685. height: math.unit(2 + 3 / 12, "feet"),
  29686. weight: math.unit(110, "lb"),
  29687. name: "Side",
  29688. image: {
  29689. source: "./media/characters/glitch-flux/side.svg",
  29690. extra: 997 / 805,
  29691. bottom: 20 / 1017
  29692. }
  29693. },
  29694. },
  29695. [
  29696. {
  29697. name: "Normal",
  29698. height: math.unit(2 + 3 / 12, "feet"),
  29699. default: true
  29700. },
  29701. ]
  29702. ))
  29703. characterMakers.push(() => makeCharacter(
  29704. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29705. {
  29706. front: {
  29707. height: math.unit(4, "meters"),
  29708. name: "Front",
  29709. image: {
  29710. source: "./media/characters/mid/front.svg",
  29711. extra: 507 / 476,
  29712. bottom: 17 / 524
  29713. }
  29714. },
  29715. back: {
  29716. height: math.unit(4, "meters"),
  29717. name: "Back",
  29718. image: {
  29719. source: "./media/characters/mid/back.svg",
  29720. extra: 519 / 487,
  29721. bottom: 7 / 526
  29722. }
  29723. },
  29724. stuck: {
  29725. height: math.unit(2.2, "meters"),
  29726. name: "Stuck",
  29727. image: {
  29728. source: "./media/characters/mid/stuck.svg",
  29729. extra: 1951 / 1869,
  29730. bottom: 88 / 2039
  29731. }
  29732. }
  29733. },
  29734. [
  29735. {
  29736. name: "Normal",
  29737. height: math.unit(4, "meters"),
  29738. default: true
  29739. },
  29740. {
  29741. name: "Big",
  29742. height: math.unit(10, "meters")
  29743. },
  29744. {
  29745. name: "Macro",
  29746. height: math.unit(800, "meters")
  29747. },
  29748. {
  29749. name: "Megamacro",
  29750. height: math.unit(100, "km")
  29751. },
  29752. {
  29753. name: "Overgrown",
  29754. height: math.unit(1, "parsec")
  29755. },
  29756. ]
  29757. ))
  29758. characterMakers.push(() => makeCharacter(
  29759. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29760. {
  29761. front: {
  29762. height: math.unit(2.5, "meters"),
  29763. weight: math.unit(225, "kg"),
  29764. name: "Front",
  29765. image: {
  29766. source: "./media/characters/iris/front.svg",
  29767. extra: 3348 / 3251,
  29768. bottom: 205 / 3553
  29769. }
  29770. },
  29771. maw: {
  29772. height: math.unit(0.56, "meter"),
  29773. name: "Maw",
  29774. image: {
  29775. source: "./media/characters/iris/maw.svg"
  29776. }
  29777. },
  29778. },
  29779. [
  29780. {
  29781. name: "Mewter cat",
  29782. height: math.unit(1.2, "meters")
  29783. },
  29784. {
  29785. name: "Minimacro",
  29786. height: math.unit(2.5, "meters"),
  29787. default: true
  29788. },
  29789. {
  29790. name: "Macro",
  29791. height: math.unit(180, "meters")
  29792. },
  29793. {
  29794. name: "Megamacro",
  29795. height: math.unit(2746, "meters")
  29796. },
  29797. ]
  29798. ))
  29799. characterMakers.push(() => makeCharacter(
  29800. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29801. {
  29802. front: {
  29803. height: math.unit(6, "feet"),
  29804. weight: math.unit(135, "lb"),
  29805. name: "Front",
  29806. image: {
  29807. source: "./media/characters/axel/front.svg",
  29808. extra: 908 / 908,
  29809. bottom: 58 / 966
  29810. }
  29811. },
  29812. side: {
  29813. height: math.unit(6, "feet"),
  29814. weight: math.unit(135, "lb"),
  29815. name: "Side",
  29816. image: {
  29817. source: "./media/characters/axel/side.svg",
  29818. extra: 958 / 958,
  29819. bottom: 11 / 969
  29820. }
  29821. },
  29822. back: {
  29823. height: math.unit(6, "feet"),
  29824. weight: math.unit(135, "lb"),
  29825. name: "Back",
  29826. image: {
  29827. source: "./media/characters/axel/back.svg",
  29828. extra: 887 / 887,
  29829. bottom: 34 / 921
  29830. }
  29831. },
  29832. head: {
  29833. height: math.unit(1.07, "feet"),
  29834. name: "Head",
  29835. image: {
  29836. source: "./media/characters/axel/head.svg"
  29837. }
  29838. },
  29839. beak: {
  29840. height: math.unit(1.4, "feet"),
  29841. name: "Beak",
  29842. image: {
  29843. source: "./media/characters/axel/beak.svg"
  29844. }
  29845. },
  29846. beakSide: {
  29847. height: math.unit(1.4, "feet"),
  29848. name: "Beak Side",
  29849. image: {
  29850. source: "./media/characters/axel/beak-side.svg"
  29851. }
  29852. },
  29853. sheath: {
  29854. height: math.unit(0.5, "feet"),
  29855. name: "Sheath",
  29856. image: {
  29857. source: "./media/characters/axel/sheath.svg"
  29858. }
  29859. },
  29860. dick: {
  29861. height: math.unit(0.98, "feet"),
  29862. name: "Dick",
  29863. image: {
  29864. source: "./media/characters/axel/dick.svg"
  29865. }
  29866. },
  29867. },
  29868. [
  29869. {
  29870. name: "Macro",
  29871. height: math.unit(68, "meters"),
  29872. default: true
  29873. },
  29874. ]
  29875. ))
  29876. characterMakers.push(() => makeCharacter(
  29877. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29878. {
  29879. front: {
  29880. height: math.unit(3.5, "meters"),
  29881. weight: math.unit(1200, "kg"),
  29882. name: "Front",
  29883. image: {
  29884. source: "./media/characters/joanna/front.svg",
  29885. extra: 1596 / 1488,
  29886. bottom: 29 / 1625
  29887. }
  29888. },
  29889. back: {
  29890. height: math.unit(3.5, "meters"),
  29891. weight: math.unit(1200, "kg"),
  29892. name: "Back",
  29893. image: {
  29894. source: "./media/characters/joanna/back.svg",
  29895. extra: 1594 / 1495,
  29896. bottom: 26 / 1620
  29897. }
  29898. },
  29899. frontShorts: {
  29900. height: math.unit(3.5, "meters"),
  29901. weight: math.unit(1200, "kg"),
  29902. name: "Front (Shorts)",
  29903. image: {
  29904. source: "./media/characters/joanna/front-shorts.svg",
  29905. extra: 1596 / 1488,
  29906. bottom: 29 / 1625
  29907. }
  29908. },
  29909. frontBiker: {
  29910. height: math.unit(3.5, "meters"),
  29911. weight: math.unit(1200, "kg"),
  29912. name: "Front (Biker)",
  29913. image: {
  29914. source: "./media/characters/joanna/front-biker.svg",
  29915. extra: 1596 / 1488,
  29916. bottom: 29 / 1625
  29917. }
  29918. },
  29919. backBiker: {
  29920. height: math.unit(3.5, "meters"),
  29921. weight: math.unit(1200, "kg"),
  29922. name: "Back (Biker)",
  29923. image: {
  29924. source: "./media/characters/joanna/back-biker.svg",
  29925. extra: 1594 / 1495,
  29926. bottom: 88 / 1682
  29927. }
  29928. },
  29929. bikeLeft: {
  29930. height: math.unit(2.4, "meters"),
  29931. weight: math.unit(1600, "kg"),
  29932. name: "Bike (Left)",
  29933. image: {
  29934. source: "./media/characters/joanna/bike-left.svg",
  29935. extra: 720 / 720,
  29936. bottom: 8 / 728
  29937. }
  29938. },
  29939. bikeRight: {
  29940. height: math.unit(2.4, "meters"),
  29941. weight: math.unit(1600, "kg"),
  29942. name: "Bike (Right)",
  29943. image: {
  29944. source: "./media/characters/joanna/bike-right.svg",
  29945. extra: 720 / 720,
  29946. bottom: 8 / 728
  29947. }
  29948. },
  29949. },
  29950. [
  29951. {
  29952. name: "Incognito",
  29953. height: math.unit(3.5, "meters")
  29954. },
  29955. {
  29956. name: "Casual Big",
  29957. height: math.unit(200, "meters")
  29958. },
  29959. {
  29960. name: "Macro",
  29961. height: math.unit(600, "meters")
  29962. },
  29963. {
  29964. name: "Original",
  29965. height: math.unit(20, "km"),
  29966. default: true
  29967. },
  29968. {
  29969. name: "Giga",
  29970. height: math.unit(400, "km")
  29971. },
  29972. {
  29973. name: "Lounging",
  29974. height: math.unit(1500, "km")
  29975. },
  29976. {
  29977. name: "Planetary",
  29978. height: math.unit(200000, "km")
  29979. },
  29980. ]
  29981. ))
  29982. characterMakers.push(() => makeCharacter(
  29983. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29984. {
  29985. front: {
  29986. height: math.unit(6, "feet"),
  29987. weight: math.unit(150, "lb"),
  29988. name: "Front",
  29989. image: {
  29990. source: "./media/characters/hugo-sigil/front.svg",
  29991. extra: 522 / 500,
  29992. bottom: 2 / 524
  29993. }
  29994. },
  29995. back: {
  29996. height: math.unit(6, "feet"),
  29997. weight: math.unit(150, "lb"),
  29998. name: "Back",
  29999. image: {
  30000. source: "./media/characters/hugo-sigil/back.svg",
  30001. extra: 519 / 495,
  30002. bottom: 5 / 524
  30003. }
  30004. },
  30005. maw: {
  30006. height: math.unit(1.4, "feet"),
  30007. weight: math.unit(150, "lb"),
  30008. name: "Maw",
  30009. image: {
  30010. source: "./media/characters/hugo-sigil/maw.svg"
  30011. }
  30012. },
  30013. feet: {
  30014. height: math.unit(1.56, "feet"),
  30015. weight: math.unit(150, "lb"),
  30016. name: "Feet",
  30017. image: {
  30018. source: "./media/characters/hugo-sigil/feet.svg",
  30019. extra: 177 / 177,
  30020. bottom: 12 / 189
  30021. }
  30022. },
  30023. },
  30024. [
  30025. {
  30026. name: "Normal",
  30027. height: math.unit(6, "feet")
  30028. },
  30029. {
  30030. name: "Macro",
  30031. height: math.unit(200, "feet"),
  30032. default: true
  30033. },
  30034. ]
  30035. ))
  30036. characterMakers.push(() => makeCharacter(
  30037. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30038. {
  30039. front: {
  30040. height: math.unit(6, "feet"),
  30041. weight: math.unit(150, "lb"),
  30042. name: "Front",
  30043. image: {
  30044. source: "./media/characters/peri/front.svg",
  30045. extra: 2354 / 2233,
  30046. bottom: 49 / 2403
  30047. }
  30048. },
  30049. },
  30050. [
  30051. {
  30052. name: "Really Small",
  30053. height: math.unit(1, "nm")
  30054. },
  30055. {
  30056. name: "Micro",
  30057. height: math.unit(4, "inches")
  30058. },
  30059. {
  30060. name: "Normal",
  30061. height: math.unit(7, "inches"),
  30062. default: true
  30063. },
  30064. {
  30065. name: "Macro",
  30066. height: math.unit(400, "feet")
  30067. },
  30068. {
  30069. name: "Megamacro",
  30070. height: math.unit(100, "miles")
  30071. },
  30072. ]
  30073. ))
  30074. characterMakers.push(() => makeCharacter(
  30075. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30076. {
  30077. frontSlim: {
  30078. height: math.unit(7, "feet"),
  30079. name: "Front (Slim)",
  30080. image: {
  30081. source: "./media/characters/issilora/front-slim.svg",
  30082. extra: 529 / 449,
  30083. bottom: 53 / 582
  30084. }
  30085. },
  30086. sideSlim: {
  30087. height: math.unit(7, "feet"),
  30088. name: "Side (Slim)",
  30089. image: {
  30090. source: "./media/characters/issilora/side-slim.svg",
  30091. extra: 570 / 480,
  30092. bottom: 30 / 600
  30093. }
  30094. },
  30095. backSlim: {
  30096. height: math.unit(7, "feet"),
  30097. name: "Back (Slim)",
  30098. image: {
  30099. source: "./media/characters/issilora/back-slim.svg",
  30100. extra: 537 / 455,
  30101. bottom: 46 / 583
  30102. }
  30103. },
  30104. frontBuff: {
  30105. height: math.unit(7, "feet"),
  30106. name: "Front (Buff)",
  30107. image: {
  30108. source: "./media/characters/issilora/front-buff.svg",
  30109. extra: 2310 / 2035,
  30110. bottom: 335 / 2645
  30111. }
  30112. },
  30113. head: {
  30114. height: math.unit(1.94, "feet"),
  30115. name: "Head",
  30116. image: {
  30117. source: "./media/characters/issilora/head.svg"
  30118. }
  30119. },
  30120. },
  30121. [
  30122. {
  30123. name: "Minimum",
  30124. height: math.unit(7, "feet")
  30125. },
  30126. {
  30127. name: "Comfortable",
  30128. height: math.unit(17, "feet")
  30129. },
  30130. {
  30131. name: "Fun Size",
  30132. height: math.unit(47, "feet")
  30133. },
  30134. {
  30135. name: "Natural Macro",
  30136. height: math.unit(137, "feet"),
  30137. default: true
  30138. },
  30139. {
  30140. name: "Maximum Kaiju",
  30141. height: math.unit(397, "feet")
  30142. },
  30143. ]
  30144. ))
  30145. characterMakers.push(() => makeCharacter(
  30146. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30147. {
  30148. front: {
  30149. height: math.unit(50 + 9/12, "feet"),
  30150. weight: math.unit(32.8, "tons"),
  30151. name: "Front",
  30152. image: {
  30153. source: "./media/characters/irb'iiritaahn/front.svg",
  30154. extra: 1878/1826,
  30155. bottom: 326/2204
  30156. }
  30157. },
  30158. back: {
  30159. height: math.unit(50 + 9/12, "feet"),
  30160. weight: math.unit(32.8, "tons"),
  30161. name: "Back",
  30162. image: {
  30163. source: "./media/characters/irb'iiritaahn/back.svg",
  30164. extra: 2052/2018,
  30165. bottom: 152/2204
  30166. }
  30167. },
  30168. head: {
  30169. height: math.unit(12.86, "feet"),
  30170. name: "Head",
  30171. image: {
  30172. source: "./media/characters/irb'iiritaahn/head.svg"
  30173. }
  30174. },
  30175. maw: {
  30176. height: math.unit(9.66, "feet"),
  30177. name: "Maw",
  30178. image: {
  30179. source: "./media/characters/irb'iiritaahn/maw.svg"
  30180. }
  30181. },
  30182. frontDick: {
  30183. height: math.unit(8.78461, "feet"),
  30184. name: "Front Dick",
  30185. image: {
  30186. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30187. }
  30188. },
  30189. rearDick: {
  30190. height: math.unit(8.78461, "feet"),
  30191. name: "Rear Dick",
  30192. image: {
  30193. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30194. }
  30195. },
  30196. rearDickUnfolded: {
  30197. height: math.unit(8.78, "feet"),
  30198. name: "Rear Dick (Unfolded)",
  30199. image: {
  30200. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30201. }
  30202. },
  30203. wings: {
  30204. height: math.unit(43, "feet"),
  30205. name: "Wings",
  30206. image: {
  30207. source: "./media/characters/irb'iiritaahn/wings.svg"
  30208. }
  30209. },
  30210. },
  30211. [
  30212. {
  30213. name: "Macro",
  30214. height: math.unit(50 + 9/12, "feet"),
  30215. default: true
  30216. },
  30217. ]
  30218. ))
  30219. characterMakers.push(() => makeCharacter(
  30220. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30221. {
  30222. front: {
  30223. height: math.unit(205, "cm"),
  30224. weight: math.unit(102, "kg"),
  30225. name: "Front",
  30226. image: {
  30227. source: "./media/characters/irbisgreif/front.svg",
  30228. extra: 785/706,
  30229. bottom: 13/798
  30230. }
  30231. },
  30232. back: {
  30233. height: math.unit(205, "cm"),
  30234. weight: math.unit(102, "kg"),
  30235. name: "Back",
  30236. image: {
  30237. source: "./media/characters/irbisgreif/back.svg",
  30238. extra: 713/701,
  30239. bottom: 26/739
  30240. }
  30241. },
  30242. frontDressed: {
  30243. height: math.unit(216, "cm"),
  30244. weight: math.unit(102, "kg"),
  30245. name: "Front-dressed",
  30246. image: {
  30247. source: "./media/characters/irbisgreif/front-dressed.svg",
  30248. extra: 902/776,
  30249. bottom: 14/916
  30250. }
  30251. },
  30252. sideDressed: {
  30253. height: math.unit(195, "cm"),
  30254. weight: math.unit(102, "kg"),
  30255. name: "Side-dressed",
  30256. image: {
  30257. source: "./media/characters/irbisgreif/side-dressed.svg",
  30258. extra: 788/688,
  30259. bottom: 21/809
  30260. }
  30261. },
  30262. backDressed: {
  30263. height: math.unit(216, "cm"),
  30264. weight: math.unit(102, "kg"),
  30265. name: "Back-dressed",
  30266. image: {
  30267. source: "./media/characters/irbisgreif/back-dressed.svg",
  30268. extra: 901/783,
  30269. bottom: 10/911
  30270. }
  30271. },
  30272. dick: {
  30273. height: math.unit(0.49, "feet"),
  30274. name: "Dick",
  30275. image: {
  30276. source: "./media/characters/irbisgreif/dick.svg"
  30277. }
  30278. },
  30279. wingTop: {
  30280. height: math.unit(1.93 , "feet"),
  30281. name: "Wing-top",
  30282. image: {
  30283. source: "./media/characters/irbisgreif/wing-top.svg"
  30284. }
  30285. },
  30286. wingBottom: {
  30287. height: math.unit(1.93 , "feet"),
  30288. name: "Wing-bottom",
  30289. image: {
  30290. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30291. }
  30292. },
  30293. },
  30294. [
  30295. {
  30296. name: "Normal",
  30297. height: math.unit(216, "cm"),
  30298. default: true
  30299. },
  30300. ]
  30301. ))
  30302. characterMakers.push(() => makeCharacter(
  30303. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30304. {
  30305. front: {
  30306. height: math.unit(6, "feet"),
  30307. weight: math.unit(150, "lb"),
  30308. name: "Front",
  30309. image: {
  30310. source: "./media/characters/pride/front.svg",
  30311. extra: 1299/1230,
  30312. bottom: 18/1317
  30313. }
  30314. },
  30315. },
  30316. [
  30317. {
  30318. name: "Normal",
  30319. height: math.unit(7, "feet")
  30320. },
  30321. {
  30322. name: "Mini-macro",
  30323. height: math.unit(11, "feet")
  30324. },
  30325. {
  30326. name: "Macro",
  30327. height: math.unit(15, "meters"),
  30328. default: true
  30329. },
  30330. {
  30331. name: "Macro+",
  30332. height: math.unit(40, "meters")
  30333. },
  30334. ]
  30335. ))
  30336. characterMakers.push(() => makeCharacter(
  30337. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30338. {
  30339. front: {
  30340. height: math.unit(4 + 2 / 12, "feet"),
  30341. weight: math.unit(95, "lb"),
  30342. name: "Front",
  30343. image: {
  30344. source: "./media/characters/vaelophis-nyx/front.svg",
  30345. extra: 2532/2330,
  30346. bottom: 0/2532
  30347. }
  30348. },
  30349. back: {
  30350. height: math.unit(4 + 2 / 12, "feet"),
  30351. weight: math.unit(95, "lb"),
  30352. name: "Back",
  30353. image: {
  30354. source: "./media/characters/vaelophis-nyx/back.svg",
  30355. extra: 2484/2361,
  30356. bottom: 0/2484
  30357. }
  30358. },
  30359. feralSide: {
  30360. height: math.unit(2 + 1/12, "feet"),
  30361. weight: math.unit(20, "lb"),
  30362. name: "Feral (Side)",
  30363. image: {
  30364. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30365. extra: 1721/1581,
  30366. bottom: 70/1791
  30367. }
  30368. },
  30369. feralLazing: {
  30370. height: math.unit(1.08, "feet"),
  30371. weight: math.unit(20, "lb"),
  30372. name: "Feral (Lazing)",
  30373. image: {
  30374. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30375. extra: 822/822,
  30376. bottom: 248/1070
  30377. }
  30378. },
  30379. ear: {
  30380. height: math.unit(0.416, "feet"),
  30381. name: "Ear",
  30382. image: {
  30383. source: "./media/characters/vaelophis-nyx/ear.svg"
  30384. }
  30385. },
  30386. eye: {
  30387. height: math.unit(0.0748, "feet"),
  30388. name: "Eye",
  30389. image: {
  30390. source: "./media/characters/vaelophis-nyx/eye.svg"
  30391. }
  30392. },
  30393. mouth: {
  30394. height: math.unit(0.378, "feet"),
  30395. name: "Mouth",
  30396. image: {
  30397. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30398. }
  30399. },
  30400. spade: {
  30401. height: math.unit(0.55, "feet"),
  30402. name: "Spade",
  30403. image: {
  30404. source: "./media/characters/vaelophis-nyx/spade.svg"
  30405. }
  30406. },
  30407. },
  30408. [
  30409. {
  30410. name: "Normal",
  30411. height: math.unit(4 + 2/12, "feet"),
  30412. default: true
  30413. },
  30414. ]
  30415. ))
  30416. characterMakers.push(() => makeCharacter(
  30417. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30418. {
  30419. front: {
  30420. height: math.unit(7, "feet"),
  30421. weight: math.unit(231, "lb"),
  30422. name: "Front",
  30423. image: {
  30424. source: "./media/characters/flux/front.svg",
  30425. extra: 919/871,
  30426. bottom: 0/919
  30427. }
  30428. },
  30429. back: {
  30430. height: math.unit(7, "feet"),
  30431. weight: math.unit(231, "lb"),
  30432. name: "Back",
  30433. image: {
  30434. source: "./media/characters/flux/back.svg",
  30435. extra: 1040/992,
  30436. bottom: 0/1040
  30437. }
  30438. },
  30439. frontDressed: {
  30440. height: math.unit(7, "feet"),
  30441. weight: math.unit(231, "lb"),
  30442. name: "Front (Dressed)",
  30443. image: {
  30444. source: "./media/characters/flux/front-dressed.svg",
  30445. extra: 919/871,
  30446. bottom: 0/919
  30447. }
  30448. },
  30449. feralSide: {
  30450. height: math.unit(5, "feet"),
  30451. weight: math.unit(150, "lb"),
  30452. name: "Feral (Side)",
  30453. image: {
  30454. source: "./media/characters/flux/feral-side.svg",
  30455. extra: 598/528,
  30456. bottom: 28/626
  30457. }
  30458. },
  30459. head: {
  30460. height: math.unit(1.585, "feet"),
  30461. name: "Head",
  30462. image: {
  30463. source: "./media/characters/flux/head.svg"
  30464. }
  30465. },
  30466. headSide: {
  30467. height: math.unit(1.74, "feet"),
  30468. name: "Head (Side)",
  30469. image: {
  30470. source: "./media/characters/flux/head-side.svg"
  30471. }
  30472. },
  30473. headSideFire: {
  30474. height: math.unit(1.76, "feet"),
  30475. name: "Head (Side, Fire)",
  30476. image: {
  30477. source: "./media/characters/flux/head-side-fire.svg"
  30478. }
  30479. },
  30480. },
  30481. [
  30482. {
  30483. name: "Normal",
  30484. height: math.unit(7, "feet"),
  30485. default: true
  30486. },
  30487. ]
  30488. ))
  30489. characterMakers.push(() => makeCharacter(
  30490. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30491. {
  30492. front: {
  30493. height: math.unit(9, "feet"),
  30494. weight: math.unit(1012, "lb"),
  30495. name: "Front",
  30496. image: {
  30497. source: "./media/characters/ulfra-lupae/front.svg",
  30498. extra: 1083/1011,
  30499. bottom: 67/1150
  30500. }
  30501. },
  30502. },
  30503. [
  30504. {
  30505. name: "Micro",
  30506. height: math.unit(6, "inches")
  30507. },
  30508. {
  30509. name: "Socializing",
  30510. height: math.unit(6 + 5/12, "feet")
  30511. },
  30512. {
  30513. name: "Normal",
  30514. height: math.unit(9, "feet"),
  30515. default: true
  30516. },
  30517. {
  30518. name: "Macro",
  30519. height: math.unit(150, "feet")
  30520. },
  30521. ]
  30522. ))
  30523. characterMakers.push(() => makeCharacter(
  30524. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30525. {
  30526. front: {
  30527. height: math.unit(5 + 2/12, "feet"),
  30528. weight: math.unit(120, "lb"),
  30529. name: "Front",
  30530. image: {
  30531. source: "./media/characters/timber/front.svg",
  30532. extra: 2814/2705,
  30533. bottom: 181/2995
  30534. }
  30535. },
  30536. },
  30537. [
  30538. {
  30539. name: "Normal",
  30540. height: math.unit(5 + 2/12, "feet"),
  30541. default: true
  30542. },
  30543. ]
  30544. ))
  30545. characterMakers.push(() => makeCharacter(
  30546. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30547. {
  30548. front: {
  30549. height: math.unit(5 + 7/12, "feet"),
  30550. weight: math.unit(220, "lb"),
  30551. name: "Front",
  30552. image: {
  30553. source: "./media/characters/nicki/front.svg",
  30554. extra: 453/419,
  30555. bottom: 7/460
  30556. }
  30557. },
  30558. frontAlt: {
  30559. height: math.unit(5 + 7/12, "feet"),
  30560. weight: math.unit(220, "lb"),
  30561. name: "Front-alt",
  30562. image: {
  30563. source: "./media/characters/nicki/front-alt.svg",
  30564. extra: 435/411,
  30565. bottom: 12/447
  30566. }
  30567. },
  30568. back: {
  30569. height: math.unit(5 + 7/12, "feet"),
  30570. weight: math.unit(220, "lb"),
  30571. name: "Back",
  30572. image: {
  30573. source: "./media/characters/nicki/back.svg",
  30574. extra: 440/413,
  30575. bottom: 19/459
  30576. }
  30577. },
  30578. taur: {
  30579. height: math.unit(7 + 6/12, "feet"),
  30580. weight: math.unit(700, "lb"),
  30581. name: "Taur",
  30582. image: {
  30583. source: "./media/characters/nicki/taur.svg",
  30584. extra: 975/773,
  30585. bottom: 0/975
  30586. }
  30587. },
  30588. frontNsfw: {
  30589. height: math.unit(5 + 7/12, "feet"),
  30590. weight: math.unit(220, "lb"),
  30591. name: "Front (NSFW)",
  30592. image: {
  30593. source: "./media/characters/nicki/front-nsfw.svg",
  30594. extra: 453/419,
  30595. bottom: 7/460
  30596. }
  30597. },
  30598. frontNsfwAlt: {
  30599. height: math.unit(5 + 7/12, "feet"),
  30600. weight: math.unit(220, "lb"),
  30601. name: "Front (Alt, NSFW)",
  30602. image: {
  30603. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30604. extra: 435/411,
  30605. bottom: 12/447
  30606. }
  30607. },
  30608. backNsfw: {
  30609. height: math.unit(5 + 7/12, "feet"),
  30610. weight: math.unit(220, "lb"),
  30611. name: "Back (NSFW)",
  30612. image: {
  30613. source: "./media/characters/nicki/back-nsfw.svg",
  30614. extra: 440/413,
  30615. bottom: 19/459
  30616. }
  30617. },
  30618. head: {
  30619. height: math.unit(2.1, "feet"),
  30620. name: "Head",
  30621. image: {
  30622. source: "./media/characters/nicki/head.svg"
  30623. }
  30624. },
  30625. paw: {
  30626. height: math.unit(1.88, "feet"),
  30627. name: "Paw",
  30628. image: {
  30629. source: "./media/characters/nicki/paw.svg"
  30630. }
  30631. },
  30632. },
  30633. [
  30634. {
  30635. name: "Normal",
  30636. height: math.unit(5 + 7/12, "feet"),
  30637. default: true
  30638. },
  30639. ]
  30640. ))
  30641. characterMakers.push(() => makeCharacter(
  30642. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30643. {
  30644. front: {
  30645. height: math.unit(7 + 10/12, "feet"),
  30646. weight: math.unit(3.5, "tons"),
  30647. name: "Front",
  30648. image: {
  30649. source: "./media/characters/lee/front.svg",
  30650. extra: 1773/1615,
  30651. bottom: 86/1859
  30652. }
  30653. },
  30654. hand: {
  30655. height: math.unit(1.78, "feet"),
  30656. name: "Hand",
  30657. image: {
  30658. source: "./media/characters/lee/hand.svg"
  30659. }
  30660. },
  30661. maw: {
  30662. height: math.unit(1.18, "feet"),
  30663. name: "Maw",
  30664. image: {
  30665. source: "./media/characters/lee/maw.svg"
  30666. }
  30667. },
  30668. },
  30669. [
  30670. {
  30671. name: "Normal",
  30672. height: math.unit(7 + 10/12, "feet"),
  30673. default: true
  30674. },
  30675. ]
  30676. ))
  30677. characterMakers.push(() => makeCharacter(
  30678. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30679. {
  30680. front: {
  30681. height: math.unit(9, "feet"),
  30682. name: "Front",
  30683. image: {
  30684. source: "./media/characters/guti/front.svg",
  30685. extra: 4551/4355,
  30686. bottom: 123/4674
  30687. }
  30688. },
  30689. tongue: {
  30690. height: math.unit(1, "feet"),
  30691. name: "Tongue",
  30692. image: {
  30693. source: "./media/characters/guti/tongue.svg"
  30694. }
  30695. },
  30696. paw: {
  30697. height: math.unit(1.18, "feet"),
  30698. name: "Paw",
  30699. image: {
  30700. source: "./media/characters/guti/paw.svg"
  30701. }
  30702. },
  30703. },
  30704. [
  30705. {
  30706. name: "Normal",
  30707. height: math.unit(9, "feet"),
  30708. default: true
  30709. },
  30710. ]
  30711. ))
  30712. characterMakers.push(() => makeCharacter(
  30713. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30714. {
  30715. side: {
  30716. height: math.unit(5, "meters"),
  30717. name: "Side",
  30718. image: {
  30719. source: "./media/characters/vesper/side.svg",
  30720. extra: 1605/1518,
  30721. bottom: 0/1605
  30722. }
  30723. },
  30724. },
  30725. [
  30726. {
  30727. name: "Small",
  30728. height: math.unit(5, "meters")
  30729. },
  30730. {
  30731. name: "Sage",
  30732. height: math.unit(100, "meters"),
  30733. default: true
  30734. },
  30735. {
  30736. name: "Fun Size",
  30737. height: math.unit(600, "meters")
  30738. },
  30739. {
  30740. name: "Goddess",
  30741. height: math.unit(20000, "km")
  30742. },
  30743. {
  30744. name: "Maximum",
  30745. height: math.unit(5, "galaxies")
  30746. },
  30747. ]
  30748. ))
  30749. characterMakers.push(() => makeCharacter(
  30750. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30751. {
  30752. front: {
  30753. height: math.unit(6 + 3/12, "feet"),
  30754. weight: math.unit(190, "lb"),
  30755. name: "Front",
  30756. image: {
  30757. source: "./media/characters/gawain/front.svg",
  30758. extra: 2222/2139,
  30759. bottom: 90/2312
  30760. }
  30761. },
  30762. back: {
  30763. height: math.unit(6 + 3/12, "feet"),
  30764. weight: math.unit(190, "lb"),
  30765. name: "Back",
  30766. image: {
  30767. source: "./media/characters/gawain/back.svg",
  30768. extra: 2199/2111,
  30769. bottom: 73/2272
  30770. }
  30771. },
  30772. },
  30773. [
  30774. {
  30775. name: "Normal",
  30776. height: math.unit(6 + 3/12, "feet"),
  30777. default: true
  30778. },
  30779. ]
  30780. ))
  30781. characterMakers.push(() => makeCharacter(
  30782. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30783. {
  30784. side: {
  30785. height: math.unit(3.5, "meters"),
  30786. weight: math.unit(16000, "lb"),
  30787. name: "Side",
  30788. image: {
  30789. source: "./media/characters/dascalti/side.svg",
  30790. extra: 392/273,
  30791. bottom: 47/439
  30792. }
  30793. },
  30794. breath: {
  30795. height: math.unit(7.4, "feet"),
  30796. name: "Breath",
  30797. image: {
  30798. source: "./media/characters/dascalti/breath.svg"
  30799. }
  30800. },
  30801. fed: {
  30802. height: math.unit(3.6, "meters"),
  30803. weight: math.unit(16000, "lb"),
  30804. name: "Fed",
  30805. image: {
  30806. source: "./media/characters/dascalti/fed.svg",
  30807. extra: 1419/820,
  30808. bottom: 95/1514
  30809. }
  30810. },
  30811. },
  30812. [
  30813. {
  30814. name: "Normal",
  30815. height: math.unit(3.5, "meters"),
  30816. default: true
  30817. },
  30818. ]
  30819. ))
  30820. characterMakers.push(() => makeCharacter(
  30821. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30822. {
  30823. front: {
  30824. height: math.unit(3 + 5/12, "feet"),
  30825. name: "Front",
  30826. image: {
  30827. source: "./media/characters/mauve/front.svg",
  30828. extra: 1126/1033,
  30829. bottom: 65/1191
  30830. }
  30831. },
  30832. side: {
  30833. height: math.unit(3 + 5/12, "feet"),
  30834. name: "Side",
  30835. image: {
  30836. source: "./media/characters/mauve/side.svg",
  30837. extra: 1089/1001,
  30838. bottom: 29/1118
  30839. }
  30840. },
  30841. back: {
  30842. height: math.unit(3 + 5/12, "feet"),
  30843. name: "Back",
  30844. image: {
  30845. source: "./media/characters/mauve/back.svg",
  30846. extra: 1173/1053,
  30847. bottom: 109/1282
  30848. }
  30849. },
  30850. },
  30851. [
  30852. {
  30853. name: "Normal",
  30854. height: math.unit(3 + 5/12, "feet"),
  30855. default: true
  30856. },
  30857. ]
  30858. ))
  30859. characterMakers.push(() => makeCharacter(
  30860. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30861. {
  30862. front: {
  30863. height: math.unit(6 + 3/12, "feet"),
  30864. weight: math.unit(430, "lb"),
  30865. name: "Front",
  30866. image: {
  30867. source: "./media/characters/carlos/front.svg",
  30868. extra: 1964/1913,
  30869. bottom: 70/2034
  30870. }
  30871. },
  30872. },
  30873. [
  30874. {
  30875. name: "Normal",
  30876. height: math.unit(6 + 3/12, "feet"),
  30877. default: true
  30878. },
  30879. ]
  30880. ))
  30881. characterMakers.push(() => makeCharacter(
  30882. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30883. {
  30884. back: {
  30885. height: math.unit(5 + 10/12, "feet"),
  30886. weight: math.unit(200, "lb"),
  30887. name: "Back",
  30888. image: {
  30889. source: "./media/characters/jax/back.svg",
  30890. extra: 764/739,
  30891. bottom: 25/789
  30892. }
  30893. },
  30894. },
  30895. [
  30896. {
  30897. name: "Normal",
  30898. height: math.unit(5 + 10/12, "feet"),
  30899. default: true
  30900. },
  30901. ]
  30902. ))
  30903. characterMakers.push(() => makeCharacter(
  30904. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30905. {
  30906. front: {
  30907. height: math.unit(8, "feet"),
  30908. weight: math.unit(250, "lb"),
  30909. name: "Front",
  30910. image: {
  30911. source: "./media/characters/eikthynir/front.svg",
  30912. extra: 1332/1166,
  30913. bottom: 82/1414
  30914. }
  30915. },
  30916. back: {
  30917. height: math.unit(8, "feet"),
  30918. weight: math.unit(250, "lb"),
  30919. name: "Back",
  30920. image: {
  30921. source: "./media/characters/eikthynir/back.svg",
  30922. extra: 1342/1190,
  30923. bottom: 19/1361
  30924. }
  30925. },
  30926. dick: {
  30927. height: math.unit(2.35, "feet"),
  30928. name: "Dick",
  30929. image: {
  30930. source: "./media/characters/eikthynir/dick.svg"
  30931. }
  30932. },
  30933. },
  30934. [
  30935. {
  30936. name: "Normal",
  30937. height: math.unit(8, "feet"),
  30938. default: true
  30939. },
  30940. ]
  30941. ))
  30942. characterMakers.push(() => makeCharacter(
  30943. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30944. {
  30945. front: {
  30946. height: math.unit(99, "meters"),
  30947. weight: math.unit(13000, "tons"),
  30948. name: "Front",
  30949. image: {
  30950. source: "./media/characters/zlmos/front.svg",
  30951. extra: 2202/1992,
  30952. bottom: 315/2517
  30953. }
  30954. },
  30955. },
  30956. [
  30957. {
  30958. name: "Macro",
  30959. height: math.unit(99, "meters"),
  30960. default: true
  30961. },
  30962. ]
  30963. ))
  30964. characterMakers.push(() => makeCharacter(
  30965. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30966. {
  30967. front: {
  30968. height: math.unit(6 + 5/12, "feet"),
  30969. name: "Front",
  30970. image: {
  30971. source: "./media/characters/purri/front.svg",
  30972. extra: 1698/1610,
  30973. bottom: 32/1730
  30974. }
  30975. },
  30976. frontAlt: {
  30977. height: math.unit(6 + 5/12, "feet"),
  30978. name: "Front (Alt)",
  30979. image: {
  30980. source: "./media/characters/purri/front-alt.svg",
  30981. extra: 450/420,
  30982. bottom: 26/476
  30983. }
  30984. },
  30985. boots: {
  30986. height: math.unit(5.5, "feet"),
  30987. name: "Boots",
  30988. image: {
  30989. source: "./media/characters/purri/boots.svg",
  30990. extra: 905/853,
  30991. bottom: 18/923
  30992. }
  30993. },
  30994. lying: {
  30995. height: math.unit(2, "feet"),
  30996. name: "Lying",
  30997. image: {
  30998. source: "./media/characters/purri/lying.svg",
  30999. extra: 940/843,
  31000. bottom: 146/1086
  31001. }
  31002. },
  31003. devious: {
  31004. height: math.unit(1.77, "feet"),
  31005. name: "Devious",
  31006. image: {
  31007. source: "./media/characters/purri/devious.svg",
  31008. extra: 1440/1155,
  31009. bottom: 147/1587
  31010. }
  31011. },
  31012. bean: {
  31013. height: math.unit(1.94, "feet"),
  31014. name: "Bean",
  31015. image: {
  31016. source: "./media/characters/purri/bean.svg"
  31017. }
  31018. },
  31019. },
  31020. [
  31021. {
  31022. name: "Micro",
  31023. height: math.unit(1, "mm")
  31024. },
  31025. {
  31026. name: "Normal",
  31027. height: math.unit(6 + 5/12, "feet"),
  31028. default: true
  31029. },
  31030. {
  31031. name: "Macro :3c",
  31032. height: math.unit(2, "miles")
  31033. },
  31034. ]
  31035. ))
  31036. characterMakers.push(() => makeCharacter(
  31037. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31038. {
  31039. front: {
  31040. height: math.unit(6 + 2/12, "feet"),
  31041. weight: math.unit(250, "lb"),
  31042. name: "Front",
  31043. image: {
  31044. source: "./media/characters/moonlight/front.svg",
  31045. extra: 1044/908,
  31046. bottom: 56/1100
  31047. }
  31048. },
  31049. feral: {
  31050. height: math.unit(3 + 1/12, "feet"),
  31051. weight: math.unit(50, "kg"),
  31052. name: "Feral",
  31053. image: {
  31054. source: "./media/characters/moonlight/feral.svg",
  31055. extra: 3705/2791,
  31056. bottom: 145/3850
  31057. }
  31058. },
  31059. paw: {
  31060. height: math.unit(1, "feet"),
  31061. name: "Paw",
  31062. image: {
  31063. source: "./media/characters/moonlight/paw.svg"
  31064. }
  31065. },
  31066. paws: {
  31067. height: math.unit(0.98, "feet"),
  31068. name: "Paws",
  31069. image: {
  31070. source: "./media/characters/moonlight/paws.svg",
  31071. extra: 939/939,
  31072. bottom: 50/989
  31073. }
  31074. },
  31075. mouth: {
  31076. height: math.unit(0.48, "feet"),
  31077. name: "Mouth",
  31078. image: {
  31079. source: "./media/characters/moonlight/mouth.svg"
  31080. }
  31081. },
  31082. dick: {
  31083. height: math.unit(1.46, "feet"),
  31084. name: "Dick",
  31085. image: {
  31086. source: "./media/characters/moonlight/dick.svg"
  31087. }
  31088. },
  31089. },
  31090. [
  31091. {
  31092. name: "Normal",
  31093. height: math.unit(6 + 2/12, "feet"),
  31094. default: true
  31095. },
  31096. {
  31097. name: "Macro",
  31098. height: math.unit(300, "feet")
  31099. },
  31100. {
  31101. name: "Macro+",
  31102. height: math.unit(1, "mile")
  31103. },
  31104. {
  31105. name: "Mt. Moon",
  31106. height: math.unit(5, "miles")
  31107. },
  31108. {
  31109. name: "Megamacro",
  31110. height: math.unit(15, "miles")
  31111. },
  31112. ]
  31113. ))
  31114. characterMakers.push(() => makeCharacter(
  31115. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31116. {
  31117. back: {
  31118. height: math.unit(6, "feet"),
  31119. weight: math.unit(150, "lb"),
  31120. name: "Back",
  31121. image: {
  31122. source: "./media/characters/sylen/back.svg",
  31123. extra: 1335/1273,
  31124. bottom: 107/1442
  31125. }
  31126. },
  31127. },
  31128. [
  31129. {
  31130. name: "Normal",
  31131. height: math.unit(5 + 5/12, "feet")
  31132. },
  31133. {
  31134. name: "Megamacro",
  31135. height: math.unit(3, "miles"),
  31136. default: true
  31137. },
  31138. ]
  31139. ))
  31140. characterMakers.push(() => makeCharacter(
  31141. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31142. {
  31143. front: {
  31144. height: math.unit(6, "feet"),
  31145. weight: math.unit(190, "lb"),
  31146. name: "Front",
  31147. image: {
  31148. source: "./media/characters/huttser/front.svg",
  31149. extra: 1152/1058,
  31150. bottom: 23/1175
  31151. }
  31152. },
  31153. side: {
  31154. height: math.unit(6, "feet"),
  31155. weight: math.unit(190, "lb"),
  31156. name: "Side",
  31157. image: {
  31158. source: "./media/characters/huttser/side.svg",
  31159. extra: 1174/1065,
  31160. bottom: 18/1192
  31161. }
  31162. },
  31163. back: {
  31164. height: math.unit(6, "feet"),
  31165. weight: math.unit(190, "lb"),
  31166. name: "Back",
  31167. image: {
  31168. source: "./media/characters/huttser/back.svg",
  31169. extra: 1158/1056,
  31170. bottom: 12/1170
  31171. }
  31172. },
  31173. },
  31174. [
  31175. ]
  31176. ))
  31177. characterMakers.push(() => makeCharacter(
  31178. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31179. {
  31180. side: {
  31181. height: math.unit(12 + 9/12, "feet"),
  31182. weight: math.unit(15000, "lb"),
  31183. name: "Side",
  31184. image: {
  31185. source: "./media/characters/faan/side.svg",
  31186. extra: 2747/2697,
  31187. bottom: 0/2747
  31188. }
  31189. },
  31190. front: {
  31191. height: math.unit(12 + 9/12, "feet"),
  31192. weight: math.unit(15000, "lb"),
  31193. name: "Front",
  31194. image: {
  31195. source: "./media/characters/faan/front.svg",
  31196. extra: 607/571,
  31197. bottom: 24/631
  31198. }
  31199. },
  31200. head: {
  31201. height: math.unit(2.85, "feet"),
  31202. name: "Head",
  31203. image: {
  31204. source: "./media/characters/faan/head.svg"
  31205. }
  31206. },
  31207. headAlt: {
  31208. height: math.unit(3.13, "feet"),
  31209. name: "Head-alt",
  31210. image: {
  31211. source: "./media/characters/faan/head-alt.svg"
  31212. }
  31213. },
  31214. },
  31215. [
  31216. {
  31217. name: "Normal",
  31218. height: math.unit(12 + 9/12, "feet"),
  31219. default: true
  31220. },
  31221. ]
  31222. ))
  31223. characterMakers.push(() => makeCharacter(
  31224. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31225. {
  31226. front: {
  31227. height: math.unit(6, "feet"),
  31228. weight: math.unit(300, "lb"),
  31229. name: "Front",
  31230. image: {
  31231. source: "./media/characters/tanio/front.svg",
  31232. extra: 711/673,
  31233. bottom: 25/736
  31234. }
  31235. },
  31236. },
  31237. [
  31238. {
  31239. name: "Normal",
  31240. height: math.unit(6, "feet"),
  31241. default: true
  31242. },
  31243. ]
  31244. ))
  31245. characterMakers.push(() => makeCharacter(
  31246. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31247. {
  31248. front: {
  31249. height: math.unit(3, "inches"),
  31250. name: "Front",
  31251. image: {
  31252. source: "./media/characters/noboru/front.svg",
  31253. extra: 1039/932,
  31254. bottom: 18/1057
  31255. }
  31256. },
  31257. },
  31258. [
  31259. {
  31260. name: "Micro",
  31261. height: math.unit(3, "inches"),
  31262. default: true
  31263. },
  31264. ]
  31265. ))
  31266. characterMakers.push(() => makeCharacter(
  31267. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31268. {
  31269. front: {
  31270. height: math.unit(1.85, "meters"),
  31271. weight: math.unit(80, "kg"),
  31272. name: "Front",
  31273. image: {
  31274. source: "./media/characters/daniel-barrett/front.svg",
  31275. extra: 355/337,
  31276. bottom: 9/364
  31277. }
  31278. },
  31279. },
  31280. [
  31281. {
  31282. name: "Pico",
  31283. height: math.unit(0.0433, "mm")
  31284. },
  31285. {
  31286. name: "Nano",
  31287. height: math.unit(1.5, "mm")
  31288. },
  31289. {
  31290. name: "Micro",
  31291. height: math.unit(5.3, "cm"),
  31292. default: true
  31293. },
  31294. {
  31295. name: "Normal",
  31296. height: math.unit(1.85, "meters")
  31297. },
  31298. {
  31299. name: "Macro",
  31300. height: math.unit(64.7, "meters")
  31301. },
  31302. {
  31303. name: "Megamacro",
  31304. height: math.unit(2.26, "km")
  31305. },
  31306. {
  31307. name: "Gigamacro",
  31308. height: math.unit(79, "km")
  31309. },
  31310. {
  31311. name: "Teramacro",
  31312. height: math.unit(2765, "km")
  31313. },
  31314. {
  31315. name: "Petamacro",
  31316. height: math.unit(96678, "km")
  31317. },
  31318. ]
  31319. ))
  31320. characterMakers.push(() => makeCharacter(
  31321. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31322. {
  31323. front: {
  31324. height: math.unit(30, "meters"),
  31325. weight: math.unit(400, "tons"),
  31326. name: "Front",
  31327. image: {
  31328. source: "./media/characters/zeel/front.svg",
  31329. extra: 2599/2599,
  31330. bottom: 226/2825
  31331. }
  31332. },
  31333. },
  31334. [
  31335. {
  31336. name: "Macro",
  31337. height: math.unit(30, "meters"),
  31338. default: true
  31339. },
  31340. ]
  31341. ))
  31342. characterMakers.push(() => makeCharacter(
  31343. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31344. {
  31345. front: {
  31346. height: math.unit(6 + 7/12, "feet"),
  31347. weight: math.unit(210, "lb"),
  31348. name: "Front",
  31349. image: {
  31350. source: "./media/characters/tarn/front.svg",
  31351. extra: 3517/3220,
  31352. bottom: 91/3608
  31353. }
  31354. },
  31355. back: {
  31356. height: math.unit(6 + 7/12, "feet"),
  31357. weight: math.unit(210, "lb"),
  31358. name: "Back",
  31359. image: {
  31360. source: "./media/characters/tarn/back.svg",
  31361. extra: 3566/3241,
  31362. bottom: 34/3600
  31363. }
  31364. },
  31365. dick: {
  31366. height: math.unit(1.65, "feet"),
  31367. name: "Dick",
  31368. image: {
  31369. source: "./media/characters/tarn/dick.svg"
  31370. }
  31371. },
  31372. paw: {
  31373. height: math.unit(1.80, "feet"),
  31374. name: "Paw",
  31375. image: {
  31376. source: "./media/characters/tarn/paw.svg"
  31377. }
  31378. },
  31379. tongue: {
  31380. height: math.unit(0.97, "feet"),
  31381. name: "Tongue",
  31382. image: {
  31383. source: "./media/characters/tarn/tongue.svg"
  31384. }
  31385. },
  31386. },
  31387. [
  31388. {
  31389. name: "Micro",
  31390. height: math.unit(4, "inches")
  31391. },
  31392. {
  31393. name: "Normal",
  31394. height: math.unit(6 + 7/12, "feet"),
  31395. default: true
  31396. },
  31397. {
  31398. name: "Macro",
  31399. height: math.unit(300, "feet")
  31400. },
  31401. ]
  31402. ))
  31403. characterMakers.push(() => makeCharacter(
  31404. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31405. {
  31406. front: {
  31407. height: math.unit(5 + 7/12, "feet"),
  31408. weight: math.unit(80, "kg"),
  31409. name: "Front",
  31410. image: {
  31411. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31412. extra: 3023/2865,
  31413. bottom: 33/3056
  31414. }
  31415. },
  31416. back: {
  31417. height: math.unit(5 + 7/12, "feet"),
  31418. weight: math.unit(80, "kg"),
  31419. name: "Back",
  31420. image: {
  31421. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31422. extra: 3020/2886,
  31423. bottom: 30/3050
  31424. }
  31425. },
  31426. dick: {
  31427. height: math.unit(0.98, "feet"),
  31428. name: "Dick",
  31429. image: {
  31430. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31431. }
  31432. },
  31433. anatomy: {
  31434. height: math.unit(2.86, "feet"),
  31435. name: "Anatomy",
  31436. image: {
  31437. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31438. }
  31439. },
  31440. },
  31441. [
  31442. {
  31443. name: "Really Small",
  31444. height: math.unit(2, "inches")
  31445. },
  31446. {
  31447. name: "Micro",
  31448. height: math.unit(5.583, "inches")
  31449. },
  31450. {
  31451. name: "Normal",
  31452. height: math.unit(5 + 7/12, "feet"),
  31453. default: true
  31454. },
  31455. {
  31456. name: "Macro",
  31457. height: math.unit(67, "feet")
  31458. },
  31459. {
  31460. name: "Megamacro",
  31461. height: math.unit(134, "feet")
  31462. },
  31463. ]
  31464. ))
  31465. characterMakers.push(() => makeCharacter(
  31466. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31467. {
  31468. front: {
  31469. height: math.unit(9, "feet"),
  31470. weight: math.unit(120, "lb"),
  31471. name: "Front",
  31472. image: {
  31473. source: "./media/characters/sally/front.svg",
  31474. extra: 1506/1349,
  31475. bottom: 66/1572
  31476. }
  31477. },
  31478. },
  31479. [
  31480. {
  31481. name: "Normal",
  31482. height: math.unit(9, "feet"),
  31483. default: true
  31484. },
  31485. ]
  31486. ))
  31487. characterMakers.push(() => makeCharacter(
  31488. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31489. {
  31490. front: {
  31491. height: math.unit(8, "feet"),
  31492. weight: math.unit(900, "lb"),
  31493. name: "Front",
  31494. image: {
  31495. source: "./media/characters/owen/front.svg",
  31496. extra: 1761/1657,
  31497. bottom: 74/1835
  31498. }
  31499. },
  31500. side: {
  31501. height: math.unit(8, "feet"),
  31502. weight: math.unit(900, "lb"),
  31503. name: "Side",
  31504. image: {
  31505. source: "./media/characters/owen/side.svg",
  31506. extra: 1797/1734,
  31507. bottom: 30/1827
  31508. }
  31509. },
  31510. back: {
  31511. height: math.unit(8, "feet"),
  31512. weight: math.unit(900, "lb"),
  31513. name: "Back",
  31514. image: {
  31515. source: "./media/characters/owen/back.svg",
  31516. extra: 1796/1706,
  31517. bottom: 59/1855
  31518. }
  31519. },
  31520. maw: {
  31521. height: math.unit(1.76, "feet"),
  31522. name: "Maw",
  31523. image: {
  31524. source: "./media/characters/owen/maw.svg"
  31525. }
  31526. },
  31527. },
  31528. [
  31529. {
  31530. name: "Normal",
  31531. height: math.unit(8, "feet"),
  31532. default: true
  31533. },
  31534. ]
  31535. ))
  31536. characterMakers.push(() => makeCharacter(
  31537. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31538. {
  31539. front: {
  31540. height: math.unit(4, "feet"),
  31541. weight: math.unit(400, "lb"),
  31542. name: "Front",
  31543. image: {
  31544. source: "./media/characters/ryth/front.svg",
  31545. extra: 876/691,
  31546. bottom: 25/901
  31547. }
  31548. },
  31549. goia: {
  31550. height: math.unit(12, "feet"),
  31551. weight: math.unit(10800, "lb"),
  31552. name: "Goia",
  31553. image: {
  31554. source: "./media/characters/ryth/goia.svg",
  31555. extra: 3450/3198,
  31556. bottom: 61/3511
  31557. }
  31558. },
  31559. },
  31560. [
  31561. {
  31562. name: "Normal",
  31563. height: math.unit(4, "feet"),
  31564. default: true
  31565. },
  31566. ]
  31567. ))
  31568. characterMakers.push(() => makeCharacter(
  31569. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31570. {
  31571. front: {
  31572. height: math.unit(7, "feet"),
  31573. weight: math.unit(180, "lb"),
  31574. name: "Front",
  31575. image: {
  31576. source: "./media/characters/necrolance/front.svg",
  31577. extra: 1062/947,
  31578. bottom: 41/1103
  31579. }
  31580. },
  31581. back: {
  31582. height: math.unit(7, "feet"),
  31583. weight: math.unit(180, "lb"),
  31584. name: "Back",
  31585. image: {
  31586. source: "./media/characters/necrolance/back.svg",
  31587. extra: 1045/984,
  31588. bottom: 14/1059
  31589. }
  31590. },
  31591. wing: {
  31592. height: math.unit(2.67, "feet"),
  31593. name: "Wing",
  31594. image: {
  31595. source: "./media/characters/necrolance/wing.svg"
  31596. }
  31597. },
  31598. },
  31599. [
  31600. {
  31601. name: "Normal",
  31602. height: math.unit(7, "feet"),
  31603. default: true
  31604. },
  31605. ]
  31606. ))
  31607. characterMakers.push(() => makeCharacter(
  31608. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31609. {
  31610. front: {
  31611. height: math.unit(76, "meters"),
  31612. weight: math.unit(30000, "tons"),
  31613. name: "Front",
  31614. image: {
  31615. source: "./media/characters/tyler/front.svg",
  31616. extra: 1640/1640,
  31617. bottom: 114/1754
  31618. }
  31619. },
  31620. },
  31621. [
  31622. {
  31623. name: "Macro",
  31624. height: math.unit(76, "meters"),
  31625. default: true
  31626. },
  31627. ]
  31628. ))
  31629. characterMakers.push(() => makeCharacter(
  31630. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31631. {
  31632. front: {
  31633. height: math.unit(4 + 11/12, "feet"),
  31634. weight: math.unit(132, "lb"),
  31635. name: "Front",
  31636. image: {
  31637. source: "./media/characters/icey/front.svg",
  31638. extra: 2750/2550,
  31639. bottom: 33/2783
  31640. }
  31641. },
  31642. back: {
  31643. height: math.unit(4 + 11/12, "feet"),
  31644. weight: math.unit(132, "lb"),
  31645. name: "Back",
  31646. image: {
  31647. source: "./media/characters/icey/back.svg",
  31648. extra: 2624/2481,
  31649. bottom: 35/2659
  31650. }
  31651. },
  31652. },
  31653. [
  31654. {
  31655. name: "Normal",
  31656. height: math.unit(4 + 11/12, "feet"),
  31657. default: true
  31658. },
  31659. ]
  31660. ))
  31661. characterMakers.push(() => makeCharacter(
  31662. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31663. {
  31664. front: {
  31665. height: math.unit(100, "feet"),
  31666. weight: math.unit(0, "lb"),
  31667. name: "Front",
  31668. image: {
  31669. source: "./media/characters/smile/front.svg",
  31670. extra: 2983/2912,
  31671. bottom: 162/3145
  31672. }
  31673. },
  31674. back: {
  31675. height: math.unit(100, "feet"),
  31676. weight: math.unit(0, "lb"),
  31677. name: "Back",
  31678. image: {
  31679. source: "./media/characters/smile/back.svg",
  31680. extra: 3143/3031,
  31681. bottom: 91/3234
  31682. }
  31683. },
  31684. head: {
  31685. height: math.unit(26.3, "feet"),
  31686. weight: math.unit(0, "lb"),
  31687. name: "Head",
  31688. image: {
  31689. source: "./media/characters/smile/head.svg"
  31690. }
  31691. },
  31692. collar: {
  31693. height: math.unit(5.3, "feet"),
  31694. weight: math.unit(0, "lb"),
  31695. name: "Collar",
  31696. image: {
  31697. source: "./media/characters/smile/collar.svg"
  31698. }
  31699. },
  31700. },
  31701. [
  31702. {
  31703. name: "Macro",
  31704. height: math.unit(100, "feet"),
  31705. default: true
  31706. },
  31707. ]
  31708. ))
  31709. characterMakers.push(() => makeCharacter(
  31710. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31711. {
  31712. dragon: {
  31713. height: math.unit(26, "feet"),
  31714. weight: math.unit(36, "tons"),
  31715. name: "Dragon",
  31716. image: {
  31717. source: "./media/characters/arimphae/dragon.svg",
  31718. extra: 1574/983,
  31719. bottom: 357/1931
  31720. }
  31721. },
  31722. drake: {
  31723. height: math.unit(9, "feet"),
  31724. weight: math.unit(1.5, "tons"),
  31725. name: "Drake",
  31726. image: {
  31727. source: "./media/characters/arimphae/drake.svg",
  31728. extra: 1120/925,
  31729. bottom: 435/1555
  31730. }
  31731. },
  31732. },
  31733. [
  31734. {
  31735. name: "Small",
  31736. height: math.unit(26*5/9, "feet")
  31737. },
  31738. {
  31739. name: "Normal",
  31740. height: math.unit(26, "feet"),
  31741. default: true
  31742. },
  31743. ]
  31744. ))
  31745. characterMakers.push(() => makeCharacter(
  31746. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31747. {
  31748. front: {
  31749. height: math.unit(8 + 9/12, "feet"),
  31750. name: "Front",
  31751. image: {
  31752. source: "./media/characters/xander/front.svg",
  31753. extra: 848/673,
  31754. bottom: 62/910
  31755. }
  31756. },
  31757. },
  31758. [
  31759. {
  31760. name: "Normal",
  31761. height: math.unit(8 + 9/12, "feet"),
  31762. default: true
  31763. },
  31764. {
  31765. name: "Gaze Grabber",
  31766. height: math.unit(13 + 8/12, "feet")
  31767. },
  31768. {
  31769. name: "Jaw Dropper",
  31770. height: math.unit(27, "feet")
  31771. },
  31772. {
  31773. name: "Show Stopper",
  31774. height: math.unit(136, "feet")
  31775. },
  31776. {
  31777. name: "Superstar",
  31778. height: math.unit(1.9e6, "miles")
  31779. },
  31780. ]
  31781. ))
  31782. characterMakers.push(() => makeCharacter(
  31783. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31784. {
  31785. side: {
  31786. height: math.unit(2100, "feet"),
  31787. name: "Side",
  31788. image: {
  31789. source: "./media/characters/osiris/side.svg",
  31790. extra: 1105/939,
  31791. bottom: 167/1272
  31792. }
  31793. },
  31794. },
  31795. [
  31796. {
  31797. name: "Macro",
  31798. height: math.unit(2100, "feet"),
  31799. default: true
  31800. },
  31801. ]
  31802. ))
  31803. characterMakers.push(() => makeCharacter(
  31804. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31805. {
  31806. front: {
  31807. height: math.unit(6 + 8/12, "feet"),
  31808. weight: math.unit(225, "lb"),
  31809. name: "Front",
  31810. image: {
  31811. source: "./media/characters/rhys-londe/front.svg",
  31812. extra: 2258/2141,
  31813. bottom: 188/2446
  31814. }
  31815. },
  31816. back: {
  31817. height: math.unit(6 + 8/12, "feet"),
  31818. weight: math.unit(225, "lb"),
  31819. name: "Back",
  31820. image: {
  31821. source: "./media/characters/rhys-londe/back.svg",
  31822. extra: 2237/2137,
  31823. bottom: 63/2300
  31824. }
  31825. },
  31826. frontNsfw: {
  31827. height: math.unit(6 + 8/12, "feet"),
  31828. weight: math.unit(225, "lb"),
  31829. name: "Front (NSFW)",
  31830. image: {
  31831. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31832. extra: 2258/2141,
  31833. bottom: 188/2446
  31834. }
  31835. },
  31836. backNsfw: {
  31837. height: math.unit(6 + 8/12, "feet"),
  31838. weight: math.unit(225, "lb"),
  31839. name: "Back (NSFW)",
  31840. image: {
  31841. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31842. extra: 2237/2137,
  31843. bottom: 63/2300
  31844. }
  31845. },
  31846. dick: {
  31847. height: math.unit(30, "inches"),
  31848. name: "Dick",
  31849. image: {
  31850. source: "./media/characters/rhys-londe/dick.svg"
  31851. }
  31852. },
  31853. maw: {
  31854. height: math.unit(1.6, "feet"),
  31855. name: "Maw",
  31856. image: {
  31857. source: "./media/characters/rhys-londe/maw.svg"
  31858. }
  31859. },
  31860. },
  31861. [
  31862. {
  31863. name: "Normal",
  31864. height: math.unit(6 + 8/12, "feet"),
  31865. default: true
  31866. },
  31867. ]
  31868. ))
  31869. characterMakers.push(() => makeCharacter(
  31870. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31871. {
  31872. front: {
  31873. height: math.unit(3 + 10/12, "feet"),
  31874. weight: math.unit(90, "lb"),
  31875. name: "Front",
  31876. image: {
  31877. source: "./media/characters/taivas-ensim/front.svg",
  31878. extra: 1327/1216,
  31879. bottom: 96/1423
  31880. }
  31881. },
  31882. back: {
  31883. height: math.unit(3 + 10/12, "feet"),
  31884. weight: math.unit(90, "lb"),
  31885. name: "Back",
  31886. image: {
  31887. source: "./media/characters/taivas-ensim/back.svg",
  31888. extra: 1355/1247,
  31889. bottom: 11/1366
  31890. }
  31891. },
  31892. frontNsfw: {
  31893. height: math.unit(3 + 10/12, "feet"),
  31894. weight: math.unit(90, "lb"),
  31895. name: "Front (NSFW)",
  31896. image: {
  31897. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31898. extra: 1327/1216,
  31899. bottom: 96/1423
  31900. }
  31901. },
  31902. backNsfw: {
  31903. height: math.unit(3 + 10/12, "feet"),
  31904. weight: math.unit(90, "lb"),
  31905. name: "Back (NSFW)",
  31906. image: {
  31907. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31908. extra: 1355/1247,
  31909. bottom: 11/1366
  31910. }
  31911. },
  31912. },
  31913. [
  31914. {
  31915. name: "Normal",
  31916. height: math.unit(3 + 10/12, "feet"),
  31917. default: true
  31918. },
  31919. ]
  31920. ))
  31921. characterMakers.push(() => makeCharacter(
  31922. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31923. {
  31924. front: {
  31925. height: math.unit(9 + 6/12, "feet"),
  31926. weight: math.unit(940, "lb"),
  31927. name: "Front",
  31928. image: {
  31929. source: "./media/characters/byliss/front.svg",
  31930. extra: 1327/1290,
  31931. bottom: 82/1409
  31932. }
  31933. },
  31934. back: {
  31935. height: math.unit(9 + 6/12, "feet"),
  31936. weight: math.unit(940, "lb"),
  31937. name: "Back",
  31938. image: {
  31939. source: "./media/characters/byliss/back.svg",
  31940. extra: 1376/1349,
  31941. bottom: 9/1385
  31942. }
  31943. },
  31944. frontNsfw: {
  31945. height: math.unit(9 + 6/12, "feet"),
  31946. weight: math.unit(940, "lb"),
  31947. name: "Front (NSFW)",
  31948. image: {
  31949. source: "./media/characters/byliss/front-nsfw.svg",
  31950. extra: 1327/1290,
  31951. bottom: 82/1409
  31952. }
  31953. },
  31954. backNsfw: {
  31955. height: math.unit(9 + 6/12, "feet"),
  31956. weight: math.unit(940, "lb"),
  31957. name: "Back (NSFW)",
  31958. image: {
  31959. source: "./media/characters/byliss/back-nsfw.svg",
  31960. extra: 1376/1349,
  31961. bottom: 9/1385
  31962. }
  31963. },
  31964. },
  31965. [
  31966. {
  31967. name: "Normal",
  31968. height: math.unit(9 + 6/12, "feet"),
  31969. default: true
  31970. },
  31971. ]
  31972. ))
  31973. characterMakers.push(() => makeCharacter(
  31974. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31975. {
  31976. front: {
  31977. height: math.unit(5 + 2/12, "feet"),
  31978. weight: math.unit(200, "lb"),
  31979. name: "Front",
  31980. image: {
  31981. source: "./media/characters/noraly/front.svg",
  31982. extra: 4985/4773,
  31983. bottom: 150/5135
  31984. }
  31985. },
  31986. full: {
  31987. height: math.unit(5 + 2/12, "feet"),
  31988. weight: math.unit(164, "lb"),
  31989. name: "Full",
  31990. image: {
  31991. source: "./media/characters/noraly/full.svg",
  31992. extra: 1114/1059,
  31993. bottom: 35/1149
  31994. }
  31995. },
  31996. fuller: {
  31997. height: math.unit(5 + 2/12, "feet"),
  31998. weight: math.unit(230, "lb"),
  31999. name: "Fuller",
  32000. image: {
  32001. source: "./media/characters/noraly/fuller.svg",
  32002. extra: 1114/1059,
  32003. bottom: 35/1149
  32004. }
  32005. },
  32006. fullest: {
  32007. height: math.unit(5 + 2/12, "feet"),
  32008. weight: math.unit(300, "lb"),
  32009. name: "Fullest",
  32010. image: {
  32011. source: "./media/characters/noraly/fullest.svg",
  32012. extra: 1114/1059,
  32013. bottom: 35/1149
  32014. }
  32015. },
  32016. },
  32017. [
  32018. {
  32019. name: "Normal",
  32020. height: math.unit(5 + 2/12, "feet"),
  32021. default: true
  32022. },
  32023. ]
  32024. ))
  32025. characterMakers.push(() => makeCharacter(
  32026. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32027. {
  32028. front: {
  32029. height: math.unit(5 + 2/12, "feet"),
  32030. weight: math.unit(210, "lb"),
  32031. name: "Front",
  32032. image: {
  32033. source: "./media/characters/pera/front.svg",
  32034. extra: 1560/1531,
  32035. bottom: 165/1725
  32036. }
  32037. },
  32038. back: {
  32039. height: math.unit(5 + 2/12, "feet"),
  32040. weight: math.unit(210, "lb"),
  32041. name: "Back",
  32042. image: {
  32043. source: "./media/characters/pera/back.svg",
  32044. extra: 1523/1493,
  32045. bottom: 152/1675
  32046. }
  32047. },
  32048. dick: {
  32049. height: math.unit(2.4, "feet"),
  32050. name: "Dick",
  32051. image: {
  32052. source: "./media/characters/pera/dick.svg"
  32053. }
  32054. },
  32055. },
  32056. [
  32057. {
  32058. name: "Normal",
  32059. height: math.unit(5 + 2/12, "feet"),
  32060. default: true
  32061. },
  32062. ]
  32063. ))
  32064. characterMakers.push(() => makeCharacter(
  32065. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32066. {
  32067. front: {
  32068. height: math.unit(12, "feet"),
  32069. weight: math.unit(3200, "lb"),
  32070. name: "Front",
  32071. image: {
  32072. source: "./media/characters/julian/front.svg",
  32073. extra: 2962/2701,
  32074. bottom: 184/3146
  32075. }
  32076. },
  32077. maw: {
  32078. height: math.unit(5.35, "feet"),
  32079. name: "Maw",
  32080. image: {
  32081. source: "./media/characters/julian/maw.svg"
  32082. }
  32083. },
  32084. paw: {
  32085. height: math.unit(3.07, "feet"),
  32086. name: "Paw",
  32087. image: {
  32088. source: "./media/characters/julian/paw.svg"
  32089. }
  32090. },
  32091. },
  32092. [
  32093. {
  32094. name: "Default",
  32095. height: math.unit(12, "feet"),
  32096. default: true
  32097. },
  32098. {
  32099. name: "Big",
  32100. height: math.unit(50, "feet")
  32101. },
  32102. {
  32103. name: "Really Big",
  32104. height: math.unit(1, "mile")
  32105. },
  32106. {
  32107. name: "Extremely Big",
  32108. height: math.unit(100, "miles")
  32109. },
  32110. {
  32111. name: "Planet Hugger",
  32112. height: math.unit(200, "megameters")
  32113. },
  32114. {
  32115. name: "Unreasonably Big",
  32116. height: math.unit(1e300, "meters")
  32117. },
  32118. ]
  32119. ))
  32120. characterMakers.push(() => makeCharacter(
  32121. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32122. {
  32123. solgooleo: {
  32124. height: math.unit(4, "meters"),
  32125. weight: math.unit(6000*1.5, "kg"),
  32126. volume: math.unit(6000, "liters"),
  32127. name: "Solgooleo",
  32128. image: {
  32129. source: "./media/characters/pi/solgooleo.svg",
  32130. extra: 388/331,
  32131. bottom: 29/417
  32132. }
  32133. },
  32134. },
  32135. [
  32136. {
  32137. name: "Normal",
  32138. height: math.unit(4, "meters"),
  32139. default: true
  32140. },
  32141. ]
  32142. ))
  32143. characterMakers.push(() => makeCharacter(
  32144. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32145. {
  32146. front: {
  32147. height: math.unit(8 + 2/12, "feet"),
  32148. weight: math.unit(4, "tons"),
  32149. name: "Front",
  32150. image: {
  32151. source: "./media/characters/shaun/front.svg",
  32152. extra: 1550/1505,
  32153. bottom: 353/1903
  32154. }
  32155. },
  32156. },
  32157. [
  32158. {
  32159. name: "Lorg",
  32160. height: math.unit(8 + 2/12, "feet"),
  32161. default: true
  32162. },
  32163. ]
  32164. ))
  32165. characterMakers.push(() => makeCharacter(
  32166. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32167. {
  32168. front: {
  32169. height: math.unit(7, "feet"),
  32170. name: "Front",
  32171. image: {
  32172. source: "./media/characters/sini/front.svg",
  32173. extra: 726/678,
  32174. bottom: 35/761
  32175. }
  32176. },
  32177. back: {
  32178. height: math.unit(7, "feet"),
  32179. name: "Back",
  32180. image: {
  32181. source: "./media/characters/sini/back.svg",
  32182. extra: 743/701,
  32183. bottom: 12/755
  32184. }
  32185. },
  32186. mawAnthro: {
  32187. height: math.unit(2.14, "feet"),
  32188. name: "Maw (Anthro)",
  32189. image: {
  32190. source: "./media/characters/sini/maw-anthro.svg"
  32191. }
  32192. },
  32193. dick: {
  32194. height: math.unit(1.45, "feet"),
  32195. name: "Dick (Anthro)",
  32196. image: {
  32197. source: "./media/characters/sini/dick-anthro.svg"
  32198. }
  32199. },
  32200. feral: {
  32201. height: math.unit(13, "feet"),
  32202. name: "Feral",
  32203. image: {
  32204. source: "./media/characters/sini/feral.svg",
  32205. extra: 814/605,
  32206. bottom: 11/825
  32207. }
  32208. },
  32209. mawFeral: {
  32210. height: math.unit(4.6, "feet"),
  32211. name: "Maw-feral",
  32212. image: {
  32213. source: "./media/characters/sini/maw-feral.svg"
  32214. }
  32215. },
  32216. footFeral: {
  32217. height: math.unit(4.2, "feet"),
  32218. name: "Foot-feral",
  32219. image: {
  32220. source: "./media/characters/sini/foot-feral.svg"
  32221. }
  32222. },
  32223. },
  32224. [
  32225. {
  32226. name: "Normal",
  32227. height: math.unit(7, "feet"),
  32228. default: true
  32229. },
  32230. ]
  32231. ))
  32232. characterMakers.push(() => makeCharacter(
  32233. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32234. {
  32235. side: {
  32236. height: math.unit(13, "meters"),
  32237. weight: math.unit(9072, "kg"),
  32238. name: "Side",
  32239. image: {
  32240. source: "./media/characters/raylldo/side.svg",
  32241. extra: 403/344,
  32242. bottom: 42/445
  32243. }
  32244. },
  32245. leaping: {
  32246. height: math.unit(12.3, "meters"),
  32247. weight: math.unit(9072, "kg"),
  32248. name: "Leaping",
  32249. image: {
  32250. source: "./media/characters/raylldo/leaping.svg",
  32251. extra: 470/249,
  32252. bottom: 13/483
  32253. }
  32254. },
  32255. flying: {
  32256. height: math.unit(18, "meters"),
  32257. weight: math.unit(9072, "kg"),
  32258. name: "Flying",
  32259. image: {
  32260. source: "./media/characters/raylldo/flying.svg"
  32261. }
  32262. },
  32263. head: {
  32264. height: math.unit(5.85, "meters"),
  32265. name: "Head",
  32266. image: {
  32267. source: "./media/characters/raylldo/head.svg"
  32268. }
  32269. },
  32270. maw: {
  32271. height: math.unit(5.32, "meters"),
  32272. name: "Maw",
  32273. image: {
  32274. source: "./media/characters/raylldo/maw.svg"
  32275. }
  32276. },
  32277. eye: {
  32278. height: math.unit(0.54, "meters"),
  32279. name: "Eye",
  32280. image: {
  32281. source: "./media/characters/raylldo/eye.svg"
  32282. }
  32283. },
  32284. },
  32285. [
  32286. {
  32287. name: "Normal",
  32288. height: math.unit(13, "meters"),
  32289. default: true
  32290. },
  32291. ]
  32292. ))
  32293. characterMakers.push(() => makeCharacter(
  32294. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32295. {
  32296. anthroFront: {
  32297. height: math.unit(9, "feet"),
  32298. weight: math.unit(600, "lb"),
  32299. name: "Anthro (Front)",
  32300. image: {
  32301. source: "./media/characters/glint/anthro-front.svg",
  32302. extra: 1097/1018,
  32303. bottom: 28/1125
  32304. }
  32305. },
  32306. anthroBack: {
  32307. height: math.unit(9, "feet"),
  32308. weight: math.unit(600, "lb"),
  32309. name: "Anthro (Back)",
  32310. image: {
  32311. source: "./media/characters/glint/anthro-back.svg",
  32312. extra: 1154/997,
  32313. bottom: 36/1190
  32314. }
  32315. },
  32316. feral: {
  32317. height: math.unit(11, "feet"),
  32318. weight: math.unit(50000, "lb"),
  32319. name: "Feral",
  32320. image: {
  32321. source: "./media/characters/glint/feral.svg",
  32322. extra: 3035/1585,
  32323. bottom: 1169/4204
  32324. }
  32325. },
  32326. dickAnthro: {
  32327. height: math.unit(0.7, "meters"),
  32328. name: "Dick (Anthro)",
  32329. image: {
  32330. source: "./media/characters/glint/dick-anthro.svg"
  32331. }
  32332. },
  32333. dickFeral: {
  32334. height: math.unit(2.65, "meters"),
  32335. name: "Dick (Feral)",
  32336. image: {
  32337. source: "./media/characters/glint/dick-feral.svg"
  32338. }
  32339. },
  32340. slitHidden: {
  32341. height: math.unit(5.85, "meters"),
  32342. name: "Slit (Hidden)",
  32343. image: {
  32344. source: "./media/characters/glint/slit-hidden.svg"
  32345. }
  32346. },
  32347. slitErect: {
  32348. height: math.unit(5.85, "meters"),
  32349. name: "Slit (Erect)",
  32350. image: {
  32351. source: "./media/characters/glint/slit-erect.svg"
  32352. }
  32353. },
  32354. mawAnthro: {
  32355. height: math.unit(0.63, "meters"),
  32356. name: "Maw (Anthro)",
  32357. image: {
  32358. source: "./media/characters/glint/maw.svg"
  32359. }
  32360. },
  32361. mawFeral: {
  32362. height: math.unit(2.89, "meters"),
  32363. name: "Maw (Feral)",
  32364. image: {
  32365. source: "./media/characters/glint/maw.svg"
  32366. }
  32367. },
  32368. },
  32369. [
  32370. {
  32371. name: "Normal",
  32372. height: math.unit(9, "feet"),
  32373. default: true
  32374. },
  32375. ]
  32376. ))
  32377. characterMakers.push(() => makeCharacter(
  32378. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32379. {
  32380. side: {
  32381. height: math.unit(15, "feet"),
  32382. weight: math.unit(5000, "kg"),
  32383. name: "Side",
  32384. image: {
  32385. source: "./media/characters/kairne/side.svg",
  32386. extra: 979/811,
  32387. bottom: 13/992
  32388. }
  32389. },
  32390. front: {
  32391. height: math.unit(15, "feet"),
  32392. weight: math.unit(5000, "kg"),
  32393. name: "Front",
  32394. image: {
  32395. source: "./media/characters/kairne/front.svg",
  32396. extra: 908/814,
  32397. bottom: 26/934
  32398. }
  32399. },
  32400. sideNsfw: {
  32401. height: math.unit(15, "feet"),
  32402. weight: math.unit(5000, "kg"),
  32403. name: "Side (NSFW)",
  32404. image: {
  32405. source: "./media/characters/kairne/side-nsfw.svg",
  32406. extra: 979/811,
  32407. bottom: 13/992
  32408. }
  32409. },
  32410. frontNsfw: {
  32411. height: math.unit(15, "feet"),
  32412. weight: math.unit(5000, "kg"),
  32413. name: "Front (NSFW)",
  32414. image: {
  32415. source: "./media/characters/kairne/front-nsfw.svg",
  32416. extra: 908/814,
  32417. bottom: 26/934
  32418. }
  32419. },
  32420. dickCaged: {
  32421. height: math.unit(0.65, "meters"),
  32422. name: "Dick-caged",
  32423. image: {
  32424. source: "./media/characters/kairne/dick-caged.svg"
  32425. }
  32426. },
  32427. dick: {
  32428. height: math.unit(0.79, "meters"),
  32429. name: "Dick",
  32430. image: {
  32431. source: "./media/characters/kairne/dick.svg"
  32432. }
  32433. },
  32434. genitals: {
  32435. height: math.unit(1.29, "meters"),
  32436. name: "Genitals",
  32437. image: {
  32438. source: "./media/characters/kairne/genitals.svg"
  32439. }
  32440. },
  32441. maw: {
  32442. height: math.unit(1.73, "meters"),
  32443. name: "Maw",
  32444. image: {
  32445. source: "./media/characters/kairne/maw.svg"
  32446. }
  32447. },
  32448. },
  32449. [
  32450. {
  32451. name: "Normal",
  32452. height: math.unit(15, "feet"),
  32453. default: true
  32454. },
  32455. ]
  32456. ))
  32457. characterMakers.push(() => makeCharacter(
  32458. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32459. {
  32460. front: {
  32461. height: math.unit(5 + 8/12, "feet"),
  32462. weight: math.unit(139, "lb"),
  32463. name: "Front",
  32464. image: {
  32465. source: "./media/characters/biscuit-jackal/front.svg",
  32466. extra: 2106/1961,
  32467. bottom: 58/2164
  32468. }
  32469. },
  32470. back: {
  32471. height: math.unit(5 + 8/12, "feet"),
  32472. weight: math.unit(139, "lb"),
  32473. name: "Back",
  32474. image: {
  32475. source: "./media/characters/biscuit-jackal/back.svg",
  32476. extra: 2132/1976,
  32477. bottom: 57/2189
  32478. }
  32479. },
  32480. werejackal: {
  32481. height: math.unit(6 + 3/12, "feet"),
  32482. weight: math.unit(188, "lb"),
  32483. name: "Werejackal",
  32484. image: {
  32485. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32486. extra: 2373/2178,
  32487. bottom: 53/2426
  32488. }
  32489. },
  32490. },
  32491. [
  32492. {
  32493. name: "Normal",
  32494. height: math.unit(5 + 8/12, "feet"),
  32495. default: true
  32496. },
  32497. ]
  32498. ))
  32499. characterMakers.push(() => makeCharacter(
  32500. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32501. {
  32502. front: {
  32503. height: math.unit(140, "cm"),
  32504. weight: math.unit(45, "kg"),
  32505. name: "Front",
  32506. image: {
  32507. source: "./media/characters/tayra-white/front.svg",
  32508. extra: 2229/2192,
  32509. bottom: 75/2304
  32510. }
  32511. },
  32512. },
  32513. [
  32514. {
  32515. name: "Normal",
  32516. height: math.unit(140, "cm"),
  32517. default: true
  32518. },
  32519. ]
  32520. ))
  32521. characterMakers.push(() => makeCharacter(
  32522. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32523. {
  32524. front: {
  32525. height: math.unit(4 + 5/12, "feet"),
  32526. name: "Front",
  32527. image: {
  32528. source: "./media/characters/scoop/front.svg",
  32529. extra: 1257/1136,
  32530. bottom: 69/1326
  32531. }
  32532. },
  32533. back: {
  32534. height: math.unit(4 + 5/12, "feet"),
  32535. name: "Back",
  32536. image: {
  32537. source: "./media/characters/scoop/back.svg",
  32538. extra: 1321/1152,
  32539. bottom: 32/1353
  32540. }
  32541. },
  32542. maw: {
  32543. height: math.unit(0.68, "feet"),
  32544. name: "Maw",
  32545. image: {
  32546. source: "./media/characters/scoop/maw.svg"
  32547. }
  32548. },
  32549. },
  32550. [
  32551. {
  32552. name: "Really Small",
  32553. height: math.unit(1, "mm")
  32554. },
  32555. {
  32556. name: "Micro",
  32557. height: math.unit(1, "inch")
  32558. },
  32559. {
  32560. name: "Normal",
  32561. height: math.unit(4 + 5/12, "feet"),
  32562. default: true
  32563. },
  32564. {
  32565. name: "Macro",
  32566. height: math.unit(200, "feet")
  32567. },
  32568. {
  32569. name: "Megamacro",
  32570. height: math.unit(3240, "feet")
  32571. },
  32572. {
  32573. name: "Teramacro",
  32574. height: math.unit(2500, "miles")
  32575. },
  32576. ]
  32577. ))
  32578. characterMakers.push(() => makeCharacter(
  32579. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32580. {
  32581. front: {
  32582. height: math.unit(15 + 7/12, "feet"),
  32583. name: "Front",
  32584. image: {
  32585. source: "./media/characters/saphinara/front.svg",
  32586. extra: 604/546,
  32587. bottom: 19/623
  32588. }
  32589. },
  32590. side: {
  32591. height: math.unit(15 + 7/12, "feet"),
  32592. name: "Side",
  32593. image: {
  32594. source: "./media/characters/saphinara/side.svg",
  32595. extra: 605/547,
  32596. bottom: 6/611
  32597. }
  32598. },
  32599. back: {
  32600. height: math.unit(15 + 7/12, "feet"),
  32601. name: "Back",
  32602. image: {
  32603. source: "./media/characters/saphinara/back.svg",
  32604. extra: 591/531,
  32605. bottom: 13/604
  32606. }
  32607. },
  32608. frontTail: {
  32609. height: math.unit(15 + 7/12, "feet"),
  32610. name: "Front (Full Tail)",
  32611. image: {
  32612. source: "./media/characters/saphinara/front-tail.svg",
  32613. extra: 748/547,
  32614. bottom: 66/814
  32615. }
  32616. },
  32617. },
  32618. [
  32619. {
  32620. name: "Normal",
  32621. height: math.unit(15 + 7/12, "feet"),
  32622. default: true
  32623. },
  32624. {
  32625. name: "Angry",
  32626. height: math.unit(30 + 6/12, "feet")
  32627. },
  32628. {
  32629. name: "Enraged",
  32630. height: math.unit(102 + 1/12, "feet")
  32631. },
  32632. ]
  32633. ))
  32634. characterMakers.push(() => makeCharacter(
  32635. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32636. {
  32637. front: {
  32638. height: math.unit(6 + 8/12, "feet"),
  32639. weight: math.unit(300, "lb"),
  32640. name: "Front",
  32641. image: {
  32642. source: "./media/characters/jrain/front.svg",
  32643. extra: 3039/2865,
  32644. bottom: 399/3438
  32645. }
  32646. },
  32647. back: {
  32648. height: math.unit(6 + 8/12, "feet"),
  32649. weight: math.unit(300, "lb"),
  32650. name: "Back",
  32651. image: {
  32652. source: "./media/characters/jrain/back.svg",
  32653. extra: 3089/2938,
  32654. bottom: 172/3261
  32655. }
  32656. },
  32657. head: {
  32658. height: math.unit(2.14, "feet"),
  32659. name: "Head",
  32660. image: {
  32661. source: "./media/characters/jrain/head.svg"
  32662. }
  32663. },
  32664. maw: {
  32665. height: math.unit(1.77, "feet"),
  32666. name: "Maw",
  32667. image: {
  32668. source: "./media/characters/jrain/maw.svg"
  32669. }
  32670. },
  32671. leftHand: {
  32672. height: math.unit(1.1, "feet"),
  32673. name: "Left Hand",
  32674. image: {
  32675. source: "./media/characters/jrain/left-hand.svg"
  32676. }
  32677. },
  32678. rightHand: {
  32679. height: math.unit(1.1, "feet"),
  32680. name: "Right Hand",
  32681. image: {
  32682. source: "./media/characters/jrain/right-hand.svg"
  32683. }
  32684. },
  32685. eye: {
  32686. height: math.unit(0.35, "feet"),
  32687. name: "Eye",
  32688. image: {
  32689. source: "./media/characters/jrain/eye.svg"
  32690. }
  32691. },
  32692. },
  32693. [
  32694. {
  32695. name: "Normal",
  32696. height: math.unit(6 + 8/12, "feet"),
  32697. default: true
  32698. },
  32699. {
  32700. name: "Casually Large",
  32701. height: math.unit(25, "feet")
  32702. },
  32703. {
  32704. name: "Giant",
  32705. height: math.unit(100, "feet")
  32706. },
  32707. {
  32708. name: "Kaiju",
  32709. height: math.unit(300, "feet")
  32710. },
  32711. ]
  32712. ))
  32713. characterMakers.push(() => makeCharacter(
  32714. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32715. {
  32716. dragon: {
  32717. height: math.unit(5, "meters"),
  32718. name: "Dragon",
  32719. image: {
  32720. source: "./media/characters/sabrina/dragon.svg",
  32721. extra: 3670 / 2365,
  32722. bottom: 333 / 4003
  32723. }
  32724. },
  32725. gryphon: {
  32726. height: math.unit(3, "meters"),
  32727. name: "Gryphon",
  32728. image: {
  32729. source: "./media/characters/sabrina/gryphon.svg",
  32730. extra: 1576 / 945,
  32731. bottom: 71 / 1647
  32732. }
  32733. },
  32734. snake: {
  32735. height: math.unit(12, "meters"),
  32736. name: "Snake",
  32737. image: {
  32738. source: "./media/characters/sabrina/snake.svg",
  32739. extra: 1758 / 1320,
  32740. bottom: 186 / 1944
  32741. }
  32742. },
  32743. collar: {
  32744. height: math.unit(1.86, "meters"),
  32745. name: "Collar",
  32746. image: {
  32747. source: "./media/characters/sabrina/collar.svg"
  32748. }
  32749. },
  32750. eye: {
  32751. height: math.unit(0.53, "meters"),
  32752. name: "Eye",
  32753. image: {
  32754. source: "./media/characters/sabrina/eye.svg"
  32755. }
  32756. },
  32757. foot: {
  32758. height: math.unit(1.86, "meters"),
  32759. name: "Foot",
  32760. image: {
  32761. source: "./media/characters/sabrina/foot.svg"
  32762. }
  32763. },
  32764. hand: {
  32765. height: math.unit(1.32, "meters"),
  32766. name: "Hand",
  32767. image: {
  32768. source: "./media/characters/sabrina/hand.svg"
  32769. }
  32770. },
  32771. head: {
  32772. height: math.unit(2.44, "meters"),
  32773. name: "Head",
  32774. image: {
  32775. source: "./media/characters/sabrina/head.svg"
  32776. }
  32777. },
  32778. headAngry: {
  32779. height: math.unit(2.44, "meters"),
  32780. name: "Head (Angry))",
  32781. image: {
  32782. source: "./media/characters/sabrina/head-angry.svg"
  32783. }
  32784. },
  32785. maw: {
  32786. height: math.unit(1.65, "meters"),
  32787. name: "Maw",
  32788. image: {
  32789. source: "./media/characters/sabrina/maw.svg"
  32790. }
  32791. },
  32792. spikes: {
  32793. height: math.unit(1.69, "meters"),
  32794. name: "Spikes",
  32795. image: {
  32796. source: "./media/characters/sabrina/spikes.svg"
  32797. }
  32798. },
  32799. stomach: {
  32800. height: math.unit(1.15, "meters"),
  32801. name: "Stomach",
  32802. image: {
  32803. source: "./media/characters/sabrina/stomach.svg"
  32804. }
  32805. },
  32806. tongue: {
  32807. height: math.unit(1.27, "meters"),
  32808. name: "Tongue",
  32809. image: {
  32810. source: "./media/characters/sabrina/tongue.svg"
  32811. }
  32812. },
  32813. wingDorsal: {
  32814. height: math.unit(4.85, "meters"),
  32815. name: "Wing (Dorsal)",
  32816. image: {
  32817. source: "./media/characters/sabrina/wing-dorsal.svg"
  32818. }
  32819. },
  32820. wingVentral: {
  32821. height: math.unit(4.85, "meters"),
  32822. name: "Wing (Ventral)",
  32823. image: {
  32824. source: "./media/characters/sabrina/wing-ventral.svg"
  32825. }
  32826. },
  32827. },
  32828. [
  32829. {
  32830. name: "Normal",
  32831. height: math.unit(5, "meters"),
  32832. default: true
  32833. },
  32834. ]
  32835. ))
  32836. characterMakers.push(() => makeCharacter(
  32837. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32838. {
  32839. frontMaid: {
  32840. height: math.unit(5 + 5/12, "feet"),
  32841. weight: math.unit(130, "lb"),
  32842. name: "Front (Maid)",
  32843. image: {
  32844. source: "./media/characters/midnight-tales/front-maid.svg",
  32845. extra: 489/454,
  32846. bottom: 61/550
  32847. }
  32848. },
  32849. frontFormal: {
  32850. height: math.unit(5 + 5/12, "feet"),
  32851. weight: math.unit(130, "lb"),
  32852. name: "Front (Formal)",
  32853. image: {
  32854. source: "./media/characters/midnight-tales/front-formal.svg",
  32855. extra: 489/454,
  32856. bottom: 61/550
  32857. }
  32858. },
  32859. back: {
  32860. height: math.unit(5 + 5/12, "feet"),
  32861. weight: math.unit(130, "lb"),
  32862. name: "Back",
  32863. image: {
  32864. source: "./media/characters/midnight-tales/back.svg",
  32865. extra: 498/456,
  32866. bottom: 33/531
  32867. }
  32868. },
  32869. frontBeast: {
  32870. height: math.unit(40, "feet"),
  32871. weight: math.unit(64000, "lb"),
  32872. name: "Front (Beast)",
  32873. image: {
  32874. source: "./media/characters/midnight-tales/front-beast.svg",
  32875. extra: 927/860,
  32876. bottom: 53/980
  32877. }
  32878. },
  32879. backBeast: {
  32880. height: math.unit(40, "feet"),
  32881. weight: math.unit(64000, "lb"),
  32882. name: "Back (Beast)",
  32883. image: {
  32884. source: "./media/characters/midnight-tales/back-beast.svg",
  32885. extra: 929/855,
  32886. bottom: 16/945
  32887. }
  32888. },
  32889. footBeast: {
  32890. height: math.unit(6.7, "feet"),
  32891. name: "Foot (Beast)",
  32892. image: {
  32893. source: "./media/characters/midnight-tales/foot-beast.svg"
  32894. }
  32895. },
  32896. headBeast: {
  32897. height: math.unit(8, "feet"),
  32898. name: "Head (Beast)",
  32899. image: {
  32900. source: "./media/characters/midnight-tales/head-beast.svg"
  32901. }
  32902. },
  32903. },
  32904. [
  32905. {
  32906. name: "Normal",
  32907. height: math.unit(5 + 5 / 12, "feet"),
  32908. default: true
  32909. },
  32910. {
  32911. name: "Macro",
  32912. height: math.unit(25, "feet")
  32913. },
  32914. ]
  32915. ))
  32916. characterMakers.push(() => makeCharacter(
  32917. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32918. {
  32919. front: {
  32920. height: math.unit(5 + 10/12, "feet"),
  32921. name: "Front",
  32922. image: {
  32923. source: "./media/characters/argon/front.svg",
  32924. extra: 2009/1935,
  32925. bottom: 118/2127
  32926. }
  32927. },
  32928. back: {
  32929. height: math.unit(5 + 10/12, "feet"),
  32930. name: "Back",
  32931. image: {
  32932. source: "./media/characters/argon/back.svg",
  32933. extra: 2047/1992,
  32934. bottom: 20/2067
  32935. }
  32936. },
  32937. frontDressed: {
  32938. height: math.unit(5 + 10/12, "feet"),
  32939. name: "Front (Dressed)",
  32940. image: {
  32941. source: "./media/characters/argon/front-dressed.svg",
  32942. extra: 2009/1935,
  32943. bottom: 118/2127
  32944. }
  32945. },
  32946. },
  32947. [
  32948. {
  32949. name: "Normal",
  32950. height: math.unit(5 + 10/12, "feet"),
  32951. default: true
  32952. },
  32953. ]
  32954. ))
  32955. characterMakers.push(() => makeCharacter(
  32956. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32957. {
  32958. front: {
  32959. height: math.unit(8 + 6/12, "feet"),
  32960. weight: math.unit(1150, "lb"),
  32961. name: "Front",
  32962. image: {
  32963. source: "./media/characters/kichi/front.svg",
  32964. extra: 1267/1164,
  32965. bottom: 61/1328
  32966. }
  32967. },
  32968. back: {
  32969. height: math.unit(8 + 6/12, "feet"),
  32970. weight: math.unit(1150, "lb"),
  32971. name: "Back",
  32972. image: {
  32973. source: "./media/characters/kichi/back.svg",
  32974. extra: 1273/1166,
  32975. bottom: 33/1306
  32976. }
  32977. },
  32978. },
  32979. [
  32980. {
  32981. name: "Normal",
  32982. height: math.unit(8 + 6/12, "feet"),
  32983. default: true
  32984. },
  32985. ]
  32986. ))
  32987. characterMakers.push(() => makeCharacter(
  32988. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32989. {
  32990. front: {
  32991. height: math.unit(6, "feet"),
  32992. weight: math.unit(210, "lb"),
  32993. name: "Front",
  32994. image: {
  32995. source: "./media/characters/manetel-greyscale/front.svg",
  32996. extra: 350/312,
  32997. bottom: 8/358
  32998. }
  32999. },
  33000. },
  33001. [
  33002. {
  33003. name: "Micro",
  33004. height: math.unit(2, "inches")
  33005. },
  33006. {
  33007. name: "Normal",
  33008. height: math.unit(6, "feet"),
  33009. default: true
  33010. },
  33011. {
  33012. name: "Minimacro",
  33013. height: math.unit(17, "feet")
  33014. },
  33015. {
  33016. name: "Macro",
  33017. height: math.unit(117, "feet")
  33018. },
  33019. ]
  33020. ))
  33021. characterMakers.push(() => makeCharacter(
  33022. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33023. {
  33024. side: {
  33025. height: math.unit(5 + 1/12, "feet"),
  33026. weight: math.unit(418, "lb"),
  33027. name: "Side",
  33028. image: {
  33029. source: "./media/characters/softpurr/side.svg",
  33030. extra: 1993/1945,
  33031. bottom: 134/2127
  33032. }
  33033. },
  33034. front: {
  33035. height: math.unit(5 + 1/12, "feet"),
  33036. weight: math.unit(418, "lb"),
  33037. name: "Front",
  33038. image: {
  33039. source: "./media/characters/softpurr/front.svg",
  33040. extra: 1950/1856,
  33041. bottom: 174/2124
  33042. }
  33043. },
  33044. paw: {
  33045. height: math.unit(1, "feet"),
  33046. name: "Paw",
  33047. image: {
  33048. source: "./media/characters/softpurr/paw.svg"
  33049. }
  33050. },
  33051. },
  33052. [
  33053. {
  33054. name: "Normal",
  33055. height: math.unit(5 + 1/12, "feet"),
  33056. default: true
  33057. },
  33058. ]
  33059. ))
  33060. characterMakers.push(() => makeCharacter(
  33061. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33062. {
  33063. front: {
  33064. height: math.unit(260, "meters"),
  33065. name: "Front",
  33066. image: {
  33067. source: "./media/characters/anahita/front.svg",
  33068. extra: 665/635,
  33069. bottom: 89/754
  33070. }
  33071. },
  33072. },
  33073. [
  33074. {
  33075. name: "Macro",
  33076. height: math.unit(260, "meters"),
  33077. default: true
  33078. },
  33079. ]
  33080. ))
  33081. characterMakers.push(() => makeCharacter(
  33082. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33083. {
  33084. front: {
  33085. height: math.unit(4 + 10/12, "feet"),
  33086. weight: math.unit(160, "lb"),
  33087. name: "Front",
  33088. image: {
  33089. source: "./media/characters/chip-mouse/front.svg",
  33090. extra: 3528/3408,
  33091. bottom: 0/3528
  33092. }
  33093. },
  33094. frontNsfw: {
  33095. height: math.unit(4 + 10/12, "feet"),
  33096. weight: math.unit(160, "lb"),
  33097. name: "Front (NSFW)",
  33098. image: {
  33099. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33100. extra: 3528/3408,
  33101. bottom: 0/3528
  33102. }
  33103. },
  33104. },
  33105. [
  33106. {
  33107. name: "Normal",
  33108. height: math.unit(4 + 10/12, "feet"),
  33109. default: true
  33110. },
  33111. ]
  33112. ))
  33113. characterMakers.push(() => makeCharacter(
  33114. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33115. {
  33116. side: {
  33117. height: math.unit(10, "feet"),
  33118. weight: math.unit(14000, "lb"),
  33119. name: "Side",
  33120. image: {
  33121. source: "./media/characters/kremm/side.svg",
  33122. extra: 1390/1053,
  33123. bottom: 90/1480
  33124. }
  33125. },
  33126. gut: {
  33127. height: math.unit(5.8, "feet"),
  33128. name: "Gut",
  33129. image: {
  33130. source: "./media/characters/kremm/gut.svg"
  33131. }
  33132. },
  33133. ass: {
  33134. height: math.unit(6.1, "feet"),
  33135. name: "Ass",
  33136. image: {
  33137. source: "./media/characters/kremm/ass.svg"
  33138. }
  33139. },
  33140. jaws: {
  33141. height: math.unit(2.2, "feet"),
  33142. name: "Jaws",
  33143. image: {
  33144. source: "./media/characters/kremm/jaws.svg"
  33145. }
  33146. },
  33147. dick: {
  33148. height: math.unit(4.26, "feet"),
  33149. name: "Dick",
  33150. image: {
  33151. source: "./media/characters/kremm/dick.svg"
  33152. }
  33153. },
  33154. },
  33155. [
  33156. {
  33157. name: "Normal",
  33158. height: math.unit(10, "feet"),
  33159. default: true
  33160. },
  33161. ]
  33162. ))
  33163. characterMakers.push(() => makeCharacter(
  33164. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33165. {
  33166. front: {
  33167. height: math.unit(30, "stories"),
  33168. name: "Front",
  33169. image: {
  33170. source: "./media/characters/kai/front.svg",
  33171. extra: 1892/1718,
  33172. bottom: 162/2054
  33173. }
  33174. },
  33175. },
  33176. [
  33177. {
  33178. name: "Macro",
  33179. height: math.unit(30, "stories"),
  33180. default: true
  33181. },
  33182. ]
  33183. ))
  33184. characterMakers.push(() => makeCharacter(
  33185. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33186. {
  33187. front: {
  33188. height: math.unit(6 + 4/12, "feet"),
  33189. weight: math.unit(145, "lb"),
  33190. name: "Front",
  33191. image: {
  33192. source: "./media/characters/sykes/front.svg",
  33193. extra: 1321 / 1187,
  33194. bottom: 66 / 1387
  33195. }
  33196. },
  33197. back: {
  33198. height: math.unit(6 + 4/12, "feet"),
  33199. weight: math.unit(145, "lb"),
  33200. name: "Back",
  33201. image: {
  33202. source: "./media/characters/sykes/back.svg",
  33203. extra: 1326/1181,
  33204. bottom: 31/1357
  33205. }
  33206. },
  33207. handBack: {
  33208. height: math.unit(0.9, "feet"),
  33209. name: "Hand (Back)",
  33210. image: {
  33211. source: "./media/characters/sykes/hand-back.svg"
  33212. }
  33213. },
  33214. handFront: {
  33215. height: math.unit(0.839, "feet"),
  33216. name: "Hand (Front)",
  33217. image: {
  33218. source: "./media/characters/sykes/hand-front.svg"
  33219. }
  33220. },
  33221. leftFoot: {
  33222. height: math.unit(1.2, "feet"),
  33223. name: "Foot (Left)",
  33224. image: {
  33225. source: "./media/characters/sykes/foot-left.svg"
  33226. }
  33227. },
  33228. rightFoot: {
  33229. height: math.unit(1.2, "feet"),
  33230. name: "Foot (Right)",
  33231. image: {
  33232. source: "./media/characters/sykes/foot-right.svg"
  33233. }
  33234. },
  33235. maw: {
  33236. height: math.unit(1.93, "feet"),
  33237. name: "Maw",
  33238. image: {
  33239. source: "./media/characters/sykes/maw.svg"
  33240. }
  33241. },
  33242. teeth: {
  33243. height: math.unit(0.51, "feet"),
  33244. name: "Teeth",
  33245. image: {
  33246. source: "./media/characters/sykes/teeth.svg"
  33247. }
  33248. },
  33249. tongue: {
  33250. height: math.unit(2.13, "feet"),
  33251. name: "Tongue",
  33252. image: {
  33253. source: "./media/characters/sykes/tongue.svg"
  33254. }
  33255. },
  33256. uvula: {
  33257. height: math.unit(0.16, "feet"),
  33258. name: "Uvula",
  33259. image: {
  33260. source: "./media/characters/sykes/uvula.svg"
  33261. }
  33262. },
  33263. collar: {
  33264. height: math.unit(0.287, "feet"),
  33265. name: "Collar",
  33266. image: {
  33267. source: "./media/characters/sykes/collar.svg"
  33268. }
  33269. },
  33270. },
  33271. [
  33272. {
  33273. name: "Shrunken",
  33274. height: math.unit(5, "inches")
  33275. },
  33276. {
  33277. name: "Normal",
  33278. height: math.unit(6 + 4 / 12, "feet"),
  33279. default: true
  33280. },
  33281. {
  33282. name: "Big",
  33283. height: math.unit(15, "feet")
  33284. },
  33285. ]
  33286. ))
  33287. characterMakers.push(() => makeCharacter(
  33288. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33289. {
  33290. front: {
  33291. height: math.unit(5 + 8/12, "feet"),
  33292. weight: math.unit(190, "lb"),
  33293. name: "Front",
  33294. image: {
  33295. source: "./media/characters/oven-otter/front.svg",
  33296. extra: 1809/1740,
  33297. bottom: 181/1990
  33298. }
  33299. },
  33300. back: {
  33301. height: math.unit(5 + 8/12, "feet"),
  33302. weight: math.unit(190, "lb"),
  33303. name: "Back",
  33304. image: {
  33305. source: "./media/characters/oven-otter/back.svg",
  33306. extra: 1709/1635,
  33307. bottom: 118/1827
  33308. }
  33309. },
  33310. hand: {
  33311. height: math.unit(1.07, "feet"),
  33312. name: "Hand",
  33313. image: {
  33314. source: "./media/characters/oven-otter/hand.svg"
  33315. }
  33316. },
  33317. beans: {
  33318. height: math.unit(1.74, "feet"),
  33319. name: "Beans",
  33320. image: {
  33321. source: "./media/characters/oven-otter/beans.svg"
  33322. }
  33323. },
  33324. },
  33325. [
  33326. {
  33327. name: "Micro",
  33328. height: math.unit(0.5, "inches")
  33329. },
  33330. {
  33331. name: "Normal",
  33332. height: math.unit(5 + 8/12, "feet"),
  33333. default: true
  33334. },
  33335. {
  33336. name: "Macro",
  33337. height: math.unit(250, "feet")
  33338. },
  33339. {
  33340. name: "Really High",
  33341. height: math.unit(420, "feet")
  33342. },
  33343. ]
  33344. ))
  33345. characterMakers.push(() => makeCharacter(
  33346. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33347. {
  33348. front: {
  33349. height: math.unit(5, "meters"),
  33350. weight: math.unit(292000000000000, "kg"),
  33351. name: "Front",
  33352. image: {
  33353. source: "./media/characters/devourer/front.svg",
  33354. extra: 1800/1733,
  33355. bottom: 211/2011
  33356. }
  33357. },
  33358. maw: {
  33359. height: math.unit(1.1, "meter"),
  33360. name: "Maw",
  33361. image: {
  33362. source: "./media/characters/devourer/maw.svg"
  33363. }
  33364. },
  33365. },
  33366. [
  33367. {
  33368. name: "Small",
  33369. height: math.unit(3, "meters")
  33370. },
  33371. {
  33372. name: "Large",
  33373. height: math.unit(5, "meters"),
  33374. default: true
  33375. },
  33376. ]
  33377. ))
  33378. characterMakers.push(() => makeCharacter(
  33379. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33380. {
  33381. front: {
  33382. height: math.unit(6, "feet"),
  33383. weight: math.unit(400, "lb"),
  33384. name: "Front",
  33385. image: {
  33386. source: "./media/characters/ellarby/front.svg",
  33387. extra: 1909/1763,
  33388. bottom: 80/1989
  33389. }
  33390. },
  33391. back: {
  33392. height: math.unit(6, "feet"),
  33393. weight: math.unit(400, "lb"),
  33394. name: "Back",
  33395. image: {
  33396. source: "./media/characters/ellarby/back.svg",
  33397. extra: 1914/1784,
  33398. bottom: 172/2086
  33399. }
  33400. },
  33401. },
  33402. [
  33403. {
  33404. name: "Mischief",
  33405. height: math.unit(18, "inches")
  33406. },
  33407. {
  33408. name: "Trouble",
  33409. height: math.unit(12, "feet")
  33410. },
  33411. {
  33412. name: "Havoc",
  33413. height: math.unit(200, "feet"),
  33414. default: true
  33415. },
  33416. {
  33417. name: "Pandemonium",
  33418. height: math.unit(1, "mile")
  33419. },
  33420. {
  33421. name: "Catastrophe",
  33422. height: math.unit(100, "miles")
  33423. },
  33424. ]
  33425. ))
  33426. characterMakers.push(() => makeCharacter(
  33427. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33428. {
  33429. front: {
  33430. height: math.unit(4.7, "meters"),
  33431. weight: math.unit(6500, "kg"),
  33432. name: "Front",
  33433. image: {
  33434. source: "./media/characters/vex/front.svg",
  33435. extra: 1288/1140,
  33436. bottom: 100/1388
  33437. }
  33438. },
  33439. },
  33440. [
  33441. {
  33442. name: "Normal",
  33443. height: math.unit(4.7, "meters"),
  33444. default: true
  33445. },
  33446. ]
  33447. ))
  33448. characterMakers.push(() => makeCharacter(
  33449. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33450. {
  33451. normal: {
  33452. height: math.unit(6, "feet"),
  33453. weight: math.unit(350, "lb"),
  33454. name: "Normal",
  33455. image: {
  33456. source: "./media/characters/teshy/normal.svg",
  33457. extra: 1795/1735,
  33458. bottom: 16/1811
  33459. }
  33460. },
  33461. monsterFront: {
  33462. height: math.unit(12, "feet"),
  33463. weight: math.unit(4700, "lb"),
  33464. name: "Monster (Front)",
  33465. image: {
  33466. source: "./media/characters/teshy/monster-front.svg",
  33467. extra: 2042/2034,
  33468. bottom: 128/2170
  33469. }
  33470. },
  33471. monsterSide: {
  33472. height: math.unit(12, "feet"),
  33473. weight: math.unit(4700, "lb"),
  33474. name: "Monster (Side)",
  33475. image: {
  33476. source: "./media/characters/teshy/monster-side.svg",
  33477. extra: 2067/2056,
  33478. bottom: 70/2137
  33479. }
  33480. },
  33481. monsterBack: {
  33482. height: math.unit(12, "feet"),
  33483. weight: math.unit(4700, "lb"),
  33484. name: "Monster (Back)",
  33485. image: {
  33486. source: "./media/characters/teshy/monster-back.svg",
  33487. extra: 1921/1914,
  33488. bottom: 171/2092
  33489. }
  33490. },
  33491. },
  33492. [
  33493. {
  33494. name: "Normal",
  33495. height: math.unit(6, "feet"),
  33496. default: true
  33497. },
  33498. ]
  33499. ))
  33500. characterMakers.push(() => makeCharacter(
  33501. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33502. {
  33503. front: {
  33504. height: math.unit(6, "feet"),
  33505. name: "Front",
  33506. image: {
  33507. source: "./media/characters/ramey/front.svg",
  33508. extra: 790/787,
  33509. bottom: 27/817
  33510. }
  33511. },
  33512. },
  33513. [
  33514. {
  33515. name: "Normal",
  33516. height: math.unit(6, "feet"),
  33517. default: true
  33518. },
  33519. ]
  33520. ))
  33521. characterMakers.push(() => makeCharacter(
  33522. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33523. {
  33524. front: {
  33525. height: math.unit(5 + 5/12, "feet"),
  33526. weight: math.unit(120, "lb"),
  33527. name: "Front",
  33528. image: {
  33529. source: "./media/characters/phirae/front.svg",
  33530. extra: 2491/2436,
  33531. bottom: 38/2529
  33532. }
  33533. },
  33534. },
  33535. [
  33536. {
  33537. name: "Normal",
  33538. height: math.unit(5 + 5/12, "feet"),
  33539. default: true
  33540. },
  33541. ]
  33542. ))
  33543. characterMakers.push(() => makeCharacter(
  33544. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33545. {
  33546. front: {
  33547. height: math.unit(6, "feet"),
  33548. weight: math.unit(150, "lb"),
  33549. name: "Front",
  33550. image: {
  33551. source: "./media/characters/stagglas/front.svg",
  33552. extra: 962/882,
  33553. bottom: 53/1015
  33554. }
  33555. },
  33556. },
  33557. [
  33558. {
  33559. name: "Normal",
  33560. height: math.unit(5 + 3/12, "feet"),
  33561. default: true
  33562. },
  33563. ]
  33564. ))
  33565. characterMakers.push(() => makeCharacter(
  33566. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33567. {
  33568. front: {
  33569. height: math.unit(5 + 4/12, "feet"),
  33570. weight: math.unit(145, "lb"),
  33571. name: "Front",
  33572. image: {
  33573. source: "./media/characters/starra/front.svg",
  33574. extra: 1790/1691,
  33575. bottom: 91/1881
  33576. }
  33577. },
  33578. },
  33579. [
  33580. {
  33581. name: "Normal",
  33582. height: math.unit(5 + 4/12, "feet"),
  33583. default: true
  33584. },
  33585. ]
  33586. ))
  33587. characterMakers.push(() => makeCharacter(
  33588. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33589. {
  33590. front: {
  33591. height: math.unit(2.2, "meters"),
  33592. name: "Front",
  33593. image: {
  33594. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33595. extra: 1194/1005,
  33596. bottom: 25/1219
  33597. }
  33598. },
  33599. },
  33600. [
  33601. {
  33602. name: "Normal",
  33603. height: math.unit(2.2, "meters"),
  33604. default: true
  33605. },
  33606. ]
  33607. ))
  33608. characterMakers.push(() => makeCharacter(
  33609. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33610. {
  33611. side: {
  33612. height: math.unit(8 + 2/12, "feet"),
  33613. weight: math.unit(1240, "lb"),
  33614. name: "Side",
  33615. image: {
  33616. source: "./media/characters/mika-valentine/side.svg",
  33617. extra: 2670/2501,
  33618. bottom: 250/2920
  33619. }
  33620. },
  33621. },
  33622. [
  33623. {
  33624. name: "Normal",
  33625. height: math.unit(8 + 2/12, "feet"),
  33626. default: true
  33627. },
  33628. ]
  33629. ))
  33630. characterMakers.push(() => makeCharacter(
  33631. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33632. {
  33633. front: {
  33634. height: math.unit(7 + 2/12, "feet"),
  33635. name: "Front",
  33636. image: {
  33637. source: "./media/characters/xoltol/front.svg",
  33638. extra: 2212/2124,
  33639. bottom: 84/2296
  33640. }
  33641. },
  33642. side: {
  33643. height: math.unit(7 + 2/12, "feet"),
  33644. name: "Side",
  33645. image: {
  33646. source: "./media/characters/xoltol/side.svg",
  33647. extra: 2273/2197,
  33648. bottom: 26/2299
  33649. }
  33650. },
  33651. hand: {
  33652. height: math.unit(2.5, "feet"),
  33653. name: "Hand",
  33654. image: {
  33655. source: "./media/characters/xoltol/hand.svg"
  33656. }
  33657. },
  33658. },
  33659. [
  33660. {
  33661. name: "Small-ish",
  33662. height: math.unit(5 + 11/12, "feet")
  33663. },
  33664. {
  33665. name: "Normal",
  33666. height: math.unit(7 + 2/12, "feet")
  33667. },
  33668. {
  33669. name: "\"Macro\"",
  33670. height: math.unit(14 + 9/12, "feet"),
  33671. default: true
  33672. },
  33673. {
  33674. name: "Alternate Height",
  33675. height: math.unit(20, "feet")
  33676. },
  33677. {
  33678. name: "Actually Macro",
  33679. height: math.unit(100, "feet")
  33680. },
  33681. ]
  33682. ))
  33683. characterMakers.push(() => makeCharacter(
  33684. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33685. {
  33686. front: {
  33687. height: math.unit(5 + 2/12, "feet"),
  33688. name: "Front",
  33689. image: {
  33690. source: "./media/characters/kotetsu-redwood/front.svg",
  33691. extra: 1053/942,
  33692. bottom: 60/1113
  33693. }
  33694. },
  33695. },
  33696. [
  33697. {
  33698. name: "Normal",
  33699. height: math.unit(5 + 2/12, "feet"),
  33700. default: true
  33701. },
  33702. ]
  33703. ))
  33704. characterMakers.push(() => makeCharacter(
  33705. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33706. {
  33707. front: {
  33708. height: math.unit(2.4, "meters"),
  33709. weight: math.unit(125, "kg"),
  33710. name: "Front",
  33711. image: {
  33712. source: "./media/characters/lilith/front.svg",
  33713. extra: 1590/1513,
  33714. bottom: 203/1793
  33715. }
  33716. },
  33717. },
  33718. [
  33719. {
  33720. name: "Humanoid",
  33721. height: math.unit(2.4, "meters")
  33722. },
  33723. {
  33724. name: "Normal",
  33725. height: math.unit(6, "meters"),
  33726. default: true
  33727. },
  33728. {
  33729. name: "Largest",
  33730. height: math.unit(55, "meters")
  33731. },
  33732. ]
  33733. ))
  33734. characterMakers.push(() => makeCharacter(
  33735. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33736. {
  33737. front: {
  33738. height: math.unit(8 + 4/12, "feet"),
  33739. weight: math.unit(535, "lb"),
  33740. name: "Front",
  33741. image: {
  33742. source: "./media/characters/beh'kah-bolger/front.svg",
  33743. extra: 1660/1603,
  33744. bottom: 37/1697
  33745. }
  33746. },
  33747. },
  33748. [
  33749. {
  33750. name: "Normal",
  33751. height: math.unit(8 + 4/12, "feet"),
  33752. default: true
  33753. },
  33754. {
  33755. name: "Kaiju",
  33756. height: math.unit(250, "feet")
  33757. },
  33758. {
  33759. name: "Still Growing",
  33760. height: math.unit(10, "miles")
  33761. },
  33762. {
  33763. name: "Continental",
  33764. height: math.unit(5000, "miles")
  33765. },
  33766. {
  33767. name: "Final Form",
  33768. height: math.unit(2500000, "miles")
  33769. },
  33770. ]
  33771. ))
  33772. characterMakers.push(() => makeCharacter(
  33773. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33774. {
  33775. front: {
  33776. height: math.unit(7 + 2/12, "feet"),
  33777. weight: math.unit(230, "kg"),
  33778. name: "Front",
  33779. image: {
  33780. source: "./media/characters/tatyana-milewska/front.svg",
  33781. extra: 1199/1150,
  33782. bottom: 86/1285
  33783. }
  33784. },
  33785. },
  33786. [
  33787. {
  33788. name: "Normal",
  33789. height: math.unit(7 + 2/12, "feet"),
  33790. default: true
  33791. },
  33792. {
  33793. name: "Big",
  33794. height: math.unit(12, "feet")
  33795. },
  33796. {
  33797. name: "Minimacro",
  33798. height: math.unit(20, "feet")
  33799. },
  33800. {
  33801. name: "Macro",
  33802. height: math.unit(120, "feet")
  33803. },
  33804. ]
  33805. ))
  33806. characterMakers.push(() => makeCharacter(
  33807. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33808. {
  33809. front: {
  33810. height: math.unit(7 + 8/12, "feet"),
  33811. weight: math.unit(152, "kg"),
  33812. name: "Front",
  33813. image: {
  33814. source: "./media/characters/helen-arri/front.svg",
  33815. extra: 440/423,
  33816. bottom: 14/454
  33817. }
  33818. },
  33819. back: {
  33820. height: math.unit(7 + 8/12, "feet"),
  33821. weight: math.unit(152, "kg"),
  33822. name: "Back",
  33823. image: {
  33824. source: "./media/characters/helen-arri/back.svg",
  33825. extra: 443/426,
  33826. bottom: 8/451
  33827. }
  33828. },
  33829. },
  33830. [
  33831. {
  33832. name: "Normal",
  33833. height: math.unit(7 + 8/12, "feet"),
  33834. default: true
  33835. },
  33836. {
  33837. name: "Big",
  33838. height: math.unit(14, "feet")
  33839. },
  33840. {
  33841. name: "Minimacro",
  33842. height: math.unit(24, "feet")
  33843. },
  33844. {
  33845. name: "Macro",
  33846. height: math.unit(140, "feet")
  33847. },
  33848. ]
  33849. ))
  33850. characterMakers.push(() => makeCharacter(
  33851. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33852. {
  33853. front: {
  33854. height: math.unit(6, "meters"),
  33855. name: "Front",
  33856. image: {
  33857. source: "./media/characters/ehanu-rehu/front.svg",
  33858. extra: 1800/1800,
  33859. bottom: 59/1859
  33860. }
  33861. },
  33862. },
  33863. [
  33864. {
  33865. name: "Normal",
  33866. height: math.unit(6, "meters"),
  33867. default: true
  33868. },
  33869. ]
  33870. ))
  33871. characterMakers.push(() => makeCharacter(
  33872. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33873. {
  33874. front: {
  33875. height: math.unit(7 + 3/12, "feet"),
  33876. name: "Front",
  33877. image: {
  33878. source: "./media/characters/renholder/front.svg",
  33879. extra: 3096/2960,
  33880. bottom: 250/3346
  33881. }
  33882. },
  33883. },
  33884. [
  33885. {
  33886. name: "Normal Bat",
  33887. height: math.unit(7 + 3/12, "feet"),
  33888. default: true
  33889. },
  33890. {
  33891. name: "Slightly Tall Bat",
  33892. height: math.unit(100, "feet")
  33893. },
  33894. {
  33895. name: "Big Bat",
  33896. height: math.unit(1000, "feet")
  33897. },
  33898. {
  33899. name: "City-Sized Bat",
  33900. height: math.unit(200000, "feet")
  33901. },
  33902. {
  33903. name: "Bigger Bat",
  33904. height: math.unit(10000, "miles")
  33905. },
  33906. {
  33907. name: "Solar Sized Bat",
  33908. height: math.unit(100, "AU")
  33909. },
  33910. {
  33911. name: "Galactic Bat",
  33912. height: math.unit(200000, "lightyears")
  33913. },
  33914. {
  33915. name: "Universally Known Bat",
  33916. height: math.unit(1, "universe")
  33917. },
  33918. ]
  33919. ))
  33920. characterMakers.push(() => makeCharacter(
  33921. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33922. {
  33923. front: {
  33924. height: math.unit(6 + 11/12, "feet"),
  33925. weight: math.unit(250, "lb"),
  33926. name: "Front",
  33927. image: {
  33928. source: "./media/characters/cookiecat/front.svg",
  33929. extra: 893/827,
  33930. bottom: 14/907
  33931. }
  33932. },
  33933. },
  33934. [
  33935. {
  33936. name: "Micro",
  33937. height: math.unit(3, "inches")
  33938. },
  33939. {
  33940. name: "Normal",
  33941. height: math.unit(6 + 11/12, "feet"),
  33942. default: true
  33943. },
  33944. {
  33945. name: "Macro",
  33946. height: math.unit(100, "feet")
  33947. },
  33948. {
  33949. name: "Macro+",
  33950. height: math.unit(404, "feet")
  33951. },
  33952. {
  33953. name: "Megamacro",
  33954. height: math.unit(165, "miles")
  33955. },
  33956. {
  33957. name: "Planetary",
  33958. height: math.unit(4600, "miles")
  33959. },
  33960. ]
  33961. ))
  33962. characterMakers.push(() => makeCharacter(
  33963. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33964. {
  33965. front: {
  33966. height: math.unit(10 + 3/12, "feet"),
  33967. weight: math.unit(1500, "lb"),
  33968. name: "Front",
  33969. image: {
  33970. source: "./media/characters/tux-kusanagi/front.svg",
  33971. extra: 944/840,
  33972. bottom: 39/983
  33973. }
  33974. },
  33975. back: {
  33976. height: math.unit(10 + 3/12, "feet"),
  33977. weight: math.unit(1500, "lb"),
  33978. name: "Back",
  33979. image: {
  33980. source: "./media/characters/tux-kusanagi/back.svg",
  33981. extra: 941/842,
  33982. bottom: 28/969
  33983. }
  33984. },
  33985. rump: {
  33986. height: math.unit(5.25, "feet"),
  33987. name: "Rump",
  33988. image: {
  33989. source: "./media/characters/tux-kusanagi/rump.svg"
  33990. }
  33991. },
  33992. beak: {
  33993. height: math.unit(1.54, "feet"),
  33994. name: "Beak",
  33995. image: {
  33996. source: "./media/characters/tux-kusanagi/beak.svg"
  33997. }
  33998. },
  33999. },
  34000. [
  34001. {
  34002. name: "Normal",
  34003. height: math.unit(10 + 3/12, "feet"),
  34004. default: true
  34005. },
  34006. ]
  34007. ))
  34008. characterMakers.push(() => makeCharacter(
  34009. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34010. {
  34011. front: {
  34012. height: math.unit(58, "feet"),
  34013. weight: math.unit(200, "tons"),
  34014. name: "Front",
  34015. image: {
  34016. source: "./media/characters/uzarmazari/front.svg",
  34017. extra: 1575/1455,
  34018. bottom: 152/1727
  34019. }
  34020. },
  34021. back: {
  34022. height: math.unit(58, "feet"),
  34023. weight: math.unit(200, "tons"),
  34024. name: "Back",
  34025. image: {
  34026. source: "./media/characters/uzarmazari/back.svg",
  34027. extra: 1585/1510,
  34028. bottom: 157/1742
  34029. }
  34030. },
  34031. head: {
  34032. height: math.unit(26, "feet"),
  34033. name: "Head",
  34034. image: {
  34035. source: "./media/characters/uzarmazari/head.svg"
  34036. }
  34037. },
  34038. },
  34039. [
  34040. {
  34041. name: "Normal",
  34042. height: math.unit(58, "feet"),
  34043. default: true
  34044. },
  34045. ]
  34046. ))
  34047. characterMakers.push(() => makeCharacter(
  34048. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34049. {
  34050. side: {
  34051. height: math.unit(15, "feet"),
  34052. name: "Side",
  34053. image: {
  34054. source: "./media/characters/akitu/side.svg",
  34055. extra: 1421/1321,
  34056. bottom: 157/1578
  34057. }
  34058. },
  34059. front: {
  34060. height: math.unit(15, "feet"),
  34061. name: "Front",
  34062. image: {
  34063. source: "./media/characters/akitu/front.svg",
  34064. extra: 1435/1326,
  34065. bottom: 232/1667
  34066. }
  34067. },
  34068. },
  34069. [
  34070. {
  34071. name: "Normal",
  34072. height: math.unit(15, "feet"),
  34073. default: true
  34074. },
  34075. ]
  34076. ))
  34077. characterMakers.push(() => makeCharacter(
  34078. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34079. {
  34080. front: {
  34081. height: math.unit(10 + 8/12, "feet"),
  34082. name: "Front",
  34083. image: {
  34084. source: "./media/characters/azalie-croixland/front.svg",
  34085. extra: 1972/1856,
  34086. bottom: 31/2003
  34087. }
  34088. },
  34089. },
  34090. [
  34091. {
  34092. name: "Original Height",
  34093. height: math.unit(5 + 4/12, "feet")
  34094. },
  34095. {
  34096. name: "Normal Height",
  34097. height: math.unit(10 + 8/12, "feet"),
  34098. default: true
  34099. },
  34100. ]
  34101. ))
  34102. characterMakers.push(() => makeCharacter(
  34103. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34104. {
  34105. side: {
  34106. height: math.unit(7 + 1/12, "feet"),
  34107. weight: math.unit(245, "lb"),
  34108. name: "Side",
  34109. image: {
  34110. source: "./media/characters/kavus-kazian/side.svg",
  34111. extra: 349/342,
  34112. bottom: 15/364
  34113. }
  34114. },
  34115. },
  34116. [
  34117. {
  34118. name: "Normal",
  34119. height: math.unit(7 + 1/12, "feet"),
  34120. default: true
  34121. },
  34122. ]
  34123. ))
  34124. characterMakers.push(() => makeCharacter(
  34125. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34126. {
  34127. normal: {
  34128. height: math.unit(5 + 11/12, "feet"),
  34129. name: "Normal",
  34130. image: {
  34131. source: "./media/characters/moonlight-rose/normal.svg",
  34132. extra: 1979/1835,
  34133. bottom: 14/1993
  34134. }
  34135. },
  34136. demon: {
  34137. height: math.unit(5, "km"),
  34138. name: "Demon",
  34139. image: {
  34140. source: "./media/characters/moonlight-rose/demon.svg",
  34141. extra: 986/916,
  34142. bottom: 28/1014
  34143. }
  34144. },
  34145. },
  34146. [
  34147. {
  34148. name: "\"Natural\" height",
  34149. height: math.unit(5 + 11/12, "feet")
  34150. },
  34151. {
  34152. name: "Comfortable Size",
  34153. height: math.unit(40, "meters")
  34154. },
  34155. {
  34156. name: "Common Size",
  34157. height: math.unit(50, "km"),
  34158. default: true
  34159. },
  34160. {
  34161. name: "Demonic",
  34162. height: math.unit(1.24415e+21, "meters")
  34163. },
  34164. ]
  34165. ))
  34166. characterMakers.push(() => makeCharacter(
  34167. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34168. {
  34169. front: {
  34170. height: math.unit(16, "feet"),
  34171. weight: math.unit(610, "kg"),
  34172. name: "Front",
  34173. image: {
  34174. source: "./media/characters/huckle/front.svg",
  34175. extra: 1731/1625,
  34176. bottom: 33/1764
  34177. }
  34178. },
  34179. back: {
  34180. height: math.unit(16, "feet"),
  34181. weight: math.unit(610, "kg"),
  34182. name: "Back",
  34183. image: {
  34184. source: "./media/characters/huckle/back.svg",
  34185. extra: 1738/1651,
  34186. bottom: 37/1775
  34187. }
  34188. },
  34189. laughing: {
  34190. height: math.unit(3.75, "feet"),
  34191. name: "Laughing",
  34192. image: {
  34193. source: "./media/characters/huckle/laughing.svg"
  34194. }
  34195. },
  34196. angry: {
  34197. height: math.unit(4.15, "feet"),
  34198. name: "Angry",
  34199. image: {
  34200. source: "./media/characters/huckle/angry.svg"
  34201. }
  34202. },
  34203. },
  34204. [
  34205. {
  34206. name: "Normal",
  34207. height: math.unit(16, "feet"),
  34208. default: true
  34209. },
  34210. {
  34211. name: "Mini Macro",
  34212. height: math.unit(463, "feet")
  34213. },
  34214. {
  34215. name: "Macro",
  34216. height: math.unit(1680, "meters")
  34217. },
  34218. {
  34219. name: "Mega Macro",
  34220. height: math.unit(175, "km")
  34221. },
  34222. {
  34223. name: "Terra Macro",
  34224. height: math.unit(32, "gigameters")
  34225. },
  34226. {
  34227. name: "Multiverse+",
  34228. height: math.unit(2.56e23, "yottameters")
  34229. },
  34230. ]
  34231. ))
  34232. characterMakers.push(() => makeCharacter(
  34233. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34234. {
  34235. front: {
  34236. height: math.unit(6 + 9/12, "feet"),
  34237. weight: math.unit(280, "lb"),
  34238. name: "Front",
  34239. image: {
  34240. source: "./media/characters/candy/front.svg",
  34241. extra: 234/217,
  34242. bottom: 11/245
  34243. }
  34244. },
  34245. },
  34246. [
  34247. {
  34248. name: "Really Small",
  34249. height: math.unit(0.1, "nm")
  34250. },
  34251. {
  34252. name: "Micro",
  34253. height: math.unit(2, "inches")
  34254. },
  34255. {
  34256. name: "Normal",
  34257. height: math.unit(6 + 9/12, "feet"),
  34258. default: true
  34259. },
  34260. {
  34261. name: "Small Macro",
  34262. height: math.unit(69, "feet")
  34263. },
  34264. {
  34265. name: "Macro",
  34266. height: math.unit(160, "feet")
  34267. },
  34268. {
  34269. name: "Megamacro",
  34270. height: math.unit(22000, "miles")
  34271. },
  34272. {
  34273. name: "Gigamacro",
  34274. height: math.unit(50000, "miles")
  34275. },
  34276. ]
  34277. ))
  34278. characterMakers.push(() => makeCharacter(
  34279. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34280. {
  34281. front: {
  34282. height: math.unit(4, "feet"),
  34283. weight: math.unit(90, "lb"),
  34284. name: "Front",
  34285. image: {
  34286. source: "./media/characters/joey-mcdonald/front.svg",
  34287. extra: 1059/852,
  34288. bottom: 33/1092
  34289. }
  34290. },
  34291. back: {
  34292. height: math.unit(4, "feet"),
  34293. weight: math.unit(90, "lb"),
  34294. name: "Back",
  34295. image: {
  34296. source: "./media/characters/joey-mcdonald/back.svg",
  34297. extra: 1077/879,
  34298. bottom: 5/1082
  34299. }
  34300. },
  34301. },
  34302. [
  34303. {
  34304. name: "Normal",
  34305. height: math.unit(4, "feet"),
  34306. default: true
  34307. },
  34308. ]
  34309. ))
  34310. characterMakers.push(() => makeCharacter(
  34311. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34312. {
  34313. front: {
  34314. height: math.unit(12 + 6/12, "feet"),
  34315. name: "Front",
  34316. image: {
  34317. source: "./media/characters/kass-lockheed/front.svg",
  34318. extra: 354/343,
  34319. bottom: 9/363
  34320. }
  34321. },
  34322. back: {
  34323. height: math.unit(12 + 6/12, "feet"),
  34324. name: "Back",
  34325. image: {
  34326. source: "./media/characters/kass-lockheed/back.svg",
  34327. extra: 364/352,
  34328. bottom: 3/367
  34329. }
  34330. },
  34331. dick: {
  34332. height: math.unit(3.12, "feet"),
  34333. name: "Dick",
  34334. image: {
  34335. source: "./media/characters/kass-lockheed/dick.svg"
  34336. }
  34337. },
  34338. head: {
  34339. height: math.unit(2.6, "feet"),
  34340. name: "Head",
  34341. image: {
  34342. source: "./media/characters/kass-lockheed/head.svg"
  34343. }
  34344. },
  34345. bleh: {
  34346. height: math.unit(2.85, "feet"),
  34347. name: "Bleh",
  34348. image: {
  34349. source: "./media/characters/kass-lockheed/bleh.svg"
  34350. }
  34351. },
  34352. smug: {
  34353. height: math.unit(2.85, "feet"),
  34354. name: "Smug",
  34355. image: {
  34356. source: "./media/characters/kass-lockheed/smug.svg"
  34357. }
  34358. },
  34359. },
  34360. [
  34361. {
  34362. name: "Normal",
  34363. height: math.unit(12 + 6/12, "feet"),
  34364. default: true
  34365. },
  34366. ]
  34367. ))
  34368. characterMakers.push(() => makeCharacter(
  34369. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34370. {
  34371. front: {
  34372. height: math.unit(6 + 2/12, "feet"),
  34373. name: "Front",
  34374. image: {
  34375. source: "./media/characters/taylor/front.svg",
  34376. extra: 639/495,
  34377. bottom: 12/651
  34378. }
  34379. },
  34380. },
  34381. [
  34382. {
  34383. name: "Normal",
  34384. height: math.unit(6 + 2/12, "feet"),
  34385. default: true
  34386. },
  34387. {
  34388. name: "Big",
  34389. height: math.unit(15, "feet")
  34390. },
  34391. {
  34392. name: "Lorg",
  34393. height: math.unit(80, "feet")
  34394. },
  34395. {
  34396. name: "Too Lorg",
  34397. height: math.unit(120, "feet")
  34398. },
  34399. ]
  34400. ))
  34401. characterMakers.push(() => makeCharacter(
  34402. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34403. {
  34404. front: {
  34405. height: math.unit(15, "feet"),
  34406. name: "Front",
  34407. image: {
  34408. source: "./media/characters/kaizer/front.svg",
  34409. extra: 1612/1436,
  34410. bottom: 43/1655
  34411. }
  34412. },
  34413. },
  34414. [
  34415. {
  34416. name: "Normal",
  34417. height: math.unit(15, "feet"),
  34418. default: true
  34419. },
  34420. ]
  34421. ))
  34422. characterMakers.push(() => makeCharacter(
  34423. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34424. {
  34425. front: {
  34426. height: math.unit(2, "feet"),
  34427. weight: math.unit(30, "lb"),
  34428. name: "Front",
  34429. image: {
  34430. source: "./media/characters/sandy/front.svg",
  34431. extra: 1439/1307,
  34432. bottom: 194/1633
  34433. }
  34434. },
  34435. },
  34436. [
  34437. {
  34438. name: "Normal",
  34439. height: math.unit(2, "feet"),
  34440. default: true
  34441. },
  34442. ]
  34443. ))
  34444. characterMakers.push(() => makeCharacter(
  34445. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34446. {
  34447. front: {
  34448. height: math.unit(3, "feet"),
  34449. name: "Front",
  34450. image: {
  34451. source: "./media/characters/mellvi/front.svg",
  34452. extra: 1831/1630,
  34453. bottom: 58/1889
  34454. }
  34455. },
  34456. },
  34457. [
  34458. {
  34459. name: "Normal",
  34460. height: math.unit(3, "feet"),
  34461. default: true
  34462. },
  34463. ]
  34464. ))
  34465. characterMakers.push(() => makeCharacter(
  34466. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34467. {
  34468. front: {
  34469. height: math.unit(5 + 11/12, "feet"),
  34470. weight: math.unit(200, "lb"),
  34471. name: "Front",
  34472. image: {
  34473. source: "./media/characters/shirou/front.svg",
  34474. extra: 2491/2383,
  34475. bottom: 189/2680
  34476. }
  34477. },
  34478. back: {
  34479. height: math.unit(5 + 11/12, "feet"),
  34480. weight: math.unit(200, "lb"),
  34481. name: "Back",
  34482. image: {
  34483. source: "./media/characters/shirou/back.svg",
  34484. extra: 2554/2450,
  34485. bottom: 76/2630
  34486. }
  34487. },
  34488. },
  34489. [
  34490. {
  34491. name: "Normal",
  34492. height: math.unit(5 + 11/12, "feet"),
  34493. default: true
  34494. },
  34495. ]
  34496. ))
  34497. characterMakers.push(() => makeCharacter(
  34498. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34499. {
  34500. front: {
  34501. height: math.unit(6 + 3/12, "feet"),
  34502. weight: math.unit(177, "lb"),
  34503. name: "Front",
  34504. image: {
  34505. source: "./media/characters/noryu/front.svg",
  34506. extra: 973/885,
  34507. bottom: 10/983
  34508. }
  34509. },
  34510. },
  34511. [
  34512. {
  34513. name: "Normal",
  34514. height: math.unit(6 + 3/12, "feet"),
  34515. default: true
  34516. },
  34517. ]
  34518. ))
  34519. characterMakers.push(() => makeCharacter(
  34520. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34521. {
  34522. front: {
  34523. height: math.unit(5 + 6/12, "feet"),
  34524. weight: math.unit(170, "lb"),
  34525. name: "Front",
  34526. image: {
  34527. source: "./media/characters/mevolas-rubenido/front.svg",
  34528. extra: 2109/1901,
  34529. bottom: 96/2205
  34530. }
  34531. },
  34532. },
  34533. [
  34534. {
  34535. name: "Normal",
  34536. height: math.unit(5 + 6/12, "feet"),
  34537. default: true
  34538. },
  34539. ]
  34540. ))
  34541. characterMakers.push(() => makeCharacter(
  34542. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34543. {
  34544. front: {
  34545. height: math.unit(100, "feet"),
  34546. name: "Front",
  34547. image: {
  34548. source: "./media/characters/dee/front.svg",
  34549. extra: 2153/2036,
  34550. bottom: 59/2212
  34551. }
  34552. },
  34553. back: {
  34554. height: math.unit(100, "feet"),
  34555. name: "Back",
  34556. image: {
  34557. source: "./media/characters/dee/back.svg",
  34558. extra: 2183/2058,
  34559. bottom: 75/2258
  34560. }
  34561. },
  34562. foot: {
  34563. height: math.unit(19.43, "feet"),
  34564. name: "Foot",
  34565. image: {
  34566. source: "./media/characters/dee/foot.svg"
  34567. }
  34568. },
  34569. hoof: {
  34570. height: math.unit(20.6, "feet"),
  34571. name: "Hoof",
  34572. image: {
  34573. source: "./media/characters/dee/hoof.svg"
  34574. }
  34575. },
  34576. },
  34577. [
  34578. {
  34579. name: "Macro",
  34580. height: math.unit(100, "feet"),
  34581. default: true
  34582. },
  34583. ]
  34584. ))
  34585. characterMakers.push(() => makeCharacter(
  34586. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34587. {
  34588. front: {
  34589. height: math.unit(5 + 6/12, "feet"),
  34590. name: "Front",
  34591. image: {
  34592. source: "./media/characters/teh/front.svg",
  34593. extra: 1002/847,
  34594. bottom: 62/1064
  34595. }
  34596. },
  34597. },
  34598. [
  34599. {
  34600. name: "Normal",
  34601. height: math.unit(5 + 6/12, "feet"),
  34602. default: true
  34603. },
  34604. ]
  34605. ))
  34606. characterMakers.push(() => makeCharacter(
  34607. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34608. {
  34609. side: {
  34610. height: math.unit(6 + 1/12, "feet"),
  34611. weight: math.unit(204, "lb"),
  34612. name: "Side",
  34613. image: {
  34614. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34615. extra: 974/775,
  34616. bottom: 169/1143
  34617. }
  34618. },
  34619. sitting: {
  34620. height: math.unit(6 + 2/12, "feet"),
  34621. weight: math.unit(204, "lb"),
  34622. name: "Sitting",
  34623. image: {
  34624. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34625. extra: 1175/964,
  34626. bottom: 378/1553
  34627. }
  34628. },
  34629. },
  34630. [
  34631. {
  34632. name: "Normal",
  34633. height: math.unit(6 + 1/12, "feet"),
  34634. default: true
  34635. },
  34636. ]
  34637. ))
  34638. characterMakers.push(() => makeCharacter(
  34639. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34640. {
  34641. front: {
  34642. height: math.unit(6, "inches"),
  34643. name: "Front",
  34644. image: {
  34645. source: "./media/characters/tululi/front.svg",
  34646. extra: 1997/1876,
  34647. bottom: 20/2017
  34648. }
  34649. },
  34650. },
  34651. [
  34652. {
  34653. name: "Normal",
  34654. height: math.unit(6, "inches"),
  34655. default: true
  34656. },
  34657. ]
  34658. ))
  34659. characterMakers.push(() => makeCharacter(
  34660. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34661. {
  34662. front: {
  34663. height: math.unit(4 + 1/12, "feet"),
  34664. name: "Front",
  34665. image: {
  34666. source: "./media/characters/star/front.svg",
  34667. extra: 1493/1189,
  34668. bottom: 48/1541
  34669. }
  34670. },
  34671. },
  34672. [
  34673. {
  34674. name: "Normal",
  34675. height: math.unit(4 + 1/12, "feet"),
  34676. default: true
  34677. },
  34678. ]
  34679. ))
  34680. characterMakers.push(() => makeCharacter(
  34681. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34682. {
  34683. front: {
  34684. height: math.unit(6 + 3/12, "feet"),
  34685. name: "Front",
  34686. image: {
  34687. source: "./media/characters/comet/front.svg",
  34688. extra: 1681/1462,
  34689. bottom: 26/1707
  34690. }
  34691. },
  34692. },
  34693. [
  34694. {
  34695. name: "Normal",
  34696. height: math.unit(6 + 3/12, "feet"),
  34697. default: true
  34698. },
  34699. ]
  34700. ))
  34701. characterMakers.push(() => makeCharacter(
  34702. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34703. {
  34704. front: {
  34705. height: math.unit(950, "feet"),
  34706. name: "Front",
  34707. image: {
  34708. source: "./media/characters/vortex/front.svg",
  34709. extra: 1497/1434,
  34710. bottom: 56/1553
  34711. }
  34712. },
  34713. maw: {
  34714. height: math.unit(285, "feet"),
  34715. name: "Maw",
  34716. image: {
  34717. source: "./media/characters/vortex/maw.svg"
  34718. }
  34719. },
  34720. },
  34721. [
  34722. {
  34723. name: "Macro",
  34724. height: math.unit(950, "feet"),
  34725. default: true
  34726. },
  34727. ]
  34728. ))
  34729. characterMakers.push(() => makeCharacter(
  34730. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34731. {
  34732. front: {
  34733. height: math.unit(600, "feet"),
  34734. weight: math.unit(0.02, "grams"),
  34735. name: "Front",
  34736. image: {
  34737. source: "./media/characters/doodle/front.svg",
  34738. extra: 1578/1413,
  34739. bottom: 37/1615
  34740. }
  34741. },
  34742. },
  34743. [
  34744. {
  34745. name: "Macro",
  34746. height: math.unit(600, "feet"),
  34747. default: true
  34748. },
  34749. ]
  34750. ))
  34751. characterMakers.push(() => makeCharacter(
  34752. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34753. {
  34754. front: {
  34755. height: math.unit(6 + 6/12, "feet"),
  34756. name: "Front",
  34757. image: {
  34758. source: "./media/characters/jai/front.svg",
  34759. extra: 1645/1534,
  34760. bottom: 115/1760
  34761. }
  34762. },
  34763. },
  34764. [
  34765. {
  34766. name: "Normal",
  34767. height: math.unit(6 + 6/12, "feet"),
  34768. default: true
  34769. },
  34770. ]
  34771. ))
  34772. characterMakers.push(() => makeCharacter(
  34773. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34774. {
  34775. front: {
  34776. height: math.unit(6 + 8/12, "feet"),
  34777. name: "Front",
  34778. image: {
  34779. source: "./media/characters/pixel/front.svg",
  34780. extra: 1900/1735,
  34781. bottom: 63/1963
  34782. }
  34783. },
  34784. },
  34785. [
  34786. {
  34787. name: "Normal",
  34788. height: math.unit(6 + 8/12, "feet"),
  34789. default: true
  34790. },
  34791. ]
  34792. ))
  34793. characterMakers.push(() => makeCharacter(
  34794. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34795. {
  34796. front: {
  34797. height: math.unit(4 + 11/12, "feet"),
  34798. weight: math.unit(111, "lb"),
  34799. name: "Front",
  34800. image: {
  34801. source: "./media/characters/rhett/front.svg",
  34802. extra: 1682/1586,
  34803. bottom: 92/1774
  34804. }
  34805. },
  34806. },
  34807. [
  34808. {
  34809. name: "Mini",
  34810. height: math.unit(1 + 1/12, "feet")
  34811. },
  34812. {
  34813. name: "Normal",
  34814. height: math.unit(4 + 11/12, "feet"),
  34815. default: true
  34816. },
  34817. ]
  34818. ))
  34819. characterMakers.push(() => makeCharacter(
  34820. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34821. {
  34822. front: {
  34823. height: math.unit(3 + 3/12, "feet"),
  34824. name: "Front",
  34825. image: {
  34826. source: "./media/characters/penny/front.svg",
  34827. extra: 1406/1311,
  34828. bottom: 26/1432
  34829. }
  34830. },
  34831. },
  34832. [
  34833. {
  34834. name: "Normal",
  34835. height: math.unit(3 + 3/12, "feet"),
  34836. default: true
  34837. },
  34838. ]
  34839. ))
  34840. characterMakers.push(() => makeCharacter(
  34841. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34842. {
  34843. front: {
  34844. height: math.unit(4 + 11/12, "feet"),
  34845. name: "Front",
  34846. image: {
  34847. source: "./media/characters/monty/front.svg",
  34848. extra: 1479/1209,
  34849. bottom: 0/1479
  34850. }
  34851. },
  34852. },
  34853. [
  34854. {
  34855. name: "Normal",
  34856. height: math.unit(4 + 11/12, "feet"),
  34857. default: true
  34858. },
  34859. ]
  34860. ))
  34861. characterMakers.push(() => makeCharacter(
  34862. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34863. {
  34864. front: {
  34865. height: math.unit(8 + 4/12, "feet"),
  34866. name: "Front",
  34867. image: {
  34868. source: "./media/characters/sterling/front.svg",
  34869. extra: 1420/1236,
  34870. bottom: 27/1447
  34871. }
  34872. },
  34873. },
  34874. [
  34875. {
  34876. name: "Normal",
  34877. height: math.unit(8 + 4/12, "feet"),
  34878. default: true
  34879. },
  34880. ]
  34881. ))
  34882. characterMakers.push(() => makeCharacter(
  34883. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34884. {
  34885. front: {
  34886. height: math.unit(15, "feet"),
  34887. name: "Front",
  34888. image: {
  34889. source: "./media/characters/marble/front.svg",
  34890. extra: 973/937,
  34891. bottom: 32/1005
  34892. }
  34893. },
  34894. },
  34895. [
  34896. {
  34897. name: "Normal",
  34898. height: math.unit(15, "feet"),
  34899. default: true
  34900. },
  34901. ]
  34902. ))
  34903. characterMakers.push(() => makeCharacter(
  34904. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34905. {
  34906. front: {
  34907. height: math.unit(3, "inches"),
  34908. name: "Front",
  34909. image: {
  34910. source: "./media/characters/powder/front.svg",
  34911. extra: 1504/1334,
  34912. bottom: 518/2022
  34913. }
  34914. },
  34915. },
  34916. [
  34917. {
  34918. name: "Normal",
  34919. height: math.unit(3, "inches"),
  34920. default: true
  34921. },
  34922. ]
  34923. ))
  34924. characterMakers.push(() => makeCharacter(
  34925. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34926. {
  34927. front: {
  34928. height: math.unit(4 + 5/12, "feet"),
  34929. name: "Front",
  34930. image: {
  34931. source: "./media/characters/joey-raccoon/front.svg",
  34932. extra: 1273/1197,
  34933. bottom: 0/1273
  34934. }
  34935. },
  34936. },
  34937. [
  34938. {
  34939. name: "Normal",
  34940. height: math.unit(4 + 5/12, "feet"),
  34941. default: true
  34942. },
  34943. ]
  34944. ))
  34945. characterMakers.push(() => makeCharacter(
  34946. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34947. {
  34948. front: {
  34949. height: math.unit(8 + 4/12, "feet"),
  34950. name: "Front",
  34951. image: {
  34952. source: "./media/characters/vick/front.svg",
  34953. extra: 2187/2118,
  34954. bottom: 47/2234
  34955. }
  34956. },
  34957. },
  34958. [
  34959. {
  34960. name: "Normal",
  34961. height: math.unit(8 + 4/12, "feet"),
  34962. default: true
  34963. },
  34964. ]
  34965. ))
  34966. characterMakers.push(() => makeCharacter(
  34967. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34968. {
  34969. front: {
  34970. height: math.unit(5 + 5/12, "feet"),
  34971. name: "Front",
  34972. image: {
  34973. source: "./media/characters/mitsy/front.svg",
  34974. extra: 1842/1695,
  34975. bottom: 0/1842
  34976. }
  34977. },
  34978. },
  34979. [
  34980. {
  34981. name: "Normal",
  34982. height: math.unit(5 + 5/12, "feet"),
  34983. default: true
  34984. },
  34985. ]
  34986. ))
  34987. characterMakers.push(() => makeCharacter(
  34988. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34989. {
  34990. front: {
  34991. height: math.unit(6 + 3/12, "feet"),
  34992. name: "Front",
  34993. image: {
  34994. source: "./media/characters/silvy/front.svg",
  34995. extra: 1995/1836,
  34996. bottom: 225/2220
  34997. }
  34998. },
  34999. },
  35000. [
  35001. {
  35002. name: "Normal",
  35003. height: math.unit(6 + 3/12, "feet"),
  35004. default: true
  35005. },
  35006. ]
  35007. ))
  35008. characterMakers.push(() => makeCharacter(
  35009. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35010. {
  35011. front: {
  35012. height: math.unit(3 + 8/12, "feet"),
  35013. name: "Front",
  35014. image: {
  35015. source: "./media/characters/rodney/front.svg",
  35016. extra: 1956/1747,
  35017. bottom: 31/1987
  35018. }
  35019. },
  35020. frontDressed: {
  35021. height: math.unit(2.9, "feet"),
  35022. name: "Front (Dressed)",
  35023. image: {
  35024. source: "./media/characters/rodney/front-dressed.svg",
  35025. extra: 1382/1241,
  35026. bottom: 385/1767
  35027. }
  35028. },
  35029. },
  35030. [
  35031. {
  35032. name: "Normal",
  35033. height: math.unit(3 + 8/12, "feet"),
  35034. default: true
  35035. },
  35036. ]
  35037. ))
  35038. characterMakers.push(() => makeCharacter(
  35039. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35040. {
  35041. front: {
  35042. height: math.unit(5 + 9/12, "feet"),
  35043. weight: math.unit(194, "lbs"),
  35044. name: "Front",
  35045. image: {
  35046. source: "./media/characters/zakail-sudekai/front.svg",
  35047. extra: 2696/2533,
  35048. bottom: 248/2944
  35049. }
  35050. },
  35051. maw: {
  35052. height: math.unit(1.35, "feet"),
  35053. name: "Maw",
  35054. image: {
  35055. source: "./media/characters/zakail-sudekai/maw.svg"
  35056. }
  35057. },
  35058. },
  35059. [
  35060. {
  35061. name: "Normal",
  35062. height: math.unit(5 + 9/12, "feet"),
  35063. default: true
  35064. },
  35065. ]
  35066. ))
  35067. characterMakers.push(() => makeCharacter(
  35068. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35069. {
  35070. front: {
  35071. height: math.unit(8 + 4/12, "feet"),
  35072. weight: math.unit(1200, "lb"),
  35073. name: "Front",
  35074. image: {
  35075. source: "./media/characters/eleanor/front.svg",
  35076. extra: 1226/1192,
  35077. bottom: 52/1278
  35078. }
  35079. },
  35080. back: {
  35081. height: math.unit(8 + 4/12, "feet"),
  35082. weight: math.unit(1200, "lb"),
  35083. name: "Back",
  35084. image: {
  35085. source: "./media/characters/eleanor/back.svg",
  35086. extra: 1242/1184,
  35087. bottom: 60/1302
  35088. }
  35089. },
  35090. head: {
  35091. height: math.unit(2.62, "feet"),
  35092. name: "Head",
  35093. image: {
  35094. source: "./media/characters/eleanor/head.svg"
  35095. }
  35096. },
  35097. },
  35098. [
  35099. {
  35100. name: "Normal",
  35101. height: math.unit(8 + 4/12, "feet"),
  35102. default: true
  35103. },
  35104. ]
  35105. ))
  35106. characterMakers.push(() => makeCharacter(
  35107. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35108. {
  35109. front: {
  35110. height: math.unit(8 + 4/12, "feet"),
  35111. weight: math.unit(750, "lb"),
  35112. name: "Front",
  35113. image: {
  35114. source: "./media/characters/tanya/front.svg",
  35115. extra: 1749/1615,
  35116. bottom: 33/1782
  35117. }
  35118. },
  35119. },
  35120. [
  35121. {
  35122. name: "Normal",
  35123. height: math.unit(8 + 4/12, "feet"),
  35124. default: true
  35125. },
  35126. ]
  35127. ))
  35128. characterMakers.push(() => makeCharacter(
  35129. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35130. {
  35131. front: {
  35132. height: math.unit(5, "feet"),
  35133. weight: math.unit(225, "lb"),
  35134. name: "Front",
  35135. image: {
  35136. source: "./media/characters/cindy/front.svg",
  35137. extra: 1320/1250,
  35138. bottom: 42/1362
  35139. }
  35140. },
  35141. frontDressed: {
  35142. height: math.unit(5, "feet"),
  35143. weight: math.unit(225, "lb"),
  35144. name: "Front (Dressed)",
  35145. image: {
  35146. source: "./media/characters/cindy/front-dressed.svg",
  35147. extra: 1320/1250,
  35148. bottom: 42/1362
  35149. }
  35150. },
  35151. back: {
  35152. height: math.unit(5, "feet"),
  35153. weight: math.unit(225, "lb"),
  35154. name: "Back",
  35155. image: {
  35156. source: "./media/characters/cindy/back.svg",
  35157. extra: 1384/1346,
  35158. bottom: 14/1398
  35159. }
  35160. },
  35161. },
  35162. [
  35163. {
  35164. name: "Normal",
  35165. height: math.unit(5, "feet"),
  35166. default: true
  35167. },
  35168. ]
  35169. ))
  35170. characterMakers.push(() => makeCharacter(
  35171. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35172. {
  35173. front: {
  35174. height: math.unit(6 + 9/12, "feet"),
  35175. weight: math.unit(440, "lb"),
  35176. name: "Front",
  35177. image: {
  35178. source: "./media/characters/wilbur-owen/front.svg",
  35179. extra: 1575/1448,
  35180. bottom: 72/1647
  35181. }
  35182. },
  35183. back: {
  35184. height: math.unit(6 + 9/12, "feet"),
  35185. weight: math.unit(440, "lb"),
  35186. name: "Back",
  35187. image: {
  35188. source: "./media/characters/wilbur-owen/back.svg",
  35189. extra: 1578/1445,
  35190. bottom: 36/1614
  35191. }
  35192. },
  35193. },
  35194. [
  35195. {
  35196. name: "Normal",
  35197. height: math.unit(6 + 9/12, "feet"),
  35198. default: true
  35199. },
  35200. ]
  35201. ))
  35202. characterMakers.push(() => makeCharacter(
  35203. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35204. {
  35205. front: {
  35206. height: math.unit(6 + 5/12, "feet"),
  35207. weight: math.unit(650, "lb"),
  35208. name: "Front",
  35209. image: {
  35210. source: "./media/characters/keegan/front.svg",
  35211. extra: 2387/2198,
  35212. bottom: 33/2420
  35213. }
  35214. },
  35215. side: {
  35216. height: math.unit(6 + 5/12, "feet"),
  35217. weight: math.unit(650, "lb"),
  35218. name: "Side",
  35219. image: {
  35220. source: "./media/characters/keegan/side.svg",
  35221. extra: 2390/2202,
  35222. bottom: 47/2437
  35223. }
  35224. },
  35225. back: {
  35226. height: math.unit(6 + 5/12, "feet"),
  35227. weight: math.unit(650, "lb"),
  35228. name: "Back",
  35229. image: {
  35230. source: "./media/characters/keegan/back.svg",
  35231. extra: 2418/2268,
  35232. bottom: 15/2433
  35233. }
  35234. },
  35235. frontSfw: {
  35236. height: math.unit(6 + 5/12, "feet"),
  35237. weight: math.unit(650, "lb"),
  35238. name: "Front (SFW)",
  35239. image: {
  35240. source: "./media/characters/keegan/front-sfw.svg",
  35241. extra: 2387/2198,
  35242. bottom: 33/2420
  35243. }
  35244. },
  35245. beans: {
  35246. height: math.unit(1.85, "feet"),
  35247. name: "Beans",
  35248. image: {
  35249. source: "./media/characters/keegan/beans.svg"
  35250. }
  35251. },
  35252. },
  35253. [
  35254. {
  35255. name: "Normal",
  35256. height: math.unit(6 + 5/12, "feet"),
  35257. default: true
  35258. },
  35259. ]
  35260. ))
  35261. characterMakers.push(() => makeCharacter(
  35262. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35263. {
  35264. front: {
  35265. height: math.unit(9, "feet"),
  35266. name: "Front",
  35267. image: {
  35268. source: "./media/characters/colton/front.svg",
  35269. extra: 1589/1326,
  35270. bottom: 139/1728
  35271. }
  35272. },
  35273. },
  35274. [
  35275. {
  35276. name: "Normal",
  35277. height: math.unit(9, "feet"),
  35278. default: true
  35279. },
  35280. ]
  35281. ))
  35282. characterMakers.push(() => makeCharacter(
  35283. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35284. {
  35285. front: {
  35286. height: math.unit(2 + 9/12, "feet"),
  35287. name: "Front",
  35288. image: {
  35289. source: "./media/characters/bora/front.svg",
  35290. extra: 1265/1250,
  35291. bottom: 24/1289
  35292. }
  35293. },
  35294. },
  35295. [
  35296. {
  35297. name: "Normal",
  35298. height: math.unit(2 + 9/12, "feet"),
  35299. default: true
  35300. },
  35301. ]
  35302. ))
  35303. characterMakers.push(() => makeCharacter(
  35304. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35305. {
  35306. front: {
  35307. height: math.unit(8, "feet"),
  35308. name: "Front",
  35309. image: {
  35310. source: "./media/characters/myu-myu/front.svg",
  35311. extra: 1949/1857,
  35312. bottom: 90/2039
  35313. }
  35314. },
  35315. },
  35316. [
  35317. {
  35318. name: "Normal",
  35319. height: math.unit(8, "feet"),
  35320. default: true
  35321. },
  35322. {
  35323. name: "Big",
  35324. height: math.unit(15, "feet")
  35325. },
  35326. {
  35327. name: "BIG",
  35328. height: math.unit(25, "feet")
  35329. },
  35330. ]
  35331. ))
  35332. characterMakers.push(() => makeCharacter(
  35333. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35334. {
  35335. side: {
  35336. height: math.unit(7 + 5/12, "feet"),
  35337. weight: math.unit(2800, "lb"),
  35338. name: "Side",
  35339. image: {
  35340. source: "./media/characters/haloren/side.svg",
  35341. extra: 1793/409,
  35342. bottom: 59/1852
  35343. }
  35344. },
  35345. frontPaw: {
  35346. height: math.unit(2.36, "feet"),
  35347. name: "Front paw",
  35348. image: {
  35349. source: "./media/characters/haloren/front-paw.svg"
  35350. }
  35351. },
  35352. hindPaw: {
  35353. height: math.unit(3.18, "feet"),
  35354. name: "Hind paw",
  35355. image: {
  35356. source: "./media/characters/haloren/hind-paw.svg"
  35357. }
  35358. },
  35359. maw: {
  35360. height: math.unit(5.05, "feet"),
  35361. name: "Maw",
  35362. image: {
  35363. source: "./media/characters/haloren/maw.svg"
  35364. }
  35365. },
  35366. dick: {
  35367. height: math.unit(2.90, "feet"),
  35368. name: "Dick",
  35369. image: {
  35370. source: "./media/characters/haloren/dick.svg"
  35371. }
  35372. },
  35373. },
  35374. [
  35375. {
  35376. name: "Normal",
  35377. height: math.unit(7 + 5/12, "feet"),
  35378. default: true
  35379. },
  35380. {
  35381. name: "Enhanced",
  35382. height: math.unit(14 + 3/12, "feet")
  35383. },
  35384. ]
  35385. ))
  35386. characterMakers.push(() => makeCharacter(
  35387. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35388. {
  35389. front: {
  35390. height: math.unit(171, "cm"),
  35391. name: "Front",
  35392. image: {
  35393. source: "./media/characters/kimmy/front.svg",
  35394. extra: 1491/1435,
  35395. bottom: 53/1544
  35396. }
  35397. },
  35398. },
  35399. [
  35400. {
  35401. name: "Small",
  35402. height: math.unit(9, "cm")
  35403. },
  35404. {
  35405. name: "Normal",
  35406. height: math.unit(171, "cm"),
  35407. default: true
  35408. },
  35409. ]
  35410. ))
  35411. characterMakers.push(() => makeCharacter(
  35412. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35413. {
  35414. front: {
  35415. height: math.unit(8, "feet"),
  35416. weight: math.unit(300, "lb"),
  35417. name: "Front",
  35418. image: {
  35419. source: "./media/characters/galeboomer/front.svg",
  35420. extra: 4651/4415,
  35421. bottom: 162/4813
  35422. }
  35423. },
  35424. back: {
  35425. height: math.unit(8, "feet"),
  35426. weight: math.unit(300, "lb"),
  35427. name: "Back",
  35428. image: {
  35429. source: "./media/characters/galeboomer/back.svg",
  35430. extra: 4544/4314,
  35431. bottom: 16/4560
  35432. }
  35433. },
  35434. frontAlt: {
  35435. height: math.unit(8, "feet"),
  35436. weight: math.unit(300, "lb"),
  35437. name: "Front (Alt)",
  35438. image: {
  35439. source: "./media/characters/galeboomer/front-alt.svg",
  35440. extra: 4458/4228,
  35441. bottom: 68/4526
  35442. }
  35443. },
  35444. maw: {
  35445. height: math.unit(1.2, "feet"),
  35446. name: "Maw",
  35447. image: {
  35448. source: "./media/characters/galeboomer/maw.svg"
  35449. }
  35450. },
  35451. },
  35452. [
  35453. {
  35454. name: "Normal",
  35455. height: math.unit(8, "feet"),
  35456. default: true
  35457. },
  35458. ]
  35459. ))
  35460. characterMakers.push(() => makeCharacter(
  35461. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35462. {
  35463. front: {
  35464. height: math.unit(5 + 9/12, "feet"),
  35465. weight: math.unit(120, "lb"),
  35466. name: "Front",
  35467. image: {
  35468. source: "./media/characters/chyr/front.svg",
  35469. extra: 1323/1254,
  35470. bottom: 63/1386
  35471. }
  35472. },
  35473. back: {
  35474. height: math.unit(5 + 9/12, "feet"),
  35475. weight: math.unit(120, "lb"),
  35476. name: "Back",
  35477. image: {
  35478. source: "./media/characters/chyr/back.svg",
  35479. extra: 1323/1252,
  35480. bottom: 48/1371
  35481. }
  35482. },
  35483. },
  35484. [
  35485. {
  35486. name: "Normal",
  35487. height: math.unit(5 + 9/12, "feet"),
  35488. default: true
  35489. },
  35490. ]
  35491. ))
  35492. characterMakers.push(() => makeCharacter(
  35493. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35494. {
  35495. front: {
  35496. height: math.unit(7, "feet"),
  35497. weight: math.unit(310, "lb"),
  35498. name: "Front",
  35499. image: {
  35500. source: "./media/characters/solarus/front.svg",
  35501. extra: 2415/2021,
  35502. bottom: 103/2518
  35503. }
  35504. },
  35505. back: {
  35506. height: math.unit(7, "feet"),
  35507. weight: math.unit(310, "lb"),
  35508. name: "Back",
  35509. image: {
  35510. source: "./media/characters/solarus/back.svg",
  35511. extra: 2463/2089,
  35512. bottom: 79/2542
  35513. }
  35514. },
  35515. },
  35516. [
  35517. {
  35518. name: "Normal",
  35519. height: math.unit(7, "feet"),
  35520. default: true
  35521. },
  35522. ]
  35523. ))
  35524. characterMakers.push(() => makeCharacter(
  35525. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35526. {
  35527. front: {
  35528. height: math.unit(16, "feet"),
  35529. name: "Front",
  35530. image: {
  35531. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35532. extra: 1844/1780,
  35533. bottom: 58/1902
  35534. }
  35535. },
  35536. },
  35537. [
  35538. {
  35539. name: "Normal",
  35540. height: math.unit(16, "feet"),
  35541. default: true
  35542. },
  35543. ]
  35544. ))
  35545. characterMakers.push(() => makeCharacter(
  35546. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35547. {
  35548. front: {
  35549. height: math.unit(11 + 6/12, "feet"),
  35550. weight: math.unit(1366, "lb"),
  35551. name: "Front",
  35552. image: {
  35553. source: "./media/characters/lexor/front.svg",
  35554. extra: 1560/1481,
  35555. bottom: 211/1771
  35556. }
  35557. },
  35558. back: {
  35559. height: math.unit(11 + 6/12, "feet"),
  35560. weight: math.unit(1366, "lb"),
  35561. name: "Back",
  35562. image: {
  35563. source: "./media/characters/lexor/back.svg",
  35564. extra: 1614/1533,
  35565. bottom: 76/1690
  35566. }
  35567. },
  35568. maw: {
  35569. height: math.unit(3, "feet"),
  35570. name: "Maw",
  35571. image: {
  35572. source: "./media/characters/lexor/maw.svg"
  35573. }
  35574. },
  35575. dick: {
  35576. height: math.unit(2.59, "feet"),
  35577. name: "Dick",
  35578. image: {
  35579. source: "./media/characters/lexor/dick.svg"
  35580. }
  35581. },
  35582. },
  35583. [
  35584. {
  35585. name: "Normal",
  35586. height: math.unit(11 + 6/12, "feet"),
  35587. default: true
  35588. },
  35589. ]
  35590. ))
  35591. characterMakers.push(() => makeCharacter(
  35592. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35593. {
  35594. front: {
  35595. height: math.unit(5 + 8/12, "feet"),
  35596. name: "Front",
  35597. image: {
  35598. source: "./media/characters/magnum/front.svg",
  35599. extra: 942/855,
  35600. bottom: 26/968
  35601. }
  35602. },
  35603. },
  35604. [
  35605. {
  35606. name: "Normal",
  35607. height: math.unit(5 + 8/12, "feet"),
  35608. default: true
  35609. },
  35610. ]
  35611. ))
  35612. characterMakers.push(() => makeCharacter(
  35613. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35614. {
  35615. front: {
  35616. height: math.unit(18 + 4/12, "feet"),
  35617. weight: math.unit(1500, "kg"),
  35618. name: "Front",
  35619. image: {
  35620. source: "./media/characters/solas-sharpsman/front.svg",
  35621. extra: 1698/1589,
  35622. bottom: 0/1698
  35623. }
  35624. },
  35625. },
  35626. [
  35627. {
  35628. name: "Normal",
  35629. height: math.unit(18 + 4/12, "feet"),
  35630. default: true
  35631. },
  35632. ]
  35633. ))
  35634. characterMakers.push(() => makeCharacter(
  35635. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35636. {
  35637. front: {
  35638. height: math.unit(5 + 5/12, "feet"),
  35639. weight: math.unit(180, "lb"),
  35640. name: "Front",
  35641. image: {
  35642. source: "./media/characters/october/front.svg",
  35643. extra: 1800/1650,
  35644. bottom: 0/1800
  35645. }
  35646. },
  35647. frontNsfw: {
  35648. height: math.unit(5 + 5/12, "feet"),
  35649. weight: math.unit(180, "lb"),
  35650. name: "Front (NSFW)",
  35651. image: {
  35652. source: "./media/characters/october/front-nsfw.svg",
  35653. extra: 1392/1307,
  35654. bottom: 42/1434
  35655. }
  35656. },
  35657. },
  35658. [
  35659. {
  35660. name: "Normal",
  35661. height: math.unit(5 + 5/12, "feet"),
  35662. default: true
  35663. },
  35664. ]
  35665. ))
  35666. characterMakers.push(() => makeCharacter(
  35667. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35668. {
  35669. front: {
  35670. height: math.unit(8 + 6/12, "feet"),
  35671. name: "Front",
  35672. image: {
  35673. source: "./media/characters/essynkardi/front.svg",
  35674. extra: 1914/1846,
  35675. bottom: 22/1936
  35676. }
  35677. },
  35678. },
  35679. [
  35680. {
  35681. name: "Normal",
  35682. height: math.unit(8 + 6/12, "feet"),
  35683. default: true
  35684. },
  35685. ]
  35686. ))
  35687. characterMakers.push(() => makeCharacter(
  35688. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35689. {
  35690. front: {
  35691. height: math.unit(6 + 6/12, "feet"),
  35692. weight: math.unit(7, "lb"),
  35693. name: "Front",
  35694. image: {
  35695. source: "./media/characters/icky/front.svg",
  35696. extra: 813/782,
  35697. bottom: 66/879
  35698. }
  35699. },
  35700. back: {
  35701. height: math.unit(6 + 6/12, "feet"),
  35702. weight: math.unit(7, "lb"),
  35703. name: "Back",
  35704. image: {
  35705. source: "./media/characters/icky/back.svg",
  35706. extra: 754/735,
  35707. bottom: 56/810
  35708. }
  35709. },
  35710. },
  35711. [
  35712. {
  35713. name: "Normal",
  35714. height: math.unit(6 + 6/12, "feet"),
  35715. default: true
  35716. },
  35717. ]
  35718. ))
  35719. characterMakers.push(() => makeCharacter(
  35720. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35721. {
  35722. front: {
  35723. height: math.unit(15, "feet"),
  35724. name: "Front",
  35725. image: {
  35726. source: "./media/characters/rojas/front.svg",
  35727. extra: 1462/1408,
  35728. bottom: 95/1557
  35729. }
  35730. },
  35731. back: {
  35732. height: math.unit(15, "feet"),
  35733. name: "Back",
  35734. image: {
  35735. source: "./media/characters/rojas/back.svg",
  35736. extra: 1023/954,
  35737. bottom: 28/1051
  35738. }
  35739. },
  35740. },
  35741. [
  35742. {
  35743. name: "Normal",
  35744. height: math.unit(15, "feet"),
  35745. default: true
  35746. },
  35747. ]
  35748. ))
  35749. characterMakers.push(() => makeCharacter(
  35750. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35751. {
  35752. frontHuman: {
  35753. height: math.unit(5 + 7/12, "feet"),
  35754. name: "Front (Human)",
  35755. image: {
  35756. source: "./media/characters/alek-dryagan/front-human.svg",
  35757. extra: 1687/1667,
  35758. bottom: 69/1756
  35759. }
  35760. },
  35761. backHuman: {
  35762. height: math.unit(5 + 7/12, "feet"),
  35763. name: "Back (Human)",
  35764. image: {
  35765. source: "./media/characters/alek-dryagan/back-human.svg",
  35766. extra: 1670/1649,
  35767. bottom: 65/1735
  35768. }
  35769. },
  35770. frontDemi: {
  35771. height: math.unit(65, "feet"),
  35772. name: "Front (Demi)",
  35773. image: {
  35774. source: "./media/characters/alek-dryagan/front-demi.svg",
  35775. extra: 1669/1642,
  35776. bottom: 49/1718
  35777. }
  35778. },
  35779. backDemi: {
  35780. height: math.unit(65, "feet"),
  35781. name: "Back (Demi)",
  35782. image: {
  35783. source: "./media/characters/alek-dryagan/back-demi.svg",
  35784. extra: 1658/1637,
  35785. bottom: 40/1698
  35786. }
  35787. },
  35788. mawHuman: {
  35789. height: math.unit(0.3, "feet"),
  35790. name: "Maw (Human)",
  35791. image: {
  35792. source: "./media/characters/alek-dryagan/maw-human.svg"
  35793. }
  35794. },
  35795. mawDemi: {
  35796. height: math.unit(3.8, "feet"),
  35797. name: "Maw (Demi)",
  35798. image: {
  35799. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35800. }
  35801. },
  35802. },
  35803. [
  35804. {
  35805. name: "Normal",
  35806. height: math.unit(5 + 7/12, "feet"),
  35807. default: true
  35808. },
  35809. ]
  35810. ))
  35811. characterMakers.push(() => makeCharacter(
  35812. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35813. {
  35814. frontHuman: {
  35815. height: math.unit(5 + 2/12, "feet"),
  35816. name: "Front (Human)",
  35817. image: {
  35818. source: "./media/characters/gen/front-human.svg",
  35819. extra: 1627/1538,
  35820. bottom: 71/1698
  35821. }
  35822. },
  35823. backHuman: {
  35824. height: math.unit(5 + 2/12, "feet"),
  35825. name: "Back (Human)",
  35826. image: {
  35827. source: "./media/characters/gen/back-human.svg",
  35828. extra: 1638/1548,
  35829. bottom: 69/1707
  35830. }
  35831. },
  35832. frontDemi: {
  35833. height: math.unit(5 + 2/12, "feet"),
  35834. name: "Front (Demi)",
  35835. image: {
  35836. source: "./media/characters/gen/front-demi.svg",
  35837. extra: 1627/1538,
  35838. bottom: 71/1698
  35839. }
  35840. },
  35841. backDemi: {
  35842. height: math.unit(5 + 2/12, "feet"),
  35843. name: "Back (Demi)",
  35844. image: {
  35845. source: "./media/characters/gen/back-demi.svg",
  35846. extra: 1638/1548,
  35847. bottom: 69/1707
  35848. }
  35849. },
  35850. },
  35851. [
  35852. {
  35853. name: "Normal",
  35854. height: math.unit(5 + 2/12, "feet"),
  35855. default: true
  35856. },
  35857. ]
  35858. ))
  35859. characterMakers.push(() => makeCharacter(
  35860. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35861. {
  35862. frontImp: {
  35863. height: math.unit(1 + 11/12, "feet"),
  35864. name: "Front (Imp)",
  35865. image: {
  35866. source: "./media/characters/max-kobold/front-imp.svg",
  35867. extra: 1238/1134,
  35868. bottom: 81/1319
  35869. }
  35870. },
  35871. backImp: {
  35872. height: math.unit(1 + 11/12, "feet"),
  35873. name: "Back (Imp)",
  35874. image: {
  35875. source: "./media/characters/max-kobold/back-imp.svg",
  35876. extra: 1334/1175,
  35877. bottom: 34/1368
  35878. }
  35879. },
  35880. frontDemi: {
  35881. height: math.unit(5 + 9/12, "feet"),
  35882. name: "Front (Demi)",
  35883. image: {
  35884. source: "./media/characters/max-kobold/front-demi.svg",
  35885. extra: 1715/1685,
  35886. bottom: 54/1769
  35887. }
  35888. },
  35889. backDemi: {
  35890. height: math.unit(5 + 9/12, "feet"),
  35891. name: "Back (Demi)",
  35892. image: {
  35893. source: "./media/characters/max-kobold/back-demi.svg",
  35894. extra: 1752/1729,
  35895. bottom: 41/1793
  35896. }
  35897. },
  35898. handImp: {
  35899. height: math.unit(0.45, "feet"),
  35900. name: "Hand (Imp)",
  35901. image: {
  35902. source: "./media/characters/max-kobold/hand.svg"
  35903. }
  35904. },
  35905. pawImp: {
  35906. height: math.unit(0.46, "feet"),
  35907. name: "Paw (Imp)",
  35908. image: {
  35909. source: "./media/characters/max-kobold/paw.svg"
  35910. }
  35911. },
  35912. handDemi: {
  35913. height: math.unit(0.80, "feet"),
  35914. name: "Hand (Demi)",
  35915. image: {
  35916. source: "./media/characters/max-kobold/hand.svg"
  35917. }
  35918. },
  35919. pawDemi: {
  35920. height: math.unit(1.1, "feet"),
  35921. name: "Paw (Demi)",
  35922. image: {
  35923. source: "./media/characters/max-kobold/paw.svg"
  35924. }
  35925. },
  35926. headImp: {
  35927. height: math.unit(1.33, "feet"),
  35928. name: "Head (Imp)",
  35929. image: {
  35930. source: "./media/characters/max-kobold/head-imp.svg"
  35931. }
  35932. },
  35933. mawImp: {
  35934. height: math.unit(0.75, "feet"),
  35935. name: "Maw (Imp)",
  35936. image: {
  35937. source: "./media/characters/max-kobold/maw-imp.svg"
  35938. }
  35939. },
  35940. mawDemi: {
  35941. height: math.unit(0.42, "feet"),
  35942. name: "Maw (Demi)",
  35943. image: {
  35944. source: "./media/characters/max-kobold/maw-demi.svg"
  35945. }
  35946. },
  35947. },
  35948. [
  35949. {
  35950. name: "Normal",
  35951. height: math.unit(1 + 11/12, "feet"),
  35952. default: true
  35953. },
  35954. ]
  35955. ))
  35956. characterMakers.push(() => makeCharacter(
  35957. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35958. {
  35959. front: {
  35960. height: math.unit(7 + 5/12, "feet"),
  35961. name: "Front",
  35962. image: {
  35963. source: "./media/characters/carbon/front.svg",
  35964. extra: 1754/1689,
  35965. bottom: 65/1819
  35966. }
  35967. },
  35968. back: {
  35969. height: math.unit(7 + 5/12, "feet"),
  35970. name: "Back",
  35971. image: {
  35972. source: "./media/characters/carbon/back.svg",
  35973. extra: 1762/1695,
  35974. bottom: 24/1786
  35975. }
  35976. },
  35977. frontGigantamax: {
  35978. height: math.unit(150, "feet"),
  35979. name: "Front (Gigantamax)",
  35980. image: {
  35981. source: "./media/characters/carbon/front-gigantamax.svg",
  35982. extra: 1826/1669,
  35983. bottom: 59/1885
  35984. }
  35985. },
  35986. backGigantamax: {
  35987. height: math.unit(150, "feet"),
  35988. name: "Back (Gigantamax)",
  35989. image: {
  35990. source: "./media/characters/carbon/back-gigantamax.svg",
  35991. extra: 1796/1653,
  35992. bottom: 53/1849
  35993. }
  35994. },
  35995. maw: {
  35996. height: math.unit(0.48, "feet"),
  35997. name: "Maw",
  35998. image: {
  35999. source: "./media/characters/carbon/maw.svg"
  36000. }
  36001. },
  36002. mawGigantamax: {
  36003. height: math.unit(7.5, "feet"),
  36004. name: "Maw (Gigantamax)",
  36005. image: {
  36006. source: "./media/characters/carbon/maw-gigantamax.svg"
  36007. }
  36008. },
  36009. },
  36010. [
  36011. {
  36012. name: "Normal",
  36013. height: math.unit(7 + 5/12, "feet"),
  36014. default: true
  36015. },
  36016. ]
  36017. ))
  36018. characterMakers.push(() => makeCharacter(
  36019. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36020. {
  36021. front: {
  36022. height: math.unit(6, "feet"),
  36023. name: "Front",
  36024. image: {
  36025. source: "./media/characters/maverick/front.svg",
  36026. extra: 1672/1661,
  36027. bottom: 85/1757
  36028. }
  36029. },
  36030. back: {
  36031. height: math.unit(6, "feet"),
  36032. name: "Back",
  36033. image: {
  36034. source: "./media/characters/maverick/back.svg",
  36035. extra: 1642/1631,
  36036. bottom: 38/1680
  36037. }
  36038. },
  36039. },
  36040. [
  36041. {
  36042. name: "Normal",
  36043. height: math.unit(6, "feet"),
  36044. default: true
  36045. },
  36046. ]
  36047. ))
  36048. characterMakers.push(() => makeCharacter(
  36049. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36050. {
  36051. front: {
  36052. height: math.unit(15, "feet"),
  36053. weight: math.unit(615, "lb"),
  36054. name: "Front",
  36055. image: {
  36056. source: "./media/characters/grockle/front.svg",
  36057. extra: 1535/1427,
  36058. bottom: 56/1591
  36059. }
  36060. },
  36061. },
  36062. [
  36063. {
  36064. name: "Normal",
  36065. height: math.unit(15, "feet"),
  36066. default: true
  36067. },
  36068. {
  36069. name: "Large",
  36070. height: math.unit(150, "feet")
  36071. },
  36072. {
  36073. name: "Macro",
  36074. height: math.unit(1876, "feet")
  36075. },
  36076. {
  36077. name: "Mega Macro",
  36078. height: math.unit(121940, "feet")
  36079. },
  36080. {
  36081. name: "Giga Macro",
  36082. height: math.unit(750, "km")
  36083. },
  36084. {
  36085. name: "Tera Macro",
  36086. height: math.unit(750000, "km")
  36087. },
  36088. {
  36089. name: "Galactic",
  36090. height: math.unit(1.4e5, "km")
  36091. },
  36092. {
  36093. name: "Godlike",
  36094. height: math.unit(9.8e280, "galaxies")
  36095. },
  36096. ]
  36097. ))
  36098. characterMakers.push(() => makeCharacter(
  36099. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36100. {
  36101. front: {
  36102. height: math.unit(11, "meters"),
  36103. weight: math.unit(20, "tonnes"),
  36104. name: "Front",
  36105. image: {
  36106. source: "./media/characters/alistair/front.svg",
  36107. extra: 1265/1009,
  36108. bottom: 93/1358
  36109. }
  36110. },
  36111. },
  36112. [
  36113. {
  36114. name: "Normal",
  36115. height: math.unit(11, "meters"),
  36116. default: true
  36117. },
  36118. ]
  36119. ))
  36120. characterMakers.push(() => makeCharacter(
  36121. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36122. {
  36123. front: {
  36124. height: math.unit(5 + 8/12, "feet"),
  36125. name: "Front",
  36126. image: {
  36127. source: "./media/characters/haruka/front.svg",
  36128. extra: 2012/1952,
  36129. bottom: 0/2012
  36130. }
  36131. },
  36132. },
  36133. [
  36134. {
  36135. name: "Normal",
  36136. height: math.unit(5 + 8/12, "feet"),
  36137. default: true
  36138. },
  36139. ]
  36140. ))
  36141. characterMakers.push(() => makeCharacter(
  36142. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36143. {
  36144. back: {
  36145. height: math.unit(9, "feet"),
  36146. name: "Back",
  36147. image: {
  36148. source: "./media/characters/vivian-sylveon/back.svg",
  36149. extra: 1853/1714,
  36150. bottom: 0/1853
  36151. }
  36152. },
  36153. },
  36154. [
  36155. {
  36156. name: "Normal",
  36157. height: math.unit(9, "feet"),
  36158. default: true
  36159. },
  36160. {
  36161. name: "Macro",
  36162. height: math.unit(500, "feet")
  36163. },
  36164. {
  36165. name: "Megamacro",
  36166. height: math.unit(600, "miles")
  36167. },
  36168. {
  36169. name: "Gigamacro",
  36170. height: math.unit(30000, "miles")
  36171. },
  36172. ]
  36173. ))
  36174. characterMakers.push(() => makeCharacter(
  36175. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36176. {
  36177. anthro: {
  36178. height: math.unit(5 + 10/12, "feet"),
  36179. weight: math.unit(100, "lb"),
  36180. name: "Anthro",
  36181. image: {
  36182. source: "./media/characters/daiki/anthro.svg",
  36183. extra: 1115/1027,
  36184. bottom: 69/1184
  36185. }
  36186. },
  36187. feral: {
  36188. height: math.unit(200, "feet"),
  36189. name: "Feral",
  36190. image: {
  36191. source: "./media/characters/daiki/feral.svg",
  36192. extra: 1256/313,
  36193. bottom: 39/1295
  36194. }
  36195. },
  36196. feralHead: {
  36197. height: math.unit(171, "feet"),
  36198. name: "Feral Head",
  36199. image: {
  36200. source: "./media/characters/daiki/feral-head.svg"
  36201. }
  36202. },
  36203. },
  36204. [
  36205. {
  36206. name: "Normal",
  36207. height: math.unit(5 + 10/12, "feet"),
  36208. default: true
  36209. },
  36210. ]
  36211. ))
  36212. characterMakers.push(() => makeCharacter(
  36213. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36214. {
  36215. fullyEquippedFront: {
  36216. height: math.unit(3 + 1/12, "feet"),
  36217. weight: math.unit(24, "lb"),
  36218. name: "Fully Equipped (Front)",
  36219. image: {
  36220. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36221. extra: 687/605,
  36222. bottom: 18/705
  36223. }
  36224. },
  36225. fullyEquippedBack: {
  36226. height: math.unit(3 + 1/12, "feet"),
  36227. weight: math.unit(24, "lb"),
  36228. name: "Fully Equipped (Back)",
  36229. image: {
  36230. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36231. extra: 689/590,
  36232. bottom: 18/707
  36233. }
  36234. },
  36235. dailyWear: {
  36236. height: math.unit(3 + 1/12, "feet"),
  36237. weight: math.unit(24, "lb"),
  36238. name: "Daily Wear",
  36239. image: {
  36240. source: "./media/characters/tea-spot/daily-wear.svg",
  36241. extra: 701/620,
  36242. bottom: 21/722
  36243. }
  36244. },
  36245. maidWork: {
  36246. height: math.unit(3 + 1/12, "feet"),
  36247. weight: math.unit(24, "lb"),
  36248. name: "Maid Work",
  36249. image: {
  36250. source: "./media/characters/tea-spot/maid-work.svg",
  36251. extra: 693/609,
  36252. bottom: 15/708
  36253. }
  36254. },
  36255. },
  36256. [
  36257. {
  36258. name: "Normal",
  36259. height: math.unit(3 + 1/12, "feet"),
  36260. default: true
  36261. },
  36262. ]
  36263. ))
  36264. characterMakers.push(() => makeCharacter(
  36265. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36266. {
  36267. front: {
  36268. height: math.unit(175, "cm"),
  36269. weight: math.unit(75, "kg"),
  36270. name: "Front",
  36271. image: {
  36272. source: "./media/characters/chee/front.svg",
  36273. extra: 1796/1740,
  36274. bottom: 40/1836
  36275. }
  36276. },
  36277. },
  36278. [
  36279. {
  36280. name: "Micro-Micro",
  36281. height: math.unit(1, "nm")
  36282. },
  36283. {
  36284. name: "Micro-erst",
  36285. height: math.unit(1, "micrometer")
  36286. },
  36287. {
  36288. name: "Micro-er",
  36289. height: math.unit(1, "cm")
  36290. },
  36291. {
  36292. name: "Normal",
  36293. height: math.unit(175, "cm"),
  36294. default: true
  36295. },
  36296. {
  36297. name: "Macro",
  36298. height: math.unit(100, "m")
  36299. },
  36300. {
  36301. name: "Macro-er",
  36302. height: math.unit(1, "km")
  36303. },
  36304. {
  36305. name: "Macro-erst",
  36306. height: math.unit(10, "km")
  36307. },
  36308. {
  36309. name: "Macro-Macro",
  36310. height: math.unit(100, "km")
  36311. },
  36312. ]
  36313. ))
  36314. characterMakers.push(() => makeCharacter(
  36315. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36316. {
  36317. front: {
  36318. height: math.unit(11 + 9/12, "feet"),
  36319. weight: math.unit(935, "lb"),
  36320. name: "Front",
  36321. image: {
  36322. source: "./media/characters/kingsley/front.svg",
  36323. extra: 1803/1674,
  36324. bottom: 127/1930
  36325. }
  36326. },
  36327. frontNude: {
  36328. height: math.unit(11 + 9/12, "feet"),
  36329. weight: math.unit(935, "lb"),
  36330. name: "Front (Nude)",
  36331. image: {
  36332. source: "./media/characters/kingsley/front-nude.svg",
  36333. extra: 1803/1674,
  36334. bottom: 127/1930
  36335. }
  36336. },
  36337. },
  36338. [
  36339. {
  36340. name: "Normal",
  36341. height: math.unit(11 + 9/12, "feet"),
  36342. default: true
  36343. },
  36344. ]
  36345. ))
  36346. characterMakers.push(() => makeCharacter(
  36347. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36348. {
  36349. side: {
  36350. height: math.unit(9, "feet"),
  36351. name: "Side",
  36352. image: {
  36353. source: "./media/characters/rymel/side.svg",
  36354. extra: 792/469,
  36355. bottom: 121/913
  36356. }
  36357. },
  36358. maw: {
  36359. height: math.unit(2.4, "meters"),
  36360. name: "Maw",
  36361. image: {
  36362. source: "./media/characters/rymel/maw.svg"
  36363. }
  36364. },
  36365. },
  36366. [
  36367. {
  36368. name: "House Drake",
  36369. height: math.unit(2, "feet")
  36370. },
  36371. {
  36372. name: "Reduced",
  36373. height: math.unit(4.5, "feet")
  36374. },
  36375. {
  36376. name: "Normal",
  36377. height: math.unit(9, "feet"),
  36378. default: true
  36379. },
  36380. ]
  36381. ))
  36382. characterMakers.push(() => makeCharacter(
  36383. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36384. {
  36385. front: {
  36386. height: math.unit(1.74, "meters"),
  36387. weight: math.unit(55, "kg"),
  36388. name: "Front",
  36389. image: {
  36390. source: "./media/characters/rubus/front.svg",
  36391. extra: 1894/1742,
  36392. bottom: 44/1938
  36393. }
  36394. },
  36395. },
  36396. [
  36397. {
  36398. name: "Normal",
  36399. height: math.unit(1.74, "meters"),
  36400. default: true
  36401. },
  36402. ]
  36403. ))
  36404. characterMakers.push(() => makeCharacter(
  36405. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36406. {
  36407. front: {
  36408. height: math.unit(5 + 2/12, "feet"),
  36409. weight: math.unit(112, "lb"),
  36410. name: "Front",
  36411. image: {
  36412. source: "./media/characters/cassie-kingston/front.svg",
  36413. extra: 1438/1390,
  36414. bottom: 47/1485
  36415. }
  36416. },
  36417. },
  36418. [
  36419. {
  36420. name: "Normal",
  36421. height: math.unit(5 + 2/12, "feet"),
  36422. default: true
  36423. },
  36424. {
  36425. name: "Macro",
  36426. height: math.unit(128, "feet")
  36427. },
  36428. {
  36429. name: "Megamacro",
  36430. height: math.unit(2.56, "miles")
  36431. },
  36432. ]
  36433. ))
  36434. characterMakers.push(() => makeCharacter(
  36435. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36436. {
  36437. front: {
  36438. height: math.unit(7, "feet"),
  36439. name: "Front",
  36440. image: {
  36441. source: "./media/characters/fox/front.svg",
  36442. extra: 1798/1703,
  36443. bottom: 55/1853
  36444. }
  36445. },
  36446. back: {
  36447. height: math.unit(7, "feet"),
  36448. name: "Back",
  36449. image: {
  36450. source: "./media/characters/fox/back.svg",
  36451. extra: 1748/1649,
  36452. bottom: 32/1780
  36453. }
  36454. },
  36455. head: {
  36456. height: math.unit(1.95, "feet"),
  36457. name: "Head",
  36458. image: {
  36459. source: "./media/characters/fox/head.svg"
  36460. }
  36461. },
  36462. dick: {
  36463. height: math.unit(1.33, "feet"),
  36464. name: "Dick",
  36465. image: {
  36466. source: "./media/characters/fox/dick.svg"
  36467. }
  36468. },
  36469. foot: {
  36470. height: math.unit(1, "feet"),
  36471. name: "Foot",
  36472. image: {
  36473. source: "./media/characters/fox/foot.svg"
  36474. }
  36475. },
  36476. paw: {
  36477. height: math.unit(0.92, "feet"),
  36478. name: "Paw",
  36479. image: {
  36480. source: "./media/characters/fox/paw.svg"
  36481. }
  36482. },
  36483. },
  36484. [
  36485. {
  36486. name: "Small",
  36487. height: math.unit(3, "inches")
  36488. },
  36489. {
  36490. name: "\"Realistic\"",
  36491. height: math.unit(7, "feet")
  36492. },
  36493. {
  36494. name: "Normal",
  36495. height: math.unit(150, "feet"),
  36496. default: true
  36497. },
  36498. {
  36499. name: "BIG",
  36500. height: math.unit(1200, "feet")
  36501. },
  36502. {
  36503. name: "👀",
  36504. height: math.unit(5, "miles")
  36505. },
  36506. {
  36507. name: "👀👀👀",
  36508. height: math.unit(64, "miles")
  36509. },
  36510. ]
  36511. ))
  36512. characterMakers.push(() => makeCharacter(
  36513. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36514. {
  36515. front: {
  36516. height: math.unit(625, "feet"),
  36517. name: "Front",
  36518. image: {
  36519. source: "./media/characters/asonja-rossa/front.svg",
  36520. extra: 1833/1686,
  36521. bottom: 24/1857
  36522. }
  36523. },
  36524. back: {
  36525. height: math.unit(625, "feet"),
  36526. name: "Back",
  36527. image: {
  36528. source: "./media/characters/asonja-rossa/back.svg",
  36529. extra: 1852/1753,
  36530. bottom: 26/1878
  36531. }
  36532. },
  36533. },
  36534. [
  36535. {
  36536. name: "Macro",
  36537. height: math.unit(625, "feet"),
  36538. default: true
  36539. },
  36540. ]
  36541. ))
  36542. characterMakers.push(() => makeCharacter(
  36543. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36544. {
  36545. side: {
  36546. height: math.unit(6, "feet"),
  36547. weight: math.unit(150, "lb"),
  36548. name: "Side",
  36549. image: {
  36550. source: "./media/characters/rezukii/side.svg",
  36551. extra: 979/542,
  36552. bottom: 87/1066
  36553. }
  36554. },
  36555. },
  36556. [
  36557. {
  36558. name: "Tiny",
  36559. height: math.unit(2, "feet")
  36560. },
  36561. {
  36562. name: "Smol",
  36563. height: math.unit(4, "feet")
  36564. },
  36565. {
  36566. name: "Normal",
  36567. height: math.unit(8, "feet"),
  36568. default: true
  36569. },
  36570. {
  36571. name: "Big",
  36572. height: math.unit(12, "feet")
  36573. },
  36574. {
  36575. name: "Macro",
  36576. height: math.unit(30, "feet")
  36577. },
  36578. ]
  36579. ))
  36580. characterMakers.push(() => makeCharacter(
  36581. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36582. {
  36583. front: {
  36584. height: math.unit(14, "feet"),
  36585. weight: math.unit(9.5, "tonnes"),
  36586. name: "Front",
  36587. image: {
  36588. source: "./media/characters/dawnheart/front.svg",
  36589. extra: 2792/2675,
  36590. bottom: 64/2856
  36591. }
  36592. },
  36593. },
  36594. [
  36595. {
  36596. name: "Normal",
  36597. height: math.unit(14, "feet"),
  36598. default: true
  36599. },
  36600. ]
  36601. ))
  36602. characterMakers.push(() => makeCharacter(
  36603. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36604. {
  36605. front: {
  36606. height: math.unit(1.7, "m"),
  36607. name: "Front",
  36608. image: {
  36609. source: "./media/characters/gladi/front.svg",
  36610. extra: 1460/1362,
  36611. bottom: 19/1479
  36612. }
  36613. },
  36614. back: {
  36615. height: math.unit(1.7, "m"),
  36616. name: "Back",
  36617. image: {
  36618. source: "./media/characters/gladi/back.svg",
  36619. extra: 1459/1357,
  36620. bottom: 12/1471
  36621. }
  36622. },
  36623. feral: {
  36624. height: math.unit(2.05, "m"),
  36625. name: "Feral",
  36626. image: {
  36627. source: "./media/characters/gladi/feral.svg",
  36628. extra: 821/557,
  36629. bottom: 91/912
  36630. }
  36631. },
  36632. },
  36633. [
  36634. {
  36635. name: "Shortest",
  36636. height: math.unit(70, "cm")
  36637. },
  36638. {
  36639. name: "Normal",
  36640. height: math.unit(1.7, "m")
  36641. },
  36642. {
  36643. name: "Macro",
  36644. height: math.unit(10, "m"),
  36645. default: true
  36646. },
  36647. {
  36648. name: "Tallest",
  36649. height: math.unit(200, "m")
  36650. },
  36651. ]
  36652. ))
  36653. characterMakers.push(() => makeCharacter(
  36654. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36655. {
  36656. front: {
  36657. height: math.unit(5 + 7/12, "feet"),
  36658. weight: math.unit(92, "kg"),
  36659. name: "Front",
  36660. image: {
  36661. source: "./media/characters/erdno/front.svg",
  36662. extra: 1954/1889,
  36663. bottom: 22/1976
  36664. }
  36665. },
  36666. },
  36667. [
  36668. {
  36669. name: "Normal",
  36670. height: math.unit(5 + 7/12, "feet"),
  36671. default: true
  36672. },
  36673. ]
  36674. ))
  36675. characterMakers.push(() => makeCharacter(
  36676. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36677. {
  36678. front: {
  36679. height: math.unit(5 + 10/12, "feet"),
  36680. weight: math.unit(150, "lb"),
  36681. name: "Front",
  36682. image: {
  36683. source: "./media/characters/jamie/front.svg",
  36684. extra: 1908/1768,
  36685. bottom: 19/1927
  36686. }
  36687. },
  36688. },
  36689. [
  36690. {
  36691. name: "Minimum",
  36692. height: math.unit(2, "cm")
  36693. },
  36694. {
  36695. name: "Micro",
  36696. height: math.unit(3, "inches")
  36697. },
  36698. {
  36699. name: "Normal",
  36700. height: math.unit(5 + 10/12, "feet"),
  36701. default: true
  36702. },
  36703. {
  36704. name: "Macro",
  36705. height: math.unit(150, "feet")
  36706. },
  36707. {
  36708. name: "Megamacro",
  36709. height: math.unit(10000, "m")
  36710. },
  36711. ]
  36712. ))
  36713. characterMakers.push(() => makeCharacter(
  36714. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36715. {
  36716. front: {
  36717. height: math.unit(2, "meters"),
  36718. weight: math.unit(100, "kg"),
  36719. name: "Front",
  36720. image: {
  36721. source: "./media/characters/shiron/front.svg",
  36722. extra: 2103/1985,
  36723. bottom: 98/2201
  36724. }
  36725. },
  36726. back: {
  36727. height: math.unit(2, "meters"),
  36728. weight: math.unit(100, "kg"),
  36729. name: "Back",
  36730. image: {
  36731. source: "./media/characters/shiron/back.svg",
  36732. extra: 2110/2015,
  36733. bottom: 89/2199
  36734. }
  36735. },
  36736. hand: {
  36737. height: math.unit(0.96, "feet"),
  36738. name: "Hand",
  36739. image: {
  36740. source: "./media/characters/shiron/hand.svg"
  36741. }
  36742. },
  36743. foot: {
  36744. height: math.unit(1.464, "feet"),
  36745. name: "Foot",
  36746. image: {
  36747. source: "./media/characters/shiron/foot.svg"
  36748. }
  36749. },
  36750. },
  36751. [
  36752. {
  36753. name: "Normal",
  36754. height: math.unit(2, "meters")
  36755. },
  36756. {
  36757. name: "Macro",
  36758. height: math.unit(500, "meters"),
  36759. default: true
  36760. },
  36761. {
  36762. name: "Megamacro",
  36763. height: math.unit(20, "km")
  36764. },
  36765. ]
  36766. ))
  36767. characterMakers.push(() => makeCharacter(
  36768. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36769. {
  36770. front: {
  36771. height: math.unit(6, "feet"),
  36772. name: "Front",
  36773. image: {
  36774. source: "./media/characters/sam/front.svg",
  36775. extra: 849/826,
  36776. bottom: 19/868
  36777. }
  36778. },
  36779. },
  36780. [
  36781. {
  36782. name: "Normal",
  36783. height: math.unit(6, "feet"),
  36784. default: true
  36785. },
  36786. ]
  36787. ))
  36788. characterMakers.push(() => makeCharacter(
  36789. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36790. {
  36791. front: {
  36792. height: math.unit(8 + 4/12, "feet"),
  36793. weight: math.unit(122, "kg"),
  36794. name: "Front",
  36795. image: {
  36796. source: "./media/characters/namori-kurogawa/front.svg",
  36797. extra: 1894/1576,
  36798. bottom: 34/1928
  36799. }
  36800. },
  36801. },
  36802. [
  36803. {
  36804. name: "Normal",
  36805. height: math.unit(8 + 4/12, "feet"),
  36806. default: true
  36807. },
  36808. ]
  36809. ))
  36810. characterMakers.push(() => makeCharacter(
  36811. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36812. {
  36813. front: {
  36814. height: math.unit(9, "feet"),
  36815. weight: math.unit(621, "lb"),
  36816. name: "Front",
  36817. image: {
  36818. source: "./media/characters/unmru/front.svg",
  36819. extra: 1853/1747,
  36820. bottom: 73/1926
  36821. }
  36822. },
  36823. side: {
  36824. height: math.unit(9, "feet"),
  36825. weight: math.unit(621, "lb"),
  36826. name: "Side",
  36827. image: {
  36828. source: "./media/characters/unmru/side.svg",
  36829. extra: 1781/1671,
  36830. bottom: 127/1908
  36831. }
  36832. },
  36833. back: {
  36834. height: math.unit(9, "feet"),
  36835. weight: math.unit(621, "lb"),
  36836. name: "Back",
  36837. image: {
  36838. source: "./media/characters/unmru/back.svg",
  36839. extra: 1894/1765,
  36840. bottom: 75/1969
  36841. }
  36842. },
  36843. dick: {
  36844. height: math.unit(3, "feet"),
  36845. weight: math.unit(35, "lb"),
  36846. name: "Dick",
  36847. image: {
  36848. source: "./media/characters/unmru/dick.svg"
  36849. }
  36850. },
  36851. },
  36852. [
  36853. {
  36854. name: "Normal",
  36855. height: math.unit(9, "feet")
  36856. },
  36857. {
  36858. name: "Natural",
  36859. height: math.unit(27, "feet"),
  36860. default: true
  36861. },
  36862. {
  36863. name: "Giant",
  36864. height: math.unit(90, "feet")
  36865. },
  36866. {
  36867. name: "Kaiju",
  36868. height: math.unit(270, "feet")
  36869. },
  36870. {
  36871. name: "Macro",
  36872. height: math.unit(900, "feet")
  36873. },
  36874. {
  36875. name: "Macro+",
  36876. height: math.unit(2700, "feet")
  36877. },
  36878. {
  36879. name: "Megamacro",
  36880. height: math.unit(9000, "feet")
  36881. },
  36882. {
  36883. name: "City-Crushing",
  36884. height: math.unit(27000, "feet")
  36885. },
  36886. {
  36887. name: "Mountain-Mashing",
  36888. height: math.unit(90000, "feet")
  36889. },
  36890. {
  36891. name: "Earth-Eclipsing",
  36892. height: math.unit(2.7e8, "feet")
  36893. },
  36894. {
  36895. name: "Sol-Swallowing",
  36896. height: math.unit(9e10, "feet")
  36897. },
  36898. {
  36899. name: "Majoris-Munching",
  36900. height: math.unit(2.7e13, "feet")
  36901. },
  36902. ]
  36903. ))
  36904. characterMakers.push(() => makeCharacter(
  36905. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  36906. {
  36907. front: {
  36908. height: math.unit(1, "inch"),
  36909. name: "Front",
  36910. image: {
  36911. source: "./media/characters/squeaks-mouse/front.svg",
  36912. extra: 352/308,
  36913. bottom: 25/377
  36914. }
  36915. },
  36916. },
  36917. [
  36918. {
  36919. name: "Micro",
  36920. height: math.unit(1, "inch"),
  36921. default: true
  36922. },
  36923. ]
  36924. ))
  36925. characterMakers.push(() => makeCharacter(
  36926. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  36927. {
  36928. side: {
  36929. height: math.unit(35, "feet"),
  36930. name: "Side",
  36931. image: {
  36932. source: "./media/characters/sayko/side.svg",
  36933. extra: 1697/1021,
  36934. bottom: 82/1779
  36935. }
  36936. },
  36937. head: {
  36938. height: math.unit(16, "feet"),
  36939. name: "Head",
  36940. image: {
  36941. source: "./media/characters/sayko/head.svg"
  36942. }
  36943. },
  36944. forepaw: {
  36945. height: math.unit(7.85, "feet"),
  36946. name: "Forepaw",
  36947. image: {
  36948. source: "./media/characters/sayko/forepaw.svg"
  36949. }
  36950. },
  36951. hindpaw: {
  36952. height: math.unit(8.8, "feet"),
  36953. name: "Hindpaw",
  36954. image: {
  36955. source: "./media/characters/sayko/hindpaw.svg"
  36956. }
  36957. },
  36958. },
  36959. [
  36960. {
  36961. name: "Normal",
  36962. height: math.unit(35, "feet"),
  36963. default: true
  36964. },
  36965. {
  36966. name: "Colossus",
  36967. height: math.unit(100, "meters")
  36968. },
  36969. {
  36970. name: "\"Small\" Deity",
  36971. height: math.unit(1, "km")
  36972. },
  36973. {
  36974. name: "\"Large\" Deity",
  36975. height: math.unit(15, "km")
  36976. },
  36977. ]
  36978. ))
  36979. characterMakers.push(() => makeCharacter(
  36980. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  36981. {
  36982. front: {
  36983. height: math.unit(6, "feet"),
  36984. weight: math.unit(250, "lb"),
  36985. name: "Front",
  36986. image: {
  36987. source: "./media/characters/mukiro/front.svg",
  36988. extra: 1368/1310,
  36989. bottom: 34/1402
  36990. }
  36991. },
  36992. },
  36993. [
  36994. {
  36995. name: "Normal",
  36996. height: math.unit(6, "feet"),
  36997. default: true
  36998. },
  36999. ]
  37000. ))
  37001. characterMakers.push(() => makeCharacter(
  37002. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37003. {
  37004. front: {
  37005. height: math.unit(12 + 4/12, "feet"),
  37006. name: "Front",
  37007. image: {
  37008. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37009. extra: 1346/1311,
  37010. bottom: 65/1411
  37011. }
  37012. },
  37013. },
  37014. [
  37015. {
  37016. name: "Base",
  37017. height: math.unit(12 + 4/12, "feet"),
  37018. default: true
  37019. },
  37020. {
  37021. name: "Macro",
  37022. height: math.unit(150, "feet")
  37023. },
  37024. {
  37025. name: "Mega",
  37026. height: math.unit(2, "miles")
  37027. },
  37028. {
  37029. name: "Demi God",
  37030. height: math.unit(4, "AU")
  37031. },
  37032. {
  37033. name: "God Size",
  37034. height: math.unit(1, "universe")
  37035. },
  37036. ]
  37037. ))
  37038. characterMakers.push(() => makeCharacter(
  37039. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37040. {
  37041. front: {
  37042. height: math.unit(3 + 3/12, "feet"),
  37043. weight: math.unit(88, "lb"),
  37044. name: "Front",
  37045. image: {
  37046. source: "./media/characters/trey/front.svg",
  37047. extra: 1815/1509,
  37048. bottom: 60/1875
  37049. }
  37050. },
  37051. },
  37052. [
  37053. {
  37054. name: "Normal",
  37055. height: math.unit(3 + 3/12, "feet"),
  37056. default: true
  37057. },
  37058. ]
  37059. ))
  37060. characterMakers.push(() => makeCharacter(
  37061. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37062. {
  37063. front: {
  37064. height: math.unit(4, "meters"),
  37065. name: "Front",
  37066. image: {
  37067. source: "./media/characters/adelonda/front.svg",
  37068. extra: 1942/1775,
  37069. bottom: 33/1975
  37070. }
  37071. },
  37072. back: {
  37073. height: math.unit(4, "meters"),
  37074. name: "Back",
  37075. image: {
  37076. source: "./media/characters/adelonda/back.svg",
  37077. extra: 1932/1780,
  37078. bottom: 42/1974
  37079. }
  37080. },
  37081. bust: {
  37082. height: math.unit(1.8, "meter"),
  37083. name: "Bust",
  37084. image: {
  37085. source: "./media/characters/adelonda/bust.svg"
  37086. }
  37087. },
  37088. },
  37089. [
  37090. {
  37091. name: "Normal",
  37092. height: math.unit(4, "meters"),
  37093. default: true
  37094. },
  37095. ]
  37096. ))
  37097. characterMakers.push(() => makeCharacter(
  37098. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37099. {
  37100. front: {
  37101. height: math.unit(8 + 4/12, "feet"),
  37102. weight: math.unit(670, "lb"),
  37103. name: "Front",
  37104. image: {
  37105. source: "./media/characters/acadiel/front.svg",
  37106. extra: 1901/1595,
  37107. bottom: 142/2043
  37108. }
  37109. },
  37110. },
  37111. [
  37112. {
  37113. name: "Normal",
  37114. height: math.unit(8 + 4/12, "feet"),
  37115. default: true
  37116. },
  37117. {
  37118. name: "Macro",
  37119. height: math.unit(200, "feet")
  37120. },
  37121. ]
  37122. ))
  37123. characterMakers.push(() => makeCharacter(
  37124. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37125. {
  37126. front: {
  37127. height: math.unit(6 + 2/12, "feet"),
  37128. weight: math.unit(185, "lb"),
  37129. name: "Front",
  37130. image: {
  37131. source: "./media/characters/kayne-ein/front.svg",
  37132. extra: 1780/1560,
  37133. bottom: 81/1861
  37134. }
  37135. },
  37136. },
  37137. [
  37138. {
  37139. name: "Normal",
  37140. height: math.unit(6 + 2/12, "feet"),
  37141. default: true
  37142. },
  37143. {
  37144. name: "Transformation Stage",
  37145. height: math.unit(15, "feet")
  37146. },
  37147. {
  37148. name: "Macro",
  37149. height: math.unit(150, "feet")
  37150. },
  37151. {
  37152. name: "Earth's Shadow",
  37153. height: math.unit(6200, "miles")
  37154. },
  37155. {
  37156. name: "Universal Demon",
  37157. height: math.unit(28e9, "parsecs")
  37158. },
  37159. {
  37160. name: "Multiverse God",
  37161. height: math.unit(3, "multiverses")
  37162. },
  37163. ]
  37164. ))
  37165. characterMakers.push(() => makeCharacter(
  37166. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37167. {
  37168. front: {
  37169. height: math.unit(5 + 5/12, "feet"),
  37170. name: "Front",
  37171. image: {
  37172. source: "./media/characters/fawn/front.svg",
  37173. extra: 1873/1731,
  37174. bottom: 95/1968
  37175. }
  37176. },
  37177. back: {
  37178. height: math.unit(5 + 5/12, "feet"),
  37179. name: "Back",
  37180. image: {
  37181. source: "./media/characters/fawn/back.svg",
  37182. extra: 1813/1700,
  37183. bottom: 14/1827
  37184. }
  37185. },
  37186. hoof: {
  37187. height: math.unit(1.45, "feet"),
  37188. name: "Hoof",
  37189. image: {
  37190. source: "./media/characters/fawn/hoof.svg"
  37191. }
  37192. },
  37193. },
  37194. [
  37195. {
  37196. name: "Normal",
  37197. height: math.unit(5 + 5/12, "feet"),
  37198. default: true
  37199. },
  37200. ]
  37201. ))
  37202. characterMakers.push(() => makeCharacter(
  37203. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37204. {
  37205. front: {
  37206. height: math.unit(2 + 5/12, "feet"),
  37207. name: "Front",
  37208. image: {
  37209. source: "./media/characters/orion/front.svg",
  37210. extra: 1366/1304,
  37211. bottom: 43/1409
  37212. }
  37213. },
  37214. paw: {
  37215. height: math.unit(0.52, "feet"),
  37216. name: "Paw",
  37217. image: {
  37218. source: "./media/characters/orion/paw.svg"
  37219. }
  37220. },
  37221. },
  37222. [
  37223. {
  37224. name: "Normal",
  37225. height: math.unit(2 + 5/12, "feet"),
  37226. default: true
  37227. },
  37228. ]
  37229. ))
  37230. characterMakers.push(() => makeCharacter(
  37231. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37232. {
  37233. front: {
  37234. height: math.unit(5 + 10/12, "feet"),
  37235. name: "Front",
  37236. image: {
  37237. source: "./media/characters/vera/front.svg",
  37238. extra: 1680/1575,
  37239. bottom: 49/1729
  37240. }
  37241. },
  37242. back: {
  37243. height: math.unit(5 + 10/12, "feet"),
  37244. name: "Back",
  37245. image: {
  37246. source: "./media/characters/vera/back.svg",
  37247. extra: 1700/1588,
  37248. bottom: 18/1718
  37249. }
  37250. },
  37251. arcanine: {
  37252. height: math.unit(6 + 8/12, "feet"),
  37253. name: "Arcanine",
  37254. image: {
  37255. source: "./media/characters/vera/arcanine.svg",
  37256. extra: 1590/1511,
  37257. bottom: 71/1661
  37258. }
  37259. },
  37260. maw: {
  37261. height: math.unit(0.82, "feet"),
  37262. name: "Maw",
  37263. image: {
  37264. source: "./media/characters/vera/maw.svg"
  37265. }
  37266. },
  37267. mawArcanine: {
  37268. height: math.unit(0.97, "feet"),
  37269. name: "Maw (Arcanine)",
  37270. image: {
  37271. source: "./media/characters/vera/maw-arcanine.svg"
  37272. }
  37273. },
  37274. paw: {
  37275. height: math.unit(0.75, "feet"),
  37276. name: "Paw",
  37277. image: {
  37278. source: "./media/characters/vera/paw.svg"
  37279. }
  37280. },
  37281. pawprint: {
  37282. height: math.unit(0.52, "feet"),
  37283. name: "Pawprint",
  37284. image: {
  37285. source: "./media/characters/vera/pawprint.svg"
  37286. }
  37287. },
  37288. },
  37289. [
  37290. {
  37291. name: "Normal",
  37292. height: math.unit(5 + 10/12, "feet"),
  37293. default: true
  37294. },
  37295. {
  37296. name: "Macro",
  37297. height: math.unit(75, "feet")
  37298. },
  37299. ]
  37300. ))
  37301. characterMakers.push(() => makeCharacter(
  37302. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37303. {
  37304. front: {
  37305. height: math.unit(4, "feet"),
  37306. weight: math.unit(40, "lb"),
  37307. name: "Front",
  37308. image: {
  37309. source: "./media/characters/orvan-rabbit/front.svg",
  37310. extra: 1896/1642,
  37311. bottom: 29/1925
  37312. }
  37313. },
  37314. },
  37315. [
  37316. {
  37317. name: "Normal",
  37318. height: math.unit(4, "feet"),
  37319. default: true
  37320. },
  37321. ]
  37322. ))
  37323. characterMakers.push(() => makeCharacter(
  37324. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37325. {
  37326. front: {
  37327. height: math.unit(6, "feet"),
  37328. weight: math.unit(168, "lb"),
  37329. name: "Front",
  37330. image: {
  37331. source: "./media/characters/lisa/front.svg",
  37332. extra: 2065/1867,
  37333. bottom: 46/2111
  37334. }
  37335. },
  37336. back: {
  37337. height: math.unit(6, "feet"),
  37338. weight: math.unit(168, "lb"),
  37339. name: "Back",
  37340. image: {
  37341. source: "./media/characters/lisa/back.svg",
  37342. extra: 1982/1838,
  37343. bottom: 29/2011
  37344. }
  37345. },
  37346. maw: {
  37347. height: math.unit(0.81, "feet"),
  37348. name: "Maw",
  37349. image: {
  37350. source: "./media/characters/lisa/maw.svg"
  37351. }
  37352. },
  37353. paw: {
  37354. height: math.unit(0.9, "feet"),
  37355. name: "Paw",
  37356. image: {
  37357. source: "./media/characters/lisa/paw.svg"
  37358. }
  37359. },
  37360. caribousune: {
  37361. height: math.unit(7 + 2/12, "feet"),
  37362. weight: math.unit(268, "lb"),
  37363. name: "Caribousune",
  37364. image: {
  37365. source: "./media/characters/lisa/caribousune.svg",
  37366. extra: 1843/1633,
  37367. bottom: 29/1872
  37368. }
  37369. },
  37370. frontCaribousune: {
  37371. height: math.unit(7 + 2/12, "feet"),
  37372. weight: math.unit(268, "lb"),
  37373. name: "Front (Caribousune)",
  37374. image: {
  37375. source: "./media/characters/lisa/front-caribousune.svg",
  37376. extra: 1818/1638,
  37377. bottom: 52/1870
  37378. }
  37379. },
  37380. sideCaribousune: {
  37381. height: math.unit(7 + 2/12, "feet"),
  37382. weight: math.unit(268, "lb"),
  37383. name: "Side (Caribousune)",
  37384. image: {
  37385. source: "./media/characters/lisa/side-caribousune.svg",
  37386. extra: 1851/1635,
  37387. bottom: 16/1867
  37388. }
  37389. },
  37390. backCaribousune: {
  37391. height: math.unit(7 + 2/12, "feet"),
  37392. weight: math.unit(268, "lb"),
  37393. name: "Back (Caribousune)",
  37394. image: {
  37395. source: "./media/characters/lisa/back-caribousune.svg",
  37396. extra: 1801/1604,
  37397. bottom: 44/1845
  37398. }
  37399. },
  37400. caribou: {
  37401. height: math.unit(7 + 2/12, "feet"),
  37402. weight: math.unit(268, "lb"),
  37403. name: "Caribou",
  37404. image: {
  37405. source: "./media/characters/lisa/caribou.svg",
  37406. extra: 1843/1633,
  37407. bottom: 29/1872
  37408. }
  37409. },
  37410. frontCaribou: {
  37411. height: math.unit(7 + 2/12, "feet"),
  37412. weight: math.unit(268, "lb"),
  37413. name: "Front (Caribou)",
  37414. image: {
  37415. source: "./media/characters/lisa/front-caribou.svg",
  37416. extra: 1818/1638,
  37417. bottom: 52/1870
  37418. }
  37419. },
  37420. sideCaribou: {
  37421. height: math.unit(7 + 2/12, "feet"),
  37422. weight: math.unit(268, "lb"),
  37423. name: "Side (Caribou)",
  37424. image: {
  37425. source: "./media/characters/lisa/side-caribou.svg",
  37426. extra: 1851/1635,
  37427. bottom: 16/1867
  37428. }
  37429. },
  37430. backCaribou: {
  37431. height: math.unit(7 + 2/12, "feet"),
  37432. weight: math.unit(268, "lb"),
  37433. name: "Back (Caribou)",
  37434. image: {
  37435. source: "./media/characters/lisa/back-caribou.svg",
  37436. extra: 1801/1604,
  37437. bottom: 44/1845
  37438. }
  37439. },
  37440. mawCaribou: {
  37441. height: math.unit(1.45, "feet"),
  37442. name: "Maw (Caribou)",
  37443. image: {
  37444. source: "./media/characters/lisa/maw-caribou.svg"
  37445. }
  37446. },
  37447. mawCaribousune: {
  37448. height: math.unit(1.45, "feet"),
  37449. name: "Maw (Caribousune)",
  37450. image: {
  37451. source: "./media/characters/lisa/maw-caribousune.svg"
  37452. }
  37453. },
  37454. pawCaribousune: {
  37455. height: math.unit(1.61, "feet"),
  37456. name: "Paw (Caribou)",
  37457. image: {
  37458. source: "./media/characters/lisa/paw-caribousune.svg"
  37459. }
  37460. },
  37461. },
  37462. [
  37463. {
  37464. name: "Normal",
  37465. height: math.unit(6, "feet")
  37466. },
  37467. {
  37468. name: "God Size",
  37469. height: math.unit(72, "feet"),
  37470. default: true
  37471. },
  37472. {
  37473. name: "Towering",
  37474. height: math.unit(288, "feet")
  37475. },
  37476. {
  37477. name: "City Size",
  37478. height: math.unit(48384, "feet")
  37479. },
  37480. {
  37481. name: "Continental",
  37482. height: math.unit(4200, "miles")
  37483. },
  37484. {
  37485. name: "Planet Eater",
  37486. height: math.unit(42, "earths")
  37487. },
  37488. {
  37489. name: "Star Swallower",
  37490. height: math.unit(42, "solarradii")
  37491. },
  37492. {
  37493. name: "System Swallower",
  37494. height: math.unit(84000, "AU")
  37495. },
  37496. {
  37497. name: "Galaxy Gobbler",
  37498. height: math.unit(42, "galaxies")
  37499. },
  37500. {
  37501. name: "Universe Devourer",
  37502. height: math.unit(42, "universes")
  37503. },
  37504. {
  37505. name: "Multiverse Muncher",
  37506. height: math.unit(42, "multiverses")
  37507. },
  37508. ]
  37509. ))
  37510. characterMakers.push(() => makeCharacter(
  37511. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37512. {
  37513. front: {
  37514. height: math.unit(36, "feet"),
  37515. name: "Front",
  37516. image: {
  37517. source: "./media/characters/shadow-rat/front.svg",
  37518. extra: 1845/1758,
  37519. bottom: 83/1928
  37520. }
  37521. },
  37522. },
  37523. [
  37524. {
  37525. name: "Macro",
  37526. height: math.unit(36, "feet"),
  37527. default: true
  37528. },
  37529. ]
  37530. ))
  37531. characterMakers.push(() => makeCharacter(
  37532. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37533. {
  37534. side: {
  37535. height: math.unit(8, "feet"),
  37536. weight: math.unit(2630, "lb"),
  37537. name: "Side",
  37538. image: {
  37539. source: "./media/characters/torallia/side.svg",
  37540. extra: 2164/2021,
  37541. bottom: 371/2535
  37542. }
  37543. },
  37544. },
  37545. [
  37546. {
  37547. name: "Mortal Interaction",
  37548. height: math.unit(8, "feet")
  37549. },
  37550. {
  37551. name: "Natural",
  37552. height: math.unit(24, "feet"),
  37553. default: true
  37554. },
  37555. {
  37556. name: "Giant",
  37557. height: math.unit(80, "feet")
  37558. },
  37559. {
  37560. name: "Kaiju",
  37561. height: math.unit(240, "feet")
  37562. },
  37563. {
  37564. name: "Macro",
  37565. height: math.unit(800, "feet")
  37566. },
  37567. {
  37568. name: "Macro+",
  37569. height: math.unit(2400, "feet")
  37570. },
  37571. {
  37572. name: "Macro++",
  37573. height: math.unit(8000, "feet")
  37574. },
  37575. {
  37576. name: "City-Crushing",
  37577. height: math.unit(24000, "feet")
  37578. },
  37579. {
  37580. name: "Mountain-Mashing",
  37581. height: math.unit(80000, "feet")
  37582. },
  37583. {
  37584. name: "District Demolisher",
  37585. height: math.unit(240000, "feet")
  37586. },
  37587. {
  37588. name: "Tri-County Terror",
  37589. height: math.unit(800000, "feet")
  37590. },
  37591. {
  37592. name: "State Smasher",
  37593. height: math.unit(2.4e6, "feet")
  37594. },
  37595. {
  37596. name: "Nation Nemesis",
  37597. height: math.unit(8e6, "feet")
  37598. },
  37599. {
  37600. name: "Continent Cracker",
  37601. height: math.unit(2.4e7, "feet")
  37602. },
  37603. {
  37604. name: "Planet-Pillaging",
  37605. height: math.unit(8e7, "feet")
  37606. },
  37607. {
  37608. name: "Earth-Eclipsing",
  37609. height: math.unit(2.4e8, "feet")
  37610. },
  37611. {
  37612. name: "Jovian-Jostling",
  37613. height: math.unit(8e8, "feet")
  37614. },
  37615. {
  37616. name: "Gas Giant Gulper",
  37617. height: math.unit(2.4e9, "feet")
  37618. },
  37619. {
  37620. name: "Astral Annihilator",
  37621. height: math.unit(8e9, "feet")
  37622. },
  37623. {
  37624. name: "Celestial Conqueror",
  37625. height: math.unit(2.4e10, "feet")
  37626. },
  37627. {
  37628. name: "Sol-Swallowing",
  37629. height: math.unit(8e10, "feet")
  37630. },
  37631. {
  37632. name: "Hunter of the Heavens",
  37633. height: math.unit(2.4e13, "feet")
  37634. },
  37635. ]
  37636. ))
  37637. characterMakers.push(() => makeCharacter(
  37638. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37639. {
  37640. front: {
  37641. height: math.unit(6 + 8/12, "feet"),
  37642. name: "Front",
  37643. image: {
  37644. source: "./media/characters/rebecca-pawlson/front.svg",
  37645. extra: 1737/1596,
  37646. bottom: 107/1844
  37647. }
  37648. },
  37649. back: {
  37650. height: math.unit(6 + 8/12, "feet"),
  37651. name: "Back",
  37652. image: {
  37653. source: "./media/characters/rebecca-pawlson/back.svg",
  37654. extra: 1702/1523,
  37655. bottom: 86/1788
  37656. }
  37657. },
  37658. },
  37659. [
  37660. {
  37661. name: "Normal",
  37662. height: math.unit(6 + 8/12, "feet")
  37663. },
  37664. {
  37665. name: "Mini Macro",
  37666. height: math.unit(10, "feet"),
  37667. default: true
  37668. },
  37669. {
  37670. name: "Macro",
  37671. height: math.unit(100, "feet")
  37672. },
  37673. {
  37674. name: "Mega Macro",
  37675. height: math.unit(2500, "feet")
  37676. },
  37677. {
  37678. name: "Giga Macro",
  37679. height: math.unit(50, "miles")
  37680. },
  37681. ]
  37682. ))
  37683. characterMakers.push(() => makeCharacter(
  37684. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37685. {
  37686. front: {
  37687. height: math.unit(7 + 6/12, "feet"),
  37688. weight: math.unit(600, "lb"),
  37689. name: "Front",
  37690. image: {
  37691. source: "./media/characters/moxie-nova/front.svg",
  37692. extra: 1734/1652,
  37693. bottom: 41/1775
  37694. }
  37695. },
  37696. },
  37697. [
  37698. {
  37699. name: "Normal",
  37700. height: math.unit(7 + 6/12, "feet"),
  37701. default: true
  37702. },
  37703. ]
  37704. ))
  37705. characterMakers.push(() => makeCharacter(
  37706. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37707. {
  37708. front: {
  37709. height: math.unit(5, "feet"),
  37710. weight: math.unit(150, "lb"),
  37711. name: "Front",
  37712. image: {
  37713. source: "./media/characters/tiffany/front.svg",
  37714. extra: 1941/1845,
  37715. bottom: 58/1999
  37716. }
  37717. },
  37718. },
  37719. [
  37720. {
  37721. name: "Normal",
  37722. height: math.unit(5, "feet"),
  37723. default: true
  37724. },
  37725. ]
  37726. ))
  37727. characterMakers.push(() => makeCharacter(
  37728. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37729. {
  37730. front: {
  37731. height: math.unit(8, "feet"),
  37732. weight: math.unit(300, "lb"),
  37733. name: "Front",
  37734. image: {
  37735. source: "./media/characters/raxinath/front.svg",
  37736. extra: 1407/1309,
  37737. bottom: 39/1446
  37738. }
  37739. },
  37740. back: {
  37741. height: math.unit(8, "feet"),
  37742. weight: math.unit(300, "lb"),
  37743. name: "Back",
  37744. image: {
  37745. source: "./media/characters/raxinath/back.svg",
  37746. extra: 1405/1315,
  37747. bottom: 9/1414
  37748. }
  37749. },
  37750. },
  37751. [
  37752. {
  37753. name: "Speck",
  37754. height: math.unit(0.5, "nm")
  37755. },
  37756. {
  37757. name: "Micro",
  37758. height: math.unit(3, "inches")
  37759. },
  37760. {
  37761. name: "Kobold",
  37762. height: math.unit(3, "feet")
  37763. },
  37764. {
  37765. name: "Normal",
  37766. height: math.unit(8, "feet"),
  37767. default: true
  37768. },
  37769. {
  37770. name: "Giant",
  37771. height: math.unit(50, "feet")
  37772. },
  37773. {
  37774. name: "Macro",
  37775. height: math.unit(1000, "feet")
  37776. },
  37777. {
  37778. name: "Megamacro",
  37779. height: math.unit(1, "mile")
  37780. },
  37781. ]
  37782. ))
  37783. characterMakers.push(() => makeCharacter(
  37784. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37785. {
  37786. front: {
  37787. height: math.unit(10, "feet"),
  37788. weight: math.unit(1442, "lb"),
  37789. name: "Front",
  37790. image: {
  37791. source: "./media/characters/mal-dragon/front.svg",
  37792. extra: 1515/1444,
  37793. bottom: 113/1628
  37794. }
  37795. },
  37796. back: {
  37797. height: math.unit(10, "feet"),
  37798. weight: math.unit(1442, "lb"),
  37799. name: "Back",
  37800. image: {
  37801. source: "./media/characters/mal-dragon/back.svg",
  37802. extra: 1527/1434,
  37803. bottom: 25/1552
  37804. }
  37805. },
  37806. },
  37807. [
  37808. {
  37809. name: "Mortal Interaction",
  37810. height: math.unit(10, "feet"),
  37811. default: true
  37812. },
  37813. {
  37814. name: "Large",
  37815. height: math.unit(30, "feet")
  37816. },
  37817. {
  37818. name: "Kaiju",
  37819. height: math.unit(300, "feet")
  37820. },
  37821. {
  37822. name: "Megamacro",
  37823. height: math.unit(10000, "feet")
  37824. },
  37825. {
  37826. name: "Continent Cracker",
  37827. height: math.unit(30000000, "feet")
  37828. },
  37829. {
  37830. name: "Sol-Swallowing",
  37831. height: math.unit(1e11, "feet")
  37832. },
  37833. {
  37834. name: "Light Universal",
  37835. height: math.unit(5, "universes")
  37836. },
  37837. {
  37838. name: "Universe Atoms",
  37839. height: math.unit(1.829e9, "universes")
  37840. },
  37841. {
  37842. name: "Light Multiversal",
  37843. height: math.unit(5, "multiverses")
  37844. },
  37845. {
  37846. name: "Multiverse Atoms",
  37847. height: math.unit(1.829e9, "multiverses")
  37848. },
  37849. {
  37850. name: "Fabric of Time",
  37851. height: math.unit(1e262, "multiverses")
  37852. },
  37853. ]
  37854. ))
  37855. characterMakers.push(() => makeCharacter(
  37856. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  37857. {
  37858. front: {
  37859. height: math.unit(9, "feet"),
  37860. weight: math.unit(1050, "lb"),
  37861. name: "Front",
  37862. image: {
  37863. source: "./media/characters/tabitha/front.svg",
  37864. extra: 2083/1994,
  37865. bottom: 68/2151
  37866. }
  37867. },
  37868. },
  37869. [
  37870. {
  37871. name: "Baseline",
  37872. height: math.unit(9, "feet"),
  37873. default: true
  37874. },
  37875. {
  37876. name: "Giant",
  37877. height: math.unit(90, "feet")
  37878. },
  37879. {
  37880. name: "Macro",
  37881. height: math.unit(900, "feet")
  37882. },
  37883. {
  37884. name: "Megamacro",
  37885. height: math.unit(9000, "feet")
  37886. },
  37887. {
  37888. name: "City-Crushing",
  37889. height: math.unit(27000, "feet")
  37890. },
  37891. {
  37892. name: "Mountain-Mashing",
  37893. height: math.unit(90000, "feet")
  37894. },
  37895. {
  37896. name: "Nation Nemesis",
  37897. height: math.unit(9e6, "feet")
  37898. },
  37899. {
  37900. name: "Continent Cracker",
  37901. height: math.unit(27e6, "feet")
  37902. },
  37903. {
  37904. name: "Earth-Eclipsing",
  37905. height: math.unit(2.7e8, "feet")
  37906. },
  37907. {
  37908. name: "Gas Giant Gulper",
  37909. height: math.unit(2.7e9, "feet")
  37910. },
  37911. {
  37912. name: "Sol-Swallowing",
  37913. height: math.unit(9e10, "feet")
  37914. },
  37915. {
  37916. name: "Galaxy Gulper",
  37917. height: math.unit(9, "galaxies")
  37918. },
  37919. {
  37920. name: "Cosmos Churner",
  37921. height: math.unit(9, "universes")
  37922. },
  37923. ]
  37924. ))
  37925. characterMakers.push(() => makeCharacter(
  37926. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  37927. {
  37928. front: {
  37929. height: math.unit(160, "cm"),
  37930. weight: math.unit(55, "kg"),
  37931. name: "Front",
  37932. image: {
  37933. source: "./media/characters/tow/front.svg",
  37934. extra: 1751/1722,
  37935. bottom: 74/1825
  37936. }
  37937. },
  37938. },
  37939. [
  37940. {
  37941. name: "Norm",
  37942. height: math.unit(160, "cm")
  37943. },
  37944. {
  37945. name: "Casual",
  37946. height: math.unit(3200, "m"),
  37947. default: true
  37948. },
  37949. {
  37950. name: "Show-Off",
  37951. height: math.unit(160, "km")
  37952. },
  37953. ]
  37954. ))
  37955. characterMakers.push(() => makeCharacter(
  37956. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  37957. {
  37958. front: {
  37959. height: math.unit(7 + 11/12, "feet"),
  37960. weight: math.unit(342.8, "lb"),
  37961. name: "Front",
  37962. image: {
  37963. source: "./media/characters/vivian-orca-dragon/front.svg",
  37964. extra: 1890/1865,
  37965. bottom: 28/1918
  37966. }
  37967. },
  37968. },
  37969. [
  37970. {
  37971. name: "Micro",
  37972. height: math.unit(5, "inches")
  37973. },
  37974. {
  37975. name: "Normal",
  37976. height: math.unit(7 + 11/12, "feet"),
  37977. default: true
  37978. },
  37979. {
  37980. name: "Macro",
  37981. height: math.unit(395 + 7/12, "feet")
  37982. },
  37983. ]
  37984. ))
  37985. characterMakers.push(() => makeCharacter(
  37986. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  37987. {
  37988. side: {
  37989. height: math.unit(10, "feet"),
  37990. weight: math.unit(1442, "lb"),
  37991. name: "Side",
  37992. image: {
  37993. source: "./media/characters/lotherakon/side.svg",
  37994. extra: 1604/1497,
  37995. bottom: 89/1693
  37996. }
  37997. },
  37998. },
  37999. [
  38000. {
  38001. name: "Mortal Interaction",
  38002. height: math.unit(10, "feet")
  38003. },
  38004. {
  38005. name: "Large",
  38006. height: math.unit(30, "feet"),
  38007. default: true
  38008. },
  38009. {
  38010. name: "Giant",
  38011. height: math.unit(100, "feet")
  38012. },
  38013. {
  38014. name: "Kaiju",
  38015. height: math.unit(300, "feet")
  38016. },
  38017. {
  38018. name: "Macro",
  38019. height: math.unit(1000, "feet")
  38020. },
  38021. {
  38022. name: "Macro+",
  38023. height: math.unit(3000, "feet")
  38024. },
  38025. {
  38026. name: "Megamacro",
  38027. height: math.unit(10000, "feet")
  38028. },
  38029. {
  38030. name: "City-Crushing",
  38031. height: math.unit(30000, "feet")
  38032. },
  38033. {
  38034. name: "Continent Cracker",
  38035. height: math.unit(30e6, "feet")
  38036. },
  38037. {
  38038. name: "Earth Eclipsing",
  38039. height: math.unit(3e8, "feet")
  38040. },
  38041. {
  38042. name: "Gas Giant Gulper",
  38043. height: math.unit(3e9, "feet")
  38044. },
  38045. {
  38046. name: "Sol-Swallowing",
  38047. height: math.unit(1e11, "feet")
  38048. },
  38049. {
  38050. name: "System Swallower",
  38051. height: math.unit(3e14, "feet")
  38052. },
  38053. {
  38054. name: "Galaxy Gulper",
  38055. height: math.unit(10, "galaxies")
  38056. },
  38057. {
  38058. name: "Light Universal",
  38059. height: math.unit(5, "universes")
  38060. },
  38061. {
  38062. name: "Universe Palm",
  38063. height: math.unit(20, "universes")
  38064. },
  38065. {
  38066. name: "Light Multiversal",
  38067. height: math.unit(5, "multiverses")
  38068. },
  38069. {
  38070. name: "Multiverse Palm",
  38071. height: math.unit(20, "multiverses")
  38072. },
  38073. {
  38074. name: "Inferno Incarnate",
  38075. height: math.unit(1e7, "multiverses")
  38076. },
  38077. ]
  38078. ))
  38079. characterMakers.push(() => makeCharacter(
  38080. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38081. {
  38082. front: {
  38083. height: math.unit(8, "feet"),
  38084. weight: math.unit(1200, "lb"),
  38085. name: "Front",
  38086. image: {
  38087. source: "./media/characters/malithee/front.svg",
  38088. extra: 1675/1640,
  38089. bottom: 162/1837
  38090. }
  38091. },
  38092. },
  38093. [
  38094. {
  38095. name: "Mortal Interaction",
  38096. height: math.unit(8, "feet"),
  38097. default: true
  38098. },
  38099. {
  38100. name: "Large",
  38101. height: math.unit(24, "feet")
  38102. },
  38103. {
  38104. name: "Kaiju",
  38105. height: math.unit(240, "feet")
  38106. },
  38107. {
  38108. name: "Megamacro",
  38109. height: math.unit(8000, "feet")
  38110. },
  38111. {
  38112. name: "Continent Cracker",
  38113. height: math.unit(24e6, "feet")
  38114. },
  38115. {
  38116. name: "Earth-Eclipsing",
  38117. height: math.unit(2.4e8, "feet")
  38118. },
  38119. {
  38120. name: "Sol-Swallowing",
  38121. height: math.unit(8e10, "feet")
  38122. },
  38123. {
  38124. name: "Galaxy Gulper",
  38125. height: math.unit(8, "galaxies")
  38126. },
  38127. {
  38128. name: "Light Universal",
  38129. height: math.unit(4, "universes")
  38130. },
  38131. {
  38132. name: "Universe Atoms",
  38133. height: math.unit(1.829e9, "universes")
  38134. },
  38135. {
  38136. name: "Light Multiversal",
  38137. height: math.unit(4, "multiverses")
  38138. },
  38139. {
  38140. name: "Multiverse Atoms",
  38141. height: math.unit(1.829e9, "multiverses")
  38142. },
  38143. {
  38144. name: "Nigh-Omnipresence",
  38145. height: math.unit(8e261, "multiverses")
  38146. },
  38147. ]
  38148. ))
  38149. characterMakers.push(() => makeCharacter(
  38150. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38151. {
  38152. front: {
  38153. height: math.unit(10, "feet"),
  38154. weight: math.unit(1500, "lb"),
  38155. name: "Front",
  38156. image: {
  38157. source: "./media/characters/miles-thestia/front.svg",
  38158. extra: 1812/1727,
  38159. bottom: 86/1898
  38160. }
  38161. },
  38162. back: {
  38163. height: math.unit(10, "feet"),
  38164. weight: math.unit(1500, "lb"),
  38165. name: "Back",
  38166. image: {
  38167. source: "./media/characters/miles-thestia/back.svg",
  38168. extra: 1799/1690,
  38169. bottom: 47/1846
  38170. }
  38171. },
  38172. frontNsfw: {
  38173. height: math.unit(10, "feet"),
  38174. weight: math.unit(1500, "lb"),
  38175. name: "Front (NSFW)",
  38176. image: {
  38177. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38178. extra: 1812/1727,
  38179. bottom: 86/1898
  38180. }
  38181. },
  38182. },
  38183. [
  38184. {
  38185. name: "Mini-Macro",
  38186. height: math.unit(10, "feet"),
  38187. default: true
  38188. },
  38189. ]
  38190. ))
  38191. characterMakers.push(() => makeCharacter(
  38192. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38193. {
  38194. front: {
  38195. height: math.unit(25, "feet"),
  38196. name: "Front",
  38197. image: {
  38198. source: "./media/characters/titan-s-wulf/front.svg",
  38199. extra: 1560/1484,
  38200. bottom: 76/1636
  38201. }
  38202. },
  38203. },
  38204. [
  38205. {
  38206. name: "Smallest",
  38207. height: math.unit(25, "feet"),
  38208. default: true
  38209. },
  38210. {
  38211. name: "Normal",
  38212. height: math.unit(200, "feet")
  38213. },
  38214. {
  38215. name: "Macro",
  38216. height: math.unit(200000, "feet")
  38217. },
  38218. {
  38219. name: "Multiversal Original",
  38220. height: math.unit(10000, "multiverses")
  38221. },
  38222. ]
  38223. ))
  38224. characterMakers.push(() => makeCharacter(
  38225. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38226. {
  38227. front: {
  38228. height: math.unit(8, "feet"),
  38229. weight: math.unit(553, "lb"),
  38230. name: "Front",
  38231. image: {
  38232. source: "./media/characters/tawendeh/front.svg",
  38233. extra: 2365/2268,
  38234. bottom: 83/2448
  38235. }
  38236. },
  38237. frontClothed: {
  38238. height: math.unit(8, "feet"),
  38239. weight: math.unit(553, "lb"),
  38240. name: "Front (Clothed)",
  38241. image: {
  38242. source: "./media/characters/tawendeh/front-clothed.svg",
  38243. extra: 2365/2268,
  38244. bottom: 83/2448
  38245. }
  38246. },
  38247. back: {
  38248. height: math.unit(8, "feet"),
  38249. weight: math.unit(553, "lb"),
  38250. name: "Back",
  38251. image: {
  38252. source: "./media/characters/tawendeh/back.svg",
  38253. extra: 2397/2294,
  38254. bottom: 42/2439
  38255. }
  38256. },
  38257. },
  38258. [
  38259. {
  38260. name: "Mortal Interaction",
  38261. height: math.unit(8, "feet"),
  38262. default: true
  38263. },
  38264. {
  38265. name: "Giant",
  38266. height: math.unit(80, "feet")
  38267. },
  38268. {
  38269. name: "Macro",
  38270. height: math.unit(800, "feet")
  38271. },
  38272. {
  38273. name: "Megamacro",
  38274. height: math.unit(8000, "feet")
  38275. },
  38276. {
  38277. name: "City-Crushing",
  38278. height: math.unit(24000, "feet")
  38279. },
  38280. {
  38281. name: "Mountain-Mashing",
  38282. height: math.unit(80000, "feet")
  38283. },
  38284. {
  38285. name: "Nation Nemesis",
  38286. height: math.unit(8e6, "feet")
  38287. },
  38288. {
  38289. name: "Continent Cracker",
  38290. height: math.unit(24e6, "feet")
  38291. },
  38292. {
  38293. name: "Earth-Eclipsing",
  38294. height: math.unit(2.4e8, "feet")
  38295. },
  38296. {
  38297. name: "Gas Giant Gulper",
  38298. height: math.unit(2.4e9, "feet")
  38299. },
  38300. {
  38301. name: "Sol-Swallowing",
  38302. height: math.unit(8e10, "feet")
  38303. },
  38304. {
  38305. name: "Galaxy Gulper",
  38306. height: math.unit(8, "galaxies")
  38307. },
  38308. {
  38309. name: "Cosmos Churner",
  38310. height: math.unit(8, "universes")
  38311. },
  38312. {
  38313. name: "Omnipotent Otter",
  38314. height: math.unit(80, "universes")
  38315. },
  38316. ]
  38317. ))
  38318. characterMakers.push(() => makeCharacter(
  38319. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38320. {
  38321. front: {
  38322. height: math.unit(2.6, "meters"),
  38323. weight: math.unit(900, "kg"),
  38324. name: "Front",
  38325. image: {
  38326. source: "./media/characters/neesha/front.svg",
  38327. extra: 1803/1653,
  38328. bottom: 128/1931
  38329. }
  38330. },
  38331. },
  38332. [
  38333. {
  38334. name: "Normal",
  38335. height: math.unit(2.6, "meters"),
  38336. default: true
  38337. },
  38338. {
  38339. name: "Macro",
  38340. height: math.unit(50, "meters")
  38341. },
  38342. ]
  38343. ))
  38344. characterMakers.push(() => makeCharacter(
  38345. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38346. {
  38347. front: {
  38348. height: math.unit(5, "feet"),
  38349. weight: math.unit(185, "lb"),
  38350. name: "Front",
  38351. image: {
  38352. source: "./media/characters/kyera/front.svg",
  38353. extra: 1875/1790,
  38354. bottom: 96/1971
  38355. }
  38356. },
  38357. },
  38358. [
  38359. {
  38360. name: "Normal",
  38361. height: math.unit(5, "feet"),
  38362. default: true
  38363. },
  38364. ]
  38365. ))
  38366. characterMakers.push(() => makeCharacter(
  38367. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38368. {
  38369. front: {
  38370. height: math.unit(7 + 6/12, "feet"),
  38371. weight: math.unit(540, "lb"),
  38372. name: "Front",
  38373. image: {
  38374. source: "./media/characters/yuko/front.svg",
  38375. extra: 1282/1222,
  38376. bottom: 101/1383
  38377. }
  38378. },
  38379. frontClothed: {
  38380. height: math.unit(7 + 6/12, "feet"),
  38381. weight: math.unit(540, "lb"),
  38382. name: "Front (Clothed)",
  38383. image: {
  38384. source: "./media/characters/yuko/front-clothed.svg",
  38385. extra: 1282/1222,
  38386. bottom: 101/1383
  38387. }
  38388. },
  38389. },
  38390. [
  38391. {
  38392. name: "Normal",
  38393. height: math.unit(7 + 6/12, "feet"),
  38394. default: true
  38395. },
  38396. {
  38397. name: "Macro",
  38398. height: math.unit(26 + 9/12, "feet")
  38399. },
  38400. {
  38401. name: "Megamacro",
  38402. height: math.unit(300, "feet")
  38403. },
  38404. {
  38405. name: "Gigamacro",
  38406. height: math.unit(5000, "feet")
  38407. },
  38408. {
  38409. name: "Planetary",
  38410. height: math.unit(10000, "miles")
  38411. },
  38412. ]
  38413. ))
  38414. characterMakers.push(() => makeCharacter(
  38415. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38416. {
  38417. front: {
  38418. height: math.unit(8 + 2/12, "feet"),
  38419. weight: math.unit(600, "lb"),
  38420. name: "Front",
  38421. image: {
  38422. source: "./media/characters/deam-nitrel/front.svg",
  38423. extra: 1308/1234,
  38424. bottom: 125/1433
  38425. }
  38426. },
  38427. },
  38428. [
  38429. {
  38430. name: "Normal",
  38431. height: math.unit(8 + 2/12, "feet"),
  38432. default: true
  38433. },
  38434. ]
  38435. ))
  38436. characterMakers.push(() => makeCharacter(
  38437. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38438. {
  38439. front: {
  38440. height: math.unit(6.1, "feet"),
  38441. weight: math.unit(180, "lb"),
  38442. name: "Front",
  38443. image: {
  38444. source: "./media/characters/skyress/front.svg",
  38445. extra: 1045/915,
  38446. bottom: 28/1073
  38447. }
  38448. },
  38449. maw: {
  38450. height: math.unit(1, "feet"),
  38451. name: "Maw",
  38452. image: {
  38453. source: "./media/characters/skyress/maw.svg"
  38454. }
  38455. },
  38456. },
  38457. [
  38458. {
  38459. name: "Normal",
  38460. height: math.unit(6.1, "feet"),
  38461. default: true
  38462. },
  38463. {
  38464. name: "Macro",
  38465. height: math.unit(200, "feet")
  38466. },
  38467. ]
  38468. ))
  38469. characterMakers.push(() => makeCharacter(
  38470. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38471. {
  38472. front: {
  38473. height: math.unit(4 + 2/12, "feet"),
  38474. weight: math.unit(40, "kg"),
  38475. name: "Front",
  38476. image: {
  38477. source: "./media/characters/amethyst-jones/front.svg",
  38478. extra: 1220/1150,
  38479. bottom: 101/1321
  38480. }
  38481. },
  38482. },
  38483. [
  38484. {
  38485. name: "Normal",
  38486. height: math.unit(4 + 2/12, "feet"),
  38487. default: true
  38488. },
  38489. ]
  38490. ))
  38491. characterMakers.push(() => makeCharacter(
  38492. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38493. {
  38494. front: {
  38495. height: math.unit(1.7, "m"),
  38496. weight: math.unit(135, "lb"),
  38497. name: "Front",
  38498. image: {
  38499. source: "./media/characters/jade/front.svg",
  38500. extra: 1818/1767,
  38501. bottom: 32/1850
  38502. }
  38503. },
  38504. back: {
  38505. height: math.unit(1.7, "m"),
  38506. weight: math.unit(135, "lb"),
  38507. name: "Back",
  38508. image: {
  38509. source: "./media/characters/jade/back.svg",
  38510. extra: 1869/1809,
  38511. bottom: 35/1904
  38512. }
  38513. },
  38514. hand: {
  38515. height: math.unit(0.24, "m"),
  38516. name: "Hand",
  38517. image: {
  38518. source: "./media/characters/jade/hand.svg"
  38519. }
  38520. },
  38521. foot: {
  38522. height: math.unit(0.263, "m"),
  38523. name: "Foot",
  38524. image: {
  38525. source: "./media/characters/jade/foot.svg"
  38526. }
  38527. },
  38528. dick: {
  38529. height: math.unit(0.47, "m"),
  38530. name: "Dick",
  38531. image: {
  38532. source: "./media/characters/jade/dick.svg"
  38533. }
  38534. },
  38535. },
  38536. [
  38537. {
  38538. name: "Micro",
  38539. height: math.unit(22, "cm")
  38540. },
  38541. {
  38542. name: "Normal",
  38543. height: math.unit(1.7, "m"),
  38544. default: true
  38545. },
  38546. {
  38547. name: "Macro",
  38548. height: math.unit(152, "m")
  38549. },
  38550. ]
  38551. ))
  38552. characterMakers.push(() => makeCharacter(
  38553. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38554. {
  38555. front: {
  38556. height: math.unit(100, "miles"),
  38557. weight: math.unit(20000, "tons"),
  38558. name: "Front",
  38559. image: {
  38560. source: "./media/characters/cookie/front.svg",
  38561. extra: 1125/1070,
  38562. bottom: 30/1155
  38563. }
  38564. },
  38565. },
  38566. [
  38567. {
  38568. name: "Big",
  38569. height: math.unit(50, "feet")
  38570. },
  38571. {
  38572. name: "Macro",
  38573. height: math.unit(100, "miles"),
  38574. default: true
  38575. },
  38576. {
  38577. name: "Megamacro",
  38578. height: math.unit(90000, "miles")
  38579. },
  38580. ]
  38581. ))
  38582. characterMakers.push(() => makeCharacter(
  38583. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38584. {
  38585. front: {
  38586. height: math.unit(6, "feet"),
  38587. weight: math.unit(145, "lb"),
  38588. name: "Front",
  38589. image: {
  38590. source: "./media/characters/farzian/front.svg",
  38591. extra: 1902/1693,
  38592. bottom: 108/2010
  38593. }
  38594. },
  38595. },
  38596. [
  38597. {
  38598. name: "Macro",
  38599. height: math.unit(500, "feet"),
  38600. default: true
  38601. },
  38602. ]
  38603. ))
  38604. characterMakers.push(() => makeCharacter(
  38605. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38606. {
  38607. front: {
  38608. height: math.unit(3 + 6/12, "feet"),
  38609. weight: math.unit(50, "lb"),
  38610. name: "Front",
  38611. image: {
  38612. source: "./media/characters/kimberly-tilson/front.svg",
  38613. extra: 1400/1322,
  38614. bottom: 36/1436
  38615. }
  38616. },
  38617. back: {
  38618. height: math.unit(3 + 6/12, "feet"),
  38619. weight: math.unit(50, "lb"),
  38620. name: "Back",
  38621. image: {
  38622. source: "./media/characters/kimberly-tilson/back.svg",
  38623. extra: 1370/1307,
  38624. bottom: 20/1390
  38625. }
  38626. },
  38627. },
  38628. [
  38629. {
  38630. name: "Normal",
  38631. height: math.unit(3 + 6/12, "feet"),
  38632. default: true
  38633. },
  38634. ]
  38635. ))
  38636. characterMakers.push(() => makeCharacter(
  38637. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38638. {
  38639. front: {
  38640. height: math.unit(1148, "feet"),
  38641. weight: math.unit(34057, "lb"),
  38642. name: "Front",
  38643. image: {
  38644. source: "./media/characters/harthos/front.svg",
  38645. extra: 1391/1339,
  38646. bottom: 13/1404
  38647. }
  38648. },
  38649. },
  38650. [
  38651. {
  38652. name: "Macro",
  38653. height: math.unit(1148, "feet"),
  38654. default: true
  38655. },
  38656. ]
  38657. ))
  38658. characterMakers.push(() => makeCharacter(
  38659. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38660. {
  38661. front: {
  38662. height: math.unit(15, "feet"),
  38663. name: "Front",
  38664. image: {
  38665. source: "./media/characters/hypatia/front.svg",
  38666. extra: 1653/1591,
  38667. bottom: 79/1732
  38668. }
  38669. },
  38670. },
  38671. [
  38672. {
  38673. name: "Normal",
  38674. height: math.unit(15, "feet")
  38675. },
  38676. {
  38677. name: "Small",
  38678. height: math.unit(300, "feet")
  38679. },
  38680. {
  38681. name: "Macro",
  38682. height: math.unit(2500, "feet"),
  38683. default: true
  38684. },
  38685. {
  38686. name: "Mega Macro",
  38687. height: math.unit(1500, "miles")
  38688. },
  38689. {
  38690. name: "Giga Macro",
  38691. height: math.unit(1.5e6, "miles")
  38692. },
  38693. ]
  38694. ))
  38695. characterMakers.push(() => makeCharacter(
  38696. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38697. {
  38698. front: {
  38699. height: math.unit(6, "feet"),
  38700. weight: math.unit(200, "lb"),
  38701. name: "Front",
  38702. image: {
  38703. source: "./media/characters/wulver/front.svg",
  38704. extra: 1724/1632,
  38705. bottom: 130/1854
  38706. }
  38707. },
  38708. frontNsfw: {
  38709. height: math.unit(6, "feet"),
  38710. weight: math.unit(200, "lb"),
  38711. name: "Front (NSFW)",
  38712. image: {
  38713. source: "./media/characters/wulver/front-nsfw.svg",
  38714. extra: 1724/1632,
  38715. bottom: 130/1854
  38716. }
  38717. },
  38718. },
  38719. [
  38720. {
  38721. name: "Human-Sized",
  38722. height: math.unit(6, "feet")
  38723. },
  38724. {
  38725. name: "Normal",
  38726. height: math.unit(4, "meters"),
  38727. default: true
  38728. },
  38729. {
  38730. name: "Large",
  38731. height: math.unit(6, "m")
  38732. },
  38733. ]
  38734. ))
  38735. characterMakers.push(() => makeCharacter(
  38736. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38737. {
  38738. front: {
  38739. height: math.unit(7, "feet"),
  38740. name: "Front",
  38741. image: {
  38742. source: "./media/characters/maru/front.svg",
  38743. extra: 1595/1570,
  38744. bottom: 0/1595
  38745. }
  38746. },
  38747. },
  38748. [
  38749. {
  38750. name: "Normal",
  38751. height: math.unit(7, "feet"),
  38752. default: true
  38753. },
  38754. {
  38755. name: "Macro",
  38756. height: math.unit(700, "feet")
  38757. },
  38758. {
  38759. name: "Mega Macro",
  38760. height: math.unit(25, "miles")
  38761. },
  38762. ]
  38763. ))
  38764. characterMakers.push(() => makeCharacter(
  38765. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38766. {
  38767. front: {
  38768. height: math.unit(6, "feet"),
  38769. weight: math.unit(170, "lb"),
  38770. name: "Front",
  38771. image: {
  38772. source: "./media/characters/xenon/front.svg",
  38773. extra: 1376/1305,
  38774. bottom: 56/1432
  38775. }
  38776. },
  38777. back: {
  38778. height: math.unit(6, "feet"),
  38779. weight: math.unit(170, "lb"),
  38780. name: "Back",
  38781. image: {
  38782. source: "./media/characters/xenon/back.svg",
  38783. extra: 1328/1259,
  38784. bottom: 95/1423
  38785. }
  38786. },
  38787. maw: {
  38788. height: math.unit(0.52, "feet"),
  38789. name: "Maw",
  38790. image: {
  38791. source: "./media/characters/xenon/maw.svg"
  38792. }
  38793. },
  38794. hand: {
  38795. height: math.unit(0.82, "feet"),
  38796. name: "Hand",
  38797. image: {
  38798. source: "./media/characters/xenon/hand.svg"
  38799. }
  38800. },
  38801. foot: {
  38802. height: math.unit(1.13, "feet"),
  38803. name: "Foot",
  38804. image: {
  38805. source: "./media/characters/xenon/foot.svg"
  38806. }
  38807. },
  38808. },
  38809. [
  38810. {
  38811. name: "Micro",
  38812. height: math.unit(0.8, "inches")
  38813. },
  38814. {
  38815. name: "Normal",
  38816. height: math.unit(6, "feet")
  38817. },
  38818. {
  38819. name: "Macro",
  38820. height: math.unit(50, "feet"),
  38821. default: true
  38822. },
  38823. {
  38824. name: "Macro+",
  38825. height: math.unit(250, "feet")
  38826. },
  38827. {
  38828. name: "Megamacro",
  38829. height: math.unit(1500, "feet")
  38830. },
  38831. ]
  38832. ))
  38833. characterMakers.push(() => makeCharacter(
  38834. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  38835. {
  38836. front: {
  38837. height: math.unit(7 + 5/12, "feet"),
  38838. name: "Front",
  38839. image: {
  38840. source: "./media/characters/zane/front.svg",
  38841. extra: 1260/1203,
  38842. bottom: 94/1354
  38843. }
  38844. },
  38845. back: {
  38846. height: math.unit(5.05, "feet"),
  38847. name: "Back",
  38848. image: {
  38849. source: "./media/characters/zane/back.svg",
  38850. extra: 893/829,
  38851. bottom: 30/923
  38852. }
  38853. },
  38854. werewolf: {
  38855. height: math.unit(11, "feet"),
  38856. name: "Werewolf",
  38857. image: {
  38858. source: "./media/characters/zane/werewolf.svg",
  38859. extra: 1383/1323,
  38860. bottom: 89/1472
  38861. }
  38862. },
  38863. foot: {
  38864. height: math.unit(1.46, "feet"),
  38865. name: "Foot",
  38866. image: {
  38867. source: "./media/characters/zane/foot.svg"
  38868. }
  38869. },
  38870. footFront: {
  38871. height: math.unit(0.784, "feet"),
  38872. name: "Foot (Front)",
  38873. image: {
  38874. source: "./media/characters/zane/foot-front.svg"
  38875. }
  38876. },
  38877. dick: {
  38878. height: math.unit(1.95, "feet"),
  38879. name: "Dick",
  38880. image: {
  38881. source: "./media/characters/zane/dick.svg"
  38882. }
  38883. },
  38884. dickWerewolf: {
  38885. height: math.unit(3.77, "feet"),
  38886. name: "Dick (Werewolf)",
  38887. image: {
  38888. source: "./media/characters/zane/dick.svg"
  38889. }
  38890. },
  38891. },
  38892. [
  38893. {
  38894. name: "Normal",
  38895. height: math.unit(7 + 5/12, "feet"),
  38896. default: true
  38897. },
  38898. ]
  38899. ))
  38900. characterMakers.push(() => makeCharacter(
  38901. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  38902. {
  38903. front: {
  38904. height: math.unit(6 + 2/12, "feet"),
  38905. weight: math.unit(284, "lb"),
  38906. name: "Front",
  38907. image: {
  38908. source: "./media/characters/benni-desparque/front.svg",
  38909. extra: 1353/1126,
  38910. bottom: 69/1422
  38911. }
  38912. },
  38913. },
  38914. [
  38915. {
  38916. name: "Civilian",
  38917. height: math.unit(6 + 2/12, "feet")
  38918. },
  38919. {
  38920. name: "Normal",
  38921. height: math.unit(98, "feet"),
  38922. default: true
  38923. },
  38924. {
  38925. name: "Kaiju Fighter",
  38926. height: math.unit(268, "feet")
  38927. },
  38928. ]
  38929. ))
  38930. characterMakers.push(() => makeCharacter(
  38931. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  38932. {
  38933. front: {
  38934. height: math.unit(5, "feet"),
  38935. weight: math.unit(105, "lb"),
  38936. name: "Front",
  38937. image: {
  38938. source: "./media/characters/maxine/front.svg",
  38939. extra: 1386/1250,
  38940. bottom: 71/1457
  38941. }
  38942. },
  38943. },
  38944. [
  38945. {
  38946. name: "Normal",
  38947. height: math.unit(5, "feet"),
  38948. default: true
  38949. },
  38950. ]
  38951. ))
  38952. characterMakers.push(() => makeCharacter(
  38953. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  38954. {
  38955. front: {
  38956. height: math.unit(11 + 7/12, "feet"),
  38957. weight: math.unit(9576, "lb"),
  38958. name: "Front",
  38959. image: {
  38960. source: "./media/characters/scaly/front.svg",
  38961. extra: 888/867,
  38962. bottom: 36/924
  38963. }
  38964. },
  38965. },
  38966. [
  38967. {
  38968. name: "Normal",
  38969. height: math.unit(11 + 7/12, "feet"),
  38970. default: true
  38971. },
  38972. ]
  38973. ))
  38974. characterMakers.push(() => makeCharacter(
  38975. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  38976. {
  38977. front: {
  38978. height: math.unit(9, "inches"),
  38979. name: "Front",
  38980. image: {
  38981. source: "./media/characters/saelria/front.svg",
  38982. extra: 662/621,
  38983. bottom: 12/674
  38984. }
  38985. },
  38986. },
  38987. [
  38988. {
  38989. name: "Tiny",
  38990. height: math.unit(9, "inches"),
  38991. default: true
  38992. },
  38993. ]
  38994. ))
  38995. characterMakers.push(() => makeCharacter(
  38996. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  38997. {
  38998. front: {
  38999. height: math.unit(80, "meters"),
  39000. weight: math.unit(7000, "tonnes"),
  39001. name: "Front",
  39002. image: {
  39003. source: "./media/characters/tef/front.svg",
  39004. extra: 2036/1991,
  39005. bottom: 54/2090
  39006. }
  39007. },
  39008. back: {
  39009. height: math.unit(80, "meters"),
  39010. weight: math.unit(7000, "tonnes"),
  39011. name: "Back",
  39012. image: {
  39013. source: "./media/characters/tef/back.svg",
  39014. extra: 2036/1991,
  39015. bottom: 54/2090
  39016. }
  39017. },
  39018. },
  39019. [
  39020. {
  39021. name: "Macro",
  39022. height: math.unit(80, "meters"),
  39023. default: true
  39024. },
  39025. ]
  39026. ))
  39027. characterMakers.push(() => makeCharacter(
  39028. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39029. {
  39030. front: {
  39031. height: math.unit(13, "feet"),
  39032. weight: math.unit(6, "tons"),
  39033. name: "Front",
  39034. image: {
  39035. source: "./media/characters/rover/front.svg",
  39036. extra: 1233/1156,
  39037. bottom: 50/1283
  39038. }
  39039. },
  39040. back: {
  39041. height: math.unit(13, "feet"),
  39042. weight: math.unit(6, "tons"),
  39043. name: "Back",
  39044. image: {
  39045. source: "./media/characters/rover/back.svg",
  39046. extra: 1327/1258,
  39047. bottom: 39/1366
  39048. }
  39049. },
  39050. },
  39051. [
  39052. {
  39053. name: "Normal",
  39054. height: math.unit(13, "feet"),
  39055. default: true
  39056. },
  39057. {
  39058. name: "Macro",
  39059. height: math.unit(1300, "feet")
  39060. },
  39061. {
  39062. name: "Megamacro",
  39063. height: math.unit(1300, "miles")
  39064. },
  39065. {
  39066. name: "Gigamacro",
  39067. height: math.unit(1300000, "miles")
  39068. },
  39069. ]
  39070. ))
  39071. characterMakers.push(() => makeCharacter(
  39072. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39073. {
  39074. front: {
  39075. height: math.unit(6, "feet"),
  39076. weight: math.unit(150, "lb"),
  39077. name: "Front",
  39078. image: {
  39079. source: "./media/characters/ariz/front.svg",
  39080. extra: 1401/1346,
  39081. bottom: 5/1406
  39082. }
  39083. },
  39084. },
  39085. [
  39086. {
  39087. name: "Normal",
  39088. height: math.unit(10, "feet"),
  39089. default: true
  39090. },
  39091. ]
  39092. ))
  39093. characterMakers.push(() => makeCharacter(
  39094. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39095. {
  39096. front: {
  39097. height: math.unit(6, "feet"),
  39098. weight: math.unit(140, "lb"),
  39099. name: "Front",
  39100. image: {
  39101. source: "./media/characters/sigrun/front.svg",
  39102. extra: 1418/1359,
  39103. bottom: 27/1445
  39104. }
  39105. },
  39106. },
  39107. [
  39108. {
  39109. name: "Macro",
  39110. height: math.unit(35, "feet"),
  39111. default: true
  39112. },
  39113. ]
  39114. ))
  39115. characterMakers.push(() => makeCharacter(
  39116. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39117. {
  39118. front: {
  39119. height: math.unit(6, "feet"),
  39120. weight: math.unit(150, "lb"),
  39121. name: "Front",
  39122. image: {
  39123. source: "./media/characters/numin/front.svg",
  39124. extra: 1433/1388,
  39125. bottom: 12/1445
  39126. }
  39127. },
  39128. },
  39129. [
  39130. {
  39131. name: "Macro",
  39132. height: math.unit(21.5, "km"),
  39133. default: true
  39134. },
  39135. ]
  39136. ))
  39137. characterMakers.push(() => makeCharacter(
  39138. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39139. {
  39140. front: {
  39141. height: math.unit(6, "feet"),
  39142. weight: math.unit(463, "lb"),
  39143. name: "Front",
  39144. image: {
  39145. source: "./media/characters/melwa/front.svg",
  39146. extra: 1307/1248,
  39147. bottom: 93/1400
  39148. }
  39149. },
  39150. },
  39151. [
  39152. {
  39153. name: "Macro",
  39154. height: math.unit(50, "meters"),
  39155. default: true
  39156. },
  39157. ]
  39158. ))
  39159. characterMakers.push(() => makeCharacter(
  39160. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39161. {
  39162. front: {
  39163. height: math.unit(325, "feet"),
  39164. name: "Front",
  39165. image: {
  39166. source: "./media/characters/zorkaiju/front.svg",
  39167. extra: 1955/1814,
  39168. bottom: 40/1995
  39169. }
  39170. },
  39171. frontExtended: {
  39172. height: math.unit(325, "feet"),
  39173. name: "Front (Extended)",
  39174. image: {
  39175. source: "./media/characters/zorkaiju/front-extended.svg",
  39176. extra: 1955/1814,
  39177. bottom: 40/1995
  39178. }
  39179. },
  39180. side: {
  39181. height: math.unit(325, "feet"),
  39182. name: "Side",
  39183. image: {
  39184. source: "./media/characters/zorkaiju/side.svg",
  39185. extra: 1495/1396,
  39186. bottom: 17/1512
  39187. }
  39188. },
  39189. sideExtended: {
  39190. height: math.unit(325, "feet"),
  39191. name: "Side (Extended)",
  39192. image: {
  39193. source: "./media/characters/zorkaiju/side-extended.svg",
  39194. extra: 1495/1396,
  39195. bottom: 17/1512
  39196. }
  39197. },
  39198. back: {
  39199. height: math.unit(325, "feet"),
  39200. name: "Back",
  39201. image: {
  39202. source: "./media/characters/zorkaiju/back.svg",
  39203. extra: 1959/1821,
  39204. bottom: 31/1990
  39205. }
  39206. },
  39207. backExtended: {
  39208. height: math.unit(325, "feet"),
  39209. name: "Back (Extended)",
  39210. image: {
  39211. source: "./media/characters/zorkaiju/back-extended.svg",
  39212. extra: 1959/1821,
  39213. bottom: 31/1990
  39214. }
  39215. },
  39216. hand: {
  39217. height: math.unit(58.4, "feet"),
  39218. name: "Hand",
  39219. image: {
  39220. source: "./media/characters/zorkaiju/hand.svg"
  39221. }
  39222. },
  39223. handExtended: {
  39224. height: math.unit(61.4, "feet"),
  39225. name: "Hand (Extended)",
  39226. image: {
  39227. source: "./media/characters/zorkaiju/hand-extended.svg"
  39228. }
  39229. },
  39230. foot: {
  39231. height: math.unit(95, "feet"),
  39232. name: "Foot",
  39233. image: {
  39234. source: "./media/characters/zorkaiju/foot.svg"
  39235. }
  39236. },
  39237. leftArm: {
  39238. height: math.unit(59, "feet"),
  39239. name: "Left Arm",
  39240. image: {
  39241. source: "./media/characters/zorkaiju/left-arm.svg"
  39242. }
  39243. },
  39244. rightArm: {
  39245. height: math.unit(59, "feet"),
  39246. name: "Right Arm",
  39247. image: {
  39248. source: "./media/characters/zorkaiju/right-arm.svg"
  39249. }
  39250. },
  39251. tail: {
  39252. height: math.unit(104, "feet"),
  39253. name: "Tail",
  39254. image: {
  39255. source: "./media/characters/zorkaiju/tail.svg"
  39256. }
  39257. },
  39258. tailExtended: {
  39259. height: math.unit(104, "feet"),
  39260. name: "Tail (Extended)",
  39261. image: {
  39262. source: "./media/characters/zorkaiju/tail-extended.svg"
  39263. }
  39264. },
  39265. tailBottom: {
  39266. height: math.unit(104, "feet"),
  39267. name: "Tail Bottom",
  39268. image: {
  39269. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39270. }
  39271. },
  39272. crystal: {
  39273. height: math.unit(27.54, "feet"),
  39274. name: "Crystal",
  39275. image: {
  39276. source: "./media/characters/zorkaiju/crystal.svg"
  39277. }
  39278. },
  39279. },
  39280. [
  39281. {
  39282. name: "Kaiju",
  39283. height: math.unit(325, "feet"),
  39284. default: true
  39285. },
  39286. ]
  39287. ))
  39288. characterMakers.push(() => makeCharacter(
  39289. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39290. {
  39291. front: {
  39292. height: math.unit(6 + 1/12, "feet"),
  39293. weight: math.unit(115, "lb"),
  39294. name: "Front",
  39295. image: {
  39296. source: "./media/characters/bailey-belfry/front.svg",
  39297. extra: 1240/1121,
  39298. bottom: 101/1341
  39299. }
  39300. },
  39301. },
  39302. [
  39303. {
  39304. name: "Normal",
  39305. height: math.unit(6 + 1/12, "feet"),
  39306. default: true
  39307. },
  39308. ]
  39309. ))
  39310. characterMakers.push(() => makeCharacter(
  39311. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39312. {
  39313. side: {
  39314. height: math.unit(4, "meters"),
  39315. weight: math.unit(250, "kg"),
  39316. name: "Side",
  39317. image: {
  39318. source: "./media/characters/blacky/side.svg",
  39319. extra: 1027/919,
  39320. bottom: 43/1070
  39321. }
  39322. },
  39323. maw: {
  39324. height: math.unit(1, "meters"),
  39325. name: "Maw",
  39326. image: {
  39327. source: "./media/characters/blacky/maw.svg"
  39328. }
  39329. },
  39330. paw: {
  39331. height: math.unit(1, "meters"),
  39332. name: "Paw",
  39333. image: {
  39334. source: "./media/characters/blacky/paw.svg"
  39335. }
  39336. },
  39337. },
  39338. [
  39339. {
  39340. name: "Normal",
  39341. height: math.unit(4, "meters"),
  39342. default: true
  39343. },
  39344. ]
  39345. ))
  39346. characterMakers.push(() => makeCharacter(
  39347. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39348. {
  39349. front: {
  39350. height: math.unit(170, "cm"),
  39351. weight: math.unit(66, "kg"),
  39352. name: "Front",
  39353. image: {
  39354. source: "./media/characters/thux-ei/front.svg",
  39355. extra: 1109/1011,
  39356. bottom: 8/1117
  39357. }
  39358. },
  39359. },
  39360. [
  39361. {
  39362. name: "Normal",
  39363. height: math.unit(170, "cm"),
  39364. default: true
  39365. },
  39366. ]
  39367. ))
  39368. characterMakers.push(() => makeCharacter(
  39369. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39370. {
  39371. front: {
  39372. height: math.unit(5, "feet"),
  39373. weight: math.unit(120, "lb"),
  39374. name: "Front",
  39375. image: {
  39376. source: "./media/characters/roxanne-voltaire/front.svg",
  39377. extra: 1901/1779,
  39378. bottom: 53/1954
  39379. }
  39380. },
  39381. },
  39382. [
  39383. {
  39384. name: "Normal",
  39385. height: math.unit(5, "feet"),
  39386. default: true
  39387. },
  39388. {
  39389. name: "Giant",
  39390. height: math.unit(50, "feet")
  39391. },
  39392. {
  39393. name: "Titan",
  39394. height: math.unit(500, "feet")
  39395. },
  39396. {
  39397. name: "Macro",
  39398. height: math.unit(5000, "feet")
  39399. },
  39400. {
  39401. name: "Megamacro",
  39402. height: math.unit(50000, "feet")
  39403. },
  39404. {
  39405. name: "Gigamacro",
  39406. height: math.unit(500000, "feet")
  39407. },
  39408. {
  39409. name: "Teramacro",
  39410. height: math.unit(5e6, "feet")
  39411. },
  39412. ]
  39413. ))
  39414. characterMakers.push(() => makeCharacter(
  39415. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39416. {
  39417. front: {
  39418. height: math.unit(6 + 2/12, "feet"),
  39419. name: "Front",
  39420. image: {
  39421. source: "./media/characters/squeaks/front.svg",
  39422. extra: 1823/1768,
  39423. bottom: 138/1961
  39424. }
  39425. },
  39426. },
  39427. [
  39428. {
  39429. name: "Micro",
  39430. height: math.unit(0.5, "inches")
  39431. },
  39432. {
  39433. name: "Normal",
  39434. height: math.unit(6 + 2/12, "feet"),
  39435. default: true
  39436. },
  39437. {
  39438. name: "Macro",
  39439. height: math.unit(600, "feet")
  39440. },
  39441. ]
  39442. ))
  39443. //characters
  39444. function makeCharacters() {
  39445. const results = [];
  39446. characterMakers.forEach(character => {
  39447. results.push(character());
  39448. });
  39449. return results;
  39450. }