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

40161 строка
1009 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: ["mammal"]
  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. }
  1659. //species
  1660. function getSpeciesInfo(speciesList) {
  1661. let result = new Set();
  1662. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1663. result.add(entry)
  1664. });
  1665. return Array.from(result);
  1666. };
  1667. function getSpeciesInfoHelper(species) {
  1668. if (!speciesData[species]) {
  1669. console.warn(species + " doesn't exist");
  1670. return [];
  1671. }
  1672. if (speciesData[species].parents) {
  1673. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1674. } else {
  1675. return [species];
  1676. }
  1677. }
  1678. characterMakers.push(() => makeCharacter(
  1679. {
  1680. name: "Fen",
  1681. species: ["crux"],
  1682. description: {
  1683. title: "Bio",
  1684. text: "Very furry. Sheds on everything."
  1685. },
  1686. tags: [
  1687. "anthro",
  1688. "goo"
  1689. ]
  1690. },
  1691. {
  1692. back: {
  1693. height: math.unit(2.2428, "meter"),
  1694. weight: math.unit(124.738, "kg"),
  1695. name: "Back",
  1696. image: {
  1697. source: "./media/characters/fen/back.svg",
  1698. extra: 2024 / 1867,
  1699. bottom: 13 / 2037
  1700. },
  1701. info: {
  1702. description: {
  1703. mode: "append",
  1704. text: "\n\nHe is not currently looking at you."
  1705. }
  1706. }
  1707. },
  1708. full: {
  1709. height: math.unit(1.34, "meter"),
  1710. weight: math.unit(225, "kg"),
  1711. name: "Full",
  1712. image: {
  1713. source: "./media/characters/fen/full.svg"
  1714. },
  1715. info: {
  1716. description: {
  1717. mode: "append",
  1718. text: "\n\nMunch."
  1719. }
  1720. }
  1721. },
  1722. kneeling: {
  1723. height: math.unit(5.4, "feet"),
  1724. weight: math.unit(124.738, "kg"),
  1725. name: "Kneeling",
  1726. image: {
  1727. source: "./media/characters/fen/kneeling.svg",
  1728. extra: 563 / 507
  1729. }
  1730. },
  1731. goo: {
  1732. height: math.unit(2.8, "feet"),
  1733. weight: math.unit(125, "kg"),
  1734. capacity: math.unit(1, "people"),
  1735. name: "Goo",
  1736. image: {
  1737. source: "./media/characters/fen/goo.svg",
  1738. bottom: 116 / 613
  1739. }
  1740. },
  1741. lounging: {
  1742. height: math.unit(6.5, "feet"),
  1743. weight: math.unit(125, "kg"),
  1744. name: "Lounging",
  1745. image: {
  1746. source: "./media/characters/fen/lounging.svg"
  1747. }
  1748. },
  1749. },
  1750. [
  1751. {
  1752. name: "Normal",
  1753. height: math.unit(2.2428, "meter")
  1754. },
  1755. {
  1756. name: "Big",
  1757. height: math.unit(12, "feet")
  1758. },
  1759. {
  1760. name: "Minimacro",
  1761. height: math.unit(40, "feet"),
  1762. default: true,
  1763. info: {
  1764. description: {
  1765. mode: "append",
  1766. text: "\n\nTOO DAMN BIG"
  1767. }
  1768. }
  1769. },
  1770. {
  1771. name: "Macro",
  1772. height: math.unit(100, "feet"),
  1773. info: {
  1774. description: {
  1775. mode: "append",
  1776. text: "\n\nTOO DAMN BIG"
  1777. }
  1778. }
  1779. },
  1780. {
  1781. name: "Macro+",
  1782. height: math.unit(300, "feet")
  1783. },
  1784. {
  1785. name: "Megamacro",
  1786. height: math.unit(2, "miles")
  1787. }
  1788. ]
  1789. ))
  1790. characterMakers.push(() => makeCharacter(
  1791. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1792. {
  1793. front: {
  1794. height: math.unit(183, "cm"),
  1795. weight: math.unit(80, "kg"),
  1796. name: "Front",
  1797. image: {
  1798. source: "./media/characters/sofia-fluttertail/front.svg",
  1799. bottom: 0.01,
  1800. extra: 2154 / 2081
  1801. }
  1802. },
  1803. frontAlt: {
  1804. height: math.unit(183, "cm"),
  1805. weight: math.unit(80, "kg"),
  1806. name: "Front (alt)",
  1807. image: {
  1808. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1809. }
  1810. },
  1811. back: {
  1812. height: math.unit(183, "cm"),
  1813. weight: math.unit(80, "kg"),
  1814. name: "Back",
  1815. image: {
  1816. source: "./media/characters/sofia-fluttertail/back.svg"
  1817. }
  1818. },
  1819. kneeling: {
  1820. height: math.unit(125, "cm"),
  1821. weight: math.unit(80, "kg"),
  1822. name: "Kneeling",
  1823. image: {
  1824. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1825. extra: 1033 / 977,
  1826. bottom: 23.7 / 1057
  1827. }
  1828. },
  1829. maw: {
  1830. height: math.unit(183 / 5, "cm"),
  1831. name: "Maw",
  1832. image: {
  1833. source: "./media/characters/sofia-fluttertail/maw.svg"
  1834. }
  1835. },
  1836. mawcloseup: {
  1837. height: math.unit(183 / 5 * 0.41, "cm"),
  1838. name: "Maw (Closeup)",
  1839. image: {
  1840. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1841. }
  1842. },
  1843. paws: {
  1844. height: math.unit(1.17, "feet"),
  1845. name: "Paws",
  1846. image: {
  1847. source: "./media/characters/sofia-fluttertail/paws.svg",
  1848. extra: 851 / 851,
  1849. bottom: 17 / 868
  1850. }
  1851. },
  1852. },
  1853. [
  1854. {
  1855. name: "Normal",
  1856. height: math.unit(1.83, "meter")
  1857. },
  1858. {
  1859. name: "Size Thief",
  1860. height: math.unit(18, "feet")
  1861. },
  1862. {
  1863. name: "50 Foot Collie",
  1864. height: math.unit(50, "feet")
  1865. },
  1866. {
  1867. name: "Macro",
  1868. height: math.unit(96, "feet"),
  1869. default: true
  1870. },
  1871. {
  1872. name: "Megamerger",
  1873. height: math.unit(650, "feet")
  1874. },
  1875. ]
  1876. ))
  1877. characterMakers.push(() => makeCharacter(
  1878. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1879. {
  1880. front: {
  1881. height: math.unit(7, "feet"),
  1882. weight: math.unit(100, "kg"),
  1883. name: "Front",
  1884. image: {
  1885. source: "./media/characters/march/front.svg",
  1886. extra: 1992/1851,
  1887. bottom: 39/2031
  1888. }
  1889. },
  1890. foot: {
  1891. height: math.unit(0.9, "feet"),
  1892. name: "Foot",
  1893. image: {
  1894. source: "./media/characters/march/foot.svg"
  1895. }
  1896. },
  1897. },
  1898. [
  1899. {
  1900. name: "Normal",
  1901. height: math.unit(7.9, "feet")
  1902. },
  1903. {
  1904. name: "Macro",
  1905. height: math.unit(220, "meters")
  1906. },
  1907. {
  1908. name: "Megamacro",
  1909. height: math.unit(2.98, "km"),
  1910. default: true
  1911. },
  1912. {
  1913. name: "Gigamacro",
  1914. height: math.unit(15963, "km")
  1915. },
  1916. {
  1917. name: "Teramacro",
  1918. height: math.unit(2980000000, "km")
  1919. },
  1920. {
  1921. name: "Examacro",
  1922. height: math.unit(250, "parsecs")
  1923. },
  1924. ]
  1925. ))
  1926. characterMakers.push(() => makeCharacter(
  1927. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1928. {
  1929. front: {
  1930. height: math.unit(6, "feet"),
  1931. weight: math.unit(60, "kg"),
  1932. name: "Front",
  1933. image: {
  1934. source: "./media/characters/noir/front.svg",
  1935. extra: 1,
  1936. bottom: 0.032
  1937. }
  1938. },
  1939. },
  1940. [
  1941. {
  1942. name: "Normal",
  1943. height: math.unit(6.6, "feet")
  1944. },
  1945. {
  1946. name: "Macro",
  1947. height: math.unit(500, "feet")
  1948. },
  1949. {
  1950. name: "Megamacro",
  1951. height: math.unit(2.5, "km"),
  1952. default: true
  1953. },
  1954. {
  1955. name: "Gigamacro",
  1956. height: math.unit(22500, "km")
  1957. },
  1958. {
  1959. name: "Teramacro",
  1960. height: math.unit(2500000000, "km")
  1961. },
  1962. {
  1963. name: "Examacro",
  1964. height: math.unit(200, "parsecs")
  1965. },
  1966. ]
  1967. ))
  1968. characterMakers.push(() => makeCharacter(
  1969. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1970. {
  1971. front: {
  1972. height: math.unit(7, "feet"),
  1973. weight: math.unit(100, "kg"),
  1974. name: "Front",
  1975. image: {
  1976. source: "./media/characters/okuri/front.svg",
  1977. extra: 1,
  1978. bottom: 0.037
  1979. }
  1980. },
  1981. back: {
  1982. height: math.unit(7, "feet"),
  1983. weight: math.unit(100, "kg"),
  1984. name: "Back",
  1985. image: {
  1986. source: "./media/characters/okuri/back.svg",
  1987. extra: 1,
  1988. bottom: 0.007
  1989. }
  1990. },
  1991. },
  1992. [
  1993. {
  1994. name: "Megamacro",
  1995. height: math.unit(100, "miles"),
  1996. default: true
  1997. },
  1998. ]
  1999. ))
  2000. characterMakers.push(() => makeCharacter(
  2001. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2002. {
  2003. front: {
  2004. height: math.unit(7, "feet"),
  2005. weight: math.unit(100, "kg"),
  2006. name: "Front",
  2007. image: {
  2008. source: "./media/characters/manny/front.svg",
  2009. extra: 1,
  2010. bottom: 0.06
  2011. }
  2012. },
  2013. back: {
  2014. height: math.unit(7, "feet"),
  2015. weight: math.unit(100, "kg"),
  2016. name: "Back",
  2017. image: {
  2018. source: "./media/characters/manny/back.svg",
  2019. extra: 1,
  2020. bottom: 0.014
  2021. }
  2022. },
  2023. },
  2024. [
  2025. {
  2026. name: "Normal",
  2027. height: math.unit(7, "feet"),
  2028. },
  2029. {
  2030. name: "Macro",
  2031. height: math.unit(78, "feet"),
  2032. default: true
  2033. },
  2034. {
  2035. name: "Macro+",
  2036. height: math.unit(300, "meters")
  2037. },
  2038. {
  2039. name: "Macro++",
  2040. height: math.unit(2400, "meters")
  2041. },
  2042. {
  2043. name: "Megamacro",
  2044. height: math.unit(5167, "meters")
  2045. },
  2046. {
  2047. name: "Gigamacro",
  2048. height: math.unit(41769, "miles")
  2049. },
  2050. ]
  2051. ))
  2052. characterMakers.push(() => makeCharacter(
  2053. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2054. {
  2055. front: {
  2056. height: math.unit(7, "feet"),
  2057. weight: math.unit(100, "kg"),
  2058. name: "Front",
  2059. image: {
  2060. source: "./media/characters/adake/front-1.svg"
  2061. }
  2062. },
  2063. frontAlt: {
  2064. height: math.unit(7, "feet"),
  2065. weight: math.unit(100, "kg"),
  2066. name: "Front (Alt)",
  2067. image: {
  2068. source: "./media/characters/adake/front-2.svg",
  2069. extra: 1,
  2070. bottom: 0.01
  2071. }
  2072. },
  2073. back: {
  2074. height: math.unit(7, "feet"),
  2075. weight: math.unit(100, "kg"),
  2076. name: "Back",
  2077. image: {
  2078. source: "./media/characters/adake/back.svg",
  2079. }
  2080. },
  2081. kneel: {
  2082. height: math.unit(5.385, "feet"),
  2083. weight: math.unit(100, "kg"),
  2084. name: "Kneeling",
  2085. image: {
  2086. source: "./media/characters/adake/kneel.svg",
  2087. bottom: 0.052
  2088. }
  2089. },
  2090. },
  2091. [
  2092. {
  2093. name: "Normal",
  2094. height: math.unit(7, "feet"),
  2095. },
  2096. {
  2097. name: "Macro",
  2098. height: math.unit(78, "feet"),
  2099. default: true
  2100. },
  2101. {
  2102. name: "Macro+",
  2103. height: math.unit(300, "meters")
  2104. },
  2105. {
  2106. name: "Macro++",
  2107. height: math.unit(2400, "meters")
  2108. },
  2109. {
  2110. name: "Megamacro",
  2111. height: math.unit(5167, "meters")
  2112. },
  2113. {
  2114. name: "Gigamacro",
  2115. height: math.unit(41769, "miles")
  2116. },
  2117. ]
  2118. ))
  2119. characterMakers.push(() => makeCharacter(
  2120. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2121. {
  2122. front: {
  2123. height: math.unit(1.65, "meters"),
  2124. weight: math.unit(50, "kg"),
  2125. name: "Front",
  2126. image: {
  2127. source: "./media/characters/elijah/front.svg",
  2128. extra: 858 / 830,
  2129. bottom: 95.5 / 953.8559
  2130. }
  2131. },
  2132. back: {
  2133. height: math.unit(1.65, "meters"),
  2134. weight: math.unit(50, "kg"),
  2135. name: "Back",
  2136. image: {
  2137. source: "./media/characters/elijah/back.svg",
  2138. extra: 895 / 850,
  2139. bottom: 5.3 / 897.956
  2140. }
  2141. },
  2142. frontNsfw: {
  2143. height: math.unit(1.65, "meters"),
  2144. weight: math.unit(50, "kg"),
  2145. name: "Front (NSFW)",
  2146. image: {
  2147. source: "./media/characters/elijah/front-nsfw.svg",
  2148. extra: 858 / 830,
  2149. bottom: 95.5 / 953.8559
  2150. }
  2151. },
  2152. backNsfw: {
  2153. height: math.unit(1.65, "meters"),
  2154. weight: math.unit(50, "kg"),
  2155. name: "Back (NSFW)",
  2156. image: {
  2157. source: "./media/characters/elijah/back-nsfw.svg",
  2158. extra: 895 / 850,
  2159. bottom: 5.3 / 897.956
  2160. }
  2161. },
  2162. dick: {
  2163. height: math.unit(1, "feet"),
  2164. name: "Dick",
  2165. image: {
  2166. source: "./media/characters/elijah/dick.svg"
  2167. }
  2168. },
  2169. beakOpen: {
  2170. height: math.unit(1.25, "feet"),
  2171. name: "Beak (Open)",
  2172. image: {
  2173. source: "./media/characters/elijah/beak-open.svg"
  2174. }
  2175. },
  2176. beakShut: {
  2177. height: math.unit(1.25, "feet"),
  2178. name: "Beak (Shut)",
  2179. image: {
  2180. source: "./media/characters/elijah/beak-shut.svg"
  2181. }
  2182. },
  2183. footFlexing: {
  2184. height: math.unit(1.61, "feet"),
  2185. name: "Foot (Flexing)",
  2186. image: {
  2187. source: "./media/characters/elijah/foot-flexing.svg"
  2188. }
  2189. },
  2190. footStepping: {
  2191. height: math.unit(1.44, "feet"),
  2192. name: "Foot (Stepping)",
  2193. image: {
  2194. source: "./media/characters/elijah/foot-stepping.svg"
  2195. }
  2196. },
  2197. plantigradeLeg: {
  2198. height: math.unit(2.34, "feet"),
  2199. name: "Plantigrade Leg",
  2200. image: {
  2201. source: "./media/characters/elijah/plantigrade-leg.svg"
  2202. }
  2203. },
  2204. plantigradeFootLeft: {
  2205. height: math.unit(0.9, "feet"),
  2206. name: "Plantigrade Foot (Left)",
  2207. image: {
  2208. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2209. }
  2210. },
  2211. plantigradeFootRight: {
  2212. height: math.unit(0.9, "feet"),
  2213. name: "Plantigrade Foot (Right)",
  2214. image: {
  2215. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2216. }
  2217. },
  2218. },
  2219. [
  2220. {
  2221. name: "Normal",
  2222. height: math.unit(1.65, "meters")
  2223. },
  2224. {
  2225. name: "Macro",
  2226. height: math.unit(55, "meters"),
  2227. default: true
  2228. },
  2229. {
  2230. name: "Macro+",
  2231. height: math.unit(105, "meters")
  2232. },
  2233. ]
  2234. ))
  2235. characterMakers.push(() => makeCharacter(
  2236. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2237. {
  2238. front: {
  2239. height: math.unit(11, "feet"),
  2240. weight: math.unit(320, "kg"),
  2241. name: "Front",
  2242. image: {
  2243. source: "./media/characters/rai/front.svg",
  2244. extra: 1802/1696,
  2245. bottom: 68/1870
  2246. }
  2247. },
  2248. frontDressed: {
  2249. height: math.unit(11, "feet"),
  2250. weight: math.unit(320, "kg"),
  2251. name: "Front (Dressed)",
  2252. image: {
  2253. source: "./media/characters/rai/front-dressed.svg",
  2254. extra: 1802/1696,
  2255. bottom: 68/1870
  2256. }
  2257. },
  2258. side: {
  2259. height: math.unit(11, "feet"),
  2260. weight: math.unit(320, "kg"),
  2261. name: "Side",
  2262. image: {
  2263. source: "./media/characters/rai/side.svg",
  2264. extra: 1789/1710,
  2265. bottom: 115/1904
  2266. }
  2267. },
  2268. back: {
  2269. height: math.unit(11, "feet"),
  2270. weight: math.unit(320, "kg"),
  2271. name: "Back",
  2272. image: {
  2273. source: "./media/characters/rai/back.svg",
  2274. extra: 1770/1707,
  2275. bottom: 28/1798
  2276. }
  2277. },
  2278. feral: {
  2279. height: math.unit(11, "feet"),
  2280. weight: math.unit(640, "kg"),
  2281. name: "Feral",
  2282. image: {
  2283. source: "./media/characters/rai/feral.svg",
  2284. extra: 1035/642,
  2285. bottom: 86/1121
  2286. }
  2287. },
  2288. dragon: {
  2289. height: math.unit(23, "feet"),
  2290. weight: math.unit(50000, "lb"),
  2291. name: "Dragon",
  2292. image: {
  2293. source: "./media/characters/rai/dragon.svg",
  2294. extra: 2498 / 2030,
  2295. bottom: 85.2 / 2584
  2296. }
  2297. },
  2298. maw: {
  2299. height: math.unit(6 / 3.81416, "feet"),
  2300. name: "Maw",
  2301. image: {
  2302. source: "./media/characters/rai/maw.svg"
  2303. }
  2304. },
  2305. },
  2306. [
  2307. {
  2308. name: "Normal",
  2309. height: math.unit(11, "feet")
  2310. },
  2311. {
  2312. name: "Macro",
  2313. height: math.unit(302, "feet"),
  2314. default: true
  2315. },
  2316. ]
  2317. ))
  2318. characterMakers.push(() => makeCharacter(
  2319. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2320. {
  2321. frontDressed: {
  2322. height: math.unit(216, "feet"),
  2323. weight: math.unit(7000000, "lb"),
  2324. name: "Front (Dressed)",
  2325. image: {
  2326. source: "./media/characters/jazzy/front-dressed.svg",
  2327. extra: 2738 / 2651,
  2328. bottom: 41.8 / 2786
  2329. }
  2330. },
  2331. backDressed: {
  2332. height: math.unit(216, "feet"),
  2333. weight: math.unit(7000000, "lb"),
  2334. name: "Back (Dressed)",
  2335. image: {
  2336. source: "./media/characters/jazzy/back-dressed.svg",
  2337. extra: 2775 / 2673,
  2338. bottom: 36.8 / 2817
  2339. }
  2340. },
  2341. front: {
  2342. height: math.unit(216, "feet"),
  2343. weight: math.unit(7000000, "lb"),
  2344. name: "Front",
  2345. image: {
  2346. source: "./media/characters/jazzy/front.svg",
  2347. extra: 2738 / 2651,
  2348. bottom: 41.8 / 2786
  2349. }
  2350. },
  2351. back: {
  2352. height: math.unit(216, "feet"),
  2353. weight: math.unit(7000000, "lb"),
  2354. name: "Back",
  2355. image: {
  2356. source: "./media/characters/jazzy/back.svg",
  2357. extra: 2775 / 2673,
  2358. bottom: 36.8 / 2817
  2359. }
  2360. },
  2361. maw: {
  2362. height: math.unit(20, "feet"),
  2363. name: "Maw",
  2364. image: {
  2365. source: "./media/characters/jazzy/maw.svg"
  2366. }
  2367. },
  2368. paws: {
  2369. height: math.unit(27.5, "feet"),
  2370. name: "Paws",
  2371. image: {
  2372. source: "./media/characters/jazzy/paws.svg"
  2373. }
  2374. },
  2375. eye: {
  2376. height: math.unit(4.4, "feet"),
  2377. name: "Eye",
  2378. image: {
  2379. source: "./media/characters/jazzy/eye.svg"
  2380. }
  2381. },
  2382. droneOffense: {
  2383. height: math.unit(9.5, "inches"),
  2384. name: "Drone (Offense)",
  2385. image: {
  2386. source: "./media/characters/jazzy/drone-offense.svg"
  2387. }
  2388. },
  2389. droneRecon: {
  2390. height: math.unit(9.5, "inches"),
  2391. name: "Drone (Recon)",
  2392. image: {
  2393. source: "./media/characters/jazzy/drone-recon.svg"
  2394. }
  2395. },
  2396. droneDefense: {
  2397. height: math.unit(9.5, "inches"),
  2398. name: "Drone (Defense)",
  2399. image: {
  2400. source: "./media/characters/jazzy/drone-defense.svg"
  2401. }
  2402. },
  2403. },
  2404. [
  2405. {
  2406. name: "Macro",
  2407. height: math.unit(216, "feet"),
  2408. default: true
  2409. },
  2410. ]
  2411. ))
  2412. characterMakers.push(() => makeCharacter(
  2413. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2414. {
  2415. front: {
  2416. height: math.unit(9 + 6/12, "feet"),
  2417. weight: math.unit(700, "lb"),
  2418. name: "Front",
  2419. image: {
  2420. source: "./media/characters/flamm/front.svg",
  2421. extra: 1751/1632,
  2422. bottom: 46/1797
  2423. }
  2424. },
  2425. buff: {
  2426. height: math.unit(9 + 6/12, "feet"),
  2427. weight: math.unit(950, "lb"),
  2428. name: "Buff",
  2429. image: {
  2430. source: "./media/characters/flamm/buff.svg",
  2431. extra: 3018/2874,
  2432. bottom: 221/3239
  2433. }
  2434. },
  2435. },
  2436. [
  2437. {
  2438. name: "Normal",
  2439. height: math.unit(9.5, "feet")
  2440. },
  2441. {
  2442. name: "Macro",
  2443. height: math.unit(200, "feet"),
  2444. default: true
  2445. },
  2446. ]
  2447. ))
  2448. characterMakers.push(() => makeCharacter(
  2449. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2450. {
  2451. front: {
  2452. height: math.unit(5 + 3/12, "feet"),
  2453. weight: math.unit(60, "kg"),
  2454. name: "Front",
  2455. image: {
  2456. source: "./media/characters/zephiro/front.svg",
  2457. extra: 2309 / 2162,
  2458. bottom: 0.069
  2459. }
  2460. },
  2461. side: {
  2462. height: math.unit(5 + 3/12, "feet"),
  2463. weight: math.unit(60, "kg"),
  2464. name: "Side",
  2465. image: {
  2466. source: "./media/characters/zephiro/side.svg",
  2467. extra: 2403 / 2279,
  2468. bottom: 0.015
  2469. }
  2470. },
  2471. back: {
  2472. height: math.unit(5 + 3/12, "feet"),
  2473. weight: math.unit(60, "kg"),
  2474. name: "Back",
  2475. image: {
  2476. source: "./media/characters/zephiro/back.svg",
  2477. extra: 2373 / 2244,
  2478. bottom: 0.013
  2479. }
  2480. },
  2481. hand: {
  2482. height: math.unit(0.68, "feet"),
  2483. name: "Hand",
  2484. image: {
  2485. source: "./media/characters/zephiro/hand.svg"
  2486. }
  2487. },
  2488. paw: {
  2489. height: math.unit(1, "feet"),
  2490. name: "Paw",
  2491. image: {
  2492. source: "./media/characters/zephiro/paw.svg"
  2493. }
  2494. },
  2495. beans: {
  2496. height: math.unit(0.93, "feet"),
  2497. name: "Beans",
  2498. image: {
  2499. source: "./media/characters/zephiro/beans.svg"
  2500. }
  2501. },
  2502. },
  2503. [
  2504. {
  2505. name: "Micro",
  2506. height: math.unit(3, "inches")
  2507. },
  2508. {
  2509. name: "Normal",
  2510. height: math.unit(5 + 3 / 12, "feet"),
  2511. default: true
  2512. },
  2513. {
  2514. name: "Macro",
  2515. height: math.unit(118, "feet")
  2516. },
  2517. ]
  2518. ))
  2519. characterMakers.push(() => makeCharacter(
  2520. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2521. {
  2522. front: {
  2523. height: math.unit(5, "feet"),
  2524. weight: math.unit(90, "kg"),
  2525. name: "Front",
  2526. image: {
  2527. source: "./media/characters/fory/front.svg",
  2528. extra: 2862 / 2674,
  2529. bottom: 180 / 3043.8
  2530. }
  2531. },
  2532. back: {
  2533. height: math.unit(5, "feet"),
  2534. weight: math.unit(90, "kg"),
  2535. name: "Back",
  2536. image: {
  2537. source: "./media/characters/fory/back.svg",
  2538. extra: 2962 / 2791,
  2539. bottom: 106 / 3071.8
  2540. }
  2541. },
  2542. foot: {
  2543. height: math.unit(2.14, "feet"),
  2544. name: "Foot",
  2545. image: {
  2546. source: "./media/characters/fory/foot.svg"
  2547. }
  2548. },
  2549. },
  2550. [
  2551. {
  2552. name: "Normal",
  2553. height: math.unit(5, "feet")
  2554. },
  2555. {
  2556. name: "Macro",
  2557. height: math.unit(50, "feet"),
  2558. default: true
  2559. },
  2560. {
  2561. name: "Megamacro",
  2562. height: math.unit(10, "miles")
  2563. },
  2564. {
  2565. name: "Gigamacro",
  2566. height: math.unit(5, "earths")
  2567. },
  2568. ]
  2569. ))
  2570. characterMakers.push(() => makeCharacter(
  2571. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2572. {
  2573. front: {
  2574. height: math.unit(7, "feet"),
  2575. weight: math.unit(90, "kg"),
  2576. name: "Front",
  2577. image: {
  2578. source: "./media/characters/kurrikage/front.svg",
  2579. extra: 1,
  2580. bottom: 0.035
  2581. }
  2582. },
  2583. back: {
  2584. height: math.unit(7, "feet"),
  2585. weight: math.unit(90, "lb"),
  2586. name: "Back",
  2587. image: {
  2588. source: "./media/characters/kurrikage/back.svg"
  2589. }
  2590. },
  2591. paw: {
  2592. height: math.unit(1.5, "feet"),
  2593. name: "Paw",
  2594. image: {
  2595. source: "./media/characters/kurrikage/paw.svg"
  2596. }
  2597. },
  2598. staff: {
  2599. height: math.unit(6.7, "feet"),
  2600. name: "Staff",
  2601. image: {
  2602. source: "./media/characters/kurrikage/staff.svg"
  2603. }
  2604. },
  2605. peek: {
  2606. height: math.unit(1.05, "feet"),
  2607. name: "Peeking",
  2608. image: {
  2609. source: "./media/characters/kurrikage/peek.svg",
  2610. bottom: 0.08
  2611. }
  2612. },
  2613. },
  2614. [
  2615. {
  2616. name: "Normal",
  2617. height: math.unit(12, "feet"),
  2618. default: true
  2619. },
  2620. {
  2621. name: "Big",
  2622. height: math.unit(20, "feet")
  2623. },
  2624. {
  2625. name: "Macro",
  2626. height: math.unit(500, "feet")
  2627. },
  2628. {
  2629. name: "Megamacro",
  2630. height: math.unit(20, "miles")
  2631. },
  2632. ]
  2633. ))
  2634. characterMakers.push(() => makeCharacter(
  2635. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2636. {
  2637. front: {
  2638. height: math.unit(6, "feet"),
  2639. weight: math.unit(75, "kg"),
  2640. name: "Front",
  2641. image: {
  2642. source: "./media/characters/shingo/front.svg",
  2643. extra: 706/681,
  2644. bottom: 11/717
  2645. }
  2646. },
  2647. frontAlt: {
  2648. height: math.unit(6, "feet"),
  2649. weight: math.unit(75, "kg"),
  2650. name: "Front (Alt)",
  2651. image: {
  2652. source: "./media/characters/shingo/front-alt.svg",
  2653. extra: 3511 / 3338,
  2654. bottom: 0.005
  2655. }
  2656. },
  2657. paw: {
  2658. height: math.unit(1, "feet"),
  2659. name: "Paw",
  2660. image: {
  2661. source: "./media/characters/shingo/paw.svg"
  2662. }
  2663. },
  2664. },
  2665. [
  2666. {
  2667. name: "Micro",
  2668. height: math.unit(4, "inches")
  2669. },
  2670. {
  2671. name: "Normal",
  2672. height: math.unit(6, "feet"),
  2673. default: true
  2674. },
  2675. {
  2676. name: "Macro",
  2677. height: math.unit(108, "feet")
  2678. },
  2679. {
  2680. name: "Macro+",
  2681. height: math.unit(1500, "feet")
  2682. },
  2683. ]
  2684. ))
  2685. characterMakers.push(() => makeCharacter(
  2686. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2687. {
  2688. side: {
  2689. height: math.unit(6, "feet"),
  2690. weight: math.unit(75, "kg"),
  2691. name: "Side",
  2692. image: {
  2693. source: "./media/characters/aigey/side.svg"
  2694. }
  2695. },
  2696. },
  2697. [
  2698. {
  2699. name: "Macro",
  2700. height: math.unit(200, "feet"),
  2701. default: true
  2702. },
  2703. {
  2704. name: "Megamacro",
  2705. height: math.unit(100, "miles")
  2706. },
  2707. ]
  2708. )
  2709. )
  2710. characterMakers.push(() => makeCharacter(
  2711. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2712. {
  2713. front: {
  2714. height: math.unit(5 + 5 / 12, "feet"),
  2715. weight: math.unit(75, "kg"),
  2716. name: "Front",
  2717. image: {
  2718. source: "./media/characters/natasha/front.svg",
  2719. extra: 859 / 824,
  2720. bottom: 23 / 879.6
  2721. }
  2722. },
  2723. frontNsfw: {
  2724. height: math.unit(5 + 5 / 12, "feet"),
  2725. weight: math.unit(75, "kg"),
  2726. name: "Front (NSFW)",
  2727. image: {
  2728. source: "./media/characters/natasha/front-nsfw.svg",
  2729. extra: 859 / 824,
  2730. bottom: 23 / 879.6
  2731. }
  2732. },
  2733. frontErect: {
  2734. height: math.unit(5 + 5 / 12, "feet"),
  2735. weight: math.unit(75, "kg"),
  2736. name: "Front (Erect)",
  2737. image: {
  2738. source: "./media/characters/natasha/front-erect.svg",
  2739. extra: 859 / 824,
  2740. bottom: 23 / 879.6
  2741. }
  2742. },
  2743. back: {
  2744. height: math.unit(5 + 5 / 12, "feet"),
  2745. weight: math.unit(75, "kg"),
  2746. name: "Back",
  2747. image: {
  2748. source: "./media/characters/natasha/back.svg",
  2749. extra: 887.9 / 852.6,
  2750. bottom: 9.7 / 896.4
  2751. }
  2752. },
  2753. backAlt: {
  2754. height: math.unit(5 + 5 / 12, "feet"),
  2755. weight: math.unit(75, "kg"),
  2756. name: "Back (Alt)",
  2757. image: {
  2758. source: "./media/characters/natasha/back-alt.svg",
  2759. extra: 1236.7 / 1192,
  2760. bottom: 22.3 / 1258.2
  2761. }
  2762. },
  2763. dick: {
  2764. height: math.unit(1.772, "feet"),
  2765. name: "Dick",
  2766. image: {
  2767. source: "./media/characters/natasha/dick.svg"
  2768. }
  2769. },
  2770. paw: {
  2771. height: math.unit(0.250, "meters"),
  2772. name: "Paw",
  2773. image: {
  2774. source: "./media/characters/natasha/paw.svg"
  2775. }
  2776. },
  2777. },
  2778. [
  2779. {
  2780. name: "Normal",
  2781. height: math.unit(5 + 5 / 12, "feet")
  2782. },
  2783. {
  2784. name: "Large",
  2785. height: math.unit(12, "feet")
  2786. },
  2787. {
  2788. name: "Macro",
  2789. height: math.unit(100, "feet"),
  2790. default: true
  2791. },
  2792. {
  2793. name: "Macro+",
  2794. height: math.unit(260, "feet")
  2795. },
  2796. {
  2797. name: "Macro++",
  2798. height: math.unit(1, "mile")
  2799. },
  2800. ]
  2801. ))
  2802. characterMakers.push(() => makeCharacter(
  2803. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2804. {
  2805. front: {
  2806. height: math.unit(6, "feet"),
  2807. weight: math.unit(75, "kg"),
  2808. name: "Front",
  2809. image: {
  2810. source: "./media/characters/malik/front.svg"
  2811. }
  2812. },
  2813. side: {
  2814. height: math.unit(6, "feet"),
  2815. weight: math.unit(75, "kg"),
  2816. name: "Side",
  2817. image: {
  2818. source: "./media/characters/malik/side.svg",
  2819. extra: 1.1539
  2820. }
  2821. },
  2822. back: {
  2823. height: math.unit(6, "feet"),
  2824. weight: math.unit(75, "kg"),
  2825. name: "Back",
  2826. image: {
  2827. source: "./media/characters/malik/back.svg"
  2828. }
  2829. },
  2830. },
  2831. [
  2832. {
  2833. name: "Macro",
  2834. height: math.unit(156, "feet"),
  2835. default: true
  2836. },
  2837. {
  2838. name: "Macro+",
  2839. height: math.unit(1188, "feet")
  2840. },
  2841. ]
  2842. ))
  2843. characterMakers.push(() => makeCharacter(
  2844. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2845. {
  2846. front: {
  2847. height: math.unit(6, "feet"),
  2848. weight: math.unit(75, "kg"),
  2849. name: "Front",
  2850. image: {
  2851. source: "./media/characters/sefer/front.svg",
  2852. extra: 848 / 659,
  2853. bottom: 28.3 / 876.442
  2854. }
  2855. },
  2856. back: {
  2857. height: math.unit(6, "feet"),
  2858. weight: math.unit(75, "kg"),
  2859. name: "Back",
  2860. image: {
  2861. source: "./media/characters/sefer/back.svg",
  2862. extra: 864 / 695,
  2863. bottom: 10 / 871
  2864. }
  2865. },
  2866. frontDressed: {
  2867. height: math.unit(6, "feet"),
  2868. weight: math.unit(75, "kg"),
  2869. name: "Front (Dressed)",
  2870. image: {
  2871. source: "./media/characters/sefer/front-dressed.svg",
  2872. extra: 839 / 653,
  2873. bottom: 37.6 / 878
  2874. }
  2875. },
  2876. },
  2877. [
  2878. {
  2879. name: "Normal",
  2880. height: math.unit(6, "feet"),
  2881. default: true
  2882. },
  2883. ]
  2884. ))
  2885. characterMakers.push(() => makeCharacter(
  2886. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2887. {
  2888. body: {
  2889. height: math.unit(2.2428, "meter"),
  2890. weight: math.unit(124.738, "kg"),
  2891. name: "Body",
  2892. image: {
  2893. extra: 1225 / 1050,
  2894. source: "./media/characters/north/front.svg"
  2895. }
  2896. }
  2897. },
  2898. [
  2899. {
  2900. name: "Micro",
  2901. height: math.unit(4, "inches")
  2902. },
  2903. {
  2904. name: "Macro",
  2905. height: math.unit(63, "meters")
  2906. },
  2907. {
  2908. name: "Megamacro",
  2909. height: math.unit(101, "miles"),
  2910. default: true
  2911. }
  2912. ]
  2913. ))
  2914. characterMakers.push(() => makeCharacter(
  2915. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2916. {
  2917. angled: {
  2918. height: math.unit(4, "meter"),
  2919. weight: math.unit(150, "kg"),
  2920. name: "Angled",
  2921. image: {
  2922. source: "./media/characters/talan/angled-sfw.svg",
  2923. bottom: 29 / 3734
  2924. }
  2925. },
  2926. angledNsfw: {
  2927. height: math.unit(4, "meter"),
  2928. weight: math.unit(150, "kg"),
  2929. name: "Angled (NSFW)",
  2930. image: {
  2931. source: "./media/characters/talan/angled-nsfw.svg",
  2932. bottom: 29 / 3734
  2933. }
  2934. },
  2935. frontNsfw: {
  2936. height: math.unit(4, "meter"),
  2937. weight: math.unit(150, "kg"),
  2938. name: "Front (NSFW)",
  2939. image: {
  2940. source: "./media/characters/talan/front-nsfw.svg",
  2941. bottom: 29 / 3734
  2942. }
  2943. },
  2944. sideNsfw: {
  2945. height: math.unit(4, "meter"),
  2946. weight: math.unit(150, "kg"),
  2947. name: "Side (NSFW)",
  2948. image: {
  2949. source: "./media/characters/talan/side-nsfw.svg",
  2950. bottom: 29 / 3734
  2951. }
  2952. },
  2953. back: {
  2954. height: math.unit(4, "meter"),
  2955. weight: math.unit(150, "kg"),
  2956. name: "Back",
  2957. image: {
  2958. source: "./media/characters/talan/back.svg"
  2959. }
  2960. },
  2961. dickBottom: {
  2962. height: math.unit(0.621, "meter"),
  2963. name: "Dick (Bottom)",
  2964. image: {
  2965. source: "./media/characters/talan/dick-bottom.svg"
  2966. }
  2967. },
  2968. dickTop: {
  2969. height: math.unit(0.621, "meter"),
  2970. name: "Dick (Top)",
  2971. image: {
  2972. source: "./media/characters/talan/dick-top.svg"
  2973. }
  2974. },
  2975. dickSide: {
  2976. height: math.unit(0.305, "meter"),
  2977. name: "Dick (Side)",
  2978. image: {
  2979. source: "./media/characters/talan/dick-side.svg"
  2980. }
  2981. },
  2982. dickFront: {
  2983. height: math.unit(0.305, "meter"),
  2984. name: "Dick (Front)",
  2985. image: {
  2986. source: "./media/characters/talan/dick-front.svg"
  2987. }
  2988. },
  2989. },
  2990. [
  2991. {
  2992. name: "Normal",
  2993. height: math.unit(4, "meters")
  2994. },
  2995. {
  2996. name: "Macro",
  2997. height: math.unit(100, "meters")
  2998. },
  2999. {
  3000. name: "Megamacro",
  3001. height: math.unit(2, "miles"),
  3002. default: true
  3003. },
  3004. {
  3005. name: "Gigamacro",
  3006. height: math.unit(5000, "miles")
  3007. },
  3008. {
  3009. name: "Teramacro",
  3010. height: math.unit(100, "parsecs")
  3011. }
  3012. ]
  3013. ))
  3014. characterMakers.push(() => makeCharacter(
  3015. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3016. {
  3017. front: {
  3018. height: math.unit(2, "meter"),
  3019. weight: math.unit(90, "kg"),
  3020. name: "Front",
  3021. image: {
  3022. source: "./media/characters/gael'rathus/front.svg"
  3023. }
  3024. },
  3025. frontAlt: {
  3026. height: math.unit(2, "meter"),
  3027. weight: math.unit(90, "kg"),
  3028. name: "Front (alt)",
  3029. image: {
  3030. source: "./media/characters/gael'rathus/front-alt.svg"
  3031. }
  3032. },
  3033. frontAlt2: {
  3034. height: math.unit(2, "meter"),
  3035. weight: math.unit(90, "kg"),
  3036. name: "Front (alt 2)",
  3037. image: {
  3038. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3039. }
  3040. }
  3041. },
  3042. [
  3043. {
  3044. name: "Normal",
  3045. height: math.unit(9, "feet"),
  3046. default: true
  3047. },
  3048. {
  3049. name: "Large",
  3050. height: math.unit(25, "feet")
  3051. },
  3052. {
  3053. name: "Macro",
  3054. height: math.unit(0.25, "miles")
  3055. },
  3056. {
  3057. name: "Megamacro",
  3058. height: math.unit(10, "miles")
  3059. }
  3060. ]
  3061. ))
  3062. characterMakers.push(() => makeCharacter(
  3063. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3064. {
  3065. side: {
  3066. height: math.unit(2, "meter"),
  3067. weight: math.unit(140, "kg"),
  3068. name: "Side",
  3069. image: {
  3070. source: "./media/characters/sosha/side.svg",
  3071. bottom: 0.042
  3072. }
  3073. },
  3074. },
  3075. [
  3076. {
  3077. name: "Normal",
  3078. height: math.unit(12, "feet"),
  3079. default: true
  3080. }
  3081. ]
  3082. ))
  3083. characterMakers.push(() => makeCharacter(
  3084. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3085. {
  3086. side: {
  3087. height: math.unit(5 + 5 / 12, "feet"),
  3088. weight: math.unit(170, "kg"),
  3089. name: "Side",
  3090. image: {
  3091. source: "./media/characters/runnola/side.svg",
  3092. extra: 741 / 448,
  3093. bottom: 0.05
  3094. }
  3095. },
  3096. },
  3097. [
  3098. {
  3099. name: "Small",
  3100. height: math.unit(3, "feet")
  3101. },
  3102. {
  3103. name: "Normal",
  3104. height: math.unit(5 + 5 / 12, "feet"),
  3105. default: true
  3106. },
  3107. {
  3108. name: "Big",
  3109. height: math.unit(10, "feet")
  3110. },
  3111. ]
  3112. ))
  3113. characterMakers.push(() => makeCharacter(
  3114. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3115. {
  3116. front: {
  3117. height: math.unit(2, "meter"),
  3118. weight: math.unit(50, "kg"),
  3119. name: "Front",
  3120. image: {
  3121. source: "./media/characters/kurribird/front.svg",
  3122. bottom: 0.015
  3123. }
  3124. },
  3125. frontAlt: {
  3126. height: math.unit(1.5, "meter"),
  3127. weight: math.unit(50, "kg"),
  3128. name: "Front (Alt)",
  3129. image: {
  3130. source: "./media/characters/kurribird/front-alt.svg",
  3131. extra: 1.45
  3132. }
  3133. },
  3134. },
  3135. [
  3136. {
  3137. name: "Normal",
  3138. height: math.unit(7, "feet")
  3139. },
  3140. {
  3141. name: "Big",
  3142. height: math.unit(12, "feet"),
  3143. default: true
  3144. },
  3145. {
  3146. name: "Macro",
  3147. height: math.unit(1500, "feet")
  3148. },
  3149. {
  3150. name: "Megamacro",
  3151. height: math.unit(2, "miles")
  3152. }
  3153. ]
  3154. ))
  3155. characterMakers.push(() => makeCharacter(
  3156. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3157. {
  3158. front: {
  3159. height: math.unit(2, "meter"),
  3160. weight: math.unit(80, "kg"),
  3161. name: "Front",
  3162. image: {
  3163. source: "./media/characters/elbial/front.svg",
  3164. extra: 1643 / 1556,
  3165. bottom: 60.2 / 1696
  3166. }
  3167. },
  3168. side: {
  3169. height: math.unit(2, "meter"),
  3170. weight: math.unit(80, "kg"),
  3171. name: "Side",
  3172. image: {
  3173. source: "./media/characters/elbial/side.svg",
  3174. extra: 1630 / 1565,
  3175. bottom: 71.5 / 1697
  3176. }
  3177. },
  3178. back: {
  3179. height: math.unit(2, "meter"),
  3180. weight: math.unit(80, "kg"),
  3181. name: "Back",
  3182. image: {
  3183. source: "./media/characters/elbial/back.svg",
  3184. extra: 1668 / 1595,
  3185. bottom: 5.6 / 1672
  3186. }
  3187. },
  3188. frontDressed: {
  3189. height: math.unit(2, "meter"),
  3190. weight: math.unit(80, "kg"),
  3191. name: "Front (Dressed)",
  3192. image: {
  3193. source: "./media/characters/elbial/front-dressed.svg",
  3194. extra: 1653 / 1584,
  3195. bottom: 57 / 1708
  3196. }
  3197. },
  3198. genitals: {
  3199. height: math.unit(2 / 3.367, "meter"),
  3200. name: "Genitals",
  3201. image: {
  3202. source: "./media/characters/elbial/genitals.svg"
  3203. }
  3204. },
  3205. },
  3206. [
  3207. {
  3208. name: "Large",
  3209. height: math.unit(100, "feet")
  3210. },
  3211. {
  3212. name: "Macro",
  3213. height: math.unit(500, "feet"),
  3214. default: true
  3215. },
  3216. {
  3217. name: "Megamacro",
  3218. height: math.unit(10, "miles")
  3219. },
  3220. {
  3221. name: "Gigamacro",
  3222. height: math.unit(25000, "miles")
  3223. },
  3224. {
  3225. name: "Full-Size",
  3226. height: math.unit(8000000, "gigaparsecs")
  3227. }
  3228. ]
  3229. ))
  3230. characterMakers.push(() => makeCharacter(
  3231. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3232. {
  3233. front: {
  3234. height: math.unit(2, "meter"),
  3235. weight: math.unit(60, "kg"),
  3236. name: "Front",
  3237. image: {
  3238. source: "./media/characters/noah/front.svg"
  3239. }
  3240. },
  3241. talons: {
  3242. height: math.unit(0.315, "meter"),
  3243. name: "Talons",
  3244. image: {
  3245. source: "./media/characters/noah/talons.svg"
  3246. }
  3247. }
  3248. },
  3249. [
  3250. {
  3251. name: "Large",
  3252. height: math.unit(50, "feet")
  3253. },
  3254. {
  3255. name: "Macro",
  3256. height: math.unit(750, "feet"),
  3257. default: true
  3258. },
  3259. {
  3260. name: "Megamacro",
  3261. height: math.unit(50, "miles")
  3262. },
  3263. {
  3264. name: "Gigamacro",
  3265. height: math.unit(100000, "miles")
  3266. },
  3267. {
  3268. name: "Full-Size",
  3269. height: math.unit(3000000000, "miles")
  3270. }
  3271. ]
  3272. ))
  3273. characterMakers.push(() => makeCharacter(
  3274. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3275. {
  3276. front: {
  3277. height: math.unit(2, "meter"),
  3278. weight: math.unit(80, "kg"),
  3279. name: "Front",
  3280. image: {
  3281. source: "./media/characters/natalya/front.svg"
  3282. }
  3283. },
  3284. back: {
  3285. height: math.unit(2, "meter"),
  3286. weight: math.unit(80, "kg"),
  3287. name: "Back",
  3288. image: {
  3289. source: "./media/characters/natalya/back.svg"
  3290. }
  3291. }
  3292. },
  3293. [
  3294. {
  3295. name: "Normal",
  3296. height: math.unit(150, "feet"),
  3297. default: true
  3298. },
  3299. {
  3300. name: "Megamacro",
  3301. height: math.unit(5, "miles")
  3302. },
  3303. {
  3304. name: "Full-Size",
  3305. height: math.unit(600, "kiloparsecs")
  3306. }
  3307. ]
  3308. ))
  3309. characterMakers.push(() => makeCharacter(
  3310. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3311. {
  3312. front: {
  3313. height: math.unit(2, "meter"),
  3314. weight: math.unit(50, "kg"),
  3315. name: "Front",
  3316. image: {
  3317. source: "./media/characters/erestrebah/front.svg",
  3318. extra: 208 / 193,
  3319. bottom: 0.055
  3320. }
  3321. },
  3322. back: {
  3323. height: math.unit(2, "meter"),
  3324. weight: math.unit(50, "kg"),
  3325. name: "Back",
  3326. image: {
  3327. source: "./media/characters/erestrebah/back.svg",
  3328. extra: 1.3
  3329. }
  3330. }
  3331. },
  3332. [
  3333. {
  3334. name: "Normal",
  3335. height: math.unit(10, "feet")
  3336. },
  3337. {
  3338. name: "Large",
  3339. height: math.unit(50, "feet"),
  3340. default: true
  3341. },
  3342. {
  3343. name: "Macro",
  3344. height: math.unit(300, "feet")
  3345. },
  3346. {
  3347. name: "Macro+",
  3348. height: math.unit(750, "feet")
  3349. },
  3350. {
  3351. name: "Megamacro",
  3352. height: math.unit(3, "miles")
  3353. }
  3354. ]
  3355. ))
  3356. characterMakers.push(() => makeCharacter(
  3357. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3358. {
  3359. front: {
  3360. height: math.unit(2, "meter"),
  3361. weight: math.unit(80, "kg"),
  3362. name: "Front",
  3363. image: {
  3364. source: "./media/characters/jennifer/front.svg",
  3365. bottom: 0.11,
  3366. extra: 1.16
  3367. }
  3368. },
  3369. frontAlt: {
  3370. height: math.unit(2, "meter"),
  3371. weight: math.unit(80, "kg"),
  3372. name: "Front (Alt)",
  3373. image: {
  3374. source: "./media/characters/jennifer/front-alt.svg"
  3375. }
  3376. }
  3377. },
  3378. [
  3379. {
  3380. name: "Canon Height",
  3381. height: math.unit(120, "feet"),
  3382. default: true
  3383. },
  3384. {
  3385. name: "Macro+",
  3386. height: math.unit(300, "feet")
  3387. },
  3388. {
  3389. name: "Megamacro",
  3390. height: math.unit(20000, "feet")
  3391. }
  3392. ]
  3393. ))
  3394. characterMakers.push(() => makeCharacter(
  3395. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3396. {
  3397. front: {
  3398. height: math.unit(2, "meter"),
  3399. weight: math.unit(50, "kg"),
  3400. name: "Front",
  3401. image: {
  3402. source: "./media/characters/kalista/front.svg",
  3403. extra: 1947 / 1700,
  3404. bottom: 76.6 / 1412.98
  3405. }
  3406. },
  3407. back: {
  3408. height: math.unit(2, "meter"),
  3409. weight: math.unit(50, "kg"),
  3410. name: "Back",
  3411. image: {
  3412. source: "./media/characters/kalista/back.svg",
  3413. extra: 1366 / 1156,
  3414. bottom: 33.9 / 1362.78
  3415. }
  3416. }
  3417. },
  3418. [
  3419. {
  3420. name: "Uncomfortably Small",
  3421. height: math.unit(10, "feet")
  3422. },
  3423. {
  3424. name: "Small",
  3425. height: math.unit(30, "feet")
  3426. },
  3427. {
  3428. name: "Macro",
  3429. height: math.unit(100, "feet"),
  3430. default: true
  3431. },
  3432. {
  3433. name: "Macro+",
  3434. height: math.unit(2000, "feet")
  3435. },
  3436. {
  3437. name: "True Form",
  3438. height: math.unit(8924, "miles")
  3439. }
  3440. ]
  3441. ))
  3442. characterMakers.push(() => makeCharacter(
  3443. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3444. {
  3445. front: {
  3446. height: math.unit(2, "meter"),
  3447. weight: math.unit(120, "kg"),
  3448. name: "Front",
  3449. image: {
  3450. source: "./media/characters/ggv/front.svg"
  3451. }
  3452. },
  3453. side: {
  3454. height: math.unit(2, "meter"),
  3455. weight: math.unit(120, "kg"),
  3456. name: "Side",
  3457. image: {
  3458. source: "./media/characters/ggv/side.svg"
  3459. }
  3460. }
  3461. },
  3462. [
  3463. {
  3464. name: "Extremely Puny",
  3465. height: math.unit(9 + 5 / 12, "feet")
  3466. },
  3467. {
  3468. name: "Horribly Small",
  3469. height: math.unit(47.7, "miles"),
  3470. default: true
  3471. },
  3472. {
  3473. name: "Reasonably Sized",
  3474. height: math.unit(25000, "parsecs")
  3475. },
  3476. {
  3477. name: "Slightly Uncompressed",
  3478. height: math.unit(7.77e31, "parsecs")
  3479. },
  3480. {
  3481. name: "Omniversal",
  3482. height: math.unit(1e300, "meters")
  3483. },
  3484. ]
  3485. ))
  3486. characterMakers.push(() => makeCharacter(
  3487. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3488. {
  3489. front: {
  3490. height: math.unit(2, "meter"),
  3491. weight: math.unit(75, "lb"),
  3492. name: "Front",
  3493. image: {
  3494. source: "./media/characters/napalm/front.svg"
  3495. }
  3496. },
  3497. back: {
  3498. height: math.unit(2, "meter"),
  3499. weight: math.unit(75, "lb"),
  3500. name: "Back",
  3501. image: {
  3502. source: "./media/characters/napalm/back.svg"
  3503. }
  3504. }
  3505. },
  3506. [
  3507. {
  3508. name: "Standard",
  3509. height: math.unit(55, "feet"),
  3510. default: true
  3511. }
  3512. ]
  3513. ))
  3514. characterMakers.push(() => makeCharacter(
  3515. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3516. {
  3517. front: {
  3518. height: math.unit(7 + 5 / 6, "feet"),
  3519. weight: math.unit(325, "lb"),
  3520. name: "Front",
  3521. image: {
  3522. source: "./media/characters/asana/front.svg",
  3523. extra: 1133 / 1060,
  3524. bottom: 15.2 / 1148.6
  3525. }
  3526. },
  3527. back: {
  3528. height: math.unit(7 + 5 / 6, "feet"),
  3529. weight: math.unit(325, "lb"),
  3530. name: "Back",
  3531. image: {
  3532. source: "./media/characters/asana/back.svg",
  3533. extra: 1114 / 1043,
  3534. bottom: 5 / 1120
  3535. }
  3536. },
  3537. dressedDark: {
  3538. height: math.unit(7 + 5 / 6, "feet"),
  3539. weight: math.unit(325, "lb"),
  3540. name: "Dressed (Dark)",
  3541. image: {
  3542. source: "./media/characters/asana/dressed-dark.svg",
  3543. extra: 1133 / 1060,
  3544. bottom: 15.2 / 1148.6
  3545. }
  3546. },
  3547. dressedLight: {
  3548. height: math.unit(7 + 5 / 6, "feet"),
  3549. weight: math.unit(325, "lb"),
  3550. name: "Dressed (Light)",
  3551. image: {
  3552. source: "./media/characters/asana/dressed-light.svg",
  3553. extra: 1133 / 1060,
  3554. bottom: 15.2 / 1148.6
  3555. }
  3556. },
  3557. },
  3558. [
  3559. {
  3560. name: "Standard",
  3561. height: math.unit(7 + 5 / 6, "feet"),
  3562. default: true
  3563. },
  3564. {
  3565. name: "Large",
  3566. height: math.unit(10, "meters")
  3567. },
  3568. {
  3569. name: "Macro",
  3570. height: math.unit(2500, "meters")
  3571. },
  3572. {
  3573. name: "Megamacro",
  3574. height: math.unit(5e6, "meters")
  3575. },
  3576. {
  3577. name: "Examacro",
  3578. height: math.unit(5e12, "lightyears")
  3579. },
  3580. {
  3581. name: "Max Size",
  3582. height: math.unit(1e31, "lightyears")
  3583. }
  3584. ]
  3585. ))
  3586. characterMakers.push(() => makeCharacter(
  3587. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3588. {
  3589. front: {
  3590. height: math.unit(2, "meter"),
  3591. weight: math.unit(60, "kg"),
  3592. name: "Front",
  3593. image: {
  3594. source: "./media/characters/ebony/front.svg",
  3595. bottom: 0.03,
  3596. extra: 1045 / 810 + 0.03
  3597. }
  3598. },
  3599. side: {
  3600. height: math.unit(2, "meter"),
  3601. weight: math.unit(60, "kg"),
  3602. name: "Side",
  3603. image: {
  3604. source: "./media/characters/ebony/side.svg",
  3605. bottom: 0.03,
  3606. extra: 1045 / 810 + 0.03
  3607. }
  3608. },
  3609. back: {
  3610. height: math.unit(2, "meter"),
  3611. weight: math.unit(60, "kg"),
  3612. name: "Back",
  3613. image: {
  3614. source: "./media/characters/ebony/back.svg",
  3615. bottom: 0.01,
  3616. extra: 1045 / 810 + 0.01
  3617. }
  3618. },
  3619. },
  3620. [
  3621. // TODO check why I did this lol
  3622. {
  3623. name: "Standard",
  3624. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3625. default: true
  3626. },
  3627. {
  3628. name: "Macro",
  3629. height: math.unit(200, "feet")
  3630. },
  3631. {
  3632. name: "Gigamacro",
  3633. height: math.unit(13000, "km")
  3634. }
  3635. ]
  3636. ))
  3637. characterMakers.push(() => makeCharacter(
  3638. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3639. {
  3640. front: {
  3641. height: math.unit(6, "feet"),
  3642. weight: math.unit(175, "lb"),
  3643. name: "Front",
  3644. image: {
  3645. source: "./media/characters/mountain/front.svg",
  3646. extra: 972 / 955,
  3647. bottom: 64 / 1036.6
  3648. }
  3649. },
  3650. back: {
  3651. height: math.unit(6, "feet"),
  3652. weight: math.unit(175, "lb"),
  3653. name: "Back",
  3654. image: {
  3655. source: "./media/characters/mountain/back.svg",
  3656. extra: 970 / 950,
  3657. bottom: 28.25 / 999
  3658. }
  3659. },
  3660. },
  3661. [
  3662. {
  3663. name: "Large",
  3664. height: math.unit(20, "meters")
  3665. },
  3666. {
  3667. name: "Macro",
  3668. height: math.unit(300, "meters")
  3669. },
  3670. {
  3671. name: "Gigamacro",
  3672. height: math.unit(10000, "km"),
  3673. default: true
  3674. },
  3675. {
  3676. name: "Examacro",
  3677. height: math.unit(10e9, "lightyears")
  3678. }
  3679. ]
  3680. ))
  3681. characterMakers.push(() => makeCharacter(
  3682. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3683. {
  3684. front: {
  3685. height: math.unit(8, "feet"),
  3686. weight: math.unit(500, "lb"),
  3687. name: "Front",
  3688. image: {
  3689. source: "./media/characters/rick/front.svg"
  3690. }
  3691. }
  3692. },
  3693. [
  3694. {
  3695. name: "Normal",
  3696. height: math.unit(8, "feet"),
  3697. default: true
  3698. },
  3699. {
  3700. name: "Macro",
  3701. height: math.unit(5, "km")
  3702. }
  3703. ]
  3704. ))
  3705. characterMakers.push(() => makeCharacter(
  3706. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3707. {
  3708. front: {
  3709. height: math.unit(8, "feet"),
  3710. weight: math.unit(120, "lb"),
  3711. name: "Front",
  3712. image: {
  3713. source: "./media/characters/ona/front.svg"
  3714. }
  3715. },
  3716. frontAlt: {
  3717. height: math.unit(8, "feet"),
  3718. weight: math.unit(120, "lb"),
  3719. name: "Front (Alt)",
  3720. image: {
  3721. source: "./media/characters/ona/front-alt.svg"
  3722. }
  3723. },
  3724. back: {
  3725. height: math.unit(8, "feet"),
  3726. weight: math.unit(120, "lb"),
  3727. name: "Back",
  3728. image: {
  3729. source: "./media/characters/ona/back.svg"
  3730. }
  3731. },
  3732. foot: {
  3733. height: math.unit(1.1, "feet"),
  3734. name: "Foot",
  3735. image: {
  3736. source: "./media/characters/ona/foot.svg"
  3737. }
  3738. }
  3739. },
  3740. [
  3741. {
  3742. name: "Megamacro",
  3743. height: math.unit(70, "km"),
  3744. default: true
  3745. },
  3746. {
  3747. name: "Gigamacro",
  3748. height: math.unit(681818, "miles")
  3749. },
  3750. {
  3751. name: "Examacro",
  3752. height: math.unit(3800000, "lightyears")
  3753. },
  3754. ]
  3755. ))
  3756. characterMakers.push(() => makeCharacter(
  3757. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3758. {
  3759. front: {
  3760. height: math.unit(12, "feet"),
  3761. weight: math.unit(3000, "lb"),
  3762. name: "Front",
  3763. image: {
  3764. source: "./media/characters/mech/front.svg",
  3765. extra: 2900 / 2770,
  3766. bottom: 110 / 3010
  3767. }
  3768. },
  3769. back: {
  3770. height: math.unit(12, "feet"),
  3771. weight: math.unit(3000, "lb"),
  3772. name: "Back",
  3773. image: {
  3774. source: "./media/characters/mech/back.svg",
  3775. extra: 3011 / 2890,
  3776. bottom: 94 / 3105
  3777. }
  3778. },
  3779. maw: {
  3780. height: math.unit(3.07, "feet"),
  3781. name: "Maw",
  3782. image: {
  3783. source: "./media/characters/mech/maw.svg"
  3784. }
  3785. },
  3786. head: {
  3787. height: math.unit(2.82, "feet"),
  3788. name: "Head",
  3789. image: {
  3790. source: "./media/characters/mech/head.svg"
  3791. }
  3792. },
  3793. dick: {
  3794. height: math.unit(1.43, "feet"),
  3795. name: "Dick",
  3796. image: {
  3797. source: "./media/characters/mech/dick.svg"
  3798. }
  3799. },
  3800. },
  3801. [
  3802. {
  3803. name: "Normal",
  3804. height: math.unit(12, "feet")
  3805. },
  3806. {
  3807. name: "Macro",
  3808. height: math.unit(300, "feet"),
  3809. default: true
  3810. },
  3811. {
  3812. name: "Macro+",
  3813. height: math.unit(1500, "feet")
  3814. },
  3815. ]
  3816. ))
  3817. characterMakers.push(() => makeCharacter(
  3818. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3819. {
  3820. front: {
  3821. height: math.unit(1.3, "meter"),
  3822. weight: math.unit(30, "kg"),
  3823. name: "Front",
  3824. image: {
  3825. source: "./media/characters/gregory/front.svg",
  3826. }
  3827. }
  3828. },
  3829. [
  3830. {
  3831. name: "Normal",
  3832. height: math.unit(1.3, "meter"),
  3833. default: true
  3834. },
  3835. {
  3836. name: "Macro",
  3837. height: math.unit(20, "meter")
  3838. }
  3839. ]
  3840. ))
  3841. characterMakers.push(() => makeCharacter(
  3842. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3843. {
  3844. front: {
  3845. height: math.unit(2.8, "meter"),
  3846. weight: math.unit(200, "kg"),
  3847. name: "Front",
  3848. image: {
  3849. source: "./media/characters/elory/front.svg",
  3850. }
  3851. }
  3852. },
  3853. [
  3854. {
  3855. name: "Normal",
  3856. height: math.unit(2.8, "meter"),
  3857. default: true
  3858. },
  3859. {
  3860. name: "Macro",
  3861. height: math.unit(38, "meter")
  3862. }
  3863. ]
  3864. ))
  3865. characterMakers.push(() => makeCharacter(
  3866. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3867. {
  3868. front: {
  3869. height: math.unit(470, "feet"),
  3870. weight: math.unit(924, "tons"),
  3871. name: "Front",
  3872. image: {
  3873. source: "./media/characters/angelpatamon/front.svg",
  3874. }
  3875. }
  3876. },
  3877. [
  3878. {
  3879. name: "Normal",
  3880. height: math.unit(470, "feet"),
  3881. default: true
  3882. },
  3883. {
  3884. name: "Deity Size I",
  3885. height: math.unit(28651.2, "km")
  3886. },
  3887. {
  3888. name: "Deity Size II",
  3889. height: math.unit(171907.2, "km")
  3890. }
  3891. ]
  3892. ))
  3893. characterMakers.push(() => makeCharacter(
  3894. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3895. {
  3896. side: {
  3897. height: math.unit(7.2, "meter"),
  3898. weight: math.unit(8.2, "tons"),
  3899. name: "Side",
  3900. image: {
  3901. source: "./media/characters/cryae/side.svg",
  3902. extra: 3500 / 1500
  3903. }
  3904. }
  3905. },
  3906. [
  3907. {
  3908. name: "Normal",
  3909. height: math.unit(7.2, "meter"),
  3910. default: true
  3911. }
  3912. ]
  3913. ))
  3914. characterMakers.push(() => makeCharacter(
  3915. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3916. {
  3917. front: {
  3918. height: math.unit(6, "feet"),
  3919. weight: math.unit(175, "lb"),
  3920. name: "Front",
  3921. image: {
  3922. source: "./media/characters/xera/front.svg",
  3923. extra: 2377 / 1972,
  3924. bottom: 75.5 / 2452
  3925. }
  3926. },
  3927. side: {
  3928. height: math.unit(6, "feet"),
  3929. weight: math.unit(175, "lb"),
  3930. name: "Side",
  3931. image: {
  3932. source: "./media/characters/xera/side.svg",
  3933. extra: 2345 / 2019,
  3934. bottom: 39.7 / 2384
  3935. }
  3936. },
  3937. back: {
  3938. height: math.unit(6, "feet"),
  3939. weight: math.unit(175, "lb"),
  3940. name: "Back",
  3941. image: {
  3942. source: "./media/characters/xera/back.svg",
  3943. extra: 2095 / 1984,
  3944. bottom: 67 / 2166
  3945. }
  3946. },
  3947. },
  3948. [
  3949. {
  3950. name: "Small",
  3951. height: math.unit(10, "feet")
  3952. },
  3953. {
  3954. name: "Macro",
  3955. height: math.unit(500, "meters"),
  3956. default: true
  3957. },
  3958. {
  3959. name: "Macro+",
  3960. height: math.unit(10, "km")
  3961. },
  3962. {
  3963. name: "Gigamacro",
  3964. height: math.unit(25000, "km")
  3965. },
  3966. {
  3967. name: "Teramacro",
  3968. height: math.unit(3e6, "km")
  3969. }
  3970. ]
  3971. ))
  3972. characterMakers.push(() => makeCharacter(
  3973. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3974. {
  3975. front: {
  3976. height: math.unit(6, "feet"),
  3977. weight: math.unit(175, "lb"),
  3978. name: "Front",
  3979. image: {
  3980. source: "./media/characters/nebula/front.svg",
  3981. extra: 2566 / 2362,
  3982. bottom: 81 / 2644
  3983. }
  3984. }
  3985. },
  3986. [
  3987. {
  3988. name: "Small",
  3989. height: math.unit(4.5, "meters")
  3990. },
  3991. {
  3992. name: "Macro",
  3993. height: math.unit(1500, "meters"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Megamacro",
  3998. height: math.unit(150, "km")
  3999. },
  4000. {
  4001. name: "Gigamacro",
  4002. height: math.unit(27000, "km")
  4003. }
  4004. ]
  4005. ))
  4006. characterMakers.push(() => makeCharacter(
  4007. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4008. {
  4009. front: {
  4010. height: math.unit(6, "feet"),
  4011. weight: math.unit(225, "lb"),
  4012. name: "Front",
  4013. image: {
  4014. source: "./media/characters/abysgar/front.svg"
  4015. }
  4016. }
  4017. },
  4018. [
  4019. {
  4020. name: "Small",
  4021. height: math.unit(4.5, "meters")
  4022. },
  4023. {
  4024. name: "Macro",
  4025. height: math.unit(1250, "meters"),
  4026. default: true
  4027. },
  4028. {
  4029. name: "Megamacro",
  4030. height: math.unit(125, "km")
  4031. },
  4032. {
  4033. name: "Gigamacro",
  4034. height: math.unit(26000, "km")
  4035. }
  4036. ]
  4037. ))
  4038. characterMakers.push(() => makeCharacter(
  4039. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4040. {
  4041. front: {
  4042. height: math.unit(6, "feet"),
  4043. weight: math.unit(180, "lb"),
  4044. name: "Front",
  4045. image: {
  4046. source: "./media/characters/yakuz/front.svg"
  4047. }
  4048. }
  4049. },
  4050. [
  4051. {
  4052. name: "Small",
  4053. height: math.unit(5, "meters")
  4054. },
  4055. {
  4056. name: "Macro",
  4057. height: math.unit(1500, "meters"),
  4058. default: true
  4059. },
  4060. {
  4061. name: "Megamacro",
  4062. height: math.unit(200, "km")
  4063. },
  4064. {
  4065. name: "Gigamacro",
  4066. height: math.unit(100000, "km")
  4067. }
  4068. ]
  4069. ))
  4070. characterMakers.push(() => makeCharacter(
  4071. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4072. {
  4073. front: {
  4074. height: math.unit(6, "feet"),
  4075. weight: math.unit(175, "lb"),
  4076. name: "Front",
  4077. image: {
  4078. source: "./media/characters/mirova/front.svg",
  4079. extra: 3334 / 3071,
  4080. bottom: 42 / 3375.6
  4081. }
  4082. }
  4083. },
  4084. [
  4085. {
  4086. name: "Small",
  4087. height: math.unit(5, "meters")
  4088. },
  4089. {
  4090. name: "Macro",
  4091. height: math.unit(900, "meters"),
  4092. default: true
  4093. },
  4094. {
  4095. name: "Megamacro",
  4096. height: math.unit(135, "km")
  4097. },
  4098. {
  4099. name: "Gigamacro",
  4100. height: math.unit(20000, "km")
  4101. }
  4102. ]
  4103. ))
  4104. characterMakers.push(() => makeCharacter(
  4105. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4106. {
  4107. side: {
  4108. height: math.unit(28.35, "feet"),
  4109. weight: math.unit(99.75, "tons"),
  4110. name: "Side",
  4111. image: {
  4112. source: "./media/characters/asana-mech/side.svg",
  4113. extra: 923 / 699,
  4114. bottom: 50 / 975
  4115. }
  4116. },
  4117. chaingun: {
  4118. height: math.unit(7, "feet"),
  4119. weight: math.unit(2400, "lb"),
  4120. name: "Chaingun",
  4121. image: {
  4122. source: "./media/characters/asana-mech/chaingun.svg"
  4123. }
  4124. },
  4125. laser: {
  4126. height: math.unit(7.12, "feet"),
  4127. weight: math.unit(2000, "lb"),
  4128. name: "Laser",
  4129. image: {
  4130. source: "./media/characters/asana-mech/laser.svg"
  4131. }
  4132. },
  4133. },
  4134. [
  4135. {
  4136. name: "Normal",
  4137. height: math.unit(28.35, "feet"),
  4138. default: true
  4139. },
  4140. {
  4141. name: "Macro",
  4142. height: math.unit(2500, "feet")
  4143. },
  4144. {
  4145. name: "Megamacro",
  4146. height: math.unit(25, "miles")
  4147. },
  4148. {
  4149. name: "Examacro",
  4150. height: math.unit(6e8, "lightyears")
  4151. },
  4152. ]
  4153. ))
  4154. characterMakers.push(() => makeCharacter(
  4155. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4156. {
  4157. front: {
  4158. height: math.unit(5, "meters"),
  4159. weight: math.unit(1000, "kg"),
  4160. name: "Front",
  4161. image: {
  4162. source: "./media/characters/asche/front.svg",
  4163. extra: 1258 / 1190,
  4164. bottom: 47 / 1305
  4165. }
  4166. },
  4167. frontUnderwear: {
  4168. height: math.unit(5, "meters"),
  4169. weight: math.unit(1000, "kg"),
  4170. name: "Front (Underwear)",
  4171. image: {
  4172. source: "./media/characters/asche/front-underwear.svg",
  4173. extra: 1258 / 1190,
  4174. bottom: 47 / 1305
  4175. }
  4176. },
  4177. frontDressed: {
  4178. height: math.unit(5, "meters"),
  4179. weight: math.unit(1000, "kg"),
  4180. name: "Front (Dressed)",
  4181. image: {
  4182. source: "./media/characters/asche/front-dressed.svg",
  4183. extra: 1258 / 1190,
  4184. bottom: 47 / 1305
  4185. }
  4186. },
  4187. frontArmor: {
  4188. height: math.unit(5, "meters"),
  4189. weight: math.unit(1000, "kg"),
  4190. name: "Front (Armored)",
  4191. image: {
  4192. source: "./media/characters/asche/front-armored.svg",
  4193. extra: 1374 / 1308,
  4194. bottom: 23 / 1397
  4195. }
  4196. },
  4197. mp724: {
  4198. height: math.unit(0.96, "meters"),
  4199. weight: math.unit(38, "kg"),
  4200. name: "H&K MP724",
  4201. image: {
  4202. source: "./media/characters/asche/h&k-mp724.svg"
  4203. }
  4204. },
  4205. side: {
  4206. height: math.unit(5, "meters"),
  4207. weight: math.unit(1000, "kg"),
  4208. name: "Side",
  4209. image: {
  4210. source: "./media/characters/asche/side.svg",
  4211. extra: 1717 / 1609,
  4212. bottom: 0.005
  4213. }
  4214. },
  4215. back: {
  4216. height: math.unit(5, "meters"),
  4217. weight: math.unit(1000, "kg"),
  4218. name: "Back",
  4219. image: {
  4220. source: "./media/characters/asche/back.svg",
  4221. extra: 1570 / 1501
  4222. }
  4223. },
  4224. },
  4225. [
  4226. {
  4227. name: "DEFCON 5",
  4228. height: math.unit(5, "meters")
  4229. },
  4230. {
  4231. name: "DEFCON 4",
  4232. height: math.unit(500, "meters"),
  4233. default: true
  4234. },
  4235. {
  4236. name: "DEFCON 3",
  4237. height: math.unit(5, "km")
  4238. },
  4239. {
  4240. name: "DEFCON 2",
  4241. height: math.unit(500, "km")
  4242. },
  4243. {
  4244. name: "DEFCON 1",
  4245. height: math.unit(500000, "km")
  4246. },
  4247. {
  4248. name: "DEFCON 0",
  4249. height: math.unit(3, "gigaparsecs")
  4250. },
  4251. ]
  4252. ))
  4253. characterMakers.push(() => makeCharacter(
  4254. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4255. {
  4256. front: {
  4257. height: math.unit(2, "meters"),
  4258. weight: math.unit(76, "kg"),
  4259. name: "Front",
  4260. image: {
  4261. source: "./media/characters/gale/front.svg"
  4262. }
  4263. },
  4264. frontAlt1: {
  4265. height: math.unit(2, "meters"),
  4266. weight: math.unit(76, "kg"),
  4267. name: "Front (Alt 1)",
  4268. image: {
  4269. source: "./media/characters/gale/front-alt-1.svg"
  4270. }
  4271. },
  4272. frontAlt2: {
  4273. height: math.unit(2, "meters"),
  4274. weight: math.unit(76, "kg"),
  4275. name: "Front (Alt 2)",
  4276. image: {
  4277. source: "./media/characters/gale/front-alt-2.svg"
  4278. }
  4279. },
  4280. },
  4281. [
  4282. {
  4283. name: "Normal",
  4284. height: math.unit(7, "feet")
  4285. },
  4286. {
  4287. name: "Macro",
  4288. height: math.unit(150, "feet"),
  4289. default: true
  4290. },
  4291. {
  4292. name: "Macro+",
  4293. height: math.unit(300, "feet")
  4294. },
  4295. ]
  4296. ))
  4297. characterMakers.push(() => makeCharacter(
  4298. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4299. {
  4300. front: {
  4301. height: math.unit(2, "meters"),
  4302. weight: math.unit(76, "kg"),
  4303. name: "Front",
  4304. image: {
  4305. source: "./media/characters/draylen/front.svg"
  4306. }
  4307. }
  4308. },
  4309. [
  4310. {
  4311. name: "Macro",
  4312. height: math.unit(150, "feet"),
  4313. default: true
  4314. }
  4315. ]
  4316. ))
  4317. characterMakers.push(() => makeCharacter(
  4318. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4319. {
  4320. front: {
  4321. height: math.unit(7 + 9 / 12, "feet"),
  4322. weight: math.unit(379, "lbs"),
  4323. name: "Front",
  4324. image: {
  4325. source: "./media/characters/chez/front.svg"
  4326. }
  4327. },
  4328. side: {
  4329. height: math.unit(7 + 9 / 12, "feet"),
  4330. weight: math.unit(379, "lbs"),
  4331. name: "Side",
  4332. image: {
  4333. source: "./media/characters/chez/side.svg"
  4334. }
  4335. }
  4336. },
  4337. [
  4338. {
  4339. name: "Normal",
  4340. height: math.unit(7 + 9 / 12, "feet"),
  4341. default: true
  4342. },
  4343. {
  4344. name: "God King",
  4345. height: math.unit(9750000, "meters")
  4346. }
  4347. ]
  4348. ))
  4349. characterMakers.push(() => makeCharacter(
  4350. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4351. {
  4352. front: {
  4353. height: math.unit(6, "feet"),
  4354. weight: math.unit(275, "lbs"),
  4355. name: "Front",
  4356. image: {
  4357. source: "./media/characters/kaylum/front.svg",
  4358. bottom: 0.01,
  4359. extra: 1166 / 1031
  4360. }
  4361. },
  4362. frontWingless: {
  4363. height: math.unit(6, "feet"),
  4364. weight: math.unit(275, "lbs"),
  4365. name: "Front (Wingless)",
  4366. image: {
  4367. source: "./media/characters/kaylum/front-wingless.svg",
  4368. bottom: 0.01,
  4369. extra: 1117 / 1031
  4370. }
  4371. }
  4372. },
  4373. [
  4374. {
  4375. name: "Normal",
  4376. height: math.unit(3.05, "meters")
  4377. },
  4378. {
  4379. name: "Master",
  4380. height: math.unit(5.5, "meters")
  4381. },
  4382. {
  4383. name: "Rampage",
  4384. height: math.unit(19, "meters")
  4385. },
  4386. {
  4387. name: "Macro Lite",
  4388. height: math.unit(37, "meters")
  4389. },
  4390. {
  4391. name: "Hyper Predator",
  4392. height: math.unit(61, "meters")
  4393. },
  4394. {
  4395. name: "Macro",
  4396. height: math.unit(138, "meters"),
  4397. default: true
  4398. }
  4399. ]
  4400. ))
  4401. characterMakers.push(() => makeCharacter(
  4402. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4403. {
  4404. front: {
  4405. height: math.unit(6, "feet"),
  4406. weight: math.unit(150, "lbs"),
  4407. name: "Front",
  4408. image: {
  4409. source: "./media/characters/geta/front.svg"
  4410. }
  4411. }
  4412. },
  4413. [
  4414. {
  4415. name: "Micro",
  4416. height: math.unit(3, "inches"),
  4417. default: true
  4418. },
  4419. {
  4420. name: "Normal",
  4421. height: math.unit(5 + 5 / 12, "feet")
  4422. }
  4423. ]
  4424. ))
  4425. characterMakers.push(() => makeCharacter(
  4426. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4427. {
  4428. front: {
  4429. height: math.unit(6, "feet"),
  4430. weight: math.unit(300, "lbs"),
  4431. name: "Front",
  4432. image: {
  4433. source: "./media/characters/tyrnn/front.svg"
  4434. }
  4435. }
  4436. },
  4437. [
  4438. {
  4439. name: "Main Height",
  4440. height: math.unit(355, "feet"),
  4441. default: true
  4442. },
  4443. {
  4444. name: "Fave. Height",
  4445. height: math.unit(2400, "feet")
  4446. }
  4447. ]
  4448. ))
  4449. characterMakers.push(() => makeCharacter(
  4450. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4451. {
  4452. front: {
  4453. height: math.unit(6, "feet"),
  4454. weight: math.unit(300, "lbs"),
  4455. name: "Front",
  4456. image: {
  4457. source: "./media/characters/appledectomy/front.svg"
  4458. }
  4459. }
  4460. },
  4461. [
  4462. {
  4463. name: "Macro",
  4464. height: math.unit(2500, "feet")
  4465. },
  4466. {
  4467. name: "Megamacro",
  4468. height: math.unit(50, "miles"),
  4469. default: true
  4470. },
  4471. {
  4472. name: "Gigamacro",
  4473. height: math.unit(5000, "miles")
  4474. },
  4475. {
  4476. name: "Teramacro",
  4477. height: math.unit(250000, "miles")
  4478. },
  4479. ]
  4480. ))
  4481. characterMakers.push(() => makeCharacter(
  4482. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4483. {
  4484. front: {
  4485. height: math.unit(6, "feet"),
  4486. weight: math.unit(200, "lbs"),
  4487. name: "Front",
  4488. image: {
  4489. source: "./media/characters/vulpes/front.svg",
  4490. extra: 573 / 543,
  4491. bottom: 0.033
  4492. }
  4493. },
  4494. side: {
  4495. height: math.unit(6, "feet"),
  4496. weight: math.unit(200, "lbs"),
  4497. name: "Side",
  4498. image: {
  4499. source: "./media/characters/vulpes/side.svg",
  4500. extra: 577 / 549,
  4501. bottom: 11 / 588
  4502. }
  4503. },
  4504. back: {
  4505. height: math.unit(6, "feet"),
  4506. weight: math.unit(200, "lbs"),
  4507. name: "Back",
  4508. image: {
  4509. source: "./media/characters/vulpes/back.svg",
  4510. extra: 573 / 549,
  4511. bottom: 20 / 593
  4512. }
  4513. },
  4514. feet: {
  4515. height: math.unit(1.276, "feet"),
  4516. name: "Feet",
  4517. image: {
  4518. source: "./media/characters/vulpes/feet.svg"
  4519. }
  4520. },
  4521. maw: {
  4522. height: math.unit(1.18, "feet"),
  4523. name: "Maw",
  4524. image: {
  4525. source: "./media/characters/vulpes/maw.svg"
  4526. }
  4527. },
  4528. },
  4529. [
  4530. {
  4531. name: "Micro",
  4532. height: math.unit(2, "inches")
  4533. },
  4534. {
  4535. name: "Normal",
  4536. height: math.unit(6.3, "feet")
  4537. },
  4538. {
  4539. name: "Macro",
  4540. height: math.unit(850, "feet")
  4541. },
  4542. {
  4543. name: "Megamacro",
  4544. height: math.unit(7500, "feet"),
  4545. default: true
  4546. },
  4547. {
  4548. name: "Gigamacro",
  4549. height: math.unit(570000, "miles")
  4550. }
  4551. ]
  4552. ))
  4553. characterMakers.push(() => makeCharacter(
  4554. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4555. {
  4556. front: {
  4557. height: math.unit(6, "feet"),
  4558. weight: math.unit(210, "lbs"),
  4559. name: "Front",
  4560. image: {
  4561. source: "./media/characters/rain-fallen/front.svg"
  4562. }
  4563. },
  4564. side: {
  4565. height: math.unit(6, "feet"),
  4566. weight: math.unit(210, "lbs"),
  4567. name: "Side",
  4568. image: {
  4569. source: "./media/characters/rain-fallen/side.svg"
  4570. }
  4571. },
  4572. back: {
  4573. height: math.unit(6, "feet"),
  4574. weight: math.unit(210, "lbs"),
  4575. name: "Back",
  4576. image: {
  4577. source: "./media/characters/rain-fallen/back.svg"
  4578. }
  4579. },
  4580. feral: {
  4581. height: math.unit(9, "feet"),
  4582. weight: math.unit(700, "lbs"),
  4583. name: "Feral",
  4584. image: {
  4585. source: "./media/characters/rain-fallen/feral.svg"
  4586. }
  4587. },
  4588. },
  4589. [
  4590. {
  4591. name: "Meddling with Mortals",
  4592. height: math.unit(8 + 8/12, "feet")
  4593. },
  4594. {
  4595. name: "Normal",
  4596. height: math.unit(5, "meter")
  4597. },
  4598. {
  4599. name: "Macro",
  4600. height: math.unit(150, "meter"),
  4601. default: true
  4602. },
  4603. {
  4604. name: "Megamacro",
  4605. height: math.unit(278e6, "meter")
  4606. },
  4607. {
  4608. name: "Gigamacro",
  4609. height: math.unit(2e9, "meter")
  4610. },
  4611. {
  4612. name: "Teramacro",
  4613. height: math.unit(8e12, "meter")
  4614. },
  4615. {
  4616. name: "Devourer",
  4617. height: math.unit(14, "zettameters")
  4618. },
  4619. {
  4620. name: "Scarlet King",
  4621. height: math.unit(18, "yottameters")
  4622. },
  4623. {
  4624. name: "Void",
  4625. height: math.unit(1e88, "yottameters")
  4626. }
  4627. ]
  4628. ))
  4629. characterMakers.push(() => makeCharacter(
  4630. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4631. {
  4632. standing: {
  4633. height: math.unit(6, "feet"),
  4634. weight: math.unit(180, "lbs"),
  4635. name: "Standing",
  4636. image: {
  4637. source: "./media/characters/zaakira/standing.svg",
  4638. extra: 1599/1504,
  4639. bottom: 39/1638
  4640. }
  4641. },
  4642. laying: {
  4643. height: math.unit(3, "feet"),
  4644. weight: math.unit(180, "lbs"),
  4645. name: "Laying",
  4646. image: {
  4647. source: "./media/characters/zaakira/laying.svg"
  4648. }
  4649. },
  4650. },
  4651. [
  4652. {
  4653. name: "Normal",
  4654. height: math.unit(12, "feet")
  4655. },
  4656. {
  4657. name: "Macro",
  4658. height: math.unit(279, "feet"),
  4659. default: true
  4660. }
  4661. ]
  4662. ))
  4663. characterMakers.push(() => makeCharacter(
  4664. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4665. {
  4666. femSfw: {
  4667. height: math.unit(8, "feet"),
  4668. weight: math.unit(350, "lb"),
  4669. name: "Fem",
  4670. image: {
  4671. source: "./media/characters/sigvald/fem-sfw.svg",
  4672. extra: 182 / 164,
  4673. bottom: 8.7 / 190.5
  4674. }
  4675. },
  4676. femNsfw: {
  4677. height: math.unit(8, "feet"),
  4678. weight: math.unit(350, "lb"),
  4679. name: "Fem (NSFW)",
  4680. image: {
  4681. source: "./media/characters/sigvald/fem-nsfw.svg",
  4682. extra: 182 / 164,
  4683. bottom: 8.7 / 190.5
  4684. }
  4685. },
  4686. maleNsfw: {
  4687. height: math.unit(8, "feet"),
  4688. weight: math.unit(350, "lb"),
  4689. name: "Male (NSFW)",
  4690. image: {
  4691. source: "./media/characters/sigvald/male-nsfw.svg",
  4692. extra: 182 / 164,
  4693. bottom: 8.7 / 190.5
  4694. }
  4695. },
  4696. hermNsfw: {
  4697. height: math.unit(8, "feet"),
  4698. weight: math.unit(350, "lb"),
  4699. name: "Herm (NSFW)",
  4700. image: {
  4701. source: "./media/characters/sigvald/herm-nsfw.svg",
  4702. extra: 182 / 164,
  4703. bottom: 8.7 / 190.5
  4704. }
  4705. },
  4706. dick: {
  4707. height: math.unit(2.36, "feet"),
  4708. name: "Dick",
  4709. image: {
  4710. source: "./media/characters/sigvald/dick.svg"
  4711. }
  4712. },
  4713. eye: {
  4714. height: math.unit(0.31, "feet"),
  4715. name: "Eye",
  4716. image: {
  4717. source: "./media/characters/sigvald/eye.svg"
  4718. }
  4719. },
  4720. mouth: {
  4721. height: math.unit(0.92, "feet"),
  4722. name: "Mouth",
  4723. image: {
  4724. source: "./media/characters/sigvald/mouth.svg"
  4725. }
  4726. },
  4727. paws: {
  4728. height: math.unit(2.2, "feet"),
  4729. name: "Paws",
  4730. image: {
  4731. source: "./media/characters/sigvald/paws.svg"
  4732. }
  4733. }
  4734. },
  4735. [
  4736. {
  4737. name: "Normal",
  4738. height: math.unit(8, "feet")
  4739. },
  4740. {
  4741. name: "Large",
  4742. height: math.unit(12, "feet")
  4743. },
  4744. {
  4745. name: "Larger",
  4746. height: math.unit(20, "feet")
  4747. },
  4748. {
  4749. name: "Macro",
  4750. height: math.unit(150, "feet")
  4751. },
  4752. {
  4753. name: "Macro+",
  4754. height: math.unit(200, "feet"),
  4755. default: true
  4756. },
  4757. ]
  4758. ))
  4759. characterMakers.push(() => makeCharacter(
  4760. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4761. {
  4762. side: {
  4763. height: math.unit(12, "feet"),
  4764. weight: math.unit(2000, "kg"),
  4765. name: "Side",
  4766. image: {
  4767. source: "./media/characters/scott/side.svg",
  4768. extra: 754 / 724,
  4769. bottom: 0.069
  4770. }
  4771. },
  4772. upright: {
  4773. height: math.unit(12, "feet"),
  4774. weight: math.unit(2000, "kg"),
  4775. name: "Upright",
  4776. image: {
  4777. source: "./media/characters/scott/upright.svg",
  4778. extra: 3881 / 3722,
  4779. bottom: 0.05
  4780. }
  4781. },
  4782. },
  4783. [
  4784. {
  4785. name: "Normal",
  4786. height: math.unit(12, "feet"),
  4787. default: true
  4788. },
  4789. ]
  4790. ))
  4791. characterMakers.push(() => makeCharacter(
  4792. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4793. {
  4794. side: {
  4795. height: math.unit(8, "meters"),
  4796. weight: math.unit(84755, "lbs"),
  4797. name: "Side",
  4798. image: {
  4799. source: "./media/characters/tobias/side.svg",
  4800. extra: 1474 / 1096,
  4801. bottom: 38.9 / 1513.1235
  4802. }
  4803. },
  4804. },
  4805. [
  4806. {
  4807. name: "Normal",
  4808. height: math.unit(8, "meters"),
  4809. default: true
  4810. },
  4811. ]
  4812. ))
  4813. characterMakers.push(() => makeCharacter(
  4814. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4815. {
  4816. front: {
  4817. height: math.unit(5.5, "feet"),
  4818. weight: math.unit(400, "lbs"),
  4819. name: "Front",
  4820. image: {
  4821. source: "./media/characters/kieran/front.svg",
  4822. extra: 2694 / 2364,
  4823. bottom: 217 / 2908
  4824. }
  4825. },
  4826. side: {
  4827. height: math.unit(5.5, "feet"),
  4828. weight: math.unit(400, "lbs"),
  4829. name: "Side",
  4830. image: {
  4831. source: "./media/characters/kieran/side.svg",
  4832. extra: 875 / 777,
  4833. bottom: 84.6 / 959
  4834. }
  4835. },
  4836. },
  4837. [
  4838. {
  4839. name: "Normal",
  4840. height: math.unit(5.5, "feet"),
  4841. default: true
  4842. },
  4843. ]
  4844. ))
  4845. characterMakers.push(() => makeCharacter(
  4846. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4847. {
  4848. side: {
  4849. height: math.unit(2, "meters"),
  4850. weight: math.unit(70, "kg"),
  4851. name: "Side",
  4852. image: {
  4853. source: "./media/characters/sanya/side.svg",
  4854. bottom: 0.02,
  4855. extra: 1.02
  4856. }
  4857. },
  4858. },
  4859. [
  4860. {
  4861. name: "Small",
  4862. height: math.unit(2, "meters")
  4863. },
  4864. {
  4865. name: "Normal",
  4866. height: math.unit(3, "meters")
  4867. },
  4868. {
  4869. name: "Macro",
  4870. height: math.unit(16, "meters"),
  4871. default: true
  4872. },
  4873. ]
  4874. ))
  4875. characterMakers.push(() => makeCharacter(
  4876. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4877. {
  4878. front: {
  4879. height: math.unit(2, "meters"),
  4880. weight: math.unit(120, "kg"),
  4881. name: "Front",
  4882. image: {
  4883. source: "./media/characters/miranda/front.svg",
  4884. extra: 195 / 185,
  4885. bottom: 10.9 / 206.5
  4886. }
  4887. },
  4888. back: {
  4889. height: math.unit(2, "meters"),
  4890. weight: math.unit(120, "kg"),
  4891. name: "Back",
  4892. image: {
  4893. source: "./media/characters/miranda/back.svg",
  4894. extra: 201 / 193,
  4895. bottom: 2.3 / 203.7
  4896. }
  4897. },
  4898. },
  4899. [
  4900. {
  4901. name: "Normal",
  4902. height: math.unit(10, "feet"),
  4903. default: true
  4904. }
  4905. ]
  4906. ))
  4907. characterMakers.push(() => makeCharacter(
  4908. { name: "James", species: ["deer"], tags: ["anthro"] },
  4909. {
  4910. side: {
  4911. height: math.unit(2, "meters"),
  4912. weight: math.unit(100, "kg"),
  4913. name: "Front",
  4914. image: {
  4915. source: "./media/characters/james/front.svg",
  4916. extra: 10 / 8.5
  4917. }
  4918. },
  4919. },
  4920. [
  4921. {
  4922. name: "Normal",
  4923. height: math.unit(8.5, "feet"),
  4924. default: true
  4925. }
  4926. ]
  4927. ))
  4928. characterMakers.push(() => makeCharacter(
  4929. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4930. {
  4931. side: {
  4932. height: math.unit(9.5, "feet"),
  4933. weight: math.unit(2500, "lbs"),
  4934. name: "Side",
  4935. image: {
  4936. source: "./media/characters/heather/side.svg"
  4937. }
  4938. },
  4939. },
  4940. [
  4941. {
  4942. name: "Normal",
  4943. height: math.unit(9.5, "feet"),
  4944. default: true
  4945. }
  4946. ]
  4947. ))
  4948. characterMakers.push(() => makeCharacter(
  4949. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4950. {
  4951. side: {
  4952. height: math.unit(6.5, "feet"),
  4953. weight: math.unit(400, "lbs"),
  4954. name: "Side",
  4955. image: {
  4956. source: "./media/characters/lukas/side.svg",
  4957. extra: 7.25 / 6.5
  4958. }
  4959. },
  4960. },
  4961. [
  4962. {
  4963. name: "Normal",
  4964. height: math.unit(6.5, "feet"),
  4965. default: true
  4966. }
  4967. ]
  4968. ))
  4969. characterMakers.push(() => makeCharacter(
  4970. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4971. {
  4972. side: {
  4973. height: math.unit(5, "feet"),
  4974. weight: math.unit(3000, "lbs"),
  4975. name: "Side",
  4976. image: {
  4977. source: "./media/characters/louise/side.svg"
  4978. }
  4979. },
  4980. },
  4981. [
  4982. {
  4983. name: "Normal",
  4984. height: math.unit(5, "feet"),
  4985. default: true
  4986. }
  4987. ]
  4988. ))
  4989. characterMakers.push(() => makeCharacter(
  4990. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4991. {
  4992. side: {
  4993. height: math.unit(6, "feet"),
  4994. weight: math.unit(150, "lbs"),
  4995. name: "Side",
  4996. image: {
  4997. source: "./media/characters/ramona/side.svg"
  4998. }
  4999. },
  5000. },
  5001. [
  5002. {
  5003. name: "Normal",
  5004. height: math.unit(5.3, "meters"),
  5005. default: true
  5006. },
  5007. {
  5008. name: "Macro",
  5009. height: math.unit(20, "stories")
  5010. },
  5011. {
  5012. name: "Macro+",
  5013. height: math.unit(50, "stories")
  5014. },
  5015. ]
  5016. ))
  5017. characterMakers.push(() => makeCharacter(
  5018. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5019. {
  5020. standing: {
  5021. height: math.unit(5.75, "feet"),
  5022. weight: math.unit(160, "lbs"),
  5023. name: "Standing",
  5024. image: {
  5025. source: "./media/characters/deerpuff/standing.svg",
  5026. extra: 682 / 624
  5027. }
  5028. },
  5029. sitting: {
  5030. height: math.unit(5.75 / 1.79, "feet"),
  5031. weight: math.unit(160, "lbs"),
  5032. name: "Sitting",
  5033. image: {
  5034. source: "./media/characters/deerpuff/sitting.svg",
  5035. bottom: 44 / 400,
  5036. extra: 1
  5037. }
  5038. },
  5039. taurLaying: {
  5040. height: math.unit(6, "feet"),
  5041. weight: math.unit(400, "lbs"),
  5042. name: "Taur (Laying)",
  5043. image: {
  5044. source: "./media/characters/deerpuff/taur-laying.svg"
  5045. }
  5046. },
  5047. },
  5048. [
  5049. {
  5050. name: "Puffball",
  5051. height: math.unit(6, "inches")
  5052. },
  5053. {
  5054. name: "Normalpuff",
  5055. height: math.unit(5.75, "feet")
  5056. },
  5057. {
  5058. name: "Macropuff",
  5059. height: math.unit(1500, "feet"),
  5060. default: true
  5061. },
  5062. {
  5063. name: "Megapuff",
  5064. height: math.unit(500, "miles")
  5065. },
  5066. {
  5067. name: "Gigapuff",
  5068. height: math.unit(250000, "miles")
  5069. },
  5070. {
  5071. name: "Omegapuff",
  5072. height: math.unit(1000, "lightyears")
  5073. },
  5074. ]
  5075. ))
  5076. characterMakers.push(() => makeCharacter(
  5077. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5078. {
  5079. stomping: {
  5080. height: math.unit(6, "feet"),
  5081. weight: math.unit(170, "lbs"),
  5082. name: "Stomping",
  5083. image: {
  5084. source: "./media/characters/vivian/stomping.svg"
  5085. }
  5086. },
  5087. sitting: {
  5088. height: math.unit(6 / 1.75, "feet"),
  5089. weight: math.unit(170, "lbs"),
  5090. name: "Sitting",
  5091. image: {
  5092. source: "./media/characters/vivian/sitting.svg",
  5093. bottom: 1 / 6.4,
  5094. extra: 1,
  5095. }
  5096. },
  5097. },
  5098. [
  5099. {
  5100. name: "Normal",
  5101. height: math.unit(7, "feet"),
  5102. default: true
  5103. },
  5104. {
  5105. name: "Macro",
  5106. height: math.unit(10, "stories")
  5107. },
  5108. {
  5109. name: "Macro+",
  5110. height: math.unit(30, "stories")
  5111. },
  5112. {
  5113. name: "Megamacro",
  5114. height: math.unit(10, "miles")
  5115. },
  5116. {
  5117. name: "Megamacro+",
  5118. height: math.unit(2750000, "meters")
  5119. },
  5120. ]
  5121. ))
  5122. characterMakers.push(() => makeCharacter(
  5123. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5124. {
  5125. front: {
  5126. height: math.unit(6, "feet"),
  5127. weight: math.unit(160, "lbs"),
  5128. name: "Front",
  5129. image: {
  5130. source: "./media/characters/prince/front.svg",
  5131. extra: 3400 / 3000
  5132. }
  5133. },
  5134. jumping: {
  5135. height: math.unit(6, "feet"),
  5136. weight: math.unit(160, "lbs"),
  5137. name: "Jumping",
  5138. image: {
  5139. source: "./media/characters/prince/jump.svg",
  5140. extra: 2555 / 2134
  5141. }
  5142. },
  5143. },
  5144. [
  5145. {
  5146. name: "Normal",
  5147. height: math.unit(7.75, "feet"),
  5148. default: true
  5149. },
  5150. {
  5151. name: "Not cute",
  5152. height: math.unit(17, "feet")
  5153. },
  5154. {
  5155. name: "I said NOT",
  5156. height: math.unit(91, "feet")
  5157. },
  5158. {
  5159. name: "Please stop",
  5160. height: math.unit(560, "feet")
  5161. },
  5162. {
  5163. name: "What have you done",
  5164. height: math.unit(2200, "feet")
  5165. },
  5166. {
  5167. name: "Deer God",
  5168. height: math.unit(3.6, "miles")
  5169. },
  5170. ]
  5171. ))
  5172. characterMakers.push(() => makeCharacter(
  5173. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5174. {
  5175. standing: {
  5176. height: math.unit(6, "feet"),
  5177. weight: math.unit(300, "lbs"),
  5178. name: "Standing",
  5179. image: {
  5180. source: "./media/characters/psymon/standing.svg",
  5181. extra: 1888 / 1810,
  5182. bottom: 0.05
  5183. }
  5184. },
  5185. slithering: {
  5186. height: math.unit(6, "feet"),
  5187. weight: math.unit(300, "lbs"),
  5188. name: "Slithering",
  5189. image: {
  5190. source: "./media/characters/psymon/slithering.svg",
  5191. extra: 1330 / 1224
  5192. }
  5193. },
  5194. slitheringAlt: {
  5195. height: math.unit(6, "feet"),
  5196. weight: math.unit(300, "lbs"),
  5197. name: "Slithering (Alt)",
  5198. image: {
  5199. source: "./media/characters/psymon/slithering-alt.svg",
  5200. extra: 1330 / 1224
  5201. }
  5202. },
  5203. },
  5204. [
  5205. {
  5206. name: "Normal",
  5207. height: math.unit(11.25, "feet"),
  5208. default: true
  5209. },
  5210. {
  5211. name: "Large",
  5212. height: math.unit(27, "feet")
  5213. },
  5214. {
  5215. name: "Giant",
  5216. height: math.unit(87, "feet")
  5217. },
  5218. {
  5219. name: "Macro",
  5220. height: math.unit(365, "feet")
  5221. },
  5222. {
  5223. name: "Megamacro",
  5224. height: math.unit(3, "miles")
  5225. },
  5226. {
  5227. name: "World Serpent",
  5228. height: math.unit(8000, "miles")
  5229. },
  5230. ]
  5231. ))
  5232. characterMakers.push(() => makeCharacter(
  5233. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5234. {
  5235. front: {
  5236. height: math.unit(6, "feet"),
  5237. weight: math.unit(180, "lbs"),
  5238. name: "Front",
  5239. image: {
  5240. source: "./media/characters/daimos/front.svg",
  5241. extra: 4160 / 3897,
  5242. bottom: 0.021
  5243. }
  5244. }
  5245. },
  5246. [
  5247. {
  5248. name: "Normal",
  5249. height: math.unit(8, "feet"),
  5250. default: true
  5251. },
  5252. {
  5253. name: "Big Dog",
  5254. height: math.unit(22, "feet")
  5255. },
  5256. {
  5257. name: "Macro",
  5258. height: math.unit(127, "feet")
  5259. },
  5260. {
  5261. name: "Megamacro",
  5262. height: math.unit(3600, "feet")
  5263. },
  5264. ]
  5265. ))
  5266. characterMakers.push(() => makeCharacter(
  5267. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5268. {
  5269. side: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(180, "lbs"),
  5272. name: "Side",
  5273. image: {
  5274. source: "./media/characters/blake/side.svg",
  5275. extra: 1212 / 1120,
  5276. bottom: 0.05
  5277. }
  5278. },
  5279. crouched: {
  5280. height: math.unit(6 * 0.57, "feet"),
  5281. weight: math.unit(180, "lbs"),
  5282. name: "Crouched",
  5283. image: {
  5284. source: "./media/characters/blake/crouched.svg",
  5285. extra: 840 / 587,
  5286. bottom: 0.04
  5287. }
  5288. },
  5289. bent: {
  5290. height: math.unit(6 * 0.75, "feet"),
  5291. weight: math.unit(180, "lbs"),
  5292. name: "Bent",
  5293. image: {
  5294. source: "./media/characters/blake/bent.svg",
  5295. extra: 592 / 544,
  5296. bottom: 0.035
  5297. }
  5298. },
  5299. },
  5300. [
  5301. {
  5302. name: "Normal",
  5303. height: math.unit(8 + 1 / 6, "feet"),
  5304. default: true
  5305. },
  5306. {
  5307. name: "Big Backside",
  5308. height: math.unit(37, "feet")
  5309. },
  5310. {
  5311. name: "Subway Shredder",
  5312. height: math.unit(72, "feet")
  5313. },
  5314. {
  5315. name: "City Carver",
  5316. height: math.unit(1675, "feet")
  5317. },
  5318. {
  5319. name: "Tectonic Tweaker",
  5320. height: math.unit(2300, "miles")
  5321. },
  5322. ]
  5323. ))
  5324. characterMakers.push(() => makeCharacter(
  5325. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5326. {
  5327. front: {
  5328. height: math.unit(6, "feet"),
  5329. weight: math.unit(180, "lbs"),
  5330. name: "Front",
  5331. image: {
  5332. source: "./media/characters/guisetto/front.svg",
  5333. extra: 856 / 817,
  5334. bottom: 0.06
  5335. }
  5336. },
  5337. airborne: {
  5338. height: math.unit(6, "feet"),
  5339. weight: math.unit(180, "lbs"),
  5340. name: "Airborne",
  5341. image: {
  5342. source: "./media/characters/guisetto/airborne.svg",
  5343. extra: 584 / 525
  5344. }
  5345. },
  5346. },
  5347. [
  5348. {
  5349. name: "Normal",
  5350. height: math.unit(10 + 11 / 12, "feet"),
  5351. default: true
  5352. },
  5353. {
  5354. name: "Large",
  5355. height: math.unit(35, "feet")
  5356. },
  5357. {
  5358. name: "Macro",
  5359. height: math.unit(475, "feet")
  5360. },
  5361. ]
  5362. ))
  5363. characterMakers.push(() => makeCharacter(
  5364. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5365. {
  5366. front: {
  5367. height: math.unit(6, "feet"),
  5368. weight: math.unit(180, "lbs"),
  5369. name: "Front",
  5370. image: {
  5371. source: "./media/characters/luxor/front.svg",
  5372. extra: 2940 / 2152
  5373. }
  5374. },
  5375. back: {
  5376. height: math.unit(6, "feet"),
  5377. weight: math.unit(180, "lbs"),
  5378. name: "Back",
  5379. image: {
  5380. source: "./media/characters/luxor/back.svg",
  5381. extra: 1083 / 960
  5382. }
  5383. },
  5384. },
  5385. [
  5386. {
  5387. name: "Normal",
  5388. height: math.unit(5 + 5 / 6, "feet"),
  5389. default: true
  5390. },
  5391. {
  5392. name: "Lamp",
  5393. height: math.unit(50, "feet")
  5394. },
  5395. {
  5396. name: "Lämp",
  5397. height: math.unit(300, "feet")
  5398. },
  5399. {
  5400. name: "The sun is a lamp",
  5401. height: math.unit(250000, "miles")
  5402. },
  5403. ]
  5404. ))
  5405. characterMakers.push(() => makeCharacter(
  5406. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5407. {
  5408. front: {
  5409. height: math.unit(6, "feet"),
  5410. weight: math.unit(50, "lbs"),
  5411. name: "Front",
  5412. image: {
  5413. source: "./media/characters/huoyan/front.svg"
  5414. }
  5415. },
  5416. side: {
  5417. height: math.unit(6, "feet"),
  5418. weight: math.unit(180, "lbs"),
  5419. name: "Side",
  5420. image: {
  5421. source: "./media/characters/huoyan/side.svg"
  5422. }
  5423. },
  5424. },
  5425. [
  5426. {
  5427. name: "Chef",
  5428. height: math.unit(9, "feet")
  5429. },
  5430. {
  5431. name: "Normal",
  5432. height: math.unit(65, "feet"),
  5433. default: true
  5434. },
  5435. {
  5436. name: "Macro",
  5437. height: math.unit(780, "feet")
  5438. },
  5439. {
  5440. name: "Flaming Mountain",
  5441. height: math.unit(4.8, "miles")
  5442. },
  5443. {
  5444. name: "Celestial",
  5445. height: math.unit(765000, "miles")
  5446. },
  5447. ]
  5448. ))
  5449. characterMakers.push(() => makeCharacter(
  5450. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5451. {
  5452. front: {
  5453. height: math.unit(5 + 3 / 4, "feet"),
  5454. weight: math.unit(120, "lbs"),
  5455. name: "Front",
  5456. image: {
  5457. source: "./media/characters/tails/front.svg"
  5458. }
  5459. }
  5460. },
  5461. [
  5462. {
  5463. name: "Normal",
  5464. height: math.unit(5 + 3 / 4, "feet"),
  5465. default: true
  5466. }
  5467. ]
  5468. ))
  5469. characterMakers.push(() => makeCharacter(
  5470. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5471. {
  5472. front: {
  5473. height: math.unit(4, "feet"),
  5474. weight: math.unit(50, "lbs"),
  5475. name: "Front",
  5476. image: {
  5477. source: "./media/characters/rainy/front.svg"
  5478. }
  5479. }
  5480. },
  5481. [
  5482. {
  5483. name: "Macro",
  5484. height: math.unit(800, "feet"),
  5485. default: true
  5486. }
  5487. ]
  5488. ))
  5489. characterMakers.push(() => makeCharacter(
  5490. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5491. {
  5492. front: {
  5493. height: math.unit(6, "feet"),
  5494. weight: math.unit(150, "lbs"),
  5495. name: "Front",
  5496. image: {
  5497. source: "./media/characters/rainier/front.svg"
  5498. }
  5499. }
  5500. },
  5501. [
  5502. {
  5503. name: "Micro",
  5504. height: math.unit(2, "mm"),
  5505. default: true
  5506. }
  5507. ]
  5508. ))
  5509. characterMakers.push(() => makeCharacter(
  5510. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5511. {
  5512. front: {
  5513. height: math.unit(8 + 4/12, "feet"),
  5514. name: "Front",
  5515. image: {
  5516. source: "./media/characters/andy-renard/front.svg",
  5517. extra: 1839/1726,
  5518. bottom: 134/1973
  5519. }
  5520. },
  5521. back: {
  5522. height: math.unit(8 + 4/12, "feet"),
  5523. name: "Back",
  5524. image: {
  5525. source: "./media/characters/andy-renard/back.svg",
  5526. extra: 1838/1710,
  5527. bottom: 105/1943
  5528. }
  5529. },
  5530. },
  5531. [
  5532. {
  5533. name: "Tall",
  5534. height: math.unit(8 + 4/12, "feet")
  5535. },
  5536. {
  5537. name: "Mini Macro",
  5538. height: math.unit(15, "feet"),
  5539. default: true
  5540. },
  5541. {
  5542. name: "Macro",
  5543. height: math.unit(100, "feet")
  5544. },
  5545. {
  5546. name: "Mega Macro",
  5547. height: math.unit(1000, "feet")
  5548. },
  5549. {
  5550. name: "Giga Macro",
  5551. height: math.unit(10, "miles")
  5552. },
  5553. {
  5554. name: "God Macro",
  5555. height: math.unit(1, "multiverse")
  5556. },
  5557. ]
  5558. ))
  5559. characterMakers.push(() => makeCharacter(
  5560. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5561. {
  5562. front: {
  5563. height: math.unit(6, "feet"),
  5564. weight: math.unit(210, "lbs"),
  5565. name: "Front",
  5566. image: {
  5567. source: "./media/characters/cimmaron/front-sfw.svg",
  5568. extra: 701 / 676,
  5569. bottom: 0.046
  5570. }
  5571. },
  5572. back: {
  5573. height: math.unit(6, "feet"),
  5574. weight: math.unit(210, "lbs"),
  5575. name: "Back",
  5576. image: {
  5577. source: "./media/characters/cimmaron/back-sfw.svg",
  5578. extra: 701 / 676,
  5579. bottom: 0.046
  5580. }
  5581. },
  5582. frontNsfw: {
  5583. height: math.unit(6, "feet"),
  5584. weight: math.unit(210, "lbs"),
  5585. name: "Front (NSFW)",
  5586. image: {
  5587. source: "./media/characters/cimmaron/front-nsfw.svg",
  5588. extra: 701 / 676,
  5589. bottom: 0.046
  5590. }
  5591. },
  5592. backNsfw: {
  5593. height: math.unit(6, "feet"),
  5594. weight: math.unit(210, "lbs"),
  5595. name: "Back (NSFW)",
  5596. image: {
  5597. source: "./media/characters/cimmaron/back-nsfw.svg",
  5598. extra: 701 / 676,
  5599. bottom: 0.046
  5600. }
  5601. },
  5602. dick: {
  5603. height: math.unit(1.714, "feet"),
  5604. name: "Dick",
  5605. image: {
  5606. source: "./media/characters/cimmaron/dick.svg"
  5607. }
  5608. },
  5609. },
  5610. [
  5611. {
  5612. name: "Normal",
  5613. height: math.unit(6, "feet"),
  5614. default: true
  5615. },
  5616. {
  5617. name: "Macro Mayor",
  5618. height: math.unit(350, "meters")
  5619. },
  5620. ]
  5621. ))
  5622. characterMakers.push(() => makeCharacter(
  5623. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5624. {
  5625. front: {
  5626. height: math.unit(6, "feet"),
  5627. weight: math.unit(200, "lbs"),
  5628. name: "Front",
  5629. image: {
  5630. source: "./media/characters/akari/front.svg",
  5631. extra: 962 / 901,
  5632. bottom: 0.04
  5633. }
  5634. }
  5635. },
  5636. [
  5637. {
  5638. name: "Micro",
  5639. height: math.unit(5, "inches"),
  5640. default: true
  5641. },
  5642. {
  5643. name: "Normal",
  5644. height: math.unit(7, "feet")
  5645. },
  5646. ]
  5647. ))
  5648. characterMakers.push(() => makeCharacter(
  5649. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5650. {
  5651. front: {
  5652. height: math.unit(6, "feet"),
  5653. weight: math.unit(140, "lbs"),
  5654. name: "Front",
  5655. image: {
  5656. source: "./media/characters/cynosura/front.svg",
  5657. extra: 896 / 847
  5658. }
  5659. },
  5660. back: {
  5661. height: math.unit(6, "feet"),
  5662. weight: math.unit(140, "lbs"),
  5663. name: "Back",
  5664. image: {
  5665. source: "./media/characters/cynosura/back.svg",
  5666. extra: 1365 / 1250
  5667. }
  5668. },
  5669. },
  5670. [
  5671. {
  5672. name: "Micro",
  5673. height: math.unit(4, "inches")
  5674. },
  5675. {
  5676. name: "Normal",
  5677. height: math.unit(5.75, "feet"),
  5678. default: true
  5679. },
  5680. {
  5681. name: "Tall",
  5682. height: math.unit(10, "feet")
  5683. },
  5684. {
  5685. name: "Big",
  5686. height: math.unit(20, "feet")
  5687. },
  5688. {
  5689. name: "Macro",
  5690. height: math.unit(50, "feet")
  5691. },
  5692. ]
  5693. ))
  5694. characterMakers.push(() => makeCharacter(
  5695. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5696. {
  5697. front: {
  5698. height: math.unit(13 + 2/12, "feet"),
  5699. weight: math.unit(800, "kg"),
  5700. name: "Front",
  5701. image: {
  5702. source: "./media/characters/gin/front.svg",
  5703. extra: 1312/1191,
  5704. bottom: 45/1357
  5705. }
  5706. },
  5707. mouth: {
  5708. height: math.unit(2.39 * 1.8, "feet"),
  5709. name: "Mouth",
  5710. image: {
  5711. source: "./media/characters/gin/mouth.svg"
  5712. }
  5713. },
  5714. hand: {
  5715. height: math.unit(1.57 * 2.19, "feet"),
  5716. name: "Hand",
  5717. image: {
  5718. source: "./media/characters/gin/hand.svg"
  5719. }
  5720. },
  5721. foot: {
  5722. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5723. name: "Foot",
  5724. image: {
  5725. source: "./media/characters/gin/foot.svg"
  5726. }
  5727. },
  5728. sole: {
  5729. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5730. name: "Sole",
  5731. image: {
  5732. source: "./media/characters/gin/sole.svg"
  5733. }
  5734. },
  5735. },
  5736. [
  5737. {
  5738. name: "Very Small",
  5739. height: math.unit(13 + 2 / 12, "feet")
  5740. },
  5741. {
  5742. name: "Micro",
  5743. height: math.unit(600, "miles")
  5744. },
  5745. {
  5746. name: "Regular",
  5747. height: math.unit(20, "earths"),
  5748. default: true
  5749. },
  5750. {
  5751. name: "Macro",
  5752. height: math.unit(2.2, "solarradii")
  5753. },
  5754. {
  5755. name: "Teramacro",
  5756. height: math.unit(1.2, "galaxies")
  5757. },
  5758. {
  5759. name: "Omegamacro",
  5760. height: math.unit(200, "universes")
  5761. },
  5762. ]
  5763. ))
  5764. characterMakers.push(() => makeCharacter(
  5765. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5766. {
  5767. front: {
  5768. height: math.unit(6 + 1 / 6, "feet"),
  5769. weight: math.unit(178, "lbs"),
  5770. name: "Front",
  5771. image: {
  5772. source: "./media/characters/guy/front.svg"
  5773. }
  5774. }
  5775. },
  5776. [
  5777. {
  5778. name: "Normal",
  5779. height: math.unit(6 + 1 / 6, "feet"),
  5780. default: true
  5781. },
  5782. {
  5783. name: "Large",
  5784. height: math.unit(25 + 7 / 12, "feet")
  5785. },
  5786. {
  5787. name: "Macro",
  5788. height: math.unit(60 + 9 / 12, "feet")
  5789. },
  5790. {
  5791. name: "Macro+",
  5792. height: math.unit(246, "feet")
  5793. },
  5794. {
  5795. name: "Macro++",
  5796. height: math.unit(878, "feet")
  5797. }
  5798. ]
  5799. ))
  5800. characterMakers.push(() => makeCharacter(
  5801. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5802. {
  5803. front: {
  5804. height: math.unit(9, "feet"),
  5805. weight: math.unit(800, "lbs"),
  5806. name: "Front",
  5807. image: {
  5808. source: "./media/characters/tiberius/front.svg",
  5809. extra: 2295 / 2071
  5810. }
  5811. },
  5812. back: {
  5813. height: math.unit(9, "feet"),
  5814. weight: math.unit(800, "lbs"),
  5815. name: "Back",
  5816. image: {
  5817. source: "./media/characters/tiberius/back.svg",
  5818. extra: 2373 / 2160
  5819. }
  5820. },
  5821. },
  5822. [
  5823. {
  5824. name: "Normal",
  5825. height: math.unit(9, "feet"),
  5826. default: true
  5827. }
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5832. {
  5833. front: {
  5834. height: math.unit(6, "feet"),
  5835. weight: math.unit(600, "lbs"),
  5836. name: "Front",
  5837. image: {
  5838. source: "./media/characters/surgo/front.svg",
  5839. extra: 3591 / 2227
  5840. }
  5841. },
  5842. back: {
  5843. height: math.unit(6, "feet"),
  5844. weight: math.unit(600, "lbs"),
  5845. name: "Back",
  5846. image: {
  5847. source: "./media/characters/surgo/back.svg",
  5848. extra: 3557 / 2228
  5849. }
  5850. },
  5851. laying: {
  5852. height: math.unit(6 * 0.85, "feet"),
  5853. weight: math.unit(600, "lbs"),
  5854. name: "Laying",
  5855. image: {
  5856. source: "./media/characters/surgo/laying.svg"
  5857. }
  5858. },
  5859. },
  5860. [
  5861. {
  5862. name: "Normal",
  5863. height: math.unit(6, "feet"),
  5864. default: true
  5865. }
  5866. ]
  5867. ))
  5868. characterMakers.push(() => makeCharacter(
  5869. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5870. {
  5871. side: {
  5872. height: math.unit(6, "feet"),
  5873. weight: math.unit(150, "lbs"),
  5874. name: "Side",
  5875. image: {
  5876. source: "./media/characters/cibus/side.svg",
  5877. extra: 800 / 400
  5878. }
  5879. },
  5880. },
  5881. [
  5882. {
  5883. name: "Normal",
  5884. height: math.unit(6, "feet"),
  5885. default: true
  5886. }
  5887. ]
  5888. ))
  5889. characterMakers.push(() => makeCharacter(
  5890. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5891. {
  5892. front: {
  5893. height: math.unit(6, "feet"),
  5894. weight: math.unit(240, "lbs"),
  5895. name: "Front",
  5896. image: {
  5897. source: "./media/characters/nibbles/front.svg"
  5898. }
  5899. },
  5900. side: {
  5901. height: math.unit(6, "feet"),
  5902. weight: math.unit(240, "lbs"),
  5903. name: "Side",
  5904. image: {
  5905. source: "./media/characters/nibbles/side.svg"
  5906. }
  5907. },
  5908. },
  5909. [
  5910. {
  5911. name: "Normal",
  5912. height: math.unit(9, "feet"),
  5913. default: true
  5914. }
  5915. ]
  5916. ))
  5917. characterMakers.push(() => makeCharacter(
  5918. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5919. {
  5920. side: {
  5921. height: math.unit(5 + 1 / 6, "feet"),
  5922. weight: math.unit(130, "lbs"),
  5923. name: "Side",
  5924. image: {
  5925. source: "./media/characters/rikky/side.svg",
  5926. extra: 851 / 801
  5927. }
  5928. },
  5929. },
  5930. [
  5931. {
  5932. name: "Normal",
  5933. height: math.unit(5 + 1 / 6, "feet")
  5934. },
  5935. {
  5936. name: "Macro",
  5937. height: math.unit(152, "feet"),
  5938. default: true
  5939. },
  5940. {
  5941. name: "Megamacro",
  5942. height: math.unit(7, "miles")
  5943. }
  5944. ]
  5945. ))
  5946. characterMakers.push(() => makeCharacter(
  5947. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5948. {
  5949. side: {
  5950. height: math.unit(370, "cm"),
  5951. weight: math.unit(350, "lbs"),
  5952. name: "Side",
  5953. image: {
  5954. source: "./media/characters/malfressa/side.svg"
  5955. }
  5956. },
  5957. walking: {
  5958. height: math.unit(370, "cm"),
  5959. weight: math.unit(350, "lbs"),
  5960. name: "Walking",
  5961. image: {
  5962. source: "./media/characters/malfressa/walking.svg"
  5963. }
  5964. },
  5965. feral: {
  5966. height: math.unit(2500, "cm"),
  5967. weight: math.unit(100000, "lbs"),
  5968. name: "Feral",
  5969. image: {
  5970. source: "./media/characters/malfressa/feral.svg",
  5971. extra: 2108 / 837,
  5972. bottom: 0.02
  5973. }
  5974. },
  5975. },
  5976. [
  5977. {
  5978. name: "Normal",
  5979. height: math.unit(370, "cm")
  5980. },
  5981. {
  5982. name: "Macro",
  5983. height: math.unit(300, "meters"),
  5984. default: true
  5985. }
  5986. ]
  5987. ))
  5988. characterMakers.push(() => makeCharacter(
  5989. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5990. {
  5991. front: {
  5992. height: math.unit(6, "feet"),
  5993. weight: math.unit(60, "kg"),
  5994. name: "Front",
  5995. image: {
  5996. source: "./media/characters/jaro/front.svg"
  5997. }
  5998. },
  5999. back: {
  6000. height: math.unit(6, "feet"),
  6001. weight: math.unit(60, "kg"),
  6002. name: "Back",
  6003. image: {
  6004. source: "./media/characters/jaro/back.svg"
  6005. }
  6006. },
  6007. },
  6008. [
  6009. {
  6010. name: "Micro",
  6011. height: math.unit(7, "inches")
  6012. },
  6013. {
  6014. name: "Normal",
  6015. height: math.unit(5.5, "feet"),
  6016. default: true
  6017. },
  6018. {
  6019. name: "Minimacro",
  6020. height: math.unit(20, "feet")
  6021. },
  6022. {
  6023. name: "Macro",
  6024. height: math.unit(200, "meters")
  6025. }
  6026. ]
  6027. ))
  6028. characterMakers.push(() => makeCharacter(
  6029. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6030. {
  6031. front: {
  6032. height: math.unit(6, "feet"),
  6033. weight: math.unit(195, "lb"),
  6034. name: "Front",
  6035. image: {
  6036. source: "./media/characters/rogue/front.svg"
  6037. }
  6038. },
  6039. },
  6040. [
  6041. {
  6042. name: "Macro",
  6043. height: math.unit(90, "feet"),
  6044. default: true
  6045. },
  6046. ]
  6047. ))
  6048. characterMakers.push(() => makeCharacter(
  6049. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6050. {
  6051. front: {
  6052. height: math.unit(5 + 8 / 12, "feet"),
  6053. weight: math.unit(140, "lb"),
  6054. name: "Front",
  6055. image: {
  6056. source: "./media/characters/piper/front.svg",
  6057. extra: 3948/3655,
  6058. bottom: 0/3948
  6059. }
  6060. },
  6061. },
  6062. [
  6063. {
  6064. name: "Micro",
  6065. height: math.unit(2, "inches")
  6066. },
  6067. {
  6068. name: "Normal",
  6069. height: math.unit(5 + 8 / 12, "feet")
  6070. },
  6071. {
  6072. name: "Macro",
  6073. height: math.unit(250, "feet"),
  6074. default: true
  6075. },
  6076. {
  6077. name: "Megamacro",
  6078. height: math.unit(7, "miles")
  6079. },
  6080. ]
  6081. ))
  6082. characterMakers.push(() => makeCharacter(
  6083. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6084. {
  6085. front: {
  6086. height: math.unit(6, "feet"),
  6087. weight: math.unit(220, "lb"),
  6088. name: "Front",
  6089. image: {
  6090. source: "./media/characters/gemini/front.svg"
  6091. }
  6092. },
  6093. back: {
  6094. height: math.unit(6, "feet"),
  6095. weight: math.unit(220, "lb"),
  6096. name: "Back",
  6097. image: {
  6098. source: "./media/characters/gemini/back.svg"
  6099. }
  6100. },
  6101. kneeling: {
  6102. height: math.unit(6 / 1.5, "feet"),
  6103. weight: math.unit(220, "lb"),
  6104. name: "Kneeling",
  6105. image: {
  6106. source: "./media/characters/gemini/kneeling.svg",
  6107. bottom: 0.02
  6108. }
  6109. },
  6110. },
  6111. [
  6112. {
  6113. name: "Macro",
  6114. height: math.unit(300, "meters"),
  6115. default: true
  6116. },
  6117. {
  6118. name: "Megamacro",
  6119. height: math.unit(6900, "meters")
  6120. },
  6121. ]
  6122. ))
  6123. characterMakers.push(() => makeCharacter(
  6124. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6125. {
  6126. anthro: {
  6127. height: math.unit(2.35, "meters"),
  6128. weight: math.unit(73, "kg"),
  6129. name: "Anthro",
  6130. image: {
  6131. source: "./media/characters/alicia/anthro.svg",
  6132. extra: 2571 / 2385,
  6133. bottom: 75 / 2648
  6134. }
  6135. },
  6136. paw: {
  6137. height: math.unit(1.32, "feet"),
  6138. name: "Paw",
  6139. image: {
  6140. source: "./media/characters/alicia/paw.svg"
  6141. }
  6142. },
  6143. feral: {
  6144. height: math.unit(1.69, "meters"),
  6145. weight: math.unit(73, "kg"),
  6146. name: "Feral",
  6147. image: {
  6148. source: "./media/characters/alicia/feral.svg",
  6149. extra: 2123 / 1715,
  6150. bottom: 222 / 2349
  6151. }
  6152. },
  6153. },
  6154. [
  6155. {
  6156. name: "Normal",
  6157. height: math.unit(2.35, "meters")
  6158. },
  6159. {
  6160. name: "Macro",
  6161. height: math.unit(60, "meters"),
  6162. default: true
  6163. },
  6164. {
  6165. name: "Megamacro",
  6166. height: math.unit(10000, "kilometers")
  6167. },
  6168. ]
  6169. ))
  6170. characterMakers.push(() => makeCharacter(
  6171. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6172. {
  6173. front: {
  6174. height: math.unit(7, "feet"),
  6175. weight: math.unit(250, "lbs"),
  6176. name: "Front",
  6177. image: {
  6178. source: "./media/characters/archy/front.svg"
  6179. }
  6180. }
  6181. },
  6182. [
  6183. {
  6184. name: "Micro",
  6185. height: math.unit(1, "inch")
  6186. },
  6187. {
  6188. name: "Shorty",
  6189. height: math.unit(5, "feet")
  6190. },
  6191. {
  6192. name: "Normal",
  6193. height: math.unit(7, "feet")
  6194. },
  6195. {
  6196. name: "Macro",
  6197. height: math.unit(600, "meters"),
  6198. default: true
  6199. },
  6200. {
  6201. name: "Megamacro",
  6202. height: math.unit(1, "mile")
  6203. },
  6204. ]
  6205. ))
  6206. characterMakers.push(() => makeCharacter(
  6207. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6208. {
  6209. front: {
  6210. height: math.unit(1.65, "meters"),
  6211. weight: math.unit(74, "kg"),
  6212. name: "Front",
  6213. image: {
  6214. source: "./media/characters/berri/front.svg",
  6215. extra: 857 / 837,
  6216. bottom: 18 / 877
  6217. }
  6218. },
  6219. bum: {
  6220. height: math.unit(1.46, "feet"),
  6221. name: "Bum",
  6222. image: {
  6223. source: "./media/characters/berri/bum.svg"
  6224. }
  6225. },
  6226. mouth: {
  6227. height: math.unit(0.44, "feet"),
  6228. name: "Mouth",
  6229. image: {
  6230. source: "./media/characters/berri/mouth.svg"
  6231. }
  6232. },
  6233. paw: {
  6234. height: math.unit(0.826, "feet"),
  6235. name: "Paw",
  6236. image: {
  6237. source: "./media/characters/berri/paw.svg"
  6238. }
  6239. },
  6240. },
  6241. [
  6242. {
  6243. name: "Normal",
  6244. height: math.unit(1.65, "meters")
  6245. },
  6246. {
  6247. name: "Macro",
  6248. height: math.unit(60, "m"),
  6249. default: true
  6250. },
  6251. {
  6252. name: "Megamacro",
  6253. height: math.unit(9.213, "km")
  6254. },
  6255. {
  6256. name: "Planet Eater",
  6257. height: math.unit(489, "megameters")
  6258. },
  6259. {
  6260. name: "Teramacro",
  6261. height: math.unit(2471635000000, "meters")
  6262. },
  6263. {
  6264. name: "Examacro",
  6265. height: math.unit(8.0624e+26, "meters")
  6266. }
  6267. ]
  6268. ))
  6269. characterMakers.push(() => makeCharacter(
  6270. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6271. {
  6272. front: {
  6273. height: math.unit(1.72, "meters"),
  6274. weight: math.unit(68, "kg"),
  6275. name: "Front",
  6276. image: {
  6277. source: "./media/characters/lexi/front.svg"
  6278. }
  6279. }
  6280. },
  6281. [
  6282. {
  6283. name: "Very Smol",
  6284. height: math.unit(10, "mm")
  6285. },
  6286. {
  6287. name: "Micro",
  6288. height: math.unit(6.8, "cm"),
  6289. default: true
  6290. },
  6291. {
  6292. name: "Normal",
  6293. height: math.unit(1.72, "m")
  6294. }
  6295. ]
  6296. ))
  6297. characterMakers.push(() => makeCharacter(
  6298. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6299. {
  6300. front: {
  6301. height: math.unit(1.69, "meters"),
  6302. weight: math.unit(68, "kg"),
  6303. name: "Front",
  6304. image: {
  6305. source: "./media/characters/martin/front.svg",
  6306. extra: 596 / 581
  6307. }
  6308. }
  6309. },
  6310. [
  6311. {
  6312. name: "Micro",
  6313. height: math.unit(6.85, "cm"),
  6314. default: true
  6315. },
  6316. {
  6317. name: "Normal",
  6318. height: math.unit(1.69, "m")
  6319. }
  6320. ]
  6321. ))
  6322. characterMakers.push(() => makeCharacter(
  6323. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6324. {
  6325. front: {
  6326. height: math.unit(1.69, "meters"),
  6327. weight: math.unit(68, "kg"),
  6328. name: "Front",
  6329. image: {
  6330. source: "./media/characters/juno/front.svg"
  6331. }
  6332. }
  6333. },
  6334. [
  6335. {
  6336. name: "Micro",
  6337. height: math.unit(7, "cm")
  6338. },
  6339. {
  6340. name: "Normal",
  6341. height: math.unit(1.89, "m")
  6342. },
  6343. {
  6344. name: "Macro",
  6345. height: math.unit(353, "meters"),
  6346. default: true
  6347. }
  6348. ]
  6349. ))
  6350. characterMakers.push(() => makeCharacter(
  6351. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6352. {
  6353. front: {
  6354. height: math.unit(1.93, "meters"),
  6355. weight: math.unit(83, "kg"),
  6356. name: "Front",
  6357. image: {
  6358. source: "./media/characters/samantha/front.svg"
  6359. }
  6360. },
  6361. frontClothed: {
  6362. height: math.unit(1.93, "meters"),
  6363. weight: math.unit(83, "kg"),
  6364. name: "Front (Clothed)",
  6365. image: {
  6366. source: "./media/characters/samantha/front-clothed.svg"
  6367. }
  6368. },
  6369. back: {
  6370. height: math.unit(1.93, "meters"),
  6371. weight: math.unit(83, "kg"),
  6372. name: "Back",
  6373. image: {
  6374. source: "./media/characters/samantha/back.svg"
  6375. }
  6376. },
  6377. },
  6378. [
  6379. {
  6380. name: "Normal",
  6381. height: math.unit(1.93, "m")
  6382. },
  6383. {
  6384. name: "Macro",
  6385. height: math.unit(74, "meters"),
  6386. default: true
  6387. },
  6388. {
  6389. name: "Macro+",
  6390. height: math.unit(223, "meters"),
  6391. },
  6392. {
  6393. name: "Megamacro",
  6394. height: math.unit(8381, "meters"),
  6395. },
  6396. {
  6397. name: "Megamacro+",
  6398. height: math.unit(12000, "kilometers")
  6399. },
  6400. ]
  6401. ))
  6402. characterMakers.push(() => makeCharacter(
  6403. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6404. {
  6405. front: {
  6406. height: math.unit(1.92, "meters"),
  6407. weight: math.unit(80, "kg"),
  6408. name: "Front",
  6409. image: {
  6410. source: "./media/characters/dr-clay/front.svg"
  6411. }
  6412. },
  6413. frontClothed: {
  6414. height: math.unit(1.92, "meters"),
  6415. weight: math.unit(80, "kg"),
  6416. name: "Front (Clothed)",
  6417. image: {
  6418. source: "./media/characters/dr-clay/front-clothed.svg"
  6419. }
  6420. }
  6421. },
  6422. [
  6423. {
  6424. name: "Normal",
  6425. height: math.unit(1.92, "m")
  6426. },
  6427. {
  6428. name: "Macro",
  6429. height: math.unit(214, "meters"),
  6430. default: true
  6431. },
  6432. {
  6433. name: "Macro+",
  6434. height: math.unit(12.237, "meters"),
  6435. },
  6436. {
  6437. name: "Megamacro",
  6438. height: math.unit(557, "megameters"),
  6439. },
  6440. {
  6441. name: "Unimaginable",
  6442. height: math.unit(120e9, "lightyears")
  6443. },
  6444. ]
  6445. ))
  6446. characterMakers.push(() => makeCharacter(
  6447. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6448. {
  6449. front: {
  6450. height: math.unit(2, "meters"),
  6451. weight: math.unit(80, "kg"),
  6452. name: "Front",
  6453. image: {
  6454. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6455. }
  6456. }
  6457. },
  6458. [
  6459. {
  6460. name: "Teramacro",
  6461. height: math.unit(500000, "lightyears"),
  6462. default: true
  6463. },
  6464. ]
  6465. ))
  6466. characterMakers.push(() => makeCharacter(
  6467. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6468. {
  6469. front: {
  6470. height: math.unit(2, "meters"),
  6471. weight: math.unit(150, "kg"),
  6472. name: "Front",
  6473. image: {
  6474. source: "./media/characters/vemus/front.svg",
  6475. extra: 1074/936,
  6476. bottom: 23/1097
  6477. }
  6478. }
  6479. },
  6480. [
  6481. {
  6482. name: "Normal",
  6483. height: math.unit(3.75, "meters"),
  6484. default: true
  6485. },
  6486. {
  6487. name: "Big",
  6488. height: math.unit(8, "meters")
  6489. },
  6490. {
  6491. name: "Macro",
  6492. height: math.unit(100, "meters")
  6493. },
  6494. {
  6495. name: "Macro+",
  6496. height: math.unit(1500, "meters")
  6497. },
  6498. {
  6499. name: "Stellar",
  6500. height: math.unit(14e8, "meters")
  6501. },
  6502. ]
  6503. ))
  6504. characterMakers.push(() => makeCharacter(
  6505. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6506. {
  6507. front: {
  6508. height: math.unit(2, "meters"),
  6509. weight: math.unit(70, "kg"),
  6510. name: "Front",
  6511. image: {
  6512. source: "./media/characters/beherit/front.svg",
  6513. extra: 1408 / 1242
  6514. }
  6515. }
  6516. },
  6517. [
  6518. {
  6519. name: "Normal",
  6520. height: math.unit(6, "feet")
  6521. },
  6522. {
  6523. name: "Lorg",
  6524. height: math.unit(25, "feet"),
  6525. default: true
  6526. },
  6527. {
  6528. name: "Lorger",
  6529. height: math.unit(75, "feet")
  6530. },
  6531. {
  6532. name: "Macro",
  6533. height: math.unit(200, "meters")
  6534. },
  6535. ]
  6536. ))
  6537. characterMakers.push(() => makeCharacter(
  6538. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6539. {
  6540. front: {
  6541. height: math.unit(2, "meters"),
  6542. weight: math.unit(150, "kg"),
  6543. name: "Front",
  6544. image: {
  6545. source: "./media/characters/everett/front.svg",
  6546. extra: 2038 / 1737,
  6547. bottom: 0.03
  6548. }
  6549. },
  6550. paw: {
  6551. height: math.unit(2 / 3.6, "meters"),
  6552. name: "Paw",
  6553. image: {
  6554. source: "./media/characters/everett/paw.svg"
  6555. }
  6556. },
  6557. },
  6558. [
  6559. {
  6560. name: "Normal",
  6561. height: math.unit(15, "feet"),
  6562. default: true
  6563. },
  6564. {
  6565. name: "Lorg",
  6566. height: math.unit(70, "feet"),
  6567. default: true
  6568. },
  6569. {
  6570. name: "Lorger",
  6571. height: math.unit(250, "feet")
  6572. },
  6573. {
  6574. name: "Macro",
  6575. height: math.unit(500, "meters")
  6576. },
  6577. ]
  6578. ))
  6579. characterMakers.push(() => makeCharacter(
  6580. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6581. {
  6582. front: {
  6583. height: math.unit(2, "meters"),
  6584. weight: math.unit(86, "kg"),
  6585. name: "Front",
  6586. image: {
  6587. source: "./media/characters/rose/front.svg",
  6588. extra: 1785/1636,
  6589. bottom: 30/1815
  6590. }
  6591. },
  6592. frontSporty: {
  6593. height: math.unit(2, "meters"),
  6594. weight: math.unit(86, "kg"),
  6595. name: "Front (Sporty)",
  6596. image: {
  6597. source: "./media/characters/rose/front-sporty.svg",
  6598. extra: 350/335,
  6599. bottom: 10/360
  6600. }
  6601. },
  6602. frontAlt: {
  6603. height: math.unit(1.6, "meters"),
  6604. weight: math.unit(86, "kg"),
  6605. name: "Front (Alt)",
  6606. image: {
  6607. source: "./media/characters/rose/front-alt.svg",
  6608. extra: 299/283,
  6609. bottom: 3/302
  6610. }
  6611. },
  6612. plush: {
  6613. height: math.unit(2, "meters"),
  6614. weight: math.unit(86/3, "kg"),
  6615. name: "Plush",
  6616. image: {
  6617. source: "./media/characters/rose/plush.svg",
  6618. extra: 361/337,
  6619. bottom: 11/372
  6620. }
  6621. },
  6622. },
  6623. [
  6624. {
  6625. name: "True Micro",
  6626. height: math.unit(9, "cm")
  6627. },
  6628. {
  6629. name: "Micro",
  6630. height: math.unit(16, "cm")
  6631. },
  6632. {
  6633. name: "Normal",
  6634. height: math.unit(1.85, "meters"),
  6635. default: true
  6636. },
  6637. {
  6638. name: "Mini-Macro",
  6639. height: math.unit(5, "meters")
  6640. },
  6641. {
  6642. name: "Macro",
  6643. height: math.unit(15, "meters")
  6644. },
  6645. {
  6646. name: "True Macro",
  6647. height: math.unit(40, "meters")
  6648. },
  6649. {
  6650. name: "City Scale",
  6651. height: math.unit(1, "km")
  6652. },
  6653. ]
  6654. ))
  6655. characterMakers.push(() => makeCharacter(
  6656. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6657. {
  6658. front: {
  6659. height: math.unit(2, "meters"),
  6660. weight: math.unit(350, "lbs"),
  6661. name: "Front",
  6662. image: {
  6663. source: "./media/characters/regal/front.svg"
  6664. }
  6665. },
  6666. back: {
  6667. height: math.unit(2, "meters"),
  6668. weight: math.unit(350, "lbs"),
  6669. name: "Back",
  6670. image: {
  6671. source: "./media/characters/regal/back.svg"
  6672. }
  6673. },
  6674. },
  6675. [
  6676. {
  6677. name: "Macro",
  6678. height: math.unit(350, "feet"),
  6679. default: true
  6680. }
  6681. ]
  6682. ))
  6683. characterMakers.push(() => makeCharacter(
  6684. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6685. {
  6686. front: {
  6687. height: math.unit(4 + 11 / 12, "feet"),
  6688. weight: math.unit(100, "lbs"),
  6689. name: "Front",
  6690. image: {
  6691. source: "./media/characters/opal/front.svg"
  6692. }
  6693. },
  6694. frontAlt: {
  6695. height: math.unit(4 + 11 / 12, "feet"),
  6696. weight: math.unit(100, "lbs"),
  6697. name: "Front (Alt)",
  6698. image: {
  6699. source: "./media/characters/opal/front-alt.svg"
  6700. }
  6701. },
  6702. },
  6703. [
  6704. {
  6705. name: "Small",
  6706. height: math.unit(4 + 11 / 12, "feet")
  6707. },
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(20, "feet"),
  6711. default: true
  6712. },
  6713. {
  6714. name: "Macro",
  6715. height: math.unit(120, "feet")
  6716. },
  6717. {
  6718. name: "Megamacro",
  6719. height: math.unit(80, "miles")
  6720. },
  6721. {
  6722. name: "True Size",
  6723. height: math.unit(100000, "lightyears")
  6724. },
  6725. ]
  6726. ))
  6727. characterMakers.push(() => makeCharacter(
  6728. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6729. {
  6730. front: {
  6731. height: math.unit(6, "feet"),
  6732. weight: math.unit(200, "lbs"),
  6733. name: "Front",
  6734. image: {
  6735. source: "./media/characters/vector-wuff/front.svg"
  6736. }
  6737. }
  6738. },
  6739. [
  6740. {
  6741. name: "Normal",
  6742. height: math.unit(2.8, "meters")
  6743. },
  6744. {
  6745. name: "Macro",
  6746. height: math.unit(450, "meters"),
  6747. default: true
  6748. },
  6749. {
  6750. name: "Megamacro",
  6751. height: math.unit(15, "kilometers")
  6752. }
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6757. {
  6758. front: {
  6759. height: math.unit(6, "feet"),
  6760. weight: math.unit(256, "lbs"),
  6761. name: "Front",
  6762. image: {
  6763. source: "./media/characters/dannik/front.svg"
  6764. }
  6765. }
  6766. },
  6767. [
  6768. {
  6769. name: "Macro",
  6770. height: math.unit(69.57, "meters"),
  6771. default: true
  6772. },
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6777. {
  6778. front: {
  6779. height: math.unit(6, "feet"),
  6780. weight: math.unit(120, "lbs"),
  6781. name: "Front",
  6782. image: {
  6783. source: "./media/characters/azura-saharah/front.svg"
  6784. }
  6785. },
  6786. back: {
  6787. height: math.unit(6, "feet"),
  6788. weight: math.unit(120, "lbs"),
  6789. name: "Back",
  6790. image: {
  6791. source: "./media/characters/azura-saharah/back.svg"
  6792. }
  6793. },
  6794. },
  6795. [
  6796. {
  6797. name: "Macro",
  6798. height: math.unit(100, "feet"),
  6799. default: true
  6800. },
  6801. ]
  6802. ))
  6803. characterMakers.push(() => makeCharacter(
  6804. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6805. {
  6806. side: {
  6807. height: math.unit(5 + 4 / 12, "feet"),
  6808. weight: math.unit(163, "lbs"),
  6809. name: "Side",
  6810. image: {
  6811. source: "./media/characters/kennedy/side.svg"
  6812. }
  6813. }
  6814. },
  6815. [
  6816. {
  6817. name: "Standard Doggo",
  6818. height: math.unit(5 + 4 / 12, "feet")
  6819. },
  6820. {
  6821. name: "Big Doggo",
  6822. height: math.unit(25 + 3 / 12, "feet"),
  6823. default: true
  6824. },
  6825. ]
  6826. ))
  6827. characterMakers.push(() => makeCharacter(
  6828. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6829. {
  6830. front: {
  6831. height: math.unit(6, "feet"),
  6832. weight: math.unit(90, "lbs"),
  6833. name: "Front",
  6834. image: {
  6835. source: "./media/characters/odi-lunar/front.svg"
  6836. }
  6837. }
  6838. },
  6839. [
  6840. {
  6841. name: "Micro",
  6842. height: math.unit(3, "inches"),
  6843. default: true
  6844. },
  6845. {
  6846. name: "Normal",
  6847. height: math.unit(5.5, "feet")
  6848. }
  6849. ]
  6850. ))
  6851. characterMakers.push(() => makeCharacter(
  6852. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6853. {
  6854. back: {
  6855. height: math.unit(6, "feet"),
  6856. weight: math.unit(220, "lbs"),
  6857. name: "Back",
  6858. image: {
  6859. source: "./media/characters/mandake/back.svg"
  6860. }
  6861. }
  6862. },
  6863. [
  6864. {
  6865. name: "Normal",
  6866. height: math.unit(7, "feet"),
  6867. default: true
  6868. },
  6869. {
  6870. name: "Macro",
  6871. height: math.unit(78, "feet")
  6872. },
  6873. {
  6874. name: "Macro+",
  6875. height: math.unit(300, "meters")
  6876. },
  6877. {
  6878. name: "Macro++",
  6879. height: math.unit(2400, "feet")
  6880. },
  6881. {
  6882. name: "Megamacro",
  6883. height: math.unit(5167, "meters")
  6884. },
  6885. {
  6886. name: "Gigamacro",
  6887. height: math.unit(41769, "miles")
  6888. },
  6889. ]
  6890. ))
  6891. characterMakers.push(() => makeCharacter(
  6892. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6893. {
  6894. front: {
  6895. height: math.unit(6, "feet"),
  6896. weight: math.unit(120, "lbs"),
  6897. name: "Front",
  6898. image: {
  6899. source: "./media/characters/yozey/front.svg"
  6900. }
  6901. },
  6902. frontAlt: {
  6903. height: math.unit(6, "feet"),
  6904. weight: math.unit(120, "lbs"),
  6905. name: "Front (Alt)",
  6906. image: {
  6907. source: "./media/characters/yozey/front-alt.svg"
  6908. }
  6909. },
  6910. side: {
  6911. height: math.unit(6, "feet"),
  6912. weight: math.unit(120, "lbs"),
  6913. name: "Side",
  6914. image: {
  6915. source: "./media/characters/yozey/side.svg"
  6916. }
  6917. },
  6918. },
  6919. [
  6920. {
  6921. name: "Micro",
  6922. height: math.unit(3, "inches"),
  6923. default: true
  6924. },
  6925. {
  6926. name: "Normal",
  6927. height: math.unit(6, "feet")
  6928. }
  6929. ]
  6930. ))
  6931. characterMakers.push(() => makeCharacter(
  6932. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6933. {
  6934. front: {
  6935. height: math.unit(6, "feet"),
  6936. weight: math.unit(103, "lbs"),
  6937. name: "Front",
  6938. image: {
  6939. source: "./media/characters/valeska-voss/front.svg"
  6940. }
  6941. }
  6942. },
  6943. [
  6944. {
  6945. name: "Mini-Sized Sub",
  6946. height: math.unit(3.1, "inches")
  6947. },
  6948. {
  6949. name: "Mid-Sized Sub",
  6950. height: math.unit(6.2, "inches")
  6951. },
  6952. {
  6953. name: "Full-Sized Sub",
  6954. height: math.unit(9.3, "inches")
  6955. },
  6956. {
  6957. name: "Normal",
  6958. height: math.unit(5 + 2 / 12, "foot"),
  6959. default: true
  6960. },
  6961. ]
  6962. ))
  6963. characterMakers.push(() => makeCharacter(
  6964. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6965. {
  6966. front: {
  6967. height: math.unit(6, "feet"),
  6968. weight: math.unit(160, "lbs"),
  6969. name: "Front",
  6970. image: {
  6971. source: "./media/characters/gene-zeta/front.svg",
  6972. extra: 3006 / 2826,
  6973. bottom: 182 / 3188
  6974. }
  6975. }
  6976. },
  6977. [
  6978. {
  6979. name: "Micro",
  6980. height: math.unit(6, "inches")
  6981. },
  6982. {
  6983. name: "Normal",
  6984. height: math.unit(5 + 11 / 12, "foot"),
  6985. default: true
  6986. },
  6987. {
  6988. name: "Macro",
  6989. height: math.unit(140, "feet")
  6990. },
  6991. {
  6992. name: "Supercharged",
  6993. height: math.unit(2500, "feet")
  6994. },
  6995. ]
  6996. ))
  6997. characterMakers.push(() => makeCharacter(
  6998. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6999. {
  7000. front: {
  7001. height: math.unit(6, "feet"),
  7002. weight: math.unit(350, "lbs"),
  7003. name: "Front",
  7004. image: {
  7005. source: "./media/characters/razinox/front.svg",
  7006. extra: 1686 / 1548,
  7007. bottom: 28.2 / 1868
  7008. }
  7009. },
  7010. back: {
  7011. height: math.unit(6, "feet"),
  7012. weight: math.unit(350, "lbs"),
  7013. name: "Back",
  7014. image: {
  7015. source: "./media/characters/razinox/back.svg",
  7016. extra: 1660 / 1590,
  7017. bottom: 15 / 1665
  7018. }
  7019. },
  7020. },
  7021. [
  7022. {
  7023. name: "Normal",
  7024. height: math.unit(10 + 8 / 12, "foot")
  7025. },
  7026. {
  7027. name: "Minimacro",
  7028. height: math.unit(15, "foot")
  7029. },
  7030. {
  7031. name: "Macro",
  7032. height: math.unit(60, "foot"),
  7033. default: true
  7034. },
  7035. {
  7036. name: "Megamacro",
  7037. height: math.unit(5, "miles")
  7038. },
  7039. {
  7040. name: "Gigamacro",
  7041. height: math.unit(6000, "miles")
  7042. },
  7043. ]
  7044. ))
  7045. characterMakers.push(() => makeCharacter(
  7046. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7047. {
  7048. front: {
  7049. height: math.unit(6, "feet"),
  7050. weight: math.unit(150, "lbs"),
  7051. name: "Front",
  7052. image: {
  7053. source: "./media/characters/cobalt/front.svg"
  7054. }
  7055. }
  7056. },
  7057. [
  7058. {
  7059. name: "Normal",
  7060. height: math.unit(8 + 1 / 12, "foot")
  7061. },
  7062. {
  7063. name: "Macro",
  7064. height: math.unit(111, "foot"),
  7065. default: true
  7066. },
  7067. {
  7068. name: "Supracosmic",
  7069. height: math.unit(1e42, "feet")
  7070. },
  7071. ]
  7072. ))
  7073. characterMakers.push(() => makeCharacter(
  7074. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7075. {
  7076. front: {
  7077. height: math.unit(6, "feet"),
  7078. weight: math.unit(140, "lbs"),
  7079. name: "Front",
  7080. image: {
  7081. source: "./media/characters/amanda/front.svg"
  7082. }
  7083. }
  7084. },
  7085. [
  7086. {
  7087. name: "Micro",
  7088. height: math.unit(5, "inches"),
  7089. default: true
  7090. },
  7091. ]
  7092. ))
  7093. characterMakers.push(() => makeCharacter(
  7094. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7095. {
  7096. front: {
  7097. height: math.unit(2.75, "meters"),
  7098. weight: math.unit(1200, "lb"),
  7099. name: "Front",
  7100. image: {
  7101. source: "./media/characters/teal/front.svg",
  7102. extra: 2463 / 2320,
  7103. bottom: 166 / 2629
  7104. }
  7105. },
  7106. back: {
  7107. height: math.unit(2.75, "meters"),
  7108. weight: math.unit(1200, "lb"),
  7109. name: "Back",
  7110. image: {
  7111. source: "./media/characters/teal/back.svg",
  7112. extra: 2580 / 2489,
  7113. bottom: 151 / 2731
  7114. }
  7115. },
  7116. sitting: {
  7117. height: math.unit(1.9, "meters"),
  7118. weight: math.unit(1200, "lb"),
  7119. name: "Sitting",
  7120. image: {
  7121. source: "./media/characters/teal/sitting.svg",
  7122. extra: 623 / 590,
  7123. bottom: 121 / 744
  7124. }
  7125. },
  7126. standing: {
  7127. height: math.unit(2.75, "meters"),
  7128. weight: math.unit(1200, "lb"),
  7129. name: "Standing",
  7130. image: {
  7131. source: "./media/characters/teal/standing.svg",
  7132. extra: 923 / 893,
  7133. bottom: 60 / 983
  7134. }
  7135. },
  7136. stretching: {
  7137. height: math.unit(3.65, "meters"),
  7138. weight: math.unit(1200, "lb"),
  7139. name: "Stretching",
  7140. image: {
  7141. source: "./media/characters/teal/stretching.svg",
  7142. extra: 1276 / 1244,
  7143. bottom: 0 / 1276
  7144. }
  7145. },
  7146. legged: {
  7147. height: math.unit(1.3, "meters"),
  7148. weight: math.unit(100, "lb"),
  7149. name: "Legged",
  7150. image: {
  7151. source: "./media/characters/teal/legged.svg",
  7152. extra: 462 / 437,
  7153. bottom: 24 / 486
  7154. }
  7155. },
  7156. naga: {
  7157. height: math.unit(5.4, "meters"),
  7158. weight: math.unit(4000, "lb"),
  7159. name: "Naga",
  7160. image: {
  7161. source: "./media/characters/teal/naga.svg",
  7162. extra: 1902 / 1858,
  7163. bottom: 0 / 1902
  7164. }
  7165. },
  7166. hand: {
  7167. height: math.unit(0.52, "meters"),
  7168. name: "Hand",
  7169. image: {
  7170. source: "./media/characters/teal/hand.svg"
  7171. }
  7172. },
  7173. maw: {
  7174. height: math.unit(0.43, "meters"),
  7175. name: "Maw",
  7176. image: {
  7177. source: "./media/characters/teal/maw.svg"
  7178. }
  7179. },
  7180. slit: {
  7181. height: math.unit(0.25, "meters"),
  7182. name: "Slit",
  7183. image: {
  7184. source: "./media/characters/teal/slit.svg"
  7185. }
  7186. },
  7187. },
  7188. [
  7189. {
  7190. name: "Normal",
  7191. height: math.unit(2.75, "meters"),
  7192. default: true
  7193. },
  7194. {
  7195. name: "Macro",
  7196. height: math.unit(300, "feet")
  7197. },
  7198. {
  7199. name: "Macro+",
  7200. height: math.unit(2000, "feet")
  7201. },
  7202. ]
  7203. ))
  7204. characterMakers.push(() => makeCharacter(
  7205. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7206. {
  7207. frontCat: {
  7208. height: math.unit(6, "feet"),
  7209. weight: math.unit(180, "lbs"),
  7210. name: "Front (Cat)",
  7211. image: {
  7212. source: "./media/characters/ravin-amulet/front-cat.svg"
  7213. }
  7214. },
  7215. frontCatAlt: {
  7216. height: math.unit(6, "feet"),
  7217. weight: math.unit(180, "lbs"),
  7218. name: "Front (Alt, Cat)",
  7219. image: {
  7220. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7221. }
  7222. },
  7223. frontWerewolf: {
  7224. height: math.unit(6 * 1.2, "feet"),
  7225. weight: math.unit(225, "lbs"),
  7226. name: "Front (Werewolf)",
  7227. image: {
  7228. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7229. }
  7230. },
  7231. backWerewolf: {
  7232. height: math.unit(6 * 1.2, "feet"),
  7233. weight: math.unit(225, "lbs"),
  7234. name: "Back (Werewolf)",
  7235. image: {
  7236. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7237. }
  7238. },
  7239. },
  7240. [
  7241. {
  7242. name: "Nano",
  7243. height: math.unit(1, "micrometer")
  7244. },
  7245. {
  7246. name: "Micro",
  7247. height: math.unit(1, "inch")
  7248. },
  7249. {
  7250. name: "Normal",
  7251. height: math.unit(6, "feet"),
  7252. default: true
  7253. },
  7254. {
  7255. name: "Macro",
  7256. height: math.unit(60, "feet")
  7257. }
  7258. ]
  7259. ))
  7260. characterMakers.push(() => makeCharacter(
  7261. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7262. {
  7263. front: {
  7264. height: math.unit(6, "feet"),
  7265. weight: math.unit(165, "lbs"),
  7266. name: "Front",
  7267. image: {
  7268. source: "./media/characters/fluoresce/front.svg"
  7269. }
  7270. }
  7271. },
  7272. [
  7273. {
  7274. name: "Micro",
  7275. height: math.unit(6, "cm")
  7276. },
  7277. {
  7278. name: "Normal",
  7279. height: math.unit(5 + 7 / 12, "feet"),
  7280. default: true
  7281. },
  7282. {
  7283. name: "Macro",
  7284. height: math.unit(56, "feet")
  7285. },
  7286. {
  7287. name: "Megamacro",
  7288. height: math.unit(1.9, "miles")
  7289. },
  7290. ]
  7291. ))
  7292. characterMakers.push(() => makeCharacter(
  7293. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7294. {
  7295. front: {
  7296. height: math.unit(9 + 6 / 12, "feet"),
  7297. weight: math.unit(523, "lbs"),
  7298. name: "Side",
  7299. image: {
  7300. source: "./media/characters/aurora/side.svg"
  7301. }
  7302. }
  7303. },
  7304. [
  7305. {
  7306. name: "Normal",
  7307. height: math.unit(9 + 6 / 12, "feet")
  7308. },
  7309. {
  7310. name: "Macro",
  7311. height: math.unit(96, "feet"),
  7312. default: true
  7313. },
  7314. {
  7315. name: "Macro+",
  7316. height: math.unit(243, "feet")
  7317. },
  7318. ]
  7319. ))
  7320. characterMakers.push(() => makeCharacter(
  7321. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7322. {
  7323. front: {
  7324. height: math.unit(194, "cm"),
  7325. weight: math.unit(90, "kg"),
  7326. name: "Front",
  7327. image: {
  7328. source: "./media/characters/ranek/front.svg"
  7329. }
  7330. },
  7331. side: {
  7332. height: math.unit(194, "cm"),
  7333. weight: math.unit(90, "kg"),
  7334. name: "Side",
  7335. image: {
  7336. source: "./media/characters/ranek/side.svg"
  7337. }
  7338. },
  7339. back: {
  7340. height: math.unit(194, "cm"),
  7341. weight: math.unit(90, "kg"),
  7342. name: "Back",
  7343. image: {
  7344. source: "./media/characters/ranek/back.svg"
  7345. }
  7346. },
  7347. feral: {
  7348. height: math.unit(30, "cm"),
  7349. weight: math.unit(1.6, "lbs"),
  7350. name: "Feral",
  7351. image: {
  7352. source: "./media/characters/ranek/feral.svg"
  7353. }
  7354. },
  7355. },
  7356. [
  7357. {
  7358. name: "Normal",
  7359. height: math.unit(194, "cm"),
  7360. default: true
  7361. },
  7362. {
  7363. name: "Macro",
  7364. height: math.unit(100, "meters")
  7365. },
  7366. ]
  7367. ))
  7368. characterMakers.push(() => makeCharacter(
  7369. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7370. {
  7371. front: {
  7372. height: math.unit(5 + 6 / 12, "feet"),
  7373. weight: math.unit(153, "lbs"),
  7374. name: "Front",
  7375. image: {
  7376. source: "./media/characters/andrew-cooper/front.svg"
  7377. }
  7378. },
  7379. },
  7380. [
  7381. {
  7382. name: "Nano",
  7383. height: math.unit(1, "mm")
  7384. },
  7385. {
  7386. name: "Micro",
  7387. height: math.unit(2, "inches")
  7388. },
  7389. {
  7390. name: "Normal",
  7391. height: math.unit(5 + 6 / 12, "feet"),
  7392. default: true
  7393. }
  7394. ]
  7395. ))
  7396. characterMakers.push(() => makeCharacter(
  7397. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7398. {
  7399. front: {
  7400. height: math.unit(6, "feet"),
  7401. weight: math.unit(180, "lbs"),
  7402. name: "Front",
  7403. image: {
  7404. source: "./media/characters/akane-sato/front.svg",
  7405. extra: 1219 / 1140
  7406. }
  7407. },
  7408. back: {
  7409. height: math.unit(6, "feet"),
  7410. weight: math.unit(180, "lbs"),
  7411. name: "Back",
  7412. image: {
  7413. source: "./media/characters/akane-sato/back.svg",
  7414. extra: 1219 / 1170
  7415. }
  7416. },
  7417. },
  7418. [
  7419. {
  7420. name: "Normal",
  7421. height: math.unit(2.5, "meters")
  7422. },
  7423. {
  7424. name: "Macro",
  7425. height: math.unit(250, "meters"),
  7426. default: true
  7427. },
  7428. {
  7429. name: "Megamacro",
  7430. height: math.unit(25, "km")
  7431. },
  7432. ]
  7433. ))
  7434. characterMakers.push(() => makeCharacter(
  7435. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7436. {
  7437. front: {
  7438. height: math.unit(6, "feet"),
  7439. weight: math.unit(65, "kg"),
  7440. name: "Front",
  7441. image: {
  7442. source: "./media/characters/rook/front.svg",
  7443. extra: 960 / 950
  7444. }
  7445. }
  7446. },
  7447. [
  7448. {
  7449. name: "Normal",
  7450. height: math.unit(8.8, "feet")
  7451. },
  7452. {
  7453. name: "Macro",
  7454. height: math.unit(88, "feet"),
  7455. default: true
  7456. },
  7457. {
  7458. name: "Megamacro",
  7459. height: math.unit(8, "miles")
  7460. },
  7461. ]
  7462. ))
  7463. characterMakers.push(() => makeCharacter(
  7464. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7465. {
  7466. front: {
  7467. height: math.unit(12 + 2 / 12, "feet"),
  7468. weight: math.unit(808, "lbs"),
  7469. name: "Front",
  7470. image: {
  7471. source: "./media/characters/prodigy/front.svg"
  7472. }
  7473. }
  7474. },
  7475. [
  7476. {
  7477. name: "Normal",
  7478. height: math.unit(12 + 2 / 12, "feet"),
  7479. default: true
  7480. },
  7481. {
  7482. name: "Macro",
  7483. height: math.unit(143, "feet")
  7484. },
  7485. {
  7486. name: "Macro+",
  7487. height: math.unit(400, "feet")
  7488. },
  7489. ]
  7490. ))
  7491. characterMakers.push(() => makeCharacter(
  7492. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7493. {
  7494. front: {
  7495. height: math.unit(6, "feet"),
  7496. weight: math.unit(225, "lbs"),
  7497. name: "Front",
  7498. image: {
  7499. source: "./media/characters/daniel/front.svg"
  7500. }
  7501. },
  7502. leaning: {
  7503. height: math.unit(6, "feet"),
  7504. weight: math.unit(225, "lbs"),
  7505. name: "Leaning",
  7506. image: {
  7507. source: "./media/characters/daniel/leaning.svg"
  7508. }
  7509. },
  7510. },
  7511. [
  7512. {
  7513. name: "Macro",
  7514. height: math.unit(1000, "feet"),
  7515. default: true
  7516. },
  7517. ]
  7518. ))
  7519. characterMakers.push(() => makeCharacter(
  7520. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7521. {
  7522. front: {
  7523. height: math.unit(6, "feet"),
  7524. weight: math.unit(88, "lbs"),
  7525. name: "Front",
  7526. image: {
  7527. source: "./media/characters/chiros/front.svg",
  7528. extra: 306 / 226
  7529. }
  7530. },
  7531. side: {
  7532. height: math.unit(6, "feet"),
  7533. weight: math.unit(88, "lbs"),
  7534. name: "Side",
  7535. image: {
  7536. source: "./media/characters/chiros/side.svg",
  7537. extra: 306 / 226
  7538. }
  7539. },
  7540. },
  7541. [
  7542. {
  7543. name: "Normal",
  7544. height: math.unit(6, "cm"),
  7545. default: true
  7546. },
  7547. ]
  7548. ))
  7549. characterMakers.push(() => makeCharacter(
  7550. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7551. {
  7552. front: {
  7553. height: math.unit(6, "feet"),
  7554. weight: math.unit(100, "lbs"),
  7555. name: "Front",
  7556. image: {
  7557. source: "./media/characters/selka/front.svg",
  7558. extra: 947 / 887
  7559. }
  7560. }
  7561. },
  7562. [
  7563. {
  7564. name: "Normal",
  7565. height: math.unit(5, "cm"),
  7566. default: true
  7567. },
  7568. ]
  7569. ))
  7570. characterMakers.push(() => makeCharacter(
  7571. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7572. {
  7573. front: {
  7574. height: math.unit(8 + 3 / 12, "feet"),
  7575. weight: math.unit(424, "lbs"),
  7576. name: "Front",
  7577. image: {
  7578. source: "./media/characters/verin/front.svg",
  7579. extra: 1845 / 1550
  7580. }
  7581. },
  7582. frontArmored: {
  7583. height: math.unit(8 + 3 / 12, "feet"),
  7584. weight: math.unit(424, "lbs"),
  7585. name: "Front (Armored)",
  7586. image: {
  7587. source: "./media/characters/verin/front-armor.svg",
  7588. extra: 1845 / 1550,
  7589. bottom: 0.01
  7590. }
  7591. },
  7592. back: {
  7593. height: math.unit(8 + 3 / 12, "feet"),
  7594. weight: math.unit(424, "lbs"),
  7595. name: "Back",
  7596. image: {
  7597. source: "./media/characters/verin/back.svg",
  7598. bottom: 0.1,
  7599. extra: 1
  7600. }
  7601. },
  7602. foot: {
  7603. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7604. name: "Foot",
  7605. image: {
  7606. source: "./media/characters/verin/foot.svg"
  7607. }
  7608. },
  7609. },
  7610. [
  7611. {
  7612. name: "Normal",
  7613. height: math.unit(8 + 3 / 12, "feet")
  7614. },
  7615. {
  7616. name: "Minimacro",
  7617. height: math.unit(21, "feet"),
  7618. default: true
  7619. },
  7620. {
  7621. name: "Macro",
  7622. height: math.unit(626, "feet")
  7623. },
  7624. ]
  7625. ))
  7626. characterMakers.push(() => makeCharacter(
  7627. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7628. {
  7629. front: {
  7630. height: math.unit(2.718, "meters"),
  7631. weight: math.unit(150, "lbs"),
  7632. name: "Front",
  7633. image: {
  7634. source: "./media/characters/sovrim-terraquian/front.svg"
  7635. }
  7636. },
  7637. back: {
  7638. height: math.unit(2.718, "meters"),
  7639. weight: math.unit(150, "lbs"),
  7640. name: "Back",
  7641. image: {
  7642. source: "./media/characters/sovrim-terraquian/back.svg"
  7643. }
  7644. }
  7645. },
  7646. [
  7647. {
  7648. name: "Micro",
  7649. height: math.unit(2, "inches")
  7650. },
  7651. {
  7652. name: "Small",
  7653. height: math.unit(1, "meter")
  7654. },
  7655. {
  7656. name: "Normal",
  7657. height: math.unit(Math.E, "meters"),
  7658. default: true
  7659. },
  7660. {
  7661. name: "Macro",
  7662. height: math.unit(20, "meters")
  7663. },
  7664. {
  7665. name: "Macro+",
  7666. height: math.unit(400, "meters")
  7667. },
  7668. ]
  7669. ))
  7670. characterMakers.push(() => makeCharacter(
  7671. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7672. {
  7673. front: {
  7674. height: math.unit(7, "feet"),
  7675. weight: math.unit(489, "lbs"),
  7676. name: "Front",
  7677. image: {
  7678. source: "./media/characters/reece-silvermane/front.svg",
  7679. bottom: 0.02,
  7680. extra: 1
  7681. }
  7682. },
  7683. },
  7684. [
  7685. {
  7686. name: "Macro",
  7687. height: math.unit(1.5, "miles"),
  7688. default: true
  7689. },
  7690. ]
  7691. ))
  7692. characterMakers.push(() => makeCharacter(
  7693. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7694. {
  7695. front: {
  7696. height: math.unit(6, "feet"),
  7697. weight: math.unit(78, "kg"),
  7698. name: "Front",
  7699. image: {
  7700. source: "./media/characters/kane/front.svg",
  7701. extra: 978 / 899
  7702. }
  7703. },
  7704. },
  7705. [
  7706. {
  7707. name: "Normal",
  7708. height: math.unit(2.1, "m"),
  7709. },
  7710. {
  7711. name: "Macro",
  7712. height: math.unit(1, "km"),
  7713. default: true
  7714. },
  7715. ]
  7716. ))
  7717. characterMakers.push(() => makeCharacter(
  7718. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7719. {
  7720. front: {
  7721. height: math.unit(6, "feet"),
  7722. weight: math.unit(200, "kg"),
  7723. name: "Front",
  7724. image: {
  7725. source: "./media/characters/tegon/front.svg",
  7726. bottom: 0.01,
  7727. extra: 1
  7728. }
  7729. },
  7730. },
  7731. [
  7732. {
  7733. name: "Micro",
  7734. height: math.unit(1, "inch")
  7735. },
  7736. {
  7737. name: "Normal",
  7738. height: math.unit(6 + 3 / 12, "feet"),
  7739. default: true
  7740. },
  7741. {
  7742. name: "Macro",
  7743. height: math.unit(300, "feet")
  7744. },
  7745. {
  7746. name: "Megamacro",
  7747. height: math.unit(69, "miles")
  7748. },
  7749. ]
  7750. ))
  7751. characterMakers.push(() => makeCharacter(
  7752. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7753. {
  7754. side: {
  7755. height: math.unit(6, "feet"),
  7756. weight: math.unit(2304, "lbs"),
  7757. name: "Side",
  7758. image: {
  7759. source: "./media/characters/arcturax/side.svg",
  7760. extra: 790 / 376,
  7761. bottom: 0.01
  7762. }
  7763. },
  7764. },
  7765. [
  7766. {
  7767. name: "Micro",
  7768. height: math.unit(2, "inch")
  7769. },
  7770. {
  7771. name: "Normal",
  7772. height: math.unit(6, "feet")
  7773. },
  7774. {
  7775. name: "Macro",
  7776. height: math.unit(39, "feet"),
  7777. default: true
  7778. },
  7779. {
  7780. name: "Megamacro",
  7781. height: math.unit(7, "miles")
  7782. },
  7783. ]
  7784. ))
  7785. characterMakers.push(() => makeCharacter(
  7786. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7787. {
  7788. front: {
  7789. height: math.unit(6, "feet"),
  7790. weight: math.unit(50, "lbs"),
  7791. name: "Front",
  7792. image: {
  7793. source: "./media/characters/sentri/front.svg",
  7794. extra: 1750 / 1570,
  7795. bottom: 0.025
  7796. }
  7797. },
  7798. frontAlt: {
  7799. height: math.unit(6, "feet"),
  7800. weight: math.unit(50, "lbs"),
  7801. name: "Front (Alt)",
  7802. image: {
  7803. source: "./media/characters/sentri/front-alt.svg",
  7804. extra: 1750 / 1570,
  7805. bottom: 0.025
  7806. }
  7807. },
  7808. },
  7809. [
  7810. {
  7811. name: "Normal",
  7812. height: math.unit(15, "feet"),
  7813. default: true
  7814. },
  7815. {
  7816. name: "Macro",
  7817. height: math.unit(2500, "feet")
  7818. }
  7819. ]
  7820. ))
  7821. characterMakers.push(() => makeCharacter(
  7822. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7823. {
  7824. front: {
  7825. height: math.unit(5 + 8 / 12, "feet"),
  7826. weight: math.unit(130, "lbs"),
  7827. name: "Front",
  7828. image: {
  7829. source: "./media/characters/corvin/front.svg",
  7830. extra: 1803 / 1629
  7831. }
  7832. },
  7833. frontShirt: {
  7834. height: math.unit(5 + 8 / 12, "feet"),
  7835. weight: math.unit(130, "lbs"),
  7836. name: "Front (Shirt)",
  7837. image: {
  7838. source: "./media/characters/corvin/front-shirt.svg",
  7839. extra: 1803 / 1629
  7840. }
  7841. },
  7842. frontPoncho: {
  7843. height: math.unit(5 + 8 / 12, "feet"),
  7844. weight: math.unit(130, "lbs"),
  7845. name: "Front (Poncho)",
  7846. image: {
  7847. source: "./media/characters/corvin/front-poncho.svg",
  7848. extra: 1803 / 1629
  7849. }
  7850. },
  7851. side: {
  7852. height: math.unit(5 + 8 / 12, "feet"),
  7853. weight: math.unit(130, "lbs"),
  7854. name: "Side",
  7855. image: {
  7856. source: "./media/characters/corvin/side.svg",
  7857. extra: 1012 / 945
  7858. }
  7859. },
  7860. back: {
  7861. height: math.unit(5 + 8 / 12, "feet"),
  7862. weight: math.unit(130, "lbs"),
  7863. name: "Back",
  7864. image: {
  7865. source: "./media/characters/corvin/back.svg",
  7866. extra: 1803 / 1629
  7867. }
  7868. },
  7869. },
  7870. [
  7871. {
  7872. name: "Micro",
  7873. height: math.unit(3, "inches")
  7874. },
  7875. {
  7876. name: "Normal",
  7877. height: math.unit(5 + 8 / 12, "feet")
  7878. },
  7879. {
  7880. name: "Macro",
  7881. height: math.unit(300, "feet"),
  7882. default: true
  7883. },
  7884. {
  7885. name: "Megamacro",
  7886. height: math.unit(500, "miles")
  7887. }
  7888. ]
  7889. ))
  7890. characterMakers.push(() => makeCharacter(
  7891. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7892. {
  7893. front: {
  7894. height: math.unit(6, "feet"),
  7895. weight: math.unit(135, "lbs"),
  7896. name: "Front",
  7897. image: {
  7898. source: "./media/characters/q/front.svg",
  7899. extra: 854 / 752,
  7900. bottom: 0.005
  7901. }
  7902. },
  7903. back: {
  7904. height: math.unit(6, "feet"),
  7905. weight: math.unit(130, "lbs"),
  7906. name: "Back",
  7907. image: {
  7908. source: "./media/characters/q/back.svg",
  7909. extra: 854 / 752
  7910. }
  7911. },
  7912. },
  7913. [
  7914. {
  7915. name: "Macro",
  7916. height: math.unit(90, "feet"),
  7917. default: true
  7918. },
  7919. {
  7920. name: "Extra Macro",
  7921. height: math.unit(300, "feet"),
  7922. },
  7923. {
  7924. name: "BIG WALF",
  7925. height: math.unit(750, "feet"),
  7926. },
  7927. ]
  7928. ))
  7929. characterMakers.push(() => makeCharacter(
  7930. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7931. {
  7932. front: {
  7933. height: math.unit(6, "feet"),
  7934. weight: math.unit(150, "lbs"),
  7935. name: "Front",
  7936. image: {
  7937. source: "./media/characters/carley/front.svg",
  7938. extra: 3927 / 3540,
  7939. bottom: 29.2 / 735
  7940. }
  7941. }
  7942. },
  7943. [
  7944. {
  7945. name: "Normal",
  7946. height: math.unit(6 + 3 / 12, "feet")
  7947. },
  7948. {
  7949. name: "Macro",
  7950. height: math.unit(185, "feet"),
  7951. default: true
  7952. },
  7953. {
  7954. name: "Megamacro",
  7955. height: math.unit(8, "miles"),
  7956. },
  7957. ]
  7958. ))
  7959. characterMakers.push(() => makeCharacter(
  7960. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7961. {
  7962. front: {
  7963. height: math.unit(3, "feet"),
  7964. weight: math.unit(28, "lbs"),
  7965. name: "Front",
  7966. image: {
  7967. source: "./media/characters/citrine/front.svg"
  7968. }
  7969. }
  7970. },
  7971. [
  7972. {
  7973. name: "Normal",
  7974. height: math.unit(3, "feet"),
  7975. default: true
  7976. }
  7977. ]
  7978. ))
  7979. characterMakers.push(() => makeCharacter(
  7980. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7981. {
  7982. front: {
  7983. height: math.unit(14, "feet"),
  7984. weight: math.unit(1450, "kg"),
  7985. capacity: math.unit(15, "people"),
  7986. name: "Front",
  7987. image: {
  7988. source: "./media/characters/aura-starwind/front.svg",
  7989. extra: 1455 / 1335
  7990. }
  7991. },
  7992. side: {
  7993. height: math.unit(14, "feet"),
  7994. weight: math.unit(1450, "kg"),
  7995. capacity: math.unit(15, "people"),
  7996. name: "Side",
  7997. image: {
  7998. source: "./media/characters/aura-starwind/side.svg",
  7999. extra: 1654 / 1497
  8000. }
  8001. },
  8002. taur: {
  8003. height: math.unit(18, "feet"),
  8004. weight: math.unit(5500, "kg"),
  8005. capacity: math.unit(50, "people"),
  8006. name: "Taur",
  8007. image: {
  8008. source: "./media/characters/aura-starwind/taur.svg",
  8009. extra: 1760 / 1650
  8010. }
  8011. },
  8012. feral: {
  8013. height: math.unit(46, "feet"),
  8014. weight: math.unit(25000, "kg"),
  8015. capacity: math.unit(120, "people"),
  8016. name: "Feral",
  8017. image: {
  8018. source: "./media/characters/aura-starwind/feral.svg"
  8019. }
  8020. },
  8021. },
  8022. [
  8023. {
  8024. name: "Normal",
  8025. height: math.unit(14, "feet"),
  8026. default: true
  8027. },
  8028. {
  8029. name: "Macro",
  8030. height: math.unit(50, "meters")
  8031. },
  8032. {
  8033. name: "Megamacro",
  8034. height: math.unit(5000, "meters")
  8035. },
  8036. {
  8037. name: "Gigamacro",
  8038. height: math.unit(100000, "kilometers")
  8039. },
  8040. ]
  8041. ))
  8042. characterMakers.push(() => makeCharacter(
  8043. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8044. {
  8045. front: {
  8046. height: math.unit(2 + 7 / 12, "feet"),
  8047. weight: math.unit(32, "lbs"),
  8048. name: "Front",
  8049. image: {
  8050. source: "./media/characters/rivet/front.svg",
  8051. extra: 1716 / 1658,
  8052. bottom: 0.03
  8053. }
  8054. },
  8055. foot: {
  8056. height: math.unit(0.551, "feet"),
  8057. name: "Rivet's Foot",
  8058. image: {
  8059. source: "./media/characters/rivet/foot.svg"
  8060. },
  8061. rename: true
  8062. }
  8063. },
  8064. [
  8065. {
  8066. name: "Micro",
  8067. height: math.unit(1.5, "inches"),
  8068. },
  8069. {
  8070. name: "Normal",
  8071. height: math.unit(2 + 7 / 12, "feet"),
  8072. default: true
  8073. },
  8074. {
  8075. name: "Macro",
  8076. height: math.unit(85, "feet")
  8077. },
  8078. {
  8079. name: "Megamacro",
  8080. height: math.unit(2.2, "km")
  8081. }
  8082. ]
  8083. ))
  8084. characterMakers.push(() => makeCharacter(
  8085. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8086. {
  8087. front: {
  8088. height: math.unit(5 + 9 / 12, "feet"),
  8089. weight: math.unit(150, "lbs"),
  8090. name: "Front",
  8091. image: {
  8092. source: "./media/characters/coffee/front.svg",
  8093. extra: 3666 / 3032,
  8094. bottom: 0.04
  8095. }
  8096. },
  8097. foot: {
  8098. height: math.unit(1.29, "feet"),
  8099. name: "Foot",
  8100. image: {
  8101. source: "./media/characters/coffee/foot.svg"
  8102. }
  8103. },
  8104. },
  8105. [
  8106. {
  8107. name: "Micro",
  8108. height: math.unit(2, "inches"),
  8109. },
  8110. {
  8111. name: "Normal",
  8112. height: math.unit(5 + 9 / 12, "feet"),
  8113. default: true
  8114. },
  8115. {
  8116. name: "Macro",
  8117. height: math.unit(800, "feet")
  8118. },
  8119. {
  8120. name: "Megamacro",
  8121. height: math.unit(25, "miles")
  8122. }
  8123. ]
  8124. ))
  8125. characterMakers.push(() => makeCharacter(
  8126. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8127. {
  8128. front: {
  8129. height: math.unit(6, "feet"),
  8130. weight: math.unit(200, "lbs"),
  8131. name: "Front",
  8132. image: {
  8133. source: "./media/characters/chari-gal/front.svg",
  8134. extra: 1568 / 1385,
  8135. bottom: 0.047
  8136. }
  8137. },
  8138. gigantamax: {
  8139. height: math.unit(6 * 16, "feet"),
  8140. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8141. name: "Gigantamax",
  8142. image: {
  8143. source: "./media/characters/chari-gal/gigantamax.svg",
  8144. extra: 1124 / 888,
  8145. bottom: 0.03
  8146. }
  8147. },
  8148. },
  8149. [
  8150. {
  8151. name: "Normal",
  8152. height: math.unit(5 + 7 / 12, "feet")
  8153. },
  8154. {
  8155. name: "Macro",
  8156. height: math.unit(200, "feet"),
  8157. default: true
  8158. }
  8159. ]
  8160. ))
  8161. characterMakers.push(() => makeCharacter(
  8162. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8163. {
  8164. front: {
  8165. height: math.unit(6, "feet"),
  8166. weight: math.unit(150, "lbs"),
  8167. name: "Front",
  8168. image: {
  8169. source: "./media/characters/nova/front.svg",
  8170. extra: 5000 / 4722,
  8171. bottom: 0.02
  8172. }
  8173. }
  8174. },
  8175. [
  8176. {
  8177. name: "Micro-",
  8178. height: math.unit(0.8, "inches")
  8179. },
  8180. {
  8181. name: "Micro",
  8182. height: math.unit(2, "inches"),
  8183. default: true
  8184. },
  8185. ]
  8186. ))
  8187. characterMakers.push(() => makeCharacter(
  8188. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8189. {
  8190. front: {
  8191. height: math.unit(3 + 1 / 12, "feet"),
  8192. weight: math.unit(21.7, "lbs"),
  8193. name: "Front",
  8194. image: {
  8195. source: "./media/characters/argent/front.svg",
  8196. extra: 1471 / 1331,
  8197. bottom: 100.8 / 1575.5
  8198. }
  8199. }
  8200. },
  8201. [
  8202. {
  8203. name: "Micro",
  8204. height: math.unit(2, "inches")
  8205. },
  8206. {
  8207. name: "Normal",
  8208. height: math.unit(3 + 1 / 12, "feet"),
  8209. default: true
  8210. },
  8211. {
  8212. name: "Macro",
  8213. height: math.unit(120, "feet")
  8214. },
  8215. ]
  8216. ))
  8217. characterMakers.push(() => makeCharacter(
  8218. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8219. {
  8220. lamp: {
  8221. height: math.unit(7 * 1559 / 989, "feet"),
  8222. name: "Magic Lamp",
  8223. image: {
  8224. source: "./media/characters/mira-al-cul/lamp.svg",
  8225. extra: 1617 / 1559
  8226. }
  8227. },
  8228. front: {
  8229. height: math.unit(7, "feet"),
  8230. name: "Front",
  8231. image: {
  8232. source: "./media/characters/mira-al-cul/front.svg",
  8233. extra: 1044 / 990
  8234. }
  8235. },
  8236. },
  8237. [
  8238. {
  8239. name: "Heavily Restricted",
  8240. height: math.unit(7 * 1559 / 989, "feet")
  8241. },
  8242. {
  8243. name: "Freshly Freed",
  8244. height: math.unit(50 * 1559 / 989, "feet")
  8245. },
  8246. {
  8247. name: "World Encompassing",
  8248. height: math.unit(10000 * 1559 / 989, "miles")
  8249. },
  8250. {
  8251. name: "Galactic",
  8252. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8253. },
  8254. {
  8255. name: "Palmed Universe",
  8256. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8257. default: true
  8258. },
  8259. {
  8260. name: "Multiversal Matriarch",
  8261. height: math.unit(8.87e10, "yottameters")
  8262. },
  8263. {
  8264. name: "Void Mother",
  8265. height: math.unit(3.14e110, "yottaparsecs")
  8266. },
  8267. {
  8268. name: "Toying with Transcendence",
  8269. height: math.unit(1e307, "meters")
  8270. },
  8271. ]
  8272. ))
  8273. characterMakers.push(() => makeCharacter(
  8274. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8275. {
  8276. front: {
  8277. height: math.unit(17 + 1 / 12, "feet"),
  8278. weight: math.unit(476.2 * 5, "lbs"),
  8279. name: "Front",
  8280. image: {
  8281. source: "./media/characters/kuro-shi-uchū/front.svg",
  8282. extra: 2329 / 1835,
  8283. bottom: 0.02
  8284. }
  8285. },
  8286. },
  8287. [
  8288. {
  8289. name: "Micro",
  8290. height: math.unit(2, "inches")
  8291. },
  8292. {
  8293. name: "Normal",
  8294. height: math.unit(12, "meters")
  8295. },
  8296. {
  8297. name: "Planetary",
  8298. height: math.unit(0.00929, "AU"),
  8299. default: true
  8300. },
  8301. {
  8302. name: "Universal",
  8303. height: math.unit(20, "gigaparsecs")
  8304. },
  8305. ]
  8306. ))
  8307. characterMakers.push(() => makeCharacter(
  8308. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8309. {
  8310. front: {
  8311. height: math.unit(5 + 2 / 12, "feet"),
  8312. weight: math.unit(120, "lbs"),
  8313. name: "Front",
  8314. image: {
  8315. source: "./media/characters/katherine/front.svg",
  8316. extra: 2075 / 1969
  8317. }
  8318. },
  8319. dress: {
  8320. height: math.unit(5 + 2 / 12, "feet"),
  8321. weight: math.unit(120, "lbs"),
  8322. name: "Dress",
  8323. image: {
  8324. source: "./media/characters/katherine/dress.svg",
  8325. extra: 2258 / 2064
  8326. }
  8327. },
  8328. },
  8329. [
  8330. {
  8331. name: "Micro",
  8332. height: math.unit(1, "inches"),
  8333. default: true
  8334. },
  8335. {
  8336. name: "Normal",
  8337. height: math.unit(5 + 2 / 12, "feet")
  8338. },
  8339. {
  8340. name: "Macro",
  8341. height: math.unit(100, "meters")
  8342. },
  8343. {
  8344. name: "Megamacro",
  8345. height: math.unit(80, "miles")
  8346. },
  8347. ]
  8348. ))
  8349. characterMakers.push(() => makeCharacter(
  8350. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8351. {
  8352. front: {
  8353. height: math.unit(7 + 8 / 12, "feet"),
  8354. weight: math.unit(250, "lbs"),
  8355. name: "Front",
  8356. image: {
  8357. source: "./media/characters/yevis/front.svg",
  8358. extra: 1938 / 1755
  8359. }
  8360. }
  8361. },
  8362. [
  8363. {
  8364. name: "Mortal",
  8365. height: math.unit(7 + 8 / 12, "feet")
  8366. },
  8367. {
  8368. name: "Battle",
  8369. height: math.unit(25 + 11 / 12, "feet")
  8370. },
  8371. {
  8372. name: "Wrath",
  8373. height: math.unit(1654 + 11 / 12, "feet")
  8374. },
  8375. {
  8376. name: "Planet Destroyer",
  8377. height: math.unit(12000, "miles")
  8378. },
  8379. {
  8380. name: "Galaxy Conqueror",
  8381. height: math.unit(1.45, "zettameters"),
  8382. default: true
  8383. },
  8384. {
  8385. name: "Universal War",
  8386. height: math.unit(184, "gigaparsecs")
  8387. },
  8388. {
  8389. name: "Eternity War",
  8390. height: math.unit(1.98e55, "yottaparsecs")
  8391. },
  8392. ]
  8393. ))
  8394. characterMakers.push(() => makeCharacter(
  8395. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8396. {
  8397. front: {
  8398. height: math.unit(5 + 8 / 12, "feet"),
  8399. weight: math.unit(63, "kg"),
  8400. name: "Front",
  8401. image: {
  8402. source: "./media/characters/xavier/front.svg",
  8403. extra: 944 / 883
  8404. }
  8405. },
  8406. frontStretch: {
  8407. height: math.unit(5 + 8 / 12, "feet"),
  8408. weight: math.unit(63, "kg"),
  8409. name: "Stretching",
  8410. image: {
  8411. source: "./media/characters/xavier/front-stretch.svg",
  8412. extra: 962 / 820
  8413. }
  8414. },
  8415. },
  8416. [
  8417. {
  8418. name: "Normal",
  8419. height: math.unit(5 + 8 / 12, "feet")
  8420. },
  8421. {
  8422. name: "Macro",
  8423. height: math.unit(100, "meters"),
  8424. default: true
  8425. },
  8426. {
  8427. name: "McLargeHuge",
  8428. height: math.unit(10, "miles")
  8429. },
  8430. ]
  8431. ))
  8432. characterMakers.push(() => makeCharacter(
  8433. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8434. {
  8435. front: {
  8436. height: math.unit(5 + 5 / 12, "feet"),
  8437. weight: math.unit(150, "lb"),
  8438. name: "Front",
  8439. image: {
  8440. source: "./media/characters/joshii/front.svg",
  8441. extra: 765 / 653,
  8442. bottom: 51 / 816
  8443. }
  8444. },
  8445. foot: {
  8446. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8447. name: "Foot",
  8448. image: {
  8449. source: "./media/characters/joshii/foot.svg"
  8450. }
  8451. },
  8452. },
  8453. [
  8454. {
  8455. name: "Micro",
  8456. height: math.unit(2, "inches"),
  8457. default: true
  8458. },
  8459. {
  8460. name: "Normal",
  8461. height: math.unit(5 + 5 / 12, "feet")
  8462. },
  8463. {
  8464. name: "Macro",
  8465. height: math.unit(785, "feet")
  8466. },
  8467. {
  8468. name: "Megamacro",
  8469. height: math.unit(24.5, "miles")
  8470. },
  8471. ]
  8472. ))
  8473. characterMakers.push(() => makeCharacter(
  8474. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8475. {
  8476. front: {
  8477. height: math.unit(6, "feet"),
  8478. weight: math.unit(150, "lb"),
  8479. name: "Front",
  8480. image: {
  8481. source: "./media/characters/goddess-elizabeth/front.svg",
  8482. extra: 1800 / 1525,
  8483. bottom: 0.005
  8484. }
  8485. },
  8486. foot: {
  8487. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8488. name: "Foot",
  8489. image: {
  8490. source: "./media/characters/goddess-elizabeth/foot.svg"
  8491. }
  8492. },
  8493. mouth: {
  8494. height: math.unit(6, "feet"),
  8495. name: "Mouth",
  8496. image: {
  8497. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8498. }
  8499. },
  8500. },
  8501. [
  8502. {
  8503. name: "Micro",
  8504. height: math.unit(12, "feet")
  8505. },
  8506. {
  8507. name: "Normal",
  8508. height: math.unit(80, "miles"),
  8509. default: true
  8510. },
  8511. {
  8512. name: "Macro",
  8513. height: math.unit(15000, "parsecs")
  8514. },
  8515. ]
  8516. ))
  8517. characterMakers.push(() => makeCharacter(
  8518. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8519. {
  8520. front: {
  8521. height: math.unit(5 + 9 / 12, "feet"),
  8522. weight: math.unit(144, "lb"),
  8523. name: "Front",
  8524. image: {
  8525. source: "./media/characters/kara/front.svg"
  8526. }
  8527. },
  8528. feet: {
  8529. height: math.unit(6 / 6.765, "feet"),
  8530. name: "Kara's Feet",
  8531. rename: true,
  8532. image: {
  8533. source: "./media/characters/kara/feet.svg"
  8534. }
  8535. },
  8536. },
  8537. [
  8538. {
  8539. name: "Normal",
  8540. height: math.unit(5 + 9 / 12, "feet")
  8541. },
  8542. {
  8543. name: "Macro",
  8544. height: math.unit(174, "feet"),
  8545. default: true
  8546. },
  8547. ]
  8548. ))
  8549. characterMakers.push(() => makeCharacter(
  8550. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8551. {
  8552. front: {
  8553. height: math.unit(18, "feet"),
  8554. weight: math.unit(4050, "lb"),
  8555. name: "Front",
  8556. image: {
  8557. source: "./media/characters/tyrone/front.svg",
  8558. extra: 2405 / 2270,
  8559. bottom: 182 / 2587
  8560. }
  8561. },
  8562. },
  8563. [
  8564. {
  8565. name: "Normal",
  8566. height: math.unit(18, "feet"),
  8567. default: true
  8568. },
  8569. {
  8570. name: "Macro",
  8571. height: math.unit(300, "feet")
  8572. },
  8573. {
  8574. name: "Megamacro",
  8575. height: math.unit(15, "km")
  8576. },
  8577. {
  8578. name: "Gigamacro",
  8579. height: math.unit(500, "km")
  8580. },
  8581. {
  8582. name: "Teramacro",
  8583. height: math.unit(0.5, "gigameters")
  8584. },
  8585. {
  8586. name: "Omnimacro",
  8587. height: math.unit(1e252, "yottauniverse")
  8588. },
  8589. ]
  8590. ))
  8591. characterMakers.push(() => makeCharacter(
  8592. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8593. {
  8594. front: {
  8595. height: math.unit(7 + 8 / 12, "feet"),
  8596. weight: math.unit(120, "lb"),
  8597. name: "Front",
  8598. image: {
  8599. source: "./media/characters/danny/front.svg",
  8600. extra: 1490 / 1350
  8601. }
  8602. },
  8603. back: {
  8604. height: math.unit(7 + 8 / 12, "feet"),
  8605. weight: math.unit(120, "lb"),
  8606. name: "Back",
  8607. image: {
  8608. source: "./media/characters/danny/back.svg",
  8609. extra: 1490 / 1350
  8610. }
  8611. },
  8612. },
  8613. [
  8614. {
  8615. name: "Normal",
  8616. height: math.unit(7 + 8 / 12, "feet"),
  8617. default: true
  8618. },
  8619. ]
  8620. ))
  8621. characterMakers.push(() => makeCharacter(
  8622. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8623. {
  8624. front: {
  8625. height: math.unit(3.5, "inches"),
  8626. weight: math.unit(19, "grams"),
  8627. name: "Front",
  8628. image: {
  8629. source: "./media/characters/mallow/front.svg",
  8630. extra: 471 / 431
  8631. }
  8632. },
  8633. back: {
  8634. height: math.unit(3.5, "inches"),
  8635. weight: math.unit(19, "grams"),
  8636. name: "Back",
  8637. image: {
  8638. source: "./media/characters/mallow/back.svg",
  8639. extra: 471 / 431
  8640. }
  8641. },
  8642. },
  8643. [
  8644. {
  8645. name: "Normal",
  8646. height: math.unit(3.5, "inches"),
  8647. default: true
  8648. },
  8649. ]
  8650. ))
  8651. characterMakers.push(() => makeCharacter(
  8652. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8653. {
  8654. front: {
  8655. height: math.unit(9, "feet"),
  8656. weight: math.unit(230, "kg"),
  8657. name: "Front",
  8658. image: {
  8659. source: "./media/characters/starry-aqua/front.svg"
  8660. }
  8661. },
  8662. back: {
  8663. height: math.unit(9, "feet"),
  8664. weight: math.unit(230, "kg"),
  8665. name: "Back",
  8666. image: {
  8667. source: "./media/characters/starry-aqua/back.svg"
  8668. }
  8669. },
  8670. hand: {
  8671. height: math.unit(9 * 0.1168, "feet"),
  8672. name: "Hand",
  8673. image: {
  8674. source: "./media/characters/starry-aqua/hand.svg"
  8675. }
  8676. },
  8677. foot: {
  8678. height: math.unit(9 * 0.18, "feet"),
  8679. name: "Foot",
  8680. image: {
  8681. source: "./media/characters/starry-aqua/foot.svg"
  8682. }
  8683. }
  8684. },
  8685. [
  8686. {
  8687. name: "Micro",
  8688. height: math.unit(3, "inches")
  8689. },
  8690. {
  8691. name: "Normal",
  8692. height: math.unit(9, "feet")
  8693. },
  8694. {
  8695. name: "Macro",
  8696. height: math.unit(300, "feet"),
  8697. default: true
  8698. },
  8699. {
  8700. name: "Megamacro",
  8701. height: math.unit(3200, "feet")
  8702. }
  8703. ]
  8704. ))
  8705. characterMakers.push(() => makeCharacter(
  8706. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8707. {
  8708. front: {
  8709. height: math.unit(6, "feet"),
  8710. weight: math.unit(230, "lb"),
  8711. name: "Front",
  8712. image: {
  8713. source: "./media/characters/luka/front.svg",
  8714. extra: 1,
  8715. bottom: 0.025
  8716. }
  8717. },
  8718. },
  8719. [
  8720. {
  8721. name: "Normal",
  8722. height: math.unit(12 + 8 / 12, "feet"),
  8723. default: true
  8724. },
  8725. {
  8726. name: "Minimacro",
  8727. height: math.unit(20, "feet")
  8728. },
  8729. {
  8730. name: "Macro",
  8731. height: math.unit(250, "feet")
  8732. },
  8733. {
  8734. name: "Megamacro",
  8735. height: math.unit(5, "miles")
  8736. },
  8737. {
  8738. name: "Gigamacro",
  8739. height: math.unit(8000, "miles")
  8740. },
  8741. ]
  8742. ))
  8743. characterMakers.push(() => makeCharacter(
  8744. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8745. {
  8746. front: {
  8747. height: math.unit(6, "feet"),
  8748. weight: math.unit(150, "lb"),
  8749. name: "Front",
  8750. image: {
  8751. source: "./media/characters/natalie-nightring/front.svg",
  8752. extra: 1,
  8753. bottom: 0.06
  8754. }
  8755. },
  8756. },
  8757. [
  8758. {
  8759. name: "Uh Oh",
  8760. height: math.unit(0.1, "mm")
  8761. },
  8762. {
  8763. name: "Small",
  8764. height: math.unit(3, "inches")
  8765. },
  8766. {
  8767. name: "Human Scale",
  8768. height: math.unit(6, "feet")
  8769. },
  8770. {
  8771. name: "Librarian",
  8772. height: math.unit(50, "feet"),
  8773. default: true
  8774. },
  8775. {
  8776. name: "Immense",
  8777. height: math.unit(200, "miles")
  8778. },
  8779. ]
  8780. ))
  8781. characterMakers.push(() => makeCharacter(
  8782. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8783. {
  8784. front: {
  8785. height: math.unit(6, "feet"),
  8786. weight: math.unit(180, "lbs"),
  8787. name: "Front",
  8788. image: {
  8789. source: "./media/characters/danni-rosie/front.svg",
  8790. extra: 1260 / 1128,
  8791. bottom: 0.022
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Micro",
  8798. height: math.unit(2, "inches"),
  8799. default: true
  8800. },
  8801. ]
  8802. ))
  8803. characterMakers.push(() => makeCharacter(
  8804. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8805. {
  8806. front: {
  8807. height: math.unit(5 + 9 / 12, "feet"),
  8808. weight: math.unit(220, "lb"),
  8809. name: "Front",
  8810. image: {
  8811. source: "./media/characters/samantha-kruse/front.svg",
  8812. extra: (985 / 935),
  8813. bottom: 0.03
  8814. }
  8815. },
  8816. frontUndressed: {
  8817. height: math.unit(5 + 9 / 12, "feet"),
  8818. weight: math.unit(220, "lb"),
  8819. name: "Front (Undressed)",
  8820. image: {
  8821. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8822. extra: (973 / 923),
  8823. bottom: 0.025
  8824. }
  8825. },
  8826. fat: {
  8827. height: math.unit(5 + 9 / 12, "feet"),
  8828. weight: math.unit(900, "lb"),
  8829. name: "Front (Fat)",
  8830. image: {
  8831. source: "./media/characters/samantha-kruse/fat.svg",
  8832. extra: 2688 / 2561
  8833. }
  8834. },
  8835. },
  8836. [
  8837. {
  8838. name: "Normal",
  8839. height: math.unit(5 + 9 / 12, "feet"),
  8840. default: true
  8841. }
  8842. ]
  8843. ))
  8844. characterMakers.push(() => makeCharacter(
  8845. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8846. {
  8847. back: {
  8848. height: math.unit(5 + 4 / 12, "feet"),
  8849. weight: math.unit(4963, "lb"),
  8850. name: "Back",
  8851. image: {
  8852. source: "./media/characters/amelia-rosie/back.svg",
  8853. extra: 1113 / 963,
  8854. bottom: 0.01
  8855. }
  8856. },
  8857. },
  8858. [
  8859. {
  8860. name: "Level 0",
  8861. height: math.unit(5 + 4 / 12, "feet")
  8862. },
  8863. {
  8864. name: "Level 1",
  8865. height: math.unit(164597, "feet"),
  8866. default: true
  8867. },
  8868. {
  8869. name: "Level 2",
  8870. height: math.unit(956243, "miles")
  8871. },
  8872. {
  8873. name: "Level 3",
  8874. height: math.unit(29421709423, "miles")
  8875. },
  8876. {
  8877. name: "Level 4",
  8878. height: math.unit(154, "lightyears")
  8879. },
  8880. {
  8881. name: "Level 5",
  8882. height: math.unit(4738272, "lightyears")
  8883. },
  8884. {
  8885. name: "Level 6",
  8886. height: math.unit(145787152896, "lightyears")
  8887. },
  8888. ]
  8889. ))
  8890. characterMakers.push(() => makeCharacter(
  8891. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8892. {
  8893. front: {
  8894. height: math.unit(5 + 11 / 12, "feet"),
  8895. weight: math.unit(65, "kg"),
  8896. name: "Front",
  8897. image: {
  8898. source: "./media/characters/rook-kitara/front.svg",
  8899. extra: 1347 / 1274,
  8900. bottom: 0.005
  8901. }
  8902. },
  8903. },
  8904. [
  8905. {
  8906. name: "Totally Unfair",
  8907. height: math.unit(1.8, "mm")
  8908. },
  8909. {
  8910. name: "Lap Rookie",
  8911. height: math.unit(1.4, "feet")
  8912. },
  8913. {
  8914. name: "Normal",
  8915. height: math.unit(5 + 11 / 12, "feet"),
  8916. default: true
  8917. },
  8918. {
  8919. name: "How Did This Happen",
  8920. height: math.unit(80, "miles")
  8921. }
  8922. ]
  8923. ))
  8924. characterMakers.push(() => makeCharacter(
  8925. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8926. {
  8927. front: {
  8928. height: math.unit(7, "feet"),
  8929. weight: math.unit(300, "lb"),
  8930. name: "Front",
  8931. image: {
  8932. source: "./media/characters/pisces/front.svg",
  8933. extra: 2255 / 2115,
  8934. bottom: 0.03
  8935. }
  8936. },
  8937. back: {
  8938. height: math.unit(7, "feet"),
  8939. weight: math.unit(300, "lb"),
  8940. name: "Back",
  8941. image: {
  8942. source: "./media/characters/pisces/back.svg",
  8943. extra: 2146 / 2055,
  8944. bottom: 0.04
  8945. }
  8946. },
  8947. },
  8948. [
  8949. {
  8950. name: "Normal",
  8951. height: math.unit(7, "feet"),
  8952. default: true
  8953. },
  8954. {
  8955. name: "Swimming Pool",
  8956. height: math.unit(12.2, "meters")
  8957. },
  8958. {
  8959. name: "Olympic Swimming Pool",
  8960. height: math.unit(56.3, "meters")
  8961. },
  8962. {
  8963. name: "Lake Superior",
  8964. height: math.unit(93900, "meters")
  8965. },
  8966. {
  8967. name: "Mediterranean Sea",
  8968. height: math.unit(644457, "meters")
  8969. },
  8970. {
  8971. name: "World's Oceans",
  8972. height: math.unit(4567491, "meters")
  8973. },
  8974. ]
  8975. ))
  8976. characterMakers.push(() => makeCharacter(
  8977. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8978. {
  8979. front: {
  8980. height: math.unit(2.3, "meters"),
  8981. weight: math.unit(120, "kg"),
  8982. name: "Front",
  8983. image: {
  8984. source: "./media/characters/zelas/front.svg"
  8985. }
  8986. },
  8987. side: {
  8988. height: math.unit(2.3, "meters"),
  8989. weight: math.unit(120, "kg"),
  8990. name: "Side",
  8991. image: {
  8992. source: "./media/characters/zelas/side.svg"
  8993. }
  8994. },
  8995. back: {
  8996. height: math.unit(2.3, "meters"),
  8997. weight: math.unit(120, "kg"),
  8998. name: "Back",
  8999. image: {
  9000. source: "./media/characters/zelas/back.svg"
  9001. }
  9002. },
  9003. foot: {
  9004. height: math.unit(1.116, "feet"),
  9005. name: "Foot",
  9006. image: {
  9007. source: "./media/characters/zelas/foot.svg"
  9008. }
  9009. },
  9010. },
  9011. [
  9012. {
  9013. name: "Normal",
  9014. height: math.unit(2.3, "meters")
  9015. },
  9016. {
  9017. name: "Macro",
  9018. height: math.unit(30, "meters"),
  9019. default: true
  9020. },
  9021. ]
  9022. ))
  9023. characterMakers.push(() => makeCharacter(
  9024. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9025. {
  9026. front: {
  9027. height: math.unit(1, "inch"),
  9028. weight: math.unit(0.21, "grams"),
  9029. name: "Front",
  9030. image: {
  9031. source: "./media/characters/talbot/front.svg",
  9032. extra: 594 / 544
  9033. }
  9034. },
  9035. },
  9036. [
  9037. {
  9038. name: "Micro",
  9039. height: math.unit(1, "inch"),
  9040. default: true
  9041. },
  9042. ]
  9043. ))
  9044. characterMakers.push(() => makeCharacter(
  9045. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9046. {
  9047. front: {
  9048. height: math.unit(3 + 3 / 12, "feet"),
  9049. weight: math.unit(51.8, "lb"),
  9050. name: "Front",
  9051. image: {
  9052. source: "./media/characters/fliss/front.svg",
  9053. extra: 840 / 640
  9054. }
  9055. },
  9056. },
  9057. [
  9058. {
  9059. name: "Teeny Tiny",
  9060. height: math.unit(1, "mm")
  9061. },
  9062. {
  9063. name: "Small",
  9064. height: math.unit(1, "inch"),
  9065. default: true
  9066. },
  9067. {
  9068. name: "Standard Sylveon",
  9069. height: math.unit(3 + 3 / 12, "feet")
  9070. },
  9071. {
  9072. name: "Large Nuisance",
  9073. height: math.unit(33, "feet")
  9074. },
  9075. {
  9076. name: "City Filler",
  9077. height: math.unit(3000, "feet")
  9078. },
  9079. {
  9080. name: "New Horizon",
  9081. height: math.unit(6000, "miles")
  9082. },
  9083. ]
  9084. ))
  9085. characterMakers.push(() => makeCharacter(
  9086. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9087. {
  9088. front: {
  9089. height: math.unit(5, "cm"),
  9090. weight: math.unit(1.94, "g"),
  9091. name: "Front",
  9092. image: {
  9093. source: "./media/characters/fleta/front.svg",
  9094. extra: 835 / 803
  9095. }
  9096. },
  9097. back: {
  9098. height: math.unit(5, "cm"),
  9099. weight: math.unit(1.94, "g"),
  9100. name: "Back",
  9101. image: {
  9102. source: "./media/characters/fleta/back.svg",
  9103. extra: 835 / 803
  9104. }
  9105. },
  9106. },
  9107. [
  9108. {
  9109. name: "Micro",
  9110. height: math.unit(5, "cm"),
  9111. default: true
  9112. },
  9113. ]
  9114. ))
  9115. characterMakers.push(() => makeCharacter(
  9116. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9117. {
  9118. front: {
  9119. height: math.unit(6, "feet"),
  9120. weight: math.unit(225, "lb"),
  9121. name: "Front",
  9122. image: {
  9123. source: "./media/characters/dominic/front.svg",
  9124. extra: 1770 / 1620,
  9125. bottom: 0.025
  9126. }
  9127. },
  9128. back: {
  9129. height: math.unit(6, "feet"),
  9130. weight: math.unit(225, "lb"),
  9131. name: "Back",
  9132. image: {
  9133. source: "./media/characters/dominic/back.svg",
  9134. extra: 1745 / 1620,
  9135. bottom: 0.065
  9136. }
  9137. },
  9138. },
  9139. [
  9140. {
  9141. name: "Nano",
  9142. height: math.unit(0.1, "mm")
  9143. },
  9144. {
  9145. name: "Micro-",
  9146. height: math.unit(1, "mm")
  9147. },
  9148. {
  9149. name: "Micro",
  9150. height: math.unit(4, "inches")
  9151. },
  9152. {
  9153. name: "Normal",
  9154. height: math.unit(6 + 4 / 12, "feet"),
  9155. default: true
  9156. },
  9157. {
  9158. name: "Macro",
  9159. height: math.unit(115, "feet")
  9160. },
  9161. {
  9162. name: "Macro+",
  9163. height: math.unit(955, "feet")
  9164. },
  9165. {
  9166. name: "Megamacro",
  9167. height: math.unit(8990, "feet")
  9168. },
  9169. {
  9170. name: "Gigmacro",
  9171. height: math.unit(9310, "miles")
  9172. },
  9173. {
  9174. name: "Teramacro",
  9175. height: math.unit(1567005010, "miles")
  9176. },
  9177. {
  9178. name: "Examacro",
  9179. height: math.unit(1425, "parsecs")
  9180. },
  9181. ]
  9182. ))
  9183. characterMakers.push(() => makeCharacter(
  9184. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9185. {
  9186. front: {
  9187. height: math.unit(400, "feet"),
  9188. weight: math.unit(44444444, "lb"),
  9189. name: "Front",
  9190. image: {
  9191. source: "./media/characters/major-colonel/front.svg"
  9192. }
  9193. },
  9194. back: {
  9195. height: math.unit(400, "feet"),
  9196. weight: math.unit(44444444, "lb"),
  9197. name: "Back",
  9198. image: {
  9199. source: "./media/characters/major-colonel/back.svg"
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Macro",
  9206. height: math.unit(400, "feet"),
  9207. default: true
  9208. },
  9209. ]
  9210. ))
  9211. characterMakers.push(() => makeCharacter(
  9212. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9213. {
  9214. catFront: {
  9215. height: math.unit(6, "feet"),
  9216. weight: math.unit(120, "lb"),
  9217. name: "Front (Cat Side)",
  9218. image: {
  9219. source: "./media/characters/axel-lycan/cat-front.svg",
  9220. extra: 430 / 402,
  9221. bottom: 43 / 472.35
  9222. }
  9223. },
  9224. catBack: {
  9225. height: math.unit(6, "feet"),
  9226. weight: math.unit(120, "lb"),
  9227. name: "Back (Cat Side)",
  9228. image: {
  9229. source: "./media/characters/axel-lycan/cat-back.svg",
  9230. extra: 447 / 419,
  9231. bottom: 23.3 / 469
  9232. }
  9233. },
  9234. wolfFront: {
  9235. height: math.unit(6, "feet"),
  9236. weight: math.unit(120, "lb"),
  9237. name: "Front (Wolf Side)",
  9238. image: {
  9239. source: "./media/characters/axel-lycan/wolf-front.svg",
  9240. extra: 485 / 456,
  9241. bottom: 19 / 504
  9242. }
  9243. },
  9244. wolfBack: {
  9245. height: math.unit(6, "feet"),
  9246. weight: math.unit(120, "lb"),
  9247. name: "Back (Wolf Side)",
  9248. image: {
  9249. source: "./media/characters/axel-lycan/wolf-back.svg",
  9250. extra: 475 / 438,
  9251. bottom: 39.2 / 514
  9252. }
  9253. },
  9254. },
  9255. [
  9256. {
  9257. name: "Macro",
  9258. height: math.unit(1, "km"),
  9259. default: true
  9260. },
  9261. ]
  9262. ))
  9263. characterMakers.push(() => makeCharacter(
  9264. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9265. {
  9266. front: {
  9267. height: math.unit(5 + 9 / 12, "feet"),
  9268. weight: math.unit(175, "lb"),
  9269. name: "Front",
  9270. image: {
  9271. source: "./media/characters/vanrel-hyena/front.svg",
  9272. extra: 1086 / 1010,
  9273. bottom: 0.04
  9274. }
  9275. },
  9276. },
  9277. [
  9278. {
  9279. name: "Normal",
  9280. height: math.unit(5 + 9 / 12, "feet"),
  9281. default: true
  9282. },
  9283. ]
  9284. ))
  9285. characterMakers.push(() => makeCharacter(
  9286. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9287. {
  9288. front: {
  9289. height: math.unit(6, "feet"),
  9290. weight: math.unit(103, "lb"),
  9291. name: "Front",
  9292. image: {
  9293. source: "./media/characters/abbott-absol/front.svg",
  9294. extra: 2010 / 1842
  9295. }
  9296. },
  9297. },
  9298. [
  9299. {
  9300. name: "Megamicro",
  9301. height: math.unit(0.1, "mm")
  9302. },
  9303. {
  9304. name: "Micro",
  9305. height: math.unit(1, "inch")
  9306. },
  9307. {
  9308. name: "Normal",
  9309. height: math.unit(6, "feet"),
  9310. default: true
  9311. },
  9312. ]
  9313. ))
  9314. characterMakers.push(() => makeCharacter(
  9315. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9316. {
  9317. front: {
  9318. height: math.unit(6, "feet"),
  9319. weight: math.unit(264, "lb"),
  9320. name: "Front",
  9321. image: {
  9322. source: "./media/characters/hector/front.svg",
  9323. extra: 2280 / 2130,
  9324. bottom: 0.07
  9325. }
  9326. },
  9327. },
  9328. [
  9329. {
  9330. name: "Normal",
  9331. height: math.unit(12.25, "foot"),
  9332. default: true
  9333. },
  9334. {
  9335. name: "Macro",
  9336. height: math.unit(160, "feet")
  9337. },
  9338. ]
  9339. ))
  9340. characterMakers.push(() => makeCharacter(
  9341. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9342. {
  9343. front: {
  9344. height: math.unit(6, "feet"),
  9345. weight: math.unit(150, "lb"),
  9346. name: "Front",
  9347. image: {
  9348. source: "./media/characters/sal/front.svg",
  9349. extra: 1846 / 1699,
  9350. bottom: 0.04
  9351. }
  9352. },
  9353. },
  9354. [
  9355. {
  9356. name: "Megamacro",
  9357. height: math.unit(10, "miles"),
  9358. default: true
  9359. },
  9360. ]
  9361. ))
  9362. characterMakers.push(() => makeCharacter(
  9363. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9364. {
  9365. front: {
  9366. height: math.unit(3, "meters"),
  9367. weight: math.unit(450, "kg"),
  9368. name: "front",
  9369. image: {
  9370. source: "./media/characters/ranger/front.svg",
  9371. extra: 2401 / 2243,
  9372. bottom: 0.05
  9373. }
  9374. },
  9375. },
  9376. [
  9377. {
  9378. name: "Normal",
  9379. height: math.unit(3, "meters"),
  9380. default: true
  9381. },
  9382. ]
  9383. ))
  9384. characterMakers.push(() => makeCharacter(
  9385. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9386. {
  9387. front: {
  9388. height: math.unit(14, "feet"),
  9389. weight: math.unit(800, "kg"),
  9390. name: "Front",
  9391. image: {
  9392. source: "./media/characters/theresa/front.svg",
  9393. extra: 3575 / 3346,
  9394. bottom: 0.03
  9395. }
  9396. },
  9397. },
  9398. [
  9399. {
  9400. name: "Normal",
  9401. height: math.unit(14, "feet"),
  9402. default: true
  9403. },
  9404. ]
  9405. ))
  9406. characterMakers.push(() => makeCharacter(
  9407. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9408. {
  9409. front: {
  9410. height: math.unit(6, "feet"),
  9411. weight: math.unit(3, "kg"),
  9412. name: "Front",
  9413. image: {
  9414. source: "./media/characters/ine/front.svg",
  9415. extra: 678 / 539,
  9416. bottom: 0.023
  9417. }
  9418. },
  9419. },
  9420. [
  9421. {
  9422. name: "Normal",
  9423. height: math.unit(2.265, "feet"),
  9424. default: true
  9425. },
  9426. ]
  9427. ))
  9428. characterMakers.push(() => makeCharacter(
  9429. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9430. {
  9431. front: {
  9432. height: math.unit(5, "feet"),
  9433. weight: math.unit(30, "kg"),
  9434. name: "Front",
  9435. image: {
  9436. source: "./media/characters/vial/front.svg",
  9437. extra: 1365 / 1277,
  9438. bottom: 0.04
  9439. }
  9440. },
  9441. },
  9442. [
  9443. {
  9444. name: "Normal",
  9445. height: math.unit(5, "feet"),
  9446. default: true
  9447. },
  9448. ]
  9449. ))
  9450. characterMakers.push(() => makeCharacter(
  9451. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9452. {
  9453. side: {
  9454. height: math.unit(3.4, "meters"),
  9455. weight: math.unit(1000, "lb"),
  9456. name: "Side",
  9457. image: {
  9458. source: "./media/characters/rovoska/side.svg",
  9459. extra: 4403 / 1515
  9460. }
  9461. },
  9462. },
  9463. [
  9464. {
  9465. name: "Normal",
  9466. height: math.unit(3.4, "meters"),
  9467. default: true
  9468. },
  9469. ]
  9470. ))
  9471. characterMakers.push(() => makeCharacter(
  9472. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9473. {
  9474. front: {
  9475. height: math.unit(8, "feet"),
  9476. weight: math.unit(315, "lb"),
  9477. name: "Front",
  9478. image: {
  9479. source: "./media/characters/gunner-rotthbauer/front.svg"
  9480. }
  9481. },
  9482. back: {
  9483. height: math.unit(8, "feet"),
  9484. weight: math.unit(315, "lb"),
  9485. name: "Back",
  9486. image: {
  9487. source: "./media/characters/gunner-rotthbauer/back.svg"
  9488. }
  9489. },
  9490. },
  9491. [
  9492. {
  9493. name: "Micro",
  9494. height: math.unit(3.5, "inches")
  9495. },
  9496. {
  9497. name: "Normal",
  9498. height: math.unit(8, "feet"),
  9499. default: true
  9500. },
  9501. {
  9502. name: "Macro",
  9503. height: math.unit(250, "feet")
  9504. },
  9505. {
  9506. name: "Megamacro",
  9507. height: math.unit(1, "AU")
  9508. },
  9509. ]
  9510. ))
  9511. characterMakers.push(() => makeCharacter(
  9512. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9513. {
  9514. front: {
  9515. height: math.unit(5 + 5 / 12, "feet"),
  9516. weight: math.unit(140, "lb"),
  9517. name: "Front",
  9518. image: {
  9519. source: "./media/characters/allatia/front.svg",
  9520. extra: 1227 / 1180,
  9521. bottom: 0.027
  9522. }
  9523. },
  9524. },
  9525. [
  9526. {
  9527. name: "Normal",
  9528. height: math.unit(5 + 5 / 12, "feet")
  9529. },
  9530. {
  9531. name: "Macro",
  9532. height: math.unit(250, "feet"),
  9533. default: true
  9534. },
  9535. {
  9536. name: "Megamacro",
  9537. height: math.unit(8, "miles")
  9538. }
  9539. ]
  9540. ))
  9541. characterMakers.push(() => makeCharacter(
  9542. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9543. {
  9544. front: {
  9545. height: math.unit(6, "feet"),
  9546. weight: math.unit(120, "lb"),
  9547. name: "Front",
  9548. image: {
  9549. source: "./media/characters/tene/front.svg",
  9550. extra: 1728 / 1578,
  9551. bottom: 0.022
  9552. }
  9553. },
  9554. stomping: {
  9555. height: math.unit(2.025, "meters"),
  9556. weight: math.unit(120, "lb"),
  9557. name: "Stomping",
  9558. image: {
  9559. source: "./media/characters/tene/stomping.svg",
  9560. extra: 938 / 873,
  9561. bottom: 0.01
  9562. }
  9563. },
  9564. sitting: {
  9565. height: math.unit(1, "meter"),
  9566. weight: math.unit(120, "lb"),
  9567. name: "Sitting",
  9568. image: {
  9569. source: "./media/characters/tene/sitting.svg",
  9570. extra: 437 / 415,
  9571. bottom: 0.1
  9572. }
  9573. },
  9574. feral: {
  9575. height: math.unit(3.9, "feet"),
  9576. weight: math.unit(250, "lb"),
  9577. name: "Feral",
  9578. image: {
  9579. source: "./media/characters/tene/feral.svg",
  9580. extra: 717 / 458,
  9581. bottom: 0.179
  9582. }
  9583. },
  9584. },
  9585. [
  9586. {
  9587. name: "Normal",
  9588. height: math.unit(6, "feet")
  9589. },
  9590. {
  9591. name: "Macro",
  9592. height: math.unit(300, "feet"),
  9593. default: true
  9594. },
  9595. {
  9596. name: "Megamacro",
  9597. height: math.unit(5, "miles")
  9598. },
  9599. ]
  9600. ))
  9601. characterMakers.push(() => makeCharacter(
  9602. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9603. {
  9604. side: {
  9605. height: math.unit(6, "feet"),
  9606. name: "Side",
  9607. image: {
  9608. source: "./media/characters/evander/side.svg",
  9609. extra: 877 / 477
  9610. }
  9611. },
  9612. },
  9613. [
  9614. {
  9615. name: "Normal",
  9616. height: math.unit(0.83, "meters"),
  9617. default: true
  9618. },
  9619. ]
  9620. ))
  9621. characterMakers.push(() => makeCharacter(
  9622. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9623. {
  9624. front: {
  9625. height: math.unit(12, "feet"),
  9626. weight: math.unit(1000, "lb"),
  9627. name: "Front",
  9628. image: {
  9629. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9630. extra: 1762 / 1611
  9631. }
  9632. },
  9633. back: {
  9634. height: math.unit(12, "feet"),
  9635. weight: math.unit(1000, "lb"),
  9636. name: "Back",
  9637. image: {
  9638. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9639. extra: 1762 / 1611
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Normal",
  9646. height: math.unit(12, "feet"),
  9647. default: true
  9648. },
  9649. {
  9650. name: "Kaiju",
  9651. height: math.unit(150, "feet")
  9652. },
  9653. ]
  9654. ))
  9655. characterMakers.push(() => makeCharacter(
  9656. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9657. {
  9658. front: {
  9659. height: math.unit(6, "feet"),
  9660. weight: math.unit(150, "lb"),
  9661. name: "Front",
  9662. image: {
  9663. source: "./media/characters/zero-alurus/front.svg"
  9664. }
  9665. },
  9666. back: {
  9667. height: math.unit(6, "feet"),
  9668. weight: math.unit(150, "lb"),
  9669. name: "Back",
  9670. image: {
  9671. source: "./media/characters/zero-alurus/back.svg"
  9672. }
  9673. },
  9674. },
  9675. [
  9676. {
  9677. name: "Normal",
  9678. height: math.unit(5 + 10 / 12, "feet")
  9679. },
  9680. {
  9681. name: "Macro",
  9682. height: math.unit(60, "feet"),
  9683. default: true
  9684. },
  9685. {
  9686. name: "Macro+",
  9687. height: math.unit(450, "feet")
  9688. },
  9689. ]
  9690. ))
  9691. characterMakers.push(() => makeCharacter(
  9692. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9693. {
  9694. front: {
  9695. height: math.unit(6, "feet"),
  9696. weight: math.unit(200, "lb"),
  9697. name: "Front",
  9698. image: {
  9699. source: "./media/characters/mega-shi/front.svg",
  9700. extra: 1279 / 1250,
  9701. bottom: 0.02
  9702. }
  9703. },
  9704. back: {
  9705. height: math.unit(6, "feet"),
  9706. weight: math.unit(200, "lb"),
  9707. name: "Back",
  9708. image: {
  9709. source: "./media/characters/mega-shi/back.svg",
  9710. extra: 1279 / 1250,
  9711. bottom: 0.02
  9712. }
  9713. },
  9714. },
  9715. [
  9716. {
  9717. name: "Micro",
  9718. height: math.unit(16 + 6 / 12, "feet")
  9719. },
  9720. {
  9721. name: "Third Dimension",
  9722. height: math.unit(40, "meters")
  9723. },
  9724. {
  9725. name: "Normal",
  9726. height: math.unit(660, "feet"),
  9727. default: true
  9728. },
  9729. {
  9730. name: "Megamacro",
  9731. height: math.unit(10, "miles")
  9732. },
  9733. {
  9734. name: "Planetary Launch",
  9735. height: math.unit(500, "miles")
  9736. },
  9737. {
  9738. name: "Interstellar",
  9739. height: math.unit(1e9, "miles")
  9740. },
  9741. {
  9742. name: "Leaving the Universe",
  9743. height: math.unit(1, "gigaparsec")
  9744. },
  9745. {
  9746. name: "Travelling Universes",
  9747. height: math.unit(30e15, "parsecs")
  9748. },
  9749. ]
  9750. ))
  9751. characterMakers.push(() => makeCharacter(
  9752. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9753. {
  9754. front: {
  9755. height: math.unit(6, "feet"),
  9756. weight: math.unit(150, "lb"),
  9757. name: "Front",
  9758. image: {
  9759. source: "./media/characters/odyssey/front.svg",
  9760. extra: 1782 / 1582,
  9761. bottom: 0.01
  9762. }
  9763. },
  9764. side: {
  9765. height: math.unit(5.7, "feet"),
  9766. weight: math.unit(140, "lb"),
  9767. name: "Side",
  9768. image: {
  9769. source: "./media/characters/odyssey/side.svg",
  9770. extra: 6462 / 5700
  9771. }
  9772. },
  9773. },
  9774. [
  9775. {
  9776. name: "Normal",
  9777. height: math.unit(5 + 4 / 12, "feet")
  9778. },
  9779. {
  9780. name: "Macro",
  9781. height: math.unit(1, "km")
  9782. },
  9783. {
  9784. name: "Megamacro",
  9785. height: math.unit(3000, "km")
  9786. },
  9787. {
  9788. name: "Gigamacro",
  9789. height: math.unit(1, "AU"),
  9790. default: true
  9791. },
  9792. {
  9793. name: "Omniversal",
  9794. height: math.unit(100e14, "lightyears")
  9795. },
  9796. ]
  9797. ))
  9798. characterMakers.push(() => makeCharacter(
  9799. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9800. {
  9801. front: {
  9802. height: math.unit(6, "feet"),
  9803. weight: math.unit(300, "lb"),
  9804. name: "Front",
  9805. image: {
  9806. source: "./media/characters/mekuto/front.svg",
  9807. extra: 921 / 832,
  9808. bottom: 0.03
  9809. }
  9810. },
  9811. hand: {
  9812. height: math.unit(6 / 10.24, "feet"),
  9813. name: "Hand",
  9814. image: {
  9815. source: "./media/characters/mekuto/hand.svg"
  9816. }
  9817. },
  9818. foot: {
  9819. height: math.unit(6 / 5.05, "feet"),
  9820. name: "Foot",
  9821. image: {
  9822. source: "./media/characters/mekuto/foot.svg"
  9823. }
  9824. },
  9825. },
  9826. [
  9827. {
  9828. name: "Minimicro",
  9829. height: math.unit(0.2, "inches")
  9830. },
  9831. {
  9832. name: "Micro",
  9833. height: math.unit(1.5, "inches")
  9834. },
  9835. {
  9836. name: "Normal",
  9837. height: math.unit(5 + 11 / 12, "feet"),
  9838. default: true
  9839. },
  9840. {
  9841. name: "Minimacro",
  9842. height: math.unit(17 + 9 / 12, "feet")
  9843. },
  9844. {
  9845. name: "Macro",
  9846. height: math.unit(177.5, "feet")
  9847. },
  9848. {
  9849. name: "Megamacro",
  9850. height: math.unit(152, "miles")
  9851. },
  9852. ]
  9853. ))
  9854. characterMakers.push(() => makeCharacter(
  9855. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9856. {
  9857. front: {
  9858. height: math.unit(6.5, "inches"),
  9859. weight: math.unit(13, "oz"),
  9860. name: "Front",
  9861. image: {
  9862. source: "./media/characters/dafydd-tomos/front.svg",
  9863. extra: 2990 / 2603,
  9864. bottom: 0.03
  9865. }
  9866. },
  9867. },
  9868. [
  9869. {
  9870. name: "Micro",
  9871. height: math.unit(6.5, "inches"),
  9872. default: true
  9873. },
  9874. ]
  9875. ))
  9876. characterMakers.push(() => makeCharacter(
  9877. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9878. {
  9879. front: {
  9880. height: math.unit(6, "feet"),
  9881. weight: math.unit(150, "lb"),
  9882. name: "Front",
  9883. image: {
  9884. source: "./media/characters/splinter/front.svg",
  9885. extra: 2990 / 2882,
  9886. bottom: 0.04
  9887. }
  9888. },
  9889. back: {
  9890. height: math.unit(6, "feet"),
  9891. weight: math.unit(150, "lb"),
  9892. name: "Back",
  9893. image: {
  9894. source: "./media/characters/splinter/back.svg",
  9895. extra: 2990 / 2882,
  9896. bottom: 0.04
  9897. }
  9898. },
  9899. },
  9900. [
  9901. {
  9902. name: "Normal",
  9903. height: math.unit(6, "feet")
  9904. },
  9905. {
  9906. name: "Macro",
  9907. height: math.unit(230, "meters"),
  9908. default: true
  9909. },
  9910. ]
  9911. ))
  9912. characterMakers.push(() => makeCharacter(
  9913. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9914. {
  9915. front: {
  9916. height: math.unit(4 + 10 / 12, "feet"),
  9917. weight: math.unit(480, "lb"),
  9918. name: "Front",
  9919. image: {
  9920. source: "./media/characters/snow-gabumon/front.svg",
  9921. extra: 1140 / 963,
  9922. bottom: 0.058
  9923. }
  9924. },
  9925. back: {
  9926. height: math.unit(4 + 10 / 12, "feet"),
  9927. weight: math.unit(480, "lb"),
  9928. name: "Back",
  9929. image: {
  9930. source: "./media/characters/snow-gabumon/back.svg",
  9931. extra: 1115 / 962,
  9932. bottom: 0.041
  9933. }
  9934. },
  9935. frontUndresed: {
  9936. height: math.unit(4 + 10 / 12, "feet"),
  9937. weight: math.unit(480, "lb"),
  9938. name: "Front (Undressed)",
  9939. image: {
  9940. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9941. extra: 1061 / 960,
  9942. bottom: 0.045
  9943. }
  9944. },
  9945. },
  9946. [
  9947. {
  9948. name: "Micro",
  9949. height: math.unit(1, "inch")
  9950. },
  9951. {
  9952. name: "Normal",
  9953. height: math.unit(4 + 10 / 12, "feet"),
  9954. default: true
  9955. },
  9956. {
  9957. name: "Macro",
  9958. height: math.unit(200, "feet")
  9959. },
  9960. {
  9961. name: "Megamacro",
  9962. height: math.unit(120, "miles")
  9963. },
  9964. {
  9965. name: "Gigamacro",
  9966. height: math.unit(9800, "miles")
  9967. },
  9968. ]
  9969. ))
  9970. characterMakers.push(() => makeCharacter(
  9971. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9972. {
  9973. front: {
  9974. height: math.unit(1.7, "meters"),
  9975. weight: math.unit(140, "lb"),
  9976. name: "Front",
  9977. image: {
  9978. source: "./media/characters/moody/front.svg",
  9979. extra: 3226 / 3007,
  9980. bottom: 0.087
  9981. }
  9982. },
  9983. },
  9984. [
  9985. {
  9986. name: "Micro",
  9987. height: math.unit(1, "mm")
  9988. },
  9989. {
  9990. name: "Normal",
  9991. height: math.unit(1.7, "meters"),
  9992. default: true
  9993. },
  9994. {
  9995. name: "Macro",
  9996. height: math.unit(80, "meters")
  9997. },
  9998. {
  9999. name: "Macro+",
  10000. height: math.unit(500, "meters")
  10001. },
  10002. ]
  10003. ))
  10004. characterMakers.push(() => makeCharacter(
  10005. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10006. {
  10007. front: {
  10008. height: math.unit(6, "feet"),
  10009. weight: math.unit(150, "lb"),
  10010. name: "Front",
  10011. image: {
  10012. source: "./media/characters/zyas/front.svg",
  10013. extra: 1180 / 1120,
  10014. bottom: 0.045
  10015. }
  10016. },
  10017. },
  10018. [
  10019. {
  10020. name: "Normal",
  10021. height: math.unit(10, "feet"),
  10022. default: true
  10023. },
  10024. {
  10025. name: "Macro",
  10026. height: math.unit(500, "feet")
  10027. },
  10028. {
  10029. name: "Megamacro",
  10030. height: math.unit(5, "miles")
  10031. },
  10032. {
  10033. name: "Teramacro",
  10034. height: math.unit(150000, "miles")
  10035. },
  10036. ]
  10037. ))
  10038. characterMakers.push(() => makeCharacter(
  10039. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10040. {
  10041. front: {
  10042. height: math.unit(6, "feet"),
  10043. weight: math.unit(150, "lb"),
  10044. name: "Front",
  10045. image: {
  10046. source: "./media/characters/cuon/front.svg",
  10047. extra: 1390 / 1320,
  10048. bottom: 0.008
  10049. }
  10050. },
  10051. },
  10052. [
  10053. {
  10054. name: "Micro",
  10055. height: math.unit(3, "inches")
  10056. },
  10057. {
  10058. name: "Normal",
  10059. height: math.unit(18 + 9 / 12, "feet"),
  10060. default: true
  10061. },
  10062. {
  10063. name: "Macro",
  10064. height: math.unit(360, "feet")
  10065. },
  10066. {
  10067. name: "Megamacro",
  10068. height: math.unit(360, "miles")
  10069. },
  10070. ]
  10071. ))
  10072. characterMakers.push(() => makeCharacter(
  10073. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10074. {
  10075. front: {
  10076. height: math.unit(2.4, "meters"),
  10077. weight: math.unit(70, "kg"),
  10078. name: "Front",
  10079. image: {
  10080. source: "./media/characters/nyanuxk/front.svg",
  10081. extra: 1172 / 1084,
  10082. bottom: 0.065
  10083. }
  10084. },
  10085. side: {
  10086. height: math.unit(2.4, "meters"),
  10087. weight: math.unit(70, "kg"),
  10088. name: "Side",
  10089. image: {
  10090. source: "./media/characters/nyanuxk/side.svg",
  10091. extra: 1190 / 1132,
  10092. bottom: 0.007
  10093. }
  10094. },
  10095. back: {
  10096. height: math.unit(2.4, "meters"),
  10097. weight: math.unit(70, "kg"),
  10098. name: "Back",
  10099. image: {
  10100. source: "./media/characters/nyanuxk/back.svg",
  10101. extra: 1200 / 1141,
  10102. bottom: 0.015
  10103. }
  10104. },
  10105. foot: {
  10106. height: math.unit(0.52, "meters"),
  10107. name: "Foot",
  10108. image: {
  10109. source: "./media/characters/nyanuxk/foot.svg"
  10110. }
  10111. },
  10112. },
  10113. [
  10114. {
  10115. name: "Micro",
  10116. height: math.unit(2, "cm")
  10117. },
  10118. {
  10119. name: "Normal",
  10120. height: math.unit(2.4, "meters"),
  10121. default: true
  10122. },
  10123. {
  10124. name: "Smaller Macro",
  10125. height: math.unit(120, "meters")
  10126. },
  10127. {
  10128. name: "Bigger Macro",
  10129. height: math.unit(1.2, "km")
  10130. },
  10131. {
  10132. name: "Megamacro",
  10133. height: math.unit(15, "kilometers")
  10134. },
  10135. {
  10136. name: "Gigamacro",
  10137. height: math.unit(2000, "km")
  10138. },
  10139. {
  10140. name: "Teramacro",
  10141. height: math.unit(500000, "km")
  10142. },
  10143. ]
  10144. ))
  10145. characterMakers.push(() => makeCharacter(
  10146. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10147. {
  10148. side: {
  10149. height: math.unit(6, "feet"),
  10150. name: "Side",
  10151. image: {
  10152. source: "./media/characters/ailbhe/side.svg",
  10153. extra: 757 / 464,
  10154. bottom: 0.041
  10155. }
  10156. },
  10157. },
  10158. [
  10159. {
  10160. name: "Normal",
  10161. height: math.unit(1.07, "meters"),
  10162. default: true
  10163. },
  10164. ]
  10165. ))
  10166. characterMakers.push(() => makeCharacter(
  10167. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10168. {
  10169. front: {
  10170. height: math.unit(6, "feet"),
  10171. weight: math.unit(120, "kg"),
  10172. name: "Front",
  10173. image: {
  10174. source: "./media/characters/zevulfius/front.svg",
  10175. extra: 965 / 903
  10176. }
  10177. },
  10178. side: {
  10179. height: math.unit(6, "feet"),
  10180. weight: math.unit(120, "kg"),
  10181. name: "Side",
  10182. image: {
  10183. source: "./media/characters/zevulfius/side.svg",
  10184. extra: 939 / 900
  10185. }
  10186. },
  10187. back: {
  10188. height: math.unit(6, "feet"),
  10189. weight: math.unit(120, "kg"),
  10190. name: "Back",
  10191. image: {
  10192. source: "./media/characters/zevulfius/back.svg",
  10193. extra: 918 / 854,
  10194. bottom: 0.005
  10195. }
  10196. },
  10197. foot: {
  10198. height: math.unit(6 / 3.72, "feet"),
  10199. name: "Foot",
  10200. image: {
  10201. source: "./media/characters/zevulfius/foot.svg"
  10202. }
  10203. },
  10204. },
  10205. [
  10206. {
  10207. name: "Macro",
  10208. height: math.unit(750, "meters")
  10209. },
  10210. {
  10211. name: "Megamacro",
  10212. height: math.unit(20, "km"),
  10213. default: true
  10214. },
  10215. {
  10216. name: "Gigamacro",
  10217. height: math.unit(2000, "km")
  10218. },
  10219. {
  10220. name: "Teramacro",
  10221. height: math.unit(250000, "km")
  10222. },
  10223. ]
  10224. ))
  10225. characterMakers.push(() => makeCharacter(
  10226. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10227. {
  10228. front: {
  10229. height: math.unit(100, "feet"),
  10230. weight: math.unit(350, "kg"),
  10231. name: "Front",
  10232. image: {
  10233. source: "./media/characters/rikes/front.svg",
  10234. extra: 1565 / 1483,
  10235. bottom: 0.017
  10236. }
  10237. },
  10238. },
  10239. [
  10240. {
  10241. name: "Macro",
  10242. height: math.unit(100, "feet"),
  10243. default: true
  10244. },
  10245. ]
  10246. ))
  10247. characterMakers.push(() => makeCharacter(
  10248. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10249. {
  10250. anthro: {
  10251. height: math.unit(8, "feet"),
  10252. weight: math.unit(120, "kg"),
  10253. name: "Anthro",
  10254. image: {
  10255. source: "./media/characters/adam-silver-mane/anthro.svg",
  10256. extra: 5743 / 5339,
  10257. bottom: 0.07
  10258. }
  10259. },
  10260. taur: {
  10261. height: math.unit(16, "feet"),
  10262. weight: math.unit(1500, "kg"),
  10263. name: "Taur",
  10264. image: {
  10265. source: "./media/characters/adam-silver-mane/taur.svg",
  10266. extra: 1713 / 1571,
  10267. bottom: 0.01
  10268. }
  10269. },
  10270. },
  10271. [
  10272. {
  10273. name: "Normal",
  10274. height: math.unit(8, "feet")
  10275. },
  10276. {
  10277. name: "Minimacro",
  10278. height: math.unit(80, "feet")
  10279. },
  10280. {
  10281. name: "Macro",
  10282. height: math.unit(800, "feet"),
  10283. default: true
  10284. },
  10285. {
  10286. name: "Megamacro",
  10287. height: math.unit(8000, "feet")
  10288. },
  10289. {
  10290. name: "Gigamacro",
  10291. height: math.unit(800, "miles")
  10292. },
  10293. {
  10294. name: "Teramacro",
  10295. height: math.unit(80000, "miles")
  10296. },
  10297. {
  10298. name: "Celestial",
  10299. height: math.unit(8e6, "miles")
  10300. },
  10301. {
  10302. name: "Star Dragon",
  10303. height: math.unit(800000, "parsecs")
  10304. },
  10305. {
  10306. name: "Godly",
  10307. height: math.unit(800, "teraparsecs")
  10308. },
  10309. ]
  10310. ))
  10311. characterMakers.push(() => makeCharacter(
  10312. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10313. {
  10314. front: {
  10315. height: math.unit(6, "feet"),
  10316. weight: math.unit(150, "lb"),
  10317. name: "Front",
  10318. image: {
  10319. source: "./media/characters/ky'owin/front.svg",
  10320. extra: 3888 / 3068,
  10321. bottom: 0.015
  10322. }
  10323. },
  10324. },
  10325. [
  10326. {
  10327. name: "Normal",
  10328. height: math.unit(6 + 8 / 12, "feet")
  10329. },
  10330. {
  10331. name: "Large",
  10332. height: math.unit(68, "feet")
  10333. },
  10334. {
  10335. name: "Macro",
  10336. height: math.unit(132, "feet")
  10337. },
  10338. {
  10339. name: "Macro+",
  10340. height: math.unit(340, "feet")
  10341. },
  10342. {
  10343. name: "Macro++",
  10344. height: math.unit(680, "feet"),
  10345. default: true
  10346. },
  10347. {
  10348. name: "Megamacro",
  10349. height: math.unit(1, "mile")
  10350. },
  10351. {
  10352. name: "Megamacro+",
  10353. height: math.unit(10, "miles")
  10354. },
  10355. ]
  10356. ))
  10357. characterMakers.push(() => makeCharacter(
  10358. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10359. {
  10360. front: {
  10361. height: math.unit(4, "feet"),
  10362. weight: math.unit(50, "lb"),
  10363. name: "Front",
  10364. image: {
  10365. source: "./media/characters/mal/front.svg",
  10366. extra: 785 / 724,
  10367. bottom: 0.07
  10368. }
  10369. },
  10370. },
  10371. [
  10372. {
  10373. name: "Micro",
  10374. height: math.unit(4, "inches")
  10375. },
  10376. {
  10377. name: "Normal",
  10378. height: math.unit(4, "feet"),
  10379. default: true
  10380. },
  10381. {
  10382. name: "Macro",
  10383. height: math.unit(200, "feet")
  10384. },
  10385. ]
  10386. ))
  10387. characterMakers.push(() => makeCharacter(
  10388. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10389. {
  10390. front: {
  10391. height: math.unit(6, "feet"),
  10392. weight: math.unit(150, "lb"),
  10393. name: "Front",
  10394. image: {
  10395. source: "./media/characters/jordan-deware/front.svg",
  10396. extra: 1191 / 1012
  10397. }
  10398. },
  10399. },
  10400. [
  10401. {
  10402. name: "Nano",
  10403. height: math.unit(0.01, "mm")
  10404. },
  10405. {
  10406. name: "Minimicro",
  10407. height: math.unit(1, "mm")
  10408. },
  10409. {
  10410. name: "Micro",
  10411. height: math.unit(0.5, "inches")
  10412. },
  10413. {
  10414. name: "Normal",
  10415. height: math.unit(4, "feet"),
  10416. default: true
  10417. },
  10418. {
  10419. name: "Minimacro",
  10420. height: math.unit(40, "meters")
  10421. },
  10422. {
  10423. name: "Small Macro",
  10424. height: math.unit(400, "meters")
  10425. },
  10426. {
  10427. name: "Macro",
  10428. height: math.unit(4, "miles")
  10429. },
  10430. {
  10431. name: "Megamacro",
  10432. height: math.unit(40, "miles")
  10433. },
  10434. {
  10435. name: "Megamacro+",
  10436. height: math.unit(400, "miles")
  10437. },
  10438. {
  10439. name: "Gigamacro",
  10440. height: math.unit(400000, "miles")
  10441. },
  10442. ]
  10443. ))
  10444. characterMakers.push(() => makeCharacter(
  10445. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10446. {
  10447. side: {
  10448. height: math.unit(6, "feet"),
  10449. weight: math.unit(150, "lb"),
  10450. name: "Side",
  10451. image: {
  10452. source: "./media/characters/kimiko/side.svg",
  10453. extra: 600 / 358
  10454. }
  10455. },
  10456. },
  10457. [
  10458. {
  10459. name: "Normal",
  10460. height: math.unit(15, "feet"),
  10461. default: true
  10462. },
  10463. {
  10464. name: "Macro",
  10465. height: math.unit(220, "feet")
  10466. },
  10467. {
  10468. name: "Macro+",
  10469. height: math.unit(1450, "feet")
  10470. },
  10471. {
  10472. name: "Megamacro",
  10473. height: math.unit(11500, "feet")
  10474. },
  10475. {
  10476. name: "Gigamacro",
  10477. height: math.unit(9500, "miles")
  10478. },
  10479. {
  10480. name: "Teramacro",
  10481. height: math.unit(2208005005, "miles")
  10482. },
  10483. {
  10484. name: "Examacro",
  10485. height: math.unit(2750, "parsecs")
  10486. },
  10487. {
  10488. name: "Zettamacro",
  10489. height: math.unit(101500, "parsecs")
  10490. },
  10491. ]
  10492. ))
  10493. characterMakers.push(() => makeCharacter(
  10494. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10495. {
  10496. front: {
  10497. height: math.unit(6, "feet"),
  10498. weight: math.unit(70, "kg"),
  10499. name: "Front",
  10500. image: {
  10501. source: "./media/characters/andrew-sleepy/front.svg"
  10502. }
  10503. },
  10504. side: {
  10505. height: math.unit(6, "feet"),
  10506. weight: math.unit(70, "kg"),
  10507. name: "Side",
  10508. image: {
  10509. source: "./media/characters/andrew-sleepy/side.svg"
  10510. }
  10511. },
  10512. },
  10513. [
  10514. {
  10515. name: "Micro",
  10516. height: math.unit(1, "mm"),
  10517. default: true
  10518. },
  10519. ]
  10520. ))
  10521. characterMakers.push(() => makeCharacter(
  10522. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10523. {
  10524. front: {
  10525. height: math.unit(6, "feet"),
  10526. weight: math.unit(150, "lb"),
  10527. name: "Front",
  10528. image: {
  10529. source: "./media/characters/judio/front.svg",
  10530. extra: 1258 / 1110
  10531. }
  10532. },
  10533. },
  10534. [
  10535. {
  10536. name: "Normal",
  10537. height: math.unit(5 + 6 / 12, "feet")
  10538. },
  10539. {
  10540. name: "Macro",
  10541. height: math.unit(1000, "feet"),
  10542. default: true
  10543. },
  10544. {
  10545. name: "Megamacro",
  10546. height: math.unit(10, "miles")
  10547. },
  10548. ]
  10549. ))
  10550. characterMakers.push(() => makeCharacter(
  10551. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10552. {
  10553. front: {
  10554. height: math.unit(6, "feet"),
  10555. weight: math.unit(68, "kg"),
  10556. name: "Front",
  10557. image: {
  10558. source: "./media/characters/nomaxice/front.svg",
  10559. extra: 1498 / 1073,
  10560. bottom: 0.075
  10561. }
  10562. },
  10563. foot: {
  10564. height: math.unit(1.1, "feet"),
  10565. name: "Foot",
  10566. image: {
  10567. source: "./media/characters/nomaxice/foot.svg"
  10568. }
  10569. },
  10570. },
  10571. [
  10572. {
  10573. name: "Micro",
  10574. height: math.unit(8, "cm")
  10575. },
  10576. {
  10577. name: "Norm",
  10578. height: math.unit(1.82, "m")
  10579. },
  10580. {
  10581. name: "Norm+",
  10582. height: math.unit(8.8, "feet")
  10583. },
  10584. {
  10585. name: "Big",
  10586. height: math.unit(8, "meters"),
  10587. default: true
  10588. },
  10589. {
  10590. name: "Macro",
  10591. height: math.unit(18, "meters")
  10592. },
  10593. {
  10594. name: "Macro+",
  10595. height: math.unit(88, "meters")
  10596. },
  10597. ]
  10598. ))
  10599. characterMakers.push(() => makeCharacter(
  10600. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10601. {
  10602. front: {
  10603. height: math.unit(12, "feet"),
  10604. weight: math.unit(1.5, "tons"),
  10605. name: "Front",
  10606. image: {
  10607. source: "./media/characters/dydros/front.svg",
  10608. extra: 863 / 800,
  10609. bottom: 0.015
  10610. }
  10611. },
  10612. back: {
  10613. height: math.unit(12, "feet"),
  10614. weight: math.unit(1.5, "tons"),
  10615. name: "Back",
  10616. image: {
  10617. source: "./media/characters/dydros/back.svg",
  10618. extra: 900 / 843,
  10619. bottom: 0.005
  10620. }
  10621. },
  10622. },
  10623. [
  10624. {
  10625. name: "Normal",
  10626. height: math.unit(12, "feet"),
  10627. default: true
  10628. },
  10629. ]
  10630. ))
  10631. characterMakers.push(() => makeCharacter(
  10632. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10633. {
  10634. front: {
  10635. height: math.unit(6, "feet"),
  10636. weight: math.unit(100, "kg"),
  10637. name: "Front",
  10638. image: {
  10639. source: "./media/characters/riggi/front.svg",
  10640. extra: 5787 / 5303
  10641. }
  10642. },
  10643. hyper: {
  10644. height: math.unit(6 * 5 / 3, "feet"),
  10645. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10646. name: "Hyper",
  10647. image: {
  10648. source: "./media/characters/riggi/hyper.svg",
  10649. extra: 3595 / 3485
  10650. }
  10651. },
  10652. },
  10653. [
  10654. {
  10655. name: "Small Macro",
  10656. height: math.unit(50, "feet")
  10657. },
  10658. {
  10659. name: "Default",
  10660. height: math.unit(200, "feet"),
  10661. default: true
  10662. },
  10663. {
  10664. name: "Loom",
  10665. height: math.unit(10000, "feet")
  10666. },
  10667. {
  10668. name: "Cruising Altitude",
  10669. height: math.unit(30000, "feet")
  10670. },
  10671. {
  10672. name: "Megamacro",
  10673. height: math.unit(100, "miles")
  10674. },
  10675. {
  10676. name: "Continent Sized",
  10677. height: math.unit(2800, "miles")
  10678. },
  10679. {
  10680. name: "Earth Sized",
  10681. height: math.unit(8000, "miles")
  10682. },
  10683. ]
  10684. ))
  10685. characterMakers.push(() => makeCharacter(
  10686. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10687. {
  10688. front: {
  10689. height: math.unit(6, "feet"),
  10690. weight: math.unit(250, "lb"),
  10691. name: "Front",
  10692. image: {
  10693. source: "./media/characters/alexi/front.svg",
  10694. extra: 3483 / 3291,
  10695. bottom: 0.04
  10696. }
  10697. },
  10698. back: {
  10699. height: math.unit(6, "feet"),
  10700. weight: math.unit(250, "lb"),
  10701. name: "Back",
  10702. image: {
  10703. source: "./media/characters/alexi/back.svg",
  10704. extra: 3533 / 3356,
  10705. bottom: 0.021
  10706. }
  10707. },
  10708. frontTransforming: {
  10709. height: math.unit(8.58, "feet"),
  10710. weight: math.unit(1300, "lb"),
  10711. name: "Transforming",
  10712. image: {
  10713. source: "./media/characters/alexi/front-transforming.svg",
  10714. extra: 437 / 409,
  10715. bottom: 19 / 458.66
  10716. }
  10717. },
  10718. frontTransformed: {
  10719. height: math.unit(12.5, "feet"),
  10720. weight: math.unit(4000, "lb"),
  10721. name: "Transformed",
  10722. image: {
  10723. source: "./media/characters/alexi/front-transformed.svg",
  10724. extra: 639 / 614,
  10725. bottom: 30.55 / 671
  10726. }
  10727. },
  10728. },
  10729. [
  10730. {
  10731. name: "Normal",
  10732. height: math.unit(14, "feet"),
  10733. default: true
  10734. },
  10735. {
  10736. name: "Minimacro",
  10737. height: math.unit(30, "meters")
  10738. },
  10739. {
  10740. name: "Macro",
  10741. height: math.unit(500, "meters")
  10742. },
  10743. {
  10744. name: "Megamacro",
  10745. height: math.unit(9000, "km")
  10746. },
  10747. {
  10748. name: "Teramacro",
  10749. height: math.unit(384000, "km")
  10750. },
  10751. ]
  10752. ))
  10753. characterMakers.push(() => makeCharacter(
  10754. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10755. {
  10756. front: {
  10757. height: math.unit(6, "feet"),
  10758. weight: math.unit(150, "lb"),
  10759. name: "Front",
  10760. image: {
  10761. source: "./media/characters/kayroo/front.svg",
  10762. extra: 1153 / 1038,
  10763. bottom: 0.06
  10764. }
  10765. },
  10766. foot: {
  10767. height: math.unit(6, "feet"),
  10768. weight: math.unit(150, "lb"),
  10769. name: "Foot",
  10770. image: {
  10771. source: "./media/characters/kayroo/foot.svg"
  10772. }
  10773. },
  10774. },
  10775. [
  10776. {
  10777. name: "Normal",
  10778. height: math.unit(8, "feet"),
  10779. default: true
  10780. },
  10781. {
  10782. name: "Minimacro",
  10783. height: math.unit(250, "feet")
  10784. },
  10785. {
  10786. name: "Macro",
  10787. height: math.unit(2800, "feet")
  10788. },
  10789. {
  10790. name: "Megamacro",
  10791. height: math.unit(5200, "feet")
  10792. },
  10793. {
  10794. name: "Gigamacro",
  10795. height: math.unit(27000, "feet")
  10796. },
  10797. {
  10798. name: "Omega",
  10799. height: math.unit(45000, "feet")
  10800. },
  10801. ]
  10802. ))
  10803. characterMakers.push(() => makeCharacter(
  10804. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10805. {
  10806. front: {
  10807. height: math.unit(18, "feet"),
  10808. weight: math.unit(5800, "lb"),
  10809. name: "Front",
  10810. image: {
  10811. source: "./media/characters/rhys/front.svg",
  10812. extra: 3386 / 3090,
  10813. bottom: 0.07
  10814. }
  10815. },
  10816. },
  10817. [
  10818. {
  10819. name: "Normal",
  10820. height: math.unit(18, "feet"),
  10821. default: true
  10822. },
  10823. {
  10824. name: "Working Size",
  10825. height: math.unit(200, "feet")
  10826. },
  10827. {
  10828. name: "Demolition Size",
  10829. height: math.unit(2000, "feet")
  10830. },
  10831. {
  10832. name: "Maximum Licensed Size",
  10833. height: math.unit(5, "miles")
  10834. },
  10835. {
  10836. name: "Maximum Observed Size",
  10837. height: math.unit(10, "yottameters")
  10838. },
  10839. ]
  10840. ))
  10841. characterMakers.push(() => makeCharacter(
  10842. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10843. {
  10844. front: {
  10845. height: math.unit(6, "feet"),
  10846. weight: math.unit(250, "lb"),
  10847. name: "Front",
  10848. image: {
  10849. source: "./media/characters/toto/front.svg",
  10850. extra: 527 / 479,
  10851. bottom: 0.05
  10852. }
  10853. },
  10854. },
  10855. [
  10856. {
  10857. name: "Micro",
  10858. height: math.unit(3, "feet")
  10859. },
  10860. {
  10861. name: "Normal",
  10862. height: math.unit(10, "feet")
  10863. },
  10864. {
  10865. name: "Macro",
  10866. height: math.unit(150, "feet"),
  10867. default: true
  10868. },
  10869. {
  10870. name: "Megamacro",
  10871. height: math.unit(1200, "feet")
  10872. },
  10873. ]
  10874. ))
  10875. characterMakers.push(() => makeCharacter(
  10876. { name: "King", species: ["lion"], tags: ["anthro"] },
  10877. {
  10878. back: {
  10879. height: math.unit(6, "feet"),
  10880. weight: math.unit(150, "lb"),
  10881. name: "Back",
  10882. image: {
  10883. source: "./media/characters/king/back.svg"
  10884. }
  10885. },
  10886. },
  10887. [
  10888. {
  10889. name: "Micro",
  10890. height: math.unit(2, "inches")
  10891. },
  10892. {
  10893. name: "Normal",
  10894. height: math.unit(8, "feet")
  10895. },
  10896. {
  10897. name: "Macro",
  10898. height: math.unit(200, "feet"),
  10899. default: true
  10900. },
  10901. {
  10902. name: "Megamacro",
  10903. height: math.unit(50, "miles")
  10904. },
  10905. ]
  10906. ))
  10907. characterMakers.push(() => makeCharacter(
  10908. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10909. {
  10910. anthro: {
  10911. height: math.unit(6 + 5 / 12, "feet"),
  10912. weight: math.unit(280, "lb"),
  10913. name: "Anthro",
  10914. image: {
  10915. source: "./media/characters/cordite/anthro.svg",
  10916. extra: 1986 / 1905,
  10917. bottom: 0.025
  10918. }
  10919. },
  10920. feral: {
  10921. height: math.unit(2, "feet"),
  10922. weight: math.unit(90, "lb"),
  10923. name: "Feral",
  10924. image: {
  10925. source: "./media/characters/cordite/feral.svg",
  10926. extra: 1260 / 755,
  10927. bottom: 0.05
  10928. }
  10929. },
  10930. },
  10931. [
  10932. {
  10933. name: "Normal",
  10934. height: math.unit(6 + 5 / 12, "feet"),
  10935. default: true
  10936. },
  10937. ]
  10938. ))
  10939. characterMakers.push(() => makeCharacter(
  10940. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10941. {
  10942. front: {
  10943. height: math.unit(6, "feet"),
  10944. weight: math.unit(150, "lb"),
  10945. name: "Front",
  10946. image: {
  10947. source: "./media/characters/pianostrong/front.svg",
  10948. extra: 6577 / 6254,
  10949. bottom: 0.02
  10950. }
  10951. },
  10952. side: {
  10953. height: math.unit(6, "feet"),
  10954. weight: math.unit(150, "lb"),
  10955. name: "Side",
  10956. image: {
  10957. source: "./media/characters/pianostrong/side.svg",
  10958. extra: 6106 / 5730
  10959. }
  10960. },
  10961. back: {
  10962. height: math.unit(6, "feet"),
  10963. weight: math.unit(150, "lb"),
  10964. name: "Back",
  10965. image: {
  10966. source: "./media/characters/pianostrong/back.svg",
  10967. extra: 6085 / 5733,
  10968. bottom: 0.01
  10969. }
  10970. },
  10971. },
  10972. [
  10973. {
  10974. name: "Macro",
  10975. height: math.unit(100, "feet")
  10976. },
  10977. {
  10978. name: "Macro+",
  10979. height: math.unit(300, "feet"),
  10980. default: true
  10981. },
  10982. {
  10983. name: "Macro++",
  10984. height: math.unit(1000, "feet")
  10985. },
  10986. ]
  10987. ))
  10988. characterMakers.push(() => makeCharacter(
  10989. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10990. {
  10991. front: {
  10992. height: math.unit(6, "feet"),
  10993. weight: math.unit(150, "lb"),
  10994. name: "Front",
  10995. image: {
  10996. source: "./media/characters/kona/front.svg",
  10997. extra: 2960 / 2629,
  10998. bottom: 0.005
  10999. }
  11000. },
  11001. },
  11002. [
  11003. {
  11004. name: "Normal",
  11005. height: math.unit(11 + 8 / 12, "feet")
  11006. },
  11007. {
  11008. name: "Macro",
  11009. height: math.unit(850, "feet"),
  11010. default: true
  11011. },
  11012. {
  11013. name: "Macro+",
  11014. height: math.unit(1.5, "km"),
  11015. default: true
  11016. },
  11017. {
  11018. name: "Megamacro",
  11019. height: math.unit(80, "miles")
  11020. },
  11021. {
  11022. name: "Gigamacro",
  11023. height: math.unit(3500, "miles")
  11024. },
  11025. ]
  11026. ))
  11027. characterMakers.push(() => makeCharacter(
  11028. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11029. {
  11030. side: {
  11031. height: math.unit(1.9, "meters"),
  11032. weight: math.unit(326, "kg"),
  11033. name: "Side",
  11034. image: {
  11035. source: "./media/characters/levi/side.svg",
  11036. extra: 1704 / 1334,
  11037. bottom: 0.02
  11038. }
  11039. },
  11040. },
  11041. [
  11042. {
  11043. name: "Normal",
  11044. height: math.unit(1.9, "meters"),
  11045. default: true
  11046. },
  11047. {
  11048. name: "Macro",
  11049. height: math.unit(20, "meters")
  11050. },
  11051. {
  11052. name: "Macro+",
  11053. height: math.unit(200, "meters")
  11054. },
  11055. {
  11056. name: "Megamacro",
  11057. height: math.unit(2, "km")
  11058. },
  11059. {
  11060. name: "Megamacro+",
  11061. height: math.unit(20, "km")
  11062. },
  11063. {
  11064. name: "Gigamacro",
  11065. height: math.unit(2500, "km")
  11066. },
  11067. {
  11068. name: "Gigamacro+",
  11069. height: math.unit(120000, "km")
  11070. },
  11071. {
  11072. name: "Teramacro",
  11073. height: math.unit(7.77e6, "km")
  11074. },
  11075. ]
  11076. ))
  11077. characterMakers.push(() => makeCharacter(
  11078. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11079. {
  11080. front: {
  11081. height: math.unit(6 + 4 / 12, "feet"),
  11082. weight: math.unit(188, "lb"),
  11083. name: "Front",
  11084. image: {
  11085. source: "./media/characters/bmc/front.svg",
  11086. extra: 1067 / 1022,
  11087. bottom: 0.047
  11088. }
  11089. },
  11090. },
  11091. [
  11092. {
  11093. name: "Human-sized",
  11094. height: math.unit(6 + 4 / 12, "feet")
  11095. },
  11096. {
  11097. name: "Small",
  11098. height: math.unit(250, "feet")
  11099. },
  11100. {
  11101. name: "Normal",
  11102. height: math.unit(1250, "feet"),
  11103. default: true
  11104. },
  11105. {
  11106. name: "Good Day",
  11107. height: math.unit(88, "miles")
  11108. },
  11109. {
  11110. name: "Largest Measured Size",
  11111. height: math.unit(11.2e6, "lightyears")
  11112. },
  11113. ]
  11114. ))
  11115. characterMakers.push(() => makeCharacter(
  11116. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11117. {
  11118. front: {
  11119. height: math.unit(20, "feet"),
  11120. weight: math.unit(2016, "kg"),
  11121. name: "Front",
  11122. image: {
  11123. source: "./media/characters/sven-the-kaiju/front.svg",
  11124. extra: 1277/1250,
  11125. bottom: 35/1312
  11126. }
  11127. },
  11128. mouth: {
  11129. height: math.unit(1.85, "feet"),
  11130. name: "Mouth",
  11131. image: {
  11132. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11133. }
  11134. },
  11135. },
  11136. [
  11137. {
  11138. name: "Fairy",
  11139. height: math.unit(6, "inches")
  11140. },
  11141. {
  11142. name: "Normal",
  11143. height: math.unit(20, "feet"),
  11144. default: true
  11145. },
  11146. {
  11147. name: "Rampage",
  11148. height: math.unit(200, "feet")
  11149. },
  11150. {
  11151. name: "Archfey Forest Guardian",
  11152. height: math.unit(1, "mile")
  11153. },
  11154. ]
  11155. ))
  11156. characterMakers.push(() => makeCharacter(
  11157. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11158. {
  11159. front: {
  11160. height: math.unit(4, "meters"),
  11161. weight: math.unit(2, "tons"),
  11162. name: "Front",
  11163. image: {
  11164. source: "./media/characters/marik/front.svg",
  11165. extra: 1057 / 1003,
  11166. bottom: 0.08
  11167. }
  11168. },
  11169. },
  11170. [
  11171. {
  11172. name: "Normal",
  11173. height: math.unit(4, "meters"),
  11174. default: true
  11175. },
  11176. {
  11177. name: "Macro",
  11178. height: math.unit(20, "meters")
  11179. },
  11180. {
  11181. name: "Megamacro",
  11182. height: math.unit(50, "km")
  11183. },
  11184. {
  11185. name: "Gigamacro",
  11186. height: math.unit(100, "km")
  11187. },
  11188. {
  11189. name: "Alpha Macro",
  11190. height: math.unit(7.88e7, "yottameters")
  11191. },
  11192. ]
  11193. ))
  11194. characterMakers.push(() => makeCharacter(
  11195. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11196. {
  11197. front: {
  11198. height: math.unit(6, "feet"),
  11199. weight: math.unit(110, "lb"),
  11200. name: "Front",
  11201. image: {
  11202. source: "./media/characters/mel/front.svg",
  11203. extra: 736 / 617,
  11204. bottom: 0.017
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Pico",
  11211. height: math.unit(3, "pm")
  11212. },
  11213. {
  11214. name: "Nano",
  11215. height: math.unit(3, "nm")
  11216. },
  11217. {
  11218. name: "Micro",
  11219. height: math.unit(0.3, "mm"),
  11220. default: true
  11221. },
  11222. {
  11223. name: "Micro+",
  11224. height: math.unit(3, "mm")
  11225. },
  11226. {
  11227. name: "Normal",
  11228. height: math.unit(5 + 10.5 / 12, "feet")
  11229. },
  11230. ]
  11231. ))
  11232. characterMakers.push(() => makeCharacter(
  11233. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11234. {
  11235. kaiju: {
  11236. height: math.unit(1.75, "meters"),
  11237. weight: math.unit(55, "kg"),
  11238. name: "Kaiju",
  11239. image: {
  11240. source: "./media/characters/lykonous/kaiju.svg",
  11241. extra: 1055 / 946,
  11242. bottom: 0.135
  11243. }
  11244. },
  11245. },
  11246. [
  11247. {
  11248. name: "Normal",
  11249. height: math.unit(2.5, "meters"),
  11250. default: true
  11251. },
  11252. {
  11253. name: "Kaiju Dragon",
  11254. height: math.unit(60, "meters")
  11255. },
  11256. {
  11257. name: "Mega Kaiju",
  11258. height: math.unit(120, "km")
  11259. },
  11260. {
  11261. name: "Giga Kaiju",
  11262. height: math.unit(200, "megameters")
  11263. },
  11264. {
  11265. name: "Terra Kaiju",
  11266. height: math.unit(400, "gigameters")
  11267. },
  11268. {
  11269. name: "Kaiju Dragon God",
  11270. height: math.unit(13000, "exaparsecs")
  11271. },
  11272. ]
  11273. ))
  11274. characterMakers.push(() => makeCharacter(
  11275. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11276. {
  11277. front: {
  11278. height: math.unit(6, "feet"),
  11279. weight: math.unit(150, "lb"),
  11280. name: "Front",
  11281. image: {
  11282. source: "./media/characters/blü/front.svg",
  11283. extra: 1883 / 1564,
  11284. bottom: 0.031
  11285. }
  11286. },
  11287. },
  11288. [
  11289. {
  11290. name: "Normal",
  11291. height: math.unit(13, "feet"),
  11292. default: true
  11293. },
  11294. {
  11295. name: "Big Boi",
  11296. height: math.unit(150, "meters")
  11297. },
  11298. {
  11299. name: "Mini Stomper",
  11300. height: math.unit(300, "meters")
  11301. },
  11302. {
  11303. name: "Macro",
  11304. height: math.unit(1000, "meters")
  11305. },
  11306. {
  11307. name: "Megamacro",
  11308. height: math.unit(11000, "meters")
  11309. },
  11310. {
  11311. name: "Gigamacro",
  11312. height: math.unit(11000, "km")
  11313. },
  11314. {
  11315. name: "Teramacro",
  11316. height: math.unit(420000, "km")
  11317. },
  11318. {
  11319. name: "Examacro",
  11320. height: math.unit(120, "parsecs")
  11321. },
  11322. {
  11323. name: "God Tho",
  11324. height: math.unit(98000000000, "parsecs")
  11325. },
  11326. ]
  11327. ))
  11328. characterMakers.push(() => makeCharacter(
  11329. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11330. {
  11331. taurFront: {
  11332. height: math.unit(6, "feet"),
  11333. weight: math.unit(200, "lb"),
  11334. name: "Taur (Front)",
  11335. image: {
  11336. source: "./media/characters/scales/taur-front.svg",
  11337. extra: 1,
  11338. bottom: 0.05
  11339. }
  11340. },
  11341. taurBack: {
  11342. height: math.unit(6, "feet"),
  11343. weight: math.unit(200, "lb"),
  11344. name: "Taur (Back)",
  11345. image: {
  11346. source: "./media/characters/scales/taur-back.svg",
  11347. extra: 1,
  11348. bottom: 0.08
  11349. }
  11350. },
  11351. anthro: {
  11352. height: math.unit(6 * 7 / 12, "feet"),
  11353. weight: math.unit(100, "lb"),
  11354. name: "Anthro",
  11355. image: {
  11356. source: "./media/characters/scales/anthro.svg",
  11357. extra: 1,
  11358. bottom: 0.06
  11359. }
  11360. },
  11361. },
  11362. [
  11363. {
  11364. name: "Normal",
  11365. height: math.unit(12, "feet"),
  11366. default: true
  11367. },
  11368. ]
  11369. ))
  11370. characterMakers.push(() => makeCharacter(
  11371. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11372. {
  11373. front: {
  11374. height: math.unit(6, "feet"),
  11375. weight: math.unit(150, "lb"),
  11376. name: "Front",
  11377. image: {
  11378. source: "./media/characters/koragos/front.svg",
  11379. extra: 841 / 794,
  11380. bottom: 0.035
  11381. }
  11382. },
  11383. back: {
  11384. height: math.unit(6, "feet"),
  11385. weight: math.unit(150, "lb"),
  11386. name: "Back",
  11387. image: {
  11388. source: "./media/characters/koragos/back.svg",
  11389. extra: 841 / 810,
  11390. bottom: 0.022
  11391. }
  11392. },
  11393. },
  11394. [
  11395. {
  11396. name: "Normal",
  11397. height: math.unit(6 + 11 / 12, "feet"),
  11398. default: true
  11399. },
  11400. {
  11401. name: "Macro",
  11402. height: math.unit(490, "feet")
  11403. },
  11404. {
  11405. name: "Megamacro",
  11406. height: math.unit(10, "miles")
  11407. },
  11408. {
  11409. name: "Gigamacro",
  11410. height: math.unit(50, "miles")
  11411. },
  11412. ]
  11413. ))
  11414. characterMakers.push(() => makeCharacter(
  11415. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11416. {
  11417. front: {
  11418. height: math.unit(6, "feet"),
  11419. weight: math.unit(250, "lb"),
  11420. name: "Front",
  11421. image: {
  11422. source: "./media/characters/xylrem/front.svg",
  11423. extra: 3323 / 3050,
  11424. bottom: 0.065
  11425. }
  11426. },
  11427. },
  11428. [
  11429. {
  11430. name: "Micro",
  11431. height: math.unit(4, "feet")
  11432. },
  11433. {
  11434. name: "Normal",
  11435. height: math.unit(16, "feet"),
  11436. default: true
  11437. },
  11438. {
  11439. name: "Macro",
  11440. height: math.unit(2720, "feet")
  11441. },
  11442. {
  11443. name: "Megamacro",
  11444. height: math.unit(25000, "miles")
  11445. },
  11446. ]
  11447. ))
  11448. characterMakers.push(() => makeCharacter(
  11449. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11450. {
  11451. front: {
  11452. height: math.unit(8, "feet"),
  11453. weight: math.unit(250, "kg"),
  11454. name: "Front",
  11455. image: {
  11456. source: "./media/characters/ikideru/front.svg",
  11457. extra: 930 / 870,
  11458. bottom: 0.087
  11459. }
  11460. },
  11461. back: {
  11462. height: math.unit(8, "feet"),
  11463. weight: math.unit(250, "kg"),
  11464. name: "Back",
  11465. image: {
  11466. source: "./media/characters/ikideru/back.svg",
  11467. extra: 919 / 852,
  11468. bottom: 0.055
  11469. }
  11470. },
  11471. },
  11472. [
  11473. {
  11474. name: "Rare",
  11475. height: math.unit(8, "feet"),
  11476. default: true
  11477. },
  11478. {
  11479. name: "Playful Loom",
  11480. height: math.unit(80, "feet")
  11481. },
  11482. {
  11483. name: "City Leaner",
  11484. height: math.unit(230, "feet")
  11485. },
  11486. {
  11487. name: "Megamacro",
  11488. height: math.unit(2500, "feet")
  11489. },
  11490. {
  11491. name: "Gigamacro",
  11492. height: math.unit(26400, "feet")
  11493. },
  11494. {
  11495. name: "Tectonic Shifter",
  11496. height: math.unit(1.7, "megameters")
  11497. },
  11498. {
  11499. name: "Planet Carer",
  11500. height: math.unit(21, "megameters")
  11501. },
  11502. {
  11503. name: "God",
  11504. height: math.unit(11157.22, "parsecs")
  11505. },
  11506. ]
  11507. ))
  11508. characterMakers.push(() => makeCharacter(
  11509. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11510. {
  11511. front: {
  11512. height: math.unit(6, "feet"),
  11513. weight: math.unit(120, "lb"),
  11514. name: "Front",
  11515. image: {
  11516. source: "./media/characters/neo/front.svg"
  11517. }
  11518. },
  11519. },
  11520. [
  11521. {
  11522. name: "Micro",
  11523. height: math.unit(2, "inches"),
  11524. default: true
  11525. },
  11526. {
  11527. name: "Human Size",
  11528. height: math.unit(5 + 8 / 12, "feet")
  11529. },
  11530. ]
  11531. ))
  11532. characterMakers.push(() => makeCharacter(
  11533. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11534. {
  11535. front: {
  11536. height: math.unit(13 + 10 / 12, "feet"),
  11537. weight: math.unit(5320, "lb"),
  11538. name: "Front",
  11539. image: {
  11540. source: "./media/characters/chauncey-chantz/front.svg",
  11541. extra: 1587 / 1435,
  11542. bottom: 0.02
  11543. }
  11544. },
  11545. },
  11546. [
  11547. {
  11548. name: "Normal",
  11549. height: math.unit(13 + 10 / 12, "feet"),
  11550. default: true
  11551. },
  11552. {
  11553. name: "Macro",
  11554. height: math.unit(45, "feet")
  11555. },
  11556. {
  11557. name: "Megamacro",
  11558. height: math.unit(250, "miles")
  11559. },
  11560. {
  11561. name: "Planetary",
  11562. height: math.unit(10000, "miles")
  11563. },
  11564. {
  11565. name: "Galactic",
  11566. height: math.unit(40000, "parsecs")
  11567. },
  11568. {
  11569. name: "Universal",
  11570. height: math.unit(1, "yottameter")
  11571. },
  11572. ]
  11573. ))
  11574. characterMakers.push(() => makeCharacter(
  11575. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11576. {
  11577. front: {
  11578. height: math.unit(6, "feet"),
  11579. weight: math.unit(150, "lb"),
  11580. name: "Front",
  11581. image: {
  11582. source: "./media/characters/epifox/front.svg",
  11583. extra: 1,
  11584. bottom: 0.075
  11585. }
  11586. },
  11587. },
  11588. [
  11589. {
  11590. name: "Micro",
  11591. height: math.unit(6, "inches")
  11592. },
  11593. {
  11594. name: "Normal",
  11595. height: math.unit(12, "feet"),
  11596. default: true
  11597. },
  11598. {
  11599. name: "Macro",
  11600. height: math.unit(3810, "feet")
  11601. },
  11602. {
  11603. name: "Megamacro",
  11604. height: math.unit(500, "miles")
  11605. },
  11606. ]
  11607. ))
  11608. characterMakers.push(() => makeCharacter(
  11609. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11610. {
  11611. front: {
  11612. height: math.unit(1.8796, "m"),
  11613. weight: math.unit(230, "lb"),
  11614. name: "Front",
  11615. image: {
  11616. source: "./media/characters/colin-t/front.svg",
  11617. extra: 1272 / 1193,
  11618. bottom: 0.07
  11619. }
  11620. },
  11621. },
  11622. [
  11623. {
  11624. name: "Micro",
  11625. height: math.unit(0.571, "meters")
  11626. },
  11627. {
  11628. name: "Normal",
  11629. height: math.unit(1.8796, "meters"),
  11630. default: true
  11631. },
  11632. {
  11633. name: "Tall",
  11634. height: math.unit(4, "meters")
  11635. },
  11636. {
  11637. name: "Macro",
  11638. height: math.unit(67.241, "meters")
  11639. },
  11640. {
  11641. name: "Megamacro",
  11642. height: math.unit(371.856, "meters")
  11643. },
  11644. {
  11645. name: "Planetary",
  11646. height: math.unit(12631.5689, "km")
  11647. },
  11648. ]
  11649. ))
  11650. characterMakers.push(() => makeCharacter(
  11651. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11652. {
  11653. front: {
  11654. height: math.unit(1.85, "meters"),
  11655. weight: math.unit(80, "kg"),
  11656. name: "Front",
  11657. image: {
  11658. source: "./media/characters/matvei/front.svg",
  11659. extra: 614 / 594,
  11660. bottom: 0.01
  11661. }
  11662. },
  11663. },
  11664. [
  11665. {
  11666. name: "Normal",
  11667. height: math.unit(1.85, "meters"),
  11668. default: true
  11669. },
  11670. ]
  11671. ))
  11672. characterMakers.push(() => makeCharacter(
  11673. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11674. {
  11675. front: {
  11676. height: math.unit(5 + 9 / 12, "feet"),
  11677. weight: math.unit(70, "lb"),
  11678. name: "Front",
  11679. image: {
  11680. source: "./media/characters/quincy/front.svg",
  11681. extra: 3041 / 2751
  11682. }
  11683. },
  11684. back: {
  11685. height: math.unit(5 + 9 / 12, "feet"),
  11686. weight: math.unit(70, "lb"),
  11687. name: "Back",
  11688. image: {
  11689. source: "./media/characters/quincy/back.svg",
  11690. extra: 3041 / 2751
  11691. }
  11692. },
  11693. flying: {
  11694. height: math.unit(5 + 4 / 12, "feet"),
  11695. weight: math.unit(70, "lb"),
  11696. name: "Flying",
  11697. image: {
  11698. source: "./media/characters/quincy/flying.svg",
  11699. extra: 1044 / 930
  11700. }
  11701. },
  11702. },
  11703. [
  11704. {
  11705. name: "Micro",
  11706. height: math.unit(3, "cm")
  11707. },
  11708. {
  11709. name: "Normal",
  11710. height: math.unit(5 + 9 / 12, "feet")
  11711. },
  11712. {
  11713. name: "Macro",
  11714. height: math.unit(200, "meters"),
  11715. default: true
  11716. },
  11717. {
  11718. name: "Megamacro",
  11719. height: math.unit(1000, "meters")
  11720. },
  11721. ]
  11722. ))
  11723. characterMakers.push(() => makeCharacter(
  11724. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11725. {
  11726. front: {
  11727. height: math.unit(4 + 7 / 12, "feet"),
  11728. weight: math.unit(50, "lb"),
  11729. name: "Front",
  11730. image: {
  11731. source: "./media/characters/vanrel/front.svg",
  11732. extra: 1,
  11733. bottom: 0.02
  11734. }
  11735. },
  11736. frontAlt: {
  11737. height: math.unit(4 + 7 / 12, "feet"),
  11738. weight: math.unit(50, "lb"),
  11739. name: "Front-alt",
  11740. image: {
  11741. source: "./media/characters/vanrel/front-alt.svg",
  11742. extra: 1,
  11743. bottom: 15 / 1511
  11744. }
  11745. },
  11746. elemental: {
  11747. height: math.unit(3, "feet"),
  11748. weight: math.unit(50, "lb"),
  11749. name: "Elemental",
  11750. image: {
  11751. source: "./media/characters/vanrel/elemental.svg",
  11752. extra: 192.3 / 162.8,
  11753. bottom: 1.79 / 194.17
  11754. }
  11755. },
  11756. side: {
  11757. height: math.unit(4 + 7 / 12, "feet"),
  11758. weight: math.unit(50, "lb"),
  11759. name: "Side",
  11760. image: {
  11761. source: "./media/characters/vanrel/side.svg",
  11762. extra: 1,
  11763. bottom: 0.025
  11764. }
  11765. },
  11766. tome: {
  11767. height: math.unit(1.35, "feet"),
  11768. weight: math.unit(10, "lb"),
  11769. name: "Vanrel's Tome",
  11770. rename: true,
  11771. image: {
  11772. source: "./media/characters/vanrel/tome.svg"
  11773. }
  11774. },
  11775. beans: {
  11776. height: math.unit(0.89, "feet"),
  11777. name: "Beans",
  11778. image: {
  11779. source: "./media/characters/vanrel/beans.svg"
  11780. }
  11781. },
  11782. },
  11783. [
  11784. {
  11785. name: "Normal",
  11786. height: math.unit(4 + 7 / 12, "feet"),
  11787. default: true
  11788. },
  11789. ]
  11790. ))
  11791. characterMakers.push(() => makeCharacter(
  11792. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11793. {
  11794. front: {
  11795. height: math.unit(7 + 5 / 12, "feet"),
  11796. weight: math.unit(150, "lb"),
  11797. name: "Front",
  11798. image: {
  11799. source: "./media/characters/kuiper-vanrel/front.svg",
  11800. extra: 1118 / 1068,
  11801. bottom: 0.09
  11802. }
  11803. },
  11804. foot: {
  11805. height: math.unit(0.55, "meters"),
  11806. name: "Foot",
  11807. image: {
  11808. source: "./media/characters/kuiper-vanrel/foot.svg",
  11809. }
  11810. },
  11811. battle: {
  11812. height: math.unit(6.824, "feet"),
  11813. weight: math.unit(150, "lb"),
  11814. name: "Battle",
  11815. image: {
  11816. source: "./media/characters/kuiper-vanrel/battle.svg",
  11817. extra: 1466 / 1327,
  11818. bottom: 29 / 1492.5
  11819. }
  11820. },
  11821. battleAlt: {
  11822. height: math.unit(6.824, "feet"),
  11823. weight: math.unit(150, "lb"),
  11824. name: "Battle (Alt)",
  11825. image: {
  11826. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11827. extra: 2081 / 1965,
  11828. bottom: 40 / 2121
  11829. }
  11830. },
  11831. },
  11832. [
  11833. {
  11834. name: "Normal",
  11835. height: math.unit(7 + 5 / 12, "feet"),
  11836. default: true
  11837. },
  11838. ]
  11839. ))
  11840. characterMakers.push(() => makeCharacter(
  11841. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11842. {
  11843. front: {
  11844. height: math.unit(8 + 5 / 12, "feet"),
  11845. weight: math.unit(150, "lb"),
  11846. name: "Front",
  11847. image: {
  11848. source: "./media/characters/keset-vanrel/front.svg",
  11849. extra: 1150 / 1084,
  11850. bottom: 0.05
  11851. }
  11852. },
  11853. hand: {
  11854. height: math.unit(0.6, "meters"),
  11855. name: "Hand",
  11856. image: {
  11857. source: "./media/characters/keset-vanrel/hand.svg"
  11858. }
  11859. },
  11860. foot: {
  11861. height: math.unit(0.94978, "meters"),
  11862. name: "Foot",
  11863. image: {
  11864. source: "./media/characters/keset-vanrel/foot.svg"
  11865. }
  11866. },
  11867. battle: {
  11868. height: math.unit(7.408, "feet"),
  11869. weight: math.unit(150, "lb"),
  11870. name: "Battle",
  11871. image: {
  11872. source: "./media/characters/keset-vanrel/battle.svg",
  11873. extra: 1890 / 1386,
  11874. bottom: 73.28 / 1970
  11875. }
  11876. },
  11877. },
  11878. [
  11879. {
  11880. name: "Normal",
  11881. height: math.unit(8 + 5 / 12, "feet"),
  11882. default: true
  11883. },
  11884. ]
  11885. ))
  11886. characterMakers.push(() => makeCharacter(
  11887. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11888. {
  11889. front: {
  11890. height: math.unit(6, "feet"),
  11891. weight: math.unit(150, "lb"),
  11892. name: "Front",
  11893. image: {
  11894. source: "./media/characters/neos/front.svg",
  11895. extra: 1696 / 992,
  11896. bottom: 0.14
  11897. }
  11898. },
  11899. },
  11900. [
  11901. {
  11902. name: "Normal",
  11903. height: math.unit(54, "cm"),
  11904. default: true
  11905. },
  11906. {
  11907. name: "Macro",
  11908. height: math.unit(100, "m")
  11909. },
  11910. {
  11911. name: "Megamacro",
  11912. height: math.unit(10, "km")
  11913. },
  11914. {
  11915. name: "Megamacro+",
  11916. height: math.unit(100, "km")
  11917. },
  11918. {
  11919. name: "Gigamacro",
  11920. height: math.unit(100, "Mm")
  11921. },
  11922. {
  11923. name: "Teramacro",
  11924. height: math.unit(100, "Gm")
  11925. },
  11926. {
  11927. name: "Examacro",
  11928. height: math.unit(100, "Em")
  11929. },
  11930. {
  11931. name: "Godly",
  11932. height: math.unit(10000, "Ym")
  11933. },
  11934. {
  11935. name: "Beyond Godly",
  11936. height: math.unit(25, "multiverses")
  11937. },
  11938. ]
  11939. ))
  11940. characterMakers.push(() => makeCharacter(
  11941. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11942. {
  11943. feminine: {
  11944. height: math.unit(5, "feet"),
  11945. weight: math.unit(100, "lb"),
  11946. name: "Feminine",
  11947. image: {
  11948. source: "./media/characters/sammy-mouse/feminine.svg",
  11949. extra: 2526 / 2425,
  11950. bottom: 0.123
  11951. }
  11952. },
  11953. masculine: {
  11954. height: math.unit(5, "feet"),
  11955. weight: math.unit(100, "lb"),
  11956. name: "Masculine",
  11957. image: {
  11958. source: "./media/characters/sammy-mouse/masculine.svg",
  11959. extra: 2526 / 2425,
  11960. bottom: 0.123
  11961. }
  11962. },
  11963. },
  11964. [
  11965. {
  11966. name: "Micro",
  11967. height: math.unit(5, "inches")
  11968. },
  11969. {
  11970. name: "Normal",
  11971. height: math.unit(5, "feet"),
  11972. default: true
  11973. },
  11974. {
  11975. name: "Macro",
  11976. height: math.unit(60, "feet")
  11977. },
  11978. ]
  11979. ))
  11980. characterMakers.push(() => makeCharacter(
  11981. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11982. {
  11983. front: {
  11984. height: math.unit(4, "feet"),
  11985. weight: math.unit(50, "lb"),
  11986. name: "Front",
  11987. image: {
  11988. source: "./media/characters/kole/front.svg",
  11989. extra: 1423 / 1303,
  11990. bottom: 0.025
  11991. }
  11992. },
  11993. back: {
  11994. height: math.unit(4, "feet"),
  11995. weight: math.unit(50, "lb"),
  11996. name: "Back",
  11997. image: {
  11998. source: "./media/characters/kole/back.svg",
  11999. extra: 1426 / 1280,
  12000. bottom: 0.02
  12001. }
  12002. },
  12003. },
  12004. [
  12005. {
  12006. name: "Normal",
  12007. height: math.unit(4, "feet"),
  12008. default: true
  12009. },
  12010. ]
  12011. ))
  12012. characterMakers.push(() => makeCharacter(
  12013. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  12014. {
  12015. front: {
  12016. height: math.unit(2 + 6 / 12, "feet"),
  12017. weight: math.unit(20, "lb"),
  12018. name: "Front",
  12019. image: {
  12020. source: "./media/characters/rufran/front.svg",
  12021. extra: 2041 / 1839,
  12022. bottom: 0.055
  12023. }
  12024. },
  12025. back: {
  12026. height: math.unit(2 + 6 / 12, "feet"),
  12027. weight: math.unit(20, "lb"),
  12028. name: "Back",
  12029. image: {
  12030. source: "./media/characters/rufran/back.svg",
  12031. extra: 2054 / 1839,
  12032. bottom: 0.01
  12033. }
  12034. },
  12035. hand: {
  12036. height: math.unit(0.2166, "meters"),
  12037. name: "Hand",
  12038. image: {
  12039. source: "./media/characters/rufran/hand.svg"
  12040. }
  12041. },
  12042. foot: {
  12043. height: math.unit(0.185, "meters"),
  12044. name: "Foot",
  12045. image: {
  12046. source: "./media/characters/rufran/foot.svg"
  12047. }
  12048. },
  12049. },
  12050. [
  12051. {
  12052. name: "Micro",
  12053. height: math.unit(1, "inch")
  12054. },
  12055. {
  12056. name: "Normal",
  12057. height: math.unit(2 + 6 / 12, "feet"),
  12058. default: true
  12059. },
  12060. {
  12061. name: "Big",
  12062. height: math.unit(60, "feet")
  12063. },
  12064. {
  12065. name: "Macro",
  12066. height: math.unit(325, "feet")
  12067. },
  12068. ]
  12069. ))
  12070. characterMakers.push(() => makeCharacter(
  12071. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12072. {
  12073. front: {
  12074. height: math.unit(0.3, "meters"),
  12075. weight: math.unit(3.5, "kg"),
  12076. name: "Front",
  12077. image: {
  12078. source: "./media/characters/chip/front.svg",
  12079. extra: 748 / 674
  12080. }
  12081. },
  12082. },
  12083. [
  12084. {
  12085. name: "Micro",
  12086. height: math.unit(1, "inch"),
  12087. default: true
  12088. },
  12089. ]
  12090. ))
  12091. characterMakers.push(() => makeCharacter(
  12092. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12093. {
  12094. side: {
  12095. height: math.unit(2.3, "meters"),
  12096. weight: math.unit(3500, "lb"),
  12097. name: "Side",
  12098. image: {
  12099. source: "./media/characters/torvid/side.svg",
  12100. extra: 1972 / 722,
  12101. bottom: 0.035
  12102. }
  12103. },
  12104. },
  12105. [
  12106. {
  12107. name: "Normal",
  12108. height: math.unit(2.3, "meters"),
  12109. default: true
  12110. },
  12111. ]
  12112. ))
  12113. characterMakers.push(() => makeCharacter(
  12114. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12115. {
  12116. front: {
  12117. height: math.unit(2, "meters"),
  12118. weight: math.unit(150.5, "kg"),
  12119. name: "Front",
  12120. image: {
  12121. source: "./media/characters/susan/front.svg",
  12122. extra: 693 / 635,
  12123. bottom: 0.05
  12124. }
  12125. },
  12126. },
  12127. [
  12128. {
  12129. name: "Megamacro",
  12130. height: math.unit(505, "miles"),
  12131. default: true
  12132. },
  12133. ]
  12134. ))
  12135. characterMakers.push(() => makeCharacter(
  12136. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12137. {
  12138. front: {
  12139. height: math.unit(6, "feet"),
  12140. weight: math.unit(150, "lb"),
  12141. name: "Front",
  12142. image: {
  12143. source: "./media/characters/raindrops/front.svg",
  12144. extra: 2655 / 2461,
  12145. bottom: 49 / 2705
  12146. }
  12147. },
  12148. back: {
  12149. height: math.unit(6, "feet"),
  12150. weight: math.unit(150, "lb"),
  12151. name: "Back",
  12152. image: {
  12153. source: "./media/characters/raindrops/back.svg",
  12154. extra: 2574 / 2400,
  12155. bottom: 65 / 2634
  12156. }
  12157. },
  12158. },
  12159. [
  12160. {
  12161. name: "Micro",
  12162. height: math.unit(6, "inches")
  12163. },
  12164. {
  12165. name: "Normal",
  12166. height: math.unit(6 + 2 / 12, "feet")
  12167. },
  12168. {
  12169. name: "Macro",
  12170. height: math.unit(131, "feet"),
  12171. default: true
  12172. },
  12173. {
  12174. name: "Megamacro",
  12175. height: math.unit(15, "miles")
  12176. },
  12177. {
  12178. name: "Gigamacro",
  12179. height: math.unit(4000, "miles")
  12180. },
  12181. {
  12182. name: "Teramacro",
  12183. height: math.unit(315000, "miles")
  12184. },
  12185. ]
  12186. ))
  12187. characterMakers.push(() => makeCharacter(
  12188. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12189. {
  12190. front: {
  12191. height: math.unit(2.794, "meters"),
  12192. weight: math.unit(325, "kg"),
  12193. name: "Front",
  12194. image: {
  12195. source: "./media/characters/tezwa/front.svg",
  12196. extra: 2083 / 1906,
  12197. bottom: 0.031
  12198. }
  12199. },
  12200. foot: {
  12201. height: math.unit(0.687, "meters"),
  12202. name: "Foot",
  12203. image: {
  12204. source: "./media/characters/tezwa/foot.svg"
  12205. }
  12206. },
  12207. },
  12208. [
  12209. {
  12210. name: "Normal",
  12211. height: math.unit(9 + 2 / 12, "feet"),
  12212. default: true
  12213. },
  12214. ]
  12215. ))
  12216. characterMakers.push(() => makeCharacter(
  12217. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12218. {
  12219. front: {
  12220. height: math.unit(58, "feet"),
  12221. weight: math.unit(89000, "lb"),
  12222. name: "Front",
  12223. image: {
  12224. source: "./media/characters/typhus/front.svg",
  12225. extra: 816 / 800,
  12226. bottom: 0.065
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Macro",
  12233. height: math.unit(58, "feet"),
  12234. default: true
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(12, "feet"),
  12243. weight: math.unit(6, "tonnes"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/lyra-von-wulf/front.svg",
  12247. extra: 1,
  12248. bottom: 0.10
  12249. }
  12250. },
  12251. frontMecha: {
  12252. height: math.unit(12, "feet"),
  12253. weight: math.unit(12, "tonnes"),
  12254. name: "Front (Mecha)",
  12255. image: {
  12256. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12257. extra: 1,
  12258. bottom: 0.042
  12259. }
  12260. },
  12261. maw: {
  12262. height: math.unit(2.2, "feet"),
  12263. name: "Maw",
  12264. image: {
  12265. source: "./media/characters/lyra-von-wulf/maw.svg"
  12266. }
  12267. },
  12268. },
  12269. [
  12270. {
  12271. name: "Normal",
  12272. height: math.unit(12, "feet"),
  12273. default: true
  12274. },
  12275. {
  12276. name: "Classic",
  12277. height: math.unit(50, "feet")
  12278. },
  12279. {
  12280. name: "Macro",
  12281. height: math.unit(500, "feet")
  12282. },
  12283. {
  12284. name: "Megamacro",
  12285. height: math.unit(1, "mile")
  12286. },
  12287. {
  12288. name: "Gigamacro",
  12289. height: math.unit(400, "miles")
  12290. },
  12291. {
  12292. name: "Teramacro",
  12293. height: math.unit(22000, "miles")
  12294. },
  12295. {
  12296. name: "Solarmacro",
  12297. height: math.unit(8600000, "miles")
  12298. },
  12299. {
  12300. name: "Galactic",
  12301. height: math.unit(1057000, "lightyears")
  12302. },
  12303. ]
  12304. ))
  12305. characterMakers.push(() => makeCharacter(
  12306. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12307. {
  12308. front: {
  12309. height: math.unit(6 + 10 / 12, "feet"),
  12310. weight: math.unit(150, "lb"),
  12311. name: "Front",
  12312. image: {
  12313. source: "./media/characters/dixon/front.svg",
  12314. extra: 3361 / 3209,
  12315. bottom: 0.01
  12316. }
  12317. },
  12318. },
  12319. [
  12320. {
  12321. name: "Normal",
  12322. height: math.unit(6 + 10 / 12, "feet"),
  12323. default: true
  12324. },
  12325. {
  12326. name: "Big",
  12327. height: math.unit(12, "meters")
  12328. },
  12329. {
  12330. name: "Macro",
  12331. height: math.unit(500, "meters")
  12332. },
  12333. {
  12334. name: "Megamacro",
  12335. height: math.unit(2, "km")
  12336. },
  12337. ]
  12338. ))
  12339. characterMakers.push(() => makeCharacter(
  12340. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12341. {
  12342. front: {
  12343. height: math.unit(185, "cm"),
  12344. weight: math.unit(68, "kg"),
  12345. name: "Front",
  12346. image: {
  12347. source: "./media/characters/kauko/front.svg",
  12348. extra: 1455 / 1421,
  12349. bottom: 0.03
  12350. }
  12351. },
  12352. back: {
  12353. height: math.unit(185, "cm"),
  12354. weight: math.unit(68, "kg"),
  12355. name: "Back",
  12356. image: {
  12357. source: "./media/characters/kauko/back.svg",
  12358. extra: 1455 / 1421,
  12359. bottom: 0.004
  12360. }
  12361. },
  12362. },
  12363. [
  12364. {
  12365. name: "Normal",
  12366. height: math.unit(185, "cm"),
  12367. default: true
  12368. },
  12369. ]
  12370. ))
  12371. characterMakers.push(() => makeCharacter(
  12372. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12373. {
  12374. front: {
  12375. height: math.unit(6, "feet"),
  12376. weight: math.unit(150, "kg"),
  12377. name: "Front",
  12378. image: {
  12379. source: "./media/characters/varg/front.svg",
  12380. extra: 1108 / 1018,
  12381. bottom: 0.0375
  12382. }
  12383. },
  12384. },
  12385. [
  12386. {
  12387. name: "Normal",
  12388. height: math.unit(5, "meters")
  12389. },
  12390. {
  12391. name: "Macro",
  12392. height: math.unit(200, "meters")
  12393. },
  12394. {
  12395. name: "Megamacro",
  12396. height: math.unit(20, "kilometers")
  12397. },
  12398. {
  12399. name: "True Size",
  12400. height: math.unit(211, "km"),
  12401. default: true
  12402. },
  12403. {
  12404. name: "Gigamacro",
  12405. height: math.unit(1000, "km")
  12406. },
  12407. {
  12408. name: "Gigamacro+",
  12409. height: math.unit(8000, "km")
  12410. },
  12411. {
  12412. name: "Teramacro",
  12413. height: math.unit(1000000, "km")
  12414. },
  12415. ]
  12416. ))
  12417. characterMakers.push(() => makeCharacter(
  12418. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12419. {
  12420. front: {
  12421. height: math.unit(7 + 7 / 12, "feet"),
  12422. weight: math.unit(267, "lb"),
  12423. name: "Front",
  12424. image: {
  12425. source: "./media/characters/dayza/front.svg",
  12426. extra: 1262 / 1200,
  12427. bottom: 0.035
  12428. }
  12429. },
  12430. side: {
  12431. height: math.unit(7 + 7 / 12, "feet"),
  12432. weight: math.unit(267, "lb"),
  12433. name: "Side",
  12434. image: {
  12435. source: "./media/characters/dayza/side.svg",
  12436. extra: 1295 / 1245,
  12437. bottom: 0.05
  12438. }
  12439. },
  12440. back: {
  12441. height: math.unit(7 + 7 / 12, "feet"),
  12442. weight: math.unit(267, "lb"),
  12443. name: "Back",
  12444. image: {
  12445. source: "./media/characters/dayza/back.svg",
  12446. extra: 1241 / 1170
  12447. }
  12448. },
  12449. },
  12450. [
  12451. {
  12452. name: "Normal",
  12453. height: math.unit(7 + 7 / 12, "feet"),
  12454. default: true
  12455. },
  12456. {
  12457. name: "Macro",
  12458. height: math.unit(155, "feet")
  12459. },
  12460. ]
  12461. ))
  12462. characterMakers.push(() => makeCharacter(
  12463. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12464. {
  12465. front: {
  12466. height: math.unit(6 + 5 / 12, "feet"),
  12467. weight: math.unit(160, "lb"),
  12468. name: "Front",
  12469. image: {
  12470. source: "./media/characters/xanthos/front.svg",
  12471. extra: 1,
  12472. bottom: 0.04
  12473. }
  12474. },
  12475. back: {
  12476. height: math.unit(6 + 5 / 12, "feet"),
  12477. weight: math.unit(160, "lb"),
  12478. name: "Back",
  12479. image: {
  12480. source: "./media/characters/xanthos/back.svg",
  12481. extra: 1,
  12482. bottom: 0.03
  12483. }
  12484. },
  12485. hand: {
  12486. height: math.unit(0.928, "feet"),
  12487. name: "Hand",
  12488. image: {
  12489. source: "./media/characters/xanthos/hand.svg"
  12490. }
  12491. },
  12492. foot: {
  12493. height: math.unit(1.286, "feet"),
  12494. name: "Foot",
  12495. image: {
  12496. source: "./media/characters/xanthos/foot.svg"
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Normal",
  12503. height: math.unit(6 + 5 / 12, "feet"),
  12504. default: true
  12505. },
  12506. {
  12507. name: "Normal+",
  12508. height: math.unit(6, "meters")
  12509. },
  12510. {
  12511. name: "Macro",
  12512. height: math.unit(40, "feet")
  12513. },
  12514. {
  12515. name: "Macro+",
  12516. height: math.unit(200, "meters")
  12517. },
  12518. {
  12519. name: "Megamacro",
  12520. height: math.unit(20, "km")
  12521. },
  12522. {
  12523. name: "Megamacro+",
  12524. height: math.unit(100, "km")
  12525. },
  12526. ]
  12527. ))
  12528. characterMakers.push(() => makeCharacter(
  12529. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12530. {
  12531. front: {
  12532. height: math.unit(6 + 3 / 12, "feet"),
  12533. weight: math.unit(215, "lb"),
  12534. name: "Front",
  12535. image: {
  12536. source: "./media/characters/grynn/front.svg",
  12537. extra: 4627 / 4209,
  12538. bottom: 0.047
  12539. }
  12540. },
  12541. },
  12542. [
  12543. {
  12544. name: "Micro",
  12545. height: math.unit(6, "inches")
  12546. },
  12547. {
  12548. name: "Normal",
  12549. height: math.unit(6 + 3 / 12, "feet"),
  12550. default: true
  12551. },
  12552. {
  12553. name: "Big",
  12554. height: math.unit(104, "feet")
  12555. },
  12556. {
  12557. name: "Macro",
  12558. height: math.unit(944, "feet")
  12559. },
  12560. {
  12561. name: "Macro+",
  12562. height: math.unit(9480, "feet")
  12563. },
  12564. {
  12565. name: "Megamacro",
  12566. height: math.unit(78752, "feet")
  12567. },
  12568. {
  12569. name: "Megamacro+",
  12570. height: math.unit(630128, "feet")
  12571. },
  12572. {
  12573. name: "Megamacro++",
  12574. height: math.unit(3150695, "feet")
  12575. },
  12576. ]
  12577. ))
  12578. characterMakers.push(() => makeCharacter(
  12579. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12580. {
  12581. front: {
  12582. height: math.unit(7 + 5 / 12, "feet"),
  12583. weight: math.unit(450, "lb"),
  12584. name: "Front",
  12585. image: {
  12586. source: "./media/characters/mocha-aura/front.svg",
  12587. extra: 1907 / 1817,
  12588. bottom: 0.04
  12589. }
  12590. },
  12591. back: {
  12592. height: math.unit(7 + 5 / 12, "feet"),
  12593. weight: math.unit(450, "lb"),
  12594. name: "Back",
  12595. image: {
  12596. source: "./media/characters/mocha-aura/back.svg",
  12597. extra: 1900 / 1825,
  12598. bottom: 0.045
  12599. }
  12600. },
  12601. },
  12602. [
  12603. {
  12604. name: "Nano",
  12605. height: math.unit(1, "nm")
  12606. },
  12607. {
  12608. name: "Megamicro",
  12609. height: math.unit(1, "mm")
  12610. },
  12611. {
  12612. name: "Micro",
  12613. height: math.unit(3, "inches")
  12614. },
  12615. {
  12616. name: "Normal",
  12617. height: math.unit(7 + 5 / 12, "feet"),
  12618. default: true
  12619. },
  12620. {
  12621. name: "Macro",
  12622. height: math.unit(30, "feet")
  12623. },
  12624. {
  12625. name: "Megamacro",
  12626. height: math.unit(3500, "feet")
  12627. },
  12628. {
  12629. name: "Teramacro",
  12630. height: math.unit(500000, "miles")
  12631. },
  12632. {
  12633. name: "Petamacro",
  12634. height: math.unit(50000000000000000, "parsecs")
  12635. },
  12636. ]
  12637. ))
  12638. characterMakers.push(() => makeCharacter(
  12639. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12640. {
  12641. front: {
  12642. height: math.unit(6, "feet"),
  12643. weight: math.unit(150, "lb"),
  12644. name: "Front",
  12645. image: {
  12646. source: "./media/characters/ilisha-devya/front.svg",
  12647. extra: 1,
  12648. bottom: 0.175
  12649. }
  12650. },
  12651. back: {
  12652. height: math.unit(6, "feet"),
  12653. weight: math.unit(150, "lb"),
  12654. name: "Back",
  12655. image: {
  12656. source: "./media/characters/ilisha-devya/back.svg",
  12657. extra: 1,
  12658. bottom: 0.015
  12659. }
  12660. },
  12661. },
  12662. [
  12663. {
  12664. name: "Macro",
  12665. height: math.unit(500, "feet"),
  12666. default: true
  12667. },
  12668. {
  12669. name: "Megamacro",
  12670. height: math.unit(10, "miles")
  12671. },
  12672. {
  12673. name: "Gigamacro",
  12674. height: math.unit(100000, "miles")
  12675. },
  12676. {
  12677. name: "Examacro",
  12678. height: math.unit(1e9, "lightyears")
  12679. },
  12680. {
  12681. name: "Omniversal",
  12682. height: math.unit(1e33, "lightyears")
  12683. },
  12684. {
  12685. name: "Beyond Infinite",
  12686. height: math.unit(1e100, "lightyears")
  12687. },
  12688. ]
  12689. ))
  12690. characterMakers.push(() => makeCharacter(
  12691. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12692. {
  12693. Side: {
  12694. height: math.unit(6, "feet"),
  12695. weight: math.unit(150, "lb"),
  12696. name: "Side",
  12697. image: {
  12698. source: "./media/characters/mira/side.svg",
  12699. extra: 900 / 799,
  12700. bottom: 0.02
  12701. }
  12702. },
  12703. },
  12704. [
  12705. {
  12706. name: "Human Size",
  12707. height: math.unit(6, "feet")
  12708. },
  12709. {
  12710. name: "Macro",
  12711. height: math.unit(100, "feet"),
  12712. default: true
  12713. },
  12714. {
  12715. name: "Megamacro",
  12716. height: math.unit(10, "miles")
  12717. },
  12718. {
  12719. name: "Gigamacro",
  12720. height: math.unit(25000, "miles")
  12721. },
  12722. {
  12723. name: "Teramacro",
  12724. height: math.unit(300, "AU")
  12725. },
  12726. {
  12727. name: "Full Size",
  12728. height: math.unit(4.5e10, "lightyears")
  12729. },
  12730. ]
  12731. ))
  12732. characterMakers.push(() => makeCharacter(
  12733. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12734. {
  12735. front: {
  12736. height: math.unit(6, "feet"),
  12737. weight: math.unit(150, "lb"),
  12738. name: "Front",
  12739. image: {
  12740. source: "./media/characters/holly/front.svg",
  12741. extra: 639 / 606
  12742. }
  12743. },
  12744. back: {
  12745. height: math.unit(6, "feet"),
  12746. weight: math.unit(150, "lb"),
  12747. name: "Back",
  12748. image: {
  12749. source: "./media/characters/holly/back.svg",
  12750. extra: 623 / 598
  12751. }
  12752. },
  12753. frontWorking: {
  12754. height: math.unit(6, "feet"),
  12755. weight: math.unit(150, "lb"),
  12756. name: "Front (Working)",
  12757. image: {
  12758. source: "./media/characters/holly/front-working.svg",
  12759. extra: 607 / 577,
  12760. bottom: 0.048
  12761. }
  12762. },
  12763. },
  12764. [
  12765. {
  12766. name: "Normal",
  12767. height: math.unit(12 + 3 / 12, "feet"),
  12768. default: true
  12769. },
  12770. ]
  12771. ))
  12772. characterMakers.push(() => makeCharacter(
  12773. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12774. {
  12775. front: {
  12776. height: math.unit(6, "feet"),
  12777. weight: math.unit(150, "lb"),
  12778. name: "Front",
  12779. image: {
  12780. source: "./media/characters/porter/front.svg",
  12781. extra: 1,
  12782. bottom: 0.01
  12783. }
  12784. },
  12785. frontRobes: {
  12786. height: math.unit(6, "feet"),
  12787. weight: math.unit(150, "lb"),
  12788. name: "Front (Robes)",
  12789. image: {
  12790. source: "./media/characters/porter/front-robes.svg",
  12791. extra: 1.01,
  12792. bottom: 0.01
  12793. }
  12794. },
  12795. },
  12796. [
  12797. {
  12798. name: "Normal",
  12799. height: math.unit(11 + 9 / 12, "feet"),
  12800. default: true
  12801. },
  12802. ]
  12803. ))
  12804. characterMakers.push(() => makeCharacter(
  12805. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12806. {
  12807. legendary: {
  12808. height: math.unit(6, "feet"),
  12809. weight: math.unit(150, "lb"),
  12810. name: "Legendary",
  12811. image: {
  12812. source: "./media/characters/lucy/legendary.svg",
  12813. extra: 1355 / 1100,
  12814. bottom: 0.045
  12815. }
  12816. },
  12817. },
  12818. [
  12819. {
  12820. name: "Legendary",
  12821. height: math.unit(86882 * 2, "miles"),
  12822. default: true
  12823. },
  12824. ]
  12825. ))
  12826. characterMakers.push(() => makeCharacter(
  12827. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12828. {
  12829. front: {
  12830. height: math.unit(6, "feet"),
  12831. weight: math.unit(150, "lb"),
  12832. name: "Front",
  12833. image: {
  12834. source: "./media/characters/drusilla/front.svg",
  12835. extra: 678 / 635,
  12836. bottom: 0.03
  12837. }
  12838. },
  12839. back: {
  12840. height: math.unit(6, "feet"),
  12841. weight: math.unit(150, "lb"),
  12842. name: "Back",
  12843. image: {
  12844. source: "./media/characters/drusilla/back.svg",
  12845. extra: 678 / 635,
  12846. bottom: 0.005
  12847. }
  12848. },
  12849. },
  12850. [
  12851. {
  12852. name: "Macro",
  12853. height: math.unit(100, "feet")
  12854. },
  12855. {
  12856. name: "Canon Height",
  12857. height: math.unit(2000, "feet"),
  12858. default: true
  12859. },
  12860. ]
  12861. ))
  12862. characterMakers.push(() => makeCharacter(
  12863. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12864. {
  12865. front: {
  12866. height: math.unit(6, "feet"),
  12867. weight: math.unit(180, "lb"),
  12868. name: "Front",
  12869. image: {
  12870. source: "./media/characters/renard-thatch/front.svg",
  12871. extra: 2411 / 2275,
  12872. bottom: 0.01
  12873. }
  12874. },
  12875. frontPosing: {
  12876. height: math.unit(6, "feet"),
  12877. weight: math.unit(180, "lb"),
  12878. name: "Front (Posing)",
  12879. image: {
  12880. source: "./media/characters/renard-thatch/front-posing.svg",
  12881. extra: 2381 / 2261,
  12882. bottom: 0.01
  12883. }
  12884. },
  12885. back: {
  12886. height: math.unit(6, "feet"),
  12887. weight: math.unit(180, "lb"),
  12888. name: "Back",
  12889. image: {
  12890. source: "./media/characters/renard-thatch/back.svg",
  12891. extra: 2428 / 2288
  12892. }
  12893. },
  12894. },
  12895. [
  12896. {
  12897. name: "Micro",
  12898. height: math.unit(3, "inches")
  12899. },
  12900. {
  12901. name: "Default",
  12902. height: math.unit(6, "feet"),
  12903. default: true
  12904. },
  12905. {
  12906. name: "Macro",
  12907. height: math.unit(75, "feet")
  12908. },
  12909. ]
  12910. ))
  12911. characterMakers.push(() => makeCharacter(
  12912. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12913. {
  12914. front: {
  12915. height: math.unit(1450, "feet"),
  12916. weight: math.unit(1.21e6, "tons"),
  12917. name: "Front",
  12918. image: {
  12919. source: "./media/characters/sekvra/front.svg",
  12920. extra: 1,
  12921. bottom: 0.03
  12922. }
  12923. },
  12924. frontClothed: {
  12925. height: math.unit(1450, "feet"),
  12926. weight: math.unit(1.21e6, "tons"),
  12927. name: "Front (Clothed)",
  12928. image: {
  12929. source: "./media/characters/sekvra/front-clothed.svg",
  12930. extra: 1,
  12931. bottom: 0.03
  12932. }
  12933. },
  12934. side: {
  12935. height: math.unit(1450, "feet"),
  12936. weight: math.unit(1.21e6, "tons"),
  12937. name: "Side",
  12938. image: {
  12939. source: "./media/characters/sekvra/side.svg",
  12940. extra: 1,
  12941. bottom: 0.025
  12942. }
  12943. },
  12944. back: {
  12945. height: math.unit(1450, "feet"),
  12946. weight: math.unit(1.21e6, "tons"),
  12947. name: "Back",
  12948. image: {
  12949. source: "./media/characters/sekvra/back.svg",
  12950. extra: 1,
  12951. bottom: 0.005
  12952. }
  12953. },
  12954. },
  12955. [
  12956. {
  12957. name: "Macro",
  12958. height: math.unit(1450, "feet"),
  12959. default: true
  12960. },
  12961. {
  12962. name: "Megamacro",
  12963. height: math.unit(15000, "feet")
  12964. },
  12965. ]
  12966. ))
  12967. characterMakers.push(() => makeCharacter(
  12968. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12969. {
  12970. front: {
  12971. height: math.unit(6, "feet"),
  12972. weight: math.unit(150, "lb"),
  12973. name: "Front",
  12974. image: {
  12975. source: "./media/characters/carmine/front.svg",
  12976. extra: 1,
  12977. bottom: 0.035
  12978. }
  12979. },
  12980. frontArmor: {
  12981. height: math.unit(6, "feet"),
  12982. weight: math.unit(150, "lb"),
  12983. name: "Front (Armor)",
  12984. image: {
  12985. source: "./media/characters/carmine/front-armor.svg",
  12986. extra: 1,
  12987. bottom: 0.035
  12988. }
  12989. },
  12990. },
  12991. [
  12992. {
  12993. name: "Large",
  12994. height: math.unit(1, "mile")
  12995. },
  12996. {
  12997. name: "Huge",
  12998. height: math.unit(40, "miles"),
  12999. default: true
  13000. },
  13001. {
  13002. name: "Colossal",
  13003. height: math.unit(2500, "miles")
  13004. },
  13005. ]
  13006. ))
  13007. characterMakers.push(() => makeCharacter(
  13008. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13009. {
  13010. front: {
  13011. height: math.unit(6, "feet"),
  13012. weight: math.unit(150, "lb"),
  13013. name: "Front",
  13014. image: {
  13015. source: "./media/characters/elyssia/front.svg",
  13016. extra: 2201 / 2035,
  13017. bottom: 0.05
  13018. }
  13019. },
  13020. frontClothed: {
  13021. height: math.unit(6, "feet"),
  13022. weight: math.unit(150, "lb"),
  13023. name: "Front (Clothed)",
  13024. image: {
  13025. source: "./media/characters/elyssia/front-clothed.svg",
  13026. extra: 2201 / 2035,
  13027. bottom: 0.05
  13028. }
  13029. },
  13030. back: {
  13031. height: math.unit(6, "feet"),
  13032. weight: math.unit(150, "lb"),
  13033. name: "Back",
  13034. image: {
  13035. source: "./media/characters/elyssia/back.svg",
  13036. extra: 2201 / 2035,
  13037. bottom: 0.013
  13038. }
  13039. },
  13040. },
  13041. [
  13042. {
  13043. name: "Smaller",
  13044. height: math.unit(150, "feet")
  13045. },
  13046. {
  13047. name: "Standard",
  13048. height: math.unit(1400, "feet"),
  13049. default: true
  13050. },
  13051. {
  13052. name: "Distracted",
  13053. height: math.unit(15000, "feet")
  13054. },
  13055. ]
  13056. ))
  13057. characterMakers.push(() => makeCharacter(
  13058. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13059. {
  13060. front: {
  13061. height: math.unit(7 + 4 / 12, "feet"),
  13062. weight: math.unit(500, "lb"),
  13063. name: "Front",
  13064. image: {
  13065. source: "./media/characters/geno-maxwell/front.svg",
  13066. extra: 2207 / 2040,
  13067. bottom: 0.015
  13068. }
  13069. },
  13070. },
  13071. [
  13072. {
  13073. name: "Micro",
  13074. height: math.unit(3, "inches")
  13075. },
  13076. {
  13077. name: "Normal",
  13078. height: math.unit(7 + 4 / 12, "feet"),
  13079. default: true
  13080. },
  13081. {
  13082. name: "Macro",
  13083. height: math.unit(220, "feet")
  13084. },
  13085. {
  13086. name: "Megamacro",
  13087. height: math.unit(11, "miles")
  13088. },
  13089. ]
  13090. ))
  13091. characterMakers.push(() => makeCharacter(
  13092. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13093. {
  13094. front: {
  13095. height: math.unit(7 + 4 / 12, "feet"),
  13096. weight: math.unit(500, "lb"),
  13097. name: "Front",
  13098. image: {
  13099. source: "./media/characters/regena-maxwell/front.svg",
  13100. extra: 3115 / 2770,
  13101. bottom: 0.02
  13102. }
  13103. },
  13104. },
  13105. [
  13106. {
  13107. name: "Normal",
  13108. height: math.unit(7 + 4 / 12, "feet"),
  13109. default: true
  13110. },
  13111. {
  13112. name: "Macro",
  13113. height: math.unit(220, "feet")
  13114. },
  13115. {
  13116. name: "Megamacro",
  13117. height: math.unit(11, "miles")
  13118. },
  13119. ]
  13120. ))
  13121. characterMakers.push(() => makeCharacter(
  13122. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13123. {
  13124. front: {
  13125. height: math.unit(6, "feet"),
  13126. weight: math.unit(150, "lb"),
  13127. name: "Front",
  13128. image: {
  13129. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13130. extra: 860 / 690,
  13131. bottom: 0.03
  13132. }
  13133. },
  13134. },
  13135. [
  13136. {
  13137. name: "Normal",
  13138. height: math.unit(1.7, "meters"),
  13139. default: true
  13140. },
  13141. ]
  13142. ))
  13143. characterMakers.push(() => makeCharacter(
  13144. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13145. {
  13146. front: {
  13147. height: math.unit(6, "feet"),
  13148. weight: math.unit(150, "lb"),
  13149. name: "Front",
  13150. image: {
  13151. source: "./media/characters/quilly/front.svg",
  13152. extra: 890 / 776
  13153. }
  13154. },
  13155. },
  13156. [
  13157. {
  13158. name: "Gigamacro",
  13159. height: math.unit(404090, "miles"),
  13160. default: true
  13161. },
  13162. ]
  13163. ))
  13164. characterMakers.push(() => makeCharacter(
  13165. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13166. {
  13167. front: {
  13168. height: math.unit(7 + 8 / 12, "feet"),
  13169. weight: math.unit(350, "lb"),
  13170. name: "Front",
  13171. image: {
  13172. source: "./media/characters/tempest/front.svg",
  13173. extra: 1175 / 1086,
  13174. bottom: 0.02
  13175. }
  13176. },
  13177. },
  13178. [
  13179. {
  13180. name: "Normal",
  13181. height: math.unit(7 + 8 / 12, "feet"),
  13182. default: true
  13183. },
  13184. ]
  13185. ))
  13186. characterMakers.push(() => makeCharacter(
  13187. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13188. {
  13189. side: {
  13190. height: math.unit(4 + 5 / 12, "feet"),
  13191. weight: math.unit(80, "lb"),
  13192. name: "Side",
  13193. image: {
  13194. source: "./media/characters/rodger/side.svg",
  13195. extra: 1235 / 1118
  13196. }
  13197. },
  13198. },
  13199. [
  13200. {
  13201. name: "Micro",
  13202. height: math.unit(1, "inch")
  13203. },
  13204. {
  13205. name: "Normal",
  13206. height: math.unit(4 + 5 / 12, "feet"),
  13207. default: true
  13208. },
  13209. {
  13210. name: "Macro",
  13211. height: math.unit(120, "feet")
  13212. },
  13213. ]
  13214. ))
  13215. characterMakers.push(() => makeCharacter(
  13216. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13217. {
  13218. front: {
  13219. height: math.unit(6, "feet"),
  13220. weight: math.unit(150, "lb"),
  13221. name: "Front",
  13222. image: {
  13223. source: "./media/characters/danyel/front.svg",
  13224. extra: 1185 / 1123,
  13225. bottom: 0.05
  13226. }
  13227. },
  13228. },
  13229. [
  13230. {
  13231. name: "Shrunken",
  13232. height: math.unit(0.5, "mm")
  13233. },
  13234. {
  13235. name: "Micro",
  13236. height: math.unit(1, "mm"),
  13237. default: true
  13238. },
  13239. {
  13240. name: "Upsized",
  13241. height: math.unit(5 + 5 / 12, "feet")
  13242. },
  13243. ]
  13244. ))
  13245. characterMakers.push(() => makeCharacter(
  13246. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13247. {
  13248. front: {
  13249. height: math.unit(5 + 6 / 12, "feet"),
  13250. weight: math.unit(200, "lb"),
  13251. name: "Front",
  13252. image: {
  13253. source: "./media/characters/vivian-bijoux/front.svg",
  13254. extra: 1,
  13255. bottom: 0.072
  13256. }
  13257. },
  13258. },
  13259. [
  13260. {
  13261. name: "Normal",
  13262. height: math.unit(5 + 6 / 12, "feet"),
  13263. default: true
  13264. },
  13265. {
  13266. name: "Bad Dream",
  13267. height: math.unit(500, "feet")
  13268. },
  13269. {
  13270. name: "Nightmare",
  13271. height: math.unit(500, "miles")
  13272. },
  13273. ]
  13274. ))
  13275. characterMakers.push(() => makeCharacter(
  13276. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13277. {
  13278. front: {
  13279. height: math.unit(6 + 1 / 12, "feet"),
  13280. weight: math.unit(260, "lb"),
  13281. name: "Front",
  13282. image: {
  13283. source: "./media/characters/zeta/front.svg",
  13284. extra: 1968 / 1889,
  13285. bottom: 0.06
  13286. }
  13287. },
  13288. back: {
  13289. height: math.unit(6 + 1 / 12, "feet"),
  13290. weight: math.unit(260, "lb"),
  13291. name: "Back",
  13292. image: {
  13293. source: "./media/characters/zeta/back.svg",
  13294. extra: 1944 / 1858,
  13295. bottom: 0.03
  13296. }
  13297. },
  13298. hand: {
  13299. height: math.unit(1.112, "feet"),
  13300. name: "Hand",
  13301. image: {
  13302. source: "./media/characters/zeta/hand.svg"
  13303. }
  13304. },
  13305. foot: {
  13306. height: math.unit(1.48, "feet"),
  13307. name: "Foot",
  13308. image: {
  13309. source: "./media/characters/zeta/foot.svg"
  13310. }
  13311. },
  13312. },
  13313. [
  13314. {
  13315. name: "Micro",
  13316. height: math.unit(6, "inches")
  13317. },
  13318. {
  13319. name: "Normal",
  13320. height: math.unit(6 + 1 / 12, "feet"),
  13321. default: true
  13322. },
  13323. {
  13324. name: "Macro",
  13325. height: math.unit(20, "feet")
  13326. },
  13327. ]
  13328. ))
  13329. characterMakers.push(() => makeCharacter(
  13330. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13331. {
  13332. front: {
  13333. height: math.unit(6, "feet"),
  13334. weight: math.unit(150, "lb"),
  13335. name: "Front",
  13336. image: {
  13337. source: "./media/characters/jamie-larsen/front.svg",
  13338. extra: 962 / 933,
  13339. bottom: 0.02
  13340. }
  13341. },
  13342. back: {
  13343. height: math.unit(6, "feet"),
  13344. weight: math.unit(150, "lb"),
  13345. name: "Back",
  13346. image: {
  13347. source: "./media/characters/jamie-larsen/back.svg",
  13348. extra: 997 / 946
  13349. }
  13350. },
  13351. },
  13352. [
  13353. {
  13354. name: "Macro",
  13355. height: math.unit(28 + 7 / 12, "feet"),
  13356. default: true
  13357. },
  13358. {
  13359. name: "Macro+",
  13360. height: math.unit(180, "feet")
  13361. },
  13362. {
  13363. name: "Megamacro",
  13364. height: math.unit(10, "miles")
  13365. },
  13366. {
  13367. name: "Gigamacro",
  13368. height: math.unit(200000, "miles")
  13369. },
  13370. ]
  13371. ))
  13372. characterMakers.push(() => makeCharacter(
  13373. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13374. {
  13375. front: {
  13376. height: math.unit(6, "feet"),
  13377. weight: math.unit(120, "lb"),
  13378. name: "Front",
  13379. image: {
  13380. source: "./media/characters/vance/front.svg",
  13381. extra: 1980 / 1890,
  13382. bottom: 0.09
  13383. }
  13384. },
  13385. back: {
  13386. height: math.unit(6, "feet"),
  13387. weight: math.unit(120, "lb"),
  13388. name: "Back",
  13389. image: {
  13390. source: "./media/characters/vance/back.svg",
  13391. extra: 2081 / 1994,
  13392. bottom: 0.014
  13393. }
  13394. },
  13395. hand: {
  13396. height: math.unit(0.88, "feet"),
  13397. name: "Hand",
  13398. image: {
  13399. source: "./media/characters/vance/hand.svg"
  13400. }
  13401. },
  13402. foot: {
  13403. height: math.unit(0.64, "feet"),
  13404. name: "Foot",
  13405. image: {
  13406. source: "./media/characters/vance/foot.svg"
  13407. }
  13408. },
  13409. },
  13410. [
  13411. {
  13412. name: "Small",
  13413. height: math.unit(90, "feet"),
  13414. default: true
  13415. },
  13416. {
  13417. name: "Macro",
  13418. height: math.unit(100, "meters")
  13419. },
  13420. {
  13421. name: "Megamacro",
  13422. height: math.unit(15, "miles")
  13423. },
  13424. ]
  13425. ))
  13426. characterMakers.push(() => makeCharacter(
  13427. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13428. {
  13429. front: {
  13430. height: math.unit(6, "feet"),
  13431. weight: math.unit(180, "lb"),
  13432. name: "Front",
  13433. image: {
  13434. source: "./media/characters/xochitl/front.svg",
  13435. extra: 2297 / 2261,
  13436. bottom: 0.065
  13437. }
  13438. },
  13439. back: {
  13440. height: math.unit(6, "feet"),
  13441. weight: math.unit(180, "lb"),
  13442. name: "Back",
  13443. image: {
  13444. source: "./media/characters/xochitl/back.svg",
  13445. extra: 2386 / 2354,
  13446. bottom: 0.01
  13447. }
  13448. },
  13449. foot: {
  13450. height: math.unit(6 / 5 * 1.15, "feet"),
  13451. weight: math.unit(150, "lb"),
  13452. name: "Foot",
  13453. image: {
  13454. source: "./media/characters/xochitl/foot.svg"
  13455. }
  13456. },
  13457. },
  13458. [
  13459. {
  13460. name: "Macro",
  13461. height: math.unit(80, "feet")
  13462. },
  13463. {
  13464. name: "Macro+",
  13465. height: math.unit(400, "feet"),
  13466. default: true
  13467. },
  13468. {
  13469. name: "Gigamacro",
  13470. height: math.unit(80000, "miles")
  13471. },
  13472. {
  13473. name: "Gigamacro+",
  13474. height: math.unit(400000, "miles")
  13475. },
  13476. {
  13477. name: "Teramacro",
  13478. height: math.unit(300, "AU")
  13479. },
  13480. ]
  13481. ))
  13482. characterMakers.push(() => makeCharacter(
  13483. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13484. {
  13485. front: {
  13486. height: math.unit(6, "feet"),
  13487. weight: math.unit(150, "lb"),
  13488. name: "Front",
  13489. image: {
  13490. source: "./media/characters/vincent/front.svg",
  13491. extra: 1130 / 1080,
  13492. bottom: 0.055
  13493. }
  13494. },
  13495. beak: {
  13496. height: math.unit(6 * 0.1, "feet"),
  13497. name: "Beak",
  13498. image: {
  13499. source: "./media/characters/vincent/beak.svg"
  13500. }
  13501. },
  13502. hand: {
  13503. height: math.unit(6 * 0.85, "feet"),
  13504. weight: math.unit(150, "lb"),
  13505. name: "Hand",
  13506. image: {
  13507. source: "./media/characters/vincent/hand.svg"
  13508. }
  13509. },
  13510. foot: {
  13511. height: math.unit(6 * 0.19, "feet"),
  13512. weight: math.unit(150, "lb"),
  13513. name: "Foot",
  13514. image: {
  13515. source: "./media/characters/vincent/foot.svg"
  13516. }
  13517. },
  13518. },
  13519. [
  13520. {
  13521. name: "Base",
  13522. height: math.unit(6 + 5 / 12, "feet"),
  13523. default: true
  13524. },
  13525. {
  13526. name: "Macro",
  13527. height: math.unit(300, "feet")
  13528. },
  13529. {
  13530. name: "Megamacro",
  13531. height: math.unit(2, "miles")
  13532. },
  13533. {
  13534. name: "Gigamacro",
  13535. height: math.unit(1000, "miles")
  13536. },
  13537. ]
  13538. ))
  13539. characterMakers.push(() => makeCharacter(
  13540. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13541. {
  13542. front: {
  13543. height: math.unit(2, "meters"),
  13544. weight: math.unit(500, "kg"),
  13545. name: "Front",
  13546. image: {
  13547. source: "./media/characters/coatl/front.svg",
  13548. extra: 3948 / 3500,
  13549. bottom: 0.082
  13550. }
  13551. },
  13552. },
  13553. [
  13554. {
  13555. name: "Normal",
  13556. height: math.unit(4, "meters")
  13557. },
  13558. {
  13559. name: "Macro",
  13560. height: math.unit(100, "meters"),
  13561. default: true
  13562. },
  13563. {
  13564. name: "Macro+",
  13565. height: math.unit(300, "meters")
  13566. },
  13567. {
  13568. name: "Megamacro",
  13569. height: math.unit(3, "gigameters")
  13570. },
  13571. {
  13572. name: "Megamacro+",
  13573. height: math.unit(300, "terameters")
  13574. },
  13575. {
  13576. name: "Megamacro++",
  13577. height: math.unit(3, "lightyears")
  13578. },
  13579. ]
  13580. ))
  13581. characterMakers.push(() => makeCharacter(
  13582. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13583. {
  13584. front: {
  13585. height: math.unit(6, "feet"),
  13586. weight: math.unit(50, "kg"),
  13587. name: "front",
  13588. image: {
  13589. source: "./media/characters/shiroryu/front.svg",
  13590. extra: 1990 / 1935
  13591. }
  13592. },
  13593. },
  13594. [
  13595. {
  13596. name: "Mortal Mingling",
  13597. height: math.unit(3, "meters")
  13598. },
  13599. {
  13600. name: "Kaiju-ish",
  13601. height: math.unit(250, "meters")
  13602. },
  13603. {
  13604. name: "Somewhat Godly",
  13605. height: math.unit(400, "km"),
  13606. default: true
  13607. },
  13608. {
  13609. name: "Planetary",
  13610. height: math.unit(300, "megameters")
  13611. },
  13612. {
  13613. name: "Galaxy-dwarfing",
  13614. height: math.unit(450, "kiloparsecs")
  13615. },
  13616. {
  13617. name: "Universe Eater",
  13618. height: math.unit(150, "gigaparsecs")
  13619. },
  13620. {
  13621. name: "Almost Immeasurable",
  13622. height: math.unit(1.3e266, "yottaparsecs")
  13623. },
  13624. ]
  13625. ))
  13626. characterMakers.push(() => makeCharacter(
  13627. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13628. {
  13629. front: {
  13630. height: math.unit(6, "feet"),
  13631. weight: math.unit(150, "lb"),
  13632. name: "Front",
  13633. image: {
  13634. source: "./media/characters/umeko/front.svg",
  13635. extra: 1,
  13636. bottom: 0.019
  13637. }
  13638. },
  13639. frontArmored: {
  13640. height: math.unit(6, "feet"),
  13641. weight: math.unit(150, "lb"),
  13642. name: "Front (Armored)",
  13643. image: {
  13644. source: "./media/characters/umeko/front-armored.svg",
  13645. extra: 1,
  13646. bottom: 0.021
  13647. }
  13648. },
  13649. },
  13650. [
  13651. {
  13652. name: "Macro",
  13653. height: math.unit(220, "feet"),
  13654. default: true
  13655. },
  13656. {
  13657. name: "Guardian Dragon",
  13658. height: math.unit(50, "miles")
  13659. },
  13660. {
  13661. name: "Cosmic",
  13662. height: math.unit(800000, "miles")
  13663. },
  13664. ]
  13665. ))
  13666. characterMakers.push(() => makeCharacter(
  13667. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13668. {
  13669. front: {
  13670. height: math.unit(6, "feet"),
  13671. weight: math.unit(150, "lb"),
  13672. name: "Front",
  13673. image: {
  13674. source: "./media/characters/cassidy/front.svg",
  13675. extra: 1,
  13676. bottom: 0.043
  13677. }
  13678. },
  13679. },
  13680. [
  13681. {
  13682. name: "Canon Height",
  13683. height: math.unit(120, "feet"),
  13684. default: true
  13685. },
  13686. {
  13687. name: "Macro+",
  13688. height: math.unit(400, "feet")
  13689. },
  13690. {
  13691. name: "Macro++",
  13692. height: math.unit(4000, "feet")
  13693. },
  13694. {
  13695. name: "Megamacro",
  13696. height: math.unit(3, "miles")
  13697. },
  13698. ]
  13699. ))
  13700. characterMakers.push(() => makeCharacter(
  13701. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13702. {
  13703. front: {
  13704. height: math.unit(6, "feet"),
  13705. weight: math.unit(150, "lb"),
  13706. name: "Front",
  13707. image: {
  13708. source: "./media/characters/isaac/front.svg",
  13709. extra: 896 / 815,
  13710. bottom: 0.11
  13711. }
  13712. },
  13713. },
  13714. [
  13715. {
  13716. name: "Human Size",
  13717. height: math.unit(8, "feet"),
  13718. default: true
  13719. },
  13720. {
  13721. name: "Macro",
  13722. height: math.unit(400, "feet")
  13723. },
  13724. {
  13725. name: "Megamacro",
  13726. height: math.unit(50, "miles")
  13727. },
  13728. {
  13729. name: "Canon Height",
  13730. height: math.unit(200, "AU")
  13731. },
  13732. ]
  13733. ))
  13734. characterMakers.push(() => makeCharacter(
  13735. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13736. {
  13737. front: {
  13738. height: math.unit(6, "feet"),
  13739. weight: math.unit(72, "kg"),
  13740. name: "Front",
  13741. image: {
  13742. source: "./media/characters/sleekit/front.svg",
  13743. extra: 4693 / 4487,
  13744. bottom: 0.012
  13745. }
  13746. },
  13747. },
  13748. [
  13749. {
  13750. name: "Minimum Height",
  13751. height: math.unit(10, "meters")
  13752. },
  13753. {
  13754. name: "Smaller",
  13755. height: math.unit(25, "meters")
  13756. },
  13757. {
  13758. name: "Larger",
  13759. height: math.unit(38, "meters"),
  13760. default: true
  13761. },
  13762. {
  13763. name: "Maximum height",
  13764. height: math.unit(100, "meters")
  13765. },
  13766. ]
  13767. ))
  13768. characterMakers.push(() => makeCharacter(
  13769. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13770. {
  13771. front: {
  13772. height: math.unit(6, "feet"),
  13773. weight: math.unit(150, "lb"),
  13774. name: "Front",
  13775. image: {
  13776. source: "./media/characters/nillia/front.svg",
  13777. extra: 2195 / 2037,
  13778. bottom: 0.005
  13779. }
  13780. },
  13781. back: {
  13782. height: math.unit(6, "feet"),
  13783. weight: math.unit(150, "lb"),
  13784. name: "Back",
  13785. image: {
  13786. source: "./media/characters/nillia/back.svg",
  13787. extra: 2195 / 2037,
  13788. bottom: 0.005
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Canon Height",
  13795. height: math.unit(489, "feet"),
  13796. default: true
  13797. }
  13798. ]
  13799. ))
  13800. characterMakers.push(() => makeCharacter(
  13801. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13802. {
  13803. front: {
  13804. height: math.unit(6, "feet"),
  13805. weight: math.unit(150, "lb"),
  13806. name: "Front",
  13807. image: {
  13808. source: "./media/characters/mesmyriza/front.svg",
  13809. extra: 2067 / 1784,
  13810. bottom: 0.035
  13811. }
  13812. },
  13813. foot: {
  13814. height: math.unit(6 / (250 / 35), "feet"),
  13815. name: "Foot",
  13816. image: {
  13817. source: "./media/characters/mesmyriza/foot.svg"
  13818. }
  13819. },
  13820. },
  13821. [
  13822. {
  13823. name: "Macro",
  13824. height: math.unit(457, "meters"),
  13825. default: true
  13826. },
  13827. {
  13828. name: "Megamacro",
  13829. height: math.unit(8, "megameters")
  13830. },
  13831. ]
  13832. ))
  13833. characterMakers.push(() => makeCharacter(
  13834. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13835. {
  13836. front: {
  13837. height: math.unit(6, "feet"),
  13838. weight: math.unit(250, "lb"),
  13839. name: "Front",
  13840. image: {
  13841. source: "./media/characters/saudade/front.svg",
  13842. extra: 1172 / 1139,
  13843. bottom: 0.035
  13844. }
  13845. },
  13846. },
  13847. [
  13848. {
  13849. name: "Micro",
  13850. height: math.unit(3, "inches")
  13851. },
  13852. {
  13853. name: "Normal",
  13854. height: math.unit(6, "feet"),
  13855. default: true
  13856. },
  13857. {
  13858. name: "Macro",
  13859. height: math.unit(50, "feet")
  13860. },
  13861. {
  13862. name: "Megamacro",
  13863. height: math.unit(2800, "feet")
  13864. },
  13865. ]
  13866. ))
  13867. characterMakers.push(() => makeCharacter(
  13868. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13869. {
  13870. front: {
  13871. height: math.unit(5 + 4 / 12, "feet"),
  13872. weight: math.unit(100, "lb"),
  13873. name: "Front",
  13874. image: {
  13875. source: "./media/characters/keireer/front.svg",
  13876. extra: 716 / 666,
  13877. bottom: 0.05
  13878. }
  13879. },
  13880. },
  13881. [
  13882. {
  13883. name: "Normal",
  13884. height: math.unit(5 + 4 / 12, "feet"),
  13885. default: true
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13891. {
  13892. front: {
  13893. height: math.unit(6, "feet"),
  13894. weight: math.unit(90, "kg"),
  13895. name: "Front",
  13896. image: {
  13897. source: "./media/characters/mirja/front.svg",
  13898. extra: 1789 / 1683,
  13899. bottom: 0.05
  13900. }
  13901. },
  13902. frontDressed: {
  13903. height: math.unit(6, "feet"),
  13904. weight: math.unit(90, "lb"),
  13905. name: "Front (Dressed)",
  13906. image: {
  13907. source: "./media/characters/mirja/front-dressed.svg",
  13908. extra: 1789 / 1683,
  13909. bottom: 0.05
  13910. }
  13911. },
  13912. back: {
  13913. height: math.unit(6, "feet"),
  13914. weight: math.unit(90, "lb"),
  13915. name: "Back",
  13916. image: {
  13917. source: "./media/characters/mirja/back.svg",
  13918. extra: 953 / 917,
  13919. bottom: 0.017
  13920. }
  13921. },
  13922. },
  13923. [
  13924. {
  13925. name: "\"Incognito\"",
  13926. height: math.unit(3, "meters")
  13927. },
  13928. {
  13929. name: "Strolling Size",
  13930. height: math.unit(15, "km")
  13931. },
  13932. {
  13933. name: "Larger Strolling Size",
  13934. height: math.unit(400, "km")
  13935. },
  13936. {
  13937. name: "Preferred Size",
  13938. height: math.unit(5000, "km")
  13939. },
  13940. {
  13941. name: "True Size",
  13942. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13943. default: true
  13944. },
  13945. ]
  13946. ))
  13947. characterMakers.push(() => makeCharacter(
  13948. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13949. {
  13950. front: {
  13951. height: math.unit(15, "feet"),
  13952. weight: math.unit(880, "kg"),
  13953. name: "Front",
  13954. image: {
  13955. source: "./media/characters/nightraver/front.svg",
  13956. extra: 2444 / 2160,
  13957. bottom: 0.027
  13958. }
  13959. },
  13960. back: {
  13961. height: math.unit(15, "feet"),
  13962. weight: math.unit(880, "kg"),
  13963. name: "Back",
  13964. image: {
  13965. source: "./media/characters/nightraver/back.svg",
  13966. extra: 2309 / 2180,
  13967. bottom: 0.005
  13968. }
  13969. },
  13970. sole: {
  13971. height: math.unit(2.878, "feet"),
  13972. name: "Sole",
  13973. image: {
  13974. source: "./media/characters/nightraver/sole.svg"
  13975. }
  13976. },
  13977. foot: {
  13978. height: math.unit(2.285, "feet"),
  13979. name: "Foot",
  13980. image: {
  13981. source: "./media/characters/nightraver/foot.svg"
  13982. }
  13983. },
  13984. maw: {
  13985. height: math.unit(2.67, "feet"),
  13986. name: "Maw",
  13987. image: {
  13988. source: "./media/characters/nightraver/maw.svg"
  13989. }
  13990. },
  13991. },
  13992. [
  13993. {
  13994. name: "Micro",
  13995. height: math.unit(1, "cm")
  13996. },
  13997. {
  13998. name: "Normal",
  13999. height: math.unit(15, "feet"),
  14000. default: true
  14001. },
  14002. {
  14003. name: "Macro",
  14004. height: math.unit(300, "feet")
  14005. },
  14006. {
  14007. name: "Megamacro",
  14008. height: math.unit(300, "miles")
  14009. },
  14010. {
  14011. name: "Gigamacro",
  14012. height: math.unit(10000, "miles")
  14013. },
  14014. ]
  14015. ))
  14016. characterMakers.push(() => makeCharacter(
  14017. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14018. {
  14019. side: {
  14020. height: math.unit(2, "inches"),
  14021. weight: math.unit(5, "grams"),
  14022. name: "Side",
  14023. image: {
  14024. source: "./media/characters/arc/side.svg"
  14025. }
  14026. },
  14027. },
  14028. [
  14029. {
  14030. name: "Micro",
  14031. height: math.unit(2, "inches"),
  14032. default: true
  14033. },
  14034. ]
  14035. ))
  14036. characterMakers.push(() => makeCharacter(
  14037. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14038. {
  14039. front: {
  14040. height: math.unit(1.1938, "meters"),
  14041. weight: math.unit(54, "kg"),
  14042. name: "Front",
  14043. image: {
  14044. source: "./media/characters/nebula-shahar/front.svg",
  14045. extra: 1642 / 1436,
  14046. bottom: 0.06
  14047. }
  14048. },
  14049. },
  14050. [
  14051. {
  14052. name: "Megamicro",
  14053. height: math.unit(0.3, "mm")
  14054. },
  14055. {
  14056. name: "Micro",
  14057. height: math.unit(3, "cm")
  14058. },
  14059. {
  14060. name: "Normal",
  14061. height: math.unit(138, "cm"),
  14062. default: true
  14063. },
  14064. {
  14065. name: "Macro",
  14066. height: math.unit(30, "m")
  14067. },
  14068. ]
  14069. ))
  14070. characterMakers.push(() => makeCharacter(
  14071. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14072. {
  14073. front: {
  14074. height: math.unit(5.24, "feet"),
  14075. weight: math.unit(150, "lb"),
  14076. name: "Front",
  14077. image: {
  14078. source: "./media/characters/shayla/front.svg",
  14079. extra: 1512 / 1414,
  14080. bottom: 0.01
  14081. }
  14082. },
  14083. back: {
  14084. height: math.unit(5.24, "feet"),
  14085. weight: math.unit(150, "lb"),
  14086. name: "Back",
  14087. image: {
  14088. source: "./media/characters/shayla/back.svg",
  14089. extra: 1512 / 1414
  14090. }
  14091. },
  14092. hand: {
  14093. height: math.unit(0.7781496062992126, "feet"),
  14094. name: "Hand",
  14095. image: {
  14096. source: "./media/characters/shayla/hand.svg"
  14097. }
  14098. },
  14099. foot: {
  14100. height: math.unit(1.4206036745406823, "feet"),
  14101. name: "Foot",
  14102. image: {
  14103. source: "./media/characters/shayla/foot.svg"
  14104. }
  14105. },
  14106. },
  14107. [
  14108. {
  14109. name: "Micro",
  14110. height: math.unit(0.32, "feet")
  14111. },
  14112. {
  14113. name: "Normal",
  14114. height: math.unit(5.24, "feet"),
  14115. default: true
  14116. },
  14117. {
  14118. name: "Macro",
  14119. height: math.unit(492.12, "feet")
  14120. },
  14121. {
  14122. name: "Megamacro",
  14123. height: math.unit(186.41, "miles")
  14124. },
  14125. ]
  14126. ))
  14127. characterMakers.push(() => makeCharacter(
  14128. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14129. {
  14130. front: {
  14131. height: math.unit(2.2, "m"),
  14132. weight: math.unit(120, "kg"),
  14133. name: "Front",
  14134. image: {
  14135. source: "./media/characters/pia-jr/front.svg",
  14136. extra: 1000 / 970,
  14137. bottom: 0.035
  14138. }
  14139. },
  14140. hand: {
  14141. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14142. name: "Hand",
  14143. image: {
  14144. source: "./media/characters/pia-jr/hand.svg"
  14145. }
  14146. },
  14147. paw: {
  14148. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14149. name: "Paw",
  14150. image: {
  14151. source: "./media/characters/pia-jr/paw.svg"
  14152. }
  14153. },
  14154. },
  14155. [
  14156. {
  14157. name: "Micro",
  14158. height: math.unit(1.2, "cm")
  14159. },
  14160. {
  14161. name: "Normal",
  14162. height: math.unit(2.2, "m"),
  14163. default: true
  14164. },
  14165. {
  14166. name: "Macro",
  14167. height: math.unit(180, "m")
  14168. },
  14169. {
  14170. name: "Megamacro",
  14171. height: math.unit(420, "km")
  14172. },
  14173. ]
  14174. ))
  14175. characterMakers.push(() => makeCharacter(
  14176. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14177. {
  14178. front: {
  14179. height: math.unit(2, "m"),
  14180. weight: math.unit(115, "kg"),
  14181. name: "Front",
  14182. image: {
  14183. source: "./media/characters/pia-sr/front.svg",
  14184. extra: 760 / 730,
  14185. bottom: 0.015
  14186. }
  14187. },
  14188. back: {
  14189. height: math.unit(2, "m"),
  14190. weight: math.unit(115, "kg"),
  14191. name: "Back",
  14192. image: {
  14193. source: "./media/characters/pia-sr/back.svg",
  14194. extra: 760 / 730,
  14195. bottom: 0.01
  14196. }
  14197. },
  14198. hand: {
  14199. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14200. name: "Hand",
  14201. image: {
  14202. source: "./media/characters/pia-sr/hand.svg"
  14203. }
  14204. },
  14205. foot: {
  14206. height: math.unit(1.83, "feet"),
  14207. name: "Foot",
  14208. image: {
  14209. source: "./media/characters/pia-sr/foot.svg"
  14210. }
  14211. },
  14212. },
  14213. [
  14214. {
  14215. name: "Micro",
  14216. height: math.unit(88, "mm")
  14217. },
  14218. {
  14219. name: "Normal",
  14220. height: math.unit(2, "m"),
  14221. default: true
  14222. },
  14223. {
  14224. name: "Macro",
  14225. height: math.unit(200, "m")
  14226. },
  14227. {
  14228. name: "Megamacro",
  14229. height: math.unit(420, "km")
  14230. },
  14231. ]
  14232. ))
  14233. characterMakers.push(() => makeCharacter(
  14234. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14235. {
  14236. front: {
  14237. height: math.unit(8 + 2 / 12, "feet"),
  14238. weight: math.unit(300, "lb"),
  14239. name: "Front",
  14240. image: {
  14241. source: "./media/characters/kibibyte/front.svg",
  14242. extra: 2221 / 2098,
  14243. bottom: 0.04
  14244. }
  14245. },
  14246. },
  14247. [
  14248. {
  14249. name: "Normal",
  14250. height: math.unit(8 + 2 / 12, "feet"),
  14251. default: true
  14252. },
  14253. {
  14254. name: "Socialable Macro",
  14255. height: math.unit(50, "feet")
  14256. },
  14257. {
  14258. name: "Macro",
  14259. height: math.unit(300, "feet")
  14260. },
  14261. {
  14262. name: "Megamacro",
  14263. height: math.unit(500, "miles")
  14264. },
  14265. ]
  14266. ))
  14267. characterMakers.push(() => makeCharacter(
  14268. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14269. {
  14270. front: {
  14271. height: math.unit(6, "feet"),
  14272. weight: math.unit(150, "lb"),
  14273. name: "Front",
  14274. image: {
  14275. source: "./media/characters/felix/front.svg",
  14276. extra: 762 / 722,
  14277. bottom: 0.02
  14278. }
  14279. },
  14280. frontClothed: {
  14281. height: math.unit(6, "feet"),
  14282. weight: math.unit(150, "lb"),
  14283. name: "Front (Clothed)",
  14284. image: {
  14285. source: "./media/characters/felix/front-clothed.svg",
  14286. extra: 762 / 722,
  14287. bottom: 0.02
  14288. }
  14289. },
  14290. },
  14291. [
  14292. {
  14293. name: "Normal",
  14294. height: math.unit(6 + 8 / 12, "feet"),
  14295. default: true
  14296. },
  14297. {
  14298. name: "Macro",
  14299. height: math.unit(2600, "feet")
  14300. },
  14301. {
  14302. name: "Megamacro",
  14303. height: math.unit(450, "miles")
  14304. },
  14305. ]
  14306. ))
  14307. characterMakers.push(() => makeCharacter(
  14308. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14309. {
  14310. front: {
  14311. height: math.unit(6 + 1 / 12, "feet"),
  14312. weight: math.unit(250, "lb"),
  14313. name: "Front",
  14314. image: {
  14315. source: "./media/characters/tobo/front.svg",
  14316. extra: 608 / 586,
  14317. bottom: 0.023
  14318. }
  14319. },
  14320. back: {
  14321. height: math.unit(6 + 1 / 12, "feet"),
  14322. weight: math.unit(250, "lb"),
  14323. name: "Back",
  14324. image: {
  14325. source: "./media/characters/tobo/back.svg",
  14326. extra: 608 / 586
  14327. }
  14328. },
  14329. },
  14330. [
  14331. {
  14332. name: "Nano",
  14333. height: math.unit(2, "nm")
  14334. },
  14335. {
  14336. name: "Megamicro",
  14337. height: math.unit(0.1, "mm")
  14338. },
  14339. {
  14340. name: "Micro",
  14341. height: math.unit(1, "inch"),
  14342. default: true
  14343. },
  14344. {
  14345. name: "Human-sized",
  14346. height: math.unit(6 + 1 / 12, "feet")
  14347. },
  14348. {
  14349. name: "Macro",
  14350. height: math.unit(250, "feet")
  14351. },
  14352. {
  14353. name: "Megamacro",
  14354. height: math.unit(75, "miles")
  14355. },
  14356. {
  14357. name: "Texas-sized",
  14358. height: math.unit(750, "miles")
  14359. },
  14360. {
  14361. name: "Teramacro",
  14362. height: math.unit(50000, "miles")
  14363. },
  14364. ]
  14365. ))
  14366. characterMakers.push(() => makeCharacter(
  14367. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14368. {
  14369. front: {
  14370. height: math.unit(6, "feet"),
  14371. weight: math.unit(269, "lb"),
  14372. name: "Front",
  14373. image: {
  14374. source: "./media/characters/danny-kapowsky/front.svg",
  14375. extra: 766 / 736,
  14376. bottom: 0.044
  14377. }
  14378. },
  14379. back: {
  14380. height: math.unit(6, "feet"),
  14381. weight: math.unit(269, "lb"),
  14382. name: "Back",
  14383. image: {
  14384. source: "./media/characters/danny-kapowsky/back.svg",
  14385. extra: 797 / 760,
  14386. bottom: 0.025
  14387. }
  14388. },
  14389. },
  14390. [
  14391. {
  14392. name: "Macro",
  14393. height: math.unit(150, "feet"),
  14394. default: true
  14395. },
  14396. {
  14397. name: "Macro+",
  14398. height: math.unit(200, "feet")
  14399. },
  14400. {
  14401. name: "Macro++",
  14402. height: math.unit(300, "feet")
  14403. },
  14404. {
  14405. name: "Macro+++",
  14406. height: math.unit(400, "feet")
  14407. },
  14408. ]
  14409. ))
  14410. characterMakers.push(() => makeCharacter(
  14411. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14412. {
  14413. side: {
  14414. height: math.unit(6, "feet"),
  14415. weight: math.unit(170, "lb"),
  14416. name: "Side",
  14417. image: {
  14418. source: "./media/characters/finn/side.svg",
  14419. extra: 1953 / 1807,
  14420. bottom: 0.057
  14421. }
  14422. },
  14423. },
  14424. [
  14425. {
  14426. name: "Megamacro",
  14427. height: math.unit(14445, "feet"),
  14428. default: true
  14429. },
  14430. ]
  14431. ))
  14432. characterMakers.push(() => makeCharacter(
  14433. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14434. {
  14435. front: {
  14436. height: math.unit(5 + 6 / 12, "feet"),
  14437. weight: math.unit(125, "lb"),
  14438. name: "Front",
  14439. image: {
  14440. source: "./media/characters/roy/front.svg",
  14441. extra: 1,
  14442. bottom: 0.11
  14443. }
  14444. },
  14445. },
  14446. [
  14447. {
  14448. name: "Micro",
  14449. height: math.unit(3, "inches"),
  14450. default: true
  14451. },
  14452. {
  14453. name: "Normal",
  14454. height: math.unit(5 + 6 / 12, "feet")
  14455. },
  14456. {
  14457. name: "Lesser Macro",
  14458. height: math.unit(60, "feet")
  14459. },
  14460. {
  14461. name: "Greater Macro",
  14462. height: math.unit(120, "feet")
  14463. },
  14464. ]
  14465. ))
  14466. characterMakers.push(() => makeCharacter(
  14467. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14468. {
  14469. front: {
  14470. height: math.unit(6, "feet"),
  14471. weight: math.unit(100, "lb"),
  14472. name: "Front",
  14473. image: {
  14474. source: "./media/characters/aevsivs/front.svg",
  14475. extra: 1,
  14476. bottom: 0.03
  14477. }
  14478. },
  14479. back: {
  14480. height: math.unit(6, "feet"),
  14481. weight: math.unit(100, "lb"),
  14482. name: "Back",
  14483. image: {
  14484. source: "./media/characters/aevsivs/back.svg"
  14485. }
  14486. },
  14487. },
  14488. [
  14489. {
  14490. name: "Micro",
  14491. height: math.unit(2, "inches"),
  14492. default: true
  14493. },
  14494. {
  14495. name: "Normal",
  14496. height: math.unit(5, "feet")
  14497. },
  14498. ]
  14499. ))
  14500. characterMakers.push(() => makeCharacter(
  14501. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14502. {
  14503. front: {
  14504. height: math.unit(5 + 7 / 12, "feet"),
  14505. weight: math.unit(159, "lb"),
  14506. name: "Front",
  14507. image: {
  14508. source: "./media/characters/hildegard/front.svg",
  14509. extra: 289 / 269,
  14510. bottom: 7.63 / 297.8
  14511. }
  14512. },
  14513. back: {
  14514. height: math.unit(5 + 7 / 12, "feet"),
  14515. weight: math.unit(159, "lb"),
  14516. name: "Back",
  14517. image: {
  14518. source: "./media/characters/hildegard/back.svg",
  14519. extra: 280 / 260,
  14520. bottom: 2.3 / 282
  14521. }
  14522. },
  14523. },
  14524. [
  14525. {
  14526. name: "Normal",
  14527. height: math.unit(5 + 7 / 12, "feet"),
  14528. default: true
  14529. },
  14530. ]
  14531. ))
  14532. characterMakers.push(() => makeCharacter(
  14533. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14534. {
  14535. bernard: {
  14536. height: math.unit(2 + 7 / 12, "feet"),
  14537. weight: math.unit(66, "lb"),
  14538. name: "Bernard",
  14539. rename: true,
  14540. image: {
  14541. source: "./media/characters/bernard-wilder/bernard.svg",
  14542. extra: 192 / 128,
  14543. bottom: 0.05
  14544. }
  14545. },
  14546. wilder: {
  14547. height: math.unit(5 + 8 / 12, "feet"),
  14548. weight: math.unit(143, "lb"),
  14549. name: "Wilder",
  14550. rename: true,
  14551. image: {
  14552. source: "./media/characters/bernard-wilder/wilder.svg",
  14553. extra: 361 / 312,
  14554. bottom: 0.02
  14555. }
  14556. },
  14557. },
  14558. [
  14559. {
  14560. name: "Normal",
  14561. height: math.unit(2 + 7 / 12, "feet"),
  14562. default: true
  14563. },
  14564. ]
  14565. ))
  14566. characterMakers.push(() => makeCharacter(
  14567. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14568. {
  14569. anthro: {
  14570. height: math.unit(6 + 1 / 12, "feet"),
  14571. weight: math.unit(155, "lb"),
  14572. name: "Anthro",
  14573. image: {
  14574. source: "./media/characters/hearth/anthro.svg",
  14575. extra: 260 / 250,
  14576. bottom: 0.02
  14577. }
  14578. },
  14579. feral: {
  14580. height: math.unit(3.78, "feet"),
  14581. weight: math.unit(35, "kg"),
  14582. name: "Feral",
  14583. image: {
  14584. source: "./media/characters/hearth/feral.svg",
  14585. extra: 153 / 135,
  14586. bottom: 0.03
  14587. }
  14588. },
  14589. },
  14590. [
  14591. {
  14592. name: "Normal",
  14593. height: math.unit(6 + 1 / 12, "feet"),
  14594. default: true
  14595. },
  14596. ]
  14597. ))
  14598. characterMakers.push(() => makeCharacter(
  14599. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14600. {
  14601. front: {
  14602. height: math.unit(6, "feet"),
  14603. weight: math.unit(182, "lb"),
  14604. name: "Front",
  14605. image: {
  14606. source: "./media/characters/ingrid/front.svg",
  14607. extra: 294 / 268,
  14608. bottom: 0.027
  14609. }
  14610. },
  14611. },
  14612. [
  14613. {
  14614. name: "Normal",
  14615. height: math.unit(6, "feet"),
  14616. default: true
  14617. },
  14618. ]
  14619. ))
  14620. characterMakers.push(() => makeCharacter(
  14621. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14622. {
  14623. eevee: {
  14624. height: math.unit(2 + 10 / 12, "feet"),
  14625. weight: math.unit(86, "lb"),
  14626. name: "Malgam",
  14627. image: {
  14628. source: "./media/characters/malgam/eevee.svg",
  14629. extra: 218 / 180,
  14630. bottom: 0.2
  14631. }
  14632. },
  14633. sylveon: {
  14634. height: math.unit(4, "feet"),
  14635. weight: math.unit(101, "lb"),
  14636. name: "Future Malgam",
  14637. rename: true,
  14638. image: {
  14639. source: "./media/characters/malgam/sylveon.svg",
  14640. extra: 371 / 325,
  14641. bottom: 0.015
  14642. }
  14643. },
  14644. gigantamax: {
  14645. height: math.unit(50, "feet"),
  14646. name: "Gigantamax Malgam",
  14647. rename: true,
  14648. image: {
  14649. source: "./media/characters/malgam/gigantamax.svg"
  14650. }
  14651. },
  14652. },
  14653. [
  14654. {
  14655. name: "Normal",
  14656. height: math.unit(2 + 10 / 12, "feet"),
  14657. default: true
  14658. },
  14659. ]
  14660. ))
  14661. characterMakers.push(() => makeCharacter(
  14662. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14663. {
  14664. front: {
  14665. height: math.unit(5 + 11 / 12, "feet"),
  14666. weight: math.unit(188, "lb"),
  14667. name: "Front",
  14668. image: {
  14669. source: "./media/characters/fleur/front.svg",
  14670. extra: 309 / 283,
  14671. bottom: 0.007
  14672. }
  14673. },
  14674. },
  14675. [
  14676. {
  14677. name: "Normal",
  14678. height: math.unit(5 + 11 / 12, "feet"),
  14679. default: true
  14680. },
  14681. ]
  14682. ))
  14683. characterMakers.push(() => makeCharacter(
  14684. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14685. {
  14686. front: {
  14687. height: math.unit(5 + 4 / 12, "feet"),
  14688. weight: math.unit(122, "lb"),
  14689. name: "Front",
  14690. image: {
  14691. source: "./media/characters/jude/front.svg",
  14692. extra: 288 / 273,
  14693. bottom: 0.03
  14694. }
  14695. },
  14696. },
  14697. [
  14698. {
  14699. name: "Normal",
  14700. height: math.unit(5 + 4 / 12, "feet"),
  14701. default: true
  14702. },
  14703. ]
  14704. ))
  14705. characterMakers.push(() => makeCharacter(
  14706. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14707. {
  14708. front: {
  14709. height: math.unit(5 + 11 / 12, "feet"),
  14710. weight: math.unit(190, "lb"),
  14711. name: "Front",
  14712. image: {
  14713. source: "./media/characters/seara/front.svg",
  14714. extra: 1,
  14715. bottom: 0.05
  14716. }
  14717. },
  14718. },
  14719. [
  14720. {
  14721. name: "Normal",
  14722. height: math.unit(5 + 11 / 12, "feet"),
  14723. default: true
  14724. },
  14725. ]
  14726. ))
  14727. characterMakers.push(() => makeCharacter(
  14728. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14729. {
  14730. front: {
  14731. height: math.unit(16 + 5 / 12, "feet"),
  14732. weight: math.unit(524, "lb"),
  14733. name: "Front",
  14734. image: {
  14735. source: "./media/characters/caspian/front.svg",
  14736. extra: 1,
  14737. bottom: 0.04
  14738. }
  14739. },
  14740. },
  14741. [
  14742. {
  14743. name: "Normal",
  14744. height: math.unit(16 + 5 / 12, "feet"),
  14745. default: true
  14746. },
  14747. ]
  14748. ))
  14749. characterMakers.push(() => makeCharacter(
  14750. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14751. {
  14752. front: {
  14753. height: math.unit(5 + 7 / 12, "feet"),
  14754. weight: math.unit(170, "lb"),
  14755. name: "Front",
  14756. image: {
  14757. source: "./media/characters/mika/front.svg",
  14758. extra: 1,
  14759. bottom: 0.016
  14760. }
  14761. },
  14762. },
  14763. [
  14764. {
  14765. name: "Normal",
  14766. height: math.unit(5 + 7 / 12, "feet"),
  14767. default: true
  14768. },
  14769. ]
  14770. ))
  14771. characterMakers.push(() => makeCharacter(
  14772. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14773. {
  14774. front: {
  14775. height: math.unit(6 + 2 / 12, "feet"),
  14776. weight: math.unit(268, "lb"),
  14777. name: "Front",
  14778. image: {
  14779. source: "./media/characters/sol/front.svg",
  14780. extra: 247 / 231,
  14781. bottom: 0.05
  14782. }
  14783. },
  14784. },
  14785. [
  14786. {
  14787. name: "Normal",
  14788. height: math.unit(6 + 2 / 12, "feet"),
  14789. default: true
  14790. },
  14791. ]
  14792. ))
  14793. characterMakers.push(() => makeCharacter(
  14794. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14795. {
  14796. buizel: {
  14797. height: math.unit(2 + 5 / 12, "feet"),
  14798. weight: math.unit(87, "lb"),
  14799. name: "Buizel",
  14800. image: {
  14801. source: "./media/characters/umiko/buizel.svg",
  14802. extra: 172 / 157,
  14803. bottom: 0.01
  14804. }
  14805. },
  14806. floatzel: {
  14807. height: math.unit(5 + 9 / 12, "feet"),
  14808. weight: math.unit(250, "lb"),
  14809. name: "Floatzel",
  14810. image: {
  14811. source: "./media/characters/umiko/floatzel.svg",
  14812. extra: 262 / 248
  14813. }
  14814. },
  14815. },
  14816. [
  14817. {
  14818. name: "Normal",
  14819. height: math.unit(2 + 5 / 12, "feet"),
  14820. default: true
  14821. },
  14822. ]
  14823. ))
  14824. characterMakers.push(() => makeCharacter(
  14825. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14826. {
  14827. front: {
  14828. height: math.unit(6 + 2 / 12, "feet"),
  14829. weight: math.unit(146, "lb"),
  14830. name: "Front",
  14831. image: {
  14832. source: "./media/characters/iliac/front.svg",
  14833. extra: 389 / 365,
  14834. bottom: 0.035
  14835. }
  14836. },
  14837. },
  14838. [
  14839. {
  14840. name: "Normal",
  14841. height: math.unit(6 + 2 / 12, "feet"),
  14842. default: true
  14843. },
  14844. ]
  14845. ))
  14846. characterMakers.push(() => makeCharacter(
  14847. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14848. {
  14849. front: {
  14850. height: math.unit(6, "feet"),
  14851. weight: math.unit(170, "lb"),
  14852. name: "Front",
  14853. image: {
  14854. source: "./media/characters/topaz/front.svg",
  14855. extra: 317 / 303,
  14856. bottom: 0.055
  14857. }
  14858. },
  14859. },
  14860. [
  14861. {
  14862. name: "Normal",
  14863. height: math.unit(6, "feet"),
  14864. default: true
  14865. },
  14866. ]
  14867. ))
  14868. characterMakers.push(() => makeCharacter(
  14869. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14870. {
  14871. front: {
  14872. height: math.unit(5 + 11 / 12, "feet"),
  14873. weight: math.unit(144, "lb"),
  14874. name: "Front",
  14875. image: {
  14876. source: "./media/characters/gabriel/front.svg",
  14877. extra: 285 / 262,
  14878. bottom: 0.004
  14879. }
  14880. },
  14881. },
  14882. [
  14883. {
  14884. name: "Normal",
  14885. height: math.unit(5 + 11 / 12, "feet"),
  14886. default: true
  14887. },
  14888. ]
  14889. ))
  14890. characterMakers.push(() => makeCharacter(
  14891. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14892. {
  14893. side: {
  14894. height: math.unit(6 + 5 / 12, "feet"),
  14895. weight: math.unit(300, "lb"),
  14896. name: "Side",
  14897. image: {
  14898. source: "./media/characters/tempest-suicune/side.svg",
  14899. extra: 195 / 154,
  14900. bottom: 0.04
  14901. }
  14902. },
  14903. },
  14904. [
  14905. {
  14906. name: "Normal",
  14907. height: math.unit(6 + 5 / 12, "feet"),
  14908. default: true
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14914. {
  14915. front: {
  14916. height: math.unit(7 + 2 / 12, "feet"),
  14917. weight: math.unit(322, "lb"),
  14918. name: "Front",
  14919. image: {
  14920. source: "./media/characters/vulcan/front.svg",
  14921. extra: 154 / 147,
  14922. bottom: 0.04
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Normal",
  14929. height: math.unit(7 + 2 / 12, "feet"),
  14930. default: true
  14931. },
  14932. ]
  14933. ))
  14934. characterMakers.push(() => makeCharacter(
  14935. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14936. {
  14937. front: {
  14938. height: math.unit(5 + 10 / 12, "feet"),
  14939. weight: math.unit(264, "lb"),
  14940. name: "Front",
  14941. image: {
  14942. source: "./media/characters/gault/front.svg",
  14943. extra: 161 / 140,
  14944. bottom: 0.028
  14945. }
  14946. },
  14947. },
  14948. [
  14949. {
  14950. name: "Normal",
  14951. height: math.unit(5 + 10 / 12, "feet"),
  14952. default: true
  14953. },
  14954. ]
  14955. ))
  14956. characterMakers.push(() => makeCharacter(
  14957. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14958. {
  14959. front: {
  14960. height: math.unit(6, "feet"),
  14961. weight: math.unit(150, "lb"),
  14962. name: "Front",
  14963. image: {
  14964. source: "./media/characters/shard/front.svg",
  14965. extra: 273 / 238,
  14966. bottom: 0.02
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Normal",
  14973. height: math.unit(3 + 6 / 12, "feet"),
  14974. default: true
  14975. },
  14976. ]
  14977. ))
  14978. characterMakers.push(() => makeCharacter(
  14979. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14980. {
  14981. front: {
  14982. height: math.unit(5 + 11 / 12, "feet"),
  14983. weight: math.unit(146, "lb"),
  14984. name: "Front",
  14985. image: {
  14986. source: "./media/characters/ashe/front.svg",
  14987. extra: 400 / 373,
  14988. bottom: 0.01
  14989. }
  14990. },
  14991. },
  14992. [
  14993. {
  14994. name: "Normal",
  14995. height: math.unit(5 + 11 / 12, "feet"),
  14996. default: true
  14997. },
  14998. ]
  14999. ))
  15000. characterMakers.push(() => makeCharacter(
  15001. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15002. {
  15003. front: {
  15004. height: math.unit(5 + 5 / 12, "feet"),
  15005. weight: math.unit(135, "lb"),
  15006. name: "Front",
  15007. image: {
  15008. source: "./media/characters/beatrix/front.svg",
  15009. extra: 392 / 379,
  15010. bottom: 0.01
  15011. }
  15012. },
  15013. },
  15014. [
  15015. {
  15016. name: "Normal",
  15017. height: math.unit(6, "feet"),
  15018. default: true
  15019. },
  15020. ]
  15021. ))
  15022. characterMakers.push(() => makeCharacter(
  15023. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15024. {
  15025. front: {
  15026. height: math.unit(6, "feet"),
  15027. weight: math.unit(150, "lb"),
  15028. name: "Front",
  15029. image: {
  15030. source: "./media/characters/ignatius/front.svg",
  15031. extra: 245 / 222,
  15032. bottom: 0.01
  15033. }
  15034. },
  15035. },
  15036. [
  15037. {
  15038. name: "Normal",
  15039. height: math.unit(5 + 5 / 12, "feet"),
  15040. default: true
  15041. },
  15042. ]
  15043. ))
  15044. characterMakers.push(() => makeCharacter(
  15045. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15046. {
  15047. front: {
  15048. height: math.unit(6 + 2 / 12, "feet"),
  15049. weight: math.unit(138, "lb"),
  15050. name: "Front",
  15051. image: {
  15052. source: "./media/characters/mei-li/front.svg",
  15053. extra: 237 / 229,
  15054. bottom: 0.03
  15055. }
  15056. },
  15057. },
  15058. [
  15059. {
  15060. name: "Normal",
  15061. height: math.unit(6 + 2 / 12, "feet"),
  15062. default: true
  15063. },
  15064. ]
  15065. ))
  15066. characterMakers.push(() => makeCharacter(
  15067. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15068. {
  15069. front: {
  15070. height: math.unit(2 + 4 / 12, "feet"),
  15071. weight: math.unit(62, "lb"),
  15072. name: "Front",
  15073. image: {
  15074. source: "./media/characters/puru/front.svg",
  15075. extra: 206 / 149,
  15076. bottom: 0.06
  15077. }
  15078. },
  15079. },
  15080. [
  15081. {
  15082. name: "Normal",
  15083. height: math.unit(2 + 4 / 12, "feet"),
  15084. default: true
  15085. },
  15086. ]
  15087. ))
  15088. characterMakers.push(() => makeCharacter(
  15089. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15090. {
  15091. anthro: {
  15092. height: math.unit(5 + 8/12, "feet"),
  15093. weight: math.unit(200, "lb"),
  15094. energyNeed: math.unit(2000, "kcal"),
  15095. name: "Anthro",
  15096. image: {
  15097. source: "./media/characters/kee/anthro.svg",
  15098. extra: 3251/3184,
  15099. bottom: 250/3501
  15100. }
  15101. },
  15102. taur: {
  15103. height: math.unit(11, "feet"),
  15104. weight: math.unit(500, "lb"),
  15105. energyNeed: math.unit(5000, "kcal"),
  15106. name: "Taur",
  15107. image: {
  15108. source: "./media/characters/kee/taur.svg",
  15109. extra: 1362/1320,
  15110. bottom: 83/1445
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(5 + 8/12, "feet"),
  15118. default: true
  15119. },
  15120. {
  15121. name: "Macro",
  15122. height: math.unit(35, "feet")
  15123. },
  15124. ]
  15125. ))
  15126. characterMakers.push(() => makeCharacter(
  15127. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15128. {
  15129. anthro: {
  15130. height: math.unit(7, "feet"),
  15131. weight: math.unit(190, "lb"),
  15132. name: "Anthro",
  15133. image: {
  15134. source: "./media/characters/cobalt-dracha/anthro.svg",
  15135. extra: 231 / 225,
  15136. bottom: 0.04
  15137. }
  15138. },
  15139. feral: {
  15140. height: math.unit(9 + 7 / 12, "feet"),
  15141. weight: math.unit(294, "lb"),
  15142. name: "Feral",
  15143. image: {
  15144. source: "./media/characters/cobalt-dracha/feral.svg",
  15145. extra: 692 / 633,
  15146. bottom: 0.05
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Normal",
  15153. height: math.unit(7, "feet"),
  15154. default: true
  15155. },
  15156. ]
  15157. ))
  15158. characterMakers.push(() => makeCharacter(
  15159. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15160. {
  15161. fallen: {
  15162. height: math.unit(11 + 8 / 12, "feet"),
  15163. weight: math.unit(485, "lb"),
  15164. name: "Java (Fallen)",
  15165. rename: true,
  15166. image: {
  15167. source: "./media/characters/java/fallen.svg",
  15168. extra: 226 / 208,
  15169. bottom: 0.005
  15170. }
  15171. },
  15172. godkin: {
  15173. height: math.unit(10 + 6 / 12, "feet"),
  15174. weight: math.unit(328, "lb"),
  15175. name: "Java (Godkin)",
  15176. rename: true,
  15177. image: {
  15178. source: "./media/characters/java/godkin.svg",
  15179. extra: 270 / 262,
  15180. bottom: 0.02
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Normal",
  15187. height: math.unit(11 + 8 / 12, "feet"),
  15188. default: true
  15189. },
  15190. ]
  15191. ))
  15192. characterMakers.push(() => makeCharacter(
  15193. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15194. {
  15195. front: {
  15196. height: math.unit(7 + 8 / 12, "feet"),
  15197. weight: math.unit(320, "lb"),
  15198. name: "Front",
  15199. image: {
  15200. source: "./media/characters/skoll/front.svg",
  15201. extra: 232 / 220,
  15202. bottom: 0.02
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(7 + 8 / 12, "feet"),
  15210. default: true
  15211. },
  15212. ]
  15213. ))
  15214. characterMakers.push(() => makeCharacter(
  15215. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15216. {
  15217. front: {
  15218. height: math.unit(5 + 9 / 12, "feet"),
  15219. weight: math.unit(170, "lb"),
  15220. name: "Front",
  15221. image: {
  15222. source: "./media/characters/purna/front.svg",
  15223. extra: 239 / 229,
  15224. bottom: 0.01
  15225. }
  15226. },
  15227. },
  15228. [
  15229. {
  15230. name: "Normal",
  15231. height: math.unit(5 + 9 / 12, "feet"),
  15232. default: true
  15233. },
  15234. ]
  15235. ))
  15236. characterMakers.push(() => makeCharacter(
  15237. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15238. {
  15239. front: {
  15240. height: math.unit(5 + 9 / 12, "feet"),
  15241. weight: math.unit(142, "lb"),
  15242. name: "Front",
  15243. image: {
  15244. source: "./media/characters/kuva/front.svg",
  15245. extra: 281 / 271,
  15246. bottom: 0.006
  15247. }
  15248. },
  15249. },
  15250. [
  15251. {
  15252. name: "Normal",
  15253. height: math.unit(5 + 9 / 12, "feet"),
  15254. default: true
  15255. },
  15256. ]
  15257. ))
  15258. characterMakers.push(() => makeCharacter(
  15259. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15260. {
  15261. anthro: {
  15262. height: math.unit(9 + 2 / 12, "feet"),
  15263. weight: math.unit(270, "lb"),
  15264. name: "Anthro",
  15265. image: {
  15266. source: "./media/characters/embra/anthro.svg",
  15267. extra: 200 / 187,
  15268. bottom: 0.02
  15269. }
  15270. },
  15271. feral: {
  15272. height: math.unit(18 + 8 / 12, "feet"),
  15273. weight: math.unit(576, "lb"),
  15274. name: "Feral",
  15275. image: {
  15276. source: "./media/characters/embra/feral.svg",
  15277. extra: 152 / 137,
  15278. bottom: 0.037
  15279. }
  15280. },
  15281. },
  15282. [
  15283. {
  15284. name: "Normal",
  15285. height: math.unit(9 + 2 / 12, "feet"),
  15286. default: true
  15287. },
  15288. ]
  15289. ))
  15290. characterMakers.push(() => makeCharacter(
  15291. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15292. {
  15293. anthro: {
  15294. height: math.unit(10 + 9 / 12, "feet"),
  15295. weight: math.unit(224, "lb"),
  15296. name: "Anthro",
  15297. image: {
  15298. source: "./media/characters/grottos/anthro.svg",
  15299. extra: 350 / 332,
  15300. bottom: 0.045
  15301. }
  15302. },
  15303. feral: {
  15304. height: math.unit(20 + 7 / 12, "feet"),
  15305. weight: math.unit(629, "lb"),
  15306. name: "Feral",
  15307. image: {
  15308. source: "./media/characters/grottos/feral.svg",
  15309. extra: 207 / 190,
  15310. bottom: 0.05
  15311. }
  15312. },
  15313. },
  15314. [
  15315. {
  15316. name: "Normal",
  15317. height: math.unit(10 + 9 / 12, "feet"),
  15318. default: true
  15319. },
  15320. ]
  15321. ))
  15322. characterMakers.push(() => makeCharacter(
  15323. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15324. {
  15325. anthro: {
  15326. height: math.unit(9 + 6 / 12, "feet"),
  15327. weight: math.unit(298, "lb"),
  15328. name: "Anthro",
  15329. image: {
  15330. source: "./media/characters/frifna/anthro.svg",
  15331. extra: 282 / 269,
  15332. bottom: 0.015
  15333. }
  15334. },
  15335. feral: {
  15336. height: math.unit(16 + 2 / 12, "feet"),
  15337. weight: math.unit(624, "lb"),
  15338. name: "Feral",
  15339. image: {
  15340. source: "./media/characters/frifna/feral.svg"
  15341. }
  15342. },
  15343. },
  15344. [
  15345. {
  15346. name: "Normal",
  15347. height: math.unit(9 + 6 / 12, "feet"),
  15348. default: true
  15349. },
  15350. ]
  15351. ))
  15352. characterMakers.push(() => makeCharacter(
  15353. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15354. {
  15355. front: {
  15356. height: math.unit(6 + 2 / 12, "feet"),
  15357. weight: math.unit(168, "lb"),
  15358. name: "Front",
  15359. image: {
  15360. source: "./media/characters/elise/front.svg",
  15361. extra: 276 / 271
  15362. }
  15363. },
  15364. },
  15365. [
  15366. {
  15367. name: "Normal",
  15368. height: math.unit(6 + 2 / 12, "feet"),
  15369. default: true
  15370. },
  15371. ]
  15372. ))
  15373. characterMakers.push(() => makeCharacter(
  15374. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15375. {
  15376. front: {
  15377. height: math.unit(5 + 10 / 12, "feet"),
  15378. weight: math.unit(210, "lb"),
  15379. name: "Front",
  15380. image: {
  15381. source: "./media/characters/glade/front.svg",
  15382. extra: 258 / 247,
  15383. bottom: 0.008
  15384. }
  15385. },
  15386. },
  15387. [
  15388. {
  15389. name: "Normal",
  15390. height: math.unit(5 + 10 / 12, "feet"),
  15391. default: true
  15392. },
  15393. ]
  15394. ))
  15395. characterMakers.push(() => makeCharacter(
  15396. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15397. {
  15398. front: {
  15399. height: math.unit(5 + 10 / 12, "feet"),
  15400. weight: math.unit(129, "lb"),
  15401. name: "Front",
  15402. image: {
  15403. source: "./media/characters/rina/front.svg",
  15404. extra: 266 / 255,
  15405. bottom: 0.005
  15406. }
  15407. },
  15408. },
  15409. [
  15410. {
  15411. name: "Normal",
  15412. height: math.unit(5 + 10 / 12, "feet"),
  15413. default: true
  15414. },
  15415. ]
  15416. ))
  15417. characterMakers.push(() => makeCharacter(
  15418. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15419. {
  15420. front: {
  15421. height: math.unit(6 + 1 / 12, "feet"),
  15422. weight: math.unit(192, "lb"),
  15423. name: "Front",
  15424. image: {
  15425. source: "./media/characters/veronica/front.svg",
  15426. extra: 319 / 309,
  15427. bottom: 0.005
  15428. }
  15429. },
  15430. },
  15431. [
  15432. {
  15433. name: "Normal",
  15434. height: math.unit(6 + 1 / 12, "feet"),
  15435. default: true
  15436. },
  15437. ]
  15438. ))
  15439. characterMakers.push(() => makeCharacter(
  15440. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15441. {
  15442. front: {
  15443. height: math.unit(9 + 3 / 12, "feet"),
  15444. weight: math.unit(1100, "lb"),
  15445. name: "Front",
  15446. image: {
  15447. source: "./media/characters/braxton/front.svg",
  15448. extra: 1057 / 984,
  15449. bottom: 0.05
  15450. }
  15451. },
  15452. },
  15453. [
  15454. {
  15455. name: "Normal",
  15456. height: math.unit(9 + 3 / 12, "feet")
  15457. },
  15458. {
  15459. name: "Giant",
  15460. height: math.unit(300, "feet"),
  15461. default: true
  15462. },
  15463. {
  15464. name: "Macro",
  15465. height: math.unit(700, "feet")
  15466. },
  15467. {
  15468. name: "Megamacro",
  15469. height: math.unit(6000, "feet")
  15470. },
  15471. ]
  15472. ))
  15473. characterMakers.push(() => makeCharacter(
  15474. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15475. {
  15476. front: {
  15477. height: math.unit(6 + 7 / 12, "feet"),
  15478. weight: math.unit(150, "lb"),
  15479. name: "Front",
  15480. image: {
  15481. source: "./media/characters/blue-feyonics/front.svg",
  15482. extra: 1403 / 1306,
  15483. bottom: 0.047
  15484. }
  15485. },
  15486. },
  15487. [
  15488. {
  15489. name: "Normal",
  15490. height: math.unit(6 + 7 / 12, "feet"),
  15491. default: true
  15492. },
  15493. ]
  15494. ))
  15495. characterMakers.push(() => makeCharacter(
  15496. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15497. {
  15498. front: {
  15499. height: math.unit(1.8, "meters"),
  15500. weight: math.unit(60, "kg"),
  15501. name: "Front",
  15502. image: {
  15503. source: "./media/characters/maxwell/front.svg",
  15504. extra: 2060 / 1873
  15505. }
  15506. },
  15507. },
  15508. [
  15509. {
  15510. name: "Micro",
  15511. height: math.unit(1, "mm")
  15512. },
  15513. {
  15514. name: "Normal",
  15515. height: math.unit(1.8, "meter"),
  15516. default: true
  15517. },
  15518. {
  15519. name: "Macro",
  15520. height: math.unit(30, "meters")
  15521. },
  15522. {
  15523. name: "Megamacro",
  15524. height: math.unit(10, "km")
  15525. },
  15526. ]
  15527. ))
  15528. characterMakers.push(() => makeCharacter(
  15529. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15530. {
  15531. front: {
  15532. height: math.unit(6, "feet"),
  15533. weight: math.unit(150, "lb"),
  15534. name: "Front",
  15535. image: {
  15536. source: "./media/characters/jack/front.svg",
  15537. extra: 1754 / 1640,
  15538. bottom: 0.01
  15539. }
  15540. },
  15541. },
  15542. [
  15543. {
  15544. name: "Normal",
  15545. height: math.unit(80000, "feet"),
  15546. default: true
  15547. },
  15548. {
  15549. name: "Max size",
  15550. height: math.unit(10, "lightyears")
  15551. },
  15552. ]
  15553. ))
  15554. characterMakers.push(() => makeCharacter(
  15555. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15556. {
  15557. upright: {
  15558. height: math.unit(7, "feet"),
  15559. weight: math.unit(170, "lb"),
  15560. name: "Upright",
  15561. image: {
  15562. source: "./media/characters/cafat/upright.svg",
  15563. bottom: 0.01
  15564. }
  15565. },
  15566. uprightFull: {
  15567. height: math.unit(7, "feet"),
  15568. weight: math.unit(170, "lb"),
  15569. name: "Upright (Full)",
  15570. image: {
  15571. source: "./media/characters/cafat/upright-full.svg",
  15572. bottom: 0.01
  15573. }
  15574. },
  15575. side: {
  15576. height: math.unit(5, "feet"),
  15577. weight: math.unit(150, "lb"),
  15578. name: "Side",
  15579. image: {
  15580. source: "./media/characters/cafat/side.svg"
  15581. }
  15582. },
  15583. },
  15584. [
  15585. {
  15586. name: "Small",
  15587. height: math.unit(7, "feet"),
  15588. default: true
  15589. },
  15590. {
  15591. name: "Large",
  15592. height: math.unit(15.5, "feet")
  15593. },
  15594. ]
  15595. ))
  15596. characterMakers.push(() => makeCharacter(
  15597. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15598. {
  15599. front: {
  15600. height: math.unit(6, "feet"),
  15601. weight: math.unit(150, "lb"),
  15602. name: "Front",
  15603. image: {
  15604. source: "./media/characters/verin-raharra/front.svg",
  15605. extra: 5019 / 4835,
  15606. bottom: 0.023
  15607. }
  15608. },
  15609. },
  15610. [
  15611. {
  15612. name: "Normal",
  15613. height: math.unit(7 + 5 / 12, "feet"),
  15614. default: true
  15615. },
  15616. {
  15617. name: "Upsized",
  15618. height: math.unit(20, "feet")
  15619. },
  15620. ]
  15621. ))
  15622. characterMakers.push(() => makeCharacter(
  15623. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15624. {
  15625. front: {
  15626. height: math.unit(7, "feet"),
  15627. weight: math.unit(230, "lb"),
  15628. name: "Front",
  15629. image: {
  15630. source: "./media/characters/nakata/front.svg",
  15631. extra: 1.005,
  15632. bottom: 0.01
  15633. }
  15634. },
  15635. },
  15636. [
  15637. {
  15638. name: "Normal",
  15639. height: math.unit(7, "feet"),
  15640. default: true
  15641. },
  15642. {
  15643. name: "Big",
  15644. height: math.unit(14, "feet")
  15645. },
  15646. {
  15647. name: "Macro",
  15648. height: math.unit(400, "feet")
  15649. },
  15650. ]
  15651. ))
  15652. characterMakers.push(() => makeCharacter(
  15653. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15654. {
  15655. front: {
  15656. height: math.unit(4.91, "feet"),
  15657. weight: math.unit(100, "lb"),
  15658. name: "Front",
  15659. image: {
  15660. source: "./media/characters/lily/front.svg",
  15661. extra: 1585 / 1415,
  15662. bottom: 0.02
  15663. }
  15664. },
  15665. },
  15666. [
  15667. {
  15668. name: "Normal",
  15669. height: math.unit(4.91, "feet"),
  15670. default: true
  15671. },
  15672. ]
  15673. ))
  15674. characterMakers.push(() => makeCharacter(
  15675. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15676. {
  15677. laying: {
  15678. height: math.unit(4 + 4 / 12, "feet"),
  15679. weight: math.unit(600, "lb"),
  15680. name: "Laying",
  15681. image: {
  15682. source: "./media/characters/sheila/laying.svg",
  15683. extra: 1333 / 1265,
  15684. bottom: 0.16
  15685. }
  15686. },
  15687. },
  15688. [
  15689. {
  15690. name: "Normal",
  15691. height: math.unit(4 + 4 / 12, "feet"),
  15692. default: true
  15693. },
  15694. ]
  15695. ))
  15696. characterMakers.push(() => makeCharacter(
  15697. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15698. {
  15699. front: {
  15700. height: math.unit(6, "feet"),
  15701. weight: math.unit(190, "lb"),
  15702. name: "Front",
  15703. image: {
  15704. source: "./media/characters/sax/front.svg",
  15705. extra: 1187 / 973,
  15706. bottom: 0.042
  15707. }
  15708. },
  15709. },
  15710. [
  15711. {
  15712. name: "Micro",
  15713. height: math.unit(4, "inches"),
  15714. default: true
  15715. },
  15716. ]
  15717. ))
  15718. characterMakers.push(() => makeCharacter(
  15719. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15720. {
  15721. front: {
  15722. height: math.unit(6, "feet"),
  15723. weight: math.unit(150, "lb"),
  15724. name: "Front",
  15725. image: {
  15726. source: "./media/characters/pandora/front.svg",
  15727. extra: 2720 / 2556,
  15728. bottom: 0.015
  15729. }
  15730. },
  15731. back: {
  15732. height: math.unit(6, "feet"),
  15733. weight: math.unit(150, "lb"),
  15734. name: "Back",
  15735. image: {
  15736. source: "./media/characters/pandora/back.svg",
  15737. extra: 2720 / 2556,
  15738. bottom: 0.01
  15739. }
  15740. },
  15741. beans: {
  15742. height: math.unit(6 / 8, "feet"),
  15743. name: "Beans",
  15744. image: {
  15745. source: "./media/characters/pandora/beans.svg"
  15746. }
  15747. },
  15748. collar: {
  15749. height: math.unit(0.31, "feet"),
  15750. name: "Collar",
  15751. image: {
  15752. source: "./media/characters/pandora/collar.svg"
  15753. }
  15754. },
  15755. skirt: {
  15756. height: math.unit(6, "feet"),
  15757. weight: math.unit(150, "lb"),
  15758. name: "Skirt",
  15759. image: {
  15760. source: "./media/characters/pandora/skirt.svg",
  15761. extra: 1622 / 1525,
  15762. bottom: 0.015
  15763. }
  15764. },
  15765. hoodie: {
  15766. height: math.unit(6, "feet"),
  15767. weight: math.unit(150, "lb"),
  15768. name: "Hoodie",
  15769. image: {
  15770. source: "./media/characters/pandora/hoodie.svg",
  15771. extra: 1622 / 1525,
  15772. bottom: 0.015
  15773. }
  15774. },
  15775. casual: {
  15776. height: math.unit(6, "feet"),
  15777. weight: math.unit(150, "lb"),
  15778. name: "Casual",
  15779. image: {
  15780. source: "./media/characters/pandora/casual.svg",
  15781. extra: 1622 / 1525,
  15782. bottom: 0.015
  15783. }
  15784. },
  15785. },
  15786. [
  15787. {
  15788. name: "Normal",
  15789. height: math.unit(6, "feet")
  15790. },
  15791. {
  15792. name: "Big Steppy",
  15793. height: math.unit(1, "km"),
  15794. default: true
  15795. },
  15796. {
  15797. name: "Galactic Steppy",
  15798. height: math.unit(2, "gigameters")
  15799. },
  15800. ]
  15801. ))
  15802. characterMakers.push(() => makeCharacter(
  15803. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15804. {
  15805. side: {
  15806. height: math.unit(10, "feet"),
  15807. weight: math.unit(800, "kg"),
  15808. name: "Side",
  15809. image: {
  15810. source: "./media/characters/venio-darcony/side.svg",
  15811. extra: 1373 / 1003,
  15812. bottom: 0.037
  15813. }
  15814. },
  15815. front: {
  15816. height: math.unit(19, "feet"),
  15817. weight: math.unit(800, "kg"),
  15818. name: "Front",
  15819. image: {
  15820. source: "./media/characters/venio-darcony/front.svg"
  15821. }
  15822. },
  15823. back: {
  15824. height: math.unit(19, "feet"),
  15825. weight: math.unit(800, "kg"),
  15826. name: "Back",
  15827. image: {
  15828. source: "./media/characters/venio-darcony/back.svg"
  15829. }
  15830. },
  15831. sideNsfw: {
  15832. height: math.unit(10, "feet"),
  15833. weight: math.unit(800, "kg"),
  15834. name: "Side (NSFW)",
  15835. image: {
  15836. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15837. extra: 1373 / 1003,
  15838. bottom: 0.037
  15839. }
  15840. },
  15841. frontNsfw: {
  15842. height: math.unit(19, "feet"),
  15843. weight: math.unit(800, "kg"),
  15844. name: "Front (NSFW)",
  15845. image: {
  15846. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15847. }
  15848. },
  15849. backNsfw: {
  15850. height: math.unit(19, "feet"),
  15851. weight: math.unit(800, "kg"),
  15852. name: "Back (NSFW)",
  15853. image: {
  15854. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15855. }
  15856. },
  15857. sideArmored: {
  15858. height: math.unit(10, "feet"),
  15859. weight: math.unit(800, "kg"),
  15860. name: "Side (Armored)",
  15861. image: {
  15862. source: "./media/characters/venio-darcony/side-armored.svg",
  15863. extra: 1373 / 1003,
  15864. bottom: 0.037
  15865. }
  15866. },
  15867. frontArmored: {
  15868. height: math.unit(19, "feet"),
  15869. weight: math.unit(900, "kg"),
  15870. name: "Front (Armored)",
  15871. image: {
  15872. source: "./media/characters/venio-darcony/front-armored.svg"
  15873. }
  15874. },
  15875. backArmored: {
  15876. height: math.unit(19, "feet"),
  15877. weight: math.unit(900, "kg"),
  15878. name: "Back (Armored)",
  15879. image: {
  15880. source: "./media/characters/venio-darcony/back-armored.svg"
  15881. }
  15882. },
  15883. sword: {
  15884. height: math.unit(10, "feet"),
  15885. weight: math.unit(50, "lb"),
  15886. name: "Sword",
  15887. image: {
  15888. source: "./media/characters/venio-darcony/sword.svg"
  15889. }
  15890. },
  15891. },
  15892. [
  15893. {
  15894. name: "Normal",
  15895. height: math.unit(10, "feet")
  15896. },
  15897. {
  15898. name: "Macro",
  15899. height: math.unit(130, "feet"),
  15900. default: true
  15901. },
  15902. {
  15903. name: "Macro+",
  15904. height: math.unit(240, "feet")
  15905. },
  15906. ]
  15907. ))
  15908. characterMakers.push(() => makeCharacter(
  15909. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15910. {
  15911. front: {
  15912. height: math.unit(6, "feet"),
  15913. weight: math.unit(150, "lb"),
  15914. name: "Front",
  15915. image: {
  15916. source: "./media/characters/veski/front.svg",
  15917. extra: 1299 / 1225,
  15918. bottom: 0.04
  15919. }
  15920. },
  15921. back: {
  15922. height: math.unit(6, "feet"),
  15923. weight: math.unit(150, "lb"),
  15924. name: "Back",
  15925. image: {
  15926. source: "./media/characters/veski/back.svg",
  15927. extra: 1299 / 1225,
  15928. bottom: 0.008
  15929. }
  15930. },
  15931. maw: {
  15932. height: math.unit(1.5 * 1.21, "feet"),
  15933. name: "Maw",
  15934. image: {
  15935. source: "./media/characters/veski/maw.svg"
  15936. }
  15937. },
  15938. },
  15939. [
  15940. {
  15941. name: "Macro",
  15942. height: math.unit(2, "km"),
  15943. default: true
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15949. {
  15950. front: {
  15951. height: math.unit(5 + 7 / 12, "feet"),
  15952. name: "Front",
  15953. image: {
  15954. source: "./media/characters/isabelle/front.svg",
  15955. extra: 2130 / 1976,
  15956. bottom: 0.05
  15957. }
  15958. },
  15959. },
  15960. [
  15961. {
  15962. name: "Supermicro",
  15963. height: math.unit(10, "micrometers")
  15964. },
  15965. {
  15966. name: "Micro",
  15967. height: math.unit(1, "inch")
  15968. },
  15969. {
  15970. name: "Tiny",
  15971. height: math.unit(5, "inches")
  15972. },
  15973. {
  15974. name: "Standard",
  15975. height: math.unit(5 + 7 / 12, "inches")
  15976. },
  15977. {
  15978. name: "Macro",
  15979. height: math.unit(80, "meters"),
  15980. default: true
  15981. },
  15982. {
  15983. name: "Megamacro",
  15984. height: math.unit(250, "meters")
  15985. },
  15986. {
  15987. name: "Gigamacro",
  15988. height: math.unit(5, "km")
  15989. },
  15990. {
  15991. name: "Cosmic",
  15992. height: math.unit(2.5e6, "miles")
  15993. },
  15994. ]
  15995. ))
  15996. characterMakers.push(() => makeCharacter(
  15997. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15998. {
  15999. front: {
  16000. height: math.unit(6, "feet"),
  16001. weight: math.unit(150, "lb"),
  16002. name: "Front",
  16003. image: {
  16004. source: "./media/characters/hanzo/front.svg",
  16005. extra: 374 / 344,
  16006. bottom: 0.02
  16007. }
  16008. },
  16009. },
  16010. [
  16011. {
  16012. name: "Normal",
  16013. height: math.unit(8, "feet"),
  16014. default: true
  16015. },
  16016. ]
  16017. ))
  16018. characterMakers.push(() => makeCharacter(
  16019. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16020. {
  16021. front: {
  16022. height: math.unit(7, "feet"),
  16023. weight: math.unit(130, "lb"),
  16024. name: "Front",
  16025. image: {
  16026. source: "./media/characters/anna/front.svg",
  16027. extra: 169 / 145,
  16028. bottom: 0.06
  16029. }
  16030. },
  16031. full: {
  16032. height: math.unit(4.96, "feet"),
  16033. weight: math.unit(220, "lb"),
  16034. name: "Full",
  16035. image: {
  16036. source: "./media/characters/anna/full.svg",
  16037. extra: 138 / 114,
  16038. bottom: 0.15
  16039. }
  16040. },
  16041. tongue: {
  16042. height: math.unit(2.53, "feet"),
  16043. name: "Tongue",
  16044. image: {
  16045. source: "./media/characters/anna/tongue.svg"
  16046. }
  16047. },
  16048. },
  16049. [
  16050. {
  16051. name: "Normal",
  16052. height: math.unit(7, "feet"),
  16053. default: true
  16054. },
  16055. ]
  16056. ))
  16057. characterMakers.push(() => makeCharacter(
  16058. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16059. {
  16060. front: {
  16061. height: math.unit(7, "feet"),
  16062. weight: math.unit(150, "lb"),
  16063. name: "Front",
  16064. image: {
  16065. source: "./media/characters/ian-corvid/front.svg",
  16066. extra: 150 / 142,
  16067. bottom: 0.02
  16068. }
  16069. },
  16070. back: {
  16071. height: math.unit(7, "feet"),
  16072. weight: math.unit(150, "lb"),
  16073. name: "Back",
  16074. image: {
  16075. source: "./media/characters/ian-corvid/back.svg",
  16076. extra: 150 / 143,
  16077. bottom: 0.01
  16078. }
  16079. },
  16080. stomping: {
  16081. height: math.unit(7, "feet"),
  16082. weight: math.unit(150, "lb"),
  16083. name: "Stomping",
  16084. image: {
  16085. source: "./media/characters/ian-corvid/stomping.svg",
  16086. extra: 76 / 72
  16087. }
  16088. },
  16089. sitting: {
  16090. height: math.unit(7 / 1.8, "feet"),
  16091. weight: math.unit(150, "lb"),
  16092. name: "Sitting",
  16093. image: {
  16094. source: "./media/characters/ian-corvid/sitting.svg",
  16095. extra: 1400 / 1269,
  16096. bottom: 0.15
  16097. }
  16098. },
  16099. },
  16100. [
  16101. {
  16102. name: "Tiny Microw",
  16103. height: math.unit(1, "inch")
  16104. },
  16105. {
  16106. name: "Microw",
  16107. height: math.unit(6, "inches")
  16108. },
  16109. {
  16110. name: "Crow",
  16111. height: math.unit(7 + 1 / 12, "feet"),
  16112. default: true
  16113. },
  16114. {
  16115. name: "Macrow",
  16116. height: math.unit(176, "feet")
  16117. },
  16118. ]
  16119. ))
  16120. characterMakers.push(() => makeCharacter(
  16121. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16122. {
  16123. front: {
  16124. height: math.unit(5 + 7 / 12, "feet"),
  16125. weight: math.unit(147, "lb"),
  16126. name: "Front",
  16127. image: {
  16128. source: "./media/characters/natalie-kellon/front.svg",
  16129. extra: 1214 / 1141,
  16130. bottom: 0.02
  16131. }
  16132. },
  16133. },
  16134. [
  16135. {
  16136. name: "Micro",
  16137. height: math.unit(1 / 16, "inch")
  16138. },
  16139. {
  16140. name: "Tiny",
  16141. height: math.unit(4, "inches")
  16142. },
  16143. {
  16144. name: "Normal",
  16145. height: math.unit(5 + 7 / 12, "feet"),
  16146. default: true
  16147. },
  16148. {
  16149. name: "Amazon",
  16150. height: math.unit(12, "feet")
  16151. },
  16152. {
  16153. name: "Giantess",
  16154. height: math.unit(160, "meters")
  16155. },
  16156. {
  16157. name: "Titaness",
  16158. height: math.unit(800, "meters")
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(6, "feet"),
  16167. weight: math.unit(150, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/alluria/front.svg",
  16171. extra: 806 / 738,
  16172. bottom: 0.01
  16173. }
  16174. },
  16175. side: {
  16176. height: math.unit(6, "feet"),
  16177. weight: math.unit(150, "lb"),
  16178. name: "Side",
  16179. image: {
  16180. source: "./media/characters/alluria/side.svg",
  16181. extra: 800 / 750,
  16182. }
  16183. },
  16184. back: {
  16185. height: math.unit(6, "feet"),
  16186. weight: math.unit(150, "lb"),
  16187. name: "Back",
  16188. image: {
  16189. source: "./media/characters/alluria/back.svg",
  16190. extra: 806 / 738,
  16191. }
  16192. },
  16193. frontMaid: {
  16194. height: math.unit(6, "feet"),
  16195. weight: math.unit(150, "lb"),
  16196. name: "Front (Maid)",
  16197. image: {
  16198. source: "./media/characters/alluria/front-maid.svg",
  16199. extra: 806 / 738,
  16200. bottom: 0.01
  16201. }
  16202. },
  16203. sideMaid: {
  16204. height: math.unit(6, "feet"),
  16205. weight: math.unit(150, "lb"),
  16206. name: "Side (Maid)",
  16207. image: {
  16208. source: "./media/characters/alluria/side-maid.svg",
  16209. extra: 800 / 750,
  16210. bottom: 0.005
  16211. }
  16212. },
  16213. backMaid: {
  16214. height: math.unit(6, "feet"),
  16215. weight: math.unit(150, "lb"),
  16216. name: "Back (Maid)",
  16217. image: {
  16218. source: "./media/characters/alluria/back-maid.svg",
  16219. extra: 806 / 738,
  16220. }
  16221. },
  16222. },
  16223. [
  16224. {
  16225. name: "Micro",
  16226. height: math.unit(6, "inches"),
  16227. default: true
  16228. },
  16229. ]
  16230. ))
  16231. characterMakers.push(() => makeCharacter(
  16232. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16233. {
  16234. front: {
  16235. height: math.unit(6, "feet"),
  16236. weight: math.unit(150, "lb"),
  16237. name: "Front",
  16238. image: {
  16239. source: "./media/characters/kyle/front.svg",
  16240. extra: 1069 / 962,
  16241. bottom: 77.228 / 1727.45
  16242. }
  16243. },
  16244. },
  16245. [
  16246. {
  16247. name: "Macro",
  16248. height: math.unit(150, "feet"),
  16249. default: true
  16250. },
  16251. ]
  16252. ))
  16253. characterMakers.push(() => makeCharacter(
  16254. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16255. {
  16256. front: {
  16257. height: math.unit(6, "feet"),
  16258. weight: math.unit(300, "lb"),
  16259. name: "Front",
  16260. image: {
  16261. source: "./media/characters/duncan/front.svg",
  16262. extra: 1650 / 1482,
  16263. bottom: 0.05
  16264. }
  16265. },
  16266. },
  16267. [
  16268. {
  16269. name: "Macro",
  16270. height: math.unit(100, "feet"),
  16271. default: true
  16272. },
  16273. ]
  16274. ))
  16275. characterMakers.push(() => makeCharacter(
  16276. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16277. {
  16278. front: {
  16279. height: math.unit(5 + 4 / 12, "feet"),
  16280. weight: math.unit(220, "lb"),
  16281. name: "Front",
  16282. image: {
  16283. source: "./media/characters/memory/front.svg",
  16284. extra: 3641 / 3545,
  16285. bottom: 0.03
  16286. }
  16287. },
  16288. back: {
  16289. height: math.unit(5 + 4 / 12, "feet"),
  16290. weight: math.unit(220, "lb"),
  16291. name: "Back",
  16292. image: {
  16293. source: "./media/characters/memory/back.svg",
  16294. extra: 3641 / 3545,
  16295. bottom: 0.025
  16296. }
  16297. },
  16298. frontSkirt: {
  16299. height: math.unit(5 + 4 / 12, "feet"),
  16300. weight: math.unit(220, "lb"),
  16301. name: "Front (Skirt)",
  16302. image: {
  16303. source: "./media/characters/memory/front-skirt.svg",
  16304. extra: 3641 / 3545,
  16305. bottom: 0.03
  16306. }
  16307. },
  16308. frontDress: {
  16309. height: math.unit(5 + 4 / 12, "feet"),
  16310. weight: math.unit(220, "lb"),
  16311. name: "Front (Dress)",
  16312. image: {
  16313. source: "./media/characters/memory/front-dress.svg",
  16314. extra: 3641 / 3545,
  16315. bottom: 0.03
  16316. }
  16317. },
  16318. },
  16319. [
  16320. {
  16321. name: "Micro",
  16322. height: math.unit(6, "inches"),
  16323. default: true
  16324. },
  16325. {
  16326. name: "Normal",
  16327. height: math.unit(5 + 4 / 12, "feet")
  16328. },
  16329. ]
  16330. ))
  16331. characterMakers.push(() => makeCharacter(
  16332. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16333. {
  16334. front: {
  16335. height: math.unit(4 + 11 / 12, "feet"),
  16336. weight: math.unit(100, "lb"),
  16337. name: "Front",
  16338. image: {
  16339. source: "./media/characters/luno/front.svg",
  16340. extra: 1535 / 1487,
  16341. bottom: 0.03
  16342. }
  16343. },
  16344. },
  16345. [
  16346. {
  16347. name: "Micro",
  16348. height: math.unit(3, "inches")
  16349. },
  16350. {
  16351. name: "Normal",
  16352. height: math.unit(4 + 11 / 12, "feet"),
  16353. default: true
  16354. },
  16355. {
  16356. name: "Macro",
  16357. height: math.unit(300, "feet")
  16358. },
  16359. {
  16360. name: "Megamacro",
  16361. height: math.unit(700, "miles")
  16362. },
  16363. ]
  16364. ))
  16365. characterMakers.push(() => makeCharacter(
  16366. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16367. {
  16368. front: {
  16369. height: math.unit(6 + 2 / 12, "feet"),
  16370. weight: math.unit(170, "lb"),
  16371. name: "Front",
  16372. image: {
  16373. source: "./media/characters/jamesy/front.svg",
  16374. extra: 440 / 382,
  16375. bottom: 0.005
  16376. }
  16377. },
  16378. },
  16379. [
  16380. {
  16381. name: "Micro",
  16382. height: math.unit(3, "inches")
  16383. },
  16384. {
  16385. name: "Normal",
  16386. height: math.unit(6 + 2 / 12, "feet"),
  16387. default: true
  16388. },
  16389. {
  16390. name: "Macro",
  16391. height: math.unit(300, "feet")
  16392. },
  16393. {
  16394. name: "Megamacro",
  16395. height: math.unit(700, "miles")
  16396. },
  16397. ]
  16398. ))
  16399. characterMakers.push(() => makeCharacter(
  16400. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16401. {
  16402. front: {
  16403. height: math.unit(6, "feet"),
  16404. weight: math.unit(160, "lb"),
  16405. name: "Front",
  16406. image: {
  16407. source: "./media/characters/mark/front.svg",
  16408. extra: 3300 / 3100,
  16409. bottom: 136.42 / 3440.47
  16410. }
  16411. },
  16412. },
  16413. [
  16414. {
  16415. name: "Macro",
  16416. height: math.unit(120, "meters")
  16417. },
  16418. {
  16419. name: "Bigger Macro",
  16420. height: math.unit(350, "meters")
  16421. },
  16422. {
  16423. name: "Megamacro",
  16424. height: math.unit(8, "km"),
  16425. default: true
  16426. },
  16427. {
  16428. name: "Continental",
  16429. height: math.unit(4550, "km")
  16430. },
  16431. {
  16432. name: "Planetary",
  16433. height: math.unit(65000, "km")
  16434. },
  16435. ]
  16436. ))
  16437. characterMakers.push(() => makeCharacter(
  16438. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16439. {
  16440. front: {
  16441. height: math.unit(6, "feet"),
  16442. weight: math.unit(400, "lb"),
  16443. name: "Front",
  16444. image: {
  16445. source: "./media/characters/mac/front.svg",
  16446. extra: 1048 / 987.7,
  16447. bottom: 60 / 1107.6,
  16448. }
  16449. },
  16450. },
  16451. [
  16452. {
  16453. name: "Macro",
  16454. height: math.unit(500, "feet"),
  16455. default: true
  16456. },
  16457. ]
  16458. ))
  16459. characterMakers.push(() => makeCharacter(
  16460. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16461. {
  16462. front: {
  16463. height: math.unit(5 + 2 / 12, "feet"),
  16464. weight: math.unit(190, "lb"),
  16465. name: "Front",
  16466. image: {
  16467. source: "./media/characters/bari/front.svg",
  16468. extra: 3156 / 2880,
  16469. bottom: 0.03
  16470. }
  16471. },
  16472. back: {
  16473. height: math.unit(5 + 2 / 12, "feet"),
  16474. weight: math.unit(190, "lb"),
  16475. name: "Back",
  16476. image: {
  16477. source: "./media/characters/bari/back.svg",
  16478. extra: 3260 / 2834,
  16479. bottom: 0.025
  16480. }
  16481. },
  16482. frontPlush: {
  16483. height: math.unit(5 + 2 / 12, "feet"),
  16484. weight: math.unit(190, "lb"),
  16485. name: "Front (Plush)",
  16486. image: {
  16487. source: "./media/characters/bari/front-plush.svg",
  16488. extra: 1112 / 1061,
  16489. bottom: 0.002
  16490. }
  16491. },
  16492. },
  16493. [
  16494. {
  16495. name: "Micro",
  16496. height: math.unit(3, "inches")
  16497. },
  16498. {
  16499. name: "Normal",
  16500. height: math.unit(5 + 2 / 12, "feet"),
  16501. default: true
  16502. },
  16503. {
  16504. name: "Macro",
  16505. height: math.unit(20, "feet")
  16506. },
  16507. ]
  16508. ))
  16509. characterMakers.push(() => makeCharacter(
  16510. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16511. {
  16512. front: {
  16513. height: math.unit(6 + 1 / 12, "feet"),
  16514. weight: math.unit(275, "lb"),
  16515. name: "Front",
  16516. image: {
  16517. source: "./media/characters/hunter-misha-raven/front.svg"
  16518. }
  16519. },
  16520. },
  16521. [
  16522. {
  16523. name: "Mortal",
  16524. height: math.unit(6 + 1 / 12, "feet")
  16525. },
  16526. {
  16527. name: "Divine",
  16528. height: math.unit(1.12134e34, "parsecs"),
  16529. default: true
  16530. },
  16531. ]
  16532. ))
  16533. characterMakers.push(() => makeCharacter(
  16534. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16535. {
  16536. front: {
  16537. height: math.unit(6 + 3 / 12, "feet"),
  16538. weight: math.unit(220, "lb"),
  16539. name: "Front",
  16540. image: {
  16541. source: "./media/characters/max-calore/front.svg",
  16542. extra: 1700 / 1648,
  16543. bottom: 0.01
  16544. }
  16545. },
  16546. back: {
  16547. height: math.unit(6 + 3 / 12, "feet"),
  16548. weight: math.unit(220, "lb"),
  16549. name: "Back",
  16550. image: {
  16551. source: "./media/characters/max-calore/back.svg",
  16552. extra: 1700 / 1648,
  16553. bottom: 0.01
  16554. }
  16555. },
  16556. },
  16557. [
  16558. {
  16559. name: "Normal",
  16560. height: math.unit(6 + 3 / 12, "feet"),
  16561. default: true
  16562. },
  16563. ]
  16564. ))
  16565. characterMakers.push(() => makeCharacter(
  16566. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16567. {
  16568. side: {
  16569. height: math.unit(2 + 8 / 12, "feet"),
  16570. weight: math.unit(99, "lb"),
  16571. name: "Side",
  16572. image: {
  16573. source: "./media/characters/aspen/side.svg",
  16574. extra: 152 / 138,
  16575. bottom: 0.032
  16576. }
  16577. },
  16578. },
  16579. [
  16580. {
  16581. name: "Normal",
  16582. height: math.unit(2 + 8 / 12, "feet"),
  16583. default: true
  16584. },
  16585. ]
  16586. ))
  16587. characterMakers.push(() => makeCharacter(
  16588. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16589. {
  16590. side: {
  16591. height: math.unit(3 + 2 / 12, "feet"),
  16592. weight: math.unit(224, "lb"),
  16593. name: "Side",
  16594. image: {
  16595. source: "./media/characters/sheila-feral-wolf/side.svg",
  16596. extra: 179 / 166,
  16597. bottom: 0.03
  16598. }
  16599. },
  16600. },
  16601. [
  16602. {
  16603. name: "Normal",
  16604. height: math.unit(3 + 2 / 12, "feet"),
  16605. default: true
  16606. },
  16607. ]
  16608. ))
  16609. characterMakers.push(() => makeCharacter(
  16610. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16611. {
  16612. side: {
  16613. height: math.unit(1 + 9 / 12, "feet"),
  16614. weight: math.unit(38, "lb"),
  16615. name: "Side",
  16616. image: {
  16617. source: "./media/characters/michelle/side.svg",
  16618. extra: 147 / 136.7,
  16619. bottom: 0.03
  16620. }
  16621. },
  16622. },
  16623. [
  16624. {
  16625. name: "Normal",
  16626. height: math.unit(1 + 9 / 12, "feet"),
  16627. default: true
  16628. },
  16629. ]
  16630. ))
  16631. characterMakers.push(() => makeCharacter(
  16632. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16633. {
  16634. front: {
  16635. height: math.unit(1 + 1 / 12, "feet"),
  16636. weight: math.unit(18, "lb"),
  16637. name: "Front",
  16638. image: {
  16639. source: "./media/characters/nino/front.svg"
  16640. }
  16641. },
  16642. },
  16643. [
  16644. {
  16645. name: "Normal",
  16646. height: math.unit(1 + 1 / 12, "feet"),
  16647. default: true
  16648. },
  16649. ]
  16650. ))
  16651. characterMakers.push(() => makeCharacter(
  16652. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16653. {
  16654. front: {
  16655. height: math.unit(1, "feet"),
  16656. weight: math.unit(16, "lb"),
  16657. name: "Front",
  16658. image: {
  16659. source: "./media/characters/viola/front.svg"
  16660. }
  16661. },
  16662. },
  16663. [
  16664. {
  16665. name: "Normal",
  16666. height: math.unit(1, "feet"),
  16667. default: true
  16668. },
  16669. ]
  16670. ))
  16671. characterMakers.push(() => makeCharacter(
  16672. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16673. {
  16674. front: {
  16675. height: math.unit(6 + 5 / 12, "feet"),
  16676. weight: math.unit(580, "lb"),
  16677. name: "Front",
  16678. image: {
  16679. source: "./media/characters/atlas/front.svg",
  16680. extra: 298.5 / 290,
  16681. bottom: 0.015
  16682. }
  16683. },
  16684. },
  16685. [
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(6 + 5 / 12, "feet"),
  16689. default: true
  16690. },
  16691. ]
  16692. ))
  16693. characterMakers.push(() => makeCharacter(
  16694. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16695. {
  16696. side: {
  16697. height: math.unit(1 + 10 / 12, "feet"),
  16698. weight: math.unit(25, "lb"),
  16699. name: "Side",
  16700. image: {
  16701. source: "./media/characters/davy/side.svg",
  16702. extra: 200 / 170,
  16703. bottom: 0.01
  16704. }
  16705. },
  16706. },
  16707. [
  16708. {
  16709. name: "Normal",
  16710. height: math.unit(1 + 10 / 12, "feet"),
  16711. default: true
  16712. },
  16713. ]
  16714. ))
  16715. characterMakers.push(() => makeCharacter(
  16716. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16717. {
  16718. side: {
  16719. height: math.unit(4 + 8 / 12, "feet"),
  16720. weight: math.unit(166, "lb"),
  16721. name: "Side",
  16722. image: {
  16723. source: "./media/characters/fiona/side.svg",
  16724. extra: 232 / 220,
  16725. bottom: 0.03
  16726. }
  16727. },
  16728. },
  16729. [
  16730. {
  16731. name: "Normal",
  16732. height: math.unit(4 + 8 / 12, "feet"),
  16733. default: true
  16734. },
  16735. ]
  16736. ))
  16737. characterMakers.push(() => makeCharacter(
  16738. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16739. {
  16740. front: {
  16741. height: math.unit(2, "feet"),
  16742. weight: math.unit(62, "lb"),
  16743. name: "Front",
  16744. image: {
  16745. source: "./media/characters/lyla/front.svg",
  16746. bottom: 0.1
  16747. }
  16748. },
  16749. },
  16750. [
  16751. {
  16752. name: "Normal",
  16753. height: math.unit(2, "feet"),
  16754. default: true
  16755. },
  16756. ]
  16757. ))
  16758. characterMakers.push(() => makeCharacter(
  16759. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16760. {
  16761. side: {
  16762. height: math.unit(1.8, "feet"),
  16763. weight: math.unit(44, "lb"),
  16764. name: "Side",
  16765. image: {
  16766. source: "./media/characters/perseus/side.svg",
  16767. bottom: 0.21
  16768. }
  16769. },
  16770. },
  16771. [
  16772. {
  16773. name: "Normal",
  16774. height: math.unit(1.8, "feet"),
  16775. default: true
  16776. },
  16777. ]
  16778. ))
  16779. characterMakers.push(() => makeCharacter(
  16780. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16781. {
  16782. side: {
  16783. height: math.unit(4 + 2 / 12, "feet"),
  16784. weight: math.unit(20, "lb"),
  16785. name: "Side",
  16786. image: {
  16787. source: "./media/characters/remus/side.svg"
  16788. }
  16789. },
  16790. },
  16791. [
  16792. {
  16793. name: "Normal",
  16794. height: math.unit(4 + 2 / 12, "feet"),
  16795. default: true
  16796. },
  16797. ]
  16798. ))
  16799. characterMakers.push(() => makeCharacter(
  16800. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16801. {
  16802. front: {
  16803. height: math.unit(4 + 11 / 12, "feet"),
  16804. weight: math.unit(114, "lb"),
  16805. name: "Front",
  16806. image: {
  16807. source: "./media/characters/raf/front.svg",
  16808. bottom: 20.5 / 1863
  16809. }
  16810. },
  16811. side: {
  16812. height: math.unit(4 + 11 / 12, "feet"),
  16813. weight: math.unit(114, "lb"),
  16814. name: "Side",
  16815. image: {
  16816. source: "./media/characters/raf/side.svg",
  16817. bottom: 22 / 1822
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Micro",
  16824. height: math.unit(2, "inches")
  16825. },
  16826. {
  16827. name: "Normal",
  16828. height: math.unit(4 + 11 / 12, "feet"),
  16829. default: true
  16830. },
  16831. {
  16832. name: "Macro",
  16833. height: math.unit(70, "feet")
  16834. },
  16835. ]
  16836. ))
  16837. characterMakers.push(() => makeCharacter(
  16838. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16839. {
  16840. front: {
  16841. height: math.unit(1.5, "meters"),
  16842. weight: math.unit(68, "kg"),
  16843. name: "Front",
  16844. image: {
  16845. source: "./media/characters/liam-einarr/front.svg",
  16846. extra: 2822 / 2666
  16847. }
  16848. },
  16849. back: {
  16850. height: math.unit(1.5, "meters"),
  16851. weight: math.unit(68, "kg"),
  16852. name: "Back",
  16853. image: {
  16854. source: "./media/characters/liam-einarr/back.svg",
  16855. extra: 2822 / 2666,
  16856. bottom: 0.015
  16857. }
  16858. },
  16859. },
  16860. [
  16861. {
  16862. name: "Normal",
  16863. height: math.unit(1.5, "meters"),
  16864. default: true
  16865. },
  16866. {
  16867. name: "Macro",
  16868. height: math.unit(150, "meters")
  16869. },
  16870. {
  16871. name: "Megamacro",
  16872. height: math.unit(35, "km")
  16873. },
  16874. ]
  16875. ))
  16876. characterMakers.push(() => makeCharacter(
  16877. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16878. {
  16879. front: {
  16880. height: math.unit(6, "feet"),
  16881. weight: math.unit(75, "kg"),
  16882. name: "Front",
  16883. image: {
  16884. source: "./media/characters/linda/front.svg",
  16885. extra: 930 / 874,
  16886. bottom: 0.004
  16887. }
  16888. },
  16889. },
  16890. [
  16891. {
  16892. name: "Normal",
  16893. height: math.unit(6, "feet"),
  16894. default: true
  16895. },
  16896. ]
  16897. ))
  16898. characterMakers.push(() => makeCharacter(
  16899. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16900. {
  16901. front: {
  16902. height: math.unit(6 + 8 / 12, "feet"),
  16903. weight: math.unit(220, "lb"),
  16904. name: "Front",
  16905. image: {
  16906. source: "./media/characters/caylex/front.svg",
  16907. extra: 821 / 772,
  16908. bottom: 0.07
  16909. }
  16910. },
  16911. back: {
  16912. height: math.unit(6 + 8 / 12, "feet"),
  16913. weight: math.unit(220, "lb"),
  16914. name: "Back",
  16915. image: {
  16916. source: "./media/characters/caylex/back.svg",
  16917. extra: 821 / 772,
  16918. bottom: 0.022
  16919. }
  16920. },
  16921. hand: {
  16922. height: math.unit(1.25, "feet"),
  16923. name: "Hand",
  16924. image: {
  16925. source: "./media/characters/caylex/hand.svg"
  16926. }
  16927. },
  16928. foot: {
  16929. height: math.unit(1.6, "feet"),
  16930. name: "Foot",
  16931. image: {
  16932. source: "./media/characters/caylex/foot.svg"
  16933. }
  16934. },
  16935. armored: {
  16936. height: math.unit(6 + 8 / 12, "feet"),
  16937. weight: math.unit(250, "lb"),
  16938. name: "Armored",
  16939. image: {
  16940. source: "./media/characters/caylex/armored.svg",
  16941. extra: 1420 / 1310,
  16942. bottom: 0.045
  16943. }
  16944. },
  16945. },
  16946. [
  16947. {
  16948. name: "Normal",
  16949. height: math.unit(6 + 8 / 12, "feet"),
  16950. default: true
  16951. },
  16952. {
  16953. name: "Normal+",
  16954. height: math.unit(12, "feet")
  16955. },
  16956. ]
  16957. ))
  16958. characterMakers.push(() => makeCharacter(
  16959. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16960. {
  16961. front: {
  16962. height: math.unit(7 + 6 / 12, "feet"),
  16963. weight: math.unit(288, "lb"),
  16964. name: "Front",
  16965. image: {
  16966. source: "./media/characters/alana/front.svg",
  16967. extra: 679 / 653,
  16968. bottom: 22.5 / 701
  16969. }
  16970. },
  16971. },
  16972. [
  16973. {
  16974. name: "Normal",
  16975. height: math.unit(7 + 6 / 12, "feet")
  16976. },
  16977. {
  16978. name: "Large",
  16979. height: math.unit(50, "feet")
  16980. },
  16981. {
  16982. name: "Macro",
  16983. height: math.unit(100, "feet"),
  16984. default: true
  16985. },
  16986. {
  16987. name: "Macro+",
  16988. height: math.unit(200, "feet")
  16989. },
  16990. ]
  16991. ))
  16992. characterMakers.push(() => makeCharacter(
  16993. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16994. {
  16995. front: {
  16996. height: math.unit(6 + 1 / 12, "feet"),
  16997. weight: math.unit(210, "lb"),
  16998. name: "Front",
  16999. image: {
  17000. source: "./media/characters/hasani/front.svg",
  17001. extra: 244 / 232,
  17002. bottom: 0.01
  17003. }
  17004. },
  17005. back: {
  17006. height: math.unit(6 + 1 / 12, "feet"),
  17007. weight: math.unit(210, "lb"),
  17008. name: "Back",
  17009. image: {
  17010. source: "./media/characters/hasani/back.svg",
  17011. extra: 244 / 232,
  17012. bottom: 0.01
  17013. }
  17014. },
  17015. },
  17016. [
  17017. {
  17018. name: "Normal",
  17019. height: math.unit(6 + 1 / 12, "feet")
  17020. },
  17021. {
  17022. name: "Macro",
  17023. height: math.unit(175, "feet"),
  17024. default: true
  17025. },
  17026. ]
  17027. ))
  17028. characterMakers.push(() => makeCharacter(
  17029. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17030. {
  17031. front: {
  17032. height: math.unit(1.82, "meters"),
  17033. weight: math.unit(140, "lb"),
  17034. name: "Front",
  17035. image: {
  17036. source: "./media/characters/nita/front.svg",
  17037. extra: 2473 / 2363,
  17038. bottom: 0.01
  17039. }
  17040. },
  17041. },
  17042. [
  17043. {
  17044. name: "Normal",
  17045. height: math.unit(1.82, "m")
  17046. },
  17047. {
  17048. name: "Macro",
  17049. height: math.unit(300, "m")
  17050. },
  17051. {
  17052. name: "Mistake Canon",
  17053. height: math.unit(0.5, "miles"),
  17054. default: true
  17055. },
  17056. {
  17057. name: "Big Mistake",
  17058. height: math.unit(13, "miles")
  17059. },
  17060. {
  17061. name: "Playing God",
  17062. height: math.unit(2450, "miles")
  17063. },
  17064. ]
  17065. ))
  17066. characterMakers.push(() => makeCharacter(
  17067. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17068. {
  17069. front: {
  17070. height: math.unit(4, "feet"),
  17071. weight: math.unit(120, "lb"),
  17072. name: "Front",
  17073. image: {
  17074. source: "./media/characters/shiriko/front.svg",
  17075. extra: 195 / 188
  17076. }
  17077. },
  17078. },
  17079. [
  17080. {
  17081. name: "Normal",
  17082. height: math.unit(4, "feet"),
  17083. default: true
  17084. },
  17085. ]
  17086. ))
  17087. characterMakers.push(() => makeCharacter(
  17088. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17089. {
  17090. front: {
  17091. height: math.unit(6, "feet"),
  17092. name: "front",
  17093. image: {
  17094. source: "./media/characters/deja/front.svg",
  17095. extra: 926 / 840,
  17096. bottom: 0.07
  17097. }
  17098. },
  17099. },
  17100. [
  17101. {
  17102. name: "Planck Length",
  17103. height: math.unit(1.6e-35, "meters")
  17104. },
  17105. {
  17106. name: "Normal",
  17107. height: math.unit(30.48, "meters"),
  17108. default: true
  17109. },
  17110. {
  17111. name: "Universal",
  17112. height: math.unit(8.8e26, "meters")
  17113. },
  17114. ]
  17115. ))
  17116. characterMakers.push(() => makeCharacter(
  17117. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17118. {
  17119. side: {
  17120. height: math.unit(8, "feet"),
  17121. weight: math.unit(6300, "lb"),
  17122. name: "Side",
  17123. image: {
  17124. source: "./media/characters/anima/side.svg",
  17125. bottom: 0.035
  17126. }
  17127. },
  17128. },
  17129. [
  17130. {
  17131. name: "Normal",
  17132. height: math.unit(8, "feet"),
  17133. default: true
  17134. },
  17135. ]
  17136. ))
  17137. characterMakers.push(() => makeCharacter(
  17138. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17139. {
  17140. front: {
  17141. height: math.unit(8, "feet"),
  17142. weight: math.unit(350, "lb"),
  17143. name: "Front",
  17144. image: {
  17145. source: "./media/characters/bianca/front.svg",
  17146. extra: 234 / 225,
  17147. bottom: 0.03
  17148. }
  17149. },
  17150. },
  17151. [
  17152. {
  17153. name: "Normal",
  17154. height: math.unit(8, "feet"),
  17155. default: true
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17161. {
  17162. front: {
  17163. height: math.unit(6, "feet"),
  17164. weight: math.unit(150, "lb"),
  17165. name: "Front",
  17166. image: {
  17167. source: "./media/characters/adinia/front.svg",
  17168. extra: 1845 / 1672,
  17169. bottom: 0.02
  17170. }
  17171. },
  17172. back: {
  17173. height: math.unit(6, "feet"),
  17174. weight: math.unit(150, "lb"),
  17175. name: "Back",
  17176. image: {
  17177. source: "./media/characters/adinia/back.svg",
  17178. extra: 1845 / 1672,
  17179. bottom: 0.002
  17180. }
  17181. },
  17182. },
  17183. [
  17184. {
  17185. name: "Normal",
  17186. height: math.unit(11 + 5 / 12, "feet"),
  17187. default: true
  17188. },
  17189. ]
  17190. ))
  17191. characterMakers.push(() => makeCharacter(
  17192. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17193. {
  17194. front: {
  17195. height: math.unit(3, "meters"),
  17196. weight: math.unit(200, "kg"),
  17197. name: "Front",
  17198. image: {
  17199. source: "./media/characters/lykasa/front.svg",
  17200. extra: 1076 / 976,
  17201. bottom: 0.06
  17202. }
  17203. },
  17204. },
  17205. [
  17206. {
  17207. name: "Normal",
  17208. height: math.unit(3, "meters")
  17209. },
  17210. {
  17211. name: "Kaiju",
  17212. height: math.unit(120, "meters"),
  17213. default: true
  17214. },
  17215. {
  17216. name: "Mega Kaiju",
  17217. height: math.unit(240, "km")
  17218. },
  17219. {
  17220. name: "Giga Kaiju",
  17221. height: math.unit(400, "megameters")
  17222. },
  17223. {
  17224. name: "Tera Kaiju",
  17225. height: math.unit(800, "gigameters")
  17226. },
  17227. {
  17228. name: "Kaiju Dragon Goddess",
  17229. height: math.unit(26, "zettaparsecs")
  17230. },
  17231. ]
  17232. ))
  17233. characterMakers.push(() => makeCharacter(
  17234. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17235. {
  17236. side: {
  17237. height: math.unit(283 / 124 * 6, "feet"),
  17238. weight: math.unit(35000, "lb"),
  17239. name: "Side",
  17240. image: {
  17241. source: "./media/characters/malfaren/side.svg",
  17242. extra: 2500 / 1010,
  17243. bottom: 0.01
  17244. }
  17245. },
  17246. front: {
  17247. height: math.unit(22.36, "feet"),
  17248. weight: math.unit(35000, "lb"),
  17249. name: "Front",
  17250. image: {
  17251. source: "./media/characters/malfaren/front.svg",
  17252. extra: 1631 / 1476,
  17253. bottom: 0.01
  17254. }
  17255. },
  17256. maw: {
  17257. height: math.unit(6.9, "feet"),
  17258. name: "Maw",
  17259. image: {
  17260. source: "./media/characters/malfaren/maw.svg"
  17261. }
  17262. },
  17263. },
  17264. [
  17265. {
  17266. name: "Big",
  17267. height: math.unit(283 / 162 * 6, "feet"),
  17268. },
  17269. {
  17270. name: "Bigger",
  17271. height: math.unit(283 / 124 * 6, "feet")
  17272. },
  17273. {
  17274. name: "Massive",
  17275. height: math.unit(283 / 92 * 6, "feet"),
  17276. default: true
  17277. },
  17278. {
  17279. name: "👀💦",
  17280. height: math.unit(283 / 73 * 6, "feet"),
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17286. {
  17287. front: {
  17288. height: math.unit(1.7, "m"),
  17289. weight: math.unit(70, "kg"),
  17290. name: "Front",
  17291. image: {
  17292. source: "./media/characters/kernel/front.svg",
  17293. extra: 222 / 210,
  17294. bottom: 0.007
  17295. }
  17296. },
  17297. },
  17298. [
  17299. {
  17300. name: "Nano",
  17301. height: math.unit(17, "micrometers")
  17302. },
  17303. {
  17304. name: "Micro",
  17305. height: math.unit(1.7, "mm")
  17306. },
  17307. {
  17308. name: "Small",
  17309. height: math.unit(1.7, "cm")
  17310. },
  17311. {
  17312. name: "Normal",
  17313. height: math.unit(1.7, "m"),
  17314. default: true
  17315. },
  17316. ]
  17317. ))
  17318. characterMakers.push(() => makeCharacter(
  17319. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17320. {
  17321. front: {
  17322. height: math.unit(1.75, "meters"),
  17323. weight: math.unit(65, "kg"),
  17324. name: "Front",
  17325. image: {
  17326. source: "./media/characters/jayne-folest/front.svg",
  17327. extra: 2115 / 2007,
  17328. bottom: 0.02
  17329. }
  17330. },
  17331. back: {
  17332. height: math.unit(1.75, "meters"),
  17333. weight: math.unit(65, "kg"),
  17334. name: "Back",
  17335. image: {
  17336. source: "./media/characters/jayne-folest/back.svg",
  17337. extra: 2115 / 2007,
  17338. bottom: 0.005
  17339. }
  17340. },
  17341. frontClothed: {
  17342. height: math.unit(1.75, "meters"),
  17343. weight: math.unit(65, "kg"),
  17344. name: "Front (Clothed)",
  17345. image: {
  17346. source: "./media/characters/jayne-folest/front-clothed.svg",
  17347. extra: 2115 / 2007,
  17348. bottom: 0.035
  17349. }
  17350. },
  17351. hand: {
  17352. height: math.unit(1 / 1.260, "feet"),
  17353. name: "Hand",
  17354. image: {
  17355. source: "./media/characters/jayne-folest/hand.svg"
  17356. }
  17357. },
  17358. foot: {
  17359. height: math.unit(1 / 0.918, "feet"),
  17360. name: "Foot",
  17361. image: {
  17362. source: "./media/characters/jayne-folest/foot.svg"
  17363. }
  17364. },
  17365. },
  17366. [
  17367. {
  17368. name: "Micro",
  17369. height: math.unit(4, "cm")
  17370. },
  17371. {
  17372. name: "Normal",
  17373. height: math.unit(1.75, "meters")
  17374. },
  17375. {
  17376. name: "Macro",
  17377. height: math.unit(47.5, "meters"),
  17378. default: true
  17379. },
  17380. ]
  17381. ))
  17382. characterMakers.push(() => makeCharacter(
  17383. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17384. {
  17385. front: {
  17386. height: math.unit(180, "cm"),
  17387. weight: math.unit(70, "kg"),
  17388. name: "Front",
  17389. image: {
  17390. source: "./media/characters/algier/front.svg",
  17391. extra: 596 / 572,
  17392. bottom: 0.04
  17393. }
  17394. },
  17395. back: {
  17396. height: math.unit(180, "cm"),
  17397. weight: math.unit(70, "kg"),
  17398. name: "Back",
  17399. image: {
  17400. source: "./media/characters/algier/back.svg",
  17401. extra: 596 / 572,
  17402. bottom: 0.025
  17403. }
  17404. },
  17405. frontdressed: {
  17406. height: math.unit(180, "cm"),
  17407. weight: math.unit(150, "kg"),
  17408. name: "Front-dressed",
  17409. image: {
  17410. source: "./media/characters/algier/front-dressed.svg",
  17411. extra: 596 / 572,
  17412. bottom: 0.038
  17413. }
  17414. },
  17415. },
  17416. [
  17417. {
  17418. name: "Micro",
  17419. height: math.unit(5, "cm")
  17420. },
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(180, "cm"),
  17424. default: true
  17425. },
  17426. {
  17427. name: "Macro",
  17428. height: math.unit(64, "m")
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17434. {
  17435. upright: {
  17436. height: math.unit(7, "feet"),
  17437. weight: math.unit(300, "lb"),
  17438. name: "Upright",
  17439. image: {
  17440. source: "./media/characters/pretzel/upright.svg",
  17441. extra: 534 / 522,
  17442. bottom: 0.065
  17443. }
  17444. },
  17445. sprawling: {
  17446. height: math.unit(3.75, "feet"),
  17447. weight: math.unit(300, "lb"),
  17448. name: "Sprawling",
  17449. image: {
  17450. source: "./media/characters/pretzel/sprawling.svg",
  17451. extra: 314 / 281,
  17452. bottom: 0.1
  17453. }
  17454. },
  17455. tongue: {
  17456. height: math.unit(2, "feet"),
  17457. name: "Tongue",
  17458. image: {
  17459. source: "./media/characters/pretzel/tongue.svg"
  17460. }
  17461. },
  17462. },
  17463. [
  17464. {
  17465. name: "Normal",
  17466. height: math.unit(7, "feet"),
  17467. default: true
  17468. },
  17469. {
  17470. name: "Oversized",
  17471. height: math.unit(15, "feet")
  17472. },
  17473. {
  17474. name: "Huge",
  17475. height: math.unit(30, "feet")
  17476. },
  17477. {
  17478. name: "Macro",
  17479. height: math.unit(250, "feet")
  17480. },
  17481. ]
  17482. ))
  17483. characterMakers.push(() => makeCharacter(
  17484. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17485. {
  17486. sideFront: {
  17487. height: math.unit(5 + 2 / 12, "feet"),
  17488. weight: math.unit(120, "lb"),
  17489. name: "Front Side",
  17490. image: {
  17491. source: "./media/characters/roxi/side-front.svg",
  17492. extra: 2924 / 2717,
  17493. bottom: 0.08
  17494. }
  17495. },
  17496. sideBack: {
  17497. height: math.unit(5 + 2 / 12, "feet"),
  17498. weight: math.unit(120, "lb"),
  17499. name: "Back Side",
  17500. image: {
  17501. source: "./media/characters/roxi/side-back.svg",
  17502. extra: 2904 / 2693,
  17503. bottom: 0.06
  17504. }
  17505. },
  17506. front: {
  17507. height: math.unit(5 + 2 / 12, "feet"),
  17508. weight: math.unit(120, "lb"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/roxi/front.svg",
  17512. extra: 2028 / 1907,
  17513. bottom: 0.01
  17514. }
  17515. },
  17516. frontAlt: {
  17517. height: math.unit(5 + 2 / 12, "feet"),
  17518. weight: math.unit(120, "lb"),
  17519. name: "Front (Alt)",
  17520. image: {
  17521. source: "./media/characters/roxi/front-alt.svg",
  17522. extra: 1828 / 1798,
  17523. bottom: 0.01
  17524. }
  17525. },
  17526. sitting: {
  17527. height: math.unit(2.8, "feet"),
  17528. weight: math.unit(120, "lb"),
  17529. name: "Sitting",
  17530. image: {
  17531. source: "./media/characters/roxi/sitting.svg",
  17532. extra: 2660 / 2462,
  17533. bottom: 0.1
  17534. }
  17535. },
  17536. },
  17537. [
  17538. {
  17539. name: "Normal",
  17540. height: math.unit(5 + 2 / 12, "feet"),
  17541. default: true
  17542. },
  17543. ]
  17544. ))
  17545. characterMakers.push(() => makeCharacter(
  17546. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17547. {
  17548. side: {
  17549. height: math.unit(55, "feet"),
  17550. weight: math.unit(153, "tons"),
  17551. name: "Side",
  17552. image: {
  17553. source: "./media/characters/shadow/side.svg",
  17554. extra: 701 / 628,
  17555. bottom: 0.02
  17556. }
  17557. },
  17558. flying: {
  17559. height: math.unit(145, "feet"),
  17560. weight: math.unit(153, "tons"),
  17561. name: "Flying",
  17562. image: {
  17563. source: "./media/characters/shadow/flying.svg"
  17564. }
  17565. },
  17566. },
  17567. [
  17568. {
  17569. name: "Normal",
  17570. height: math.unit(55, "feet"),
  17571. default: true
  17572. },
  17573. ]
  17574. ))
  17575. characterMakers.push(() => makeCharacter(
  17576. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17577. {
  17578. front: {
  17579. height: math.unit(6, "feet"),
  17580. weight: math.unit(200, "lb"),
  17581. name: "Front",
  17582. image: {
  17583. source: "./media/characters/marcie/front.svg",
  17584. extra: 960 / 876,
  17585. bottom: 58 / 1017.87
  17586. }
  17587. },
  17588. },
  17589. [
  17590. {
  17591. name: "Macro",
  17592. height: math.unit(1, "mile"),
  17593. default: true
  17594. },
  17595. ]
  17596. ))
  17597. characterMakers.push(() => makeCharacter(
  17598. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17599. {
  17600. front: {
  17601. height: math.unit(7, "feet"),
  17602. weight: math.unit(200, "lb"),
  17603. name: "Front",
  17604. image: {
  17605. source: "./media/characters/kachina/front.svg",
  17606. extra: 1290.68 / 1119,
  17607. bottom: 36.5 / 1327.18
  17608. }
  17609. },
  17610. },
  17611. [
  17612. {
  17613. name: "Normal",
  17614. height: math.unit(7, "feet"),
  17615. default: true
  17616. },
  17617. ]
  17618. ))
  17619. characterMakers.push(() => makeCharacter(
  17620. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17621. {
  17622. looking: {
  17623. height: math.unit(2, "meters"),
  17624. weight: math.unit(300, "kg"),
  17625. name: "Looking",
  17626. image: {
  17627. source: "./media/characters/kash/looking.svg",
  17628. extra: 474 / 344,
  17629. bottom: 0.03
  17630. }
  17631. },
  17632. side: {
  17633. height: math.unit(2, "meters"),
  17634. weight: math.unit(300, "kg"),
  17635. name: "Side",
  17636. image: {
  17637. source: "./media/characters/kash/side.svg",
  17638. extra: 302 / 251,
  17639. bottom: 0.03
  17640. }
  17641. },
  17642. front: {
  17643. height: math.unit(2, "meters"),
  17644. weight: math.unit(300, "kg"),
  17645. name: "Front",
  17646. image: {
  17647. source: "./media/characters/kash/front.svg",
  17648. extra: 495 / 360,
  17649. bottom: 0.015
  17650. }
  17651. },
  17652. },
  17653. [
  17654. {
  17655. name: "Normal",
  17656. height: math.unit(2, "meters"),
  17657. default: true
  17658. },
  17659. {
  17660. name: "Big",
  17661. height: math.unit(3, "meters")
  17662. },
  17663. {
  17664. name: "Large",
  17665. height: math.unit(5, "meters")
  17666. },
  17667. ]
  17668. ))
  17669. characterMakers.push(() => makeCharacter(
  17670. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17671. {
  17672. feeding: {
  17673. height: math.unit(6.7, "feet"),
  17674. weight: math.unit(350, "lb"),
  17675. name: "Feeding",
  17676. image: {
  17677. source: "./media/characters/lalim/feeding.svg",
  17678. }
  17679. },
  17680. },
  17681. [
  17682. {
  17683. name: "Normal",
  17684. height: math.unit(6.7, "feet"),
  17685. default: true
  17686. },
  17687. ]
  17688. ))
  17689. characterMakers.push(() => makeCharacter(
  17690. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17691. {
  17692. front: {
  17693. height: math.unit(9.5, "feet"),
  17694. weight: math.unit(600, "lb"),
  17695. name: "Front",
  17696. image: {
  17697. source: "./media/characters/de'vout/front.svg",
  17698. extra: 1443 / 1328,
  17699. bottom: 0.025
  17700. }
  17701. },
  17702. back: {
  17703. height: math.unit(9.5, "feet"),
  17704. weight: math.unit(600, "lb"),
  17705. name: "Back",
  17706. image: {
  17707. source: "./media/characters/de'vout/back.svg",
  17708. extra: 1443 / 1328
  17709. }
  17710. },
  17711. frontDressed: {
  17712. height: math.unit(9.5, "feet"),
  17713. weight: math.unit(600, "lb"),
  17714. name: "Front (Dressed",
  17715. image: {
  17716. source: "./media/characters/de'vout/front-dressed.svg",
  17717. extra: 1443 / 1328,
  17718. bottom: 0.025
  17719. }
  17720. },
  17721. backDressed: {
  17722. height: math.unit(9.5, "feet"),
  17723. weight: math.unit(600, "lb"),
  17724. name: "Back (Dressed",
  17725. image: {
  17726. source: "./media/characters/de'vout/back-dressed.svg",
  17727. extra: 1443 / 1328
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Normal",
  17734. height: math.unit(9.5, "feet"),
  17735. default: true
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17741. {
  17742. front: {
  17743. height: math.unit(8, "feet"),
  17744. weight: math.unit(225, "lb"),
  17745. name: "Front",
  17746. image: {
  17747. source: "./media/characters/talana/front.svg",
  17748. extra: 1410 / 1300,
  17749. bottom: 0.015
  17750. }
  17751. },
  17752. frontDressed: {
  17753. height: math.unit(8, "feet"),
  17754. weight: math.unit(225, "lb"),
  17755. name: "Front (Dressed",
  17756. image: {
  17757. source: "./media/characters/talana/front-dressed.svg",
  17758. extra: 1410 / 1300,
  17759. bottom: 0.015
  17760. }
  17761. },
  17762. },
  17763. [
  17764. {
  17765. name: "Normal",
  17766. height: math.unit(8, "feet"),
  17767. default: true
  17768. },
  17769. ]
  17770. ))
  17771. characterMakers.push(() => makeCharacter(
  17772. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17773. {
  17774. side: {
  17775. height: math.unit(7.2, "feet"),
  17776. weight: math.unit(150, "lb"),
  17777. name: "Side",
  17778. image: {
  17779. source: "./media/characters/xeauvok/side.svg",
  17780. extra: 1975 / 1523,
  17781. bottom: 0.07
  17782. }
  17783. },
  17784. },
  17785. [
  17786. {
  17787. name: "Normal",
  17788. height: math.unit(7.2, "feet"),
  17789. default: true
  17790. },
  17791. ]
  17792. ))
  17793. characterMakers.push(() => makeCharacter(
  17794. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17795. {
  17796. side: {
  17797. height: math.unit(10, "feet"),
  17798. weight: math.unit(900, "kg"),
  17799. name: "Side",
  17800. image: {
  17801. source: "./media/characters/zara/side.svg",
  17802. extra: 504 / 498
  17803. }
  17804. },
  17805. },
  17806. [
  17807. {
  17808. name: "Normal",
  17809. height: math.unit(10, "feet"),
  17810. default: true
  17811. },
  17812. ]
  17813. ))
  17814. characterMakers.push(() => makeCharacter(
  17815. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17816. {
  17817. side: {
  17818. height: math.unit(6, "feet"),
  17819. weight: math.unit(150, "lb"),
  17820. name: "Side",
  17821. image: {
  17822. source: "./media/characters/richard-dragon/side.svg",
  17823. extra: 845 / 340,
  17824. bottom: 0.017
  17825. }
  17826. },
  17827. maw: {
  17828. height: math.unit(2.97, "feet"),
  17829. name: "Maw",
  17830. image: {
  17831. source: "./media/characters/richard-dragon/maw.svg"
  17832. }
  17833. },
  17834. },
  17835. [
  17836. ]
  17837. ))
  17838. characterMakers.push(() => makeCharacter(
  17839. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17840. {
  17841. front: {
  17842. height: math.unit(4, "feet"),
  17843. weight: math.unit(100, "lb"),
  17844. name: "Front",
  17845. image: {
  17846. source: "./media/characters/richard-smeargle/front.svg",
  17847. extra: 2952 / 2820,
  17848. bottom: 0.028
  17849. }
  17850. },
  17851. },
  17852. [
  17853. {
  17854. name: "Normal",
  17855. height: math.unit(4, "feet"),
  17856. default: true
  17857. },
  17858. {
  17859. name: "Dynamax",
  17860. height: math.unit(20, "meters")
  17861. },
  17862. ]
  17863. ))
  17864. characterMakers.push(() => makeCharacter(
  17865. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17866. {
  17867. front: {
  17868. height: math.unit(6, "feet"),
  17869. weight: math.unit(110, "lb"),
  17870. name: "Front",
  17871. image: {
  17872. source: "./media/characters/klay/front.svg",
  17873. extra: 962 / 883,
  17874. bottom: 0.04
  17875. }
  17876. },
  17877. back: {
  17878. height: math.unit(6, "feet"),
  17879. weight: math.unit(110, "lb"),
  17880. name: "Back",
  17881. image: {
  17882. source: "./media/characters/klay/back.svg",
  17883. extra: 962 / 883
  17884. }
  17885. },
  17886. beans: {
  17887. height: math.unit(1.15, "feet"),
  17888. name: "Beans",
  17889. image: {
  17890. source: "./media/characters/klay/beans.svg"
  17891. }
  17892. },
  17893. },
  17894. [
  17895. {
  17896. name: "Micro",
  17897. height: math.unit(6, "inches")
  17898. },
  17899. {
  17900. name: "Mini",
  17901. height: math.unit(3, "feet")
  17902. },
  17903. {
  17904. name: "Normal",
  17905. height: math.unit(6, "feet"),
  17906. default: true
  17907. },
  17908. {
  17909. name: "Big",
  17910. height: math.unit(25, "feet")
  17911. },
  17912. {
  17913. name: "Macro",
  17914. height: math.unit(100, "feet")
  17915. },
  17916. {
  17917. name: "Megamacro",
  17918. height: math.unit(400, "feet")
  17919. },
  17920. ]
  17921. ))
  17922. characterMakers.push(() => makeCharacter(
  17923. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17924. {
  17925. front: {
  17926. height: math.unit(6, "feet"),
  17927. weight: math.unit(160, "lb"),
  17928. name: "Front",
  17929. image: {
  17930. source: "./media/characters/marcus/front.svg",
  17931. extra: 734 / 676,
  17932. bottom: 0.03
  17933. }
  17934. },
  17935. },
  17936. [
  17937. {
  17938. name: "Little",
  17939. height: math.unit(6, "feet")
  17940. },
  17941. {
  17942. name: "Normal",
  17943. height: math.unit(110, "feet"),
  17944. default: true
  17945. },
  17946. {
  17947. name: "Macro",
  17948. height: math.unit(250, "feet")
  17949. },
  17950. {
  17951. name: "Megamacro",
  17952. height: math.unit(1000, "feet")
  17953. },
  17954. ]
  17955. ))
  17956. characterMakers.push(() => makeCharacter(
  17957. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17958. {
  17959. front: {
  17960. height: math.unit(7, "feet"),
  17961. weight: math.unit(275, "lb"),
  17962. name: "Front",
  17963. image: {
  17964. source: "./media/characters/claude-delroute/front.svg",
  17965. extra: 230 / 214,
  17966. bottom: 0.007
  17967. }
  17968. },
  17969. side: {
  17970. height: math.unit(7, "feet"),
  17971. weight: math.unit(275, "lb"),
  17972. name: "Side",
  17973. image: {
  17974. source: "./media/characters/claude-delroute/side.svg",
  17975. extra: 222 / 214,
  17976. bottom: 0.01
  17977. }
  17978. },
  17979. back: {
  17980. height: math.unit(7, "feet"),
  17981. weight: math.unit(275, "lb"),
  17982. name: "Back",
  17983. image: {
  17984. source: "./media/characters/claude-delroute/back.svg",
  17985. extra: 230 / 214,
  17986. bottom: 0.015
  17987. }
  17988. },
  17989. maw: {
  17990. height: math.unit(0.6407, "meters"),
  17991. name: "Maw",
  17992. image: {
  17993. source: "./media/characters/claude-delroute/maw.svg"
  17994. }
  17995. },
  17996. },
  17997. [
  17998. {
  17999. name: "Normal",
  18000. height: math.unit(7, "feet"),
  18001. default: true
  18002. },
  18003. {
  18004. name: "Lorge",
  18005. height: math.unit(20, "feet")
  18006. },
  18007. ]
  18008. ))
  18009. characterMakers.push(() => makeCharacter(
  18010. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18011. {
  18012. front: {
  18013. height: math.unit(8 + 4 / 12, "feet"),
  18014. weight: math.unit(600, "lb"),
  18015. name: "Front",
  18016. image: {
  18017. source: "./media/characters/dragonien/front.svg",
  18018. extra: 100 / 94,
  18019. bottom: 3.3 / 103.3445
  18020. }
  18021. },
  18022. back: {
  18023. height: math.unit(8 + 4 / 12, "feet"),
  18024. weight: math.unit(600, "lb"),
  18025. name: "Back",
  18026. image: {
  18027. source: "./media/characters/dragonien/back.svg",
  18028. extra: 776 / 746,
  18029. bottom: 6.4 / 782.0616
  18030. }
  18031. },
  18032. foot: {
  18033. height: math.unit(1.54, "feet"),
  18034. name: "Foot",
  18035. image: {
  18036. source: "./media/characters/dragonien/foot.svg",
  18037. }
  18038. },
  18039. },
  18040. [
  18041. {
  18042. name: "Normal",
  18043. height: math.unit(8 + 4 / 12, "feet"),
  18044. default: true
  18045. },
  18046. {
  18047. name: "Macro",
  18048. height: math.unit(200, "feet")
  18049. },
  18050. {
  18051. name: "Megamacro",
  18052. height: math.unit(1, "mile")
  18053. },
  18054. {
  18055. name: "Gigamacro",
  18056. height: math.unit(1000, "miles")
  18057. },
  18058. ]
  18059. ))
  18060. characterMakers.push(() => makeCharacter(
  18061. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18062. {
  18063. front: {
  18064. height: math.unit(5 + 2 / 12, "feet"),
  18065. weight: math.unit(110, "lb"),
  18066. name: "Front",
  18067. image: {
  18068. source: "./media/characters/desta/front.svg",
  18069. extra: 767 / 726,
  18070. bottom: 11.7 / 779
  18071. }
  18072. },
  18073. back: {
  18074. height: math.unit(5 + 2 / 12, "feet"),
  18075. weight: math.unit(110, "lb"),
  18076. name: "Back",
  18077. image: {
  18078. source: "./media/characters/desta/back.svg",
  18079. extra: 777 / 728,
  18080. bottom: 6 / 784
  18081. }
  18082. },
  18083. frontAlt: {
  18084. height: math.unit(5 + 2 / 12, "feet"),
  18085. weight: math.unit(110, "lb"),
  18086. name: "Front",
  18087. image: {
  18088. source: "./media/characters/desta/front-alt.svg",
  18089. extra: 1482 / 1417
  18090. }
  18091. },
  18092. side: {
  18093. height: math.unit(5 + 2 / 12, "feet"),
  18094. weight: math.unit(110, "lb"),
  18095. name: "Side",
  18096. image: {
  18097. source: "./media/characters/desta/side.svg",
  18098. extra: 2579 / 2491,
  18099. bottom: 0.053
  18100. }
  18101. },
  18102. },
  18103. [
  18104. {
  18105. name: "Micro",
  18106. height: math.unit(6, "inches")
  18107. },
  18108. {
  18109. name: "Normal",
  18110. height: math.unit(5 + 2 / 12, "feet"),
  18111. default: true
  18112. },
  18113. {
  18114. name: "Macro",
  18115. height: math.unit(62, "feet")
  18116. },
  18117. {
  18118. name: "Megamacro",
  18119. height: math.unit(1800, "feet")
  18120. },
  18121. ]
  18122. ))
  18123. characterMakers.push(() => makeCharacter(
  18124. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18125. {
  18126. front: {
  18127. height: math.unit(10, "feet"),
  18128. weight: math.unit(700, "lb"),
  18129. name: "Front",
  18130. image: {
  18131. source: "./media/characters/storm-alystar/front.svg",
  18132. extra: 2112 / 1898,
  18133. bottom: 0.034
  18134. }
  18135. },
  18136. },
  18137. [
  18138. {
  18139. name: "Micro",
  18140. height: math.unit(3.5, "inches")
  18141. },
  18142. {
  18143. name: "Normal",
  18144. height: math.unit(10, "feet"),
  18145. default: true
  18146. },
  18147. {
  18148. name: "Macro",
  18149. height: math.unit(400, "feet")
  18150. },
  18151. {
  18152. name: "Deific",
  18153. height: math.unit(60, "miles")
  18154. },
  18155. ]
  18156. ))
  18157. characterMakers.push(() => makeCharacter(
  18158. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18159. {
  18160. front: {
  18161. height: math.unit(2.35, "meters"),
  18162. weight: math.unit(119, "kg"),
  18163. name: "Front",
  18164. image: {
  18165. source: "./media/characters/ilia/front.svg",
  18166. extra: 1285 / 1255,
  18167. bottom: 0.06
  18168. }
  18169. },
  18170. },
  18171. [
  18172. {
  18173. name: "Normal",
  18174. height: math.unit(2.35, "meters")
  18175. },
  18176. {
  18177. name: "Macro",
  18178. height: math.unit(140, "meters"),
  18179. default: true
  18180. },
  18181. {
  18182. name: "Megamacro",
  18183. height: math.unit(100, "miles")
  18184. },
  18185. ]
  18186. ))
  18187. characterMakers.push(() => makeCharacter(
  18188. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18189. {
  18190. front: {
  18191. height: math.unit(6 + 5 / 12, "feet"),
  18192. weight: math.unit(190, "lb"),
  18193. name: "Front",
  18194. image: {
  18195. source: "./media/characters/kingdead/front.svg",
  18196. extra: 1228 / 1177
  18197. }
  18198. },
  18199. },
  18200. [
  18201. {
  18202. name: "Micro",
  18203. height: math.unit(7, "inches")
  18204. },
  18205. {
  18206. name: "Normal",
  18207. height: math.unit(6 + 5 / 12, "feet")
  18208. },
  18209. {
  18210. name: "Macro",
  18211. height: math.unit(150, "feet"),
  18212. default: true
  18213. },
  18214. {
  18215. name: "Megamacro",
  18216. height: math.unit(200, "miles")
  18217. },
  18218. ]
  18219. ))
  18220. characterMakers.push(() => makeCharacter(
  18221. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18222. {
  18223. front: {
  18224. height: math.unit(8, "feet"),
  18225. weight: math.unit(600, "lb"),
  18226. name: "Front",
  18227. image: {
  18228. source: "./media/characters/kyrehx/front.svg",
  18229. extra: 1195 / 1095,
  18230. bottom: 0.034
  18231. }
  18232. },
  18233. },
  18234. [
  18235. {
  18236. name: "Micro",
  18237. height: math.unit(2, "inches")
  18238. },
  18239. {
  18240. name: "Normal",
  18241. height: math.unit(8, "feet"),
  18242. default: true
  18243. },
  18244. {
  18245. name: "Macro",
  18246. height: math.unit(255, "feet")
  18247. },
  18248. ]
  18249. ))
  18250. characterMakers.push(() => makeCharacter(
  18251. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18252. {
  18253. front: {
  18254. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18255. weight: math.unit(184, "lb"),
  18256. name: "Front",
  18257. image: {
  18258. source: "./media/characters/xang/front.svg",
  18259. extra: 845 / 755
  18260. }
  18261. },
  18262. },
  18263. [
  18264. {
  18265. name: "Normal",
  18266. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18267. default: true
  18268. },
  18269. {
  18270. name: "Macro",
  18271. height: math.unit(0.935 * 146, "feet")
  18272. },
  18273. {
  18274. name: "Megamacro",
  18275. height: math.unit(0.935 * 3, "miles")
  18276. },
  18277. ]
  18278. ))
  18279. characterMakers.push(() => makeCharacter(
  18280. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18281. {
  18282. frontDressed: {
  18283. height: math.unit(5 + 7 / 12, "feet"),
  18284. weight: math.unit(140, "lb"),
  18285. name: "Front (Dressed)",
  18286. image: {
  18287. source: "./media/characters/doc-weardno/front-dressed.svg",
  18288. extra: 263 / 234
  18289. }
  18290. },
  18291. backDressed: {
  18292. height: math.unit(5 + 7 / 12, "feet"),
  18293. weight: math.unit(140, "lb"),
  18294. name: "Back (Dressed)",
  18295. image: {
  18296. source: "./media/characters/doc-weardno/back-dressed.svg",
  18297. extra: 266 / 238
  18298. }
  18299. },
  18300. front: {
  18301. height: math.unit(5 + 7 / 12, "feet"),
  18302. weight: math.unit(140, "lb"),
  18303. name: "Front",
  18304. image: {
  18305. source: "./media/characters/doc-weardno/front.svg",
  18306. extra: 254 / 233
  18307. }
  18308. },
  18309. },
  18310. [
  18311. {
  18312. name: "Micro",
  18313. height: math.unit(3, "inches")
  18314. },
  18315. {
  18316. name: "Normal",
  18317. height: math.unit(5 + 7 / 12, "feet"),
  18318. default: true
  18319. },
  18320. {
  18321. name: "Macro",
  18322. height: math.unit(25, "feet")
  18323. },
  18324. {
  18325. name: "Megamacro",
  18326. height: math.unit(2, "miles")
  18327. },
  18328. ]
  18329. ))
  18330. characterMakers.push(() => makeCharacter(
  18331. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18332. {
  18333. front: {
  18334. height: math.unit(6 + 2 / 12, "feet"),
  18335. weight: math.unit(153, "lb"),
  18336. name: "Front",
  18337. image: {
  18338. source: "./media/characters/seth-whilst/front.svg",
  18339. bottom: 0.07
  18340. }
  18341. },
  18342. },
  18343. [
  18344. {
  18345. name: "Micro",
  18346. height: math.unit(5, "inches")
  18347. },
  18348. {
  18349. name: "Normal",
  18350. height: math.unit(6 + 2 / 12, "feet"),
  18351. default: true
  18352. },
  18353. ]
  18354. ))
  18355. characterMakers.push(() => makeCharacter(
  18356. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18357. {
  18358. front: {
  18359. height: math.unit(3, "inches"),
  18360. weight: math.unit(8, "grams"),
  18361. name: "Front",
  18362. image: {
  18363. source: "./media/characters/pocket-jabari/front.svg",
  18364. extra: 1024 / 974,
  18365. bottom: 0.039
  18366. }
  18367. },
  18368. },
  18369. [
  18370. {
  18371. name: "Minimicro",
  18372. height: math.unit(8, "mm")
  18373. },
  18374. {
  18375. name: "Micro",
  18376. height: math.unit(3, "inches"),
  18377. default: true
  18378. },
  18379. {
  18380. name: "Normal",
  18381. height: math.unit(3, "feet")
  18382. },
  18383. ]
  18384. ))
  18385. characterMakers.push(() => makeCharacter(
  18386. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18387. {
  18388. front: {
  18389. height: math.unit(15, "feet"),
  18390. weight: math.unit(3280, "lb"),
  18391. name: "Front",
  18392. image: {
  18393. source: "./media/characters/sapphy/front.svg",
  18394. extra: 671 / 577,
  18395. bottom: 0.085
  18396. }
  18397. },
  18398. back: {
  18399. height: math.unit(15, "feet"),
  18400. weight: math.unit(3280, "lb"),
  18401. name: "Back",
  18402. image: {
  18403. source: "./media/characters/sapphy/back.svg",
  18404. extra: 631 / 607,
  18405. bottom: 0.045
  18406. }
  18407. },
  18408. },
  18409. [
  18410. {
  18411. name: "Normal",
  18412. height: math.unit(15, "feet")
  18413. },
  18414. {
  18415. name: "Casual Macro",
  18416. height: math.unit(120, "feet")
  18417. },
  18418. {
  18419. name: "Macro",
  18420. height: math.unit(2150, "feet"),
  18421. default: true
  18422. },
  18423. {
  18424. name: "Megamacro",
  18425. height: math.unit(8, "miles")
  18426. },
  18427. {
  18428. name: "Galaxy Mom",
  18429. height: math.unit(6, "megalightyears")
  18430. },
  18431. ]
  18432. ))
  18433. characterMakers.push(() => makeCharacter(
  18434. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18435. {
  18436. front: {
  18437. height: math.unit(6, "feet"),
  18438. weight: math.unit(170, "lb"),
  18439. name: "Front",
  18440. image: {
  18441. source: "./media/characters/kiro/front.svg",
  18442. extra: 1064 / 1012,
  18443. bottom: 0.052
  18444. }
  18445. },
  18446. },
  18447. [
  18448. {
  18449. name: "Micro",
  18450. height: math.unit(6, "inches")
  18451. },
  18452. {
  18453. name: "Normal",
  18454. height: math.unit(6, "feet"),
  18455. default: true
  18456. },
  18457. {
  18458. name: "Macro",
  18459. height: math.unit(72, "feet")
  18460. },
  18461. ]
  18462. ))
  18463. characterMakers.push(() => makeCharacter(
  18464. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18465. {
  18466. front: {
  18467. height: math.unit(5 + 9 / 12, "feet"),
  18468. weight: math.unit(175, "lb"),
  18469. name: "Front",
  18470. image: {
  18471. source: "./media/characters/irishfox/front.svg",
  18472. extra: 1912 / 1680,
  18473. bottom: 0.02
  18474. }
  18475. },
  18476. },
  18477. [
  18478. {
  18479. name: "Nano",
  18480. height: math.unit(1, "mm")
  18481. },
  18482. {
  18483. name: "Micro",
  18484. height: math.unit(2, "inches")
  18485. },
  18486. {
  18487. name: "Normal",
  18488. height: math.unit(5 + 9 / 12, "feet"),
  18489. default: true
  18490. },
  18491. {
  18492. name: "Macro",
  18493. height: math.unit(45, "feet")
  18494. },
  18495. ]
  18496. ))
  18497. characterMakers.push(() => makeCharacter(
  18498. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18499. {
  18500. front: {
  18501. height: math.unit(6 + 1 / 12, "feet"),
  18502. weight: math.unit(75, "lb"),
  18503. name: "Front",
  18504. image: {
  18505. source: "./media/characters/aronai-sieyes/front.svg",
  18506. extra: 1556 / 1480,
  18507. bottom: 0.015
  18508. }
  18509. },
  18510. side: {
  18511. height: math.unit(6 + 1 / 12, "feet"),
  18512. weight: math.unit(75, "lb"),
  18513. name: "Side",
  18514. image: {
  18515. source: "./media/characters/aronai-sieyes/side.svg",
  18516. extra: 1433 / 1390,
  18517. bottom: 0.0393
  18518. }
  18519. },
  18520. back: {
  18521. height: math.unit(6 + 1 / 12, "feet"),
  18522. weight: math.unit(75, "lb"),
  18523. name: "Back",
  18524. image: {
  18525. source: "./media/characters/aronai-sieyes/back.svg",
  18526. extra: 1544 / 1494,
  18527. bottom: 0.02
  18528. }
  18529. },
  18530. frontClothed: {
  18531. height: math.unit(6 + 1 / 12, "feet"),
  18532. weight: math.unit(75, "lb"),
  18533. name: "Front (Clothed)",
  18534. image: {
  18535. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18536. extra: 1582 / 1527
  18537. }
  18538. },
  18539. feral: {
  18540. height: math.unit(18, "feet"),
  18541. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18542. name: "Feral",
  18543. image: {
  18544. source: "./media/characters/aronai-sieyes/feral.svg",
  18545. extra: 1530 / 1240,
  18546. bottom: 0.035
  18547. }
  18548. },
  18549. },
  18550. [
  18551. {
  18552. name: "Micro",
  18553. height: math.unit(2, "inches")
  18554. },
  18555. {
  18556. name: "Normal",
  18557. height: math.unit(6 + 1 / 12, "feet"),
  18558. default: true
  18559. }
  18560. ]
  18561. ))
  18562. characterMakers.push(() => makeCharacter(
  18563. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18564. {
  18565. front: {
  18566. height: math.unit(12, "feet"),
  18567. weight: math.unit(410, "kg"),
  18568. name: "Front",
  18569. image: {
  18570. source: "./media/characters/xuna/front.svg",
  18571. extra: 2184 / 1980
  18572. }
  18573. },
  18574. side: {
  18575. height: math.unit(12, "feet"),
  18576. weight: math.unit(410, "kg"),
  18577. name: "Side",
  18578. image: {
  18579. source: "./media/characters/xuna/side.svg",
  18580. extra: 2184 / 1980
  18581. }
  18582. },
  18583. back: {
  18584. height: math.unit(12, "feet"),
  18585. weight: math.unit(410, "kg"),
  18586. name: "Back",
  18587. image: {
  18588. source: "./media/characters/xuna/back.svg",
  18589. extra: 2184 / 1980
  18590. }
  18591. },
  18592. },
  18593. [
  18594. {
  18595. name: "Nano glow",
  18596. height: math.unit(10, "nm")
  18597. },
  18598. {
  18599. name: "Micro floof",
  18600. height: math.unit(0.3, "m")
  18601. },
  18602. {
  18603. name: "Huggable softy boi",
  18604. height: math.unit(3.6576, "m"),
  18605. default: true
  18606. },
  18607. {
  18608. name: "Admirable floof",
  18609. height: math.unit(80, "meters")
  18610. },
  18611. {
  18612. name: "Gentle macro",
  18613. height: math.unit(300, "meters")
  18614. },
  18615. {
  18616. name: "Very careful floof",
  18617. height: math.unit(3200, "meters")
  18618. },
  18619. {
  18620. name: "The mega floof",
  18621. height: math.unit(36000, "meters")
  18622. },
  18623. {
  18624. name: "Giga-fur-Wicker",
  18625. height: math.unit(4800000, "meters")
  18626. },
  18627. {
  18628. name: "Licky world",
  18629. height: math.unit(20000000, "meters")
  18630. },
  18631. {
  18632. name: "Floofy cyan sun",
  18633. height: math.unit(1500000000, "meters")
  18634. },
  18635. {
  18636. name: "Milky Wicker",
  18637. height: math.unit(1000000000000000000000, "meters")
  18638. },
  18639. {
  18640. name: "The observing Wicker",
  18641. height: math.unit(999999999999999999999999999, "meters")
  18642. },
  18643. ]
  18644. ))
  18645. characterMakers.push(() => makeCharacter(
  18646. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18647. {
  18648. front: {
  18649. height: math.unit(5 + 9 / 12, "feet"),
  18650. weight: math.unit(150, "lb"),
  18651. name: "Front",
  18652. image: {
  18653. source: "./media/characters/arokha-sieyes/front.svg",
  18654. extra: 1425 / 1284,
  18655. bottom: 0.05
  18656. }
  18657. },
  18658. },
  18659. [
  18660. {
  18661. name: "Normal",
  18662. height: math.unit(5 + 9 / 12, "feet")
  18663. },
  18664. {
  18665. name: "Macro",
  18666. height: math.unit(30, "meters"),
  18667. default: true
  18668. },
  18669. ]
  18670. ))
  18671. characterMakers.push(() => makeCharacter(
  18672. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18673. {
  18674. front: {
  18675. height: math.unit(6, "feet"),
  18676. weight: math.unit(180, "lb"),
  18677. name: "Front",
  18678. image: {
  18679. source: "./media/characters/arokh-sieyes/front.svg",
  18680. extra: 1830 / 1769,
  18681. bottom: 0.01
  18682. }
  18683. },
  18684. },
  18685. [
  18686. {
  18687. name: "Normal",
  18688. height: math.unit(6, "feet")
  18689. },
  18690. {
  18691. name: "Macro",
  18692. height: math.unit(30, "meters"),
  18693. default: true
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18699. {
  18700. side: {
  18701. height: math.unit(13 + 1 / 12, "feet"),
  18702. weight: math.unit(8.5, "tonnes"),
  18703. name: "Side",
  18704. image: {
  18705. source: "./media/characters/goldeneye/side.svg",
  18706. extra: 1182 / 778,
  18707. bottom: 0.067
  18708. }
  18709. },
  18710. paw: {
  18711. height: math.unit(3.4, "feet"),
  18712. name: "Paw",
  18713. image: {
  18714. source: "./media/characters/goldeneye/paw.svg"
  18715. }
  18716. },
  18717. },
  18718. [
  18719. {
  18720. name: "Normal",
  18721. height: math.unit(13 + 1 / 12, "feet"),
  18722. default: true
  18723. },
  18724. ]
  18725. ))
  18726. characterMakers.push(() => makeCharacter(
  18727. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18728. {
  18729. front: {
  18730. height: math.unit(6 + 1 / 12, "feet"),
  18731. weight: math.unit(210, "lb"),
  18732. name: "Front",
  18733. image: {
  18734. source: "./media/characters/leonardo-lycheborne/front.svg",
  18735. extra: 390 / 365,
  18736. bottom: 0.032
  18737. }
  18738. },
  18739. side: {
  18740. height: math.unit(6 + 1 / 12, "feet"),
  18741. weight: math.unit(210, "lb"),
  18742. name: "Side",
  18743. image: {
  18744. source: "./media/characters/leonardo-lycheborne/side.svg",
  18745. extra: 390 / 365,
  18746. bottom: 0.005
  18747. }
  18748. },
  18749. back: {
  18750. height: math.unit(6 + 1 / 12, "feet"),
  18751. weight: math.unit(210, "lb"),
  18752. name: "Back",
  18753. image: {
  18754. source: "./media/characters/leonardo-lycheborne/back.svg",
  18755. extra: 392 / 366,
  18756. bottom: 0.01
  18757. }
  18758. },
  18759. hand: {
  18760. height: math.unit(1.08, "feet"),
  18761. name: "Hand",
  18762. image: {
  18763. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18764. }
  18765. },
  18766. foot: {
  18767. height: math.unit(1.32, "feet"),
  18768. name: "Foot",
  18769. image: {
  18770. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18771. }
  18772. },
  18773. were: {
  18774. height: math.unit(20, "feet"),
  18775. weight: math.unit(7800, "lb"),
  18776. name: "Were",
  18777. image: {
  18778. source: "./media/characters/leonardo-lycheborne/were.svg",
  18779. extra: 308 / 294,
  18780. bottom: 0.048
  18781. }
  18782. },
  18783. feral: {
  18784. height: math.unit(7.5, "feet"),
  18785. weight: math.unit(600, "lb"),
  18786. name: "Feral",
  18787. image: {
  18788. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18789. extra: 210 / 186,
  18790. bottom: 0.108
  18791. }
  18792. },
  18793. taur: {
  18794. height: math.unit(11, "feet"),
  18795. weight: math.unit(3300, "lb"),
  18796. name: "Taur",
  18797. image: {
  18798. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18799. extra: 320 / 303,
  18800. bottom: 0.025
  18801. }
  18802. },
  18803. barghest: {
  18804. height: math.unit(11, "feet"),
  18805. weight: math.unit(1300, "lb"),
  18806. name: "Barghest",
  18807. image: {
  18808. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18809. extra: 323 / 302,
  18810. bottom: 0.027
  18811. }
  18812. },
  18813. dick: {
  18814. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18815. name: "Dick",
  18816. image: {
  18817. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18818. }
  18819. },
  18820. dickWere: {
  18821. height: math.unit((20) / 3.8, "feet"),
  18822. name: "Dick (Were)",
  18823. image: {
  18824. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18825. }
  18826. },
  18827. },
  18828. [
  18829. {
  18830. name: "Normal",
  18831. height: math.unit(6 + 1 / 12, "feet"),
  18832. default: true
  18833. },
  18834. ]
  18835. ))
  18836. characterMakers.push(() => makeCharacter(
  18837. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18838. {
  18839. front: {
  18840. height: math.unit(10, "feet"),
  18841. weight: math.unit(350, "lb"),
  18842. name: "Front",
  18843. image: {
  18844. source: "./media/characters/jet/front.svg",
  18845. extra: 2050 / 1980,
  18846. bottom: 0.013
  18847. }
  18848. },
  18849. back: {
  18850. height: math.unit(10, "feet"),
  18851. weight: math.unit(350, "lb"),
  18852. name: "Back",
  18853. image: {
  18854. source: "./media/characters/jet/back.svg",
  18855. extra: 2050 / 1980,
  18856. bottom: 0.013
  18857. }
  18858. },
  18859. },
  18860. [
  18861. {
  18862. name: "Micro",
  18863. height: math.unit(6, "inches")
  18864. },
  18865. {
  18866. name: "Normal",
  18867. height: math.unit(10, "feet"),
  18868. default: true
  18869. },
  18870. {
  18871. name: "Macro",
  18872. height: math.unit(100, "feet")
  18873. },
  18874. ]
  18875. ))
  18876. characterMakers.push(() => makeCharacter(
  18877. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18878. {
  18879. front: {
  18880. height: math.unit(15, "feet"),
  18881. weight: math.unit(2800, "lb"),
  18882. name: "Front",
  18883. image: {
  18884. source: "./media/characters/tanarath/front.svg",
  18885. extra: 2392 / 2220,
  18886. bottom: 0.03
  18887. }
  18888. },
  18889. back: {
  18890. height: math.unit(15, "feet"),
  18891. weight: math.unit(2800, "lb"),
  18892. name: "Back",
  18893. image: {
  18894. source: "./media/characters/tanarath/back.svg",
  18895. extra: 2392 / 2220,
  18896. bottom: 0.03
  18897. }
  18898. },
  18899. },
  18900. [
  18901. {
  18902. name: "Normal",
  18903. height: math.unit(15, "feet"),
  18904. default: true
  18905. },
  18906. ]
  18907. ))
  18908. characterMakers.push(() => makeCharacter(
  18909. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18910. {
  18911. front: {
  18912. height: math.unit(7 + 1 / 12, "feet"),
  18913. weight: math.unit(175, "lb"),
  18914. name: "Front",
  18915. image: {
  18916. source: "./media/characters/patty-cattybatty/front.svg",
  18917. extra: 908 / 874,
  18918. bottom: 0.025
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Micro",
  18925. height: math.unit(1, "inch")
  18926. },
  18927. {
  18928. name: "Normal",
  18929. height: math.unit(7 + 1 / 12, "feet")
  18930. },
  18931. {
  18932. name: "Mini Macro",
  18933. height: math.unit(155, "feet")
  18934. },
  18935. {
  18936. name: "Macro",
  18937. height: math.unit(1077, "feet")
  18938. },
  18939. {
  18940. name: "Mega Macro",
  18941. height: math.unit(47650, "feet"),
  18942. default: true
  18943. },
  18944. {
  18945. name: "Giga Macro",
  18946. height: math.unit(440, "miles")
  18947. },
  18948. {
  18949. name: "Tera Macro",
  18950. height: math.unit(8700, "miles")
  18951. },
  18952. {
  18953. name: "Planetary Macro",
  18954. height: math.unit(32700, "miles")
  18955. },
  18956. {
  18957. name: "Solar Macro",
  18958. height: math.unit(550000, "miles")
  18959. },
  18960. {
  18961. name: "Celestial Macro",
  18962. height: math.unit(2.5, "AU")
  18963. },
  18964. ]
  18965. ))
  18966. characterMakers.push(() => makeCharacter(
  18967. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18968. {
  18969. front: {
  18970. height: math.unit(4 + 5 / 12, "feet"),
  18971. weight: math.unit(90, "lb"),
  18972. name: "Front",
  18973. image: {
  18974. source: "./media/characters/cappu/front.svg",
  18975. extra: 1247 / 1152,
  18976. bottom: 0.012
  18977. }
  18978. },
  18979. },
  18980. [
  18981. {
  18982. name: "Normal",
  18983. height: math.unit(4 + 5 / 12, "feet"),
  18984. default: true
  18985. },
  18986. ]
  18987. ))
  18988. characterMakers.push(() => makeCharacter(
  18989. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18990. {
  18991. frontDressed: {
  18992. height: math.unit(70, "cm"),
  18993. weight: math.unit(6, "kg"),
  18994. name: "Front (Dressed)",
  18995. image: {
  18996. source: "./media/characters/sebi/front-dressed.svg",
  18997. extra: 713.5 / 686.5,
  18998. bottom: 0.003
  18999. }
  19000. },
  19001. front: {
  19002. height: math.unit(70, "cm"),
  19003. weight: math.unit(5, "kg"),
  19004. name: "Front",
  19005. image: {
  19006. source: "./media/characters/sebi/front.svg",
  19007. extra: 713.5 / 686.5,
  19008. bottom: 0.003
  19009. }
  19010. }
  19011. },
  19012. [
  19013. {
  19014. name: "Normal",
  19015. height: math.unit(70, "cm"),
  19016. default: true
  19017. },
  19018. {
  19019. name: "Macro",
  19020. height: math.unit(8, "meters")
  19021. },
  19022. ]
  19023. ))
  19024. characterMakers.push(() => makeCharacter(
  19025. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19026. {
  19027. front: {
  19028. height: math.unit(6, "feet"),
  19029. weight: math.unit(150, "lb"),
  19030. name: "Front",
  19031. image: {
  19032. source: "./media/characters/typhek/front.svg",
  19033. extra: 1948 / 1929,
  19034. bottom: 0.025
  19035. }
  19036. },
  19037. side: {
  19038. height: math.unit(6, "feet"),
  19039. weight: math.unit(150, "lb"),
  19040. name: "Side",
  19041. image: {
  19042. source: "./media/characters/typhek/side.svg",
  19043. extra: 2034 / 2010,
  19044. bottom: 0.003
  19045. }
  19046. },
  19047. back: {
  19048. height: math.unit(6, "feet"),
  19049. weight: math.unit(150, "lb"),
  19050. name: "Back",
  19051. image: {
  19052. source: "./media/characters/typhek/back.svg",
  19053. extra: 2005 / 1978,
  19054. bottom: 0.004
  19055. }
  19056. },
  19057. palm: {
  19058. height: math.unit(1.2, "feet"),
  19059. name: "Palm",
  19060. image: {
  19061. source: "./media/characters/typhek/palm.svg"
  19062. }
  19063. },
  19064. fist: {
  19065. height: math.unit(1.1, "feet"),
  19066. name: "Fist",
  19067. image: {
  19068. source: "./media/characters/typhek/fist.svg"
  19069. }
  19070. },
  19071. foot: {
  19072. height: math.unit(1.57, "feet"),
  19073. name: "Foot",
  19074. image: {
  19075. source: "./media/characters/typhek/foot.svg"
  19076. }
  19077. },
  19078. sole: {
  19079. height: math.unit(2.05, "feet"),
  19080. name: "Sole",
  19081. image: {
  19082. source: "./media/characters/typhek/sole.svg"
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Macro",
  19089. height: math.unit(40, "stories"),
  19090. default: true
  19091. },
  19092. {
  19093. name: "Megamacro",
  19094. height: math.unit(1, "mile")
  19095. },
  19096. {
  19097. name: "Gigamacro",
  19098. height: math.unit(4000, "solarradii")
  19099. },
  19100. {
  19101. name: "Universal",
  19102. height: math.unit(1.1, "universes")
  19103. }
  19104. ]
  19105. ))
  19106. characterMakers.push(() => makeCharacter(
  19107. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19108. {
  19109. side: {
  19110. height: math.unit(5 + 7 / 12, "feet"),
  19111. weight: math.unit(150, "lb"),
  19112. name: "Side",
  19113. image: {
  19114. source: "./media/characters/kassy/side.svg",
  19115. extra: 1280 / 1225,
  19116. bottom: 0.002
  19117. }
  19118. },
  19119. front: {
  19120. height: math.unit(5 + 7 / 12, "feet"),
  19121. weight: math.unit(150, "lb"),
  19122. name: "Front",
  19123. image: {
  19124. source: "./media/characters/kassy/front.svg",
  19125. extra: 1280 / 1225,
  19126. bottom: 0.025
  19127. }
  19128. },
  19129. back: {
  19130. height: math.unit(5 + 7 / 12, "feet"),
  19131. weight: math.unit(150, "lb"),
  19132. name: "Back",
  19133. image: {
  19134. source: "./media/characters/kassy/back.svg",
  19135. extra: 1280 / 1225,
  19136. bottom: 0.002
  19137. }
  19138. },
  19139. foot: {
  19140. height: math.unit(1.266, "feet"),
  19141. name: "Foot",
  19142. image: {
  19143. source: "./media/characters/kassy/foot.svg"
  19144. }
  19145. },
  19146. },
  19147. [
  19148. {
  19149. name: "Normal",
  19150. height: math.unit(5 + 7 / 12, "feet")
  19151. },
  19152. {
  19153. name: "Macro",
  19154. height: math.unit(137, "feet"),
  19155. default: true
  19156. },
  19157. {
  19158. name: "Megamacro",
  19159. height: math.unit(1, "mile")
  19160. },
  19161. ]
  19162. ))
  19163. characterMakers.push(() => makeCharacter(
  19164. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19165. {
  19166. front: {
  19167. height: math.unit(6 + 1 / 12, "feet"),
  19168. weight: math.unit(200, "lb"),
  19169. name: "Front",
  19170. image: {
  19171. source: "./media/characters/neil/front.svg",
  19172. extra: 1326 / 1250,
  19173. bottom: 0.023
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(6 + 1 / 12, "feet"),
  19181. default: true
  19182. },
  19183. {
  19184. name: "Macro",
  19185. height: math.unit(200, "feet")
  19186. },
  19187. ]
  19188. ))
  19189. characterMakers.push(() => makeCharacter(
  19190. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19191. {
  19192. front: {
  19193. height: math.unit(5 + 9 / 12, "feet"),
  19194. weight: math.unit(190, "lb"),
  19195. name: "Front",
  19196. image: {
  19197. source: "./media/characters/atticus/front.svg",
  19198. extra: 2934 / 2785,
  19199. bottom: 0.025
  19200. }
  19201. },
  19202. },
  19203. [
  19204. {
  19205. name: "Normal",
  19206. height: math.unit(5 + 9 / 12, "feet"),
  19207. default: true
  19208. },
  19209. {
  19210. name: "Macro",
  19211. height: math.unit(180, "feet")
  19212. },
  19213. ]
  19214. ))
  19215. characterMakers.push(() => makeCharacter(
  19216. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19217. {
  19218. side: {
  19219. height: math.unit(9, "feet"),
  19220. weight: math.unit(650, "lb"),
  19221. name: "Side",
  19222. image: {
  19223. source: "./media/characters/milo/side.svg",
  19224. extra: 2644 / 2310,
  19225. bottom: 0.032
  19226. }
  19227. },
  19228. },
  19229. [
  19230. {
  19231. name: "Normal",
  19232. height: math.unit(9, "feet"),
  19233. default: true
  19234. },
  19235. {
  19236. name: "Macro",
  19237. height: math.unit(300, "feet")
  19238. },
  19239. ]
  19240. ))
  19241. characterMakers.push(() => makeCharacter(
  19242. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19243. {
  19244. side: {
  19245. height: math.unit(8, "meters"),
  19246. weight: math.unit(90000, "kg"),
  19247. name: "Side",
  19248. image: {
  19249. source: "./media/characters/ijzer/side.svg",
  19250. extra: 2756 / 1600,
  19251. bottom: 0.01
  19252. }
  19253. },
  19254. },
  19255. [
  19256. {
  19257. name: "Small",
  19258. height: math.unit(3, "meters")
  19259. },
  19260. {
  19261. name: "Normal",
  19262. height: math.unit(8, "meters"),
  19263. default: true
  19264. },
  19265. {
  19266. name: "Normal+",
  19267. height: math.unit(10, "meters")
  19268. },
  19269. {
  19270. name: "Bigger",
  19271. height: math.unit(24, "meters")
  19272. },
  19273. {
  19274. name: "Huge",
  19275. height: math.unit(80, "meters")
  19276. },
  19277. ]
  19278. ))
  19279. characterMakers.push(() => makeCharacter(
  19280. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19281. {
  19282. front: {
  19283. height: math.unit(6 + 2 / 12, "feet"),
  19284. weight: math.unit(153, "lb"),
  19285. name: "Front",
  19286. image: {
  19287. source: "./media/characters/luca-cervicum/front.svg",
  19288. extra: 370 / 327,
  19289. bottom: 0.015
  19290. }
  19291. },
  19292. back: {
  19293. height: math.unit(6 + 2 / 12, "feet"),
  19294. weight: math.unit(153, "lb"),
  19295. name: "Back",
  19296. image: {
  19297. source: "./media/characters/luca-cervicum/back.svg",
  19298. extra: 367 / 333,
  19299. bottom: 0.005
  19300. }
  19301. },
  19302. frontGear: {
  19303. height: math.unit(6 + 2 / 12, "feet"),
  19304. weight: math.unit(173, "lb"),
  19305. name: "Front (Gear)",
  19306. image: {
  19307. source: "./media/characters/luca-cervicum/front-gear.svg",
  19308. extra: 377 / 333,
  19309. bottom: 0.006
  19310. }
  19311. },
  19312. },
  19313. [
  19314. {
  19315. name: "Normal",
  19316. height: math.unit(6 + 2 / 12, "feet"),
  19317. default: true
  19318. },
  19319. ]
  19320. ))
  19321. characterMakers.push(() => makeCharacter(
  19322. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19323. {
  19324. front: {
  19325. height: math.unit(6 + 1 / 12, "feet"),
  19326. weight: math.unit(304, "lb"),
  19327. name: "Front",
  19328. image: {
  19329. source: "./media/characters/oliver/front.svg",
  19330. extra: 157 / 143,
  19331. bottom: 0.08
  19332. }
  19333. },
  19334. },
  19335. [
  19336. {
  19337. name: "Normal",
  19338. height: math.unit(6 + 1 / 12, "feet"),
  19339. default: true
  19340. },
  19341. ]
  19342. ))
  19343. characterMakers.push(() => makeCharacter(
  19344. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19345. {
  19346. front: {
  19347. height: math.unit(5 + 7 / 12, "feet"),
  19348. weight: math.unit(140, "lb"),
  19349. name: "Front",
  19350. image: {
  19351. source: "./media/characters/shane/front.svg",
  19352. extra: 304 / 289,
  19353. bottom: 0.005
  19354. }
  19355. },
  19356. },
  19357. [
  19358. {
  19359. name: "Normal",
  19360. height: math.unit(5 + 7 / 12, "feet"),
  19361. default: true
  19362. },
  19363. ]
  19364. ))
  19365. characterMakers.push(() => makeCharacter(
  19366. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19367. {
  19368. front: {
  19369. height: math.unit(5 + 9 / 12, "feet"),
  19370. weight: math.unit(178, "lb"),
  19371. name: "Front",
  19372. image: {
  19373. source: "./media/characters/shin/front.svg",
  19374. extra: 159 / 151,
  19375. bottom: 0.015
  19376. }
  19377. },
  19378. },
  19379. [
  19380. {
  19381. name: "Normal",
  19382. height: math.unit(5 + 9 / 12, "feet"),
  19383. default: true
  19384. },
  19385. ]
  19386. ))
  19387. characterMakers.push(() => makeCharacter(
  19388. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19389. {
  19390. front: {
  19391. height: math.unit(5 + 10 / 12, "feet"),
  19392. weight: math.unit(168, "lb"),
  19393. name: "Front",
  19394. image: {
  19395. source: "./media/characters/xerxes/front.svg",
  19396. extra: 282 / 260,
  19397. bottom: 0.045
  19398. }
  19399. },
  19400. },
  19401. [
  19402. {
  19403. name: "Normal",
  19404. height: math.unit(5 + 10 / 12, "feet"),
  19405. default: true
  19406. },
  19407. ]
  19408. ))
  19409. characterMakers.push(() => makeCharacter(
  19410. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19411. {
  19412. front: {
  19413. height: math.unit(6 + 7 / 12, "feet"),
  19414. weight: math.unit(208, "lb"),
  19415. name: "Front",
  19416. image: {
  19417. source: "./media/characters/chaska/front.svg",
  19418. extra: 332 / 319,
  19419. bottom: 0.015
  19420. }
  19421. },
  19422. },
  19423. [
  19424. {
  19425. name: "Normal",
  19426. height: math.unit(6 + 7 / 12, "feet"),
  19427. default: true
  19428. },
  19429. ]
  19430. ))
  19431. characterMakers.push(() => makeCharacter(
  19432. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19433. {
  19434. front: {
  19435. height: math.unit(5 + 8 / 12, "feet"),
  19436. weight: math.unit(208, "lb"),
  19437. name: "Front",
  19438. image: {
  19439. source: "./media/characters/enuk/front.svg",
  19440. extra: 437 / 406,
  19441. bottom: 0.02
  19442. }
  19443. },
  19444. },
  19445. [
  19446. {
  19447. name: "Normal",
  19448. height: math.unit(5 + 8 / 12, "feet"),
  19449. default: true
  19450. },
  19451. ]
  19452. ))
  19453. characterMakers.push(() => makeCharacter(
  19454. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19455. {
  19456. front: {
  19457. height: math.unit(5 + 10 / 12, "feet"),
  19458. weight: math.unit(252, "lb"),
  19459. name: "Front",
  19460. image: {
  19461. source: "./media/characters/bruun/front.svg",
  19462. extra: 197 / 187,
  19463. bottom: 0.012
  19464. }
  19465. },
  19466. },
  19467. [
  19468. {
  19469. name: "Normal",
  19470. height: math.unit(5 + 10 / 12, "feet"),
  19471. default: true
  19472. },
  19473. ]
  19474. ))
  19475. characterMakers.push(() => makeCharacter(
  19476. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19477. {
  19478. front: {
  19479. height: math.unit(6 + 10 / 12, "feet"),
  19480. weight: math.unit(255, "lb"),
  19481. name: "Front",
  19482. image: {
  19483. source: "./media/characters/alexeev/front.svg",
  19484. extra: 213 / 200,
  19485. bottom: 0.05
  19486. }
  19487. },
  19488. },
  19489. [
  19490. {
  19491. name: "Normal",
  19492. height: math.unit(6 + 10 / 12, "feet"),
  19493. default: true
  19494. },
  19495. ]
  19496. ))
  19497. characterMakers.push(() => makeCharacter(
  19498. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19499. {
  19500. front: {
  19501. height: math.unit(2 + 8 / 12, "feet"),
  19502. weight: math.unit(22, "lb"),
  19503. name: "Front",
  19504. image: {
  19505. source: "./media/characters/evelyn/front.svg",
  19506. extra: 208 / 180
  19507. }
  19508. },
  19509. },
  19510. [
  19511. {
  19512. name: "Normal",
  19513. height: math.unit(2 + 8 / 12, "feet"),
  19514. default: true
  19515. },
  19516. ]
  19517. ))
  19518. characterMakers.push(() => makeCharacter(
  19519. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19520. {
  19521. front: {
  19522. height: math.unit(5 + 9 / 12, "feet"),
  19523. weight: math.unit(139, "lb"),
  19524. name: "Front",
  19525. image: {
  19526. source: "./media/characters/inca/front.svg",
  19527. extra: 294 / 291,
  19528. bottom: 0.03
  19529. }
  19530. },
  19531. },
  19532. [
  19533. {
  19534. name: "Normal",
  19535. height: math.unit(5 + 9 / 12, "feet"),
  19536. default: true
  19537. },
  19538. ]
  19539. ))
  19540. characterMakers.push(() => makeCharacter(
  19541. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19542. {
  19543. front: {
  19544. height: math.unit(5 + 1 / 12, "feet"),
  19545. weight: math.unit(84, "lb"),
  19546. name: "Front",
  19547. image: {
  19548. source: "./media/characters/magdalene/front.svg",
  19549. extra: 293 / 273
  19550. }
  19551. },
  19552. },
  19553. [
  19554. {
  19555. name: "Normal",
  19556. height: math.unit(5 + 1 / 12, "feet"),
  19557. default: true
  19558. },
  19559. ]
  19560. ))
  19561. characterMakers.push(() => makeCharacter(
  19562. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19563. {
  19564. front: {
  19565. height: math.unit(6 + 3 / 12, "feet"),
  19566. weight: math.unit(185, "lb"),
  19567. name: "Front",
  19568. image: {
  19569. source: "./media/characters/mera/front.svg",
  19570. extra: 291 / 277,
  19571. bottom: 0.03
  19572. }
  19573. },
  19574. },
  19575. [
  19576. {
  19577. name: "Normal",
  19578. height: math.unit(6 + 3 / 12, "feet"),
  19579. default: true
  19580. },
  19581. ]
  19582. ))
  19583. characterMakers.push(() => makeCharacter(
  19584. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19585. {
  19586. front: {
  19587. height: math.unit(6 + 7 / 12, "feet"),
  19588. weight: math.unit(160, "lb"),
  19589. name: "Front",
  19590. image: {
  19591. source: "./media/characters/ceres/front.svg",
  19592. extra: 1023 / 950,
  19593. bottom: 0.027
  19594. }
  19595. },
  19596. back: {
  19597. height: math.unit(6 + 7 / 12, "feet"),
  19598. weight: math.unit(160, "lb"),
  19599. name: "Back",
  19600. image: {
  19601. source: "./media/characters/ceres/back.svg",
  19602. extra: 1023 / 950
  19603. }
  19604. },
  19605. },
  19606. [
  19607. {
  19608. name: "Normal",
  19609. height: math.unit(6 + 7 / 12, "feet"),
  19610. default: true
  19611. },
  19612. ]
  19613. ))
  19614. characterMakers.push(() => makeCharacter(
  19615. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19616. {
  19617. front: {
  19618. height: math.unit(5 + 10 / 12, "feet"),
  19619. weight: math.unit(150, "lb"),
  19620. name: "Front",
  19621. image: {
  19622. source: "./media/characters/kris/front.svg",
  19623. extra: 885 / 803,
  19624. bottom: 0.03
  19625. }
  19626. },
  19627. },
  19628. [
  19629. {
  19630. name: "Normal",
  19631. height: math.unit(5 + 10 / 12, "feet"),
  19632. default: true
  19633. },
  19634. ]
  19635. ))
  19636. characterMakers.push(() => makeCharacter(
  19637. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19638. {
  19639. front: {
  19640. height: math.unit(7, "feet"),
  19641. weight: math.unit(120, "kg"),
  19642. name: "Front",
  19643. image: {
  19644. source: "./media/characters/taluthus/front.svg",
  19645. extra: 903 / 833,
  19646. bottom: 0.015
  19647. }
  19648. },
  19649. },
  19650. [
  19651. {
  19652. name: "Normal",
  19653. height: math.unit(7, "feet"),
  19654. default: true
  19655. },
  19656. {
  19657. name: "Macro",
  19658. height: math.unit(300, "feet")
  19659. },
  19660. ]
  19661. ))
  19662. characterMakers.push(() => makeCharacter(
  19663. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19664. {
  19665. front: {
  19666. height: math.unit(5 + 9 / 12, "feet"),
  19667. weight: math.unit(145, "lb"),
  19668. name: "Front",
  19669. image: {
  19670. source: "./media/characters/dawn/front.svg",
  19671. extra: 2094 / 2016,
  19672. bottom: 0.025
  19673. }
  19674. },
  19675. back: {
  19676. height: math.unit(5 + 9 / 12, "feet"),
  19677. weight: math.unit(160, "lb"),
  19678. name: "Back",
  19679. image: {
  19680. source: "./media/characters/dawn/back.svg",
  19681. extra: 2112 / 2080,
  19682. bottom: 0.005
  19683. }
  19684. },
  19685. },
  19686. [
  19687. {
  19688. name: "Normal",
  19689. height: math.unit(6 + 7 / 12, "feet"),
  19690. default: true
  19691. },
  19692. ]
  19693. ))
  19694. characterMakers.push(() => makeCharacter(
  19695. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19696. {
  19697. anthro: {
  19698. height: math.unit(8 + 3 / 12, "feet"),
  19699. weight: math.unit(450, "lb"),
  19700. name: "Anthro",
  19701. image: {
  19702. source: "./media/characters/arador/anthro.svg",
  19703. extra: 1835 / 1718,
  19704. bottom: 0.025
  19705. }
  19706. },
  19707. feral: {
  19708. height: math.unit(4, "feet"),
  19709. weight: math.unit(200, "lb"),
  19710. name: "Feral",
  19711. image: {
  19712. source: "./media/characters/arador/feral.svg",
  19713. extra: 1683 / 1514,
  19714. bottom: 0.07
  19715. }
  19716. },
  19717. },
  19718. [
  19719. {
  19720. name: "Normal",
  19721. height: math.unit(8 + 3 / 12, "feet")
  19722. },
  19723. {
  19724. name: "Macro",
  19725. height: math.unit(82.5, "feet"),
  19726. default: true
  19727. },
  19728. ]
  19729. ))
  19730. characterMakers.push(() => makeCharacter(
  19731. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19732. {
  19733. front: {
  19734. height: math.unit(5 + 10 / 12, "feet"),
  19735. weight: math.unit(125, "lb"),
  19736. name: "Front",
  19737. image: {
  19738. source: "./media/characters/dharsi/front.svg",
  19739. extra: 716 / 630,
  19740. bottom: 0.035
  19741. }
  19742. },
  19743. },
  19744. [
  19745. {
  19746. name: "Nano",
  19747. height: math.unit(100, "nm")
  19748. },
  19749. {
  19750. name: "Micro",
  19751. height: math.unit(2, "inches")
  19752. },
  19753. {
  19754. name: "Normal",
  19755. height: math.unit(5 + 10 / 12, "feet"),
  19756. default: true
  19757. },
  19758. {
  19759. name: "Macro",
  19760. height: math.unit(1000, "feet")
  19761. },
  19762. {
  19763. name: "Megamacro",
  19764. height: math.unit(10, "miles")
  19765. },
  19766. {
  19767. name: "Gigamacro",
  19768. height: math.unit(3000, "miles")
  19769. },
  19770. {
  19771. name: "Teramacro",
  19772. height: math.unit(500000, "miles")
  19773. },
  19774. {
  19775. name: "Teramacro+",
  19776. height: math.unit(30, "galaxies")
  19777. },
  19778. ]
  19779. ))
  19780. characterMakers.push(() => makeCharacter(
  19781. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19782. {
  19783. front: {
  19784. height: math.unit(6, "feet"),
  19785. weight: math.unit(150, "lb"),
  19786. name: "Front",
  19787. image: {
  19788. source: "./media/characters/deathy/front.svg",
  19789. extra: 1552 / 1463,
  19790. bottom: 0.025
  19791. }
  19792. },
  19793. side: {
  19794. height: math.unit(6, "feet"),
  19795. weight: math.unit(150, "lb"),
  19796. name: "Side",
  19797. image: {
  19798. source: "./media/characters/deathy/side.svg",
  19799. extra: 1604 / 1455,
  19800. bottom: 0.025
  19801. }
  19802. },
  19803. back: {
  19804. height: math.unit(6, "feet"),
  19805. weight: math.unit(150, "lb"),
  19806. name: "Back",
  19807. image: {
  19808. source: "./media/characters/deathy/back.svg",
  19809. extra: 1580 / 1463,
  19810. bottom: 0.005
  19811. }
  19812. },
  19813. },
  19814. [
  19815. {
  19816. name: "Micro",
  19817. height: math.unit(5, "millimeters")
  19818. },
  19819. {
  19820. name: "Normal",
  19821. height: math.unit(6 + 5 / 12, "feet"),
  19822. default: true
  19823. },
  19824. ]
  19825. ))
  19826. characterMakers.push(() => makeCharacter(
  19827. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19828. {
  19829. front: {
  19830. height: math.unit(16, "feet"),
  19831. weight: math.unit(4000, "lb"),
  19832. name: "Front",
  19833. image: {
  19834. source: "./media/characters/juniper/front.svg",
  19835. bottom: 0.04
  19836. }
  19837. },
  19838. },
  19839. [
  19840. {
  19841. name: "Normal",
  19842. height: math.unit(16, "feet"),
  19843. default: true
  19844. },
  19845. ]
  19846. ))
  19847. characterMakers.push(() => makeCharacter(
  19848. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19849. {
  19850. front: {
  19851. height: math.unit(6, "feet"),
  19852. weight: math.unit(150, "lb"),
  19853. name: "Front",
  19854. image: {
  19855. source: "./media/characters/hipster/front.svg",
  19856. extra: 1312 / 1209,
  19857. bottom: 0.025
  19858. }
  19859. },
  19860. back: {
  19861. height: math.unit(6, "feet"),
  19862. weight: math.unit(150, "lb"),
  19863. name: "Back",
  19864. image: {
  19865. source: "./media/characters/hipster/back.svg",
  19866. extra: 1281 / 1196,
  19867. bottom: 0.01
  19868. }
  19869. },
  19870. },
  19871. [
  19872. {
  19873. name: "Micro",
  19874. height: math.unit(1, "mm")
  19875. },
  19876. {
  19877. name: "Normal",
  19878. height: math.unit(4, "inches"),
  19879. default: true
  19880. },
  19881. {
  19882. name: "Macro",
  19883. height: math.unit(500, "feet")
  19884. },
  19885. {
  19886. name: "Megamacro",
  19887. height: math.unit(1000, "miles")
  19888. },
  19889. ]
  19890. ))
  19891. characterMakers.push(() => makeCharacter(
  19892. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19893. {
  19894. front: {
  19895. height: math.unit(6, "feet"),
  19896. weight: math.unit(150, "lb"),
  19897. name: "Front",
  19898. image: {
  19899. source: "./media/characters/tendirmuldr/front.svg",
  19900. extra: 1878 / 1772,
  19901. bottom: 0.015
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Megamacro",
  19908. height: math.unit(1500, "miles"),
  19909. default: true
  19910. },
  19911. ]
  19912. ))
  19913. characterMakers.push(() => makeCharacter(
  19914. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19915. {
  19916. front: {
  19917. height: math.unit(14, "feet"),
  19918. weight: math.unit(12000, "lb"),
  19919. name: "Front",
  19920. image: {
  19921. source: "./media/characters/mort/front.svg",
  19922. extra: 365 / 318,
  19923. bottom: 0.01
  19924. }
  19925. },
  19926. side: {
  19927. height: math.unit(14, "feet"),
  19928. weight: math.unit(12000, "lb"),
  19929. name: "Side",
  19930. image: {
  19931. source: "./media/characters/mort/side.svg",
  19932. extra: 365 / 318,
  19933. bottom: 0.052
  19934. },
  19935. default: true
  19936. },
  19937. back: {
  19938. height: math.unit(14, "feet"),
  19939. weight: math.unit(12000, "lb"),
  19940. name: "Back",
  19941. image: {
  19942. source: "./media/characters/mort/back.svg",
  19943. extra: 371 / 332,
  19944. bottom: 0.18
  19945. }
  19946. },
  19947. },
  19948. [
  19949. {
  19950. name: "Normal",
  19951. height: math.unit(14, "feet"),
  19952. default: true
  19953. },
  19954. ]
  19955. ))
  19956. characterMakers.push(() => makeCharacter(
  19957. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19958. {
  19959. front: {
  19960. height: math.unit(8, "feet"),
  19961. weight: math.unit(1, "ton"),
  19962. name: "Front",
  19963. image: {
  19964. source: "./media/characters/lycoa/front.svg",
  19965. extra: 1875 / 1789,
  19966. bottom: 0.022
  19967. }
  19968. },
  19969. back: {
  19970. height: math.unit(8, "feet"),
  19971. weight: math.unit(1, "ton"),
  19972. name: "Back",
  19973. image: {
  19974. source: "./media/characters/lycoa/back.svg",
  19975. extra: 1835 / 1781,
  19976. bottom: 0.03
  19977. }
  19978. },
  19979. head: {
  19980. height: math.unit(2.1, "feet"),
  19981. name: "Head",
  19982. image: {
  19983. source: "./media/characters/lycoa/head.svg"
  19984. }
  19985. },
  19986. tailmaw: {
  19987. height: math.unit(1.9, "feet"),
  19988. name: "Tailmaw",
  19989. image: {
  19990. source: "./media/characters/lycoa/tailmaw.svg"
  19991. }
  19992. },
  19993. tentacles: {
  19994. height: math.unit(2.1, "feet"),
  19995. name: "Tentacles",
  19996. image: {
  19997. source: "./media/characters/lycoa/tentacles.svg"
  19998. }
  19999. },
  20000. dick: {
  20001. height: math.unit(1.73, "feet"),
  20002. name: "Dick",
  20003. image: {
  20004. source: "./media/characters/lycoa/dick.svg"
  20005. }
  20006. },
  20007. },
  20008. [
  20009. {
  20010. name: "Normal",
  20011. height: math.unit(8, "feet"),
  20012. default: true
  20013. },
  20014. {
  20015. name: "Macro",
  20016. height: math.unit(30, "feet")
  20017. },
  20018. ]
  20019. ))
  20020. characterMakers.push(() => makeCharacter(
  20021. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20022. {
  20023. front: {
  20024. height: math.unit(4 + 2 / 12, "feet"),
  20025. weight: math.unit(70, "lb"),
  20026. name: "Front",
  20027. image: {
  20028. source: "./media/characters/naldara/front.svg",
  20029. extra: 841 / 720,
  20030. bottom: 0.04
  20031. }
  20032. },
  20033. naga: {
  20034. height: math.unit(23, "feet"),
  20035. weight: math.unit(15000, "kg"),
  20036. name: "Naga",
  20037. image: {
  20038. source: "./media/characters/naldara/naga.svg",
  20039. extra: 3290 / 2959,
  20040. bottom: 124 / 3432
  20041. }
  20042. },
  20043. },
  20044. [
  20045. {
  20046. name: "Normal",
  20047. height: math.unit(4 + 2 / 12, "feet"),
  20048. default: true
  20049. },
  20050. ]
  20051. ))
  20052. characterMakers.push(() => makeCharacter(
  20053. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20054. {
  20055. front: {
  20056. height: math.unit(13 + 7 / 12, "feet"),
  20057. weight: math.unit(1500, "lb"),
  20058. name: "Front",
  20059. image: {
  20060. source: "./media/characters/briar/front.svg",
  20061. extra: 626 / 596,
  20062. bottom: 0.08
  20063. }
  20064. },
  20065. },
  20066. [
  20067. {
  20068. name: "Normal",
  20069. height: math.unit(13 + 7 / 12, "feet"),
  20070. default: true
  20071. },
  20072. ]
  20073. ))
  20074. characterMakers.push(() => makeCharacter(
  20075. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20076. {
  20077. side: {
  20078. height: math.unit(10, "feet"),
  20079. weight: math.unit(500, "lb"),
  20080. name: "Side",
  20081. image: {
  20082. source: "./media/characters/vanguard/side.svg",
  20083. extra: 502 / 425,
  20084. bottom: 0.087
  20085. }
  20086. },
  20087. },
  20088. [
  20089. {
  20090. name: "Normal",
  20091. height: math.unit(10, "feet"),
  20092. default: true
  20093. },
  20094. ]
  20095. ))
  20096. characterMakers.push(() => makeCharacter(
  20097. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20098. {
  20099. front: {
  20100. height: math.unit(7.5, "feet"),
  20101. weight: math.unit(2, "lb"),
  20102. name: "Front",
  20103. image: {
  20104. source: "./media/characters/artemis/front.svg",
  20105. extra: 1192 / 1075,
  20106. bottom: 0.07
  20107. }
  20108. },
  20109. frontNsfw: {
  20110. height: math.unit(7.5, "feet"),
  20111. weight: math.unit(2, "lb"),
  20112. name: "Front (NSFW)",
  20113. image: {
  20114. source: "./media/characters/artemis/front-nsfw.svg",
  20115. extra: 1192 / 1075,
  20116. bottom: 0.07
  20117. }
  20118. },
  20119. frontNsfwer: {
  20120. height: math.unit(7.5, "feet"),
  20121. weight: math.unit(2, "lb"),
  20122. name: "Front (NSFW-er)",
  20123. image: {
  20124. source: "./media/characters/artemis/front-nsfwer.svg",
  20125. extra: 1192 / 1075,
  20126. bottom: 0.07
  20127. }
  20128. },
  20129. side: {
  20130. height: math.unit(7.5, "feet"),
  20131. weight: math.unit(2, "lb"),
  20132. name: "Side",
  20133. image: {
  20134. source: "./media/characters/artemis/side.svg",
  20135. extra: 1192 / 1075,
  20136. bottom: 0.07
  20137. }
  20138. },
  20139. sideNsfw: {
  20140. height: math.unit(7.5, "feet"),
  20141. weight: math.unit(2, "lb"),
  20142. name: "Side (NSFW)",
  20143. image: {
  20144. source: "./media/characters/artemis/side-nsfw.svg",
  20145. extra: 1192 / 1075,
  20146. bottom: 0.07
  20147. }
  20148. },
  20149. sideNsfwer: {
  20150. height: math.unit(7.5, "feet"),
  20151. weight: math.unit(2, "lb"),
  20152. name: "Side (NSFW-er)",
  20153. image: {
  20154. source: "./media/characters/artemis/side-nsfwer.svg",
  20155. extra: 1192 / 1075,
  20156. bottom: 0.07
  20157. }
  20158. },
  20159. maw: {
  20160. height: math.unit(1.1, "feet"),
  20161. name: "Maw",
  20162. image: {
  20163. source: "./media/characters/artemis/maw.svg"
  20164. }
  20165. },
  20166. stomach: {
  20167. height: math.unit(0.95, "feet"),
  20168. name: "Stomach",
  20169. image: {
  20170. source: "./media/characters/artemis/stomach.svg"
  20171. }
  20172. },
  20173. dickCanine: {
  20174. height: math.unit(1, "feet"),
  20175. name: "Dick (Canine)",
  20176. image: {
  20177. source: "./media/characters/artemis/dick-canine.svg"
  20178. }
  20179. },
  20180. dickEquine: {
  20181. height: math.unit(0.85, "feet"),
  20182. name: "Dick (Equine)",
  20183. image: {
  20184. source: "./media/characters/artemis/dick-equine.svg"
  20185. }
  20186. },
  20187. dickExotic: {
  20188. height: math.unit(0.85, "feet"),
  20189. name: "Dick (Exotic)",
  20190. image: {
  20191. source: "./media/characters/artemis/dick-exotic.svg"
  20192. }
  20193. },
  20194. },
  20195. [
  20196. {
  20197. name: "Normal",
  20198. height: math.unit(7.5, "feet"),
  20199. default: true
  20200. },
  20201. {
  20202. name: "Enlarged",
  20203. height: math.unit(12, "feet")
  20204. },
  20205. ]
  20206. ))
  20207. characterMakers.push(() => makeCharacter(
  20208. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20209. {
  20210. front: {
  20211. height: math.unit(5 + 3 / 12, "feet"),
  20212. weight: math.unit(160, "lb"),
  20213. name: "Front",
  20214. image: {
  20215. source: "./media/characters/kira/front.svg",
  20216. extra: 906 / 786,
  20217. bottom: 0.01
  20218. }
  20219. },
  20220. back: {
  20221. height: math.unit(5 + 3 / 12, "feet"),
  20222. weight: math.unit(160, "lb"),
  20223. name: "Back",
  20224. image: {
  20225. source: "./media/characters/kira/back.svg",
  20226. extra: 882 / 757,
  20227. bottom: 0.005
  20228. }
  20229. },
  20230. frontDressed: {
  20231. height: math.unit(5 + 3 / 12, "feet"),
  20232. weight: math.unit(160, "lb"),
  20233. name: "Front (Dressed)",
  20234. image: {
  20235. source: "./media/characters/kira/front-dressed.svg",
  20236. extra: 906 / 786,
  20237. bottom: 0.01
  20238. }
  20239. },
  20240. beans: {
  20241. height: math.unit(0.92, "feet"),
  20242. name: "Beans",
  20243. image: {
  20244. source: "./media/characters/kira/beans.svg"
  20245. }
  20246. },
  20247. },
  20248. [
  20249. {
  20250. name: "Normal",
  20251. height: math.unit(5 + 3 / 12, "feet"),
  20252. default: true
  20253. },
  20254. ]
  20255. ))
  20256. characterMakers.push(() => makeCharacter(
  20257. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20258. {
  20259. front: {
  20260. height: math.unit(5 + 4 / 12, "feet"),
  20261. weight: math.unit(145, "lb"),
  20262. name: "Front",
  20263. image: {
  20264. source: "./media/characters/scramble/front.svg",
  20265. extra: 763 / 727,
  20266. bottom: 0.05
  20267. }
  20268. },
  20269. back: {
  20270. height: math.unit(5 + 4 / 12, "feet"),
  20271. weight: math.unit(145, "lb"),
  20272. name: "Back",
  20273. image: {
  20274. source: "./media/characters/scramble/back.svg",
  20275. extra: 826 / 737,
  20276. bottom: 0.002
  20277. }
  20278. },
  20279. },
  20280. [
  20281. {
  20282. name: "Normal",
  20283. height: math.unit(5 + 4 / 12, "feet"),
  20284. default: true
  20285. },
  20286. ]
  20287. ))
  20288. characterMakers.push(() => makeCharacter(
  20289. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20290. {
  20291. side: {
  20292. height: math.unit(6 + 2 / 12, "feet"),
  20293. weight: math.unit(190, "lb"),
  20294. name: "Side",
  20295. image: {
  20296. source: "./media/characters/biscuit/side.svg",
  20297. extra: 858 / 791,
  20298. bottom: 0.044
  20299. }
  20300. },
  20301. },
  20302. [
  20303. {
  20304. name: "Normal",
  20305. height: math.unit(6 + 2 / 12, "feet"),
  20306. default: true
  20307. },
  20308. ]
  20309. ))
  20310. characterMakers.push(() => makeCharacter(
  20311. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20312. {
  20313. front: {
  20314. height: math.unit(5 + 2 / 12, "feet"),
  20315. weight: math.unit(120, "lb"),
  20316. name: "Front",
  20317. image: {
  20318. source: "./media/characters/poffin/front.svg",
  20319. extra: 786 / 680,
  20320. bottom: 0.005
  20321. }
  20322. },
  20323. },
  20324. [
  20325. {
  20326. name: "Normal",
  20327. height: math.unit(5 + 2 / 12, "feet"),
  20328. default: true
  20329. },
  20330. ]
  20331. ))
  20332. characterMakers.push(() => makeCharacter(
  20333. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20334. {
  20335. front: {
  20336. height: math.unit(6 + 3 / 12, "feet"),
  20337. weight: math.unit(519, "lb"),
  20338. name: "Front",
  20339. image: {
  20340. source: "./media/characters/dhari/front.svg",
  20341. extra: 1048 / 946,
  20342. bottom: 0.015
  20343. }
  20344. },
  20345. back: {
  20346. height: math.unit(6 + 3 / 12, "feet"),
  20347. weight: math.unit(519, "lb"),
  20348. name: "Back",
  20349. image: {
  20350. source: "./media/characters/dhari/back.svg",
  20351. extra: 1048 / 931,
  20352. bottom: 0.005
  20353. }
  20354. },
  20355. frontDressed: {
  20356. height: math.unit(6 + 3 / 12, "feet"),
  20357. weight: math.unit(519, "lb"),
  20358. name: "Front (Dressed)",
  20359. image: {
  20360. source: "./media/characters/dhari/front-dressed.svg",
  20361. extra: 1713 / 1546,
  20362. bottom: 0.02
  20363. }
  20364. },
  20365. backDressed: {
  20366. height: math.unit(6 + 3 / 12, "feet"),
  20367. weight: math.unit(519, "lb"),
  20368. name: "Back (Dressed)",
  20369. image: {
  20370. source: "./media/characters/dhari/back-dressed.svg",
  20371. extra: 1699 / 1537,
  20372. bottom: 0.01
  20373. }
  20374. },
  20375. maw: {
  20376. height: math.unit(0.95, "feet"),
  20377. name: "Maw",
  20378. image: {
  20379. source: "./media/characters/dhari/maw.svg"
  20380. }
  20381. },
  20382. wereFront: {
  20383. height: math.unit(12 + 8 / 12, "feet"),
  20384. weight: math.unit(4000, "lb"),
  20385. name: "Front (Were)",
  20386. image: {
  20387. source: "./media/characters/dhari/were-front.svg",
  20388. extra: 1065 / 969,
  20389. bottom: 0.015
  20390. }
  20391. },
  20392. wereBack: {
  20393. height: math.unit(12 + 8 / 12, "feet"),
  20394. weight: math.unit(4000, "lb"),
  20395. name: "Back (Were)",
  20396. image: {
  20397. source: "./media/characters/dhari/were-back.svg",
  20398. extra: 1065 / 969,
  20399. bottom: 0.012
  20400. }
  20401. },
  20402. wereMaw: {
  20403. height: math.unit(0.625, "meters"),
  20404. name: "Maw (Were)",
  20405. image: {
  20406. source: "./media/characters/dhari/were-maw.svg"
  20407. }
  20408. },
  20409. },
  20410. [
  20411. {
  20412. name: "Normal",
  20413. height: math.unit(6 + 3 / 12, "feet"),
  20414. default: true
  20415. },
  20416. ]
  20417. ))
  20418. characterMakers.push(() => makeCharacter(
  20419. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20420. {
  20421. anthro: {
  20422. height: math.unit(5 + 7 / 12, "feet"),
  20423. weight: math.unit(175, "lb"),
  20424. name: "Anthro",
  20425. image: {
  20426. source: "./media/characters/rena-dyne/anthro.svg",
  20427. extra: 1849 / 1785,
  20428. bottom: 0.005
  20429. }
  20430. },
  20431. taur: {
  20432. height: math.unit(15 + 6 / 12, "feet"),
  20433. weight: math.unit(8000, "lb"),
  20434. name: "Taur",
  20435. image: {
  20436. source: "./media/characters/rena-dyne/taur.svg",
  20437. extra: 2315 / 2234,
  20438. bottom: 0.033
  20439. }
  20440. },
  20441. },
  20442. [
  20443. {
  20444. name: "Normal",
  20445. height: math.unit(5 + 7 / 12, "feet"),
  20446. default: true
  20447. },
  20448. ]
  20449. ))
  20450. characterMakers.push(() => makeCharacter(
  20451. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20452. {
  20453. front: {
  20454. height: math.unit(8, "feet"),
  20455. weight: math.unit(600, "lb"),
  20456. name: "Front",
  20457. image: {
  20458. source: "./media/characters/weremeep/front.svg",
  20459. extra: 967 / 862,
  20460. bottom: 0.01
  20461. }
  20462. },
  20463. },
  20464. [
  20465. {
  20466. name: "Normal",
  20467. height: math.unit(8, "feet"),
  20468. default: true
  20469. },
  20470. {
  20471. name: "Lorg",
  20472. height: math.unit(12, "feet")
  20473. },
  20474. {
  20475. name: "Oh Lawd She Comin'",
  20476. height: math.unit(20, "feet")
  20477. },
  20478. ]
  20479. ))
  20480. characterMakers.push(() => makeCharacter(
  20481. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20482. {
  20483. front: {
  20484. height: math.unit(4, "feet"),
  20485. weight: math.unit(90, "lb"),
  20486. name: "Front",
  20487. image: {
  20488. source: "./media/characters/reza/front.svg",
  20489. extra: 1183 / 1111,
  20490. bottom: 0.017
  20491. }
  20492. },
  20493. back: {
  20494. height: math.unit(4, "feet"),
  20495. weight: math.unit(90, "lb"),
  20496. name: "Back",
  20497. image: {
  20498. source: "./media/characters/reza/back.svg",
  20499. extra: 1183 / 1111,
  20500. bottom: 0.01
  20501. }
  20502. },
  20503. drake: {
  20504. height: math.unit(30, "feet"),
  20505. weight: math.unit(246960, "lb"),
  20506. name: "Drake",
  20507. image: {
  20508. source: "./media/characters/reza/drake.svg",
  20509. extra: 2350 / 2024,
  20510. bottom: 60.7 / 2403
  20511. }
  20512. },
  20513. },
  20514. [
  20515. {
  20516. name: "Normal",
  20517. height: math.unit(4, "feet"),
  20518. default: true
  20519. },
  20520. ]
  20521. ))
  20522. characterMakers.push(() => makeCharacter(
  20523. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20524. {
  20525. side: {
  20526. height: math.unit(15, "feet"),
  20527. weight: math.unit(14, "tons"),
  20528. name: "Side",
  20529. image: {
  20530. source: "./media/characters/athea/side.svg",
  20531. extra: 960 / 540,
  20532. bottom: 0.003
  20533. }
  20534. },
  20535. sitting: {
  20536. height: math.unit(6 * 2.85, "feet"),
  20537. weight: math.unit(14, "tons"),
  20538. name: "Sitting",
  20539. image: {
  20540. source: "./media/characters/athea/sitting.svg",
  20541. extra: 621 / 581,
  20542. bottom: 0.075
  20543. }
  20544. },
  20545. maw: {
  20546. height: math.unit(7.59498031496063, "feet"),
  20547. name: "Maw",
  20548. image: {
  20549. source: "./media/characters/athea/maw.svg"
  20550. }
  20551. },
  20552. },
  20553. [
  20554. {
  20555. name: "Lap Cat",
  20556. height: math.unit(2.5, "feet")
  20557. },
  20558. {
  20559. name: "Minimacro",
  20560. height: math.unit(15, "feet"),
  20561. default: true
  20562. },
  20563. {
  20564. name: "Macro",
  20565. height: math.unit(120, "feet")
  20566. },
  20567. {
  20568. name: "Macro+",
  20569. height: math.unit(640, "feet")
  20570. },
  20571. {
  20572. name: "Colossus",
  20573. height: math.unit(2.2, "miles")
  20574. },
  20575. ]
  20576. ))
  20577. characterMakers.push(() => makeCharacter(
  20578. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20579. {
  20580. front: {
  20581. height: math.unit(8 + 8 / 12, "feet"),
  20582. weight: math.unit(130, "kg"),
  20583. name: "Front",
  20584. image: {
  20585. source: "./media/characters/seroko/front.svg",
  20586. extra: 1385 / 1280,
  20587. bottom: 0.025
  20588. }
  20589. },
  20590. back: {
  20591. height: math.unit(8 + 8 / 12, "feet"),
  20592. weight: math.unit(130, "kg"),
  20593. name: "Back",
  20594. image: {
  20595. source: "./media/characters/seroko/back.svg",
  20596. extra: 1369 / 1238,
  20597. bottom: 0.018
  20598. }
  20599. },
  20600. frontDressed: {
  20601. height: math.unit(8 + 8 / 12, "feet"),
  20602. weight: math.unit(130, "kg"),
  20603. name: "Front (Dressed)",
  20604. image: {
  20605. source: "./media/characters/seroko/front-dressed.svg",
  20606. extra: 1366 / 1275,
  20607. bottom: 0.03
  20608. }
  20609. },
  20610. },
  20611. [
  20612. {
  20613. name: "Normal",
  20614. height: math.unit(8 + 8 / 12, "feet"),
  20615. default: true
  20616. },
  20617. ]
  20618. ))
  20619. characterMakers.push(() => makeCharacter(
  20620. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20621. {
  20622. front: {
  20623. height: math.unit(5.5, "feet"),
  20624. weight: math.unit(160, "lb"),
  20625. name: "Front",
  20626. image: {
  20627. source: "./media/characters/quatzi/front.svg",
  20628. extra: 2346 / 2242,
  20629. bottom: 0.015
  20630. }
  20631. },
  20632. },
  20633. [
  20634. {
  20635. name: "Normal",
  20636. height: math.unit(5.5, "feet"),
  20637. default: true
  20638. },
  20639. {
  20640. name: "Big",
  20641. height: math.unit(7.7, "feet")
  20642. },
  20643. ]
  20644. ))
  20645. characterMakers.push(() => makeCharacter(
  20646. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20647. {
  20648. front: {
  20649. height: math.unit(5 + 11 / 12, "feet"),
  20650. weight: math.unit(180, "lb"),
  20651. name: "Front",
  20652. image: {
  20653. source: "./media/characters/sen/front.svg",
  20654. extra: 1321 / 1254,
  20655. bottom: 0.015
  20656. }
  20657. },
  20658. side: {
  20659. height: math.unit(5 + 11 / 12, "feet"),
  20660. weight: math.unit(180, "lb"),
  20661. name: "Side",
  20662. image: {
  20663. source: "./media/characters/sen/side.svg",
  20664. extra: 1321 / 1254,
  20665. bottom: 0.007
  20666. }
  20667. },
  20668. back: {
  20669. height: math.unit(5 + 11 / 12, "feet"),
  20670. weight: math.unit(180, "lb"),
  20671. name: "Back",
  20672. image: {
  20673. source: "./media/characters/sen/back.svg",
  20674. extra: 1321 / 1254
  20675. }
  20676. },
  20677. },
  20678. [
  20679. {
  20680. name: "Normal",
  20681. height: math.unit(5 + 11 / 12, "feet"),
  20682. default: true
  20683. },
  20684. ]
  20685. ))
  20686. characterMakers.push(() => makeCharacter(
  20687. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20688. {
  20689. front: {
  20690. height: math.unit(166.6, "cm"),
  20691. weight: math.unit(66.6, "kg"),
  20692. name: "Front",
  20693. image: {
  20694. source: "./media/characters/fruity/front.svg",
  20695. extra: 1510 / 1386,
  20696. bottom: 0.04
  20697. }
  20698. },
  20699. back: {
  20700. height: math.unit(166.6, "cm"),
  20701. weight: math.unit(66.6, "lb"),
  20702. name: "Back",
  20703. image: {
  20704. source: "./media/characters/fruity/back.svg",
  20705. extra: 1563 / 1435,
  20706. bottom: 0.005
  20707. }
  20708. },
  20709. },
  20710. [
  20711. {
  20712. name: "Normal",
  20713. height: math.unit(166.6, "cm"),
  20714. default: true
  20715. },
  20716. {
  20717. name: "Demonic",
  20718. height: math.unit(166.6, "feet")
  20719. },
  20720. ]
  20721. ))
  20722. characterMakers.push(() => makeCharacter(
  20723. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20724. {
  20725. side: {
  20726. height: math.unit(10, "feet"),
  20727. weight: math.unit(500, "lb"),
  20728. name: "Side",
  20729. image: {
  20730. source: "./media/characters/zost/side.svg",
  20731. extra: 966 / 880,
  20732. bottom: 0.075
  20733. }
  20734. },
  20735. mawFront: {
  20736. height: math.unit(1.08, "meters"),
  20737. name: "Maw (Front)",
  20738. image: {
  20739. source: "./media/characters/zost/maw-front.svg"
  20740. }
  20741. },
  20742. mawSide: {
  20743. height: math.unit(2.66, "feet"),
  20744. name: "Maw (Side)",
  20745. image: {
  20746. source: "./media/characters/zost/maw-side.svg"
  20747. }
  20748. },
  20749. },
  20750. [
  20751. {
  20752. name: "Normal",
  20753. height: math.unit(10, "feet"),
  20754. default: true
  20755. },
  20756. ]
  20757. ))
  20758. characterMakers.push(() => makeCharacter(
  20759. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20760. {
  20761. front: {
  20762. height: math.unit(5 + 4 / 12, "feet"),
  20763. weight: math.unit(120, "lb"),
  20764. name: "Front",
  20765. image: {
  20766. source: "./media/characters/luci/front.svg",
  20767. extra: 1985 / 1884,
  20768. bottom: 0.04
  20769. }
  20770. },
  20771. back: {
  20772. height: math.unit(5 + 4 / 12, "feet"),
  20773. weight: math.unit(120, "lb"),
  20774. name: "Back",
  20775. image: {
  20776. source: "./media/characters/luci/back.svg",
  20777. extra: 1892 / 1791,
  20778. bottom: 0.002
  20779. }
  20780. },
  20781. },
  20782. [
  20783. {
  20784. name: "Normal",
  20785. height: math.unit(5 + 4 / 12, "feet"),
  20786. default: true
  20787. },
  20788. ]
  20789. ))
  20790. characterMakers.push(() => makeCharacter(
  20791. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20792. {
  20793. front: {
  20794. height: math.unit(1500, "feet"),
  20795. weight: math.unit(3.8e6, "tons"),
  20796. name: "Front",
  20797. image: {
  20798. source: "./media/characters/2th/front.svg",
  20799. extra: 3489 / 3350,
  20800. bottom: 0.1
  20801. }
  20802. },
  20803. foot: {
  20804. height: math.unit(461, "feet"),
  20805. name: "Foot",
  20806. image: {
  20807. source: "./media/characters/2th/foot.svg"
  20808. }
  20809. },
  20810. },
  20811. [
  20812. {
  20813. name: "\"Micro\"",
  20814. height: math.unit(15 + 7 / 12, "feet")
  20815. },
  20816. {
  20817. name: "Normal",
  20818. height: math.unit(1500, "feet"),
  20819. default: true
  20820. },
  20821. {
  20822. name: "Macro",
  20823. height: math.unit(5000, "feet")
  20824. },
  20825. {
  20826. name: "Megamacro",
  20827. height: math.unit(15, "miles")
  20828. },
  20829. {
  20830. name: "Gigamacro",
  20831. height: math.unit(4000, "miles")
  20832. },
  20833. {
  20834. name: "Galactic",
  20835. height: math.unit(50, "AU")
  20836. },
  20837. ]
  20838. ))
  20839. characterMakers.push(() => makeCharacter(
  20840. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20841. {
  20842. front: {
  20843. height: math.unit(5 + 6 / 12, "feet"),
  20844. weight: math.unit(220, "lb"),
  20845. name: "Front",
  20846. image: {
  20847. source: "./media/characters/amethyst/front.svg",
  20848. extra: 2078 / 2040,
  20849. bottom: 0.045
  20850. }
  20851. },
  20852. back: {
  20853. height: math.unit(5 + 6 / 12, "feet"),
  20854. weight: math.unit(220, "lb"),
  20855. name: "Back",
  20856. image: {
  20857. source: "./media/characters/amethyst/back.svg",
  20858. extra: 2021 / 1989,
  20859. bottom: 0.02
  20860. }
  20861. },
  20862. },
  20863. [
  20864. {
  20865. name: "Normal",
  20866. height: math.unit(5 + 6 / 12, "feet"),
  20867. default: true
  20868. },
  20869. ]
  20870. ))
  20871. characterMakers.push(() => makeCharacter(
  20872. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20873. {
  20874. front: {
  20875. height: math.unit(4 + 11 / 12, "feet"),
  20876. weight: math.unit(120, "lb"),
  20877. name: "Front",
  20878. image: {
  20879. source: "./media/characters/yumi-akiyama/front.svg",
  20880. extra: 1327 / 1235,
  20881. bottom: 0.02
  20882. }
  20883. },
  20884. back: {
  20885. height: math.unit(4 + 11 / 12, "feet"),
  20886. weight: math.unit(120, "lb"),
  20887. name: "Back",
  20888. image: {
  20889. source: "./media/characters/yumi-akiyama/back.svg",
  20890. extra: 1287 / 1245,
  20891. bottom: 0.002
  20892. }
  20893. },
  20894. },
  20895. [
  20896. {
  20897. name: "Galactic",
  20898. height: math.unit(50, "galaxies"),
  20899. default: true
  20900. },
  20901. {
  20902. name: "Universal",
  20903. height: math.unit(100, "universes")
  20904. },
  20905. ]
  20906. ))
  20907. characterMakers.push(() => makeCharacter(
  20908. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20909. {
  20910. front: {
  20911. height: math.unit(8, "feet"),
  20912. weight: math.unit(500, "lb"),
  20913. name: "Front",
  20914. image: {
  20915. source: "./media/characters/rifter-yrmori/front.svg",
  20916. extra: 1180 / 1125,
  20917. bottom: 0.02
  20918. }
  20919. },
  20920. back: {
  20921. height: math.unit(8, "feet"),
  20922. weight: math.unit(500, "lb"),
  20923. name: "Back",
  20924. image: {
  20925. source: "./media/characters/rifter-yrmori/back.svg",
  20926. extra: 1190 / 1145,
  20927. bottom: 0.001
  20928. }
  20929. },
  20930. wings: {
  20931. height: math.unit(7.75, "feet"),
  20932. weight: math.unit(500, "lb"),
  20933. name: "Wings",
  20934. image: {
  20935. source: "./media/characters/rifter-yrmori/wings.svg",
  20936. extra: 1357 / 1285
  20937. }
  20938. },
  20939. maw: {
  20940. height: math.unit(0.8, "feet"),
  20941. name: "Maw",
  20942. image: {
  20943. source: "./media/characters/rifter-yrmori/maw.svg"
  20944. }
  20945. },
  20946. mawfront: {
  20947. height: math.unit(1.45, "feet"),
  20948. name: "Maw (Front)",
  20949. image: {
  20950. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20951. }
  20952. },
  20953. },
  20954. [
  20955. {
  20956. name: "Normal",
  20957. height: math.unit(8, "feet"),
  20958. default: true
  20959. },
  20960. {
  20961. name: "Macro",
  20962. height: math.unit(42, "meters")
  20963. },
  20964. ]
  20965. ))
  20966. characterMakers.push(() => makeCharacter(
  20967. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20968. {
  20969. were: {
  20970. height: math.unit(25 + 6 / 12, "feet"),
  20971. weight: math.unit(10000, "lb"),
  20972. name: "Were",
  20973. image: {
  20974. source: "./media/characters/tahajin/were.svg",
  20975. extra: 801 / 770,
  20976. bottom: 0.042
  20977. }
  20978. },
  20979. aquatic: {
  20980. height: math.unit(6 + 4 / 12, "feet"),
  20981. weight: math.unit(160, "lb"),
  20982. name: "Aquatic",
  20983. image: {
  20984. source: "./media/characters/tahajin/aquatic.svg",
  20985. extra: 572 / 542,
  20986. bottom: 0.04
  20987. }
  20988. },
  20989. chow: {
  20990. height: math.unit(8 + 11 / 12, "feet"),
  20991. weight: math.unit(450, "lb"),
  20992. name: "Chow",
  20993. image: {
  20994. source: "./media/characters/tahajin/chow.svg",
  20995. extra: 660 / 640,
  20996. bottom: 0.015
  20997. }
  20998. },
  20999. demiNaga: {
  21000. height: math.unit(6 + 8 / 12, "feet"),
  21001. weight: math.unit(300, "lb"),
  21002. name: "Demi Naga",
  21003. image: {
  21004. source: "./media/characters/tahajin/demi-naga.svg",
  21005. extra: 643 / 615,
  21006. bottom: 0.1
  21007. }
  21008. },
  21009. data: {
  21010. height: math.unit(5, "inches"),
  21011. weight: math.unit(0.1, "lb"),
  21012. name: "Data",
  21013. image: {
  21014. source: "./media/characters/tahajin/data.svg"
  21015. }
  21016. },
  21017. fluu: {
  21018. height: math.unit(5 + 7 / 12, "feet"),
  21019. weight: math.unit(140, "lb"),
  21020. name: "Fluu",
  21021. image: {
  21022. source: "./media/characters/tahajin/fluu.svg",
  21023. extra: 628 / 592,
  21024. bottom: 0.02
  21025. }
  21026. },
  21027. starWarrior: {
  21028. height: math.unit(4 + 5 / 12, "feet"),
  21029. weight: math.unit(50, "lb"),
  21030. name: "Star Warrior",
  21031. image: {
  21032. source: "./media/characters/tahajin/star-warrior.svg"
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Normal",
  21039. height: math.unit(25 + 6 / 12, "feet"),
  21040. default: true
  21041. },
  21042. ]
  21043. ))
  21044. characterMakers.push(() => makeCharacter(
  21045. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21046. {
  21047. front: {
  21048. height: math.unit(8, "feet"),
  21049. weight: math.unit(350, "lb"),
  21050. name: "Front",
  21051. image: {
  21052. source: "./media/characters/gabira/front.svg",
  21053. extra: 608 / 580,
  21054. bottom: 0.03
  21055. }
  21056. },
  21057. back: {
  21058. height: math.unit(8, "feet"),
  21059. weight: math.unit(350, "lb"),
  21060. name: "Back",
  21061. image: {
  21062. source: "./media/characters/gabira/back.svg",
  21063. extra: 608 / 580,
  21064. bottom: 0.03
  21065. }
  21066. },
  21067. },
  21068. [
  21069. {
  21070. name: "Normal",
  21071. height: math.unit(8, "feet"),
  21072. default: true
  21073. },
  21074. ]
  21075. ))
  21076. characterMakers.push(() => makeCharacter(
  21077. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21078. {
  21079. front: {
  21080. height: math.unit(5 + 3 / 12, "feet"),
  21081. weight: math.unit(137, "lb"),
  21082. name: "Front",
  21083. image: {
  21084. source: "./media/characters/sasha-katraine/front.svg",
  21085. bottom: 0.045
  21086. }
  21087. },
  21088. },
  21089. [
  21090. {
  21091. name: "Micro",
  21092. height: math.unit(5, "inches")
  21093. },
  21094. {
  21095. name: "Normal",
  21096. height: math.unit(5 + 3 / 12, "feet"),
  21097. default: true
  21098. },
  21099. ]
  21100. ))
  21101. characterMakers.push(() => makeCharacter(
  21102. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21103. {
  21104. side: {
  21105. height: math.unit(4, "inches"),
  21106. weight: math.unit(200, "grams"),
  21107. name: "Side",
  21108. image: {
  21109. source: "./media/characters/der/side.svg",
  21110. extra: 719 / 400,
  21111. bottom: 30.6 / 749.9187
  21112. }
  21113. },
  21114. },
  21115. [
  21116. {
  21117. name: "Micro",
  21118. height: math.unit(4, "inches"),
  21119. default: true
  21120. },
  21121. ]
  21122. ))
  21123. characterMakers.push(() => makeCharacter(
  21124. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21125. {
  21126. side: {
  21127. height: math.unit(30, "meters"),
  21128. weight: math.unit(700, "tonnes"),
  21129. name: "Side",
  21130. image: {
  21131. source: "./media/characters/fixerdragon/side.svg",
  21132. extra: (1293.0514 - 116.03) / 1106.86,
  21133. bottom: 116.03 / 1293.0514
  21134. }
  21135. },
  21136. },
  21137. [
  21138. {
  21139. name: "Planck",
  21140. height: math.unit(1.6e-35, "meters")
  21141. },
  21142. {
  21143. name: "Micro",
  21144. height: math.unit(0.4, "meters")
  21145. },
  21146. {
  21147. name: "Normal",
  21148. height: math.unit(30, "meters"),
  21149. default: true
  21150. },
  21151. {
  21152. name: "Megamacro",
  21153. height: math.unit(1.2, "megameters")
  21154. },
  21155. {
  21156. name: "Teramacro",
  21157. height: math.unit(130, "terameters")
  21158. },
  21159. {
  21160. name: "Yottamacro",
  21161. height: math.unit(6200, "yottameters")
  21162. },
  21163. ]
  21164. ));
  21165. characterMakers.push(() => makeCharacter(
  21166. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21167. {
  21168. front: {
  21169. height: math.unit(8, "feet"),
  21170. weight: math.unit(250, "lb"),
  21171. name: "Front",
  21172. image: {
  21173. source: "./media/characters/kite/front.svg",
  21174. extra: 2796 / 2659,
  21175. bottom: 0.002
  21176. }
  21177. },
  21178. },
  21179. [
  21180. {
  21181. name: "Normal",
  21182. height: math.unit(8, "feet"),
  21183. default: true
  21184. },
  21185. {
  21186. name: "Macro",
  21187. height: math.unit(360, "feet")
  21188. },
  21189. {
  21190. name: "Megamacro",
  21191. height: math.unit(1500, "feet")
  21192. },
  21193. ]
  21194. ))
  21195. characterMakers.push(() => makeCharacter(
  21196. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21197. {
  21198. front: {
  21199. height: math.unit(5 + 10 / 12, "feet"),
  21200. weight: math.unit(150, "lb"),
  21201. name: "Front",
  21202. image: {
  21203. source: "./media/characters/poojawa-vynar/front.svg",
  21204. extra: (1506.1547 - 55) / 1356.6,
  21205. bottom: 55 / 1506.1547
  21206. }
  21207. },
  21208. frontTailless: {
  21209. height: math.unit(5 + 10 / 12, "feet"),
  21210. weight: math.unit(150, "lb"),
  21211. name: "Front (Tailless)",
  21212. image: {
  21213. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21214. extra: (1506.1547 - 55) / 1356.6,
  21215. bottom: 55 / 1506.1547
  21216. }
  21217. },
  21218. },
  21219. [
  21220. {
  21221. name: "Normal",
  21222. height: math.unit(5 + 10 / 12, "feet"),
  21223. default: true
  21224. },
  21225. ]
  21226. ))
  21227. characterMakers.push(() => makeCharacter(
  21228. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21229. {
  21230. front: {
  21231. height: math.unit(293, "meters"),
  21232. weight: math.unit(70400, "tons"),
  21233. name: "Front",
  21234. image: {
  21235. source: "./media/characters/violette/front.svg",
  21236. extra: 1227 / 1180,
  21237. bottom: 0.005
  21238. }
  21239. },
  21240. back: {
  21241. height: math.unit(293, "meters"),
  21242. weight: math.unit(70400, "tons"),
  21243. name: "Back",
  21244. image: {
  21245. source: "./media/characters/violette/back.svg",
  21246. extra: 1227 / 1180,
  21247. bottom: 0.005
  21248. }
  21249. },
  21250. },
  21251. [
  21252. {
  21253. name: "Macro",
  21254. height: math.unit(293, "meters"),
  21255. default: true
  21256. },
  21257. ]
  21258. ))
  21259. characterMakers.push(() => makeCharacter(
  21260. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21261. {
  21262. front: {
  21263. height: math.unit(1050, "feet"),
  21264. weight: math.unit(200000, "tons"),
  21265. name: "Front",
  21266. image: {
  21267. source: "./media/characters/alessandra/front.svg",
  21268. extra: 960 / 912,
  21269. bottom: 0.06
  21270. }
  21271. },
  21272. },
  21273. [
  21274. {
  21275. name: "Macro",
  21276. height: math.unit(1050, "feet")
  21277. },
  21278. {
  21279. name: "Macro+",
  21280. height: math.unit(900, "meters"),
  21281. default: true
  21282. },
  21283. ]
  21284. ))
  21285. characterMakers.push(() => makeCharacter(
  21286. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21287. {
  21288. front: {
  21289. height: math.unit(5, "feet"),
  21290. weight: math.unit(187, "lb"),
  21291. name: "Front",
  21292. image: {
  21293. source: "./media/characters/person/front.svg",
  21294. extra: 3087 / 2945,
  21295. bottom: 91 / 3181
  21296. }
  21297. },
  21298. },
  21299. [
  21300. {
  21301. name: "Micro",
  21302. height: math.unit(3, "inches")
  21303. },
  21304. {
  21305. name: "Normal",
  21306. height: math.unit(5, "feet"),
  21307. default: true
  21308. },
  21309. {
  21310. name: "Macro",
  21311. height: math.unit(90, "feet")
  21312. },
  21313. {
  21314. name: "Max Size",
  21315. height: math.unit(280, "feet")
  21316. },
  21317. ]
  21318. ))
  21319. characterMakers.push(() => makeCharacter(
  21320. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21321. {
  21322. front: {
  21323. height: math.unit(4.5, "meters"),
  21324. weight: math.unit(3200, "lb"),
  21325. name: "Front",
  21326. image: {
  21327. source: "./media/characters/ty/front.svg",
  21328. extra: 1038 / 960,
  21329. bottom: 31.156 / 1068
  21330. }
  21331. },
  21332. back: {
  21333. height: math.unit(4.5, "meters"),
  21334. weight: math.unit(3200, "lb"),
  21335. name: "Back",
  21336. image: {
  21337. source: "./media/characters/ty/back.svg",
  21338. extra: 1044 / 966,
  21339. bottom: 7.48 / 1049
  21340. }
  21341. },
  21342. },
  21343. [
  21344. {
  21345. name: "Normal",
  21346. height: math.unit(4.5, "meters"),
  21347. default: true
  21348. },
  21349. ]
  21350. ))
  21351. characterMakers.push(() => makeCharacter(
  21352. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21353. {
  21354. front: {
  21355. height: math.unit(5 + 4 / 12, "feet"),
  21356. weight: math.unit(115, "lb"),
  21357. name: "Front",
  21358. image: {
  21359. source: "./media/characters/rocky/front.svg",
  21360. extra: 1012 / 975,
  21361. bottom: 54 / 1066
  21362. }
  21363. },
  21364. },
  21365. [
  21366. {
  21367. name: "Normal",
  21368. height: math.unit(5 + 4 / 12, "feet"),
  21369. default: true
  21370. },
  21371. ]
  21372. ))
  21373. characterMakers.push(() => makeCharacter(
  21374. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21375. {
  21376. upright: {
  21377. height: math.unit(6, "meters"),
  21378. weight: math.unit(4000, "kg"),
  21379. name: "Upright",
  21380. image: {
  21381. source: "./media/characters/ruin/upright.svg",
  21382. extra: 668 / 661,
  21383. bottom: 42 / 799.8396
  21384. }
  21385. },
  21386. },
  21387. [
  21388. {
  21389. name: "Normal",
  21390. height: math.unit(6, "meters"),
  21391. default: true
  21392. },
  21393. ]
  21394. ))
  21395. characterMakers.push(() => makeCharacter(
  21396. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21397. {
  21398. front: {
  21399. height: math.unit(5, "feet"),
  21400. weight: math.unit(106, "lb"),
  21401. name: "Front",
  21402. image: {
  21403. source: "./media/characters/robin/front.svg",
  21404. extra: 862 / 799,
  21405. bottom: 42.4 / 914.8856
  21406. }
  21407. },
  21408. },
  21409. [
  21410. {
  21411. name: "Normal",
  21412. height: math.unit(5, "feet"),
  21413. default: true
  21414. },
  21415. ]
  21416. ))
  21417. characterMakers.push(() => makeCharacter(
  21418. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21419. {
  21420. side: {
  21421. height: math.unit(3, "feet"),
  21422. weight: math.unit(225, "lb"),
  21423. name: "Side",
  21424. image: {
  21425. source: "./media/characters/saian/side.svg",
  21426. extra: 566 / 356,
  21427. bottom: 79.7 / 643
  21428. }
  21429. },
  21430. maw: {
  21431. height: math.unit(2.85, "feet"),
  21432. name: "Maw",
  21433. image: {
  21434. source: "./media/characters/saian/maw.svg"
  21435. }
  21436. },
  21437. },
  21438. [
  21439. {
  21440. name: "Normal",
  21441. height: math.unit(3, "feet"),
  21442. default: true
  21443. },
  21444. ]
  21445. ))
  21446. characterMakers.push(() => makeCharacter(
  21447. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21448. {
  21449. side: {
  21450. height: math.unit(8, "feet"),
  21451. weight: math.unit(300, "lb"),
  21452. name: "Side",
  21453. image: {
  21454. source: "./media/characters/equus-silvermane/side.svg",
  21455. extra: 2176 / 2050,
  21456. bottom: 65.7 / 2245
  21457. }
  21458. },
  21459. front: {
  21460. height: math.unit(8, "feet"),
  21461. weight: math.unit(300, "lb"),
  21462. name: "Front",
  21463. image: {
  21464. source: "./media/characters/equus-silvermane/front.svg",
  21465. extra: 4633 / 4400,
  21466. bottom: 71.3 / 4706.915
  21467. }
  21468. },
  21469. sideStepping: {
  21470. height: math.unit(8, "feet"),
  21471. weight: math.unit(300, "lb"),
  21472. name: "Side (Stepping)",
  21473. image: {
  21474. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21475. extra: 1968 / 1860,
  21476. bottom: 16.4 / 1989
  21477. }
  21478. },
  21479. },
  21480. [
  21481. {
  21482. name: "Normal",
  21483. height: math.unit(8, "feet")
  21484. },
  21485. {
  21486. name: "Minimacro",
  21487. height: math.unit(75, "feet"),
  21488. default: true
  21489. },
  21490. {
  21491. name: "Macro",
  21492. height: math.unit(150, "feet")
  21493. },
  21494. {
  21495. name: "Macro+",
  21496. height: math.unit(1000, "feet")
  21497. },
  21498. {
  21499. name: "Megamacro",
  21500. height: math.unit(1, "mile")
  21501. },
  21502. ]
  21503. ))
  21504. characterMakers.push(() => makeCharacter(
  21505. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21506. {
  21507. side: {
  21508. height: math.unit(20, "feet"),
  21509. weight: math.unit(30000, "kg"),
  21510. name: "Side",
  21511. image: {
  21512. source: "./media/characters/windar/side.svg",
  21513. extra: 1491 / 1248,
  21514. bottom: 82.56 / 1568
  21515. }
  21516. },
  21517. },
  21518. [
  21519. {
  21520. name: "Normal",
  21521. height: math.unit(20, "feet"),
  21522. default: true
  21523. },
  21524. ]
  21525. ))
  21526. characterMakers.push(() => makeCharacter(
  21527. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21528. {
  21529. side: {
  21530. height: math.unit(15.66, "feet"),
  21531. weight: math.unit(150, "lb"),
  21532. name: "Side",
  21533. image: {
  21534. source: "./media/characters/melody/side.svg",
  21535. extra: 1097 / 944,
  21536. bottom: 11.8 / 1109
  21537. }
  21538. },
  21539. sideOutfit: {
  21540. height: math.unit(15.66, "feet"),
  21541. weight: math.unit(150, "lb"),
  21542. name: "Side (Outfit)",
  21543. image: {
  21544. source: "./media/characters/melody/side-outfit.svg",
  21545. extra: 1097 / 944,
  21546. bottom: 11.8 / 1109
  21547. }
  21548. },
  21549. },
  21550. [
  21551. {
  21552. name: "Normal",
  21553. height: math.unit(15.66, "feet"),
  21554. default: true
  21555. },
  21556. ]
  21557. ))
  21558. characterMakers.push(() => makeCharacter(
  21559. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21560. {
  21561. front: {
  21562. height: math.unit(8, "feet"),
  21563. weight: math.unit(325, "lb"),
  21564. name: "Front",
  21565. image: {
  21566. source: "./media/characters/windera/front.svg",
  21567. extra: 3180 / 2845,
  21568. bottom: 178 / 3365
  21569. }
  21570. },
  21571. },
  21572. [
  21573. {
  21574. name: "Normal",
  21575. height: math.unit(8, "feet"),
  21576. default: true
  21577. },
  21578. ]
  21579. ))
  21580. characterMakers.push(() => makeCharacter(
  21581. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21582. {
  21583. front: {
  21584. height: math.unit(28.75, "feet"),
  21585. weight: math.unit(2000, "kg"),
  21586. name: "Front",
  21587. image: {
  21588. source: "./media/characters/sonear/front.svg",
  21589. extra: 1041.1 / 964.9,
  21590. bottom: 53.7 / 1096.6
  21591. }
  21592. },
  21593. },
  21594. [
  21595. {
  21596. name: "Normal",
  21597. height: math.unit(28.75, "feet"),
  21598. default: true
  21599. },
  21600. ]
  21601. ))
  21602. characterMakers.push(() => makeCharacter(
  21603. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21604. {
  21605. side: {
  21606. height: math.unit(25.5, "feet"),
  21607. weight: math.unit(23000, "kg"),
  21608. name: "Side",
  21609. image: {
  21610. source: "./media/characters/kanara/side.svg"
  21611. }
  21612. },
  21613. },
  21614. [
  21615. {
  21616. name: "Normal",
  21617. height: math.unit(25.5, "feet"),
  21618. default: true
  21619. },
  21620. ]
  21621. ))
  21622. characterMakers.push(() => makeCharacter(
  21623. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21624. {
  21625. side: {
  21626. height: math.unit(10, "feet"),
  21627. weight: math.unit(1000, "kg"),
  21628. name: "Side",
  21629. image: {
  21630. source: "./media/characters/ereus/side.svg",
  21631. extra: 1157 / 959,
  21632. bottom: 153 / 1312.5
  21633. }
  21634. },
  21635. },
  21636. [
  21637. {
  21638. name: "Normal",
  21639. height: math.unit(10, "feet"),
  21640. default: true
  21641. },
  21642. ]
  21643. ))
  21644. characterMakers.push(() => makeCharacter(
  21645. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21646. {
  21647. side: {
  21648. height: math.unit(4.5, "feet"),
  21649. weight: math.unit(500, "lb"),
  21650. name: "Side",
  21651. image: {
  21652. source: "./media/characters/e-ter/side.svg",
  21653. extra: 1550 / 1248,
  21654. bottom: 146 / 1694
  21655. }
  21656. },
  21657. },
  21658. [
  21659. {
  21660. name: "Normal",
  21661. height: math.unit(4.5, "feet"),
  21662. default: true
  21663. },
  21664. ]
  21665. ))
  21666. characterMakers.push(() => makeCharacter(
  21667. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21668. {
  21669. side: {
  21670. height: math.unit(9.7, "feet"),
  21671. weight: math.unit(4000, "kg"),
  21672. name: "Side",
  21673. image: {
  21674. source: "./media/characters/yamie/side.svg"
  21675. }
  21676. },
  21677. },
  21678. [
  21679. {
  21680. name: "Normal",
  21681. height: math.unit(9.7, "feet"),
  21682. default: true
  21683. },
  21684. ]
  21685. ))
  21686. characterMakers.push(() => makeCharacter(
  21687. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21688. {
  21689. front: {
  21690. height: math.unit(50, "feet"),
  21691. weight: math.unit(50000, "kg"),
  21692. name: "Front",
  21693. image: {
  21694. source: "./media/characters/anders/front.svg",
  21695. extra: 570 / 539,
  21696. bottom: 14.7 / 586.7
  21697. }
  21698. },
  21699. },
  21700. [
  21701. {
  21702. name: "Large",
  21703. height: math.unit(50, "feet")
  21704. },
  21705. {
  21706. name: "Macro",
  21707. height: math.unit(2000, "feet"),
  21708. default: true
  21709. },
  21710. {
  21711. name: "Megamacro",
  21712. height: math.unit(12, "miles")
  21713. },
  21714. ]
  21715. ))
  21716. characterMakers.push(() => makeCharacter(
  21717. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21718. {
  21719. front: {
  21720. height: math.unit(7 + 2 / 12, "feet"),
  21721. weight: math.unit(300, "lb"),
  21722. name: "Front",
  21723. image: {
  21724. source: "./media/characters/reban/front.svg",
  21725. extra: 516 / 487,
  21726. bottom: 42.82 / 558.356
  21727. }
  21728. },
  21729. dick: {
  21730. height: math.unit(7 / 5, "feet"),
  21731. name: "Dick",
  21732. image: {
  21733. source: "./media/characters/reban/dick.svg"
  21734. }
  21735. },
  21736. },
  21737. [
  21738. {
  21739. name: "Natural Height",
  21740. height: math.unit(7 + 2 / 12, "feet")
  21741. },
  21742. {
  21743. name: "Macro",
  21744. height: math.unit(500, "feet"),
  21745. default: true
  21746. },
  21747. {
  21748. name: "Canon Height",
  21749. height: math.unit(50, "AU")
  21750. },
  21751. ]
  21752. ))
  21753. characterMakers.push(() => makeCharacter(
  21754. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21755. {
  21756. front: {
  21757. height: math.unit(6, "feet"),
  21758. weight: math.unit(150, "lb"),
  21759. name: "Front",
  21760. image: {
  21761. source: "./media/characters/terrance-keayes/front.svg",
  21762. extra: 1.005,
  21763. bottom: 151 / 1615
  21764. }
  21765. },
  21766. side: {
  21767. height: math.unit(6, "feet"),
  21768. weight: math.unit(150, "lb"),
  21769. name: "Side",
  21770. image: {
  21771. source: "./media/characters/terrance-keayes/side.svg",
  21772. extra: 1.005,
  21773. bottom: 129.4 / 1544
  21774. }
  21775. },
  21776. back: {
  21777. height: math.unit(6, "feet"),
  21778. weight: math.unit(150, "lb"),
  21779. name: "Back",
  21780. image: {
  21781. source: "./media/characters/terrance-keayes/back.svg",
  21782. extra: 1.005,
  21783. bottom: 58.4 / 1557.3
  21784. }
  21785. },
  21786. dick: {
  21787. height: math.unit(6 * 0.208, "feet"),
  21788. name: "Dick",
  21789. image: {
  21790. source: "./media/characters/terrance-keayes/dick.svg"
  21791. }
  21792. },
  21793. },
  21794. [
  21795. {
  21796. name: "Canon Height",
  21797. height: math.unit(35, "miles"),
  21798. default: true
  21799. },
  21800. ]
  21801. ))
  21802. characterMakers.push(() => makeCharacter(
  21803. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21804. {
  21805. front: {
  21806. height: math.unit(6, "feet"),
  21807. weight: math.unit(150, "lb"),
  21808. name: "Front",
  21809. image: {
  21810. source: "./media/characters/ofelia/front.svg",
  21811. extra: 546 / 541,
  21812. bottom: 39 / 583
  21813. }
  21814. },
  21815. back: {
  21816. height: math.unit(6, "feet"),
  21817. weight: math.unit(150, "lb"),
  21818. name: "Back",
  21819. image: {
  21820. source: "./media/characters/ofelia/back.svg",
  21821. extra: 564 / 559.5,
  21822. bottom: 8.69 / 573.02
  21823. }
  21824. },
  21825. maw: {
  21826. height: math.unit(1, "feet"),
  21827. name: "Maw",
  21828. image: {
  21829. source: "./media/characters/ofelia/maw.svg"
  21830. }
  21831. },
  21832. foot: {
  21833. height: math.unit(1.949, "feet"),
  21834. name: "Foot",
  21835. image: {
  21836. source: "./media/characters/ofelia/foot.svg"
  21837. }
  21838. },
  21839. },
  21840. [
  21841. {
  21842. name: "Canon Height",
  21843. height: math.unit(2000, "miles"),
  21844. default: true
  21845. },
  21846. ]
  21847. ))
  21848. characterMakers.push(() => makeCharacter(
  21849. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21850. {
  21851. front: {
  21852. height: math.unit(6, "feet"),
  21853. weight: math.unit(150, "lb"),
  21854. name: "Front",
  21855. image: {
  21856. source: "./media/characters/samuel/front.svg",
  21857. extra: 265 / 258,
  21858. bottom: 2 / 266.1566
  21859. }
  21860. },
  21861. },
  21862. [
  21863. {
  21864. name: "Macro",
  21865. height: math.unit(100, "feet"),
  21866. default: true
  21867. },
  21868. {
  21869. name: "Full Size",
  21870. height: math.unit(1000, "miles")
  21871. },
  21872. ]
  21873. ))
  21874. characterMakers.push(() => makeCharacter(
  21875. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21876. {
  21877. front: {
  21878. height: math.unit(6, "feet"),
  21879. weight: math.unit(300, "lb"),
  21880. name: "Front",
  21881. image: {
  21882. source: "./media/characters/beishir-kiel/front.svg",
  21883. extra: 569 / 547,
  21884. bottom: 41.9 / 609
  21885. }
  21886. },
  21887. maw: {
  21888. height: math.unit(6 * 0.202, "feet"),
  21889. name: "Maw",
  21890. image: {
  21891. source: "./media/characters/beishir-kiel/maw.svg"
  21892. }
  21893. },
  21894. },
  21895. [
  21896. {
  21897. name: "Macro",
  21898. height: math.unit(300, "feet"),
  21899. default: true
  21900. },
  21901. ]
  21902. ))
  21903. characterMakers.push(() => makeCharacter(
  21904. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21905. {
  21906. front: {
  21907. height: math.unit(5 + 8 / 12, "feet"),
  21908. weight: math.unit(120, "lb"),
  21909. name: "Front",
  21910. image: {
  21911. source: "./media/characters/logan-grey/front.svg",
  21912. extra: 2539 / 2393,
  21913. bottom: 97.6 / 2636.37
  21914. }
  21915. },
  21916. frontAlt: {
  21917. height: math.unit(5 + 8 / 12, "feet"),
  21918. weight: math.unit(120, "lb"),
  21919. name: "Front (Alt)",
  21920. image: {
  21921. source: "./media/characters/logan-grey/front-alt.svg",
  21922. extra: 958 / 893,
  21923. bottom: 15 / 970.768
  21924. }
  21925. },
  21926. back: {
  21927. height: math.unit(5 + 8 / 12, "feet"),
  21928. weight: math.unit(120, "lb"),
  21929. name: "Back",
  21930. image: {
  21931. source: "./media/characters/logan-grey/back.svg",
  21932. extra: 958 / 893,
  21933. bottom: 2.1881 / 970.9788
  21934. }
  21935. },
  21936. dick: {
  21937. height: math.unit(1.437, "feet"),
  21938. name: "Dick",
  21939. image: {
  21940. source: "./media/characters/logan-grey/dick.svg"
  21941. }
  21942. },
  21943. },
  21944. [
  21945. {
  21946. name: "Normal",
  21947. height: math.unit(5 + 8 / 12, "feet")
  21948. },
  21949. {
  21950. name: "The 500 Foot Femboy",
  21951. height: math.unit(500, "feet"),
  21952. default: true
  21953. },
  21954. {
  21955. name: "Megmacro",
  21956. height: math.unit(20, "miles")
  21957. },
  21958. ]
  21959. ))
  21960. characterMakers.push(() => makeCharacter(
  21961. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21962. {
  21963. front: {
  21964. height: math.unit(8 + 2 / 12, "feet"),
  21965. weight: math.unit(275, "lb"),
  21966. name: "Front",
  21967. image: {
  21968. source: "./media/characters/draganta/front.svg",
  21969. extra: 1177 / 1135,
  21970. bottom: 33.46 / 1212.1
  21971. }
  21972. },
  21973. },
  21974. [
  21975. {
  21976. name: "Normal",
  21977. height: math.unit(8 + 6 / 12, "feet"),
  21978. default: true
  21979. },
  21980. {
  21981. name: "Macro",
  21982. height: math.unit(150, "feet")
  21983. },
  21984. {
  21985. name: "Megamacro",
  21986. height: math.unit(1000, "miles")
  21987. },
  21988. ]
  21989. ))
  21990. characterMakers.push(() => makeCharacter(
  21991. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21992. {
  21993. front: {
  21994. height: math.unit(1.72, "m"),
  21995. weight: math.unit(80, "lb"),
  21996. name: "Front",
  21997. image: {
  21998. source: "./media/characters/voski/front.svg",
  21999. extra: 2076.22 / 2022.4,
  22000. bottom: 102.7 / 2177.3866
  22001. }
  22002. },
  22003. frontNsfw: {
  22004. height: math.unit(1.72, "m"),
  22005. weight: math.unit(80, "lb"),
  22006. name: "Front (NSFW)",
  22007. image: {
  22008. source: "./media/characters/voski/front-nsfw.svg",
  22009. extra: 2076.22 / 2022.4,
  22010. bottom: 102.7 / 2177.3866
  22011. }
  22012. },
  22013. back: {
  22014. height: math.unit(1.72, "m"),
  22015. weight: math.unit(80, "lb"),
  22016. name: "Back",
  22017. image: {
  22018. source: "./media/characters/voski/back.svg",
  22019. extra: 2104 / 2051,
  22020. bottom: 10.45 / 2113.63
  22021. }
  22022. },
  22023. },
  22024. [
  22025. {
  22026. name: "Normal",
  22027. height: math.unit(1.72, "m")
  22028. },
  22029. {
  22030. name: "Macro",
  22031. height: math.unit(55, "m"),
  22032. default: true
  22033. },
  22034. {
  22035. name: "Macro+",
  22036. height: math.unit(300, "m")
  22037. },
  22038. {
  22039. name: "Macro++",
  22040. height: math.unit(700, "m")
  22041. },
  22042. {
  22043. name: "Macro+++",
  22044. height: math.unit(4500, "m")
  22045. },
  22046. {
  22047. name: "Macro++++",
  22048. height: math.unit(45, "km")
  22049. },
  22050. {
  22051. name: "Macro+++++",
  22052. height: math.unit(1220, "km")
  22053. },
  22054. ]
  22055. ))
  22056. characterMakers.push(() => makeCharacter(
  22057. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22058. {
  22059. front: {
  22060. height: math.unit(2.3, "m"),
  22061. weight: math.unit(304, "kg"),
  22062. name: "Front",
  22063. image: {
  22064. source: "./media/characters/icowom-lee/front.svg",
  22065. extra: 985 / 955,
  22066. bottom: 25.4 / 1012
  22067. }
  22068. },
  22069. fronttentacles: {
  22070. height: math.unit(2.3, "m"),
  22071. weight: math.unit(304, "kg"),
  22072. name: "Front-tentacles",
  22073. image: {
  22074. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22075. extra: 985 / 955,
  22076. bottom: 25.4 / 1012
  22077. }
  22078. },
  22079. back: {
  22080. height: math.unit(2.3, "m"),
  22081. weight: math.unit(304, "kg"),
  22082. name: "Back",
  22083. image: {
  22084. source: "./media/characters/icowom-lee/back.svg",
  22085. extra: 975 / 954,
  22086. bottom: 9.5 / 985
  22087. }
  22088. },
  22089. backtentacles: {
  22090. height: math.unit(2.3, "m"),
  22091. weight: math.unit(304, "kg"),
  22092. name: "Back-tentacles",
  22093. image: {
  22094. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22095. extra: 975 / 954,
  22096. bottom: 9.5 / 985
  22097. }
  22098. },
  22099. frontDressed: {
  22100. height: math.unit(2.3, "m"),
  22101. weight: math.unit(304, "kg"),
  22102. name: "Front (Dressed)",
  22103. image: {
  22104. source: "./media/characters/icowom-lee/front-dressed.svg",
  22105. extra: 3076 / 2933,
  22106. bottom: 51.4 / 3125.1889
  22107. }
  22108. },
  22109. rump: {
  22110. height: math.unit(0.776, "meters"),
  22111. name: "Rump",
  22112. image: {
  22113. source: "./media/characters/icowom-lee/rump.svg"
  22114. }
  22115. },
  22116. genitals: {
  22117. height: math.unit(0.78, "meters"),
  22118. name: "Genitals",
  22119. image: {
  22120. source: "./media/characters/icowom-lee/genitals.svg"
  22121. }
  22122. },
  22123. },
  22124. [
  22125. {
  22126. name: "Normal",
  22127. height: math.unit(2.3, "meters"),
  22128. default: true
  22129. },
  22130. {
  22131. name: "Macro",
  22132. height: math.unit(94, "meters"),
  22133. default: true
  22134. },
  22135. ]
  22136. ))
  22137. characterMakers.push(() => makeCharacter(
  22138. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22139. {
  22140. front: {
  22141. height: math.unit(22, "meters"),
  22142. weight: math.unit(21000, "kg"),
  22143. name: "Front",
  22144. image: {
  22145. source: "./media/characters/shock-diamond/front.svg",
  22146. extra: 2204 / 2053,
  22147. bottom: 65 / 2239.47
  22148. }
  22149. },
  22150. frontNude: {
  22151. height: math.unit(22, "meters"),
  22152. weight: math.unit(21000, "kg"),
  22153. name: "Front (Nude)",
  22154. image: {
  22155. source: "./media/characters/shock-diamond/front-nude.svg",
  22156. extra: 2514 / 2285,
  22157. bottom: 13 / 2527.56
  22158. }
  22159. },
  22160. },
  22161. [
  22162. {
  22163. name: "Normal",
  22164. height: math.unit(3, "meters")
  22165. },
  22166. {
  22167. name: "Macro",
  22168. height: math.unit(22, "meters"),
  22169. default: true
  22170. },
  22171. ]
  22172. ))
  22173. characterMakers.push(() => makeCharacter(
  22174. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22175. {
  22176. front: {
  22177. height: math.unit(5 + 4 / 12, "feet"),
  22178. weight: math.unit(120, "lb"),
  22179. name: "Front",
  22180. image: {
  22181. source: "./media/characters/rory/front.svg",
  22182. extra: 589 / 556,
  22183. bottom: 45.7 / 635.76
  22184. }
  22185. },
  22186. frontNude: {
  22187. height: math.unit(5 + 4 / 12, "feet"),
  22188. weight: math.unit(120, "lb"),
  22189. name: "Front (Nude)",
  22190. image: {
  22191. source: "./media/characters/rory/front-nude.svg",
  22192. extra: 589 / 556,
  22193. bottom: 45.7 / 635.76
  22194. }
  22195. },
  22196. side: {
  22197. height: math.unit(5 + 4 / 12, "feet"),
  22198. weight: math.unit(120, "lb"),
  22199. name: "Side",
  22200. image: {
  22201. source: "./media/characters/rory/side.svg",
  22202. extra: 597 / 564,
  22203. bottom: 55 / 653
  22204. }
  22205. },
  22206. back: {
  22207. height: math.unit(5 + 4 / 12, "feet"),
  22208. weight: math.unit(120, "lb"),
  22209. name: "Back",
  22210. image: {
  22211. source: "./media/characters/rory/back.svg",
  22212. extra: 620 / 585,
  22213. bottom: 8.86 / 630.43
  22214. }
  22215. },
  22216. dick: {
  22217. height: math.unit(0.86, "feet"),
  22218. name: "Dick",
  22219. image: {
  22220. source: "./media/characters/rory/dick.svg"
  22221. }
  22222. },
  22223. },
  22224. [
  22225. {
  22226. name: "Normal",
  22227. height: math.unit(5 + 4 / 12, "feet"),
  22228. default: true
  22229. },
  22230. {
  22231. name: "Macro",
  22232. height: math.unit(100, "feet")
  22233. },
  22234. {
  22235. name: "Macro+",
  22236. height: math.unit(140, "feet")
  22237. },
  22238. {
  22239. name: "Macro++",
  22240. height: math.unit(300, "feet")
  22241. },
  22242. ]
  22243. ))
  22244. characterMakers.push(() => makeCharacter(
  22245. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22246. {
  22247. front: {
  22248. height: math.unit(5 + 9 / 12, "feet"),
  22249. weight: math.unit(190, "lb"),
  22250. name: "Front",
  22251. image: {
  22252. source: "./media/characters/sprisk/front.svg",
  22253. extra: 1225 / 1180,
  22254. bottom: 42.7 / 1266.4
  22255. }
  22256. },
  22257. frontNsfw: {
  22258. height: math.unit(5 + 9 / 12, "feet"),
  22259. weight: math.unit(190, "lb"),
  22260. name: "Front (NSFW)",
  22261. image: {
  22262. source: "./media/characters/sprisk/front-nsfw.svg",
  22263. extra: 1225 / 1180,
  22264. bottom: 42.7 / 1266.4
  22265. }
  22266. },
  22267. back: {
  22268. height: math.unit(5 + 9 / 12, "feet"),
  22269. weight: math.unit(190, "lb"),
  22270. name: "Back",
  22271. image: {
  22272. source: "./media/characters/sprisk/back.svg",
  22273. extra: 1247 / 1200,
  22274. bottom: 5.6 / 1253.04
  22275. }
  22276. },
  22277. },
  22278. [
  22279. {
  22280. name: "Tiny",
  22281. height: math.unit(2, "inches")
  22282. },
  22283. {
  22284. name: "Normal",
  22285. height: math.unit(5 + 9 / 12, "feet"),
  22286. default: true
  22287. },
  22288. {
  22289. name: "Mini Macro",
  22290. height: math.unit(18, "feet")
  22291. },
  22292. {
  22293. name: "Macro",
  22294. height: math.unit(100, "feet")
  22295. },
  22296. {
  22297. name: "MACRO",
  22298. height: math.unit(50, "miles")
  22299. },
  22300. {
  22301. name: "M A C R O",
  22302. height: math.unit(300, "miles")
  22303. },
  22304. ]
  22305. ))
  22306. characterMakers.push(() => makeCharacter(
  22307. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22308. {
  22309. side: {
  22310. height: math.unit(15.6, "meters"),
  22311. weight: math.unit(700000, "kg"),
  22312. name: "Side",
  22313. image: {
  22314. source: "./media/characters/bunsen/side.svg",
  22315. extra: 1644 / 358
  22316. }
  22317. },
  22318. foot: {
  22319. height: math.unit(1.611 * 1644 / 358, "meter"),
  22320. name: "Foot",
  22321. image: {
  22322. source: "./media/characters/bunsen/foot.svg"
  22323. }
  22324. },
  22325. },
  22326. [
  22327. {
  22328. name: "Small",
  22329. height: math.unit(10, "feet")
  22330. },
  22331. {
  22332. name: "Normal",
  22333. height: math.unit(15.6, "meters"),
  22334. default: true
  22335. },
  22336. ]
  22337. ))
  22338. characterMakers.push(() => makeCharacter(
  22339. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22340. {
  22341. front: {
  22342. height: math.unit(4 + 11 / 12, "feet"),
  22343. weight: math.unit(140, "lb"),
  22344. name: "Front",
  22345. image: {
  22346. source: "./media/characters/sesh/front.svg",
  22347. extra: 3420 / 3231,
  22348. bottom: 72 / 3949.5
  22349. }
  22350. },
  22351. },
  22352. [
  22353. {
  22354. name: "Normal",
  22355. height: math.unit(4 + 11 / 12, "feet")
  22356. },
  22357. {
  22358. name: "Grown",
  22359. height: math.unit(15, "feet"),
  22360. default: true
  22361. },
  22362. {
  22363. name: "Macro",
  22364. height: math.unit(1500, "feet")
  22365. },
  22366. {
  22367. name: "Megamacro",
  22368. height: math.unit(30, "miles")
  22369. },
  22370. {
  22371. name: "Continental",
  22372. height: math.unit(3000, "miles")
  22373. },
  22374. {
  22375. name: "Gravity Mass",
  22376. height: math.unit(300000, "miles")
  22377. },
  22378. {
  22379. name: "Planet Buster",
  22380. height: math.unit(30000000, "miles")
  22381. },
  22382. {
  22383. name: "Big",
  22384. height: math.unit(3000000000, "miles")
  22385. },
  22386. ]
  22387. ))
  22388. characterMakers.push(() => makeCharacter(
  22389. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22390. {
  22391. front: {
  22392. height: math.unit(9, "feet"),
  22393. weight: math.unit(350, "lb"),
  22394. name: "Front",
  22395. image: {
  22396. source: "./media/characters/pepper/front.svg",
  22397. extra: 1448 / 1312,
  22398. bottom: 9.4 / 1457.88
  22399. }
  22400. },
  22401. back: {
  22402. height: math.unit(9, "feet"),
  22403. weight: math.unit(350, "lb"),
  22404. name: "Back",
  22405. image: {
  22406. source: "./media/characters/pepper/back.svg",
  22407. extra: 1423 / 1300,
  22408. bottom: 4.6 / 1429
  22409. }
  22410. },
  22411. maw: {
  22412. height: math.unit(0.932, "feet"),
  22413. name: "Maw",
  22414. image: {
  22415. source: "./media/characters/pepper/maw.svg"
  22416. }
  22417. },
  22418. },
  22419. [
  22420. {
  22421. name: "Normal",
  22422. height: math.unit(9, "feet"),
  22423. default: true
  22424. },
  22425. ]
  22426. ))
  22427. characterMakers.push(() => makeCharacter(
  22428. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22429. {
  22430. front: {
  22431. height: math.unit(6, "feet"),
  22432. weight: math.unit(150, "lb"),
  22433. name: "Front",
  22434. image: {
  22435. source: "./media/characters/maelstrom/front.svg",
  22436. extra: 2100 / 1883,
  22437. bottom: 94 / 2196.7
  22438. }
  22439. },
  22440. },
  22441. [
  22442. {
  22443. name: "Less Kaiju",
  22444. height: math.unit(200, "feet")
  22445. },
  22446. {
  22447. name: "Kaiju",
  22448. height: math.unit(400, "feet"),
  22449. default: true
  22450. },
  22451. {
  22452. name: "Kaiju-er",
  22453. height: math.unit(600, "feet")
  22454. },
  22455. ]
  22456. ))
  22457. characterMakers.push(() => makeCharacter(
  22458. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22459. {
  22460. front: {
  22461. height: math.unit(6 + 5 / 12, "feet"),
  22462. weight: math.unit(180, "lb"),
  22463. name: "Front",
  22464. image: {
  22465. source: "./media/characters/lexir/front.svg",
  22466. extra: 180 / 172,
  22467. bottom: 12 / 192
  22468. }
  22469. },
  22470. back: {
  22471. height: math.unit(6 + 5 / 12, "feet"),
  22472. weight: math.unit(180, "lb"),
  22473. name: "Back",
  22474. image: {
  22475. source: "./media/characters/lexir/back.svg",
  22476. extra: 183.84 / 175.5,
  22477. bottom: 3.1 / 187
  22478. }
  22479. },
  22480. },
  22481. [
  22482. {
  22483. name: "Very Smal",
  22484. height: math.unit(1, "nm")
  22485. },
  22486. {
  22487. name: "Normal",
  22488. height: math.unit(6 + 5 / 12, "feet"),
  22489. default: true
  22490. },
  22491. {
  22492. name: "Macro",
  22493. height: math.unit(1, "mile")
  22494. },
  22495. {
  22496. name: "Megamacro",
  22497. height: math.unit(50, "miles")
  22498. },
  22499. ]
  22500. ))
  22501. characterMakers.push(() => makeCharacter(
  22502. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22503. {
  22504. front: {
  22505. height: math.unit(1.5, "meters"),
  22506. weight: math.unit(100, "lb"),
  22507. name: "Front",
  22508. image: {
  22509. source: "./media/characters/maksio/front.svg",
  22510. extra: 1549 / 1531,
  22511. bottom: 123.7 / 1674.5429
  22512. }
  22513. },
  22514. back: {
  22515. height: math.unit(1.5, "meters"),
  22516. weight: math.unit(100, "lb"),
  22517. name: "Back",
  22518. image: {
  22519. source: "./media/characters/maksio/back.svg",
  22520. extra: 1541 / 1509,
  22521. bottom: 97 / 1639
  22522. }
  22523. },
  22524. hand: {
  22525. height: math.unit(0.621, "feet"),
  22526. name: "Hand",
  22527. image: {
  22528. source: "./media/characters/maksio/hand.svg"
  22529. }
  22530. },
  22531. foot: {
  22532. height: math.unit(1.611, "feet"),
  22533. name: "Foot",
  22534. image: {
  22535. source: "./media/characters/maksio/foot.svg"
  22536. }
  22537. },
  22538. },
  22539. [
  22540. {
  22541. name: "Shrunken",
  22542. height: math.unit(10, "cm")
  22543. },
  22544. {
  22545. name: "Normal",
  22546. height: math.unit(150, "cm"),
  22547. default: true
  22548. },
  22549. ]
  22550. ))
  22551. characterMakers.push(() => makeCharacter(
  22552. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22553. {
  22554. front: {
  22555. height: math.unit(100, "feet"),
  22556. name: "Front",
  22557. image: {
  22558. source: "./media/characters/erza-bear/front.svg",
  22559. extra: 2449 / 2390,
  22560. bottom: 46 / 2494
  22561. }
  22562. },
  22563. back: {
  22564. height: math.unit(100, "feet"),
  22565. name: "Back",
  22566. image: {
  22567. source: "./media/characters/erza-bear/back.svg",
  22568. extra: 2489 / 2430,
  22569. bottom: 85.4 / 2480
  22570. }
  22571. },
  22572. tail: {
  22573. height: math.unit(42, "feet"),
  22574. name: "Tail",
  22575. image: {
  22576. source: "./media/characters/erza-bear/tail.svg"
  22577. }
  22578. },
  22579. tongue: {
  22580. height: math.unit(8, "feet"),
  22581. name: "Tongue",
  22582. image: {
  22583. source: "./media/characters/erza-bear/tongue.svg"
  22584. }
  22585. },
  22586. dick: {
  22587. height: math.unit(10.5, "feet"),
  22588. name: "Dick",
  22589. image: {
  22590. source: "./media/characters/erza-bear/dick.svg"
  22591. }
  22592. },
  22593. dickVertical: {
  22594. height: math.unit(16.9, "feet"),
  22595. name: "Dick (Vertical)",
  22596. image: {
  22597. source: "./media/characters/erza-bear/dick-vertical.svg"
  22598. }
  22599. },
  22600. },
  22601. [
  22602. {
  22603. name: "Macro",
  22604. height: math.unit(100, "feet"),
  22605. default: true
  22606. },
  22607. ]
  22608. ))
  22609. characterMakers.push(() => makeCharacter(
  22610. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22611. {
  22612. front: {
  22613. height: math.unit(172, "cm"),
  22614. weight: math.unit(73, "kg"),
  22615. name: "Front",
  22616. image: {
  22617. source: "./media/characters/violet-flor/front.svg",
  22618. extra: 1530 / 1442,
  22619. bottom: 61.9 / 1588.8
  22620. }
  22621. },
  22622. back: {
  22623. height: math.unit(180, "cm"),
  22624. weight: math.unit(73, "kg"),
  22625. name: "Back",
  22626. image: {
  22627. source: "./media/characters/violet-flor/back.svg",
  22628. extra: 1692 / 1630,
  22629. bottom: 20 / 1712
  22630. }
  22631. },
  22632. },
  22633. [
  22634. {
  22635. name: "Normal",
  22636. height: math.unit(172, "cm"),
  22637. default: true
  22638. },
  22639. ]
  22640. ))
  22641. characterMakers.push(() => makeCharacter(
  22642. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22643. {
  22644. front: {
  22645. height: math.unit(6, "feet"),
  22646. weight: math.unit(220, "lb"),
  22647. name: "Front",
  22648. image: {
  22649. source: "./media/characters/lynn-rhea/front.svg",
  22650. extra: 310 / 273
  22651. }
  22652. },
  22653. back: {
  22654. height: math.unit(6, "feet"),
  22655. weight: math.unit(220, "lb"),
  22656. name: "Back",
  22657. image: {
  22658. source: "./media/characters/lynn-rhea/back.svg",
  22659. extra: 310 / 273
  22660. }
  22661. },
  22662. dicks: {
  22663. height: math.unit(0.9, "feet"),
  22664. name: "Dicks",
  22665. image: {
  22666. source: "./media/characters/lynn-rhea/dicks.svg"
  22667. }
  22668. },
  22669. slit: {
  22670. height: math.unit(0.4, "feet"),
  22671. name: "Slit",
  22672. image: {
  22673. source: "./media/characters/lynn-rhea/slit.svg"
  22674. }
  22675. },
  22676. },
  22677. [
  22678. {
  22679. name: "Micro",
  22680. height: math.unit(1, "inch")
  22681. },
  22682. {
  22683. name: "Macro",
  22684. height: math.unit(60, "feet"),
  22685. default: true
  22686. },
  22687. {
  22688. name: "Megamacro",
  22689. height: math.unit(2, "miles")
  22690. },
  22691. {
  22692. name: "Gigamacro",
  22693. height: math.unit(3, "earths")
  22694. },
  22695. {
  22696. name: "Galactic",
  22697. height: math.unit(0.8, "galaxies")
  22698. },
  22699. ]
  22700. ))
  22701. characterMakers.push(() => makeCharacter(
  22702. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22703. {
  22704. front: {
  22705. height: math.unit(1600, "feet"),
  22706. weight: math.unit(85758785169, "kg"),
  22707. name: "Front",
  22708. image: {
  22709. source: "./media/characters/valathos/front.svg",
  22710. extra: 1451 / 1339
  22711. }
  22712. },
  22713. },
  22714. [
  22715. {
  22716. name: "Macro",
  22717. height: math.unit(1600, "feet"),
  22718. default: true
  22719. },
  22720. ]
  22721. ))
  22722. characterMakers.push(() => makeCharacter(
  22723. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22724. {
  22725. front: {
  22726. height: math.unit(7 + 5 / 12, "feet"),
  22727. weight: math.unit(300, "lb"),
  22728. name: "Front",
  22729. image: {
  22730. source: "./media/characters/azula/front.svg",
  22731. extra: 3208 / 2880,
  22732. bottom: 80.2 / 3277
  22733. }
  22734. },
  22735. back: {
  22736. height: math.unit(7 + 5 / 12, "feet"),
  22737. weight: math.unit(300, "lb"),
  22738. name: "Back",
  22739. image: {
  22740. source: "./media/characters/azula/back.svg",
  22741. extra: 3169 / 2822,
  22742. bottom: 150.6 / 3321
  22743. }
  22744. },
  22745. },
  22746. [
  22747. {
  22748. name: "Normal",
  22749. height: math.unit(7 + 5 / 12, "feet"),
  22750. default: true
  22751. },
  22752. {
  22753. name: "Big",
  22754. height: math.unit(20, "feet")
  22755. },
  22756. ]
  22757. ))
  22758. characterMakers.push(() => makeCharacter(
  22759. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22760. {
  22761. front: {
  22762. height: math.unit(5 + 1 / 12, "feet"),
  22763. weight: math.unit(110, "lb"),
  22764. name: "Front",
  22765. image: {
  22766. source: "./media/characters/rupert/front.svg",
  22767. extra: 1549 / 1495,
  22768. bottom: 54.2 / 1604.4
  22769. }
  22770. },
  22771. },
  22772. [
  22773. {
  22774. name: "Normal",
  22775. height: math.unit(5 + 1 / 12, "feet"),
  22776. default: true
  22777. },
  22778. ]
  22779. ))
  22780. characterMakers.push(() => makeCharacter(
  22781. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22782. {
  22783. front: {
  22784. height: math.unit(8 + 4 / 12, "feet"),
  22785. weight: math.unit(350, "lb"),
  22786. name: "Front",
  22787. image: {
  22788. source: "./media/characters/sheera-castellar/front.svg",
  22789. extra: 1957 / 1894,
  22790. bottom: 26.97 / 1975.017
  22791. }
  22792. },
  22793. side: {
  22794. height: math.unit(8 + 4 / 12, "feet"),
  22795. weight: math.unit(350, "lb"),
  22796. name: "Side",
  22797. image: {
  22798. source: "./media/characters/sheera-castellar/side.svg",
  22799. extra: 1957 / 1894
  22800. }
  22801. },
  22802. back: {
  22803. height: math.unit(8 + 4 / 12, "feet"),
  22804. weight: math.unit(350, "lb"),
  22805. name: "Back",
  22806. image: {
  22807. source: "./media/characters/sheera-castellar/back.svg",
  22808. extra: 1957 / 1894
  22809. }
  22810. },
  22811. angled: {
  22812. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22813. weight: math.unit(350, "lb"),
  22814. name: "Angled",
  22815. image: {
  22816. source: "./media/characters/sheera-castellar/angled.svg",
  22817. extra: 1807 / 1707,
  22818. bottom: 68 / 1875
  22819. }
  22820. },
  22821. genitals: {
  22822. height: math.unit(2.2, "feet"),
  22823. name: "Genitals",
  22824. image: {
  22825. source: "./media/characters/sheera-castellar/genitals.svg"
  22826. }
  22827. },
  22828. taur: {
  22829. height: math.unit(10 + 6/12, "feet"),
  22830. name: "Taur",
  22831. image: {
  22832. source: "./media/characters/sheera-castellar/taur.svg",
  22833. extra: 2017/1909,
  22834. bottom: 185/2202
  22835. }
  22836. },
  22837. },
  22838. [
  22839. {
  22840. name: "Normal",
  22841. height: math.unit(8 + 4 / 12, "feet")
  22842. },
  22843. {
  22844. name: "Macro",
  22845. height: math.unit(150, "feet"),
  22846. default: true
  22847. },
  22848. {
  22849. name: "Macro+",
  22850. height: math.unit(800, "feet")
  22851. },
  22852. ]
  22853. ))
  22854. characterMakers.push(() => makeCharacter(
  22855. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22856. {
  22857. front: {
  22858. height: math.unit(6, "feet"),
  22859. weight: math.unit(150, "lb"),
  22860. name: "Front",
  22861. image: {
  22862. source: "./media/characters/jaipur/front.svg",
  22863. extra: 3860 / 3731,
  22864. bottom: 287 / 4140
  22865. }
  22866. },
  22867. back: {
  22868. height: math.unit(6, "feet"),
  22869. weight: math.unit(150, "lb"),
  22870. name: "Back",
  22871. image: {
  22872. source: "./media/characters/jaipur/back.svg",
  22873. extra: 4060 / 3930,
  22874. bottom: 151 / 4200
  22875. }
  22876. },
  22877. },
  22878. [
  22879. {
  22880. name: "Normal",
  22881. height: math.unit(1.85, "meters"),
  22882. default: true
  22883. },
  22884. {
  22885. name: "Macro",
  22886. height: math.unit(150, "meters")
  22887. },
  22888. {
  22889. name: "Macro+",
  22890. height: math.unit(0.5, "miles")
  22891. },
  22892. {
  22893. name: "Macro++",
  22894. height: math.unit(2.5, "miles")
  22895. },
  22896. {
  22897. name: "Macro+++",
  22898. height: math.unit(12, "miles")
  22899. },
  22900. {
  22901. name: "Macro++++",
  22902. height: math.unit(120, "miles")
  22903. },
  22904. {
  22905. name: "Macro+++++",
  22906. height: math.unit(1200, "miles")
  22907. },
  22908. ]
  22909. ))
  22910. characterMakers.push(() => makeCharacter(
  22911. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22912. {
  22913. front: {
  22914. height: math.unit(6, "feet"),
  22915. weight: math.unit(150, "lb"),
  22916. name: "Front",
  22917. image: {
  22918. source: "./media/characters/sheila-wolf/front.svg",
  22919. extra: 1931 / 1808,
  22920. bottom: 29.5 / 1960
  22921. }
  22922. },
  22923. dick: {
  22924. height: math.unit(1.464, "feet"),
  22925. name: "Dick",
  22926. image: {
  22927. source: "./media/characters/sheila-wolf/dick.svg"
  22928. }
  22929. },
  22930. muzzle: {
  22931. height: math.unit(0.513, "feet"),
  22932. name: "Muzzle",
  22933. image: {
  22934. source: "./media/characters/sheila-wolf/muzzle.svg"
  22935. }
  22936. },
  22937. },
  22938. [
  22939. {
  22940. name: "Macro",
  22941. height: math.unit(70, "feet"),
  22942. default: true
  22943. },
  22944. ]
  22945. ))
  22946. characterMakers.push(() => makeCharacter(
  22947. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22948. {
  22949. front: {
  22950. height: math.unit(32, "meters"),
  22951. weight: math.unit(300000, "kg"),
  22952. name: "Front",
  22953. image: {
  22954. source: "./media/characters/almor/front.svg",
  22955. extra: 1408 / 1322,
  22956. bottom: 94.6 / 1506.5
  22957. }
  22958. },
  22959. },
  22960. [
  22961. {
  22962. name: "Macro",
  22963. height: math.unit(32, "meters"),
  22964. default: true
  22965. },
  22966. ]
  22967. ))
  22968. characterMakers.push(() => makeCharacter(
  22969. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22970. {
  22971. front: {
  22972. height: math.unit(7, "feet"),
  22973. weight: math.unit(200, "lb"),
  22974. name: "Front",
  22975. image: {
  22976. source: "./media/characters/silver/front.svg",
  22977. extra: 472.1 / 450.5,
  22978. bottom: 26.5 / 499.424
  22979. }
  22980. },
  22981. },
  22982. [
  22983. {
  22984. name: "Normal",
  22985. height: math.unit(7, "feet"),
  22986. default: true
  22987. },
  22988. {
  22989. name: "Macro",
  22990. height: math.unit(800, "feet")
  22991. },
  22992. {
  22993. name: "Megamacro",
  22994. height: math.unit(250, "miles")
  22995. },
  22996. ]
  22997. ))
  22998. characterMakers.push(() => makeCharacter(
  22999. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23000. {
  23001. front: {
  23002. height: math.unit(6, "feet"),
  23003. weight: math.unit(150, "lb"),
  23004. name: "Front",
  23005. image: {
  23006. source: "./media/characters/pliskin/front.svg",
  23007. extra: 1469 / 1359,
  23008. bottom: 70 / 1540
  23009. }
  23010. },
  23011. },
  23012. [
  23013. {
  23014. name: "Micro",
  23015. height: math.unit(3, "inches")
  23016. },
  23017. {
  23018. name: "Normal",
  23019. height: math.unit(5 + 11 / 12, "feet"),
  23020. default: true
  23021. },
  23022. {
  23023. name: "Macro",
  23024. height: math.unit(120, "feet")
  23025. },
  23026. ]
  23027. ))
  23028. characterMakers.push(() => makeCharacter(
  23029. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23030. {
  23031. front: {
  23032. height: math.unit(6, "feet"),
  23033. weight: math.unit(150, "lb"),
  23034. name: "Front",
  23035. image: {
  23036. source: "./media/characters/sammy/front.svg",
  23037. extra: 1193 / 1089,
  23038. bottom: 30.5 / 1226
  23039. }
  23040. },
  23041. },
  23042. [
  23043. {
  23044. name: "Macro",
  23045. height: math.unit(1700, "feet"),
  23046. default: true
  23047. },
  23048. {
  23049. name: "Examacro",
  23050. height: math.unit(2.5e9, "lightyears")
  23051. },
  23052. ]
  23053. ))
  23054. characterMakers.push(() => makeCharacter(
  23055. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23056. {
  23057. front: {
  23058. height: math.unit(21, "meters"),
  23059. weight: math.unit(12, "tonnes"),
  23060. name: "Front",
  23061. image: {
  23062. source: "./media/characters/kuru/front.svg",
  23063. extra: 4301 / 3785,
  23064. bottom: 371.3 / 4691
  23065. }
  23066. },
  23067. },
  23068. [
  23069. {
  23070. name: "Macro",
  23071. height: math.unit(21, "meters"),
  23072. default: true
  23073. },
  23074. ]
  23075. ))
  23076. characterMakers.push(() => makeCharacter(
  23077. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23078. {
  23079. front: {
  23080. height: math.unit(23, "meters"),
  23081. weight: math.unit(12.2, "tonnes"),
  23082. name: "Front",
  23083. image: {
  23084. source: "./media/characters/rakka/front.svg",
  23085. extra: 4670 / 4169,
  23086. bottom: 301 / 4968.7
  23087. }
  23088. },
  23089. },
  23090. [
  23091. {
  23092. name: "Macro",
  23093. height: math.unit(23, "meters"),
  23094. default: true
  23095. },
  23096. ]
  23097. ))
  23098. characterMakers.push(() => makeCharacter(
  23099. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23100. {
  23101. front: {
  23102. height: math.unit(6, "feet"),
  23103. weight: math.unit(150, "lb"),
  23104. name: "Front",
  23105. image: {
  23106. source: "./media/characters/rhys-feline/front.svg",
  23107. extra: 2488 / 2308,
  23108. bottom: 35.67 / 2519.19
  23109. }
  23110. },
  23111. },
  23112. [
  23113. {
  23114. name: "Really Small",
  23115. height: math.unit(1, "nm")
  23116. },
  23117. {
  23118. name: "Micro",
  23119. height: math.unit(4, "inches")
  23120. },
  23121. {
  23122. name: "Normal",
  23123. height: math.unit(4 + 10 / 12, "feet"),
  23124. default: true
  23125. },
  23126. {
  23127. name: "Macro",
  23128. height: math.unit(100, "feet")
  23129. },
  23130. {
  23131. name: "Megamacto",
  23132. height: math.unit(50, "miles")
  23133. },
  23134. ]
  23135. ))
  23136. characterMakers.push(() => makeCharacter(
  23137. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23138. {
  23139. side: {
  23140. height: math.unit(30, "feet"),
  23141. weight: math.unit(35000, "kg"),
  23142. name: "Side",
  23143. image: {
  23144. source: "./media/characters/alydar/side.svg",
  23145. extra: 234 / 222,
  23146. bottom: 6.5 / 241
  23147. }
  23148. },
  23149. front: {
  23150. height: math.unit(30, "feet"),
  23151. weight: math.unit(35000, "kg"),
  23152. name: "Front",
  23153. image: {
  23154. source: "./media/characters/alydar/front.svg",
  23155. extra: 223.37 / 210.2,
  23156. bottom: 22.3 / 246.76
  23157. }
  23158. },
  23159. top: {
  23160. height: math.unit(64.54, "feet"),
  23161. weight: math.unit(35000, "kg"),
  23162. name: "Top",
  23163. image: {
  23164. source: "./media/characters/alydar/top.svg"
  23165. }
  23166. },
  23167. anthro: {
  23168. height: math.unit(30, "feet"),
  23169. weight: math.unit(9000, "kg"),
  23170. name: "Anthro",
  23171. image: {
  23172. source: "./media/characters/alydar/anthro.svg",
  23173. extra: 432 / 421,
  23174. bottom: 7.18 / 440
  23175. }
  23176. },
  23177. maw: {
  23178. height: math.unit(11.693, "feet"),
  23179. name: "Maw",
  23180. image: {
  23181. source: "./media/characters/alydar/maw.svg"
  23182. }
  23183. },
  23184. head: {
  23185. height: math.unit(11.693, "feet"),
  23186. name: "Head",
  23187. image: {
  23188. source: "./media/characters/alydar/head.svg"
  23189. }
  23190. },
  23191. headAlt: {
  23192. height: math.unit(12.861, "feet"),
  23193. name: "Head (Alt)",
  23194. image: {
  23195. source: "./media/characters/alydar/head-alt.svg"
  23196. }
  23197. },
  23198. wing: {
  23199. height: math.unit(20.712, "feet"),
  23200. name: "Wing",
  23201. image: {
  23202. source: "./media/characters/alydar/wing.svg"
  23203. }
  23204. },
  23205. wingFeather: {
  23206. height: math.unit(9.662, "feet"),
  23207. name: "Wing Feather",
  23208. image: {
  23209. source: "./media/characters/alydar/wing-feather.svg"
  23210. }
  23211. },
  23212. countourFeather: {
  23213. height: math.unit(4.154, "feet"),
  23214. name: "Contour Feather",
  23215. image: {
  23216. source: "./media/characters/alydar/contour-feather.svg"
  23217. }
  23218. },
  23219. },
  23220. [
  23221. {
  23222. name: "Diplomatic",
  23223. height: math.unit(13, "feet"),
  23224. default: true
  23225. },
  23226. {
  23227. name: "Small",
  23228. height: math.unit(30, "feet")
  23229. },
  23230. {
  23231. name: "Normal",
  23232. height: math.unit(95, "feet"),
  23233. default: true
  23234. },
  23235. {
  23236. name: "Large",
  23237. height: math.unit(285, "feet")
  23238. },
  23239. {
  23240. name: "Incomprehensible",
  23241. height: math.unit(450, "megameters")
  23242. },
  23243. ]
  23244. ))
  23245. characterMakers.push(() => makeCharacter(
  23246. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23247. {
  23248. side: {
  23249. height: math.unit(11, "feet"),
  23250. weight: math.unit(1750, "kg"),
  23251. name: "Side",
  23252. image: {
  23253. source: "./media/characters/selicia/side.svg",
  23254. extra: 440 / 396,
  23255. bottom: 24.8 / 465.979
  23256. }
  23257. },
  23258. maw: {
  23259. height: math.unit(4.665, "feet"),
  23260. name: "Maw",
  23261. image: {
  23262. source: "./media/characters/selicia/maw.svg"
  23263. }
  23264. },
  23265. },
  23266. [
  23267. {
  23268. name: "Normal",
  23269. height: math.unit(11, "feet"),
  23270. default: true
  23271. },
  23272. ]
  23273. ))
  23274. characterMakers.push(() => makeCharacter(
  23275. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23276. {
  23277. side: {
  23278. height: math.unit(2 + 6 / 12, "feet"),
  23279. weight: math.unit(30, "lb"),
  23280. name: "Side",
  23281. image: {
  23282. source: "./media/characters/layla/side.svg",
  23283. extra: 244 / 188,
  23284. bottom: 18.2 / 262.1
  23285. }
  23286. },
  23287. back: {
  23288. height: math.unit(2 + 6 / 12, "feet"),
  23289. weight: math.unit(30, "lb"),
  23290. name: "Back",
  23291. image: {
  23292. source: "./media/characters/layla/back.svg",
  23293. extra: 308 / 241.5,
  23294. bottom: 8.9 / 316.8
  23295. }
  23296. },
  23297. cumming: {
  23298. height: math.unit(2 + 6 / 12, "feet"),
  23299. weight: math.unit(30, "lb"),
  23300. name: "Cumming",
  23301. image: {
  23302. source: "./media/characters/layla/cumming.svg",
  23303. extra: 342 / 279,
  23304. bottom: 595 / 938
  23305. }
  23306. },
  23307. dickFlaccid: {
  23308. height: math.unit(2.595, "feet"),
  23309. name: "Flaccid Genitals",
  23310. image: {
  23311. source: "./media/characters/layla/dick-flaccid.svg"
  23312. }
  23313. },
  23314. dickErect: {
  23315. height: math.unit(2.359, "feet"),
  23316. name: "Erect Genitals",
  23317. image: {
  23318. source: "./media/characters/layla/dick-erect.svg"
  23319. }
  23320. },
  23321. dragon: {
  23322. height: math.unit(40, "feet"),
  23323. name: "Dragon",
  23324. image: {
  23325. source: "./media/characters/layla/dragon.svg",
  23326. extra: 610/535,
  23327. bottom: 367/977
  23328. }
  23329. },
  23330. taur: {
  23331. height: math.unit(30, "feet"),
  23332. name: "Taur",
  23333. image: {
  23334. source: "./media/characters/layla/taur.svg",
  23335. extra: 1268/1199,
  23336. bottom: 112/1380
  23337. }
  23338. },
  23339. },
  23340. [
  23341. {
  23342. name: "Micro",
  23343. height: math.unit(1, "inch")
  23344. },
  23345. {
  23346. name: "Small",
  23347. height: math.unit(1, "foot")
  23348. },
  23349. {
  23350. name: "Normal",
  23351. height: math.unit(2 + 6 / 12, "feet"),
  23352. default: true
  23353. },
  23354. {
  23355. name: "Macro",
  23356. height: math.unit(200, "feet")
  23357. },
  23358. {
  23359. name: "Megamacro",
  23360. height: math.unit(1000, "miles")
  23361. },
  23362. {
  23363. name: "Planetary",
  23364. height: math.unit(8000, "miles")
  23365. },
  23366. {
  23367. name: "True Layla",
  23368. height: math.unit(200000 * 7, "multiverses")
  23369. },
  23370. ]
  23371. ))
  23372. characterMakers.push(() => makeCharacter(
  23373. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23374. {
  23375. back: {
  23376. height: math.unit(10.5, "feet"),
  23377. weight: math.unit(800, "lb"),
  23378. name: "Back",
  23379. image: {
  23380. source: "./media/characters/knox/back.svg",
  23381. extra: 1486 / 1089,
  23382. bottom: 107 / 1601.4
  23383. }
  23384. },
  23385. side: {
  23386. height: math.unit(10.5, "feet"),
  23387. weight: math.unit(800, "lb"),
  23388. name: "Side",
  23389. image: {
  23390. source: "./media/characters/knox/side.svg",
  23391. extra: 244 / 218,
  23392. bottom: 14 / 260
  23393. }
  23394. },
  23395. },
  23396. [
  23397. {
  23398. name: "Compact",
  23399. height: math.unit(10.5, "feet"),
  23400. default: true
  23401. },
  23402. {
  23403. name: "Dynamax",
  23404. height: math.unit(210, "feet")
  23405. },
  23406. {
  23407. name: "Full Macro",
  23408. height: math.unit(850, "feet")
  23409. },
  23410. ]
  23411. ))
  23412. characterMakers.push(() => makeCharacter(
  23413. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23414. {
  23415. front: {
  23416. height: math.unit(6, "feet"),
  23417. weight: math.unit(152, "lb"),
  23418. name: "Front",
  23419. image: {
  23420. source: "./media/characters/shin-pikachu/front.svg",
  23421. extra: 1854/1602,
  23422. bottom: 166/2020
  23423. }
  23424. },
  23425. hand: {
  23426. height: math.unit(1.055, "feet"),
  23427. name: "Hand",
  23428. image: {
  23429. source: "./media/characters/shin-pikachu/hand.svg"
  23430. }
  23431. },
  23432. foot: {
  23433. height: math.unit(1.1, "feet"),
  23434. name: "Foot",
  23435. image: {
  23436. source: "./media/characters/shin-pikachu/foot.svg"
  23437. }
  23438. },
  23439. collar: {
  23440. height: math.unit(0.386, "feet"),
  23441. name: "Collar",
  23442. image: {
  23443. source: "./media/characters/shin-pikachu/collar.svg"
  23444. }
  23445. },
  23446. },
  23447. [
  23448. {
  23449. name: "Smallest",
  23450. height: math.unit(0.5, "inches")
  23451. },
  23452. {
  23453. name: "Micro",
  23454. height: math.unit(6, "inches")
  23455. },
  23456. {
  23457. name: "Normal",
  23458. height: math.unit(6, "feet"),
  23459. default: true
  23460. },
  23461. {
  23462. name: "Macro",
  23463. height: math.unit(150, "feet")
  23464. },
  23465. ]
  23466. ))
  23467. characterMakers.push(() => makeCharacter(
  23468. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23469. {
  23470. front: {
  23471. height: math.unit(28, "feet"),
  23472. weight: math.unit(10500, "lb"),
  23473. name: "Front",
  23474. image: {
  23475. source: "./media/characters/kayda/front.svg",
  23476. extra: 1536 / 1428,
  23477. bottom: 68.7 / 1603
  23478. }
  23479. },
  23480. back: {
  23481. height: math.unit(28, "feet"),
  23482. weight: math.unit(10500, "lb"),
  23483. name: "Back",
  23484. image: {
  23485. source: "./media/characters/kayda/back.svg",
  23486. extra: 1557 / 1464,
  23487. bottom: 39.5 / 1597.49
  23488. }
  23489. },
  23490. dick: {
  23491. height: math.unit(3.858, "feet"),
  23492. name: "Dick",
  23493. image: {
  23494. source: "./media/characters/kayda/dick.svg"
  23495. }
  23496. },
  23497. },
  23498. [
  23499. {
  23500. name: "Macro",
  23501. height: math.unit(28, "feet"),
  23502. default: true
  23503. },
  23504. ]
  23505. ))
  23506. characterMakers.push(() => makeCharacter(
  23507. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23508. {
  23509. front: {
  23510. height: math.unit(10 + 11 / 12, "feet"),
  23511. weight: math.unit(1400, "lb"),
  23512. name: "Front",
  23513. image: {
  23514. source: "./media/characters/brian/front.svg",
  23515. extra: 737 / 692,
  23516. bottom: 55.4 / 785
  23517. }
  23518. },
  23519. },
  23520. [
  23521. {
  23522. name: "Normal",
  23523. height: math.unit(10 + 11 / 12, "feet"),
  23524. default: true
  23525. },
  23526. ]
  23527. ))
  23528. characterMakers.push(() => makeCharacter(
  23529. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23530. {
  23531. front: {
  23532. height: math.unit(5 + 8 / 12, "feet"),
  23533. weight: math.unit(140, "lb"),
  23534. name: "Front",
  23535. image: {
  23536. source: "./media/characters/khemri/front.svg",
  23537. extra: 4780 / 4059,
  23538. bottom: 80.1 / 4859.25
  23539. }
  23540. },
  23541. },
  23542. [
  23543. {
  23544. name: "Micro",
  23545. height: math.unit(6, "inches")
  23546. },
  23547. {
  23548. name: "Normal",
  23549. height: math.unit(5 + 8 / 12, "feet"),
  23550. default: true
  23551. },
  23552. ]
  23553. ))
  23554. characterMakers.push(() => makeCharacter(
  23555. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23556. {
  23557. front: {
  23558. height: math.unit(13, "feet"),
  23559. weight: math.unit(1700, "lb"),
  23560. name: "Front",
  23561. image: {
  23562. source: "./media/characters/felix-braveheart/front.svg",
  23563. extra: 1222 / 1157,
  23564. bottom: 53.2 / 1280
  23565. }
  23566. },
  23567. back: {
  23568. height: math.unit(13, "feet"),
  23569. weight: math.unit(1700, "lb"),
  23570. name: "Back",
  23571. image: {
  23572. source: "./media/characters/felix-braveheart/back.svg",
  23573. extra: 1277 / 1203,
  23574. bottom: 50.2 / 1327
  23575. }
  23576. },
  23577. feral: {
  23578. height: math.unit(6, "feet"),
  23579. weight: math.unit(400, "lb"),
  23580. name: "Feral",
  23581. image: {
  23582. source: "./media/characters/felix-braveheart/feral.svg",
  23583. extra: 682 / 625,
  23584. bottom: 6.9 / 688
  23585. }
  23586. },
  23587. },
  23588. [
  23589. {
  23590. name: "Normal",
  23591. height: math.unit(13, "feet"),
  23592. default: true
  23593. },
  23594. ]
  23595. ))
  23596. characterMakers.push(() => makeCharacter(
  23597. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23598. {
  23599. side: {
  23600. height: math.unit(5 + 11 / 12, "feet"),
  23601. weight: math.unit(1400, "lb"),
  23602. name: "Side",
  23603. image: {
  23604. source: "./media/characters/shadow-blade/side.svg",
  23605. extra: 1726 / 1267,
  23606. bottom: 58.4 / 1785
  23607. }
  23608. },
  23609. },
  23610. [
  23611. {
  23612. name: "Normal",
  23613. height: math.unit(5 + 11 / 12, "feet"),
  23614. default: true
  23615. },
  23616. ]
  23617. ))
  23618. characterMakers.push(() => makeCharacter(
  23619. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23620. {
  23621. front: {
  23622. height: math.unit(1 + 6 / 12, "feet"),
  23623. weight: math.unit(25, "lb"),
  23624. name: "Front",
  23625. image: {
  23626. source: "./media/characters/karla-halldor/front.svg",
  23627. extra: 1459 / 1383,
  23628. bottom: 12 / 1472
  23629. }
  23630. },
  23631. },
  23632. [
  23633. {
  23634. name: "Normal",
  23635. height: math.unit(1 + 6 / 12, "feet"),
  23636. default: true
  23637. },
  23638. ]
  23639. ))
  23640. characterMakers.push(() => makeCharacter(
  23641. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23642. {
  23643. front: {
  23644. height: math.unit(6 + 2 / 12, "feet"),
  23645. weight: math.unit(160, "lb"),
  23646. name: "Front",
  23647. image: {
  23648. source: "./media/characters/ariam/front.svg",
  23649. extra: 714 / 617,
  23650. bottom: 23.4 / 737,
  23651. }
  23652. },
  23653. squatting: {
  23654. height: math.unit(4.1, "feet"),
  23655. weight: math.unit(160, "lb"),
  23656. name: "Squatting",
  23657. image: {
  23658. source: "./media/characters/ariam/squatting.svg",
  23659. extra: 2617 / 2112,
  23660. bottom: 61.2 / 2681,
  23661. }
  23662. },
  23663. },
  23664. [
  23665. {
  23666. name: "Normal",
  23667. height: math.unit(6 + 2 / 12, "feet"),
  23668. default: true
  23669. },
  23670. {
  23671. name: "Normal+",
  23672. height: math.unit(4, "meters")
  23673. },
  23674. {
  23675. name: "Macro",
  23676. height: math.unit(50, "meters")
  23677. },
  23678. {
  23679. name: "Macro+",
  23680. height: math.unit(100, "meters")
  23681. },
  23682. {
  23683. name: "Megamacro",
  23684. height: math.unit(20, "km")
  23685. },
  23686. ]
  23687. ))
  23688. characterMakers.push(() => makeCharacter(
  23689. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23690. {
  23691. front: {
  23692. height: math.unit(1.67, "meters"),
  23693. weight: math.unit(140, "lb"),
  23694. name: "Front",
  23695. image: {
  23696. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23697. extra: 438 / 410,
  23698. bottom: 0.75 / 439
  23699. }
  23700. },
  23701. },
  23702. [
  23703. {
  23704. name: "Shrunken",
  23705. height: math.unit(7.6, "cm")
  23706. },
  23707. {
  23708. name: "Human Scale",
  23709. height: math.unit(1.67, "meters")
  23710. },
  23711. {
  23712. name: "Wolxi Scale",
  23713. height: math.unit(36.7, "meters"),
  23714. default: true
  23715. },
  23716. ]
  23717. ))
  23718. characterMakers.push(() => makeCharacter(
  23719. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23720. {
  23721. front: {
  23722. height: math.unit(1.73, "meters"),
  23723. weight: math.unit(240, "lb"),
  23724. name: "Front",
  23725. image: {
  23726. source: "./media/characters/izue-two-mothers/front.svg",
  23727. extra: 469 / 437,
  23728. bottom: 1.24 / 470.6
  23729. }
  23730. },
  23731. },
  23732. [
  23733. {
  23734. name: "Shrunken",
  23735. height: math.unit(7.86, "cm")
  23736. },
  23737. {
  23738. name: "Human Scale",
  23739. height: math.unit(1.73, "meters")
  23740. },
  23741. {
  23742. name: "Wolxi Scale",
  23743. height: math.unit(38, "meters"),
  23744. default: true
  23745. },
  23746. ]
  23747. ))
  23748. characterMakers.push(() => makeCharacter(
  23749. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23750. {
  23751. front: {
  23752. height: math.unit(1.55, "meters"),
  23753. weight: math.unit(120, "lb"),
  23754. name: "Front",
  23755. image: {
  23756. source: "./media/characters/teeku-love-shack/front.svg",
  23757. extra: 387 / 362,
  23758. bottom: 1.51 / 388
  23759. }
  23760. },
  23761. },
  23762. [
  23763. {
  23764. name: "Shrunken",
  23765. height: math.unit(7, "cm")
  23766. },
  23767. {
  23768. name: "Human Scale",
  23769. height: math.unit(1.55, "meters")
  23770. },
  23771. {
  23772. name: "Wolxi Scale",
  23773. height: math.unit(34.1, "meters"),
  23774. default: true
  23775. },
  23776. ]
  23777. ))
  23778. characterMakers.push(() => makeCharacter(
  23779. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23780. {
  23781. front: {
  23782. height: math.unit(1.83, "meters"),
  23783. weight: math.unit(135, "lb"),
  23784. name: "Front",
  23785. image: {
  23786. source: "./media/characters/dejma-the-red/front.svg",
  23787. extra: 480 / 458,
  23788. bottom: 1.8 / 482
  23789. }
  23790. },
  23791. },
  23792. [
  23793. {
  23794. name: "Shrunken",
  23795. height: math.unit(8.3, "cm")
  23796. },
  23797. {
  23798. name: "Human Scale",
  23799. height: math.unit(1.83, "meters")
  23800. },
  23801. {
  23802. name: "Wolxi Scale",
  23803. height: math.unit(40, "meters"),
  23804. default: true
  23805. },
  23806. ]
  23807. ))
  23808. characterMakers.push(() => makeCharacter(
  23809. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23810. {
  23811. front: {
  23812. height: math.unit(1.78, "meters"),
  23813. weight: math.unit(65, "kg"),
  23814. name: "Front",
  23815. image: {
  23816. source: "./media/characters/aki/front.svg",
  23817. extra: 452 / 415
  23818. }
  23819. },
  23820. frontNsfw: {
  23821. height: math.unit(1.78, "meters"),
  23822. weight: math.unit(65, "kg"),
  23823. name: "Front (NSFW)",
  23824. image: {
  23825. source: "./media/characters/aki/front-nsfw.svg",
  23826. extra: 452 / 415
  23827. }
  23828. },
  23829. back: {
  23830. height: math.unit(1.78, "meters"),
  23831. weight: math.unit(65, "kg"),
  23832. name: "Back",
  23833. image: {
  23834. source: "./media/characters/aki/back.svg",
  23835. extra: 452 / 415
  23836. }
  23837. },
  23838. rump: {
  23839. height: math.unit(2.05, "feet"),
  23840. name: "Rump",
  23841. image: {
  23842. source: "./media/characters/aki/rump.svg"
  23843. }
  23844. },
  23845. dick: {
  23846. height: math.unit(0.95, "feet"),
  23847. name: "Dick",
  23848. image: {
  23849. source: "./media/characters/aki/dick.svg"
  23850. }
  23851. },
  23852. },
  23853. [
  23854. {
  23855. name: "Micro",
  23856. height: math.unit(15, "cm")
  23857. },
  23858. {
  23859. name: "Normal",
  23860. height: math.unit(178, "cm"),
  23861. default: true
  23862. },
  23863. {
  23864. name: "Macro",
  23865. height: math.unit(214, "m")
  23866. },
  23867. {
  23868. name: "Macro+",
  23869. height: math.unit(534, "m")
  23870. },
  23871. ]
  23872. ))
  23873. characterMakers.push(() => makeCharacter(
  23874. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23875. {
  23876. front: {
  23877. height: math.unit(5 + 5 / 12, "feet"),
  23878. weight: math.unit(120, "lb"),
  23879. name: "Front",
  23880. image: {
  23881. source: "./media/characters/ari/front.svg",
  23882. extra: 714.5 / 682,
  23883. bottom: 8 / 722.5
  23884. }
  23885. },
  23886. },
  23887. [
  23888. {
  23889. name: "Normal",
  23890. height: math.unit(5 + 5 / 12, "feet")
  23891. },
  23892. {
  23893. name: "Macro",
  23894. height: math.unit(100, "feet"),
  23895. default: true
  23896. },
  23897. {
  23898. name: "Megamacro",
  23899. height: math.unit(100, "miles")
  23900. },
  23901. {
  23902. name: "Gigamacro",
  23903. height: math.unit(80000, "miles")
  23904. },
  23905. ]
  23906. ))
  23907. characterMakers.push(() => makeCharacter(
  23908. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23909. {
  23910. side: {
  23911. height: math.unit(9, "feet"),
  23912. weight: math.unit(400, "kg"),
  23913. name: "Side",
  23914. image: {
  23915. source: "./media/characters/bolt/side.svg",
  23916. extra: 1126 / 896,
  23917. bottom: 60 / 1187.3,
  23918. }
  23919. },
  23920. },
  23921. [
  23922. {
  23923. name: "Micro",
  23924. height: math.unit(5, "inches")
  23925. },
  23926. {
  23927. name: "Normal",
  23928. height: math.unit(9, "feet"),
  23929. default: true
  23930. },
  23931. {
  23932. name: "Macro",
  23933. height: math.unit(700, "feet")
  23934. },
  23935. {
  23936. name: "Max Size",
  23937. height: math.unit(1.52e22, "yottameters")
  23938. },
  23939. ]
  23940. ))
  23941. characterMakers.push(() => makeCharacter(
  23942. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23943. {
  23944. front: {
  23945. height: math.unit(4.53, "meters"),
  23946. weight: math.unit(3, "tons"),
  23947. name: "Front",
  23948. image: {
  23949. source: "./media/characters/draekon-sylviar/front.svg",
  23950. extra: 1228 / 1068,
  23951. bottom: 41 / 1270
  23952. }
  23953. },
  23954. tail: {
  23955. height: math.unit(1.772, "meter"),
  23956. name: "Tail",
  23957. image: {
  23958. source: "./media/characters/draekon-sylviar/tail.svg"
  23959. }
  23960. },
  23961. head: {
  23962. height: math.unit(1.331, "meter"),
  23963. name: "Head",
  23964. image: {
  23965. source: "./media/characters/draekon-sylviar/head.svg"
  23966. }
  23967. },
  23968. hand: {
  23969. height: math.unit(0.564, "meter"),
  23970. name: "Hand",
  23971. image: {
  23972. source: "./media/characters/draekon-sylviar/hand.svg"
  23973. }
  23974. },
  23975. foot: {
  23976. height: math.unit(0.621, "meter"),
  23977. name: "Foot",
  23978. image: {
  23979. source: "./media/characters/draekon-sylviar/foot.svg",
  23980. bottom: 32 / 324
  23981. }
  23982. },
  23983. dick: {
  23984. height: math.unit(61, "cm"),
  23985. name: "Dick",
  23986. image: {
  23987. source: "./media/characters/draekon-sylviar/dick.svg"
  23988. }
  23989. },
  23990. dickseparated: {
  23991. height: math.unit(61, "cm"),
  23992. name: "Dick-separated",
  23993. image: {
  23994. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23995. }
  23996. },
  23997. },
  23998. [
  23999. {
  24000. name: "Small",
  24001. height: math.unit(4.53 / 2, "meters"),
  24002. default: true
  24003. },
  24004. {
  24005. name: "Normal",
  24006. height: math.unit(4.53, "meters"),
  24007. default: true
  24008. },
  24009. {
  24010. name: "Large",
  24011. height: math.unit(4.53 * 2, "meters"),
  24012. },
  24013. ]
  24014. ))
  24015. characterMakers.push(() => makeCharacter(
  24016. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24017. {
  24018. front: {
  24019. height: math.unit(6 + 2 / 12, "feet"),
  24020. weight: math.unit(180, "lb"),
  24021. name: "Front",
  24022. image: {
  24023. source: "./media/characters/brawler/front.svg",
  24024. extra: 3301 / 3027,
  24025. bottom: 138 / 3439
  24026. }
  24027. },
  24028. },
  24029. [
  24030. {
  24031. name: "Normal",
  24032. height: math.unit(6 + 2 / 12, "feet"),
  24033. default: true
  24034. },
  24035. ]
  24036. ))
  24037. characterMakers.push(() => makeCharacter(
  24038. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24039. {
  24040. front: {
  24041. height: math.unit(11, "feet"),
  24042. weight: math.unit(1000, "lb"),
  24043. name: "Front",
  24044. image: {
  24045. source: "./media/characters/alex/front.svg",
  24046. bottom: 44.5 / 620
  24047. }
  24048. },
  24049. },
  24050. [
  24051. {
  24052. name: "Micro",
  24053. height: math.unit(5, "inches")
  24054. },
  24055. {
  24056. name: "Normal",
  24057. height: math.unit(11, "feet"),
  24058. default: true
  24059. },
  24060. {
  24061. name: "Macro",
  24062. height: math.unit(9.5e9, "feet")
  24063. },
  24064. {
  24065. name: "Max Size",
  24066. height: math.unit(1.4e283, "yottameters")
  24067. },
  24068. ]
  24069. ))
  24070. characterMakers.push(() => makeCharacter(
  24071. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24072. {
  24073. female: {
  24074. height: math.unit(29.9, "m"),
  24075. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24076. name: "Female",
  24077. image: {
  24078. source: "./media/characters/zenari/female.svg",
  24079. extra: 3281.6 / 3217,
  24080. bottom: 72.2 / 3353
  24081. }
  24082. },
  24083. male: {
  24084. height: math.unit(27.7, "m"),
  24085. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24086. name: "Male",
  24087. image: {
  24088. source: "./media/characters/zenari/male.svg",
  24089. extra: 3008 / 2991,
  24090. bottom: 54.6 / 3069
  24091. }
  24092. },
  24093. },
  24094. [
  24095. {
  24096. name: "Macro",
  24097. height: math.unit(29.7, "meters"),
  24098. default: true
  24099. },
  24100. ]
  24101. ))
  24102. characterMakers.push(() => makeCharacter(
  24103. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24104. {
  24105. female: {
  24106. height: math.unit(23.8, "m"),
  24107. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24108. name: "Female",
  24109. image: {
  24110. source: "./media/characters/mactarian/female.svg",
  24111. extra: 2662 / 2569,
  24112. bottom: 73 / 2736
  24113. }
  24114. },
  24115. male: {
  24116. height: math.unit(23.8, "m"),
  24117. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24118. name: "Male",
  24119. image: {
  24120. source: "./media/characters/mactarian/male.svg",
  24121. extra: 2673 / 2600,
  24122. bottom: 76 / 2750
  24123. }
  24124. },
  24125. },
  24126. [
  24127. {
  24128. name: "Macro",
  24129. height: math.unit(23.8, "meters"),
  24130. default: true
  24131. },
  24132. ]
  24133. ))
  24134. characterMakers.push(() => makeCharacter(
  24135. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24136. {
  24137. female: {
  24138. height: math.unit(19.3, "m"),
  24139. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24140. name: "Female",
  24141. image: {
  24142. source: "./media/characters/umok/female.svg",
  24143. extra: 2186 / 2078,
  24144. bottom: 87 / 2277
  24145. }
  24146. },
  24147. male: {
  24148. height: math.unit(19.5, "m"),
  24149. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24150. name: "Male",
  24151. image: {
  24152. source: "./media/characters/umok/male.svg",
  24153. extra: 2233 / 2140,
  24154. bottom: 24.4 / 2258
  24155. }
  24156. },
  24157. },
  24158. [
  24159. {
  24160. name: "Macro",
  24161. height: math.unit(19.3, "meters"),
  24162. default: true
  24163. },
  24164. ]
  24165. ))
  24166. characterMakers.push(() => makeCharacter(
  24167. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24168. {
  24169. female: {
  24170. height: math.unit(26.15, "m"),
  24171. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24172. name: "Female",
  24173. image: {
  24174. source: "./media/characters/joraxian/female.svg",
  24175. extra: 2912 / 2824,
  24176. bottom: 36 / 2956
  24177. }
  24178. },
  24179. male: {
  24180. height: math.unit(25.4, "m"),
  24181. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24182. name: "Male",
  24183. image: {
  24184. source: "./media/characters/joraxian/male.svg",
  24185. extra: 2877 / 2721,
  24186. bottom: 82 / 2967
  24187. }
  24188. },
  24189. },
  24190. [
  24191. {
  24192. name: "Macro",
  24193. height: math.unit(26.15, "meters"),
  24194. default: true
  24195. },
  24196. ]
  24197. ))
  24198. characterMakers.push(() => makeCharacter(
  24199. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24200. {
  24201. female: {
  24202. height: math.unit(21.6, "m"),
  24203. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24204. name: "Female",
  24205. image: {
  24206. source: "./media/characters/sthara/female.svg",
  24207. extra: 2516 / 2347,
  24208. bottom: 21.5 / 2537
  24209. }
  24210. },
  24211. male: {
  24212. height: math.unit(24, "m"),
  24213. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24214. name: "Male",
  24215. image: {
  24216. source: "./media/characters/sthara/male.svg",
  24217. extra: 2732 / 2607,
  24218. bottom: 23 / 2732
  24219. }
  24220. },
  24221. },
  24222. [
  24223. {
  24224. name: "Macro",
  24225. height: math.unit(21.6, "meters"),
  24226. default: true
  24227. },
  24228. ]
  24229. ))
  24230. characterMakers.push(() => makeCharacter(
  24231. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24232. {
  24233. front: {
  24234. height: math.unit(6 + 4 / 12, "feet"),
  24235. weight: math.unit(175, "lb"),
  24236. name: "Front",
  24237. image: {
  24238. source: "./media/characters/luka-bryzant/front.svg",
  24239. extra: 311 / 289,
  24240. bottom: 4 / 315
  24241. }
  24242. },
  24243. back: {
  24244. height: math.unit(6 + 4 / 12, "feet"),
  24245. weight: math.unit(175, "lb"),
  24246. name: "Back",
  24247. image: {
  24248. source: "./media/characters/luka-bryzant/back.svg",
  24249. extra: 311 / 289,
  24250. bottom: 3.8 / 313.7
  24251. }
  24252. },
  24253. },
  24254. [
  24255. {
  24256. name: "Micro",
  24257. height: math.unit(10, "inches")
  24258. },
  24259. {
  24260. name: "Normal",
  24261. height: math.unit(6 + 4 / 12, "feet"),
  24262. default: true
  24263. },
  24264. {
  24265. name: "Large",
  24266. height: math.unit(12, "feet")
  24267. },
  24268. ]
  24269. ))
  24270. characterMakers.push(() => makeCharacter(
  24271. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24272. {
  24273. front: {
  24274. height: math.unit(5 + 7 / 12, "feet"),
  24275. weight: math.unit(185, "lb"),
  24276. name: "Front",
  24277. image: {
  24278. source: "./media/characters/aman-aquila/front.svg",
  24279. extra: 1013 / 976,
  24280. bottom: 45.6 / 1057
  24281. }
  24282. },
  24283. side: {
  24284. height: math.unit(5 + 7 / 12, "feet"),
  24285. weight: math.unit(185, "lb"),
  24286. name: "Side",
  24287. image: {
  24288. source: "./media/characters/aman-aquila/side.svg",
  24289. extra: 1054 / 1011,
  24290. bottom: 15 / 1070
  24291. }
  24292. },
  24293. back: {
  24294. height: math.unit(5 + 7 / 12, "feet"),
  24295. weight: math.unit(185, "lb"),
  24296. name: "Back",
  24297. image: {
  24298. source: "./media/characters/aman-aquila/back.svg",
  24299. extra: 1026 / 970,
  24300. bottom: 12 / 1039
  24301. }
  24302. },
  24303. head: {
  24304. height: math.unit(1.211, "feet"),
  24305. name: "Head",
  24306. image: {
  24307. source: "./media/characters/aman-aquila/head.svg",
  24308. }
  24309. },
  24310. },
  24311. [
  24312. {
  24313. name: "Minimicro",
  24314. height: math.unit(0.057, "inches")
  24315. },
  24316. {
  24317. name: "Micro",
  24318. height: math.unit(7, "inches")
  24319. },
  24320. {
  24321. name: "Mini",
  24322. height: math.unit(3 + 7 / 12, "feet")
  24323. },
  24324. {
  24325. name: "Normal",
  24326. height: math.unit(5 + 7 / 12, "feet"),
  24327. default: true
  24328. },
  24329. {
  24330. name: "Macro",
  24331. height: math.unit(157 + 7 / 12, "feet")
  24332. },
  24333. {
  24334. name: "Megamacro",
  24335. height: math.unit(1557 + 7 / 12, "feet")
  24336. },
  24337. {
  24338. name: "Gigamacro",
  24339. height: math.unit(15557 + 7 / 12, "feet")
  24340. },
  24341. ]
  24342. ))
  24343. characterMakers.push(() => makeCharacter(
  24344. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24345. {
  24346. front: {
  24347. height: math.unit(3 + 2 / 12, "inches"),
  24348. weight: math.unit(0.3, "ounces"),
  24349. name: "Front",
  24350. image: {
  24351. source: "./media/characters/hiphae/front.svg",
  24352. extra: 1931 / 1683,
  24353. bottom: 24 / 1955
  24354. }
  24355. },
  24356. },
  24357. [
  24358. {
  24359. name: "Normal",
  24360. height: math.unit(3 + 1 / 2, "inches"),
  24361. default: true
  24362. },
  24363. ]
  24364. ))
  24365. characterMakers.push(() => makeCharacter(
  24366. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24367. {
  24368. front: {
  24369. height: math.unit(5 + 10 / 12, "feet"),
  24370. weight: math.unit(165, "lb"),
  24371. name: "Front",
  24372. image: {
  24373. source: "./media/characters/nicky/front.svg",
  24374. extra: 3144 / 2886,
  24375. bottom: 45.6 / 3192
  24376. }
  24377. },
  24378. back: {
  24379. height: math.unit(5 + 10 / 12, "feet"),
  24380. weight: math.unit(165, "lb"),
  24381. name: "Back",
  24382. image: {
  24383. source: "./media/characters/nicky/back.svg",
  24384. extra: 3055 / 2804,
  24385. bottom: 28.4 / 3087
  24386. }
  24387. },
  24388. frontclothed: {
  24389. height: math.unit(5 + 10 / 12, "feet"),
  24390. weight: math.unit(165, "lb"),
  24391. name: "Front-clothed",
  24392. image: {
  24393. source: "./media/characters/nicky/front-clothed.svg",
  24394. extra: 3184.9 / 2926.9,
  24395. bottom: 86.5 / 3239.9
  24396. }
  24397. },
  24398. foot: {
  24399. height: math.unit(1.16, "feet"),
  24400. name: "Foot",
  24401. image: {
  24402. source: "./media/characters/nicky/foot.svg"
  24403. }
  24404. },
  24405. feet: {
  24406. height: math.unit(1.34, "feet"),
  24407. name: "Feet",
  24408. image: {
  24409. source: "./media/characters/nicky/feet.svg"
  24410. }
  24411. },
  24412. maw: {
  24413. height: math.unit(0.9, "feet"),
  24414. name: "Maw",
  24415. image: {
  24416. source: "./media/characters/nicky/maw.svg"
  24417. }
  24418. },
  24419. },
  24420. [
  24421. {
  24422. name: "Normal",
  24423. height: math.unit(5 + 10 / 12, "feet"),
  24424. default: true
  24425. },
  24426. {
  24427. name: "Macro",
  24428. height: math.unit(60, "feet")
  24429. },
  24430. {
  24431. name: "Megamacro",
  24432. height: math.unit(1, "mile")
  24433. },
  24434. ]
  24435. ))
  24436. characterMakers.push(() => makeCharacter(
  24437. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24438. {
  24439. side: {
  24440. height: math.unit(10, "feet"),
  24441. weight: math.unit(600, "lb"),
  24442. name: "Side",
  24443. image: {
  24444. source: "./media/characters/blair/side.svg",
  24445. bottom: 16.6 / 475,
  24446. extra: 458 / 431
  24447. }
  24448. },
  24449. },
  24450. [
  24451. {
  24452. name: "Micro",
  24453. height: math.unit(8, "inches")
  24454. },
  24455. {
  24456. name: "Normal",
  24457. height: math.unit(10, "feet"),
  24458. default: true
  24459. },
  24460. {
  24461. name: "Macro",
  24462. height: math.unit(180, "feet")
  24463. },
  24464. ]
  24465. ))
  24466. characterMakers.push(() => makeCharacter(
  24467. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24468. {
  24469. front: {
  24470. height: math.unit(5 + 4 / 12, "feet"),
  24471. weight: math.unit(125, "lb"),
  24472. name: "Front",
  24473. image: {
  24474. source: "./media/characters/fisher/front.svg",
  24475. extra: 444 / 390,
  24476. bottom: 2 / 444.8
  24477. }
  24478. },
  24479. },
  24480. [
  24481. {
  24482. name: "Micro",
  24483. height: math.unit(4, "inches")
  24484. },
  24485. {
  24486. name: "Normal",
  24487. height: math.unit(5 + 4 / 12, "feet"),
  24488. default: true
  24489. },
  24490. {
  24491. name: "Macro",
  24492. height: math.unit(100, "feet")
  24493. },
  24494. ]
  24495. ))
  24496. characterMakers.push(() => makeCharacter(
  24497. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24498. {
  24499. front: {
  24500. height: math.unit(6.71, "feet"),
  24501. weight: math.unit(200, "lb"),
  24502. capacity: math.unit(1000000, "people"),
  24503. name: "Front",
  24504. image: {
  24505. source: "./media/characters/gliss/front.svg",
  24506. extra: 2347 / 2231,
  24507. bottom: 113 / 2462
  24508. }
  24509. },
  24510. hammerspaceSize: {
  24511. height: math.unit(6.71 * 717, "feet"),
  24512. weight: math.unit(200, "lb"),
  24513. capacity: math.unit(1000000, "people"),
  24514. name: "Hammerspace Size",
  24515. image: {
  24516. source: "./media/characters/gliss/front.svg",
  24517. extra: 2347 / 2231,
  24518. bottom: 113 / 2462
  24519. }
  24520. },
  24521. },
  24522. [
  24523. {
  24524. name: "Normal",
  24525. height: math.unit(6.71, "feet"),
  24526. default: true
  24527. },
  24528. ]
  24529. ))
  24530. characterMakers.push(() => makeCharacter(
  24531. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24532. {
  24533. side: {
  24534. height: math.unit(1.44, "m"),
  24535. weight: math.unit(80, "kg"),
  24536. name: "Side",
  24537. image: {
  24538. source: "./media/characters/dune-anderson/side.svg",
  24539. bottom: 49 / 1426
  24540. }
  24541. },
  24542. },
  24543. [
  24544. {
  24545. name: "Wolf-sized",
  24546. height: math.unit(1.44, "meters")
  24547. },
  24548. {
  24549. name: "Normal",
  24550. height: math.unit(5.05, "meters"),
  24551. default: true
  24552. },
  24553. {
  24554. name: "Big",
  24555. height: math.unit(14.4, "meters")
  24556. },
  24557. {
  24558. name: "Huge",
  24559. height: math.unit(144, "meters")
  24560. },
  24561. ]
  24562. ))
  24563. characterMakers.push(() => makeCharacter(
  24564. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24565. {
  24566. front: {
  24567. height: math.unit(7, "feet"),
  24568. weight: math.unit(425, "lb"),
  24569. name: "Front",
  24570. image: {
  24571. source: "./media/characters/hind/front.svg",
  24572. extra: 2091 / 1860,
  24573. bottom: 129 / 2220
  24574. }
  24575. },
  24576. back: {
  24577. height: math.unit(7, "feet"),
  24578. weight: math.unit(425, "lb"),
  24579. name: "Back",
  24580. image: {
  24581. source: "./media/characters/hind/back.svg",
  24582. extra: 2091 / 1860,
  24583. bottom: 24.6 / 2309
  24584. }
  24585. },
  24586. tail: {
  24587. height: math.unit(2.8, "feet"),
  24588. name: "Tail",
  24589. image: {
  24590. source: "./media/characters/hind/tail.svg"
  24591. }
  24592. },
  24593. head: {
  24594. height: math.unit(2.55, "feet"),
  24595. name: "Head",
  24596. image: {
  24597. source: "./media/characters/hind/head.svg"
  24598. }
  24599. },
  24600. },
  24601. [
  24602. {
  24603. name: "XS",
  24604. height: math.unit(0.7, "feet")
  24605. },
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(7, "feet"),
  24609. default: true
  24610. },
  24611. {
  24612. name: "XL",
  24613. height: math.unit(70, "feet")
  24614. },
  24615. ]
  24616. ))
  24617. characterMakers.push(() => makeCharacter(
  24618. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24619. {
  24620. front: {
  24621. height: math.unit(6, "feet"),
  24622. weight: math.unit(150, "lb"),
  24623. name: "Front",
  24624. image: {
  24625. source: "./media/characters/dylan-skaven/front.svg",
  24626. extra: 2318 / 2063,
  24627. bottom: 93.4 / 2410
  24628. }
  24629. },
  24630. },
  24631. [
  24632. {
  24633. name: "Nano",
  24634. height: math.unit(1, "mm")
  24635. },
  24636. {
  24637. name: "Micro",
  24638. height: math.unit(1, "cm")
  24639. },
  24640. {
  24641. name: "Normal",
  24642. height: math.unit(2.1, "meters"),
  24643. default: true
  24644. },
  24645. ]
  24646. ))
  24647. characterMakers.push(() => makeCharacter(
  24648. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24649. {
  24650. front: {
  24651. height: math.unit(7 + 5 / 12, "feet"),
  24652. weight: math.unit(357, "lb"),
  24653. name: "Front",
  24654. image: {
  24655. source: "./media/characters/solex-draconov/front.svg",
  24656. extra: 1993 / 1865,
  24657. bottom: 117 / 2111
  24658. }
  24659. },
  24660. },
  24661. [
  24662. {
  24663. name: "Natural Height",
  24664. height: math.unit(7 + 5 / 12, "feet"),
  24665. default: true
  24666. },
  24667. {
  24668. name: "Macro",
  24669. height: math.unit(350, "feet")
  24670. },
  24671. {
  24672. name: "Macro+",
  24673. height: math.unit(1000, "feet")
  24674. },
  24675. {
  24676. name: "Megamacro",
  24677. height: math.unit(20, "km")
  24678. },
  24679. {
  24680. name: "Megamacro+",
  24681. height: math.unit(1000, "km")
  24682. },
  24683. {
  24684. name: "Gigamacro",
  24685. height: math.unit(2.5, "Gm")
  24686. },
  24687. {
  24688. name: "Teramacro",
  24689. height: math.unit(15, "Tm")
  24690. },
  24691. {
  24692. name: "Galactic",
  24693. height: math.unit(30, "Zm")
  24694. },
  24695. {
  24696. name: "Universal",
  24697. height: math.unit(21000, "Ym")
  24698. },
  24699. {
  24700. name: "Omniversal",
  24701. height: math.unit(9.861e50, "Ym")
  24702. },
  24703. {
  24704. name: "Existential",
  24705. height: math.unit(1e300, "meters")
  24706. },
  24707. ]
  24708. ))
  24709. characterMakers.push(() => makeCharacter(
  24710. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24711. {
  24712. side: {
  24713. height: math.unit(25, "feet"),
  24714. weight: math.unit(90000, "lb"),
  24715. name: "Side",
  24716. image: {
  24717. source: "./media/characters/mandarax/side.svg",
  24718. extra: 614 / 332,
  24719. bottom: 55 / 630
  24720. }
  24721. },
  24722. head: {
  24723. height: math.unit(11.4, "feet"),
  24724. name: "Head",
  24725. image: {
  24726. source: "./media/characters/mandarax/head.svg"
  24727. }
  24728. },
  24729. belly: {
  24730. height: math.unit(33, "feet"),
  24731. name: "Belly",
  24732. capacity: math.unit(500, "people"),
  24733. image: {
  24734. source: "./media/characters/mandarax/belly.svg"
  24735. }
  24736. },
  24737. dick: {
  24738. height: math.unit(8.46, "feet"),
  24739. name: "Dick",
  24740. image: {
  24741. source: "./media/characters/mandarax/dick.svg"
  24742. }
  24743. },
  24744. top: {
  24745. height: math.unit(28, "meters"),
  24746. name: "Top",
  24747. image: {
  24748. source: "./media/characters/mandarax/top.svg"
  24749. }
  24750. },
  24751. },
  24752. [
  24753. {
  24754. name: "Normal",
  24755. height: math.unit(25, "feet"),
  24756. default: true
  24757. },
  24758. ]
  24759. ))
  24760. characterMakers.push(() => makeCharacter(
  24761. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24762. {
  24763. front: {
  24764. height: math.unit(5, "feet"),
  24765. weight: math.unit(90, "lb"),
  24766. name: "Front",
  24767. image: {
  24768. source: "./media/characters/pixil/front.svg",
  24769. extra: 2000 / 1618,
  24770. bottom: 12.3 / 2011
  24771. }
  24772. },
  24773. },
  24774. [
  24775. {
  24776. name: "Normal",
  24777. height: math.unit(5, "feet"),
  24778. default: true
  24779. },
  24780. {
  24781. name: "Megamacro",
  24782. height: math.unit(10, "miles"),
  24783. },
  24784. ]
  24785. ))
  24786. characterMakers.push(() => makeCharacter(
  24787. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24788. {
  24789. front: {
  24790. height: math.unit(7 + 2 / 12, "feet"),
  24791. weight: math.unit(200, "lb"),
  24792. name: "Front",
  24793. image: {
  24794. source: "./media/characters/angel/front.svg",
  24795. extra: 1830 / 1737,
  24796. bottom: 22.6 / 1854,
  24797. }
  24798. },
  24799. },
  24800. [
  24801. {
  24802. name: "Normal",
  24803. height: math.unit(7 + 2 / 12, "feet"),
  24804. default: true
  24805. },
  24806. {
  24807. name: "Macro",
  24808. height: math.unit(1000, "feet")
  24809. },
  24810. {
  24811. name: "Megamacro",
  24812. height: math.unit(2, "miles")
  24813. },
  24814. {
  24815. name: "Gigamacro",
  24816. height: math.unit(20, "earths")
  24817. },
  24818. ]
  24819. ))
  24820. characterMakers.push(() => makeCharacter(
  24821. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24822. {
  24823. front: {
  24824. height: math.unit(5, "feet"),
  24825. weight: math.unit(180, "lb"),
  24826. name: "Front",
  24827. image: {
  24828. source: "./media/characters/mekana/front.svg",
  24829. extra: 1671 / 1605,
  24830. bottom: 3.5 / 1691
  24831. }
  24832. },
  24833. side: {
  24834. height: math.unit(5, "feet"),
  24835. weight: math.unit(180, "lb"),
  24836. name: "Side",
  24837. image: {
  24838. source: "./media/characters/mekana/side.svg",
  24839. extra: 1671 / 1605,
  24840. bottom: 3.5 / 1691
  24841. }
  24842. },
  24843. back: {
  24844. height: math.unit(5, "feet"),
  24845. weight: math.unit(180, "lb"),
  24846. name: "Back",
  24847. image: {
  24848. source: "./media/characters/mekana/back.svg",
  24849. extra: 1671 / 1605,
  24850. bottom: 3.5 / 1691
  24851. }
  24852. },
  24853. },
  24854. [
  24855. {
  24856. name: "Normal",
  24857. height: math.unit(5, "feet"),
  24858. default: true
  24859. },
  24860. ]
  24861. ))
  24862. characterMakers.push(() => makeCharacter(
  24863. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24864. {
  24865. front: {
  24866. height: math.unit(4 + 6 / 12, "feet"),
  24867. weight: math.unit(80, "lb"),
  24868. name: "Front",
  24869. image: {
  24870. source: "./media/characters/pixie/front.svg",
  24871. extra: 1924 / 1825,
  24872. bottom: 22.4 / 1946
  24873. }
  24874. },
  24875. },
  24876. [
  24877. {
  24878. name: "Normal",
  24879. height: math.unit(4 + 6 / 12, "feet"),
  24880. default: true
  24881. },
  24882. {
  24883. name: "Macro",
  24884. height: math.unit(40, "feet")
  24885. },
  24886. ]
  24887. ))
  24888. characterMakers.push(() => makeCharacter(
  24889. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24890. {
  24891. front: {
  24892. height: math.unit(2.1, "meters"),
  24893. weight: math.unit(200, "lb"),
  24894. name: "Front",
  24895. image: {
  24896. source: "./media/characters/the-lascivious/front.svg",
  24897. extra: 1 / 0.893,
  24898. bottom: 3.5 / 573.7
  24899. }
  24900. },
  24901. },
  24902. [
  24903. {
  24904. name: "Human Scale",
  24905. height: math.unit(2.1, "meters")
  24906. },
  24907. {
  24908. name: "Wolxi Scale",
  24909. height: math.unit(46.2, "m"),
  24910. default: true
  24911. },
  24912. {
  24913. name: "Boinker of Buildings",
  24914. height: math.unit(10, "km")
  24915. },
  24916. {
  24917. name: "Shagger of Skyscrapers",
  24918. height: math.unit(40, "km")
  24919. },
  24920. {
  24921. name: "Banger of Boroughs",
  24922. height: math.unit(4000, "km")
  24923. },
  24924. {
  24925. name: "Screwer of States",
  24926. height: math.unit(100000, "km")
  24927. },
  24928. {
  24929. name: "Pounder of Planets",
  24930. height: math.unit(2000000, "km")
  24931. },
  24932. ]
  24933. ))
  24934. characterMakers.push(() => makeCharacter(
  24935. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24936. {
  24937. front: {
  24938. height: math.unit(6, "feet"),
  24939. weight: math.unit(150, "lb"),
  24940. name: "Front",
  24941. image: {
  24942. source: "./media/characters/aj/front.svg",
  24943. extra: 2039 / 1562,
  24944. bottom: 40 / 2079
  24945. }
  24946. },
  24947. },
  24948. [
  24949. {
  24950. name: "Normal",
  24951. height: math.unit(11 + 6 / 12, "feet"),
  24952. default: true
  24953. },
  24954. {
  24955. name: "Megamacro",
  24956. height: math.unit(60, "megameters")
  24957. },
  24958. ]
  24959. ))
  24960. characterMakers.push(() => makeCharacter(
  24961. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24962. {
  24963. side: {
  24964. height: math.unit(31 + 8 / 12, "feet"),
  24965. weight: math.unit(75000, "kg"),
  24966. name: "Side",
  24967. image: {
  24968. source: "./media/characters/koros/side.svg",
  24969. extra: 1442 / 1297,
  24970. bottom: 122.7 / 1562
  24971. }
  24972. },
  24973. dicksKingsCrown: {
  24974. height: math.unit(6, "feet"),
  24975. name: "Dicks (King's Crown)",
  24976. image: {
  24977. source: "./media/characters/koros/dicks-kings-crown.svg"
  24978. }
  24979. },
  24980. dicksTailSet: {
  24981. height: math.unit(3, "feet"),
  24982. name: "Dicks (Tail Set)",
  24983. image: {
  24984. source: "./media/characters/koros/dicks-tail-set.svg"
  24985. }
  24986. },
  24987. dickCumming: {
  24988. height: math.unit(7.98, "feet"),
  24989. name: "Dick (Cumming)",
  24990. image: {
  24991. source: "./media/characters/koros/dick-cumming.svg"
  24992. }
  24993. },
  24994. dicksBack: {
  24995. height: math.unit(5.9, "feet"),
  24996. name: "Dicks (Back)",
  24997. image: {
  24998. source: "./media/characters/koros/dicks-back.svg"
  24999. }
  25000. },
  25001. dicksFront: {
  25002. height: math.unit(3.72, "feet"),
  25003. name: "Dicks (Front)",
  25004. image: {
  25005. source: "./media/characters/koros/dicks-front.svg"
  25006. }
  25007. },
  25008. dicksPeeking: {
  25009. height: math.unit(3.0, "feet"),
  25010. name: "Dicks (Peeking)",
  25011. image: {
  25012. source: "./media/characters/koros/dicks-peeking.svg"
  25013. }
  25014. },
  25015. eye: {
  25016. height: math.unit(1.7, "feet"),
  25017. name: "Eye",
  25018. image: {
  25019. source: "./media/characters/koros/eye.svg"
  25020. }
  25021. },
  25022. headFront: {
  25023. height: math.unit(11.69, "feet"),
  25024. name: "Head (Front)",
  25025. image: {
  25026. source: "./media/characters/koros/head-front.svg"
  25027. }
  25028. },
  25029. headSide: {
  25030. height: math.unit(14, "feet"),
  25031. name: "Head (Side)",
  25032. image: {
  25033. source: "./media/characters/koros/head-side.svg"
  25034. }
  25035. },
  25036. leg: {
  25037. height: math.unit(17, "feet"),
  25038. name: "Leg",
  25039. image: {
  25040. source: "./media/characters/koros/leg.svg"
  25041. }
  25042. },
  25043. mawSide: {
  25044. height: math.unit(12.8, "feet"),
  25045. name: "Maw (Side)",
  25046. image: {
  25047. source: "./media/characters/koros/maw-side.svg"
  25048. }
  25049. },
  25050. mawSpitting: {
  25051. height: math.unit(17, "feet"),
  25052. name: "Maw (Spitting)",
  25053. image: {
  25054. source: "./media/characters/koros/maw-spitting.svg"
  25055. }
  25056. },
  25057. slit: {
  25058. height: math.unit(2.8, "feet"),
  25059. name: "Slit",
  25060. image: {
  25061. source: "./media/characters/koros/slit.svg"
  25062. }
  25063. },
  25064. stomach: {
  25065. height: math.unit(6.8, "feet"),
  25066. capacity: math.unit(20, "people"),
  25067. name: "Stomach",
  25068. image: {
  25069. source: "./media/characters/koros/stomach.svg"
  25070. }
  25071. },
  25072. wingspanBottom: {
  25073. height: math.unit(114, "feet"),
  25074. name: "Wingspan (Bottom)",
  25075. image: {
  25076. source: "./media/characters/koros/wingspan-bottom.svg"
  25077. }
  25078. },
  25079. wingspanTop: {
  25080. height: math.unit(104, "feet"),
  25081. name: "Wingspan (Top)",
  25082. image: {
  25083. source: "./media/characters/koros/wingspan-top.svg"
  25084. }
  25085. },
  25086. },
  25087. [
  25088. {
  25089. name: "Normal",
  25090. height: math.unit(31 + 8 / 12, "feet"),
  25091. default: true
  25092. },
  25093. ]
  25094. ))
  25095. characterMakers.push(() => makeCharacter(
  25096. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25097. {
  25098. front: {
  25099. height: math.unit(18 + 5 / 12, "feet"),
  25100. weight: math.unit(3750, "kg"),
  25101. name: "Front",
  25102. image: {
  25103. source: "./media/characters/vexx/front.svg",
  25104. extra: 426 / 396,
  25105. bottom: 31.5 / 458
  25106. }
  25107. },
  25108. maw: {
  25109. height: math.unit(6, "feet"),
  25110. name: "Maw",
  25111. image: {
  25112. source: "./media/characters/vexx/maw.svg"
  25113. }
  25114. },
  25115. },
  25116. [
  25117. {
  25118. name: "Normal",
  25119. height: math.unit(18 + 5 / 12, "feet"),
  25120. default: true
  25121. },
  25122. ]
  25123. ))
  25124. characterMakers.push(() => makeCharacter(
  25125. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25126. {
  25127. front: {
  25128. height: math.unit(17 + 6 / 12, "feet"),
  25129. weight: math.unit(150, "lb"),
  25130. name: "Front",
  25131. image: {
  25132. source: "./media/characters/baadra/front.svg",
  25133. extra: 3137 / 2890,
  25134. bottom: 168.4 / 3305
  25135. }
  25136. },
  25137. back: {
  25138. height: math.unit(17 + 6 / 12, "feet"),
  25139. weight: math.unit(150, "lb"),
  25140. name: "Back",
  25141. image: {
  25142. source: "./media/characters/baadra/back.svg",
  25143. extra: 3142 / 2890,
  25144. bottom: 220 / 3371
  25145. }
  25146. },
  25147. head: {
  25148. height: math.unit(5.45, "feet"),
  25149. name: "Head",
  25150. image: {
  25151. source: "./media/characters/baadra/head.svg"
  25152. }
  25153. },
  25154. headAngry: {
  25155. height: math.unit(4.95, "feet"),
  25156. name: "Head (Angry)",
  25157. image: {
  25158. source: "./media/characters/baadra/head-angry.svg"
  25159. }
  25160. },
  25161. headOpen: {
  25162. height: math.unit(6, "feet"),
  25163. name: "Head (Open)",
  25164. image: {
  25165. source: "./media/characters/baadra/head-open.svg"
  25166. }
  25167. },
  25168. },
  25169. [
  25170. {
  25171. name: "Normal",
  25172. height: math.unit(17 + 6 / 12, "feet"),
  25173. default: true
  25174. },
  25175. ]
  25176. ))
  25177. characterMakers.push(() => makeCharacter(
  25178. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25179. {
  25180. front: {
  25181. height: math.unit(7 + 3 / 12, "feet"),
  25182. weight: math.unit(180, "lb"),
  25183. name: "Front",
  25184. image: {
  25185. source: "./media/characters/juri/front.svg",
  25186. extra: 1401 / 1237,
  25187. bottom: 18.5 / 1418
  25188. }
  25189. },
  25190. side: {
  25191. height: math.unit(7 + 3 / 12, "feet"),
  25192. weight: math.unit(180, "lb"),
  25193. name: "Side",
  25194. image: {
  25195. source: "./media/characters/juri/side.svg",
  25196. extra: 1424 / 1242,
  25197. bottom: 18.5 / 1447
  25198. }
  25199. },
  25200. sitting: {
  25201. height: math.unit(6, "feet"),
  25202. weight: math.unit(180, "lb"),
  25203. name: "Sitting",
  25204. image: {
  25205. source: "./media/characters/juri/sitting.svg",
  25206. extra: 1270 / 1143,
  25207. bottom: 100 / 1343
  25208. }
  25209. },
  25210. back: {
  25211. height: math.unit(7 + 3 / 12, "feet"),
  25212. weight: math.unit(180, "lb"),
  25213. name: "Back",
  25214. image: {
  25215. source: "./media/characters/juri/back.svg",
  25216. extra: 1377 / 1240,
  25217. bottom: 23.7 / 1405
  25218. }
  25219. },
  25220. maw: {
  25221. height: math.unit(2.8, "feet"),
  25222. name: "Maw",
  25223. image: {
  25224. source: "./media/characters/juri/maw.svg"
  25225. }
  25226. },
  25227. stomach: {
  25228. height: math.unit(0.89, "feet"),
  25229. capacity: math.unit(4, "liters"),
  25230. name: "Stomach",
  25231. image: {
  25232. source: "./media/characters/juri/stomach.svg"
  25233. }
  25234. },
  25235. },
  25236. [
  25237. {
  25238. name: "Normal",
  25239. height: math.unit(7 + 3 / 12, "feet"),
  25240. default: true
  25241. },
  25242. ]
  25243. ))
  25244. characterMakers.push(() => makeCharacter(
  25245. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25246. {
  25247. fox: {
  25248. height: math.unit(5 + 6 / 12, "feet"),
  25249. weight: math.unit(140, "lb"),
  25250. name: "Fox",
  25251. image: {
  25252. source: "./media/characters/maxene-sita/fox.svg",
  25253. extra: 146 / 138,
  25254. bottom: 2.1 / 148.19
  25255. }
  25256. },
  25257. foxLaying: {
  25258. height: math.unit(1.70, "feet"),
  25259. weight: math.unit(140, "lb"),
  25260. name: "Fox (Laying)",
  25261. image: {
  25262. source: "./media/characters/maxene-sita/fox-laying.svg",
  25263. extra: 910 / 572,
  25264. bottom: 71 / 981
  25265. }
  25266. },
  25267. kitsune: {
  25268. height: math.unit(10, "feet"),
  25269. weight: math.unit(800, "lb"),
  25270. name: "Kitsune",
  25271. image: {
  25272. source: "./media/characters/maxene-sita/kitsune.svg",
  25273. extra: 185 / 176,
  25274. bottom: 4.7 / 189.9
  25275. }
  25276. },
  25277. hellhound: {
  25278. height: math.unit(10, "feet"),
  25279. weight: math.unit(700, "lb"),
  25280. name: "Hellhound",
  25281. image: {
  25282. source: "./media/characters/maxene-sita/hellhound.svg",
  25283. extra: 1600 / 1545,
  25284. bottom: 81 / 1681
  25285. }
  25286. },
  25287. },
  25288. [
  25289. {
  25290. name: "Normal",
  25291. height: math.unit(5 + 6 / 12, "feet"),
  25292. default: true
  25293. },
  25294. ]
  25295. ))
  25296. characterMakers.push(() => makeCharacter(
  25297. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25298. {
  25299. front: {
  25300. height: math.unit(3 + 4 / 12, "feet"),
  25301. weight: math.unit(70, "lb"),
  25302. name: "Front",
  25303. image: {
  25304. source: "./media/characters/maia/front.svg",
  25305. extra: 227 / 219.5,
  25306. bottom: 40 / 267
  25307. }
  25308. },
  25309. back: {
  25310. height: math.unit(3 + 4 / 12, "feet"),
  25311. weight: math.unit(70, "lb"),
  25312. name: "Back",
  25313. image: {
  25314. source: "./media/characters/maia/back.svg",
  25315. extra: 237 / 225
  25316. }
  25317. },
  25318. },
  25319. [
  25320. {
  25321. name: "Normal",
  25322. height: math.unit(3 + 4 / 12, "feet"),
  25323. default: true
  25324. },
  25325. ]
  25326. ))
  25327. characterMakers.push(() => makeCharacter(
  25328. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25329. {
  25330. front: {
  25331. height: math.unit(5 + 10 / 12, "feet"),
  25332. weight: math.unit(197, "lb"),
  25333. name: "Front",
  25334. image: {
  25335. source: "./media/characters/jabaro/front.svg",
  25336. extra: 225 / 216,
  25337. bottom: 5.06 / 230
  25338. }
  25339. },
  25340. back: {
  25341. height: math.unit(5 + 10 / 12, "feet"),
  25342. weight: math.unit(197, "lb"),
  25343. name: "Back",
  25344. image: {
  25345. source: "./media/characters/jabaro/back.svg",
  25346. extra: 225 / 219,
  25347. bottom: 1.9 / 227
  25348. }
  25349. },
  25350. },
  25351. [
  25352. {
  25353. name: "Normal",
  25354. height: math.unit(5 + 10 / 12, "feet"),
  25355. default: true
  25356. },
  25357. ]
  25358. ))
  25359. characterMakers.push(() => makeCharacter(
  25360. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25361. {
  25362. front: {
  25363. height: math.unit(5 + 8 / 12, "feet"),
  25364. weight: math.unit(139, "lb"),
  25365. name: "Front",
  25366. image: {
  25367. source: "./media/characters/risa/front.svg",
  25368. extra: 270 / 260,
  25369. bottom: 11.2 / 282
  25370. }
  25371. },
  25372. back: {
  25373. height: math.unit(5 + 8 / 12, "feet"),
  25374. weight: math.unit(139, "lb"),
  25375. name: "Back",
  25376. image: {
  25377. source: "./media/characters/risa/back.svg",
  25378. extra: 264 / 255,
  25379. bottom: 4 / 268
  25380. }
  25381. },
  25382. },
  25383. [
  25384. {
  25385. name: "Normal",
  25386. height: math.unit(5 + 8 / 12, "feet"),
  25387. default: true
  25388. },
  25389. ]
  25390. ))
  25391. characterMakers.push(() => makeCharacter(
  25392. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25393. {
  25394. front: {
  25395. height: math.unit(2 + 11 / 12, "feet"),
  25396. weight: math.unit(30, "lb"),
  25397. name: "Front",
  25398. image: {
  25399. source: "./media/characters/weatley/front.svg",
  25400. bottom: 10.7 / 414,
  25401. extra: 403.5 / 362
  25402. }
  25403. },
  25404. back: {
  25405. height: math.unit(2 + 11 / 12, "feet"),
  25406. weight: math.unit(30, "lb"),
  25407. name: "Back",
  25408. image: {
  25409. source: "./media/characters/weatley/back.svg",
  25410. bottom: 10.7 / 414,
  25411. extra: 403.5 / 362
  25412. }
  25413. },
  25414. },
  25415. [
  25416. {
  25417. name: "Normal",
  25418. height: math.unit(2 + 11 / 12, "feet"),
  25419. default: true
  25420. },
  25421. ]
  25422. ))
  25423. characterMakers.push(() => makeCharacter(
  25424. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25425. {
  25426. front: {
  25427. height: math.unit(5 + 2 / 12, "feet"),
  25428. weight: math.unit(50, "kg"),
  25429. name: "Front",
  25430. image: {
  25431. source: "./media/characters/mercury-crescent/front.svg",
  25432. extra: 1088 / 1033,
  25433. bottom: 18.9 / 1109
  25434. }
  25435. },
  25436. },
  25437. [
  25438. {
  25439. name: "Normal",
  25440. height: math.unit(5 + 2 / 12, "feet"),
  25441. default: true
  25442. },
  25443. ]
  25444. ))
  25445. characterMakers.push(() => makeCharacter(
  25446. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25447. {
  25448. front: {
  25449. height: math.unit(2, "feet"),
  25450. weight: math.unit(15, "kg"),
  25451. name: "Front",
  25452. image: {
  25453. source: "./media/characters/diamond-jones/front.svg",
  25454. extra: 727/723,
  25455. bottom: 46/773
  25456. }
  25457. },
  25458. },
  25459. [
  25460. {
  25461. name: "Normal",
  25462. height: math.unit(2, "feet"),
  25463. default: true
  25464. },
  25465. ]
  25466. ))
  25467. characterMakers.push(() => makeCharacter(
  25468. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25469. {
  25470. front: {
  25471. height: math.unit(3, "feet"),
  25472. weight: math.unit(30, "kg"),
  25473. name: "Front",
  25474. image: {
  25475. source: "./media/characters/sweet-bit/front.svg",
  25476. extra: 675 / 567,
  25477. bottom: 27.7 / 703
  25478. }
  25479. },
  25480. },
  25481. [
  25482. {
  25483. name: "Normal",
  25484. height: math.unit(3, "feet"),
  25485. default: true
  25486. },
  25487. ]
  25488. ))
  25489. characterMakers.push(() => makeCharacter(
  25490. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25491. {
  25492. side: {
  25493. height: math.unit(9.178, "feet"),
  25494. weight: math.unit(500, "lb"),
  25495. name: "Side",
  25496. image: {
  25497. source: "./media/characters/umbrazen/side.svg",
  25498. extra: 1730 / 1473,
  25499. bottom: 34.6 / 1765
  25500. }
  25501. },
  25502. },
  25503. [
  25504. {
  25505. name: "Normal",
  25506. height: math.unit(9.178, "feet"),
  25507. default: true
  25508. },
  25509. ]
  25510. ))
  25511. characterMakers.push(() => makeCharacter(
  25512. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25513. {
  25514. front: {
  25515. height: math.unit(10, "feet"),
  25516. weight: math.unit(750, "lb"),
  25517. name: "Front",
  25518. image: {
  25519. source: "./media/characters/arlist/front.svg",
  25520. extra: 961 / 778,
  25521. bottom: 6.2 / 986
  25522. }
  25523. },
  25524. },
  25525. [
  25526. {
  25527. name: "Normal",
  25528. height: math.unit(10, "feet"),
  25529. default: true
  25530. },
  25531. ]
  25532. ))
  25533. characterMakers.push(() => makeCharacter(
  25534. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25535. {
  25536. front: {
  25537. height: math.unit(5 + 1 / 12, "feet"),
  25538. weight: math.unit(110, "lb"),
  25539. name: "Front",
  25540. image: {
  25541. source: "./media/characters/aradel/front.svg",
  25542. extra: 324 / 303,
  25543. bottom: 3.6 / 329.4
  25544. }
  25545. },
  25546. },
  25547. [
  25548. {
  25549. name: "Normal",
  25550. height: math.unit(5 + 1 / 12, "feet"),
  25551. default: true
  25552. },
  25553. ]
  25554. ))
  25555. characterMakers.push(() => makeCharacter(
  25556. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25557. {
  25558. front: {
  25559. height: math.unit(3 + 8 / 12, "feet"),
  25560. weight: math.unit(50, "lb"),
  25561. name: "Front",
  25562. image: {
  25563. source: "./media/characters/serryn/front.svg",
  25564. extra: 1792 / 1656,
  25565. bottom: 43.5 / 1840
  25566. }
  25567. },
  25568. },
  25569. [
  25570. {
  25571. name: "Normal",
  25572. height: math.unit(3 + 8 / 12, "feet"),
  25573. default: true
  25574. },
  25575. ]
  25576. ))
  25577. characterMakers.push(() => makeCharacter(
  25578. { name: "Xavier Thyme" },
  25579. {
  25580. front: {
  25581. height: math.unit(7 + 10 / 12, "feet"),
  25582. weight: math.unit(255, "lb"),
  25583. name: "Front",
  25584. image: {
  25585. source: "./media/characters/xavier-thyme/front.svg",
  25586. extra: 3733 / 3642,
  25587. bottom: 131 / 3869
  25588. }
  25589. },
  25590. frontRaven: {
  25591. height: math.unit(7 + 10 / 12, "feet"),
  25592. weight: math.unit(255, "lb"),
  25593. name: "Front (Raven)",
  25594. image: {
  25595. source: "./media/characters/xavier-thyme/front-raven.svg",
  25596. extra: 4385 / 3642,
  25597. bottom: 131 / 4517
  25598. }
  25599. },
  25600. },
  25601. [
  25602. {
  25603. name: "Normal",
  25604. height: math.unit(7 + 10 / 12, "feet"),
  25605. default: true
  25606. },
  25607. ]
  25608. ))
  25609. characterMakers.push(() => makeCharacter(
  25610. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25611. {
  25612. front: {
  25613. height: math.unit(1.6, "m"),
  25614. weight: math.unit(50, "kg"),
  25615. name: "Front",
  25616. image: {
  25617. source: "./media/characters/kiki/front.svg",
  25618. extra: 4682 / 3610,
  25619. bottom: 115 / 4777
  25620. }
  25621. },
  25622. },
  25623. [
  25624. {
  25625. name: "Normal",
  25626. height: math.unit(1.6, "meters"),
  25627. default: true
  25628. },
  25629. ]
  25630. ))
  25631. characterMakers.push(() => makeCharacter(
  25632. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25633. {
  25634. front: {
  25635. height: math.unit(50, "m"),
  25636. weight: math.unit(500, "tonnes"),
  25637. name: "Front",
  25638. image: {
  25639. source: "./media/characters/ryoko/front.svg",
  25640. extra: 4632 / 3926,
  25641. bottom: 193 / 4823
  25642. }
  25643. },
  25644. },
  25645. [
  25646. {
  25647. name: "Normal",
  25648. height: math.unit(50, "meters"),
  25649. default: true
  25650. },
  25651. ]
  25652. ))
  25653. characterMakers.push(() => makeCharacter(
  25654. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25655. {
  25656. front: {
  25657. height: math.unit(30, "m"),
  25658. weight: math.unit(22, "tonnes"),
  25659. name: "Front",
  25660. image: {
  25661. source: "./media/characters/elio/front.svg",
  25662. extra: 4582 / 3720,
  25663. bottom: 236 / 4828
  25664. }
  25665. },
  25666. },
  25667. [
  25668. {
  25669. name: "Normal",
  25670. height: math.unit(30, "meters"),
  25671. default: true
  25672. },
  25673. ]
  25674. ))
  25675. characterMakers.push(() => makeCharacter(
  25676. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25677. {
  25678. front: {
  25679. height: math.unit(6 + 3 / 12, "feet"),
  25680. weight: math.unit(120, "lb"),
  25681. name: "Front",
  25682. image: {
  25683. source: "./media/characters/azura/front.svg",
  25684. extra: 1149 / 1135,
  25685. bottom: 45 / 1194
  25686. }
  25687. },
  25688. frontClothed: {
  25689. height: math.unit(6 + 3 / 12, "feet"),
  25690. weight: math.unit(120, "lb"),
  25691. name: "Front (Clothed)",
  25692. image: {
  25693. source: "./media/characters/azura/front-clothed.svg",
  25694. extra: 1149 / 1135,
  25695. bottom: 45 / 1194
  25696. }
  25697. },
  25698. },
  25699. [
  25700. {
  25701. name: "Normal",
  25702. height: math.unit(6 + 3 / 12, "feet"),
  25703. default: true
  25704. },
  25705. {
  25706. name: "Macro",
  25707. height: math.unit(20 + 6 / 12, "feet")
  25708. },
  25709. {
  25710. name: "Megamacro",
  25711. height: math.unit(12, "miles")
  25712. },
  25713. {
  25714. name: "Gigamacro",
  25715. height: math.unit(10000, "miles")
  25716. },
  25717. {
  25718. name: "Teramacro",
  25719. height: math.unit(900000, "miles")
  25720. },
  25721. ]
  25722. ))
  25723. characterMakers.push(() => makeCharacter(
  25724. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25725. {
  25726. front: {
  25727. height: math.unit(12, "feet"),
  25728. weight: math.unit(1, "ton"),
  25729. capacity: math.unit(660000, "gallons"),
  25730. name: "Front",
  25731. image: {
  25732. source: "./media/characters/zeus/front.svg",
  25733. extra: 5005 / 4717,
  25734. bottom: 363 / 5388
  25735. }
  25736. },
  25737. },
  25738. [
  25739. {
  25740. name: "Normal",
  25741. height: math.unit(12, "feet")
  25742. },
  25743. {
  25744. name: "Preferred Size",
  25745. height: math.unit(0.5, "miles"),
  25746. default: true
  25747. },
  25748. {
  25749. name: "Giga Horse",
  25750. height: math.unit(300, "miles")
  25751. },
  25752. {
  25753. name: "Riding Planets",
  25754. height: math.unit(30, "megameters")
  25755. },
  25756. {
  25757. name: "Cosmic Giant",
  25758. height: math.unit(3, "zettameters")
  25759. },
  25760. {
  25761. name: "Breeding God",
  25762. height: math.unit(9.92e22, "yottameters")
  25763. },
  25764. ]
  25765. ))
  25766. characterMakers.push(() => makeCharacter(
  25767. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25768. {
  25769. side: {
  25770. height: math.unit(9, "feet"),
  25771. weight: math.unit(1500, "kg"),
  25772. name: "Side",
  25773. image: {
  25774. source: "./media/characters/fang/side.svg",
  25775. extra: 924 / 866,
  25776. bottom: 47.5 / 972.3
  25777. }
  25778. },
  25779. },
  25780. [
  25781. {
  25782. name: "Normal",
  25783. height: math.unit(9, "feet"),
  25784. default: true
  25785. },
  25786. {
  25787. name: "Macro",
  25788. height: math.unit(75 + 6 / 12, "feet")
  25789. },
  25790. {
  25791. name: "Teramacro",
  25792. height: math.unit(50000, "miles")
  25793. },
  25794. ]
  25795. ))
  25796. characterMakers.push(() => makeCharacter(
  25797. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25798. {
  25799. front: {
  25800. height: math.unit(10, "feet"),
  25801. weight: math.unit(2, "tons"),
  25802. name: "Front",
  25803. image: {
  25804. source: "./media/characters/rekhit/front.svg",
  25805. extra: 2796 / 2590,
  25806. bottom: 225 / 3022
  25807. }
  25808. },
  25809. },
  25810. [
  25811. {
  25812. name: "Normal",
  25813. height: math.unit(10, "feet"),
  25814. default: true
  25815. },
  25816. {
  25817. name: "Macro",
  25818. height: math.unit(500, "feet")
  25819. },
  25820. ]
  25821. ))
  25822. characterMakers.push(() => makeCharacter(
  25823. { name: "Dahlia Verrick" },
  25824. {
  25825. front: {
  25826. height: math.unit(7 + 6.451 / 12, "feet"),
  25827. weight: math.unit(310, "lb"),
  25828. name: "Front",
  25829. image: {
  25830. source: "./media/characters/dahlia-verrick/front.svg",
  25831. extra: 1488 / 1365,
  25832. bottom: 6.2 / 1495
  25833. }
  25834. },
  25835. back: {
  25836. height: math.unit(7 + 6.451 / 12, "feet"),
  25837. weight: math.unit(310, "lb"),
  25838. name: "Back",
  25839. image: {
  25840. source: "./media/characters/dahlia-verrick/back.svg",
  25841. extra: 1472 / 1351,
  25842. bottom: 5.28 / 1477
  25843. }
  25844. },
  25845. frontBusiness: {
  25846. height: math.unit(7 + 6.451 / 12, "feet"),
  25847. weight: math.unit(200, "lb"),
  25848. name: "Front (Business)",
  25849. image: {
  25850. source: "./media/characters/dahlia-verrick/front-business.svg",
  25851. extra: 1478 / 1381,
  25852. bottom: 5.5 / 1484
  25853. }
  25854. },
  25855. frontCasual: {
  25856. height: math.unit(7 + 6.451 / 12, "feet"),
  25857. weight: math.unit(200, "lb"),
  25858. name: "Front (Casual)",
  25859. image: {
  25860. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25861. extra: 1478 / 1381,
  25862. bottom: 5.5 / 1484
  25863. }
  25864. },
  25865. },
  25866. [
  25867. {
  25868. name: "Travel-Sized",
  25869. height: math.unit(7.45, "inches")
  25870. },
  25871. {
  25872. name: "Normal",
  25873. height: math.unit(7 + 6.451 / 12, "feet"),
  25874. default: true
  25875. },
  25876. {
  25877. name: "Hitting the Town",
  25878. height: math.unit(37 + 8 / 12, "feet")
  25879. },
  25880. {
  25881. name: "Stomp in the Suburbs",
  25882. height: math.unit(964 + 9.728 / 12, "feet")
  25883. },
  25884. {
  25885. name: "Sit on the City",
  25886. height: math.unit(61747 + 10.592 / 12, "feet")
  25887. },
  25888. {
  25889. name: "Glomp the Globe",
  25890. height: math.unit(252919327 + 4.832 / 12, "feet")
  25891. },
  25892. ]
  25893. ))
  25894. characterMakers.push(() => makeCharacter(
  25895. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25896. {
  25897. front: {
  25898. height: math.unit(6 + 4 / 12, "feet"),
  25899. weight: math.unit(320, "lb"),
  25900. name: "Front",
  25901. image: {
  25902. source: "./media/characters/balina-mahigan/front.svg",
  25903. extra: 447 / 428,
  25904. bottom: 18 / 466
  25905. }
  25906. },
  25907. back: {
  25908. height: math.unit(6 + 4 / 12, "feet"),
  25909. weight: math.unit(320, "lb"),
  25910. name: "Back",
  25911. image: {
  25912. source: "./media/characters/balina-mahigan/back.svg",
  25913. extra: 445 / 428,
  25914. bottom: 4.07 / 448
  25915. }
  25916. },
  25917. arm: {
  25918. height: math.unit(1.88, "feet"),
  25919. name: "Arm",
  25920. image: {
  25921. source: "./media/characters/balina-mahigan/arm.svg"
  25922. }
  25923. },
  25924. backPort: {
  25925. height: math.unit(0.685, "feet"),
  25926. name: "Back Port",
  25927. image: {
  25928. source: "./media/characters/balina-mahigan/back-port.svg"
  25929. }
  25930. },
  25931. hoofpaw: {
  25932. height: math.unit(1.41, "feet"),
  25933. name: "Hoofpaw",
  25934. image: {
  25935. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25936. }
  25937. },
  25938. leftHandBack: {
  25939. height: math.unit(0.938, "feet"),
  25940. name: "Left Hand (Back)",
  25941. image: {
  25942. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25943. }
  25944. },
  25945. leftHandFront: {
  25946. height: math.unit(0.938, "feet"),
  25947. name: "Left Hand (Front)",
  25948. image: {
  25949. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25950. }
  25951. },
  25952. rightHandBack: {
  25953. height: math.unit(0.95, "feet"),
  25954. name: "Right Hand (Back)",
  25955. image: {
  25956. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25957. }
  25958. },
  25959. rightHandFront: {
  25960. height: math.unit(0.95, "feet"),
  25961. name: "Right Hand (Front)",
  25962. image: {
  25963. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25964. }
  25965. },
  25966. },
  25967. [
  25968. {
  25969. name: "Normal",
  25970. height: math.unit(6 + 4 / 12, "feet"),
  25971. default: true
  25972. },
  25973. ]
  25974. ))
  25975. characterMakers.push(() => makeCharacter(
  25976. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25977. {
  25978. front: {
  25979. height: math.unit(6, "feet"),
  25980. weight: math.unit(320, "lb"),
  25981. name: "Front",
  25982. image: {
  25983. source: "./media/characters/balina-mejeri/front.svg",
  25984. extra: 517 / 488,
  25985. bottom: 44.2 / 561
  25986. }
  25987. },
  25988. },
  25989. [
  25990. {
  25991. name: "Normal",
  25992. height: math.unit(6 + 4 / 12, "feet")
  25993. },
  25994. {
  25995. name: "Business",
  25996. height: math.unit(155, "feet"),
  25997. default: true
  25998. },
  25999. ]
  26000. ))
  26001. characterMakers.push(() => makeCharacter(
  26002. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26003. {
  26004. kneeling: {
  26005. height: math.unit(6 + 4 / 12, "feet"),
  26006. weight: math.unit(300 * 20, "lb"),
  26007. name: "Kneeling",
  26008. image: {
  26009. source: "./media/characters/balbarian/kneeling.svg",
  26010. extra: 922 / 862,
  26011. bottom: 42.4 / 965
  26012. }
  26013. },
  26014. },
  26015. [
  26016. {
  26017. name: "Normal",
  26018. height: math.unit(6 + 4 / 12, "feet")
  26019. },
  26020. {
  26021. name: "Treasured",
  26022. height: math.unit(18 + 9 / 12, "feet"),
  26023. default: true
  26024. },
  26025. {
  26026. name: "Macro",
  26027. height: math.unit(900, "feet")
  26028. },
  26029. ]
  26030. ))
  26031. characterMakers.push(() => makeCharacter(
  26032. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26033. {
  26034. front: {
  26035. height: math.unit(6 + 4 / 12, "feet"),
  26036. weight: math.unit(325, "lb"),
  26037. name: "Front",
  26038. image: {
  26039. source: "./media/characters/balina-amarini/front.svg",
  26040. extra: 415 / 403,
  26041. bottom: 19 / 433.4
  26042. }
  26043. },
  26044. back: {
  26045. height: math.unit(6 + 4 / 12, "feet"),
  26046. weight: math.unit(325, "lb"),
  26047. name: "Back",
  26048. image: {
  26049. source: "./media/characters/balina-amarini/back.svg",
  26050. extra: 415 / 403,
  26051. bottom: 13.5 / 432
  26052. }
  26053. },
  26054. overdrive: {
  26055. height: math.unit(6 + 4 / 12, "feet"),
  26056. weight: math.unit(400, "lb"),
  26057. name: "Overdrive",
  26058. image: {
  26059. source: "./media/characters/balina-amarini/overdrive.svg",
  26060. extra: 269 / 259,
  26061. bottom: 12 / 282
  26062. }
  26063. },
  26064. },
  26065. [
  26066. {
  26067. name: "Boom",
  26068. height: math.unit(9 + 10 / 12, "feet"),
  26069. default: true
  26070. },
  26071. {
  26072. name: "Macro",
  26073. height: math.unit(280, "feet")
  26074. },
  26075. ]
  26076. ))
  26077. characterMakers.push(() => makeCharacter(
  26078. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26079. {
  26080. goddess: {
  26081. height: math.unit(600, "feet"),
  26082. weight: math.unit(2000000, "tons"),
  26083. name: "Goddess",
  26084. image: {
  26085. source: "./media/characters/lady-kubwa/goddess.svg",
  26086. extra: 1240.5 / 1223,
  26087. bottom: 22 / 1263
  26088. }
  26089. },
  26090. goddesser: {
  26091. height: math.unit(900, "feet"),
  26092. weight: math.unit(20000000, "lb"),
  26093. name: "Goddess-er",
  26094. image: {
  26095. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26096. extra: 899 / 888,
  26097. bottom: 12.6 / 912
  26098. }
  26099. },
  26100. },
  26101. [
  26102. {
  26103. name: "Macro",
  26104. height: math.unit(600, "feet"),
  26105. default: true
  26106. },
  26107. {
  26108. name: "Megamacro",
  26109. height: math.unit(250, "miles")
  26110. },
  26111. ]
  26112. ))
  26113. characterMakers.push(() => makeCharacter(
  26114. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26115. {
  26116. front: {
  26117. height: math.unit(7 + 7 / 12, "feet"),
  26118. weight: math.unit(250, "lb"),
  26119. name: "Front",
  26120. image: {
  26121. source: "./media/characters/tala-grovehorn/front.svg",
  26122. extra: 2636 / 2525,
  26123. bottom: 147 / 2781
  26124. }
  26125. },
  26126. back: {
  26127. height: math.unit(7 + 7 / 12, "feet"),
  26128. weight: math.unit(250, "lb"),
  26129. name: "Back",
  26130. image: {
  26131. source: "./media/characters/tala-grovehorn/back.svg",
  26132. extra: 2635 / 2539,
  26133. bottom: 100 / 2732.8
  26134. }
  26135. },
  26136. mouth: {
  26137. height: math.unit(1.15, "feet"),
  26138. name: "Mouth",
  26139. image: {
  26140. source: "./media/characters/tala-grovehorn/mouth.svg"
  26141. }
  26142. },
  26143. dick: {
  26144. height: math.unit(2.36, "feet"),
  26145. name: "Dick",
  26146. image: {
  26147. source: "./media/characters/tala-grovehorn/dick.svg"
  26148. }
  26149. },
  26150. slit: {
  26151. height: math.unit(0.61, "feet"),
  26152. name: "Slit",
  26153. image: {
  26154. source: "./media/characters/tala-grovehorn/slit.svg"
  26155. }
  26156. },
  26157. },
  26158. [
  26159. ]
  26160. ))
  26161. characterMakers.push(() => makeCharacter(
  26162. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26163. {
  26164. front: {
  26165. height: math.unit(7 + 7 / 12, "feet"),
  26166. weight: math.unit(225, "lb"),
  26167. name: "Front",
  26168. image: {
  26169. source: "./media/characters/epona/front.svg",
  26170. extra: 2445 / 2290,
  26171. bottom: 251 / 2696
  26172. }
  26173. },
  26174. back: {
  26175. height: math.unit(7 + 7 / 12, "feet"),
  26176. weight: math.unit(225, "lb"),
  26177. name: "Back",
  26178. image: {
  26179. source: "./media/characters/epona/back.svg",
  26180. extra: 2546 / 2408,
  26181. bottom: 44 / 2589
  26182. }
  26183. },
  26184. genitals: {
  26185. height: math.unit(1.5, "feet"),
  26186. name: "Genitals",
  26187. image: {
  26188. source: "./media/characters/epona/genitals.svg"
  26189. }
  26190. },
  26191. },
  26192. [
  26193. {
  26194. name: "Normal",
  26195. height: math.unit(7 + 7 / 12, "feet"),
  26196. default: true
  26197. },
  26198. ]
  26199. ))
  26200. characterMakers.push(() => makeCharacter(
  26201. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26202. {
  26203. front: {
  26204. height: math.unit(7, "feet"),
  26205. weight: math.unit(518, "lb"),
  26206. name: "Front",
  26207. image: {
  26208. source: "./media/characters/avia-bloodbourn/front.svg",
  26209. extra: 1466 / 1350,
  26210. bottom: 65 / 1527
  26211. }
  26212. },
  26213. },
  26214. [
  26215. ]
  26216. ))
  26217. characterMakers.push(() => makeCharacter(
  26218. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26219. {
  26220. front: {
  26221. height: math.unit(9.35, "feet"),
  26222. weight: math.unit(600, "lb"),
  26223. name: "Front",
  26224. image: {
  26225. source: "./media/characters/amera/front.svg",
  26226. extra: 891 / 818,
  26227. bottom: 30 / 922.7
  26228. }
  26229. },
  26230. back: {
  26231. height: math.unit(9.35, "feet"),
  26232. weight: math.unit(600, "lb"),
  26233. name: "Back",
  26234. image: {
  26235. source: "./media/characters/amera/back.svg",
  26236. extra: 876 / 824,
  26237. bottom: 6.8 / 884
  26238. }
  26239. },
  26240. dick: {
  26241. height: math.unit(2.14, "feet"),
  26242. name: "Dick",
  26243. image: {
  26244. source: "./media/characters/amera/dick.svg"
  26245. }
  26246. },
  26247. },
  26248. [
  26249. {
  26250. name: "Normal",
  26251. height: math.unit(9.35, "feet"),
  26252. default: true
  26253. },
  26254. ]
  26255. ))
  26256. characterMakers.push(() => makeCharacter(
  26257. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26258. {
  26259. kneeling: {
  26260. height: math.unit(3 + 4 / 12, "feet"),
  26261. weight: math.unit(90, "lb"),
  26262. name: "Kneeling",
  26263. image: {
  26264. source: "./media/characters/rosewen/kneeling.svg",
  26265. extra: 1835 / 1571,
  26266. bottom: 27.7 / 1862
  26267. }
  26268. },
  26269. },
  26270. [
  26271. {
  26272. name: "Normal",
  26273. height: math.unit(3 + 4 / 12, "feet"),
  26274. default: true
  26275. },
  26276. ]
  26277. ))
  26278. characterMakers.push(() => makeCharacter(
  26279. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26280. {
  26281. front: {
  26282. height: math.unit(5 + 10 / 12, "feet"),
  26283. weight: math.unit(200, "lb"),
  26284. name: "Front",
  26285. image: {
  26286. source: "./media/characters/sabah/front.svg",
  26287. extra: 849 / 763,
  26288. bottom: 33.9 / 881
  26289. }
  26290. },
  26291. },
  26292. [
  26293. {
  26294. name: "Normal",
  26295. height: math.unit(5 + 10 / 12, "feet"),
  26296. default: true
  26297. },
  26298. ]
  26299. ))
  26300. characterMakers.push(() => makeCharacter(
  26301. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26302. {
  26303. front: {
  26304. height: math.unit(3 + 5 / 12, "feet"),
  26305. weight: math.unit(40, "kg"),
  26306. name: "Front",
  26307. image: {
  26308. source: "./media/characters/purple-flame/front.svg",
  26309. extra: 1577 / 1412,
  26310. bottom: 97 / 1694
  26311. }
  26312. },
  26313. frontDressed: {
  26314. height: math.unit(3 + 5 / 12, "feet"),
  26315. weight: math.unit(40, "kg"),
  26316. name: "Front (Dressed)",
  26317. image: {
  26318. source: "./media/characters/purple-flame/front-dressed.svg",
  26319. extra: 1577 / 1412,
  26320. bottom: 97 / 1694
  26321. }
  26322. },
  26323. headphones: {
  26324. height: math.unit(0.85, "feet"),
  26325. name: "Headphones",
  26326. image: {
  26327. source: "./media/characters/purple-flame/headphones.svg"
  26328. }
  26329. },
  26330. },
  26331. [
  26332. {
  26333. name: "Really Small",
  26334. height: math.unit(5, "cm")
  26335. },
  26336. {
  26337. name: "Micro",
  26338. height: math.unit(1 + 5 / 12, "feet")
  26339. },
  26340. {
  26341. name: "Normal",
  26342. height: math.unit(3 + 5 / 12, "feet"),
  26343. default: true
  26344. },
  26345. {
  26346. name: "Minimacro",
  26347. height: math.unit(125, "feet")
  26348. },
  26349. {
  26350. name: "Macro",
  26351. height: math.unit(0.5, "miles")
  26352. },
  26353. {
  26354. name: "Megamacro",
  26355. height: math.unit(50, "miles")
  26356. },
  26357. {
  26358. name: "Gigantic",
  26359. height: math.unit(750, "miles")
  26360. },
  26361. {
  26362. name: "Planetary",
  26363. height: math.unit(15000, "miles")
  26364. },
  26365. ]
  26366. ))
  26367. characterMakers.push(() => makeCharacter(
  26368. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26369. {
  26370. front: {
  26371. height: math.unit(14, "feet"),
  26372. weight: math.unit(959, "lb"),
  26373. name: "Front",
  26374. image: {
  26375. source: "./media/characters/arsenal/front.svg",
  26376. extra: 2357 / 2157,
  26377. bottom: 93 / 2458
  26378. }
  26379. },
  26380. },
  26381. [
  26382. {
  26383. name: "Normal",
  26384. height: math.unit(14, "feet"),
  26385. default: true
  26386. },
  26387. ]
  26388. ))
  26389. characterMakers.push(() => makeCharacter(
  26390. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26391. {
  26392. front: {
  26393. height: math.unit(6, "feet"),
  26394. weight: math.unit(150, "lb"),
  26395. name: "Front",
  26396. image: {
  26397. source: "./media/characters/adira/front.svg",
  26398. extra: 1078 / 1029,
  26399. bottom: 87 / 1166
  26400. }
  26401. },
  26402. },
  26403. [
  26404. {
  26405. name: "Micro",
  26406. height: math.unit(4, "inches"),
  26407. default: true
  26408. },
  26409. {
  26410. name: "Macro",
  26411. height: math.unit(50, "feet")
  26412. },
  26413. ]
  26414. ))
  26415. characterMakers.push(() => makeCharacter(
  26416. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26417. {
  26418. front: {
  26419. height: math.unit(16, "feet"),
  26420. weight: math.unit(1000, "lb"),
  26421. name: "Front",
  26422. image: {
  26423. source: "./media/characters/grim/front.svg",
  26424. extra: 622 / 614,
  26425. bottom: 18.1 / 642
  26426. }
  26427. },
  26428. back: {
  26429. height: math.unit(16, "feet"),
  26430. weight: math.unit(1000, "lb"),
  26431. name: "Back",
  26432. image: {
  26433. source: "./media/characters/grim/back.svg",
  26434. extra: 610.6 / 602,
  26435. bottom: 40.8 / 652
  26436. }
  26437. },
  26438. hunched: {
  26439. height: math.unit(9.75, "feet"),
  26440. weight: math.unit(1000, "lb"),
  26441. name: "Hunched",
  26442. image: {
  26443. source: "./media/characters/grim/hunched.svg",
  26444. extra: 304 / 297,
  26445. bottom: 35.4 / 394
  26446. }
  26447. },
  26448. },
  26449. [
  26450. {
  26451. name: "Normal",
  26452. height: math.unit(16, "feet"),
  26453. default: true
  26454. },
  26455. ]
  26456. ))
  26457. characterMakers.push(() => makeCharacter(
  26458. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26459. {
  26460. front: {
  26461. height: math.unit(2.3, "meters"),
  26462. weight: math.unit(300, "lb"),
  26463. name: "Front",
  26464. image: {
  26465. source: "./media/characters/sinja/front-sfw.svg",
  26466. extra: 1393 / 1294,
  26467. bottom: 70 / 1463
  26468. }
  26469. },
  26470. frontNsfw: {
  26471. height: math.unit(2.3, "meters"),
  26472. weight: math.unit(300, "lb"),
  26473. name: "Front (NSFW)",
  26474. image: {
  26475. source: "./media/characters/sinja/front-nsfw.svg",
  26476. extra: 1393 / 1294,
  26477. bottom: 70 / 1463
  26478. }
  26479. },
  26480. back: {
  26481. height: math.unit(2.3, "meters"),
  26482. weight: math.unit(300, "lb"),
  26483. name: "Back",
  26484. image: {
  26485. source: "./media/characters/sinja/back.svg",
  26486. extra: 1393 / 1294,
  26487. bottom: 70 / 1463
  26488. }
  26489. },
  26490. head: {
  26491. height: math.unit(1.771, "feet"),
  26492. name: "Head",
  26493. image: {
  26494. source: "./media/characters/sinja/head.svg"
  26495. }
  26496. },
  26497. slit: {
  26498. height: math.unit(0.8, "feet"),
  26499. name: "Slit",
  26500. image: {
  26501. source: "./media/characters/sinja/slit.svg"
  26502. }
  26503. },
  26504. },
  26505. [
  26506. {
  26507. name: "Normal",
  26508. height: math.unit(2.3, "meters")
  26509. },
  26510. {
  26511. name: "Macro",
  26512. height: math.unit(91, "meters"),
  26513. default: true
  26514. },
  26515. {
  26516. name: "Megamacro",
  26517. height: math.unit(91440, "meters")
  26518. },
  26519. {
  26520. name: "Gigamacro",
  26521. height: math.unit(60960000, "meters")
  26522. },
  26523. {
  26524. name: "Teramacro",
  26525. height: math.unit(9144000000, "meters")
  26526. },
  26527. ]
  26528. ))
  26529. characterMakers.push(() => makeCharacter(
  26530. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26531. {
  26532. front: {
  26533. height: math.unit(1.7, "meters"),
  26534. weight: math.unit(130, "lb"),
  26535. name: "Front",
  26536. image: {
  26537. source: "./media/characters/kyu/front.svg",
  26538. extra: 415 / 395,
  26539. bottom: 5 / 420
  26540. }
  26541. },
  26542. head: {
  26543. height: math.unit(1.75, "feet"),
  26544. name: "Head",
  26545. image: {
  26546. source: "./media/characters/kyu/head.svg"
  26547. }
  26548. },
  26549. foot: {
  26550. height: math.unit(0.81, "feet"),
  26551. name: "Foot",
  26552. image: {
  26553. source: "./media/characters/kyu/foot.svg"
  26554. }
  26555. },
  26556. },
  26557. [
  26558. {
  26559. name: "Normal",
  26560. height: math.unit(1.7, "meters")
  26561. },
  26562. {
  26563. name: "Macro",
  26564. height: math.unit(131, "feet"),
  26565. default: true
  26566. },
  26567. {
  26568. name: "Megamacro",
  26569. height: math.unit(91440, "meters")
  26570. },
  26571. {
  26572. name: "Gigamacro",
  26573. height: math.unit(60960000, "meters")
  26574. },
  26575. {
  26576. name: "Teramacro",
  26577. height: math.unit(9144000000, "meters")
  26578. },
  26579. ]
  26580. ))
  26581. characterMakers.push(() => makeCharacter(
  26582. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26583. {
  26584. front: {
  26585. height: math.unit(7 + 1 / 12, "feet"),
  26586. weight: math.unit(250, "lb"),
  26587. name: "Front",
  26588. image: {
  26589. source: "./media/characters/joey/front.svg",
  26590. extra: 1791 / 1537,
  26591. bottom: 28 / 1816
  26592. }
  26593. },
  26594. },
  26595. [
  26596. {
  26597. name: "Micro",
  26598. height: math.unit(3, "inches")
  26599. },
  26600. {
  26601. name: "Normal",
  26602. height: math.unit(7 + 1 / 12, "feet"),
  26603. default: true
  26604. },
  26605. ]
  26606. ))
  26607. characterMakers.push(() => makeCharacter(
  26608. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26609. {
  26610. front: {
  26611. height: math.unit(165, "cm"),
  26612. weight: math.unit(140, "lb"),
  26613. name: "Front",
  26614. image: {
  26615. source: "./media/characters/sam-evans/front.svg",
  26616. extra: 3417 / 3230,
  26617. bottom: 41.3 / 3417
  26618. }
  26619. },
  26620. frontSixTails: {
  26621. height: math.unit(165, "cm"),
  26622. weight: math.unit(140, "lb"),
  26623. name: "Front-six-tails",
  26624. image: {
  26625. source: "./media/characters/sam-evans/front-six-tails.svg",
  26626. extra: 3417 / 3230,
  26627. bottom: 41.3 / 3417
  26628. }
  26629. },
  26630. back: {
  26631. height: math.unit(165, "cm"),
  26632. weight: math.unit(140, "lb"),
  26633. name: "Back",
  26634. image: {
  26635. source: "./media/characters/sam-evans/back.svg",
  26636. extra: 3227 / 3032,
  26637. bottom: 6.8 / 3234
  26638. }
  26639. },
  26640. face: {
  26641. height: math.unit(0.68, "feet"),
  26642. name: "Face",
  26643. image: {
  26644. source: "./media/characters/sam-evans/face.svg"
  26645. }
  26646. },
  26647. },
  26648. [
  26649. {
  26650. name: "Normal",
  26651. height: math.unit(165, "cm"),
  26652. default: true
  26653. },
  26654. {
  26655. name: "Macro",
  26656. height: math.unit(100, "meters")
  26657. },
  26658. {
  26659. name: "Macro+",
  26660. height: math.unit(800, "meters")
  26661. },
  26662. {
  26663. name: "Macro++",
  26664. height: math.unit(3, "km")
  26665. },
  26666. {
  26667. name: "Macro+++",
  26668. height: math.unit(30, "km")
  26669. },
  26670. ]
  26671. ))
  26672. characterMakers.push(() => makeCharacter(
  26673. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26674. {
  26675. front: {
  26676. height: math.unit(10, "feet"),
  26677. weight: math.unit(750, "lb"),
  26678. name: "Front",
  26679. image: {
  26680. source: "./media/characters/juliet-a/front.svg",
  26681. extra: 1766 / 1720,
  26682. bottom: 43 / 1809
  26683. }
  26684. },
  26685. back: {
  26686. height: math.unit(10, "feet"),
  26687. weight: math.unit(750, "lb"),
  26688. name: "Back",
  26689. image: {
  26690. source: "./media/characters/juliet-a/back.svg",
  26691. extra: 1781 / 1734,
  26692. bottom: 35 / 1810,
  26693. }
  26694. },
  26695. },
  26696. [
  26697. {
  26698. name: "Normal",
  26699. height: math.unit(10, "feet"),
  26700. default: true
  26701. },
  26702. {
  26703. name: "Dragon Form",
  26704. height: math.unit(250, "feet")
  26705. },
  26706. {
  26707. name: "Macro",
  26708. height: math.unit(1000, "feet")
  26709. },
  26710. {
  26711. name: "Megamacro",
  26712. height: math.unit(10000, "feet")
  26713. }
  26714. ]
  26715. ))
  26716. characterMakers.push(() => makeCharacter(
  26717. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26718. {
  26719. regular: {
  26720. height: math.unit(7 + 3 / 12, "feet"),
  26721. weight: math.unit(260, "lb"),
  26722. name: "Regular",
  26723. image: {
  26724. source: "./media/characters/wild/regular.svg",
  26725. extra: 97.45 / 92,
  26726. bottom: 6.8 / 104.3
  26727. }
  26728. },
  26729. biggums: {
  26730. height: math.unit(8 + 6 / 12, "feet"),
  26731. weight: math.unit(425, "lb"),
  26732. name: "Biggums",
  26733. image: {
  26734. source: "./media/characters/wild/biggums.svg",
  26735. extra: 97.45 / 92,
  26736. bottom: 7.5 / 132.34
  26737. }
  26738. },
  26739. mawRegular: {
  26740. height: math.unit(1.24, "feet"),
  26741. name: "Maw (Regular)",
  26742. image: {
  26743. source: "./media/characters/wild/maw.svg"
  26744. }
  26745. },
  26746. mawBiggums: {
  26747. height: math.unit(1.47, "feet"),
  26748. name: "Maw (Biggums)",
  26749. image: {
  26750. source: "./media/characters/wild/maw.svg"
  26751. }
  26752. },
  26753. },
  26754. [
  26755. {
  26756. name: "Normal",
  26757. height: math.unit(7 + 3 / 12, "feet"),
  26758. default: true
  26759. },
  26760. ]
  26761. ))
  26762. characterMakers.push(() => makeCharacter(
  26763. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26764. {
  26765. front: {
  26766. height: math.unit(2.5, "meters"),
  26767. weight: math.unit(200, "kg"),
  26768. name: "Front",
  26769. image: {
  26770. source: "./media/characters/vidar/front.svg",
  26771. extra: 2994 / 2795,
  26772. bottom: 56 / 3061
  26773. }
  26774. },
  26775. back: {
  26776. height: math.unit(2.5, "meters"),
  26777. weight: math.unit(200, "kg"),
  26778. name: "Back",
  26779. image: {
  26780. source: "./media/characters/vidar/back.svg",
  26781. extra: 3131 / 2928,
  26782. bottom: 13.5 / 3141.5
  26783. }
  26784. },
  26785. feral: {
  26786. height: math.unit(2.5, "meters"),
  26787. weight: math.unit(2000, "kg"),
  26788. name: "Feral",
  26789. image: {
  26790. source: "./media/characters/vidar/feral.svg",
  26791. extra: 2790 / 1765,
  26792. bottom: 6 / 2796
  26793. }
  26794. },
  26795. },
  26796. [
  26797. {
  26798. name: "Normal",
  26799. height: math.unit(2.5, "meters"),
  26800. default: true
  26801. },
  26802. {
  26803. name: "Macro",
  26804. height: math.unit(100, "meters")
  26805. },
  26806. ]
  26807. ))
  26808. characterMakers.push(() => makeCharacter(
  26809. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26810. {
  26811. front: {
  26812. height: math.unit(5 + 9 / 12, "feet"),
  26813. weight: math.unit(120, "lb"),
  26814. name: "Front",
  26815. image: {
  26816. source: "./media/characters/ash/front.svg",
  26817. extra: 2189 / 1961,
  26818. bottom: 5.2 / 2194
  26819. }
  26820. },
  26821. },
  26822. [
  26823. {
  26824. name: "Normal",
  26825. height: math.unit(5 + 9 / 12, "feet"),
  26826. default: true
  26827. },
  26828. ]
  26829. ))
  26830. characterMakers.push(() => makeCharacter(
  26831. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26832. {
  26833. front: {
  26834. height: math.unit(9, "feet"),
  26835. weight: math.unit(10000, "lb"),
  26836. name: "Front",
  26837. image: {
  26838. source: "./media/characters/gygabite/front.svg",
  26839. bottom: 31.7 / 537.8,
  26840. extra: 505 / 370
  26841. }
  26842. },
  26843. },
  26844. [
  26845. {
  26846. name: "Normal",
  26847. height: math.unit(9, "feet"),
  26848. default: true
  26849. },
  26850. ]
  26851. ))
  26852. characterMakers.push(() => makeCharacter(
  26853. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26854. {
  26855. front: {
  26856. height: math.unit(12, "feet"),
  26857. weight: math.unit(35000, "lb"),
  26858. name: "Front",
  26859. image: {
  26860. source: "./media/characters/p0tat0/front.svg",
  26861. extra: 1065 / 921,
  26862. bottom: 55.7 / 1121.25
  26863. }
  26864. },
  26865. },
  26866. [
  26867. {
  26868. name: "Normal",
  26869. height: math.unit(12, "feet"),
  26870. default: true
  26871. },
  26872. ]
  26873. ))
  26874. characterMakers.push(() => makeCharacter(
  26875. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26876. {
  26877. side: {
  26878. height: math.unit(6.5, "feet"),
  26879. weight: math.unit(800, "lb"),
  26880. name: "Side",
  26881. image: {
  26882. source: "./media/characters/dusk/side.svg",
  26883. extra: 615 / 373,
  26884. bottom: 53 / 664
  26885. }
  26886. },
  26887. sitting: {
  26888. height: math.unit(7, "feet"),
  26889. weight: math.unit(800, "lb"),
  26890. name: "Sitting",
  26891. image: {
  26892. source: "./media/characters/dusk/sitting.svg",
  26893. extra: 753 / 425,
  26894. bottom: 33 / 774
  26895. }
  26896. },
  26897. head: {
  26898. height: math.unit(6.1, "feet"),
  26899. name: "Head",
  26900. image: {
  26901. source: "./media/characters/dusk/head.svg"
  26902. }
  26903. },
  26904. },
  26905. [
  26906. {
  26907. name: "Normal",
  26908. height: math.unit(7, "feet"),
  26909. default: true
  26910. },
  26911. ]
  26912. ))
  26913. characterMakers.push(() => makeCharacter(
  26914. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26915. {
  26916. front: {
  26917. height: math.unit(15, "feet"),
  26918. weight: math.unit(7000, "lb"),
  26919. name: "Front",
  26920. image: {
  26921. source: "./media/characters/jay-direwolf/front.svg",
  26922. extra: 1810 / 1732,
  26923. bottom: 66 / 1892
  26924. }
  26925. },
  26926. },
  26927. [
  26928. {
  26929. name: "Normal",
  26930. height: math.unit(15, "feet"),
  26931. default: true
  26932. },
  26933. ]
  26934. ))
  26935. characterMakers.push(() => makeCharacter(
  26936. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26937. {
  26938. front: {
  26939. height: math.unit(4 + 9 / 12, "feet"),
  26940. weight: math.unit(130, "lb"),
  26941. name: "Front",
  26942. image: {
  26943. source: "./media/characters/anchovie/front.svg",
  26944. extra: 382 / 350,
  26945. bottom: 25 / 409
  26946. }
  26947. },
  26948. back: {
  26949. height: math.unit(4 + 9 / 12, "feet"),
  26950. weight: math.unit(130, "lb"),
  26951. name: "Back",
  26952. image: {
  26953. source: "./media/characters/anchovie/back.svg",
  26954. extra: 385 / 352,
  26955. bottom: 16.6 / 402
  26956. }
  26957. },
  26958. frontDressed: {
  26959. height: math.unit(4 + 9 / 12, "feet"),
  26960. weight: math.unit(130, "lb"),
  26961. name: "Front (Dressed)",
  26962. image: {
  26963. source: "./media/characters/anchovie/front-dressed.svg",
  26964. extra: 382 / 350,
  26965. bottom: 25 / 409
  26966. }
  26967. },
  26968. backDressed: {
  26969. height: math.unit(4 + 9 / 12, "feet"),
  26970. weight: math.unit(130, "lb"),
  26971. name: "Back (Dressed)",
  26972. image: {
  26973. source: "./media/characters/anchovie/back-dressed.svg",
  26974. extra: 385 / 352,
  26975. bottom: 16.6 / 402
  26976. }
  26977. },
  26978. },
  26979. [
  26980. {
  26981. name: "Micro",
  26982. height: math.unit(6.4, "inches")
  26983. },
  26984. {
  26985. name: "Normal",
  26986. height: math.unit(4 + 9 / 12, "feet"),
  26987. default: true
  26988. },
  26989. ]
  26990. ))
  26991. characterMakers.push(() => makeCharacter(
  26992. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26993. {
  26994. front: {
  26995. height: math.unit(2, "meters"),
  26996. weight: math.unit(180, "lb"),
  26997. name: "Front",
  26998. image: {
  26999. source: "./media/characters/acidrenamon/front.svg",
  27000. extra: 987 / 890,
  27001. bottom: 22.8 / 1009
  27002. }
  27003. },
  27004. back: {
  27005. height: math.unit(2, "meters"),
  27006. weight: math.unit(180, "lb"),
  27007. name: "Back",
  27008. image: {
  27009. source: "./media/characters/acidrenamon/back.svg",
  27010. extra: 983 / 891,
  27011. bottom: 8.4 / 992
  27012. }
  27013. },
  27014. head: {
  27015. height: math.unit(1.92, "feet"),
  27016. name: "Head",
  27017. image: {
  27018. source: "./media/characters/acidrenamon/head.svg"
  27019. }
  27020. },
  27021. rump: {
  27022. height: math.unit(1.72, "feet"),
  27023. name: "Rump",
  27024. image: {
  27025. source: "./media/characters/acidrenamon/rump.svg"
  27026. }
  27027. },
  27028. tail: {
  27029. height: math.unit(4.2, "feet"),
  27030. name: "Tail",
  27031. image: {
  27032. source: "./media/characters/acidrenamon/tail.svg"
  27033. }
  27034. },
  27035. },
  27036. [
  27037. {
  27038. name: "Normal",
  27039. height: math.unit(2, "meters"),
  27040. default: true
  27041. },
  27042. {
  27043. name: "Minimacro",
  27044. height: math.unit(7, "meters")
  27045. },
  27046. {
  27047. name: "Macro",
  27048. height: math.unit(200, "meters")
  27049. },
  27050. {
  27051. name: "Gigamacro",
  27052. height: math.unit(0.2, "earths")
  27053. },
  27054. ]
  27055. ))
  27056. characterMakers.push(() => makeCharacter(
  27057. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27058. {
  27059. front: {
  27060. height: math.unit(6, "feet"),
  27061. weight: math.unit(150, "lb"),
  27062. name: "Front",
  27063. image: {
  27064. source: "./media/characters/kenzie-lee/front.svg",
  27065. extra: 1525 / 1465,
  27066. bottom: 45 / 1570
  27067. }
  27068. },
  27069. side: {
  27070. height: math.unit(6, "feet"),
  27071. weight: math.unit(150, "lb"),
  27072. name: "Side",
  27073. image: {
  27074. source: "./media/characters/kenzie-lee/side.svg",
  27075. extra: 5505 / 5383,
  27076. bottom: 60 / 5573
  27077. }
  27078. },
  27079. paw: {
  27080. height: math.unit(0.57, "feet"),
  27081. name: "Paw",
  27082. image: {
  27083. source: "./media/characters/kenzie-lee/paw.svg"
  27084. }
  27085. },
  27086. },
  27087. [
  27088. {
  27089. name: "Normal",
  27090. height: math.unit(152, "feet"),
  27091. default: true
  27092. },
  27093. {
  27094. name: "Megamacro",
  27095. height: math.unit(7, "miles")
  27096. },
  27097. {
  27098. name: "Gigamacro",
  27099. height: math.unit(8000, "miles")
  27100. },
  27101. ]
  27102. ))
  27103. characterMakers.push(() => makeCharacter(
  27104. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27105. {
  27106. side: {
  27107. height: math.unit(6, "feet"),
  27108. weight: math.unit(150, "lb"),
  27109. name: "Side",
  27110. image: {
  27111. source: "./media/characters/withers/side.svg",
  27112. extra: 1830 / 1728,
  27113. bottom: 96 / 1927
  27114. }
  27115. },
  27116. front: {
  27117. height: math.unit(6, "feet"),
  27118. weight: math.unit(150, "lb"),
  27119. name: "Front",
  27120. image: {
  27121. source: "./media/characters/withers/front.svg",
  27122. extra: 1514 / 1438,
  27123. bottom: 118 / 1632
  27124. }
  27125. },
  27126. },
  27127. [
  27128. {
  27129. name: "Macro",
  27130. height: math.unit(168, "feet"),
  27131. default: true
  27132. },
  27133. {
  27134. name: "Megamacro",
  27135. height: math.unit(15, "miles")
  27136. }
  27137. ]
  27138. ))
  27139. characterMakers.push(() => makeCharacter(
  27140. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27141. {
  27142. front: {
  27143. height: math.unit(6 + 7 / 12, "feet"),
  27144. weight: math.unit(250, "lb"),
  27145. name: "Front",
  27146. image: {
  27147. source: "./media/characters/nemoskii/front.svg",
  27148. extra: 2270 / 1734,
  27149. bottom: 86 / 2354
  27150. }
  27151. },
  27152. back: {
  27153. height: math.unit(6 + 7 / 12, "feet"),
  27154. weight: math.unit(250, "lb"),
  27155. name: "Back",
  27156. image: {
  27157. source: "./media/characters/nemoskii/back.svg",
  27158. extra: 1845 / 1788,
  27159. bottom: 10.5 / 1852
  27160. }
  27161. },
  27162. head: {
  27163. height: math.unit(1.31, "feet"),
  27164. name: "Head",
  27165. image: {
  27166. source: "./media/characters/nemoskii/head.svg"
  27167. }
  27168. },
  27169. },
  27170. [
  27171. {
  27172. name: "Micro",
  27173. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27174. },
  27175. {
  27176. name: "Normal",
  27177. height: math.unit(6 + 7 / 12, "feet"),
  27178. default: true
  27179. },
  27180. {
  27181. name: "Macro",
  27182. height: math.unit((6 + 7 / 12) * 150, "feet")
  27183. },
  27184. {
  27185. name: "Macro+",
  27186. height: math.unit((6 + 7 / 12) * 500, "feet")
  27187. },
  27188. {
  27189. name: "Megamacro",
  27190. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27191. },
  27192. ]
  27193. ))
  27194. characterMakers.push(() => makeCharacter(
  27195. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27196. {
  27197. front: {
  27198. height: math.unit(1, "mile"),
  27199. weight: math.unit(265261.9, "lb"),
  27200. name: "Front",
  27201. image: {
  27202. source: "./media/characters/shui/front.svg",
  27203. extra: 1633 / 1564,
  27204. bottom: 91.5 / 1726
  27205. }
  27206. },
  27207. },
  27208. [
  27209. {
  27210. name: "Macro",
  27211. height: math.unit(1, "mile"),
  27212. default: true
  27213. },
  27214. ]
  27215. ))
  27216. characterMakers.push(() => makeCharacter(
  27217. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27218. {
  27219. front: {
  27220. height: math.unit(12 + 6 / 12, "feet"),
  27221. weight: math.unit(1342, "lb"),
  27222. name: "Front",
  27223. image: {
  27224. source: "./media/characters/arokh-takakura/front.svg",
  27225. extra: 1089 / 1043,
  27226. bottom: 77.4 / 1176.7
  27227. }
  27228. },
  27229. back: {
  27230. height: math.unit(12 + 6 / 12, "feet"),
  27231. weight: math.unit(1342, "lb"),
  27232. name: "Back",
  27233. image: {
  27234. source: "./media/characters/arokh-takakura/back.svg",
  27235. extra: 1046 / 1019,
  27236. bottom: 102 / 1150
  27237. }
  27238. },
  27239. },
  27240. [
  27241. {
  27242. name: "Big",
  27243. height: math.unit(12 + 6 / 12, "feet"),
  27244. default: true
  27245. },
  27246. ]
  27247. ))
  27248. characterMakers.push(() => makeCharacter(
  27249. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27250. {
  27251. front: {
  27252. height: math.unit(5 + 6 / 12, "feet"),
  27253. weight: math.unit(150, "lb"),
  27254. name: "Front",
  27255. image: {
  27256. source: "./media/characters/theo/front.svg",
  27257. extra: 1184 / 1131,
  27258. bottom: 7.4 / 1191
  27259. }
  27260. },
  27261. },
  27262. [
  27263. {
  27264. name: "Micro",
  27265. height: math.unit(5, "inches")
  27266. },
  27267. {
  27268. name: "Normal",
  27269. height: math.unit(5 + 6 / 12, "feet"),
  27270. default: true
  27271. },
  27272. ]
  27273. ))
  27274. characterMakers.push(() => makeCharacter(
  27275. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27276. {
  27277. front: {
  27278. height: math.unit(5 + 9 / 12, "feet"),
  27279. weight: math.unit(130, "lb"),
  27280. name: "Front",
  27281. image: {
  27282. source: "./media/characters/cecelia-swift/front.svg",
  27283. extra: 502 / 484,
  27284. bottom: 23 / 523
  27285. }
  27286. },
  27287. back: {
  27288. height: math.unit(5 + 9 / 12, "feet"),
  27289. weight: math.unit(130, "lb"),
  27290. name: "Back",
  27291. image: {
  27292. source: "./media/characters/cecelia-swift/back.svg",
  27293. extra: 499 / 485,
  27294. bottom: 12 / 511
  27295. }
  27296. },
  27297. head: {
  27298. height: math.unit(0.90, "feet"),
  27299. name: "Head",
  27300. image: {
  27301. source: "./media/characters/cecelia-swift/head.svg"
  27302. }
  27303. },
  27304. rump: {
  27305. height: math.unit(1.75, "feet"),
  27306. name: "Rump",
  27307. image: {
  27308. source: "./media/characters/cecelia-swift/rump.svg"
  27309. }
  27310. },
  27311. },
  27312. [
  27313. {
  27314. name: "Normal",
  27315. height: math.unit(5 + 9 / 12, "feet"),
  27316. default: true
  27317. },
  27318. {
  27319. name: "Big",
  27320. height: math.unit(50, "feet")
  27321. },
  27322. {
  27323. name: "Macro",
  27324. height: math.unit(100, "feet")
  27325. },
  27326. {
  27327. name: "Macro+",
  27328. height: math.unit(500, "feet")
  27329. },
  27330. {
  27331. name: "Macro++",
  27332. height: math.unit(1000, "feet")
  27333. },
  27334. ]
  27335. ))
  27336. characterMakers.push(() => makeCharacter(
  27337. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27338. {
  27339. front: {
  27340. height: math.unit(6, "feet"),
  27341. weight: math.unit(150, "lb"),
  27342. name: "Front",
  27343. image: {
  27344. source: "./media/characters/kaunan/front.svg",
  27345. extra: 2890 / 2523,
  27346. bottom: 49 / 2939
  27347. }
  27348. },
  27349. },
  27350. [
  27351. {
  27352. name: "Macro",
  27353. height: math.unit(150, "feet"),
  27354. default: true
  27355. },
  27356. ]
  27357. ))
  27358. characterMakers.push(() => makeCharacter(
  27359. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27360. {
  27361. front: {
  27362. height: math.unit(175, "cm"),
  27363. weight: math.unit(60, "kg"),
  27364. name: "Front",
  27365. image: {
  27366. source: "./media/characters/fei/front.svg",
  27367. extra: 1873/1723,
  27368. bottom: 53/1926
  27369. }
  27370. },
  27371. },
  27372. [
  27373. {
  27374. name: "Mortal",
  27375. height: math.unit(175, "cm")
  27376. },
  27377. {
  27378. name: "Normal",
  27379. height: math.unit(3500, "m"),
  27380. default: true
  27381. },
  27382. {
  27383. name: "Stroll",
  27384. height: math.unit(17.5, "km")
  27385. },
  27386. {
  27387. name: "Showoff",
  27388. height: math.unit(175, "km")
  27389. },
  27390. ]
  27391. ))
  27392. characterMakers.push(() => makeCharacter(
  27393. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27394. {
  27395. front: {
  27396. height: math.unit(7, "feet"),
  27397. weight: math.unit(1000, "kg"),
  27398. name: "Front",
  27399. image: {
  27400. source: "./media/characters/edrax/front.svg",
  27401. extra: 2838 / 2550,
  27402. bottom: 130 / 2968
  27403. }
  27404. },
  27405. },
  27406. [
  27407. {
  27408. name: "Small",
  27409. height: math.unit(7, "feet")
  27410. },
  27411. {
  27412. name: "Normal",
  27413. height: math.unit(1500, "meters")
  27414. },
  27415. {
  27416. name: "Mega",
  27417. height: math.unit(12000000, "km"),
  27418. default: true
  27419. },
  27420. {
  27421. name: "Megamacro",
  27422. height: math.unit(10600000, "lightyears")
  27423. },
  27424. {
  27425. name: "Hypermacro",
  27426. height: math.unit(256, "yottameters")
  27427. },
  27428. ]
  27429. ))
  27430. characterMakers.push(() => makeCharacter(
  27431. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27432. {
  27433. front: {
  27434. height: math.unit(10, "feet"),
  27435. weight: math.unit(750, "lb"),
  27436. name: "Front",
  27437. image: {
  27438. source: "./media/characters/clove/front.svg",
  27439. extra: 2031 / 1860,
  27440. bottom: 47.8 / 2080
  27441. }
  27442. },
  27443. back: {
  27444. height: math.unit(10, "feet"),
  27445. weight: math.unit(750, "lb"),
  27446. name: "Back",
  27447. image: {
  27448. source: "./media/characters/clove/back.svg",
  27449. extra: 2025 / 1859,
  27450. bottom: 46 / 2071
  27451. }
  27452. },
  27453. },
  27454. [
  27455. {
  27456. name: "Normal",
  27457. height: math.unit(10, "feet"),
  27458. default: true
  27459. },
  27460. ]
  27461. ))
  27462. characterMakers.push(() => makeCharacter(
  27463. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27464. {
  27465. front: {
  27466. height: math.unit(4, "feet"),
  27467. weight: math.unit(50, "lb"),
  27468. name: "Front",
  27469. image: {
  27470. source: "./media/characters/alex-rabbit/front.svg",
  27471. extra: 507 / 458,
  27472. bottom: 18.5 / 527
  27473. }
  27474. },
  27475. back: {
  27476. height: math.unit(4, "feet"),
  27477. weight: math.unit(50, "lb"),
  27478. name: "Back",
  27479. image: {
  27480. source: "./media/characters/alex-rabbit/back.svg",
  27481. extra: 502 / 460,
  27482. bottom: 18.9 / 521
  27483. }
  27484. },
  27485. },
  27486. [
  27487. {
  27488. name: "Normal",
  27489. height: math.unit(4, "feet"),
  27490. default: true
  27491. },
  27492. ]
  27493. ))
  27494. characterMakers.push(() => makeCharacter(
  27495. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27496. {
  27497. front: {
  27498. height: math.unit(1 + 3 / 12, "feet"),
  27499. weight: math.unit(80, "lb"),
  27500. name: "Front",
  27501. image: {
  27502. source: "./media/characters/zander-rose/front.svg",
  27503. extra: 916 / 797,
  27504. bottom: 17 / 933
  27505. }
  27506. },
  27507. back: {
  27508. height: math.unit(1 + 3 / 12, "feet"),
  27509. weight: math.unit(80, "lb"),
  27510. name: "Back",
  27511. image: {
  27512. source: "./media/characters/zander-rose/back.svg",
  27513. extra: 903 / 779,
  27514. bottom: 31 / 934
  27515. }
  27516. },
  27517. },
  27518. [
  27519. {
  27520. name: "Normal",
  27521. height: math.unit(1 + 3 / 12, "feet"),
  27522. default: true
  27523. },
  27524. ]
  27525. ))
  27526. characterMakers.push(() => makeCharacter(
  27527. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27528. {
  27529. anthro: {
  27530. height: math.unit(6, "feet"),
  27531. weight: math.unit(150, "lb"),
  27532. name: "Anthro",
  27533. image: {
  27534. source: "./media/characters/razz/anthro.svg",
  27535. extra: 1437 / 1343,
  27536. bottom: 48 / 1485
  27537. }
  27538. },
  27539. feral: {
  27540. height: math.unit(6, "feet"),
  27541. weight: math.unit(150, "lb"),
  27542. name: "Feral",
  27543. image: {
  27544. source: "./media/characters/razz/feral.svg",
  27545. extra: 2569 / 1385,
  27546. bottom: 95 / 2664
  27547. }
  27548. },
  27549. },
  27550. [
  27551. {
  27552. name: "Normal",
  27553. height: math.unit(6, "feet"),
  27554. default: true
  27555. },
  27556. ]
  27557. ))
  27558. characterMakers.push(() => makeCharacter(
  27559. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27560. {
  27561. front: {
  27562. height: math.unit(9 + 4 / 12, "feet"),
  27563. weight: math.unit(500, "lb"),
  27564. name: "Front",
  27565. image: {
  27566. source: "./media/characters/morrigan/front.svg",
  27567. extra: 2707 / 2579,
  27568. bottom: 156 / 2863
  27569. }
  27570. },
  27571. },
  27572. [
  27573. {
  27574. name: "Normal",
  27575. height: math.unit(9 + 4 / 12, "feet"),
  27576. default: true
  27577. },
  27578. ]
  27579. ))
  27580. characterMakers.push(() => makeCharacter(
  27581. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27582. {
  27583. front: {
  27584. height: math.unit(5, "stories"),
  27585. weight: math.unit(4000, "lb"),
  27586. name: "Front",
  27587. image: {
  27588. source: "./media/characters/jenene/front.svg",
  27589. extra: 1780 / 1710,
  27590. bottom: 57 / 1837
  27591. }
  27592. },
  27593. },
  27594. [
  27595. {
  27596. name: "Normal",
  27597. height: math.unit(5, "stories"),
  27598. default: true
  27599. },
  27600. ]
  27601. ))
  27602. characterMakers.push(() => makeCharacter(
  27603. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27604. {
  27605. front: {
  27606. height: math.unit(6, "feet"),
  27607. weight: math.unit(150, "lb"),
  27608. name: "Front",
  27609. image: {
  27610. source: "./media/characters/vix-archaser/front.svg",
  27611. extra: 2767 / 2562,
  27612. bottom: 36 / 2803
  27613. }
  27614. },
  27615. },
  27616. [
  27617. {
  27618. name: "Micro",
  27619. height: math.unit(1, "foot")
  27620. },
  27621. {
  27622. name: "Normal",
  27623. height: math.unit(6 + 5 / 12, "feet")
  27624. },
  27625. {
  27626. name: "Minimacro",
  27627. height: math.unit(500, "feet")
  27628. },
  27629. {
  27630. name: "Macro",
  27631. height: math.unit(4, "miles")
  27632. },
  27633. {
  27634. name: "Megamacro",
  27635. height: math.unit(250, "miles"),
  27636. default: true
  27637. },
  27638. {
  27639. name: "Gigamacro",
  27640. height: math.unit(1, "universe")
  27641. },
  27642. {
  27643. name: "Endgame",
  27644. height: math.unit(100, "multiverses")
  27645. }
  27646. ]
  27647. ))
  27648. characterMakers.push(() => makeCharacter(
  27649. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27650. {
  27651. taurSfw: {
  27652. height: math.unit(10, "meters"),
  27653. weight: math.unit(17500, "kg"),
  27654. name: "Taur",
  27655. image: {
  27656. source: "./media/characters/faey/taur-sfw.svg",
  27657. extra: 1200 / 968,
  27658. bottom: 41 / 1241
  27659. }
  27660. },
  27661. chestmaw: {
  27662. height: math.unit(2.01, "meters"),
  27663. name: "Chestmaw",
  27664. image: {
  27665. source: "./media/characters/faey/chestmaw.svg"
  27666. }
  27667. },
  27668. foot: {
  27669. height: math.unit(2.43, "meters"),
  27670. name: "Foot",
  27671. image: {
  27672. source: "./media/characters/faey/foot.svg"
  27673. }
  27674. },
  27675. jaws: {
  27676. height: math.unit(1.66, "meters"),
  27677. name: "Jaws",
  27678. image: {
  27679. source: "./media/characters/faey/jaws.svg"
  27680. }
  27681. },
  27682. tongues: {
  27683. height: math.unit(2.01, "meters"),
  27684. name: "Tongues",
  27685. image: {
  27686. source: "./media/characters/faey/tongues.svg"
  27687. }
  27688. },
  27689. },
  27690. [
  27691. {
  27692. name: "Small",
  27693. height: math.unit(10, "meters"),
  27694. default: true
  27695. },
  27696. {
  27697. name: "Big",
  27698. height: math.unit(500000, "km")
  27699. },
  27700. ]
  27701. ))
  27702. characterMakers.push(() => makeCharacter(
  27703. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27704. {
  27705. front: {
  27706. height: math.unit(7, "feet"),
  27707. weight: math.unit(275, "lb"),
  27708. name: "Front",
  27709. image: {
  27710. source: "./media/characters/roku/front.svg",
  27711. extra: 903 / 878,
  27712. bottom: 37 / 940
  27713. }
  27714. },
  27715. },
  27716. [
  27717. {
  27718. name: "Normal",
  27719. height: math.unit(7, "feet"),
  27720. default: true
  27721. },
  27722. {
  27723. name: "Macro",
  27724. height: math.unit(500, "feet")
  27725. },
  27726. {
  27727. name: "Megamacro",
  27728. height: math.unit(200, "miles")
  27729. },
  27730. ]
  27731. ))
  27732. characterMakers.push(() => makeCharacter(
  27733. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27734. {
  27735. front: {
  27736. height: math.unit(6 + 2 / 12, "feet"),
  27737. weight: math.unit(150, "lb"),
  27738. name: "Front",
  27739. image: {
  27740. source: "./media/characters/lira/front.svg",
  27741. extra: 1727 / 1605,
  27742. bottom: 26 / 1753
  27743. }
  27744. },
  27745. back: {
  27746. height: math.unit(6 + 2 / 12, "feet"),
  27747. weight: math.unit(150, "lb"),
  27748. name: "Back",
  27749. image: {
  27750. source: "./media/characters/lira/back.svg",
  27751. extra: 1713/1621,
  27752. bottom: 20/1733
  27753. }
  27754. },
  27755. hand: {
  27756. height: math.unit(0.75, "feet"),
  27757. name: "Hand",
  27758. image: {
  27759. source: "./media/characters/lira/hand.svg"
  27760. }
  27761. },
  27762. maw: {
  27763. height: math.unit(0.65, "feet"),
  27764. name: "Maw",
  27765. image: {
  27766. source: "./media/characters/lira/maw.svg"
  27767. }
  27768. },
  27769. pawDigi: {
  27770. height: math.unit(1.6, "feet"),
  27771. name: "Paw Digi",
  27772. image: {
  27773. source: "./media/characters/lira/paw-digi.svg"
  27774. }
  27775. },
  27776. pawPlanti: {
  27777. height: math.unit(1.4, "feet"),
  27778. name: "Paw Planti",
  27779. image: {
  27780. source: "./media/characters/lira/paw-planti.svg"
  27781. }
  27782. },
  27783. },
  27784. [
  27785. {
  27786. name: "Normal",
  27787. height: math.unit(6 + 2 / 12, "feet"),
  27788. default: true
  27789. },
  27790. {
  27791. name: "Macro",
  27792. height: math.unit(100, "feet")
  27793. },
  27794. {
  27795. name: "Macro²",
  27796. height: math.unit(1600, "feet")
  27797. },
  27798. {
  27799. name: "Planetary",
  27800. height: math.unit(20, "earths")
  27801. },
  27802. ]
  27803. ))
  27804. characterMakers.push(() => makeCharacter(
  27805. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27806. {
  27807. front: {
  27808. height: math.unit(6, "feet"),
  27809. weight: math.unit(150, "lb"),
  27810. name: "Front",
  27811. image: {
  27812. source: "./media/characters/hadjet/front.svg",
  27813. extra: 1480 / 1346,
  27814. bottom: 26 / 1506
  27815. }
  27816. },
  27817. frontNsfw: {
  27818. height: math.unit(6, "feet"),
  27819. weight: math.unit(150, "lb"),
  27820. name: "Front (NSFW)",
  27821. image: {
  27822. source: "./media/characters/hadjet/front-nsfw.svg",
  27823. extra: 1440 / 1358,
  27824. bottom: 52 / 1492
  27825. }
  27826. },
  27827. },
  27828. [
  27829. {
  27830. name: "Macro",
  27831. height: math.unit(10, "stories"),
  27832. default: true
  27833. },
  27834. {
  27835. name: "Megamacro",
  27836. height: math.unit(1.5, "miles")
  27837. },
  27838. {
  27839. name: "Megamacro+",
  27840. height: math.unit(5, "miles")
  27841. },
  27842. ]
  27843. ))
  27844. characterMakers.push(() => makeCharacter(
  27845. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27846. {
  27847. side: {
  27848. height: math.unit(106, "feet"),
  27849. weight: math.unit(500, "tonnes"),
  27850. name: "Side",
  27851. image: {
  27852. source: "./media/characters/kodran/side.svg",
  27853. extra: 553 / 480,
  27854. bottom: 33 / 586
  27855. }
  27856. },
  27857. front: {
  27858. height: math.unit(132, "feet"),
  27859. weight: math.unit(500, "tonnes"),
  27860. name: "Front",
  27861. image: {
  27862. source: "./media/characters/kodran/front.svg",
  27863. extra: 667 / 643,
  27864. bottom: 42 / 709
  27865. }
  27866. },
  27867. flying: {
  27868. height: math.unit(350, "feet"),
  27869. weight: math.unit(500, "tonnes"),
  27870. name: "Flying",
  27871. image: {
  27872. source: "./media/characters/kodran/flying.svg"
  27873. }
  27874. },
  27875. foot: {
  27876. height: math.unit(33, "feet"),
  27877. name: "Foot",
  27878. image: {
  27879. source: "./media/characters/kodran/foot.svg"
  27880. }
  27881. },
  27882. footFront: {
  27883. height: math.unit(19, "feet"),
  27884. name: "Foot (Front)",
  27885. image: {
  27886. source: "./media/characters/kodran/foot-front.svg",
  27887. extra: 261 / 261,
  27888. bottom: 91 / 352
  27889. }
  27890. },
  27891. headFront: {
  27892. height: math.unit(53, "feet"),
  27893. name: "Head (Front)",
  27894. image: {
  27895. source: "./media/characters/kodran/head-front.svg"
  27896. }
  27897. },
  27898. headSide: {
  27899. height: math.unit(65, "feet"),
  27900. name: "Head (Side)",
  27901. image: {
  27902. source: "./media/characters/kodran/head-side.svg"
  27903. }
  27904. },
  27905. throat: {
  27906. height: math.unit(79, "feet"),
  27907. name: "Throat",
  27908. image: {
  27909. source: "./media/characters/kodran/throat.svg"
  27910. }
  27911. },
  27912. },
  27913. [
  27914. {
  27915. name: "Large",
  27916. height: math.unit(106, "feet"),
  27917. default: true
  27918. },
  27919. ]
  27920. ))
  27921. characterMakers.push(() => makeCharacter(
  27922. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27923. {
  27924. side: {
  27925. height: math.unit(11, "feet"),
  27926. weight: math.unit(150, "lb"),
  27927. name: "Side",
  27928. image: {
  27929. source: "./media/characters/pyxaron/side.svg",
  27930. extra: 305 / 195,
  27931. bottom: 17 / 322
  27932. }
  27933. },
  27934. },
  27935. [
  27936. {
  27937. name: "Normal",
  27938. height: math.unit(11, "feet"),
  27939. default: true
  27940. },
  27941. ]
  27942. ))
  27943. characterMakers.push(() => makeCharacter(
  27944. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27945. {
  27946. front: {
  27947. height: math.unit(6, "feet"),
  27948. weight: math.unit(150, "lb"),
  27949. name: "Front",
  27950. image: {
  27951. source: "./media/characters/meep/front.svg",
  27952. extra: 88 / 80,
  27953. bottom: 6 / 94
  27954. }
  27955. },
  27956. },
  27957. [
  27958. {
  27959. name: "Fun Sized",
  27960. height: math.unit(2, "inches"),
  27961. default: true
  27962. },
  27963. {
  27964. name: "Friend Sized",
  27965. height: math.unit(8, "inches")
  27966. },
  27967. ]
  27968. ))
  27969. characterMakers.push(() => makeCharacter(
  27970. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27971. {
  27972. front: {
  27973. height: math.unit(15, "feet"),
  27974. weight: math.unit(2500, "lb"),
  27975. name: "Front",
  27976. image: {
  27977. source: "./media/characters/holly-rabbit/front.svg",
  27978. extra: 1433 / 1233,
  27979. bottom: 125 / 1558
  27980. }
  27981. },
  27982. dick: {
  27983. height: math.unit(4.6, "feet"),
  27984. name: "Dick",
  27985. image: {
  27986. source: "./media/characters/holly-rabbit/dick.svg"
  27987. }
  27988. },
  27989. },
  27990. [
  27991. {
  27992. name: "Normal",
  27993. height: math.unit(15, "feet"),
  27994. default: true
  27995. },
  27996. {
  27997. name: "Macro",
  27998. height: math.unit(250, "feet")
  27999. },
  28000. {
  28001. name: "Macro+",
  28002. height: math.unit(2500, "feet")
  28003. },
  28004. ]
  28005. ))
  28006. characterMakers.push(() => makeCharacter(
  28007. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28008. {
  28009. front: {
  28010. height: math.unit(3.02, "meters"),
  28011. weight: math.unit(500, "kg"),
  28012. name: "Front",
  28013. image: {
  28014. source: "./media/characters/drena/front.svg",
  28015. extra: 282 / 243,
  28016. bottom: 8 / 290
  28017. }
  28018. },
  28019. side: {
  28020. height: math.unit(3.02, "meters"),
  28021. weight: math.unit(500, "kg"),
  28022. name: "Side",
  28023. image: {
  28024. source: "./media/characters/drena/side.svg",
  28025. extra: 280 / 245,
  28026. bottom: 10 / 290
  28027. }
  28028. },
  28029. back: {
  28030. height: math.unit(3.02, "meters"),
  28031. weight: math.unit(500, "kg"),
  28032. name: "Back",
  28033. image: {
  28034. source: "./media/characters/drena/back.svg",
  28035. extra: 278 / 243,
  28036. bottom: 2 / 280
  28037. }
  28038. },
  28039. foot: {
  28040. height: math.unit(0.75, "meters"),
  28041. name: "Foot",
  28042. image: {
  28043. source: "./media/characters/drena/foot.svg"
  28044. }
  28045. },
  28046. maw: {
  28047. height: math.unit(0.82, "meters"),
  28048. name: "Maw",
  28049. image: {
  28050. source: "./media/characters/drena/maw.svg"
  28051. }
  28052. },
  28053. rump: {
  28054. height: math.unit(0.93, "meters"),
  28055. name: "Rump",
  28056. image: {
  28057. source: "./media/characters/drena/rump.svg"
  28058. }
  28059. },
  28060. },
  28061. [
  28062. {
  28063. name: "Normal",
  28064. height: math.unit(3.02, "meters"),
  28065. default: true
  28066. },
  28067. ]
  28068. ))
  28069. characterMakers.push(() => makeCharacter(
  28070. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28071. {
  28072. front: {
  28073. height: math.unit(6 + 4 / 12, "feet"),
  28074. weight: math.unit(250, "lb"),
  28075. name: "Front",
  28076. image: {
  28077. source: "./media/characters/remmyzilla/front.svg",
  28078. extra: 4033 / 3588,
  28079. bottom: 123 / 4156
  28080. }
  28081. },
  28082. back: {
  28083. height: math.unit(6 + 4 / 12, "feet"),
  28084. weight: math.unit(250, "lb"),
  28085. name: "Back",
  28086. image: {
  28087. source: "./media/characters/remmyzilla/back.svg",
  28088. extra: 2687 / 2555,
  28089. bottom: 48 / 2735
  28090. }
  28091. },
  28092. paw: {
  28093. height: math.unit(1.73, "feet"),
  28094. name: "Paw",
  28095. image: {
  28096. source: "./media/characters/remmyzilla/paw.svg"
  28097. }
  28098. },
  28099. maw: {
  28100. height: math.unit(1.73, "feet"),
  28101. name: "Maw",
  28102. image: {
  28103. source: "./media/characters/remmyzilla/maw.svg"
  28104. }
  28105. },
  28106. },
  28107. [
  28108. {
  28109. name: "Normal",
  28110. height: math.unit(6 + 4 / 12, "feet")
  28111. },
  28112. {
  28113. name: "Minimacro",
  28114. height: math.unit(12 + 8 / 12, "feet")
  28115. },
  28116. {
  28117. name: "Normal",
  28118. height: math.unit(640, "feet"),
  28119. default: true
  28120. },
  28121. {
  28122. name: "Megamacro",
  28123. height: math.unit(6400, "feet")
  28124. },
  28125. {
  28126. name: "Gigamacro",
  28127. height: math.unit(64000, "miles")
  28128. },
  28129. ]
  28130. ))
  28131. characterMakers.push(() => makeCharacter(
  28132. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28133. {
  28134. front: {
  28135. height: math.unit(2.5, "meters"),
  28136. weight: math.unit(300, "lb"),
  28137. name: "Front",
  28138. image: {
  28139. source: "./media/characters/lawrence/front.svg",
  28140. extra: 357 / 335,
  28141. bottom: 30 / 387
  28142. }
  28143. },
  28144. back: {
  28145. height: math.unit(2.5, "meters"),
  28146. weight: math.unit(300, "lb"),
  28147. name: "Back",
  28148. image: {
  28149. source: "./media/characters/lawrence/back.svg",
  28150. extra: 357 / 338,
  28151. bottom: 16 / 373
  28152. }
  28153. },
  28154. head: {
  28155. height: math.unit(0.9, "meter"),
  28156. name: "Head",
  28157. image: {
  28158. source: "./media/characters/lawrence/head.svg"
  28159. }
  28160. },
  28161. maw: {
  28162. height: math.unit(0.7, "meter"),
  28163. name: "Maw",
  28164. image: {
  28165. source: "./media/characters/lawrence/maw.svg"
  28166. }
  28167. },
  28168. footBottom: {
  28169. height: math.unit(0.5, "meter"),
  28170. name: "Foot (Bottom)",
  28171. image: {
  28172. source: "./media/characters/lawrence/foot-bottom.svg"
  28173. }
  28174. },
  28175. footTop: {
  28176. height: math.unit(0.5, "meter"),
  28177. name: "Foot (Top)",
  28178. image: {
  28179. source: "./media/characters/lawrence/foot-top.svg"
  28180. }
  28181. },
  28182. },
  28183. [
  28184. {
  28185. name: "Normal",
  28186. height: math.unit(2.5, "meters"),
  28187. default: true
  28188. },
  28189. {
  28190. name: "Macro",
  28191. height: math.unit(95, "meters")
  28192. },
  28193. {
  28194. name: "Megamacro",
  28195. height: math.unit(150, "km")
  28196. },
  28197. ]
  28198. ))
  28199. characterMakers.push(() => makeCharacter(
  28200. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28201. {
  28202. front: {
  28203. height: math.unit(4.2, "meters"),
  28204. name: "Front",
  28205. image: {
  28206. source: "./media/characters/sydney/front.svg",
  28207. extra: 1323 / 1277,
  28208. bottom: 111 / 1434
  28209. }
  28210. },
  28211. },
  28212. [
  28213. {
  28214. name: "Normal",
  28215. height: math.unit(4.2, "meters"),
  28216. default: true
  28217. },
  28218. ]
  28219. ))
  28220. characterMakers.push(() => makeCharacter(
  28221. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28222. {
  28223. back: {
  28224. height: math.unit(201, "feet"),
  28225. name: "Back",
  28226. image: {
  28227. source: "./media/characters/jessica/back.svg",
  28228. extra: 273 / 259,
  28229. bottom: 7 / 280
  28230. }
  28231. },
  28232. },
  28233. [
  28234. {
  28235. name: "Normal",
  28236. height: math.unit(201, "feet"),
  28237. default: true
  28238. },
  28239. {
  28240. name: "Megamacro",
  28241. height: math.unit(8, "miles")
  28242. },
  28243. ]
  28244. ))
  28245. characterMakers.push(() => makeCharacter(
  28246. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28247. {
  28248. side: {
  28249. height: math.unit(320, "cm"),
  28250. name: "Side",
  28251. image: {
  28252. source: "./media/characters/victoria/side.svg",
  28253. extra: 778 / 346,
  28254. bottom: 56 / 834
  28255. }
  28256. },
  28257. maw: {
  28258. height: math.unit(5.9, "feet"),
  28259. name: "Maw",
  28260. image: {
  28261. source: "./media/characters/victoria/maw.svg"
  28262. }
  28263. },
  28264. },
  28265. [
  28266. {
  28267. name: "Normal",
  28268. height: math.unit(320, "cm"),
  28269. default: true
  28270. },
  28271. ]
  28272. ))
  28273. characterMakers.push(() => makeCharacter(
  28274. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28275. {
  28276. front: {
  28277. height: math.unit(5 + 6 / 12, "feet"),
  28278. name: "Front",
  28279. image: {
  28280. source: "./media/characters/cat/front.svg",
  28281. extra: 1374 / 1257,
  28282. bottom: 59 / 1433
  28283. }
  28284. },
  28285. back: {
  28286. height: math.unit(5 + 6 / 12, "feet"),
  28287. name: "Back",
  28288. image: {
  28289. source: "./media/characters/cat/back.svg",
  28290. extra: 1337 / 1226,
  28291. bottom: 34 / 1371
  28292. }
  28293. },
  28294. taur: {
  28295. height: math.unit(7, "feet"),
  28296. name: "Taur",
  28297. image: {
  28298. source: "./media/characters/cat/taur.svg",
  28299. extra: 1345 / 1231,
  28300. bottom: 66 / 1411
  28301. }
  28302. },
  28303. lucario: {
  28304. height: math.unit(4, "feet"),
  28305. name: "Lucario",
  28306. image: {
  28307. source: "./media/characters/cat/lucario.svg",
  28308. extra: 1470 / 1318,
  28309. bottom: 65 / 1535
  28310. }
  28311. },
  28312. megaLucario: {
  28313. height: math.unit(4, "feet"),
  28314. name: "Mega Lucario",
  28315. image: {
  28316. source: "./media/characters/cat/mega-lucario.svg",
  28317. extra: 1515 / 1319,
  28318. bottom: 63 / 1578
  28319. }
  28320. },
  28321. nickit: {
  28322. height: math.unit(2, "feet"),
  28323. name: "Nickit",
  28324. image: {
  28325. source: "./media/characters/cat/nickit.svg",
  28326. extra: 1980 / 1585,
  28327. bottom: 102 / 2082
  28328. }
  28329. },
  28330. lopunnyFront: {
  28331. height: math.unit(5, "feet"),
  28332. name: "Lopunny (Front)",
  28333. image: {
  28334. source: "./media/characters/cat/lopunny-front.svg",
  28335. extra: 1782 / 1469,
  28336. bottom: 38 / 1820
  28337. }
  28338. },
  28339. lopunnyBack: {
  28340. height: math.unit(5, "feet"),
  28341. name: "Lopunny (Back)",
  28342. image: {
  28343. source: "./media/characters/cat/lopunny-back.svg",
  28344. extra: 1660 / 1490,
  28345. bottom: 25 / 1685
  28346. }
  28347. },
  28348. },
  28349. [
  28350. {
  28351. name: "Really small",
  28352. height: math.unit(1, "nm")
  28353. },
  28354. {
  28355. name: "Micro",
  28356. height: math.unit(5, "inches")
  28357. },
  28358. {
  28359. name: "Normal",
  28360. height: math.unit(5 + 6 / 12, "feet"),
  28361. default: true
  28362. },
  28363. {
  28364. name: "Macro",
  28365. height: math.unit(50, "feet")
  28366. },
  28367. {
  28368. name: "Macro+",
  28369. height: math.unit(150, "feet")
  28370. },
  28371. {
  28372. name: "Megamacro",
  28373. height: math.unit(100, "miles")
  28374. },
  28375. ]
  28376. ))
  28377. characterMakers.push(() => makeCharacter(
  28378. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28379. {
  28380. front: {
  28381. height: math.unit(63.4, "meters"),
  28382. weight: math.unit(3.28349e+6, "kilograms"),
  28383. name: "Front",
  28384. image: {
  28385. source: "./media/characters/kirina-violet/front.svg",
  28386. extra: 2812 / 2725,
  28387. bottom: 0 / 2812
  28388. }
  28389. },
  28390. back: {
  28391. height: math.unit(63.4, "meters"),
  28392. weight: math.unit(3.28349e+6, "kilograms"),
  28393. name: "Back",
  28394. image: {
  28395. source: "./media/characters/kirina-violet/back.svg",
  28396. extra: 2812 / 2725,
  28397. bottom: 0 / 2812
  28398. }
  28399. },
  28400. mouth: {
  28401. height: math.unit(4.35, "meters"),
  28402. name: "Mouth",
  28403. image: {
  28404. source: "./media/characters/kirina-violet/mouth.svg"
  28405. }
  28406. },
  28407. paw: {
  28408. height: math.unit(5.6, "meters"),
  28409. name: "Paw",
  28410. image: {
  28411. source: "./media/characters/kirina-violet/paw.svg"
  28412. }
  28413. },
  28414. tail: {
  28415. height: math.unit(18, "meters"),
  28416. name: "Tail",
  28417. image: {
  28418. source: "./media/characters/kirina-violet/tail.svg"
  28419. }
  28420. },
  28421. },
  28422. [
  28423. {
  28424. name: "Macro",
  28425. height: math.unit(63.4, "meters"),
  28426. default: true
  28427. },
  28428. ]
  28429. ))
  28430. characterMakers.push(() => makeCharacter(
  28431. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28432. {
  28433. front: {
  28434. height: math.unit(75, "feet"),
  28435. name: "Front",
  28436. image: {
  28437. source: "./media/characters/cat-gigachu/front.svg",
  28438. extra: 1239/1027,
  28439. bottom: 32/1271
  28440. }
  28441. },
  28442. back: {
  28443. height: math.unit(75, "feet"),
  28444. name: "Back",
  28445. image: {
  28446. source: "./media/characters/cat-gigachu/back.svg",
  28447. extra: 1229/1030,
  28448. bottom: 9/1238
  28449. }
  28450. },
  28451. },
  28452. [
  28453. {
  28454. name: "Dynamax",
  28455. height: math.unit(75, "feet"),
  28456. default: true
  28457. },
  28458. ]
  28459. ))
  28460. characterMakers.push(() => makeCharacter(
  28461. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28462. {
  28463. front: {
  28464. height: math.unit(6, "feet"),
  28465. weight: math.unit(150, "lb"),
  28466. name: "Front",
  28467. image: {
  28468. source: "./media/characters/sfaiyan/front.svg",
  28469. extra: 999 / 978,
  28470. bottom: 5 / 1004
  28471. }
  28472. },
  28473. },
  28474. [
  28475. {
  28476. name: "Normal",
  28477. height: math.unit(1.82, "meters")
  28478. },
  28479. {
  28480. name: "Giant",
  28481. height: math.unit(2.27, "km"),
  28482. default: true
  28483. },
  28484. ]
  28485. ))
  28486. characterMakers.push(() => makeCharacter(
  28487. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28488. {
  28489. front: {
  28490. height: math.unit(179, "cm"),
  28491. weight: math.unit(100, "kg"),
  28492. name: "Front",
  28493. image: {
  28494. source: "./media/characters/raunehkeli/front.svg",
  28495. extra: 1934 / 1926,
  28496. bottom: 0 / 1934
  28497. }
  28498. },
  28499. },
  28500. [
  28501. {
  28502. name: "Normal",
  28503. height: math.unit(179, "cm")
  28504. },
  28505. {
  28506. name: "Maximum",
  28507. height: math.unit(575, "meters"),
  28508. default: true
  28509. },
  28510. ]
  28511. ))
  28512. characterMakers.push(() => makeCharacter(
  28513. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28514. {
  28515. front: {
  28516. height: math.unit(6, "feet"),
  28517. weight: math.unit(150, "lb"),
  28518. name: "Front",
  28519. image: {
  28520. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28521. extra: 2625 / 2518,
  28522. bottom: 60 / 2685
  28523. }
  28524. },
  28525. },
  28526. [
  28527. {
  28528. name: "Normal",
  28529. height: math.unit(6 + 2 / 12, "feet")
  28530. },
  28531. {
  28532. name: "Macro",
  28533. height: math.unit(1180, "feet"),
  28534. default: true
  28535. },
  28536. ]
  28537. ))
  28538. characterMakers.push(() => makeCharacter(
  28539. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28540. {
  28541. front: {
  28542. height: math.unit(5 + 6 / 12, "feet"),
  28543. weight: math.unit(108, "lb"),
  28544. name: "Front",
  28545. image: {
  28546. source: "./media/characters/lilith-zott/front.svg",
  28547. extra: 2510 / 2238,
  28548. bottom: 100 / 2610
  28549. }
  28550. },
  28551. frontDressed: {
  28552. height: math.unit(5 + 6 / 12, "feet"),
  28553. weight: math.unit(108, "lb"),
  28554. name: "Front (Dressed)",
  28555. image: {
  28556. source: "./media/characters/lilith-zott/front-dressed.svg",
  28557. extra: 2510 / 2238,
  28558. bottom: 100 / 2610
  28559. }
  28560. },
  28561. },
  28562. [
  28563. {
  28564. name: "Normal",
  28565. height: math.unit(5 + 6 / 12, "feet")
  28566. },
  28567. {
  28568. name: "Macro",
  28569. height: math.unit(1030, "feet"),
  28570. default: true
  28571. },
  28572. ]
  28573. ))
  28574. characterMakers.push(() => makeCharacter(
  28575. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28576. {
  28577. front: {
  28578. height: math.unit(6, "feet"),
  28579. weight: math.unit(150, "lb"),
  28580. name: "Front",
  28581. image: {
  28582. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28583. extra: 2567 / 2435,
  28584. bottom: 39 / 2606
  28585. }
  28586. },
  28587. frontSuper: {
  28588. height: math.unit(6, "feet"),
  28589. name: "Front (Super)",
  28590. image: {
  28591. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28592. extra: 2567 / 2435,
  28593. bottom: 39 / 2606
  28594. }
  28595. },
  28596. },
  28597. [
  28598. {
  28599. name: "Normal",
  28600. height: math.unit(5 + 10 / 12, "feet")
  28601. },
  28602. {
  28603. name: "Macro",
  28604. height: math.unit(1100, "feet"),
  28605. default: true
  28606. },
  28607. ]
  28608. ))
  28609. characterMakers.push(() => makeCharacter(
  28610. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28611. {
  28612. front: {
  28613. height: math.unit(100, "miles"),
  28614. name: "Front",
  28615. image: {
  28616. source: "./media/characters/sona/front.svg",
  28617. extra: 2433 / 2201,
  28618. bottom: 53 / 2486
  28619. }
  28620. },
  28621. foot: {
  28622. height: math.unit(16.1, "miles"),
  28623. name: "Foot",
  28624. image: {
  28625. source: "./media/characters/sona/foot.svg"
  28626. }
  28627. },
  28628. },
  28629. [
  28630. {
  28631. name: "Macro",
  28632. height: math.unit(100, "miles"),
  28633. default: true
  28634. },
  28635. ]
  28636. ))
  28637. characterMakers.push(() => makeCharacter(
  28638. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28639. {
  28640. front: {
  28641. height: math.unit(6, "feet"),
  28642. weight: math.unit(150, "lb"),
  28643. name: "Front",
  28644. image: {
  28645. source: "./media/characters/bailey/front.svg",
  28646. extra: 1778 / 1724,
  28647. bottom: 30 / 1808
  28648. }
  28649. },
  28650. },
  28651. [
  28652. {
  28653. name: "Micro",
  28654. height: math.unit(4, "inches")
  28655. },
  28656. {
  28657. name: "Normal",
  28658. height: math.unit(5 + 5 / 12, "feet"),
  28659. default: true
  28660. },
  28661. {
  28662. name: "Macro",
  28663. height: math.unit(250, "feet")
  28664. },
  28665. {
  28666. name: "Megamacro",
  28667. height: math.unit(100, "miles")
  28668. },
  28669. ]
  28670. ))
  28671. characterMakers.push(() => makeCharacter(
  28672. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28673. {
  28674. front: {
  28675. height: math.unit(5 + 2 / 12, "feet"),
  28676. weight: math.unit(120, "lb"),
  28677. name: "Front",
  28678. image: {
  28679. source: "./media/characters/snaps/front.svg",
  28680. extra: 2370 / 2177,
  28681. bottom: 48 / 2418
  28682. }
  28683. },
  28684. back: {
  28685. height: math.unit(5 + 2 / 12, "feet"),
  28686. weight: math.unit(120, "lb"),
  28687. name: "Back",
  28688. image: {
  28689. source: "./media/characters/snaps/back.svg",
  28690. extra: 2408 / 2258,
  28691. bottom: 15 / 2423
  28692. }
  28693. },
  28694. },
  28695. [
  28696. {
  28697. name: "Micro",
  28698. height: math.unit(9, "inches")
  28699. },
  28700. {
  28701. name: "Normal",
  28702. height: math.unit(5 + 2 / 12, "feet"),
  28703. default: true
  28704. },
  28705. {
  28706. name: "Mini Macro",
  28707. height: math.unit(10, "feet")
  28708. },
  28709. ]
  28710. ))
  28711. characterMakers.push(() => makeCharacter(
  28712. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28713. {
  28714. front: {
  28715. height: math.unit(1.8, "meters"),
  28716. weight: math.unit(85, "kg"),
  28717. name: "Front",
  28718. image: {
  28719. source: "./media/characters/azteck/front.svg",
  28720. extra: 2815 / 2625,
  28721. bottom: 89 / 2904
  28722. }
  28723. },
  28724. back: {
  28725. height: math.unit(1.8, "meters"),
  28726. weight: math.unit(85, "kg"),
  28727. name: "Back",
  28728. image: {
  28729. source: "./media/characters/azteck/back.svg",
  28730. extra: 2856 / 2648,
  28731. bottom: 85 / 2941
  28732. }
  28733. },
  28734. frontDressed: {
  28735. height: math.unit(1.8, "meters"),
  28736. weight: math.unit(85, "kg"),
  28737. name: "Front (Dressed)",
  28738. image: {
  28739. source: "./media/characters/azteck/front-dressed.svg",
  28740. extra: 2147 / 2003,
  28741. bottom: 68 / 2215
  28742. }
  28743. },
  28744. head: {
  28745. height: math.unit(0.47, "meters"),
  28746. weight: math.unit(85, "kg"),
  28747. name: "Head",
  28748. image: {
  28749. source: "./media/characters/azteck/head.svg"
  28750. }
  28751. },
  28752. },
  28753. [
  28754. {
  28755. name: "Bite sized",
  28756. height: math.unit(16, "cm")
  28757. },
  28758. {
  28759. name: "Normal",
  28760. height: math.unit(1.8, "meters"),
  28761. default: true
  28762. },
  28763. ]
  28764. ))
  28765. characterMakers.push(() => makeCharacter(
  28766. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28767. {
  28768. front: {
  28769. height: math.unit(6, "feet"),
  28770. weight: math.unit(150, "lb"),
  28771. name: "Front",
  28772. image: {
  28773. source: "./media/characters/pidge/front.svg",
  28774. extra: 620 / 588,
  28775. bottom: 9 / 629
  28776. }
  28777. },
  28778. back: {
  28779. height: math.unit(6, "feet"),
  28780. weight: math.unit(150, "lb"),
  28781. name: "Back",
  28782. image: {
  28783. source: "./media/characters/pidge/back.svg",
  28784. extra: 620 / 588,
  28785. bottom: 9 / 629
  28786. }
  28787. },
  28788. },
  28789. [
  28790. {
  28791. name: "Macro",
  28792. height: math.unit(1, "mile"),
  28793. default: true
  28794. },
  28795. ]
  28796. ))
  28797. characterMakers.push(() => makeCharacter(
  28798. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28799. {
  28800. front: {
  28801. height: math.unit(6, "feet"),
  28802. weight: math.unit(150, "lb"),
  28803. name: "Front",
  28804. image: {
  28805. source: "./media/characters/en/front.svg",
  28806. extra: 1697 / 1563,
  28807. bottom: 103 / 1800
  28808. }
  28809. },
  28810. back: {
  28811. height: math.unit(6, "feet"),
  28812. weight: math.unit(150, "lb"),
  28813. name: "Back",
  28814. image: {
  28815. source: "./media/characters/en/back.svg",
  28816. extra: 1700 / 1570,
  28817. bottom: 51 / 1751
  28818. }
  28819. },
  28820. frontDressed: {
  28821. height: math.unit(6, "feet"),
  28822. weight: math.unit(150, "lb"),
  28823. name: "Front (Dressed)",
  28824. image: {
  28825. source: "./media/characters/en/front-dressed.svg",
  28826. extra: 1697 / 1563,
  28827. bottom: 103 / 1800
  28828. }
  28829. },
  28830. backDressed: {
  28831. height: math.unit(6, "feet"),
  28832. weight: math.unit(150, "lb"),
  28833. name: "Back (Dressed)",
  28834. image: {
  28835. source: "./media/characters/en/back-dressed.svg",
  28836. extra: 1700 / 1570,
  28837. bottom: 51 / 1751
  28838. }
  28839. },
  28840. },
  28841. [
  28842. {
  28843. name: "Macro",
  28844. height: math.unit(210, "feet"),
  28845. default: true
  28846. },
  28847. ]
  28848. ))
  28849. characterMakers.push(() => makeCharacter(
  28850. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28851. {
  28852. front: {
  28853. height: math.unit(6, "feet"),
  28854. weight: math.unit(150, "lb"),
  28855. name: "Front",
  28856. image: {
  28857. source: "./media/characters/haze-orris/front.svg",
  28858. extra: 3975 / 3525,
  28859. bottom: 137 / 4112
  28860. }
  28861. },
  28862. },
  28863. [
  28864. {
  28865. name: "Micro",
  28866. height: math.unit(150, "mm"),
  28867. default: true
  28868. },
  28869. ]
  28870. ))
  28871. characterMakers.push(() => makeCharacter(
  28872. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28873. {
  28874. front: {
  28875. height: math.unit(6, "feet"),
  28876. weight: math.unit(150, "lb"),
  28877. name: "Front",
  28878. image: {
  28879. source: "./media/characters/casselene-yaro/front.svg",
  28880. extra: 4721 / 4541,
  28881. bottom: 82 / 4803
  28882. }
  28883. },
  28884. back: {
  28885. height: math.unit(6, "feet"),
  28886. weight: math.unit(150, "lb"),
  28887. name: "Back",
  28888. image: {
  28889. source: "./media/characters/casselene-yaro/back.svg",
  28890. extra: 4569 / 4377,
  28891. bottom: 69 / 4638
  28892. }
  28893. },
  28894. frontDressed: {
  28895. height: math.unit(6, "feet"),
  28896. weight: math.unit(150, "lb"),
  28897. name: "Front-dressed",
  28898. image: {
  28899. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28900. extra: 4721 / 4541,
  28901. bottom: 82 / 4803
  28902. }
  28903. },
  28904. },
  28905. [
  28906. {
  28907. name: "Macro",
  28908. height: math.unit(190, "feet"),
  28909. default: true
  28910. },
  28911. ]
  28912. ))
  28913. characterMakers.push(() => makeCharacter(
  28914. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28915. {
  28916. front: {
  28917. height: math.unit(6, "feet"),
  28918. weight: math.unit(150, "lb"),
  28919. name: "Front",
  28920. image: {
  28921. source: "./media/characters/myra-rue-delore/front.svg",
  28922. extra: 1340 / 1308,
  28923. bottom: 67 / 1407
  28924. }
  28925. },
  28926. back: {
  28927. height: math.unit(6, "feet"),
  28928. weight: math.unit(150, "lb"),
  28929. name: "Back",
  28930. image: {
  28931. source: "./media/characters/myra-rue-delore/back.svg",
  28932. extra: 1341 / 1310,
  28933. bottom: 40 / 1381
  28934. }
  28935. },
  28936. frontDressed: {
  28937. height: math.unit(6, "feet"),
  28938. weight: math.unit(150, "lb"),
  28939. name: "Front (Dressed)",
  28940. image: {
  28941. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28942. extra: 1340 / 1308,
  28943. bottom: 67 / 1407
  28944. }
  28945. },
  28946. },
  28947. [
  28948. {
  28949. name: "Macro",
  28950. height: math.unit(150, "feet"),
  28951. default: true
  28952. },
  28953. ]
  28954. ))
  28955. characterMakers.push(() => makeCharacter(
  28956. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28957. {
  28958. front: {
  28959. height: math.unit(10, "feet"),
  28960. weight: math.unit(15015, "lb"),
  28961. name: "Front",
  28962. image: {
  28963. source: "./media/characters/fem!plat/front.svg",
  28964. extra: 2799 / 2604,
  28965. bottom: 149 / 2948
  28966. }
  28967. },
  28968. },
  28969. [
  28970. {
  28971. name: "Normal",
  28972. height: math.unit(10, "feet"),
  28973. default: true
  28974. },
  28975. {
  28976. name: "Macro",
  28977. height: math.unit(100, "feet")
  28978. },
  28979. {
  28980. name: "Megamacro",
  28981. height: math.unit(1000, "feet")
  28982. },
  28983. ]
  28984. ))
  28985. characterMakers.push(() => makeCharacter(
  28986. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28987. {
  28988. front: {
  28989. height: math.unit(15 + 5 / 12, "feet"),
  28990. weight: math.unit(4600, "lb"),
  28991. name: "Front",
  28992. image: {
  28993. source: "./media/characters/neapolitan-ananassa/front.svg",
  28994. extra: 2903 / 2736,
  28995. bottom: 0 / 2903
  28996. }
  28997. },
  28998. side: {
  28999. height: math.unit(15 + 5 / 12, "feet"),
  29000. weight: math.unit(4600, "lb"),
  29001. name: "Side",
  29002. image: {
  29003. source: "./media/characters/neapolitan-ananassa/side.svg",
  29004. extra: 2925 / 2719,
  29005. bottom: 0 / 2925
  29006. }
  29007. },
  29008. back: {
  29009. height: math.unit(15 + 5 / 12, "feet"),
  29010. weight: math.unit(4600, "lb"),
  29011. name: "Back",
  29012. image: {
  29013. source: "./media/characters/neapolitan-ananassa/back.svg",
  29014. extra: 2903 / 2736,
  29015. bottom: 0 / 2903
  29016. }
  29017. },
  29018. },
  29019. [
  29020. {
  29021. name: "Normal",
  29022. height: math.unit(15 + 5 / 12, "feet"),
  29023. default: true
  29024. },
  29025. {
  29026. name: "Post-Millenium",
  29027. height: math.unit(35 + 5 / 12, "feet")
  29028. },
  29029. {
  29030. name: "Post-Era",
  29031. height: math.unit(450 + 5 / 12, "feet")
  29032. },
  29033. ]
  29034. ))
  29035. characterMakers.push(() => makeCharacter(
  29036. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29037. {
  29038. front: {
  29039. height: math.unit(300, "meters"),
  29040. weight: math.unit(125000, "tonnes"),
  29041. name: "Front",
  29042. image: {
  29043. source: "./media/characters/pazuzu/front.svg",
  29044. extra: 877 / 794,
  29045. bottom: 47 / 924
  29046. }
  29047. },
  29048. },
  29049. [
  29050. {
  29051. name: "Macro",
  29052. height: math.unit(300, "meters"),
  29053. default: true
  29054. },
  29055. ]
  29056. ))
  29057. characterMakers.push(() => makeCharacter(
  29058. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29059. {
  29060. side: {
  29061. height: math.unit(10 + 7 / 12, "feet"),
  29062. weight: math.unit(2.5, "tons"),
  29063. name: "Side",
  29064. image: {
  29065. source: "./media/characters/aasha/side.svg",
  29066. extra: 1345 / 1245,
  29067. bottom: 111 / 1456
  29068. }
  29069. },
  29070. back: {
  29071. height: math.unit(10 + 7 / 12, "feet"),
  29072. weight: math.unit(2.5, "tons"),
  29073. name: "Back",
  29074. image: {
  29075. source: "./media/characters/aasha/back.svg",
  29076. extra: 1133 / 1057,
  29077. bottom: 257 / 1390
  29078. }
  29079. },
  29080. },
  29081. [
  29082. {
  29083. name: "Normal",
  29084. height: math.unit(10 + 7 / 12, "feet"),
  29085. default: true
  29086. },
  29087. ]
  29088. ))
  29089. characterMakers.push(() => makeCharacter(
  29090. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29091. {
  29092. front: {
  29093. height: math.unit(6 + 3 / 12, "feet"),
  29094. name: "Front",
  29095. image: {
  29096. source: "./media/characters/nevan/front.svg",
  29097. extra: 704 / 704,
  29098. bottom: 28 / 732
  29099. }
  29100. },
  29101. back: {
  29102. height: math.unit(6 + 3 / 12, "feet"),
  29103. name: "Back",
  29104. image: {
  29105. source: "./media/characters/nevan/back.svg",
  29106. extra: 714 / 714,
  29107. bottom: 21 / 735
  29108. }
  29109. },
  29110. frontFlaccid: {
  29111. height: math.unit(6 + 3 / 12, "feet"),
  29112. name: "Front (Flaccid)",
  29113. image: {
  29114. source: "./media/characters/nevan/front-flaccid.svg",
  29115. extra: 704 / 704,
  29116. bottom: 28 / 732
  29117. }
  29118. },
  29119. frontErect: {
  29120. height: math.unit(6 + 3 / 12, "feet"),
  29121. name: "Front (Erect)",
  29122. image: {
  29123. source: "./media/characters/nevan/front-erect.svg",
  29124. extra: 704 / 704,
  29125. bottom: 28 / 732
  29126. }
  29127. },
  29128. backFlaccid: {
  29129. height: math.unit(6 + 3 / 12, "feet"),
  29130. name: "Back (Flaccid)",
  29131. image: {
  29132. source: "./media/characters/nevan/back-flaccid.svg",
  29133. extra: 714 / 714,
  29134. bottom: 21 / 735
  29135. }
  29136. },
  29137. },
  29138. [
  29139. {
  29140. name: "Normal",
  29141. height: math.unit(6 + 3 / 12, "feet"),
  29142. default: true
  29143. },
  29144. ]
  29145. ))
  29146. characterMakers.push(() => makeCharacter(
  29147. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29148. {
  29149. front: {
  29150. height: math.unit(4, "feet"),
  29151. name: "Front",
  29152. image: {
  29153. source: "./media/characters/arhan/front.svg",
  29154. extra: 3368 / 3133,
  29155. bottom: 0 / 3368
  29156. }
  29157. },
  29158. side: {
  29159. height: math.unit(4, "feet"),
  29160. name: "Side",
  29161. image: {
  29162. source: "./media/characters/arhan/side.svg",
  29163. extra: 3347 / 3105,
  29164. bottom: 0 / 3347
  29165. }
  29166. },
  29167. tongue: {
  29168. height: math.unit(1.42, "feet"),
  29169. name: "Tongue",
  29170. image: {
  29171. source: "./media/characters/arhan/tongue.svg"
  29172. }
  29173. },
  29174. head: {
  29175. height: math.unit(0.85, "feet"),
  29176. name: "Head",
  29177. image: {
  29178. source: "./media/characters/arhan/head.svg"
  29179. }
  29180. },
  29181. },
  29182. [
  29183. {
  29184. name: "Normal",
  29185. height: math.unit(4, "feet"),
  29186. default: true
  29187. },
  29188. ]
  29189. ))
  29190. characterMakers.push(() => makeCharacter(
  29191. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29192. {
  29193. front: {
  29194. height: math.unit(5 + 7.5 / 12, "feet"),
  29195. weight: math.unit(120, "lb"),
  29196. name: "Front",
  29197. image: {
  29198. source: "./media/characters/digi-duncan/front.svg",
  29199. extra: 330 / 326,
  29200. bottom: 16 / 346
  29201. }
  29202. },
  29203. side: {
  29204. height: math.unit(5 + 7.5 / 12, "feet"),
  29205. weight: math.unit(120, "lb"),
  29206. name: "Side",
  29207. image: {
  29208. source: "./media/characters/digi-duncan/side.svg",
  29209. extra: 341 / 337,
  29210. bottom: 1 / 342
  29211. }
  29212. },
  29213. back: {
  29214. height: math.unit(5 + 7.5 / 12, "feet"),
  29215. weight: math.unit(120, "lb"),
  29216. name: "Back",
  29217. image: {
  29218. source: "./media/characters/digi-duncan/back.svg",
  29219. extra: 330 / 326,
  29220. bottom: 12 / 342
  29221. }
  29222. },
  29223. },
  29224. [
  29225. {
  29226. name: "Speck",
  29227. height: math.unit(0.25, "mm")
  29228. },
  29229. {
  29230. name: "Micro",
  29231. height: math.unit(5, "mm")
  29232. },
  29233. {
  29234. name: "Tiny",
  29235. height: math.unit(0.5, "inches"),
  29236. default: true
  29237. },
  29238. {
  29239. name: "Human",
  29240. height: math.unit(5 + 7.5 / 12, "feet")
  29241. },
  29242. {
  29243. name: "Minigiant",
  29244. height: math.unit(8 + 5.25, "feet")
  29245. },
  29246. {
  29247. name: "Giant",
  29248. height: math.unit(2000, "feet")
  29249. },
  29250. {
  29251. name: "Mega",
  29252. height: math.unit(371.1, "miles")
  29253. },
  29254. ]
  29255. ))
  29256. characterMakers.push(() => makeCharacter(
  29257. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29258. {
  29259. front: {
  29260. height: math.unit(2, "meters"),
  29261. weight: math.unit(350, "kg"),
  29262. name: "Front",
  29263. image: {
  29264. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29265. extra: 898 / 838,
  29266. bottom: 9 / 907
  29267. }
  29268. },
  29269. },
  29270. [
  29271. {
  29272. name: "Micro",
  29273. height: math.unit(8, "meters")
  29274. },
  29275. {
  29276. name: "Normal",
  29277. height: math.unit(50, "meters"),
  29278. default: true
  29279. },
  29280. {
  29281. name: "Macro",
  29282. height: math.unit(500, "meters")
  29283. },
  29284. ]
  29285. ))
  29286. characterMakers.push(() => makeCharacter(
  29287. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29288. {
  29289. front: {
  29290. height: math.unit(6 + 6 / 12, "feet"),
  29291. name: "Front",
  29292. image: {
  29293. source: "./media/characters/khardesh/front.svg",
  29294. extra: 888 / 797,
  29295. bottom: 25 / 913
  29296. }
  29297. },
  29298. },
  29299. [
  29300. {
  29301. name: "Normal",
  29302. height: math.unit(6 + 6 / 12, "feet"),
  29303. default: true
  29304. },
  29305. {
  29306. name: "Normal+",
  29307. height: math.unit(4, "meters")
  29308. },
  29309. {
  29310. name: "Macro",
  29311. height: math.unit(50, "meters")
  29312. },
  29313. {
  29314. name: "Macro+",
  29315. height: math.unit(100, "meters")
  29316. },
  29317. {
  29318. name: "Megamacro",
  29319. height: math.unit(20, "km")
  29320. },
  29321. ]
  29322. ))
  29323. characterMakers.push(() => makeCharacter(
  29324. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29325. {
  29326. front: {
  29327. height: math.unit(6, "feet"),
  29328. weight: math.unit(150, "lb"),
  29329. name: "Front",
  29330. image: {
  29331. source: "./media/characters/kosho/front.svg",
  29332. extra: 1847 / 1847,
  29333. bottom: 86 / 1933
  29334. }
  29335. },
  29336. },
  29337. [
  29338. {
  29339. name: "Second-stage micro",
  29340. height: math.unit(0.5, "inches")
  29341. },
  29342. {
  29343. name: "First-stage micro",
  29344. height: math.unit(6, "inches")
  29345. },
  29346. {
  29347. name: "Normal",
  29348. height: math.unit(6, "feet"),
  29349. default: true
  29350. },
  29351. {
  29352. name: "First-stage macro",
  29353. height: math.unit(72, "feet")
  29354. },
  29355. {
  29356. name: "Second-stage macro",
  29357. height: math.unit(864, "feet")
  29358. },
  29359. ]
  29360. ))
  29361. characterMakers.push(() => makeCharacter(
  29362. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29363. {
  29364. normal: {
  29365. height: math.unit(4 + 6 / 12, "feet"),
  29366. name: "Normal",
  29367. image: {
  29368. source: "./media/characters/hydra/normal.svg",
  29369. extra: 2833 / 2634,
  29370. bottom: 68 / 2901
  29371. }
  29372. },
  29373. smol: {
  29374. height: math.unit(0.705, "inches"),
  29375. name: "Smol",
  29376. image: {
  29377. source: "./media/characters/hydra/smol.svg",
  29378. extra: 2715 / 2540,
  29379. bottom: 0 / 2715
  29380. }
  29381. },
  29382. },
  29383. [
  29384. {
  29385. name: "Normal",
  29386. height: math.unit(4 + 6 / 12, "feet"),
  29387. default: true
  29388. }
  29389. ]
  29390. ))
  29391. characterMakers.push(() => makeCharacter(
  29392. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29393. {
  29394. front: {
  29395. height: math.unit(0.6, "cm"),
  29396. name: "Front",
  29397. image: {
  29398. source: "./media/characters/daz/front.svg",
  29399. extra: 1682 / 1164,
  29400. bottom: 42 / 1724
  29401. }
  29402. },
  29403. },
  29404. [
  29405. {
  29406. name: "Normal",
  29407. height: math.unit(0.6, "cm"),
  29408. default: true
  29409. },
  29410. ]
  29411. ))
  29412. characterMakers.push(() => makeCharacter(
  29413. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29414. {
  29415. front: {
  29416. height: math.unit(6, "feet"),
  29417. weight: math.unit(235, "lb"),
  29418. name: "Front",
  29419. image: {
  29420. source: "./media/characters/theo-pangolin/front.svg",
  29421. extra: 1996 / 1969,
  29422. bottom: 115 / 2111
  29423. }
  29424. },
  29425. back: {
  29426. height: math.unit(6, "feet"),
  29427. weight: math.unit(235, "lb"),
  29428. name: "Back",
  29429. image: {
  29430. source: "./media/characters/theo-pangolin/back.svg",
  29431. extra: 1979 / 1979,
  29432. bottom: 40 / 2019
  29433. }
  29434. },
  29435. feral: {
  29436. height: math.unit(2, "feet"),
  29437. weight: math.unit(30, "lb"),
  29438. name: "Feral",
  29439. image: {
  29440. source: "./media/characters/theo-pangolin/feral.svg",
  29441. extra: 803 / 791,
  29442. bottom: 181 / 984
  29443. }
  29444. },
  29445. footFive: {
  29446. height: math.unit(1.43, "feet"),
  29447. name: "Foot (Five Toes)",
  29448. image: {
  29449. source: "./media/characters/theo-pangolin/foot-five.svg"
  29450. }
  29451. },
  29452. footFour: {
  29453. height: math.unit(1.43, "feet"),
  29454. name: "Foot (Four Toes)",
  29455. image: {
  29456. source: "./media/characters/theo-pangolin/foot-four.svg"
  29457. }
  29458. },
  29459. handFour: {
  29460. height: math.unit(0.81, "feet"),
  29461. name: "Hand (Four Fingers)",
  29462. image: {
  29463. source: "./media/characters/theo-pangolin/hand-four.svg"
  29464. }
  29465. },
  29466. handThree: {
  29467. height: math.unit(0.81, "feet"),
  29468. name: "Hand (Three Fingers)",
  29469. image: {
  29470. source: "./media/characters/theo-pangolin/hand-three.svg"
  29471. }
  29472. },
  29473. headFront: {
  29474. height: math.unit(1.37, "feet"),
  29475. name: "Head (Front)",
  29476. image: {
  29477. source: "./media/characters/theo-pangolin/head-front.svg"
  29478. }
  29479. },
  29480. headSide: {
  29481. height: math.unit(1.43, "feet"),
  29482. name: "Head (Side)",
  29483. image: {
  29484. source: "./media/characters/theo-pangolin/head-side.svg"
  29485. }
  29486. },
  29487. tongue: {
  29488. height: math.unit(2.29, "feet"),
  29489. name: "Tongue",
  29490. image: {
  29491. source: "./media/characters/theo-pangolin/tongue.svg"
  29492. }
  29493. },
  29494. },
  29495. [
  29496. {
  29497. name: "Normal",
  29498. height: math.unit(6, "feet")
  29499. },
  29500. {
  29501. name: "Macro",
  29502. height: math.unit(400, "feet"),
  29503. default: true
  29504. },
  29505. ]
  29506. ))
  29507. characterMakers.push(() => makeCharacter(
  29508. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29509. {
  29510. front: {
  29511. height: math.unit(6, "inches"),
  29512. weight: math.unit(0.036, "kg"),
  29513. name: "Front",
  29514. image: {
  29515. source: "./media/characters/renée/front.svg",
  29516. extra: 900 / 886,
  29517. bottom: 8 / 908
  29518. }
  29519. },
  29520. },
  29521. [
  29522. {
  29523. name: "Nano",
  29524. height: math.unit(1, "nm")
  29525. },
  29526. {
  29527. name: "Micro",
  29528. height: math.unit(1, "mm")
  29529. },
  29530. {
  29531. name: "Normal",
  29532. height: math.unit(6, "inches")
  29533. },
  29534. {
  29535. name: "Macro",
  29536. height: math.unit(2000, "feet"),
  29537. default: true
  29538. },
  29539. {
  29540. name: "Megamacro",
  29541. height: math.unit(2, "km")
  29542. },
  29543. {
  29544. name: "Gigamacro",
  29545. height: math.unit(2000, "km")
  29546. },
  29547. {
  29548. name: "Teramacro",
  29549. height: math.unit(250000, "km")
  29550. },
  29551. ]
  29552. ))
  29553. characterMakers.push(() => makeCharacter(
  29554. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29555. {
  29556. front: {
  29557. height: math.unit(4, "meters"),
  29558. weight: math.unit(150, "kg"),
  29559. name: "Front",
  29560. image: {
  29561. source: "./media/characters/caledvwlch/front.svg",
  29562. extra: 1760 / 1551,
  29563. bottom: 28 / 1788
  29564. }
  29565. },
  29566. side: {
  29567. height: math.unit(4, "meters"),
  29568. weight: math.unit(150, "kg"),
  29569. name: "Side",
  29570. image: {
  29571. source: "./media/characters/caledvwlch/side.svg",
  29572. extra: 1605 / 1536,
  29573. bottom: 31 / 1636
  29574. }
  29575. },
  29576. back: {
  29577. height: math.unit(4, "meters"),
  29578. weight: math.unit(150, "kg"),
  29579. name: "Back",
  29580. image: {
  29581. source: "./media/characters/caledvwlch/back.svg",
  29582. extra: 1635 / 1565,
  29583. bottom: 27 / 1662
  29584. }
  29585. },
  29586. },
  29587. [
  29588. {
  29589. name: "\"Incognito\"",
  29590. height: math.unit(4, "meters")
  29591. },
  29592. {
  29593. name: "Small rampage",
  29594. height: math.unit(600, "meters")
  29595. },
  29596. {
  29597. name: "Mega",
  29598. height: math.unit(30, "km")
  29599. },
  29600. {
  29601. name: "Home-size",
  29602. height: math.unit(50, "km"),
  29603. default: true
  29604. },
  29605. {
  29606. name: "Giga",
  29607. height: math.unit(300, "km")
  29608. },
  29609. {
  29610. name: "Lounging",
  29611. height: math.unit(11000, "km")
  29612. },
  29613. {
  29614. name: "Planet snacking",
  29615. height: math.unit(2000000, "km")
  29616. },
  29617. ]
  29618. ))
  29619. characterMakers.push(() => makeCharacter(
  29620. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29621. {
  29622. front: {
  29623. height: math.unit(6, "feet"),
  29624. weight: math.unit(215, "lb"),
  29625. name: "Front",
  29626. image: {
  29627. source: "./media/characters/sapphire-svell/front.svg",
  29628. extra: 495 / 455,
  29629. bottom: 20 / 515
  29630. }
  29631. },
  29632. back: {
  29633. height: math.unit(6, "feet"),
  29634. weight: math.unit(216, "lb"),
  29635. name: "Back",
  29636. image: {
  29637. source: "./media/characters/sapphire-svell/back.svg",
  29638. extra: 497 / 477,
  29639. bottom: 7 / 504
  29640. }
  29641. },
  29642. maw: {
  29643. height: math.unit(1.57, "feet"),
  29644. name: "Maw",
  29645. image: {
  29646. source: "./media/characters/sapphire-svell/maw.svg"
  29647. }
  29648. },
  29649. foot: {
  29650. height: math.unit(1.07, "feet"),
  29651. name: "Foot",
  29652. image: {
  29653. source: "./media/characters/sapphire-svell/foot.svg"
  29654. }
  29655. },
  29656. toering: {
  29657. height: math.unit(1.7, "inch"),
  29658. name: "Toering",
  29659. image: {
  29660. source: "./media/characters/sapphire-svell/toering.svg"
  29661. }
  29662. },
  29663. },
  29664. [
  29665. {
  29666. name: "Normal",
  29667. height: math.unit(300, "feet"),
  29668. default: true
  29669. },
  29670. {
  29671. name: "Augmented",
  29672. height: math.unit(1250, "feet")
  29673. },
  29674. {
  29675. name: "Unleashed",
  29676. height: math.unit(3000, "feet")
  29677. },
  29678. ]
  29679. ))
  29680. characterMakers.push(() => makeCharacter(
  29681. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29682. {
  29683. side: {
  29684. height: math.unit(2 + 3 / 12, "feet"),
  29685. weight: math.unit(110, "lb"),
  29686. name: "Side",
  29687. image: {
  29688. source: "./media/characters/glitch-flux/side.svg",
  29689. extra: 997 / 805,
  29690. bottom: 20 / 1017
  29691. }
  29692. },
  29693. },
  29694. [
  29695. {
  29696. name: "Normal",
  29697. height: math.unit(2 + 3 / 12, "feet"),
  29698. default: true
  29699. },
  29700. ]
  29701. ))
  29702. characterMakers.push(() => makeCharacter(
  29703. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29704. {
  29705. front: {
  29706. height: math.unit(4, "meters"),
  29707. name: "Front",
  29708. image: {
  29709. source: "./media/characters/mid/front.svg",
  29710. extra: 507 / 476,
  29711. bottom: 17 / 524
  29712. }
  29713. },
  29714. back: {
  29715. height: math.unit(4, "meters"),
  29716. name: "Back",
  29717. image: {
  29718. source: "./media/characters/mid/back.svg",
  29719. extra: 519 / 487,
  29720. bottom: 7 / 526
  29721. }
  29722. },
  29723. stuck: {
  29724. height: math.unit(2.2, "meters"),
  29725. name: "Stuck",
  29726. image: {
  29727. source: "./media/characters/mid/stuck.svg",
  29728. extra: 1951 / 1869,
  29729. bottom: 88 / 2039
  29730. }
  29731. }
  29732. },
  29733. [
  29734. {
  29735. name: "Normal",
  29736. height: math.unit(4, "meters"),
  29737. default: true
  29738. },
  29739. {
  29740. name: "Big",
  29741. height: math.unit(10, "meters")
  29742. },
  29743. {
  29744. name: "Macro",
  29745. height: math.unit(800, "meters")
  29746. },
  29747. {
  29748. name: "Megamacro",
  29749. height: math.unit(100, "km")
  29750. },
  29751. {
  29752. name: "Overgrown",
  29753. height: math.unit(1, "parsec")
  29754. },
  29755. ]
  29756. ))
  29757. characterMakers.push(() => makeCharacter(
  29758. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29759. {
  29760. front: {
  29761. height: math.unit(2.5, "meters"),
  29762. weight: math.unit(225, "kg"),
  29763. name: "Front",
  29764. image: {
  29765. source: "./media/characters/iris/front.svg",
  29766. extra: 3348 / 3251,
  29767. bottom: 205 / 3553
  29768. }
  29769. },
  29770. maw: {
  29771. height: math.unit(0.56, "meter"),
  29772. name: "Maw",
  29773. image: {
  29774. source: "./media/characters/iris/maw.svg"
  29775. }
  29776. },
  29777. },
  29778. [
  29779. {
  29780. name: "Mewter cat",
  29781. height: math.unit(1.2, "meters")
  29782. },
  29783. {
  29784. name: "Minimacro",
  29785. height: math.unit(2.5, "meters"),
  29786. default: true
  29787. },
  29788. {
  29789. name: "Macro",
  29790. height: math.unit(180, "meters")
  29791. },
  29792. {
  29793. name: "Megamacro",
  29794. height: math.unit(2746, "meters")
  29795. },
  29796. ]
  29797. ))
  29798. characterMakers.push(() => makeCharacter(
  29799. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29800. {
  29801. front: {
  29802. height: math.unit(6, "feet"),
  29803. weight: math.unit(135, "lb"),
  29804. name: "Front",
  29805. image: {
  29806. source: "./media/characters/axel/front.svg",
  29807. extra: 908 / 908,
  29808. bottom: 58 / 966
  29809. }
  29810. },
  29811. side: {
  29812. height: math.unit(6, "feet"),
  29813. weight: math.unit(135, "lb"),
  29814. name: "Side",
  29815. image: {
  29816. source: "./media/characters/axel/side.svg",
  29817. extra: 958 / 958,
  29818. bottom: 11 / 969
  29819. }
  29820. },
  29821. back: {
  29822. height: math.unit(6, "feet"),
  29823. weight: math.unit(135, "lb"),
  29824. name: "Back",
  29825. image: {
  29826. source: "./media/characters/axel/back.svg",
  29827. extra: 887 / 887,
  29828. bottom: 34 / 921
  29829. }
  29830. },
  29831. head: {
  29832. height: math.unit(1.07, "feet"),
  29833. name: "Head",
  29834. image: {
  29835. source: "./media/characters/axel/head.svg"
  29836. }
  29837. },
  29838. beak: {
  29839. height: math.unit(1.4, "feet"),
  29840. name: "Beak",
  29841. image: {
  29842. source: "./media/characters/axel/beak.svg"
  29843. }
  29844. },
  29845. beakSide: {
  29846. height: math.unit(1.4, "feet"),
  29847. name: "Beak Side",
  29848. image: {
  29849. source: "./media/characters/axel/beak-side.svg"
  29850. }
  29851. },
  29852. sheath: {
  29853. height: math.unit(0.5, "feet"),
  29854. name: "Sheath",
  29855. image: {
  29856. source: "./media/characters/axel/sheath.svg"
  29857. }
  29858. },
  29859. dick: {
  29860. height: math.unit(0.98, "feet"),
  29861. name: "Dick",
  29862. image: {
  29863. source: "./media/characters/axel/dick.svg"
  29864. }
  29865. },
  29866. },
  29867. [
  29868. {
  29869. name: "Macro",
  29870. height: math.unit(68, "meters"),
  29871. default: true
  29872. },
  29873. ]
  29874. ))
  29875. characterMakers.push(() => makeCharacter(
  29876. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29877. {
  29878. front: {
  29879. height: math.unit(3.5, "meters"),
  29880. weight: math.unit(1200, "kg"),
  29881. name: "Front",
  29882. image: {
  29883. source: "./media/characters/joanna/front.svg",
  29884. extra: 1596 / 1488,
  29885. bottom: 29 / 1625
  29886. }
  29887. },
  29888. back: {
  29889. height: math.unit(3.5, "meters"),
  29890. weight: math.unit(1200, "kg"),
  29891. name: "Back",
  29892. image: {
  29893. source: "./media/characters/joanna/back.svg",
  29894. extra: 1594 / 1495,
  29895. bottom: 26 / 1620
  29896. }
  29897. },
  29898. frontShorts: {
  29899. height: math.unit(3.5, "meters"),
  29900. weight: math.unit(1200, "kg"),
  29901. name: "Front (Shorts)",
  29902. image: {
  29903. source: "./media/characters/joanna/front-shorts.svg",
  29904. extra: 1596 / 1488,
  29905. bottom: 29 / 1625
  29906. }
  29907. },
  29908. frontBiker: {
  29909. height: math.unit(3.5, "meters"),
  29910. weight: math.unit(1200, "kg"),
  29911. name: "Front (Biker)",
  29912. image: {
  29913. source: "./media/characters/joanna/front-biker.svg",
  29914. extra: 1596 / 1488,
  29915. bottom: 29 / 1625
  29916. }
  29917. },
  29918. backBiker: {
  29919. height: math.unit(3.5, "meters"),
  29920. weight: math.unit(1200, "kg"),
  29921. name: "Back (Biker)",
  29922. image: {
  29923. source: "./media/characters/joanna/back-biker.svg",
  29924. extra: 1594 / 1495,
  29925. bottom: 88 / 1682
  29926. }
  29927. },
  29928. bikeLeft: {
  29929. height: math.unit(2.4, "meters"),
  29930. weight: math.unit(1600, "kg"),
  29931. name: "Bike (Left)",
  29932. image: {
  29933. source: "./media/characters/joanna/bike-left.svg",
  29934. extra: 720 / 720,
  29935. bottom: 8 / 728
  29936. }
  29937. },
  29938. bikeRight: {
  29939. height: math.unit(2.4, "meters"),
  29940. weight: math.unit(1600, "kg"),
  29941. name: "Bike (Right)",
  29942. image: {
  29943. source: "./media/characters/joanna/bike-right.svg",
  29944. extra: 720 / 720,
  29945. bottom: 8 / 728
  29946. }
  29947. },
  29948. },
  29949. [
  29950. {
  29951. name: "Incognito",
  29952. height: math.unit(3.5, "meters")
  29953. },
  29954. {
  29955. name: "Casual Big",
  29956. height: math.unit(200, "meters")
  29957. },
  29958. {
  29959. name: "Macro",
  29960. height: math.unit(600, "meters")
  29961. },
  29962. {
  29963. name: "Original",
  29964. height: math.unit(20, "km"),
  29965. default: true
  29966. },
  29967. {
  29968. name: "Giga",
  29969. height: math.unit(400, "km")
  29970. },
  29971. {
  29972. name: "Lounging",
  29973. height: math.unit(1500, "km")
  29974. },
  29975. {
  29976. name: "Planetary",
  29977. height: math.unit(200000, "km")
  29978. },
  29979. ]
  29980. ))
  29981. characterMakers.push(() => makeCharacter(
  29982. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29983. {
  29984. front: {
  29985. height: math.unit(6, "feet"),
  29986. weight: math.unit(150, "lb"),
  29987. name: "Front",
  29988. image: {
  29989. source: "./media/characters/hugo-sigil/front.svg",
  29990. extra: 522 / 500,
  29991. bottom: 2 / 524
  29992. }
  29993. },
  29994. back: {
  29995. height: math.unit(6, "feet"),
  29996. weight: math.unit(150, "lb"),
  29997. name: "Back",
  29998. image: {
  29999. source: "./media/characters/hugo-sigil/back.svg",
  30000. extra: 519 / 495,
  30001. bottom: 5 / 524
  30002. }
  30003. },
  30004. maw: {
  30005. height: math.unit(1.4, "feet"),
  30006. weight: math.unit(150, "lb"),
  30007. name: "Maw",
  30008. image: {
  30009. source: "./media/characters/hugo-sigil/maw.svg"
  30010. }
  30011. },
  30012. feet: {
  30013. height: math.unit(1.56, "feet"),
  30014. weight: math.unit(150, "lb"),
  30015. name: "Feet",
  30016. image: {
  30017. source: "./media/characters/hugo-sigil/feet.svg",
  30018. extra: 177 / 177,
  30019. bottom: 12 / 189
  30020. }
  30021. },
  30022. },
  30023. [
  30024. {
  30025. name: "Normal",
  30026. height: math.unit(6, "feet")
  30027. },
  30028. {
  30029. name: "Macro",
  30030. height: math.unit(200, "feet"),
  30031. default: true
  30032. },
  30033. ]
  30034. ))
  30035. characterMakers.push(() => makeCharacter(
  30036. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30037. {
  30038. front: {
  30039. height: math.unit(6, "feet"),
  30040. weight: math.unit(150, "lb"),
  30041. name: "Front",
  30042. image: {
  30043. source: "./media/characters/peri/front.svg",
  30044. extra: 2354 / 2233,
  30045. bottom: 49 / 2403
  30046. }
  30047. },
  30048. },
  30049. [
  30050. {
  30051. name: "Really Small",
  30052. height: math.unit(1, "nm")
  30053. },
  30054. {
  30055. name: "Micro",
  30056. height: math.unit(4, "inches")
  30057. },
  30058. {
  30059. name: "Normal",
  30060. height: math.unit(7, "inches"),
  30061. default: true
  30062. },
  30063. {
  30064. name: "Macro",
  30065. height: math.unit(400, "feet")
  30066. },
  30067. {
  30068. name: "Megamacro",
  30069. height: math.unit(100, "miles")
  30070. },
  30071. ]
  30072. ))
  30073. characterMakers.push(() => makeCharacter(
  30074. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30075. {
  30076. frontSlim: {
  30077. height: math.unit(7, "feet"),
  30078. name: "Front (Slim)",
  30079. image: {
  30080. source: "./media/characters/issilora/front-slim.svg",
  30081. extra: 529 / 449,
  30082. bottom: 53 / 582
  30083. }
  30084. },
  30085. sideSlim: {
  30086. height: math.unit(7, "feet"),
  30087. name: "Side (Slim)",
  30088. image: {
  30089. source: "./media/characters/issilora/side-slim.svg",
  30090. extra: 570 / 480,
  30091. bottom: 30 / 600
  30092. }
  30093. },
  30094. backSlim: {
  30095. height: math.unit(7, "feet"),
  30096. name: "Back (Slim)",
  30097. image: {
  30098. source: "./media/characters/issilora/back-slim.svg",
  30099. extra: 537 / 455,
  30100. bottom: 46 / 583
  30101. }
  30102. },
  30103. frontBuff: {
  30104. height: math.unit(7, "feet"),
  30105. name: "Front (Buff)",
  30106. image: {
  30107. source: "./media/characters/issilora/front-buff.svg",
  30108. extra: 2310 / 2035,
  30109. bottom: 335 / 2645
  30110. }
  30111. },
  30112. head: {
  30113. height: math.unit(1.94, "feet"),
  30114. name: "Head",
  30115. image: {
  30116. source: "./media/characters/issilora/head.svg"
  30117. }
  30118. },
  30119. },
  30120. [
  30121. {
  30122. name: "Minimum",
  30123. height: math.unit(7, "feet")
  30124. },
  30125. {
  30126. name: "Comfortable",
  30127. height: math.unit(17, "feet")
  30128. },
  30129. {
  30130. name: "Fun Size",
  30131. height: math.unit(47, "feet")
  30132. },
  30133. {
  30134. name: "Natural Macro",
  30135. height: math.unit(137, "feet"),
  30136. default: true
  30137. },
  30138. {
  30139. name: "Maximum Kaiju",
  30140. height: math.unit(397, "feet")
  30141. },
  30142. ]
  30143. ))
  30144. characterMakers.push(() => makeCharacter(
  30145. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30146. {
  30147. front: {
  30148. height: math.unit(50 + 9/12, "feet"),
  30149. weight: math.unit(32.8, "tons"),
  30150. name: "Front",
  30151. image: {
  30152. source: "./media/characters/irb'iiritaahn/front.svg",
  30153. extra: 1878/1826,
  30154. bottom: 326/2204
  30155. }
  30156. },
  30157. back: {
  30158. height: math.unit(50 + 9/12, "feet"),
  30159. weight: math.unit(32.8, "tons"),
  30160. name: "Back",
  30161. image: {
  30162. source: "./media/characters/irb'iiritaahn/back.svg",
  30163. extra: 2052/2018,
  30164. bottom: 152/2204
  30165. }
  30166. },
  30167. head: {
  30168. height: math.unit(12.86, "feet"),
  30169. name: "Head",
  30170. image: {
  30171. source: "./media/characters/irb'iiritaahn/head.svg"
  30172. }
  30173. },
  30174. maw: {
  30175. height: math.unit(9.66, "feet"),
  30176. name: "Maw",
  30177. image: {
  30178. source: "./media/characters/irb'iiritaahn/maw.svg"
  30179. }
  30180. },
  30181. frontDick: {
  30182. height: math.unit(8.78461, "feet"),
  30183. name: "Front Dick",
  30184. image: {
  30185. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30186. }
  30187. },
  30188. rearDick: {
  30189. height: math.unit(8.78461, "feet"),
  30190. name: "Rear Dick",
  30191. image: {
  30192. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30193. }
  30194. },
  30195. rearDickUnfolded: {
  30196. height: math.unit(8.78, "feet"),
  30197. name: "Rear Dick (Unfolded)",
  30198. image: {
  30199. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30200. }
  30201. },
  30202. wings: {
  30203. height: math.unit(43, "feet"),
  30204. name: "Wings",
  30205. image: {
  30206. source: "./media/characters/irb'iiritaahn/wings.svg"
  30207. }
  30208. },
  30209. },
  30210. [
  30211. {
  30212. name: "Macro",
  30213. height: math.unit(50 + 9/12, "feet"),
  30214. default: true
  30215. },
  30216. ]
  30217. ))
  30218. characterMakers.push(() => makeCharacter(
  30219. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30220. {
  30221. front: {
  30222. height: math.unit(205, "cm"),
  30223. weight: math.unit(102, "kg"),
  30224. name: "Front",
  30225. image: {
  30226. source: "./media/characters/irbisgreif/front.svg",
  30227. extra: 785/706,
  30228. bottom: 13/798
  30229. }
  30230. },
  30231. back: {
  30232. height: math.unit(205, "cm"),
  30233. weight: math.unit(102, "kg"),
  30234. name: "Back",
  30235. image: {
  30236. source: "./media/characters/irbisgreif/back.svg",
  30237. extra: 713/701,
  30238. bottom: 26/739
  30239. }
  30240. },
  30241. frontDressed: {
  30242. height: math.unit(216, "cm"),
  30243. weight: math.unit(102, "kg"),
  30244. name: "Front-dressed",
  30245. image: {
  30246. source: "./media/characters/irbisgreif/front-dressed.svg",
  30247. extra: 902/776,
  30248. bottom: 14/916
  30249. }
  30250. },
  30251. sideDressed: {
  30252. height: math.unit(195, "cm"),
  30253. weight: math.unit(102, "kg"),
  30254. name: "Side-dressed",
  30255. image: {
  30256. source: "./media/characters/irbisgreif/side-dressed.svg",
  30257. extra: 788/688,
  30258. bottom: 21/809
  30259. }
  30260. },
  30261. backDressed: {
  30262. height: math.unit(216, "cm"),
  30263. weight: math.unit(102, "kg"),
  30264. name: "Back-dressed",
  30265. image: {
  30266. source: "./media/characters/irbisgreif/back-dressed.svg",
  30267. extra: 901/783,
  30268. bottom: 10/911
  30269. }
  30270. },
  30271. dick: {
  30272. height: math.unit(0.49, "feet"),
  30273. name: "Dick",
  30274. image: {
  30275. source: "./media/characters/irbisgreif/dick.svg"
  30276. }
  30277. },
  30278. wingTop: {
  30279. height: math.unit(1.93 , "feet"),
  30280. name: "Wing-top",
  30281. image: {
  30282. source: "./media/characters/irbisgreif/wing-top.svg"
  30283. }
  30284. },
  30285. wingBottom: {
  30286. height: math.unit(1.93 , "feet"),
  30287. name: "Wing-bottom",
  30288. image: {
  30289. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30290. }
  30291. },
  30292. },
  30293. [
  30294. {
  30295. name: "Normal",
  30296. height: math.unit(216, "cm"),
  30297. default: true
  30298. },
  30299. ]
  30300. ))
  30301. characterMakers.push(() => makeCharacter(
  30302. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30303. {
  30304. front: {
  30305. height: math.unit(6, "feet"),
  30306. weight: math.unit(150, "lb"),
  30307. name: "Front",
  30308. image: {
  30309. source: "./media/characters/pride/front.svg",
  30310. extra: 1299/1230,
  30311. bottom: 18/1317
  30312. }
  30313. },
  30314. },
  30315. [
  30316. {
  30317. name: "Normal",
  30318. height: math.unit(7, "feet")
  30319. },
  30320. {
  30321. name: "Mini-macro",
  30322. height: math.unit(11, "feet")
  30323. },
  30324. {
  30325. name: "Macro",
  30326. height: math.unit(15, "meters"),
  30327. default: true
  30328. },
  30329. {
  30330. name: "Macro+",
  30331. height: math.unit(40, "meters")
  30332. },
  30333. ]
  30334. ))
  30335. characterMakers.push(() => makeCharacter(
  30336. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30337. {
  30338. front: {
  30339. height: math.unit(4 + 2 / 12, "feet"),
  30340. weight: math.unit(95, "lb"),
  30341. name: "Front",
  30342. image: {
  30343. source: "./media/characters/vaelophis-nyx/front.svg",
  30344. extra: 2532/2330,
  30345. bottom: 0/2532
  30346. }
  30347. },
  30348. back: {
  30349. height: math.unit(4 + 2 / 12, "feet"),
  30350. weight: math.unit(95, "lb"),
  30351. name: "Back",
  30352. image: {
  30353. source: "./media/characters/vaelophis-nyx/back.svg",
  30354. extra: 2484/2361,
  30355. bottom: 0/2484
  30356. }
  30357. },
  30358. feralSide: {
  30359. height: math.unit(2 + 1/12, "feet"),
  30360. weight: math.unit(20, "lb"),
  30361. name: "Feral (Side)",
  30362. image: {
  30363. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30364. extra: 1721/1581,
  30365. bottom: 70/1791
  30366. }
  30367. },
  30368. feralLazing: {
  30369. height: math.unit(1.08, "feet"),
  30370. weight: math.unit(20, "lb"),
  30371. name: "Feral (Lazing)",
  30372. image: {
  30373. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30374. extra: 822/822,
  30375. bottom: 248/1070
  30376. }
  30377. },
  30378. ear: {
  30379. height: math.unit(0.416, "feet"),
  30380. name: "Ear",
  30381. image: {
  30382. source: "./media/characters/vaelophis-nyx/ear.svg"
  30383. }
  30384. },
  30385. eye: {
  30386. height: math.unit(0.0748, "feet"),
  30387. name: "Eye",
  30388. image: {
  30389. source: "./media/characters/vaelophis-nyx/eye.svg"
  30390. }
  30391. },
  30392. mouth: {
  30393. height: math.unit(0.378, "feet"),
  30394. name: "Mouth",
  30395. image: {
  30396. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30397. }
  30398. },
  30399. spade: {
  30400. height: math.unit(0.55, "feet"),
  30401. name: "Spade",
  30402. image: {
  30403. source: "./media/characters/vaelophis-nyx/spade.svg"
  30404. }
  30405. },
  30406. },
  30407. [
  30408. {
  30409. name: "Normal",
  30410. height: math.unit(4 + 2/12, "feet"),
  30411. default: true
  30412. },
  30413. ]
  30414. ))
  30415. characterMakers.push(() => makeCharacter(
  30416. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30417. {
  30418. front: {
  30419. height: math.unit(7, "feet"),
  30420. weight: math.unit(231, "lb"),
  30421. name: "Front",
  30422. image: {
  30423. source: "./media/characters/flux/front.svg",
  30424. extra: 919/871,
  30425. bottom: 0/919
  30426. }
  30427. },
  30428. back: {
  30429. height: math.unit(7, "feet"),
  30430. weight: math.unit(231, "lb"),
  30431. name: "Back",
  30432. image: {
  30433. source: "./media/characters/flux/back.svg",
  30434. extra: 1040/992,
  30435. bottom: 0/1040
  30436. }
  30437. },
  30438. frontDressed: {
  30439. height: math.unit(7, "feet"),
  30440. weight: math.unit(231, "lb"),
  30441. name: "Front (Dressed)",
  30442. image: {
  30443. source: "./media/characters/flux/front-dressed.svg",
  30444. extra: 919/871,
  30445. bottom: 0/919
  30446. }
  30447. },
  30448. feralSide: {
  30449. height: math.unit(5, "feet"),
  30450. weight: math.unit(150, "lb"),
  30451. name: "Feral (Side)",
  30452. image: {
  30453. source: "./media/characters/flux/feral-side.svg",
  30454. extra: 598/528,
  30455. bottom: 28/626
  30456. }
  30457. },
  30458. head: {
  30459. height: math.unit(1.585, "feet"),
  30460. name: "Head",
  30461. image: {
  30462. source: "./media/characters/flux/head.svg"
  30463. }
  30464. },
  30465. headSide: {
  30466. height: math.unit(1.74, "feet"),
  30467. name: "Head (Side)",
  30468. image: {
  30469. source: "./media/characters/flux/head-side.svg"
  30470. }
  30471. },
  30472. headSideFire: {
  30473. height: math.unit(1.76, "feet"),
  30474. name: "Head (Side, Fire)",
  30475. image: {
  30476. source: "./media/characters/flux/head-side-fire.svg"
  30477. }
  30478. },
  30479. },
  30480. [
  30481. {
  30482. name: "Normal",
  30483. height: math.unit(7, "feet"),
  30484. default: true
  30485. },
  30486. ]
  30487. ))
  30488. characterMakers.push(() => makeCharacter(
  30489. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30490. {
  30491. front: {
  30492. height: math.unit(9, "feet"),
  30493. weight: math.unit(1012, "lb"),
  30494. name: "Front",
  30495. image: {
  30496. source: "./media/characters/ulfra-lupae/front.svg",
  30497. extra: 1083/1011,
  30498. bottom: 67/1150
  30499. }
  30500. },
  30501. },
  30502. [
  30503. {
  30504. name: "Micro",
  30505. height: math.unit(6, "inches")
  30506. },
  30507. {
  30508. name: "Socializing",
  30509. height: math.unit(6 + 5/12, "feet")
  30510. },
  30511. {
  30512. name: "Normal",
  30513. height: math.unit(9, "feet"),
  30514. default: true
  30515. },
  30516. {
  30517. name: "Macro",
  30518. height: math.unit(150, "feet")
  30519. },
  30520. ]
  30521. ))
  30522. characterMakers.push(() => makeCharacter(
  30523. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30524. {
  30525. front: {
  30526. height: math.unit(5 + 2/12, "feet"),
  30527. weight: math.unit(120, "lb"),
  30528. name: "Front",
  30529. image: {
  30530. source: "./media/characters/timber/front.svg",
  30531. extra: 2814/2705,
  30532. bottom: 181/2995
  30533. }
  30534. },
  30535. },
  30536. [
  30537. {
  30538. name: "Normal",
  30539. height: math.unit(5 + 2/12, "feet"),
  30540. default: true
  30541. },
  30542. ]
  30543. ))
  30544. characterMakers.push(() => makeCharacter(
  30545. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30546. {
  30547. front: {
  30548. height: math.unit(5 + 7/12, "feet"),
  30549. weight: math.unit(220, "lb"),
  30550. name: "Front",
  30551. image: {
  30552. source: "./media/characters/nicki/front.svg",
  30553. extra: 453/419,
  30554. bottom: 7/460
  30555. }
  30556. },
  30557. frontAlt: {
  30558. height: math.unit(5 + 7/12, "feet"),
  30559. weight: math.unit(220, "lb"),
  30560. name: "Front-alt",
  30561. image: {
  30562. source: "./media/characters/nicki/front-alt.svg",
  30563. extra: 435/411,
  30564. bottom: 12/447
  30565. }
  30566. },
  30567. back: {
  30568. height: math.unit(5 + 7/12, "feet"),
  30569. weight: math.unit(220, "lb"),
  30570. name: "Back",
  30571. image: {
  30572. source: "./media/characters/nicki/back.svg",
  30573. extra: 440/413,
  30574. bottom: 19/459
  30575. }
  30576. },
  30577. taur: {
  30578. height: math.unit(7 + 6/12, "feet"),
  30579. weight: math.unit(700, "lb"),
  30580. name: "Taur",
  30581. image: {
  30582. source: "./media/characters/nicki/taur.svg",
  30583. extra: 975/773,
  30584. bottom: 0/975
  30585. }
  30586. },
  30587. frontNsfw: {
  30588. height: math.unit(5 + 7/12, "feet"),
  30589. weight: math.unit(220, "lb"),
  30590. name: "Front (NSFW)",
  30591. image: {
  30592. source: "./media/characters/nicki/front-nsfw.svg",
  30593. extra: 453/419,
  30594. bottom: 7/460
  30595. }
  30596. },
  30597. frontNsfwAlt: {
  30598. height: math.unit(5 + 7/12, "feet"),
  30599. weight: math.unit(220, "lb"),
  30600. name: "Front (Alt, NSFW)",
  30601. image: {
  30602. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30603. extra: 435/411,
  30604. bottom: 12/447
  30605. }
  30606. },
  30607. backNsfw: {
  30608. height: math.unit(5 + 7/12, "feet"),
  30609. weight: math.unit(220, "lb"),
  30610. name: "Back (NSFW)",
  30611. image: {
  30612. source: "./media/characters/nicki/back-nsfw.svg",
  30613. extra: 440/413,
  30614. bottom: 19/459
  30615. }
  30616. },
  30617. head: {
  30618. height: math.unit(2.1, "feet"),
  30619. name: "Head",
  30620. image: {
  30621. source: "./media/characters/nicki/head.svg"
  30622. }
  30623. },
  30624. paw: {
  30625. height: math.unit(1.88, "feet"),
  30626. name: "Paw",
  30627. image: {
  30628. source: "./media/characters/nicki/paw.svg"
  30629. }
  30630. },
  30631. },
  30632. [
  30633. {
  30634. name: "Normal",
  30635. height: math.unit(5 + 7/12, "feet"),
  30636. default: true
  30637. },
  30638. ]
  30639. ))
  30640. characterMakers.push(() => makeCharacter(
  30641. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30642. {
  30643. front: {
  30644. height: math.unit(7 + 10/12, "feet"),
  30645. weight: math.unit(3.5, "tons"),
  30646. name: "Front",
  30647. image: {
  30648. source: "./media/characters/lee/front.svg",
  30649. extra: 1773/1615,
  30650. bottom: 86/1859
  30651. }
  30652. },
  30653. hand: {
  30654. height: math.unit(1.78, "feet"),
  30655. name: "Hand",
  30656. image: {
  30657. source: "./media/characters/lee/hand.svg"
  30658. }
  30659. },
  30660. maw: {
  30661. height: math.unit(1.18, "feet"),
  30662. name: "Maw",
  30663. image: {
  30664. source: "./media/characters/lee/maw.svg"
  30665. }
  30666. },
  30667. },
  30668. [
  30669. {
  30670. name: "Normal",
  30671. height: math.unit(7 + 10/12, "feet"),
  30672. default: true
  30673. },
  30674. ]
  30675. ))
  30676. characterMakers.push(() => makeCharacter(
  30677. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30678. {
  30679. front: {
  30680. height: math.unit(9, "feet"),
  30681. name: "Front",
  30682. image: {
  30683. source: "./media/characters/guti/front.svg",
  30684. extra: 4551/4355,
  30685. bottom: 123/4674
  30686. }
  30687. },
  30688. tongue: {
  30689. height: math.unit(1, "feet"),
  30690. name: "Tongue",
  30691. image: {
  30692. source: "./media/characters/guti/tongue.svg"
  30693. }
  30694. },
  30695. paw: {
  30696. height: math.unit(1.18, "feet"),
  30697. name: "Paw",
  30698. image: {
  30699. source: "./media/characters/guti/paw.svg"
  30700. }
  30701. },
  30702. },
  30703. [
  30704. {
  30705. name: "Normal",
  30706. height: math.unit(9, "feet"),
  30707. default: true
  30708. },
  30709. ]
  30710. ))
  30711. characterMakers.push(() => makeCharacter(
  30712. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30713. {
  30714. side: {
  30715. height: math.unit(5, "meters"),
  30716. name: "Side",
  30717. image: {
  30718. source: "./media/characters/vesper/side.svg",
  30719. extra: 1605/1518,
  30720. bottom: 0/1605
  30721. }
  30722. },
  30723. },
  30724. [
  30725. {
  30726. name: "Small",
  30727. height: math.unit(5, "meters")
  30728. },
  30729. {
  30730. name: "Sage",
  30731. height: math.unit(100, "meters"),
  30732. default: true
  30733. },
  30734. {
  30735. name: "Fun Size",
  30736. height: math.unit(600, "meters")
  30737. },
  30738. {
  30739. name: "Goddess",
  30740. height: math.unit(20000, "km")
  30741. },
  30742. {
  30743. name: "Maximum",
  30744. height: math.unit(5, "galaxies")
  30745. },
  30746. ]
  30747. ))
  30748. characterMakers.push(() => makeCharacter(
  30749. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30750. {
  30751. front: {
  30752. height: math.unit(6 + 3/12, "feet"),
  30753. weight: math.unit(190, "lb"),
  30754. name: "Front",
  30755. image: {
  30756. source: "./media/characters/gawain/front.svg",
  30757. extra: 2222/2139,
  30758. bottom: 90/2312
  30759. }
  30760. },
  30761. back: {
  30762. height: math.unit(6 + 3/12, "feet"),
  30763. weight: math.unit(190, "lb"),
  30764. name: "Back",
  30765. image: {
  30766. source: "./media/characters/gawain/back.svg",
  30767. extra: 2199/2111,
  30768. bottom: 73/2272
  30769. }
  30770. },
  30771. },
  30772. [
  30773. {
  30774. name: "Normal",
  30775. height: math.unit(6 + 3/12, "feet"),
  30776. default: true
  30777. },
  30778. ]
  30779. ))
  30780. characterMakers.push(() => makeCharacter(
  30781. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30782. {
  30783. side: {
  30784. height: math.unit(3.5, "meters"),
  30785. weight: math.unit(16000, "lb"),
  30786. name: "Side",
  30787. image: {
  30788. source: "./media/characters/dascalti/side.svg",
  30789. extra: 392/273,
  30790. bottom: 47/439
  30791. }
  30792. },
  30793. breath: {
  30794. height: math.unit(7.4, "feet"),
  30795. name: "Breath",
  30796. image: {
  30797. source: "./media/characters/dascalti/breath.svg"
  30798. }
  30799. },
  30800. fed: {
  30801. height: math.unit(3.6, "meters"),
  30802. weight: math.unit(16000, "lb"),
  30803. name: "Fed",
  30804. image: {
  30805. source: "./media/characters/dascalti/fed.svg",
  30806. extra: 1419/820,
  30807. bottom: 95/1514
  30808. }
  30809. },
  30810. },
  30811. [
  30812. {
  30813. name: "Normal",
  30814. height: math.unit(3.5, "meters"),
  30815. default: true
  30816. },
  30817. ]
  30818. ))
  30819. characterMakers.push(() => makeCharacter(
  30820. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30821. {
  30822. front: {
  30823. height: math.unit(3 + 5/12, "feet"),
  30824. name: "Front",
  30825. image: {
  30826. source: "./media/characters/mauve/front.svg",
  30827. extra: 1126/1033,
  30828. bottom: 65/1191
  30829. }
  30830. },
  30831. side: {
  30832. height: math.unit(3 + 5/12, "feet"),
  30833. name: "Side",
  30834. image: {
  30835. source: "./media/characters/mauve/side.svg",
  30836. extra: 1089/1001,
  30837. bottom: 29/1118
  30838. }
  30839. },
  30840. back: {
  30841. height: math.unit(3 + 5/12, "feet"),
  30842. name: "Back",
  30843. image: {
  30844. source: "./media/characters/mauve/back.svg",
  30845. extra: 1173/1053,
  30846. bottom: 109/1282
  30847. }
  30848. },
  30849. },
  30850. [
  30851. {
  30852. name: "Normal",
  30853. height: math.unit(3 + 5/12, "feet"),
  30854. default: true
  30855. },
  30856. ]
  30857. ))
  30858. characterMakers.push(() => makeCharacter(
  30859. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30860. {
  30861. front: {
  30862. height: math.unit(6 + 3/12, "feet"),
  30863. weight: math.unit(430, "lb"),
  30864. name: "Front",
  30865. image: {
  30866. source: "./media/characters/carlos/front.svg",
  30867. extra: 1964/1913,
  30868. bottom: 70/2034
  30869. }
  30870. },
  30871. },
  30872. [
  30873. {
  30874. name: "Normal",
  30875. height: math.unit(6 + 3/12, "feet"),
  30876. default: true
  30877. },
  30878. ]
  30879. ))
  30880. characterMakers.push(() => makeCharacter(
  30881. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30882. {
  30883. back: {
  30884. height: math.unit(5 + 10/12, "feet"),
  30885. weight: math.unit(200, "lb"),
  30886. name: "Back",
  30887. image: {
  30888. source: "./media/characters/jax/back.svg",
  30889. extra: 764/739,
  30890. bottom: 25/789
  30891. }
  30892. },
  30893. },
  30894. [
  30895. {
  30896. name: "Normal",
  30897. height: math.unit(5 + 10/12, "feet"),
  30898. default: true
  30899. },
  30900. ]
  30901. ))
  30902. characterMakers.push(() => makeCharacter(
  30903. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30904. {
  30905. front: {
  30906. height: math.unit(8, "feet"),
  30907. weight: math.unit(250, "lb"),
  30908. name: "Front",
  30909. image: {
  30910. source: "./media/characters/eikthynir/front.svg",
  30911. extra: 1332/1166,
  30912. bottom: 82/1414
  30913. }
  30914. },
  30915. back: {
  30916. height: math.unit(8, "feet"),
  30917. weight: math.unit(250, "lb"),
  30918. name: "Back",
  30919. image: {
  30920. source: "./media/characters/eikthynir/back.svg",
  30921. extra: 1342/1190,
  30922. bottom: 19/1361
  30923. }
  30924. },
  30925. dick: {
  30926. height: math.unit(2.35, "feet"),
  30927. name: "Dick",
  30928. image: {
  30929. source: "./media/characters/eikthynir/dick.svg"
  30930. }
  30931. },
  30932. },
  30933. [
  30934. {
  30935. name: "Normal",
  30936. height: math.unit(8, "feet"),
  30937. default: true
  30938. },
  30939. ]
  30940. ))
  30941. characterMakers.push(() => makeCharacter(
  30942. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30943. {
  30944. front: {
  30945. height: math.unit(99, "meters"),
  30946. weight: math.unit(13000, "tons"),
  30947. name: "Front",
  30948. image: {
  30949. source: "./media/characters/zlmos/front.svg",
  30950. extra: 2202/1992,
  30951. bottom: 315/2517
  30952. }
  30953. },
  30954. },
  30955. [
  30956. {
  30957. name: "Macro",
  30958. height: math.unit(99, "meters"),
  30959. default: true
  30960. },
  30961. ]
  30962. ))
  30963. characterMakers.push(() => makeCharacter(
  30964. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30965. {
  30966. front: {
  30967. height: math.unit(6 + 5/12, "feet"),
  30968. name: "Front",
  30969. image: {
  30970. source: "./media/characters/purri/front.svg",
  30971. extra: 1698/1610,
  30972. bottom: 32/1730
  30973. }
  30974. },
  30975. frontAlt: {
  30976. height: math.unit(6 + 5/12, "feet"),
  30977. name: "Front (Alt)",
  30978. image: {
  30979. source: "./media/characters/purri/front-alt.svg",
  30980. extra: 450/420,
  30981. bottom: 26/476
  30982. }
  30983. },
  30984. boots: {
  30985. height: math.unit(5.5, "feet"),
  30986. name: "Boots",
  30987. image: {
  30988. source: "./media/characters/purri/boots.svg",
  30989. extra: 905/853,
  30990. bottom: 18/923
  30991. }
  30992. },
  30993. lying: {
  30994. height: math.unit(2, "feet"),
  30995. name: "Lying",
  30996. image: {
  30997. source: "./media/characters/purri/lying.svg",
  30998. extra: 940/843,
  30999. bottom: 146/1086
  31000. }
  31001. },
  31002. devious: {
  31003. height: math.unit(1.77, "feet"),
  31004. name: "Devious",
  31005. image: {
  31006. source: "./media/characters/purri/devious.svg",
  31007. extra: 1440/1155,
  31008. bottom: 147/1587
  31009. }
  31010. },
  31011. bean: {
  31012. height: math.unit(1.94, "feet"),
  31013. name: "Bean",
  31014. image: {
  31015. source: "./media/characters/purri/bean.svg"
  31016. }
  31017. },
  31018. },
  31019. [
  31020. {
  31021. name: "Micro",
  31022. height: math.unit(1, "mm")
  31023. },
  31024. {
  31025. name: "Normal",
  31026. height: math.unit(6 + 5/12, "feet"),
  31027. default: true
  31028. },
  31029. {
  31030. name: "Macro :3c",
  31031. height: math.unit(2, "miles")
  31032. },
  31033. ]
  31034. ))
  31035. characterMakers.push(() => makeCharacter(
  31036. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31037. {
  31038. front: {
  31039. height: math.unit(6 + 2/12, "feet"),
  31040. weight: math.unit(250, "lb"),
  31041. name: "Front",
  31042. image: {
  31043. source: "./media/characters/moonlight/front.svg",
  31044. extra: 1044/908,
  31045. bottom: 56/1100
  31046. }
  31047. },
  31048. feral: {
  31049. height: math.unit(3 + 1/12, "feet"),
  31050. weight: math.unit(50, "kg"),
  31051. name: "Feral",
  31052. image: {
  31053. source: "./media/characters/moonlight/feral.svg",
  31054. extra: 3705/2791,
  31055. bottom: 145/3850
  31056. }
  31057. },
  31058. paw: {
  31059. height: math.unit(1, "feet"),
  31060. name: "Paw",
  31061. image: {
  31062. source: "./media/characters/moonlight/paw.svg"
  31063. }
  31064. },
  31065. paws: {
  31066. height: math.unit(0.98, "feet"),
  31067. name: "Paws",
  31068. image: {
  31069. source: "./media/characters/moonlight/paws.svg",
  31070. extra: 939/939,
  31071. bottom: 50/989
  31072. }
  31073. },
  31074. mouth: {
  31075. height: math.unit(0.48, "feet"),
  31076. name: "Mouth",
  31077. image: {
  31078. source: "./media/characters/moonlight/mouth.svg"
  31079. }
  31080. },
  31081. dick: {
  31082. height: math.unit(1.46, "feet"),
  31083. name: "Dick",
  31084. image: {
  31085. source: "./media/characters/moonlight/dick.svg"
  31086. }
  31087. },
  31088. },
  31089. [
  31090. {
  31091. name: "Normal",
  31092. height: math.unit(6 + 2/12, "feet"),
  31093. default: true
  31094. },
  31095. {
  31096. name: "Macro",
  31097. height: math.unit(300, "feet")
  31098. },
  31099. {
  31100. name: "Macro+",
  31101. height: math.unit(1, "mile")
  31102. },
  31103. {
  31104. name: "Mt. Moon",
  31105. height: math.unit(5, "miles")
  31106. },
  31107. {
  31108. name: "Megamacro",
  31109. height: math.unit(15, "miles")
  31110. },
  31111. ]
  31112. ))
  31113. characterMakers.push(() => makeCharacter(
  31114. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31115. {
  31116. back: {
  31117. height: math.unit(6, "feet"),
  31118. weight: math.unit(150, "lb"),
  31119. name: "Back",
  31120. image: {
  31121. source: "./media/characters/sylen/back.svg",
  31122. extra: 1335/1273,
  31123. bottom: 107/1442
  31124. }
  31125. },
  31126. },
  31127. [
  31128. {
  31129. name: "Normal",
  31130. height: math.unit(5 + 5/12, "feet")
  31131. },
  31132. {
  31133. name: "Megamacro",
  31134. height: math.unit(3, "miles"),
  31135. default: true
  31136. },
  31137. ]
  31138. ))
  31139. characterMakers.push(() => makeCharacter(
  31140. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31141. {
  31142. front: {
  31143. height: math.unit(6, "feet"),
  31144. weight: math.unit(190, "lb"),
  31145. name: "Front",
  31146. image: {
  31147. source: "./media/characters/huttser/front.svg",
  31148. extra: 1152/1058,
  31149. bottom: 23/1175
  31150. }
  31151. },
  31152. side: {
  31153. height: math.unit(6, "feet"),
  31154. weight: math.unit(190, "lb"),
  31155. name: "Side",
  31156. image: {
  31157. source: "./media/characters/huttser/side.svg",
  31158. extra: 1174/1065,
  31159. bottom: 18/1192
  31160. }
  31161. },
  31162. back: {
  31163. height: math.unit(6, "feet"),
  31164. weight: math.unit(190, "lb"),
  31165. name: "Back",
  31166. image: {
  31167. source: "./media/characters/huttser/back.svg",
  31168. extra: 1158/1056,
  31169. bottom: 12/1170
  31170. }
  31171. },
  31172. },
  31173. [
  31174. ]
  31175. ))
  31176. characterMakers.push(() => makeCharacter(
  31177. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31178. {
  31179. side: {
  31180. height: math.unit(12 + 9/12, "feet"),
  31181. weight: math.unit(15000, "lb"),
  31182. name: "Side",
  31183. image: {
  31184. source: "./media/characters/faan/side.svg",
  31185. extra: 2747/2697,
  31186. bottom: 0/2747
  31187. }
  31188. },
  31189. front: {
  31190. height: math.unit(12 + 9/12, "feet"),
  31191. weight: math.unit(15000, "lb"),
  31192. name: "Front",
  31193. image: {
  31194. source: "./media/characters/faan/front.svg",
  31195. extra: 607/571,
  31196. bottom: 24/631
  31197. }
  31198. },
  31199. head: {
  31200. height: math.unit(2.85, "feet"),
  31201. name: "Head",
  31202. image: {
  31203. source: "./media/characters/faan/head.svg"
  31204. }
  31205. },
  31206. headAlt: {
  31207. height: math.unit(3.13, "feet"),
  31208. name: "Head-alt",
  31209. image: {
  31210. source: "./media/characters/faan/head-alt.svg"
  31211. }
  31212. },
  31213. },
  31214. [
  31215. {
  31216. name: "Normal",
  31217. height: math.unit(12 + 9/12, "feet"),
  31218. default: true
  31219. },
  31220. ]
  31221. ))
  31222. characterMakers.push(() => makeCharacter(
  31223. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31224. {
  31225. front: {
  31226. height: math.unit(6, "feet"),
  31227. weight: math.unit(300, "lb"),
  31228. name: "Front",
  31229. image: {
  31230. source: "./media/characters/tanio/front.svg",
  31231. extra: 711/673,
  31232. bottom: 25/736
  31233. }
  31234. },
  31235. },
  31236. [
  31237. {
  31238. name: "Normal",
  31239. height: math.unit(6, "feet"),
  31240. default: true
  31241. },
  31242. ]
  31243. ))
  31244. characterMakers.push(() => makeCharacter(
  31245. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31246. {
  31247. front: {
  31248. height: math.unit(3, "inches"),
  31249. name: "Front",
  31250. image: {
  31251. source: "./media/characters/noboru/front.svg",
  31252. extra: 1039/932,
  31253. bottom: 18/1057
  31254. }
  31255. },
  31256. },
  31257. [
  31258. {
  31259. name: "Micro",
  31260. height: math.unit(3, "inches"),
  31261. default: true
  31262. },
  31263. ]
  31264. ))
  31265. characterMakers.push(() => makeCharacter(
  31266. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31267. {
  31268. front: {
  31269. height: math.unit(1.85, "meters"),
  31270. weight: math.unit(80, "kg"),
  31271. name: "Front",
  31272. image: {
  31273. source: "./media/characters/daniel-barrett/front.svg",
  31274. extra: 355/337,
  31275. bottom: 9/364
  31276. }
  31277. },
  31278. },
  31279. [
  31280. {
  31281. name: "Pico",
  31282. height: math.unit(0.0433, "mm")
  31283. },
  31284. {
  31285. name: "Nano",
  31286. height: math.unit(1.5, "mm")
  31287. },
  31288. {
  31289. name: "Micro",
  31290. height: math.unit(5.3, "cm"),
  31291. default: true
  31292. },
  31293. {
  31294. name: "Normal",
  31295. height: math.unit(1.85, "meters")
  31296. },
  31297. {
  31298. name: "Macro",
  31299. height: math.unit(64.7, "meters")
  31300. },
  31301. {
  31302. name: "Megamacro",
  31303. height: math.unit(2.26, "km")
  31304. },
  31305. {
  31306. name: "Gigamacro",
  31307. height: math.unit(79, "km")
  31308. },
  31309. {
  31310. name: "Teramacro",
  31311. height: math.unit(2765, "km")
  31312. },
  31313. {
  31314. name: "Petamacro",
  31315. height: math.unit(96678, "km")
  31316. },
  31317. ]
  31318. ))
  31319. characterMakers.push(() => makeCharacter(
  31320. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31321. {
  31322. front: {
  31323. height: math.unit(30, "meters"),
  31324. weight: math.unit(400, "tons"),
  31325. name: "Front",
  31326. image: {
  31327. source: "./media/characters/zeel/front.svg",
  31328. extra: 2599/2599,
  31329. bottom: 226/2825
  31330. }
  31331. },
  31332. },
  31333. [
  31334. {
  31335. name: "Macro",
  31336. height: math.unit(30, "meters"),
  31337. default: true
  31338. },
  31339. ]
  31340. ))
  31341. characterMakers.push(() => makeCharacter(
  31342. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31343. {
  31344. front: {
  31345. height: math.unit(6 + 7/12, "feet"),
  31346. weight: math.unit(210, "lb"),
  31347. name: "Front",
  31348. image: {
  31349. source: "./media/characters/tarn/front.svg",
  31350. extra: 3517/3220,
  31351. bottom: 91/3608
  31352. }
  31353. },
  31354. back: {
  31355. height: math.unit(6 + 7/12, "feet"),
  31356. weight: math.unit(210, "lb"),
  31357. name: "Back",
  31358. image: {
  31359. source: "./media/characters/tarn/back.svg",
  31360. extra: 3566/3241,
  31361. bottom: 34/3600
  31362. }
  31363. },
  31364. dick: {
  31365. height: math.unit(1.65, "feet"),
  31366. name: "Dick",
  31367. image: {
  31368. source: "./media/characters/tarn/dick.svg"
  31369. }
  31370. },
  31371. paw: {
  31372. height: math.unit(1.80, "feet"),
  31373. name: "Paw",
  31374. image: {
  31375. source: "./media/characters/tarn/paw.svg"
  31376. }
  31377. },
  31378. tongue: {
  31379. height: math.unit(0.97, "feet"),
  31380. name: "Tongue",
  31381. image: {
  31382. source: "./media/characters/tarn/tongue.svg"
  31383. }
  31384. },
  31385. },
  31386. [
  31387. {
  31388. name: "Micro",
  31389. height: math.unit(4, "inches")
  31390. },
  31391. {
  31392. name: "Normal",
  31393. height: math.unit(6 + 7/12, "feet"),
  31394. default: true
  31395. },
  31396. {
  31397. name: "Macro",
  31398. height: math.unit(300, "feet")
  31399. },
  31400. ]
  31401. ))
  31402. characterMakers.push(() => makeCharacter(
  31403. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31404. {
  31405. front: {
  31406. height: math.unit(5 + 7/12, "feet"),
  31407. weight: math.unit(80, "kg"),
  31408. name: "Front",
  31409. image: {
  31410. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31411. extra: 3023/2865,
  31412. bottom: 33/3056
  31413. }
  31414. },
  31415. back: {
  31416. height: math.unit(5 + 7/12, "feet"),
  31417. weight: math.unit(80, "kg"),
  31418. name: "Back",
  31419. image: {
  31420. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31421. extra: 3020/2886,
  31422. bottom: 30/3050
  31423. }
  31424. },
  31425. dick: {
  31426. height: math.unit(0.98, "feet"),
  31427. name: "Dick",
  31428. image: {
  31429. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31430. }
  31431. },
  31432. anatomy: {
  31433. height: math.unit(2.86, "feet"),
  31434. name: "Anatomy",
  31435. image: {
  31436. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31437. }
  31438. },
  31439. },
  31440. [
  31441. {
  31442. name: "Really Small",
  31443. height: math.unit(2, "inches")
  31444. },
  31445. {
  31446. name: "Micro",
  31447. height: math.unit(5.583, "inches")
  31448. },
  31449. {
  31450. name: "Normal",
  31451. height: math.unit(5 + 7/12, "feet"),
  31452. default: true
  31453. },
  31454. {
  31455. name: "Macro",
  31456. height: math.unit(67, "feet")
  31457. },
  31458. {
  31459. name: "Megamacro",
  31460. height: math.unit(134, "feet")
  31461. },
  31462. ]
  31463. ))
  31464. characterMakers.push(() => makeCharacter(
  31465. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31466. {
  31467. front: {
  31468. height: math.unit(9, "feet"),
  31469. weight: math.unit(120, "lb"),
  31470. name: "Front",
  31471. image: {
  31472. source: "./media/characters/sally/front.svg",
  31473. extra: 1506/1349,
  31474. bottom: 66/1572
  31475. }
  31476. },
  31477. },
  31478. [
  31479. {
  31480. name: "Normal",
  31481. height: math.unit(9, "feet"),
  31482. default: true
  31483. },
  31484. ]
  31485. ))
  31486. characterMakers.push(() => makeCharacter(
  31487. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31488. {
  31489. front: {
  31490. height: math.unit(8, "feet"),
  31491. weight: math.unit(900, "lb"),
  31492. name: "Front",
  31493. image: {
  31494. source: "./media/characters/owen/front.svg",
  31495. extra: 1761/1657,
  31496. bottom: 74/1835
  31497. }
  31498. },
  31499. side: {
  31500. height: math.unit(8, "feet"),
  31501. weight: math.unit(900, "lb"),
  31502. name: "Side",
  31503. image: {
  31504. source: "./media/characters/owen/side.svg",
  31505. extra: 1797/1734,
  31506. bottom: 30/1827
  31507. }
  31508. },
  31509. back: {
  31510. height: math.unit(8, "feet"),
  31511. weight: math.unit(900, "lb"),
  31512. name: "Back",
  31513. image: {
  31514. source: "./media/characters/owen/back.svg",
  31515. extra: 1796/1706,
  31516. bottom: 59/1855
  31517. }
  31518. },
  31519. maw: {
  31520. height: math.unit(1.76, "feet"),
  31521. name: "Maw",
  31522. image: {
  31523. source: "./media/characters/owen/maw.svg"
  31524. }
  31525. },
  31526. },
  31527. [
  31528. {
  31529. name: "Normal",
  31530. height: math.unit(8, "feet"),
  31531. default: true
  31532. },
  31533. ]
  31534. ))
  31535. characterMakers.push(() => makeCharacter(
  31536. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31537. {
  31538. front: {
  31539. height: math.unit(4, "feet"),
  31540. weight: math.unit(400, "lb"),
  31541. name: "Front",
  31542. image: {
  31543. source: "./media/characters/ryth/front.svg",
  31544. extra: 876/691,
  31545. bottom: 25/901
  31546. }
  31547. },
  31548. goia: {
  31549. height: math.unit(12, "feet"),
  31550. weight: math.unit(10800, "lb"),
  31551. name: "Goia",
  31552. image: {
  31553. source: "./media/characters/ryth/goia.svg",
  31554. extra: 3450/3198,
  31555. bottom: 61/3511
  31556. }
  31557. },
  31558. },
  31559. [
  31560. {
  31561. name: "Normal",
  31562. height: math.unit(4, "feet"),
  31563. default: true
  31564. },
  31565. ]
  31566. ))
  31567. characterMakers.push(() => makeCharacter(
  31568. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31569. {
  31570. front: {
  31571. height: math.unit(7, "feet"),
  31572. weight: math.unit(180, "lb"),
  31573. name: "Front",
  31574. image: {
  31575. source: "./media/characters/necrolance/front.svg",
  31576. extra: 1062/947,
  31577. bottom: 41/1103
  31578. }
  31579. },
  31580. back: {
  31581. height: math.unit(7, "feet"),
  31582. weight: math.unit(180, "lb"),
  31583. name: "Back",
  31584. image: {
  31585. source: "./media/characters/necrolance/back.svg",
  31586. extra: 1045/984,
  31587. bottom: 14/1059
  31588. }
  31589. },
  31590. wing: {
  31591. height: math.unit(2.67, "feet"),
  31592. name: "Wing",
  31593. image: {
  31594. source: "./media/characters/necrolance/wing.svg"
  31595. }
  31596. },
  31597. },
  31598. [
  31599. {
  31600. name: "Normal",
  31601. height: math.unit(7, "feet"),
  31602. default: true
  31603. },
  31604. ]
  31605. ))
  31606. characterMakers.push(() => makeCharacter(
  31607. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31608. {
  31609. front: {
  31610. height: math.unit(76, "meters"),
  31611. weight: math.unit(30000, "tons"),
  31612. name: "Front",
  31613. image: {
  31614. source: "./media/characters/tyler/front.svg",
  31615. extra: 1640/1640,
  31616. bottom: 114/1754
  31617. }
  31618. },
  31619. },
  31620. [
  31621. {
  31622. name: "Macro",
  31623. height: math.unit(76, "meters"),
  31624. default: true
  31625. },
  31626. ]
  31627. ))
  31628. characterMakers.push(() => makeCharacter(
  31629. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31630. {
  31631. front: {
  31632. height: math.unit(4 + 11/12, "feet"),
  31633. weight: math.unit(132, "lb"),
  31634. name: "Front",
  31635. image: {
  31636. source: "./media/characters/icey/front.svg",
  31637. extra: 2750/2550,
  31638. bottom: 33/2783
  31639. }
  31640. },
  31641. back: {
  31642. height: math.unit(4 + 11/12, "feet"),
  31643. weight: math.unit(132, "lb"),
  31644. name: "Back",
  31645. image: {
  31646. source: "./media/characters/icey/back.svg",
  31647. extra: 2624/2481,
  31648. bottom: 35/2659
  31649. }
  31650. },
  31651. },
  31652. [
  31653. {
  31654. name: "Normal",
  31655. height: math.unit(4 + 11/12, "feet"),
  31656. default: true
  31657. },
  31658. ]
  31659. ))
  31660. characterMakers.push(() => makeCharacter(
  31661. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31662. {
  31663. front: {
  31664. height: math.unit(100, "feet"),
  31665. weight: math.unit(0, "lb"),
  31666. name: "Front",
  31667. image: {
  31668. source: "./media/characters/smile/front.svg",
  31669. extra: 2983/2912,
  31670. bottom: 162/3145
  31671. }
  31672. },
  31673. back: {
  31674. height: math.unit(100, "feet"),
  31675. weight: math.unit(0, "lb"),
  31676. name: "Back",
  31677. image: {
  31678. source: "./media/characters/smile/back.svg",
  31679. extra: 3143/3031,
  31680. bottom: 91/3234
  31681. }
  31682. },
  31683. head: {
  31684. height: math.unit(26.3, "feet"),
  31685. weight: math.unit(0, "lb"),
  31686. name: "Head",
  31687. image: {
  31688. source: "./media/characters/smile/head.svg"
  31689. }
  31690. },
  31691. collar: {
  31692. height: math.unit(5.3, "feet"),
  31693. weight: math.unit(0, "lb"),
  31694. name: "Collar",
  31695. image: {
  31696. source: "./media/characters/smile/collar.svg"
  31697. }
  31698. },
  31699. },
  31700. [
  31701. {
  31702. name: "Macro",
  31703. height: math.unit(100, "feet"),
  31704. default: true
  31705. },
  31706. ]
  31707. ))
  31708. characterMakers.push(() => makeCharacter(
  31709. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31710. {
  31711. dragon: {
  31712. height: math.unit(26, "feet"),
  31713. weight: math.unit(36, "tons"),
  31714. name: "Dragon",
  31715. image: {
  31716. source: "./media/characters/arimphae/dragon.svg",
  31717. extra: 1574/983,
  31718. bottom: 357/1931
  31719. }
  31720. },
  31721. drake: {
  31722. height: math.unit(9, "feet"),
  31723. weight: math.unit(1.5, "tons"),
  31724. name: "Drake",
  31725. image: {
  31726. source: "./media/characters/arimphae/drake.svg",
  31727. extra: 1120/925,
  31728. bottom: 435/1555
  31729. }
  31730. },
  31731. },
  31732. [
  31733. {
  31734. name: "Small",
  31735. height: math.unit(26*5/9, "feet")
  31736. },
  31737. {
  31738. name: "Normal",
  31739. height: math.unit(26, "feet"),
  31740. default: true
  31741. },
  31742. ]
  31743. ))
  31744. characterMakers.push(() => makeCharacter(
  31745. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31746. {
  31747. front: {
  31748. height: math.unit(8 + 9/12, "feet"),
  31749. name: "Front",
  31750. image: {
  31751. source: "./media/characters/xander/front.svg",
  31752. extra: 848/673,
  31753. bottom: 62/910
  31754. }
  31755. },
  31756. },
  31757. [
  31758. {
  31759. name: "Normal",
  31760. height: math.unit(8 + 9/12, "feet"),
  31761. default: true
  31762. },
  31763. {
  31764. name: "Gaze Grabber",
  31765. height: math.unit(13 + 8/12, "feet")
  31766. },
  31767. {
  31768. name: "Jaw Dropper",
  31769. height: math.unit(27, "feet")
  31770. },
  31771. {
  31772. name: "Show Stopper",
  31773. height: math.unit(136, "feet")
  31774. },
  31775. {
  31776. name: "Superstar",
  31777. height: math.unit(1.9e6, "miles")
  31778. },
  31779. ]
  31780. ))
  31781. characterMakers.push(() => makeCharacter(
  31782. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31783. {
  31784. side: {
  31785. height: math.unit(2100, "feet"),
  31786. name: "Side",
  31787. image: {
  31788. source: "./media/characters/osiris/side.svg",
  31789. extra: 1105/939,
  31790. bottom: 167/1272
  31791. }
  31792. },
  31793. },
  31794. [
  31795. {
  31796. name: "Macro",
  31797. height: math.unit(2100, "feet"),
  31798. default: true
  31799. },
  31800. ]
  31801. ))
  31802. characterMakers.push(() => makeCharacter(
  31803. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31804. {
  31805. front: {
  31806. height: math.unit(6 + 8/12, "feet"),
  31807. weight: math.unit(225, "lb"),
  31808. name: "Front",
  31809. image: {
  31810. source: "./media/characters/rhys-londe/front.svg",
  31811. extra: 2258/2141,
  31812. bottom: 188/2446
  31813. }
  31814. },
  31815. back: {
  31816. height: math.unit(6 + 8/12, "feet"),
  31817. weight: math.unit(225, "lb"),
  31818. name: "Back",
  31819. image: {
  31820. source: "./media/characters/rhys-londe/back.svg",
  31821. extra: 2237/2137,
  31822. bottom: 63/2300
  31823. }
  31824. },
  31825. frontNsfw: {
  31826. height: math.unit(6 + 8/12, "feet"),
  31827. weight: math.unit(225, "lb"),
  31828. name: "Front (NSFW)",
  31829. image: {
  31830. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31831. extra: 2258/2141,
  31832. bottom: 188/2446
  31833. }
  31834. },
  31835. backNsfw: {
  31836. height: math.unit(6 + 8/12, "feet"),
  31837. weight: math.unit(225, "lb"),
  31838. name: "Back (NSFW)",
  31839. image: {
  31840. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31841. extra: 2237/2137,
  31842. bottom: 63/2300
  31843. }
  31844. },
  31845. dick: {
  31846. height: math.unit(30, "inches"),
  31847. name: "Dick",
  31848. image: {
  31849. source: "./media/characters/rhys-londe/dick.svg"
  31850. }
  31851. },
  31852. maw: {
  31853. height: math.unit(1.6, "feet"),
  31854. name: "Maw",
  31855. image: {
  31856. source: "./media/characters/rhys-londe/maw.svg"
  31857. }
  31858. },
  31859. },
  31860. [
  31861. {
  31862. name: "Normal",
  31863. height: math.unit(6 + 8/12, "feet"),
  31864. default: true
  31865. },
  31866. ]
  31867. ))
  31868. characterMakers.push(() => makeCharacter(
  31869. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31870. {
  31871. front: {
  31872. height: math.unit(3 + 10/12, "feet"),
  31873. weight: math.unit(90, "lb"),
  31874. name: "Front",
  31875. image: {
  31876. source: "./media/characters/taivas-ensim/front.svg",
  31877. extra: 1327/1216,
  31878. bottom: 96/1423
  31879. }
  31880. },
  31881. back: {
  31882. height: math.unit(3 + 10/12, "feet"),
  31883. weight: math.unit(90, "lb"),
  31884. name: "Back",
  31885. image: {
  31886. source: "./media/characters/taivas-ensim/back.svg",
  31887. extra: 1355/1247,
  31888. bottom: 11/1366
  31889. }
  31890. },
  31891. frontNsfw: {
  31892. height: math.unit(3 + 10/12, "feet"),
  31893. weight: math.unit(90, "lb"),
  31894. name: "Front (NSFW)",
  31895. image: {
  31896. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31897. extra: 1327/1216,
  31898. bottom: 96/1423
  31899. }
  31900. },
  31901. backNsfw: {
  31902. height: math.unit(3 + 10/12, "feet"),
  31903. weight: math.unit(90, "lb"),
  31904. name: "Back (NSFW)",
  31905. image: {
  31906. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31907. extra: 1355/1247,
  31908. bottom: 11/1366
  31909. }
  31910. },
  31911. },
  31912. [
  31913. {
  31914. name: "Normal",
  31915. height: math.unit(3 + 10/12, "feet"),
  31916. default: true
  31917. },
  31918. ]
  31919. ))
  31920. characterMakers.push(() => makeCharacter(
  31921. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31922. {
  31923. front: {
  31924. height: math.unit(9 + 6/12, "feet"),
  31925. weight: math.unit(940, "lb"),
  31926. name: "Front",
  31927. image: {
  31928. source: "./media/characters/byliss/front.svg",
  31929. extra: 1327/1290,
  31930. bottom: 82/1409
  31931. }
  31932. },
  31933. back: {
  31934. height: math.unit(9 + 6/12, "feet"),
  31935. weight: math.unit(940, "lb"),
  31936. name: "Back",
  31937. image: {
  31938. source: "./media/characters/byliss/back.svg",
  31939. extra: 1376/1349,
  31940. bottom: 9/1385
  31941. }
  31942. },
  31943. frontNsfw: {
  31944. height: math.unit(9 + 6/12, "feet"),
  31945. weight: math.unit(940, "lb"),
  31946. name: "Front (NSFW)",
  31947. image: {
  31948. source: "./media/characters/byliss/front-nsfw.svg",
  31949. extra: 1327/1290,
  31950. bottom: 82/1409
  31951. }
  31952. },
  31953. backNsfw: {
  31954. height: math.unit(9 + 6/12, "feet"),
  31955. weight: math.unit(940, "lb"),
  31956. name: "Back (NSFW)",
  31957. image: {
  31958. source: "./media/characters/byliss/back-nsfw.svg",
  31959. extra: 1376/1349,
  31960. bottom: 9/1385
  31961. }
  31962. },
  31963. },
  31964. [
  31965. {
  31966. name: "Normal",
  31967. height: math.unit(9 + 6/12, "feet"),
  31968. default: true
  31969. },
  31970. ]
  31971. ))
  31972. characterMakers.push(() => makeCharacter(
  31973. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31974. {
  31975. front: {
  31976. height: math.unit(5 + 2/12, "feet"),
  31977. weight: math.unit(200, "lb"),
  31978. name: "Front",
  31979. image: {
  31980. source: "./media/characters/noraly/front.svg",
  31981. extra: 4985/4773,
  31982. bottom: 150/5135
  31983. }
  31984. },
  31985. full: {
  31986. height: math.unit(5 + 2/12, "feet"),
  31987. weight: math.unit(164, "lb"),
  31988. name: "Full",
  31989. image: {
  31990. source: "./media/characters/noraly/full.svg",
  31991. extra: 1114/1059,
  31992. bottom: 35/1149
  31993. }
  31994. },
  31995. fuller: {
  31996. height: math.unit(5 + 2/12, "feet"),
  31997. weight: math.unit(230, "lb"),
  31998. name: "Fuller",
  31999. image: {
  32000. source: "./media/characters/noraly/fuller.svg",
  32001. extra: 1114/1059,
  32002. bottom: 35/1149
  32003. }
  32004. },
  32005. fullest: {
  32006. height: math.unit(5 + 2/12, "feet"),
  32007. weight: math.unit(300, "lb"),
  32008. name: "Fullest",
  32009. image: {
  32010. source: "./media/characters/noraly/fullest.svg",
  32011. extra: 1114/1059,
  32012. bottom: 35/1149
  32013. }
  32014. },
  32015. },
  32016. [
  32017. {
  32018. name: "Normal",
  32019. height: math.unit(5 + 2/12, "feet"),
  32020. default: true
  32021. },
  32022. ]
  32023. ))
  32024. characterMakers.push(() => makeCharacter(
  32025. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32026. {
  32027. front: {
  32028. height: math.unit(5 + 2/12, "feet"),
  32029. weight: math.unit(210, "lb"),
  32030. name: "Front",
  32031. image: {
  32032. source: "./media/characters/pera/front.svg",
  32033. extra: 1560/1531,
  32034. bottom: 165/1725
  32035. }
  32036. },
  32037. back: {
  32038. height: math.unit(5 + 2/12, "feet"),
  32039. weight: math.unit(210, "lb"),
  32040. name: "Back",
  32041. image: {
  32042. source: "./media/characters/pera/back.svg",
  32043. extra: 1523/1493,
  32044. bottom: 152/1675
  32045. }
  32046. },
  32047. dick: {
  32048. height: math.unit(2.4, "feet"),
  32049. name: "Dick",
  32050. image: {
  32051. source: "./media/characters/pera/dick.svg"
  32052. }
  32053. },
  32054. },
  32055. [
  32056. {
  32057. name: "Normal",
  32058. height: math.unit(5 + 2/12, "feet"),
  32059. default: true
  32060. },
  32061. ]
  32062. ))
  32063. characterMakers.push(() => makeCharacter(
  32064. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32065. {
  32066. front: {
  32067. height: math.unit(12, "feet"),
  32068. weight: math.unit(3200, "lb"),
  32069. name: "Front",
  32070. image: {
  32071. source: "./media/characters/julian/front.svg",
  32072. extra: 2962/2701,
  32073. bottom: 184/3146
  32074. }
  32075. },
  32076. maw: {
  32077. height: math.unit(5.35, "feet"),
  32078. name: "Maw",
  32079. image: {
  32080. source: "./media/characters/julian/maw.svg"
  32081. }
  32082. },
  32083. paw: {
  32084. height: math.unit(3.07, "feet"),
  32085. name: "Paw",
  32086. image: {
  32087. source: "./media/characters/julian/paw.svg"
  32088. }
  32089. },
  32090. },
  32091. [
  32092. {
  32093. name: "Default",
  32094. height: math.unit(12, "feet"),
  32095. default: true
  32096. },
  32097. {
  32098. name: "Big",
  32099. height: math.unit(50, "feet")
  32100. },
  32101. {
  32102. name: "Really Big",
  32103. height: math.unit(1, "mile")
  32104. },
  32105. {
  32106. name: "Extremely Big",
  32107. height: math.unit(100, "miles")
  32108. },
  32109. {
  32110. name: "Planet Hugger",
  32111. height: math.unit(200, "megameters")
  32112. },
  32113. {
  32114. name: "Unreasonably Big",
  32115. height: math.unit(1e300, "meters")
  32116. },
  32117. ]
  32118. ))
  32119. characterMakers.push(() => makeCharacter(
  32120. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32121. {
  32122. solgooleo: {
  32123. height: math.unit(4, "meters"),
  32124. weight: math.unit(6000*1.5, "kg"),
  32125. volume: math.unit(6000, "liters"),
  32126. name: "Solgooleo",
  32127. image: {
  32128. source: "./media/characters/pi/solgooleo.svg",
  32129. extra: 388/331,
  32130. bottom: 29/417
  32131. }
  32132. },
  32133. },
  32134. [
  32135. {
  32136. name: "Normal",
  32137. height: math.unit(4, "meters"),
  32138. default: true
  32139. },
  32140. ]
  32141. ))
  32142. characterMakers.push(() => makeCharacter(
  32143. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32144. {
  32145. front: {
  32146. height: math.unit(8 + 2/12, "feet"),
  32147. weight: math.unit(4, "tons"),
  32148. name: "Front",
  32149. image: {
  32150. source: "./media/characters/shaun/front.svg",
  32151. extra: 1550/1505,
  32152. bottom: 353/1903
  32153. }
  32154. },
  32155. },
  32156. [
  32157. {
  32158. name: "Lorg",
  32159. height: math.unit(8 + 2/12, "feet"),
  32160. default: true
  32161. },
  32162. ]
  32163. ))
  32164. characterMakers.push(() => makeCharacter(
  32165. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32166. {
  32167. front: {
  32168. height: math.unit(7, "feet"),
  32169. name: "Front",
  32170. image: {
  32171. source: "./media/characters/sini/front.svg",
  32172. extra: 726/678,
  32173. bottom: 35/761
  32174. }
  32175. },
  32176. back: {
  32177. height: math.unit(7, "feet"),
  32178. name: "Back",
  32179. image: {
  32180. source: "./media/characters/sini/back.svg",
  32181. extra: 743/701,
  32182. bottom: 12/755
  32183. }
  32184. },
  32185. mawAnthro: {
  32186. height: math.unit(2.14, "feet"),
  32187. name: "Maw (Anthro)",
  32188. image: {
  32189. source: "./media/characters/sini/maw-anthro.svg"
  32190. }
  32191. },
  32192. dick: {
  32193. height: math.unit(1.45, "feet"),
  32194. name: "Dick (Anthro)",
  32195. image: {
  32196. source: "./media/characters/sini/dick-anthro.svg"
  32197. }
  32198. },
  32199. feral: {
  32200. height: math.unit(13, "feet"),
  32201. name: "Feral",
  32202. image: {
  32203. source: "./media/characters/sini/feral.svg",
  32204. extra: 814/605,
  32205. bottom: 11/825
  32206. }
  32207. },
  32208. mawFeral: {
  32209. height: math.unit(4.6, "feet"),
  32210. name: "Maw-feral",
  32211. image: {
  32212. source: "./media/characters/sini/maw-feral.svg"
  32213. }
  32214. },
  32215. footFeral: {
  32216. height: math.unit(4.2, "feet"),
  32217. name: "Foot-feral",
  32218. image: {
  32219. source: "./media/characters/sini/foot-feral.svg"
  32220. }
  32221. },
  32222. },
  32223. [
  32224. {
  32225. name: "Normal",
  32226. height: math.unit(7, "feet"),
  32227. default: true
  32228. },
  32229. ]
  32230. ))
  32231. characterMakers.push(() => makeCharacter(
  32232. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32233. {
  32234. side: {
  32235. height: math.unit(13, "meters"),
  32236. weight: math.unit(9072, "kg"),
  32237. name: "Side",
  32238. image: {
  32239. source: "./media/characters/raylldo/side.svg",
  32240. extra: 403/344,
  32241. bottom: 42/445
  32242. }
  32243. },
  32244. leaping: {
  32245. height: math.unit(12.3, "meters"),
  32246. weight: math.unit(9072, "kg"),
  32247. name: "Leaping",
  32248. image: {
  32249. source: "./media/characters/raylldo/leaping.svg",
  32250. extra: 470/249,
  32251. bottom: 13/483
  32252. }
  32253. },
  32254. flying: {
  32255. height: math.unit(18, "meters"),
  32256. weight: math.unit(9072, "kg"),
  32257. name: "Flying",
  32258. image: {
  32259. source: "./media/characters/raylldo/flying.svg"
  32260. }
  32261. },
  32262. head: {
  32263. height: math.unit(5.85, "meters"),
  32264. name: "Head",
  32265. image: {
  32266. source: "./media/characters/raylldo/head.svg"
  32267. }
  32268. },
  32269. maw: {
  32270. height: math.unit(5.32, "meters"),
  32271. name: "Maw",
  32272. image: {
  32273. source: "./media/characters/raylldo/maw.svg"
  32274. }
  32275. },
  32276. eye: {
  32277. height: math.unit(0.54, "meters"),
  32278. name: "Eye",
  32279. image: {
  32280. source: "./media/characters/raylldo/eye.svg"
  32281. }
  32282. },
  32283. },
  32284. [
  32285. {
  32286. name: "Normal",
  32287. height: math.unit(13, "meters"),
  32288. default: true
  32289. },
  32290. ]
  32291. ))
  32292. characterMakers.push(() => makeCharacter(
  32293. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32294. {
  32295. anthroFront: {
  32296. height: math.unit(9, "feet"),
  32297. weight: math.unit(600, "lb"),
  32298. name: "Anthro (Front)",
  32299. image: {
  32300. source: "./media/characters/glint/anthro-front.svg",
  32301. extra: 1097/1018,
  32302. bottom: 28/1125
  32303. }
  32304. },
  32305. anthroBack: {
  32306. height: math.unit(9, "feet"),
  32307. weight: math.unit(600, "lb"),
  32308. name: "Anthro (Back)",
  32309. image: {
  32310. source: "./media/characters/glint/anthro-back.svg",
  32311. extra: 1154/997,
  32312. bottom: 36/1190
  32313. }
  32314. },
  32315. feral: {
  32316. height: math.unit(11, "feet"),
  32317. weight: math.unit(50000, "lb"),
  32318. name: "Feral",
  32319. image: {
  32320. source: "./media/characters/glint/feral.svg",
  32321. extra: 3035/1585,
  32322. bottom: 1169/4204
  32323. }
  32324. },
  32325. dickAnthro: {
  32326. height: math.unit(0.7, "meters"),
  32327. name: "Dick (Anthro)",
  32328. image: {
  32329. source: "./media/characters/glint/dick-anthro.svg"
  32330. }
  32331. },
  32332. dickFeral: {
  32333. height: math.unit(2.65, "meters"),
  32334. name: "Dick (Feral)",
  32335. image: {
  32336. source: "./media/characters/glint/dick-feral.svg"
  32337. }
  32338. },
  32339. slitHidden: {
  32340. height: math.unit(5.85, "meters"),
  32341. name: "Slit (Hidden)",
  32342. image: {
  32343. source: "./media/characters/glint/slit-hidden.svg"
  32344. }
  32345. },
  32346. slitErect: {
  32347. height: math.unit(5.85, "meters"),
  32348. name: "Slit (Erect)",
  32349. image: {
  32350. source: "./media/characters/glint/slit-erect.svg"
  32351. }
  32352. },
  32353. mawAnthro: {
  32354. height: math.unit(0.63, "meters"),
  32355. name: "Maw (Anthro)",
  32356. image: {
  32357. source: "./media/characters/glint/maw.svg"
  32358. }
  32359. },
  32360. mawFeral: {
  32361. height: math.unit(2.89, "meters"),
  32362. name: "Maw (Feral)",
  32363. image: {
  32364. source: "./media/characters/glint/maw.svg"
  32365. }
  32366. },
  32367. },
  32368. [
  32369. {
  32370. name: "Normal",
  32371. height: math.unit(9, "feet"),
  32372. default: true
  32373. },
  32374. ]
  32375. ))
  32376. characterMakers.push(() => makeCharacter(
  32377. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32378. {
  32379. side: {
  32380. height: math.unit(15, "feet"),
  32381. weight: math.unit(5000, "kg"),
  32382. name: "Side",
  32383. image: {
  32384. source: "./media/characters/kairne/side.svg",
  32385. extra: 979/811,
  32386. bottom: 13/992
  32387. }
  32388. },
  32389. front: {
  32390. height: math.unit(15, "feet"),
  32391. weight: math.unit(5000, "kg"),
  32392. name: "Front",
  32393. image: {
  32394. source: "./media/characters/kairne/front.svg",
  32395. extra: 908/814,
  32396. bottom: 26/934
  32397. }
  32398. },
  32399. sideNsfw: {
  32400. height: math.unit(15, "feet"),
  32401. weight: math.unit(5000, "kg"),
  32402. name: "Side (NSFW)",
  32403. image: {
  32404. source: "./media/characters/kairne/side-nsfw.svg",
  32405. extra: 979/811,
  32406. bottom: 13/992
  32407. }
  32408. },
  32409. frontNsfw: {
  32410. height: math.unit(15, "feet"),
  32411. weight: math.unit(5000, "kg"),
  32412. name: "Front (NSFW)",
  32413. image: {
  32414. source: "./media/characters/kairne/front-nsfw.svg",
  32415. extra: 908/814,
  32416. bottom: 26/934
  32417. }
  32418. },
  32419. dickCaged: {
  32420. height: math.unit(0.65, "meters"),
  32421. name: "Dick-caged",
  32422. image: {
  32423. source: "./media/characters/kairne/dick-caged.svg"
  32424. }
  32425. },
  32426. dick: {
  32427. height: math.unit(0.79, "meters"),
  32428. name: "Dick",
  32429. image: {
  32430. source: "./media/characters/kairne/dick.svg"
  32431. }
  32432. },
  32433. genitals: {
  32434. height: math.unit(1.29, "meters"),
  32435. name: "Genitals",
  32436. image: {
  32437. source: "./media/characters/kairne/genitals.svg"
  32438. }
  32439. },
  32440. maw: {
  32441. height: math.unit(1.73, "meters"),
  32442. name: "Maw",
  32443. image: {
  32444. source: "./media/characters/kairne/maw.svg"
  32445. }
  32446. },
  32447. },
  32448. [
  32449. {
  32450. name: "Normal",
  32451. height: math.unit(15, "feet"),
  32452. default: true
  32453. },
  32454. ]
  32455. ))
  32456. characterMakers.push(() => makeCharacter(
  32457. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32458. {
  32459. front: {
  32460. height: math.unit(5 + 8/12, "feet"),
  32461. weight: math.unit(139, "lb"),
  32462. name: "Front",
  32463. image: {
  32464. source: "./media/characters/biscuit-jackal/front.svg",
  32465. extra: 2106/1961,
  32466. bottom: 58/2164
  32467. }
  32468. },
  32469. back: {
  32470. height: math.unit(5 + 8/12, "feet"),
  32471. weight: math.unit(139, "lb"),
  32472. name: "Back",
  32473. image: {
  32474. source: "./media/characters/biscuit-jackal/back.svg",
  32475. extra: 2132/1976,
  32476. bottom: 57/2189
  32477. }
  32478. },
  32479. werejackal: {
  32480. height: math.unit(6 + 3/12, "feet"),
  32481. weight: math.unit(188, "lb"),
  32482. name: "Werejackal",
  32483. image: {
  32484. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32485. extra: 2373/2178,
  32486. bottom: 53/2426
  32487. }
  32488. },
  32489. },
  32490. [
  32491. {
  32492. name: "Normal",
  32493. height: math.unit(5 + 8/12, "feet"),
  32494. default: true
  32495. },
  32496. ]
  32497. ))
  32498. characterMakers.push(() => makeCharacter(
  32499. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32500. {
  32501. front: {
  32502. height: math.unit(140, "cm"),
  32503. weight: math.unit(45, "kg"),
  32504. name: "Front",
  32505. image: {
  32506. source: "./media/characters/tayra-white/front.svg",
  32507. extra: 2229/2192,
  32508. bottom: 75/2304
  32509. }
  32510. },
  32511. },
  32512. [
  32513. {
  32514. name: "Normal",
  32515. height: math.unit(140, "cm"),
  32516. default: true
  32517. },
  32518. ]
  32519. ))
  32520. characterMakers.push(() => makeCharacter(
  32521. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32522. {
  32523. front: {
  32524. height: math.unit(4 + 5/12, "feet"),
  32525. name: "Front",
  32526. image: {
  32527. source: "./media/characters/scoop/front.svg",
  32528. extra: 1257/1136,
  32529. bottom: 69/1326
  32530. }
  32531. },
  32532. back: {
  32533. height: math.unit(4 + 5/12, "feet"),
  32534. name: "Back",
  32535. image: {
  32536. source: "./media/characters/scoop/back.svg",
  32537. extra: 1321/1152,
  32538. bottom: 32/1353
  32539. }
  32540. },
  32541. maw: {
  32542. height: math.unit(0.68, "feet"),
  32543. name: "Maw",
  32544. image: {
  32545. source: "./media/characters/scoop/maw.svg"
  32546. }
  32547. },
  32548. },
  32549. [
  32550. {
  32551. name: "Really Small",
  32552. height: math.unit(1, "mm")
  32553. },
  32554. {
  32555. name: "Micro",
  32556. height: math.unit(1, "inch")
  32557. },
  32558. {
  32559. name: "Normal",
  32560. height: math.unit(4 + 5/12, "feet"),
  32561. default: true
  32562. },
  32563. {
  32564. name: "Macro",
  32565. height: math.unit(200, "feet")
  32566. },
  32567. {
  32568. name: "Megamacro",
  32569. height: math.unit(3240, "feet")
  32570. },
  32571. {
  32572. name: "Teramacro",
  32573. height: math.unit(2500, "miles")
  32574. },
  32575. ]
  32576. ))
  32577. characterMakers.push(() => makeCharacter(
  32578. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32579. {
  32580. front: {
  32581. height: math.unit(15 + 7/12, "feet"),
  32582. name: "Front",
  32583. image: {
  32584. source: "./media/characters/saphinara/front.svg",
  32585. extra: 604/546,
  32586. bottom: 19/623
  32587. }
  32588. },
  32589. side: {
  32590. height: math.unit(15 + 7/12, "feet"),
  32591. name: "Side",
  32592. image: {
  32593. source: "./media/characters/saphinara/side.svg",
  32594. extra: 605/547,
  32595. bottom: 6/611
  32596. }
  32597. },
  32598. back: {
  32599. height: math.unit(15 + 7/12, "feet"),
  32600. name: "Back",
  32601. image: {
  32602. source: "./media/characters/saphinara/back.svg",
  32603. extra: 591/531,
  32604. bottom: 13/604
  32605. }
  32606. },
  32607. frontTail: {
  32608. height: math.unit(15 + 7/12, "feet"),
  32609. name: "Front (Full Tail)",
  32610. image: {
  32611. source: "./media/characters/saphinara/front-tail.svg",
  32612. extra: 748/547,
  32613. bottom: 66/814
  32614. }
  32615. },
  32616. },
  32617. [
  32618. {
  32619. name: "Normal",
  32620. height: math.unit(15 + 7/12, "feet"),
  32621. default: true
  32622. },
  32623. {
  32624. name: "Angry",
  32625. height: math.unit(30 + 6/12, "feet")
  32626. },
  32627. {
  32628. name: "Enraged",
  32629. height: math.unit(102 + 1/12, "feet")
  32630. },
  32631. ]
  32632. ))
  32633. characterMakers.push(() => makeCharacter(
  32634. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32635. {
  32636. front: {
  32637. height: math.unit(6 + 8/12, "feet"),
  32638. weight: math.unit(300, "lb"),
  32639. name: "Front",
  32640. image: {
  32641. source: "./media/characters/jrain/front.svg",
  32642. extra: 3039/2865,
  32643. bottom: 399/3438
  32644. }
  32645. },
  32646. back: {
  32647. height: math.unit(6 + 8/12, "feet"),
  32648. weight: math.unit(300, "lb"),
  32649. name: "Back",
  32650. image: {
  32651. source: "./media/characters/jrain/back.svg",
  32652. extra: 3089/2938,
  32653. bottom: 172/3261
  32654. }
  32655. },
  32656. head: {
  32657. height: math.unit(2.14, "feet"),
  32658. name: "Head",
  32659. image: {
  32660. source: "./media/characters/jrain/head.svg"
  32661. }
  32662. },
  32663. maw: {
  32664. height: math.unit(1.77, "feet"),
  32665. name: "Maw",
  32666. image: {
  32667. source: "./media/characters/jrain/maw.svg"
  32668. }
  32669. },
  32670. leftHand: {
  32671. height: math.unit(1.1, "feet"),
  32672. name: "Left Hand",
  32673. image: {
  32674. source: "./media/characters/jrain/left-hand.svg"
  32675. }
  32676. },
  32677. rightHand: {
  32678. height: math.unit(1.1, "feet"),
  32679. name: "Right Hand",
  32680. image: {
  32681. source: "./media/characters/jrain/right-hand.svg"
  32682. }
  32683. },
  32684. eye: {
  32685. height: math.unit(0.35, "feet"),
  32686. name: "Eye",
  32687. image: {
  32688. source: "./media/characters/jrain/eye.svg"
  32689. }
  32690. },
  32691. },
  32692. [
  32693. {
  32694. name: "Normal",
  32695. height: math.unit(6 + 8/12, "feet"),
  32696. default: true
  32697. },
  32698. {
  32699. name: "Casually Large",
  32700. height: math.unit(25, "feet")
  32701. },
  32702. {
  32703. name: "Giant",
  32704. height: math.unit(100, "feet")
  32705. },
  32706. {
  32707. name: "Kaiju",
  32708. height: math.unit(300, "feet")
  32709. },
  32710. ]
  32711. ))
  32712. characterMakers.push(() => makeCharacter(
  32713. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32714. {
  32715. dragon: {
  32716. height: math.unit(5, "meters"),
  32717. name: "Dragon",
  32718. image: {
  32719. source: "./media/characters/sabrina/dragon.svg",
  32720. extra: 3670 / 2365,
  32721. bottom: 333 / 4003
  32722. }
  32723. },
  32724. gryphon: {
  32725. height: math.unit(3, "meters"),
  32726. name: "Gryphon",
  32727. image: {
  32728. source: "./media/characters/sabrina/gryphon.svg",
  32729. extra: 1576 / 945,
  32730. bottom: 71 / 1647
  32731. }
  32732. },
  32733. snake: {
  32734. height: math.unit(12, "meters"),
  32735. name: "Snake",
  32736. image: {
  32737. source: "./media/characters/sabrina/snake.svg",
  32738. extra: 1758 / 1320,
  32739. bottom: 186 / 1944
  32740. }
  32741. },
  32742. collar: {
  32743. height: math.unit(1.86, "meters"),
  32744. name: "Collar",
  32745. image: {
  32746. source: "./media/characters/sabrina/collar.svg"
  32747. }
  32748. },
  32749. eye: {
  32750. height: math.unit(0.53, "meters"),
  32751. name: "Eye",
  32752. image: {
  32753. source: "./media/characters/sabrina/eye.svg"
  32754. }
  32755. },
  32756. foot: {
  32757. height: math.unit(1.86, "meters"),
  32758. name: "Foot",
  32759. image: {
  32760. source: "./media/characters/sabrina/foot.svg"
  32761. }
  32762. },
  32763. hand: {
  32764. height: math.unit(1.32, "meters"),
  32765. name: "Hand",
  32766. image: {
  32767. source: "./media/characters/sabrina/hand.svg"
  32768. }
  32769. },
  32770. head: {
  32771. height: math.unit(2.44, "meters"),
  32772. name: "Head",
  32773. image: {
  32774. source: "./media/characters/sabrina/head.svg"
  32775. }
  32776. },
  32777. headAngry: {
  32778. height: math.unit(2.44, "meters"),
  32779. name: "Head (Angry))",
  32780. image: {
  32781. source: "./media/characters/sabrina/head-angry.svg"
  32782. }
  32783. },
  32784. maw: {
  32785. height: math.unit(1.65, "meters"),
  32786. name: "Maw",
  32787. image: {
  32788. source: "./media/characters/sabrina/maw.svg"
  32789. }
  32790. },
  32791. spikes: {
  32792. height: math.unit(1.69, "meters"),
  32793. name: "Spikes",
  32794. image: {
  32795. source: "./media/characters/sabrina/spikes.svg"
  32796. }
  32797. },
  32798. stomach: {
  32799. height: math.unit(1.15, "meters"),
  32800. name: "Stomach",
  32801. image: {
  32802. source: "./media/characters/sabrina/stomach.svg"
  32803. }
  32804. },
  32805. tongue: {
  32806. height: math.unit(1.27, "meters"),
  32807. name: "Tongue",
  32808. image: {
  32809. source: "./media/characters/sabrina/tongue.svg"
  32810. }
  32811. },
  32812. wingDorsal: {
  32813. height: math.unit(4.85, "meters"),
  32814. name: "Wing (Dorsal)",
  32815. image: {
  32816. source: "./media/characters/sabrina/wing-dorsal.svg"
  32817. }
  32818. },
  32819. wingVentral: {
  32820. height: math.unit(4.85, "meters"),
  32821. name: "Wing (Ventral)",
  32822. image: {
  32823. source: "./media/characters/sabrina/wing-ventral.svg"
  32824. }
  32825. },
  32826. },
  32827. [
  32828. {
  32829. name: "Normal",
  32830. height: math.unit(5, "meters"),
  32831. default: true
  32832. },
  32833. ]
  32834. ))
  32835. characterMakers.push(() => makeCharacter(
  32836. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32837. {
  32838. frontMaid: {
  32839. height: math.unit(5 + 5/12, "feet"),
  32840. weight: math.unit(130, "lb"),
  32841. name: "Front (Maid)",
  32842. image: {
  32843. source: "./media/characters/midnight-tales/front-maid.svg",
  32844. extra: 489/454,
  32845. bottom: 61/550
  32846. }
  32847. },
  32848. frontFormal: {
  32849. height: math.unit(5 + 5/12, "feet"),
  32850. weight: math.unit(130, "lb"),
  32851. name: "Front (Formal)",
  32852. image: {
  32853. source: "./media/characters/midnight-tales/front-formal.svg",
  32854. extra: 489/454,
  32855. bottom: 61/550
  32856. }
  32857. },
  32858. back: {
  32859. height: math.unit(5 + 5/12, "feet"),
  32860. weight: math.unit(130, "lb"),
  32861. name: "Back",
  32862. image: {
  32863. source: "./media/characters/midnight-tales/back.svg",
  32864. extra: 498/456,
  32865. bottom: 33/531
  32866. }
  32867. },
  32868. frontBeast: {
  32869. height: math.unit(40, "feet"),
  32870. weight: math.unit(64000, "lb"),
  32871. name: "Front (Beast)",
  32872. image: {
  32873. source: "./media/characters/midnight-tales/front-beast.svg",
  32874. extra: 927/860,
  32875. bottom: 53/980
  32876. }
  32877. },
  32878. backBeast: {
  32879. height: math.unit(40, "feet"),
  32880. weight: math.unit(64000, "lb"),
  32881. name: "Back (Beast)",
  32882. image: {
  32883. source: "./media/characters/midnight-tales/back-beast.svg",
  32884. extra: 929/855,
  32885. bottom: 16/945
  32886. }
  32887. },
  32888. footBeast: {
  32889. height: math.unit(6.7, "feet"),
  32890. name: "Foot (Beast)",
  32891. image: {
  32892. source: "./media/characters/midnight-tales/foot-beast.svg"
  32893. }
  32894. },
  32895. headBeast: {
  32896. height: math.unit(8, "feet"),
  32897. name: "Head (Beast)",
  32898. image: {
  32899. source: "./media/characters/midnight-tales/head-beast.svg"
  32900. }
  32901. },
  32902. },
  32903. [
  32904. {
  32905. name: "Normal",
  32906. height: math.unit(5 + 5 / 12, "feet"),
  32907. default: true
  32908. },
  32909. {
  32910. name: "Macro",
  32911. height: math.unit(25, "feet")
  32912. },
  32913. ]
  32914. ))
  32915. characterMakers.push(() => makeCharacter(
  32916. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32917. {
  32918. front: {
  32919. height: math.unit(5 + 10/12, "feet"),
  32920. name: "Front",
  32921. image: {
  32922. source: "./media/characters/argon/front.svg",
  32923. extra: 2009/1935,
  32924. bottom: 118/2127
  32925. }
  32926. },
  32927. back: {
  32928. height: math.unit(5 + 10/12, "feet"),
  32929. name: "Back",
  32930. image: {
  32931. source: "./media/characters/argon/back.svg",
  32932. extra: 2047/1992,
  32933. bottom: 20/2067
  32934. }
  32935. },
  32936. frontDressed: {
  32937. height: math.unit(5 + 10/12, "feet"),
  32938. name: "Front (Dressed)",
  32939. image: {
  32940. source: "./media/characters/argon/front-dressed.svg",
  32941. extra: 2009/1935,
  32942. bottom: 118/2127
  32943. }
  32944. },
  32945. },
  32946. [
  32947. {
  32948. name: "Normal",
  32949. height: math.unit(5 + 10/12, "feet"),
  32950. default: true
  32951. },
  32952. ]
  32953. ))
  32954. characterMakers.push(() => makeCharacter(
  32955. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32956. {
  32957. front: {
  32958. height: math.unit(8 + 6/12, "feet"),
  32959. weight: math.unit(1150, "lb"),
  32960. name: "Front",
  32961. image: {
  32962. source: "./media/characters/kichi/front.svg",
  32963. extra: 1267/1164,
  32964. bottom: 61/1328
  32965. }
  32966. },
  32967. back: {
  32968. height: math.unit(8 + 6/12, "feet"),
  32969. weight: math.unit(1150, "lb"),
  32970. name: "Back",
  32971. image: {
  32972. source: "./media/characters/kichi/back.svg",
  32973. extra: 1273/1166,
  32974. bottom: 33/1306
  32975. }
  32976. },
  32977. },
  32978. [
  32979. {
  32980. name: "Normal",
  32981. height: math.unit(8 + 6/12, "feet"),
  32982. default: true
  32983. },
  32984. ]
  32985. ))
  32986. characterMakers.push(() => makeCharacter(
  32987. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32988. {
  32989. front: {
  32990. height: math.unit(6, "feet"),
  32991. weight: math.unit(210, "lb"),
  32992. name: "Front",
  32993. image: {
  32994. source: "./media/characters/manetel-greyscale/front.svg",
  32995. extra: 350/312,
  32996. bottom: 8/358
  32997. }
  32998. },
  32999. },
  33000. [
  33001. {
  33002. name: "Micro",
  33003. height: math.unit(2, "inches")
  33004. },
  33005. {
  33006. name: "Normal",
  33007. height: math.unit(6, "feet"),
  33008. default: true
  33009. },
  33010. {
  33011. name: "Minimacro",
  33012. height: math.unit(17, "feet")
  33013. },
  33014. {
  33015. name: "Macro",
  33016. height: math.unit(117, "feet")
  33017. },
  33018. ]
  33019. ))
  33020. characterMakers.push(() => makeCharacter(
  33021. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33022. {
  33023. side: {
  33024. height: math.unit(5 + 1/12, "feet"),
  33025. weight: math.unit(418, "lb"),
  33026. name: "Side",
  33027. image: {
  33028. source: "./media/characters/softpurr/side.svg",
  33029. extra: 1993/1945,
  33030. bottom: 134/2127
  33031. }
  33032. },
  33033. front: {
  33034. height: math.unit(5 + 1/12, "feet"),
  33035. weight: math.unit(418, "lb"),
  33036. name: "Front",
  33037. image: {
  33038. source: "./media/characters/softpurr/front.svg",
  33039. extra: 1950/1856,
  33040. bottom: 174/2124
  33041. }
  33042. },
  33043. paw: {
  33044. height: math.unit(1, "feet"),
  33045. name: "Paw",
  33046. image: {
  33047. source: "./media/characters/softpurr/paw.svg"
  33048. }
  33049. },
  33050. },
  33051. [
  33052. {
  33053. name: "Normal",
  33054. height: math.unit(5 + 1/12, "feet"),
  33055. default: true
  33056. },
  33057. ]
  33058. ))
  33059. characterMakers.push(() => makeCharacter(
  33060. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33061. {
  33062. front: {
  33063. height: math.unit(260, "meters"),
  33064. name: "Front",
  33065. image: {
  33066. source: "./media/characters/anahita/front.svg",
  33067. extra: 665/635,
  33068. bottom: 89/754
  33069. }
  33070. },
  33071. },
  33072. [
  33073. {
  33074. name: "Macro",
  33075. height: math.unit(260, "meters"),
  33076. default: true
  33077. },
  33078. ]
  33079. ))
  33080. characterMakers.push(() => makeCharacter(
  33081. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33082. {
  33083. front: {
  33084. height: math.unit(4 + 10/12, "feet"),
  33085. weight: math.unit(160, "lb"),
  33086. name: "Front",
  33087. image: {
  33088. source: "./media/characters/chip-mouse/front.svg",
  33089. extra: 3528/3408,
  33090. bottom: 0/3528
  33091. }
  33092. },
  33093. frontNsfw: {
  33094. height: math.unit(4 + 10/12, "feet"),
  33095. weight: math.unit(160, "lb"),
  33096. name: "Front (NSFW)",
  33097. image: {
  33098. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33099. extra: 3528/3408,
  33100. bottom: 0/3528
  33101. }
  33102. },
  33103. },
  33104. [
  33105. {
  33106. name: "Normal",
  33107. height: math.unit(4 + 10/12, "feet"),
  33108. default: true
  33109. },
  33110. ]
  33111. ))
  33112. characterMakers.push(() => makeCharacter(
  33113. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33114. {
  33115. side: {
  33116. height: math.unit(10, "feet"),
  33117. weight: math.unit(14000, "lb"),
  33118. name: "Side",
  33119. image: {
  33120. source: "./media/characters/kremm/side.svg",
  33121. extra: 1390/1053,
  33122. bottom: 90/1480
  33123. }
  33124. },
  33125. gut: {
  33126. height: math.unit(5.8, "feet"),
  33127. name: "Gut",
  33128. image: {
  33129. source: "./media/characters/kremm/gut.svg"
  33130. }
  33131. },
  33132. ass: {
  33133. height: math.unit(6.1, "feet"),
  33134. name: "Ass",
  33135. image: {
  33136. source: "./media/characters/kremm/ass.svg"
  33137. }
  33138. },
  33139. jaws: {
  33140. height: math.unit(2.2, "feet"),
  33141. name: "Jaws",
  33142. image: {
  33143. source: "./media/characters/kremm/jaws.svg"
  33144. }
  33145. },
  33146. dick: {
  33147. height: math.unit(4.26, "feet"),
  33148. name: "Dick",
  33149. image: {
  33150. source: "./media/characters/kremm/dick.svg"
  33151. }
  33152. },
  33153. },
  33154. [
  33155. {
  33156. name: "Normal",
  33157. height: math.unit(10, "feet"),
  33158. default: true
  33159. },
  33160. ]
  33161. ))
  33162. characterMakers.push(() => makeCharacter(
  33163. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33164. {
  33165. front: {
  33166. height: math.unit(30, "stories"),
  33167. name: "Front",
  33168. image: {
  33169. source: "./media/characters/kai/front.svg",
  33170. extra: 1892/1718,
  33171. bottom: 162/2054
  33172. }
  33173. },
  33174. },
  33175. [
  33176. {
  33177. name: "Macro",
  33178. height: math.unit(30, "stories"),
  33179. default: true
  33180. },
  33181. ]
  33182. ))
  33183. characterMakers.push(() => makeCharacter(
  33184. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33185. {
  33186. front: {
  33187. height: math.unit(6 + 4/12, "feet"),
  33188. weight: math.unit(145, "lb"),
  33189. name: "Front",
  33190. image: {
  33191. source: "./media/characters/sykes/front.svg",
  33192. extra: 1321 / 1187,
  33193. bottom: 66 / 1387
  33194. }
  33195. },
  33196. back: {
  33197. height: math.unit(6 + 4/12, "feet"),
  33198. weight: math.unit(145, "lb"),
  33199. name: "Back",
  33200. image: {
  33201. source: "./media/characters/sykes/back.svg",
  33202. extra: 1326/1181,
  33203. bottom: 31/1357
  33204. }
  33205. },
  33206. handBack: {
  33207. height: math.unit(0.9, "feet"),
  33208. name: "Hand (Back)",
  33209. image: {
  33210. source: "./media/characters/sykes/hand-back.svg"
  33211. }
  33212. },
  33213. handFront: {
  33214. height: math.unit(0.839, "feet"),
  33215. name: "Hand (Front)",
  33216. image: {
  33217. source: "./media/characters/sykes/hand-front.svg"
  33218. }
  33219. },
  33220. leftFoot: {
  33221. height: math.unit(1.2, "feet"),
  33222. name: "Foot (Left)",
  33223. image: {
  33224. source: "./media/characters/sykes/foot-left.svg"
  33225. }
  33226. },
  33227. rightFoot: {
  33228. height: math.unit(1.2, "feet"),
  33229. name: "Foot (Right)",
  33230. image: {
  33231. source: "./media/characters/sykes/foot-right.svg"
  33232. }
  33233. },
  33234. maw: {
  33235. height: math.unit(1.93, "feet"),
  33236. name: "Maw",
  33237. image: {
  33238. source: "./media/characters/sykes/maw.svg"
  33239. }
  33240. },
  33241. teeth: {
  33242. height: math.unit(0.51, "feet"),
  33243. name: "Teeth",
  33244. image: {
  33245. source: "./media/characters/sykes/teeth.svg"
  33246. }
  33247. },
  33248. tongue: {
  33249. height: math.unit(2.13, "feet"),
  33250. name: "Tongue",
  33251. image: {
  33252. source: "./media/characters/sykes/tongue.svg"
  33253. }
  33254. },
  33255. uvula: {
  33256. height: math.unit(0.16, "feet"),
  33257. name: "Uvula",
  33258. image: {
  33259. source: "./media/characters/sykes/uvula.svg"
  33260. }
  33261. },
  33262. collar: {
  33263. height: math.unit(0.287, "feet"),
  33264. name: "Collar",
  33265. image: {
  33266. source: "./media/characters/sykes/collar.svg"
  33267. }
  33268. },
  33269. },
  33270. [
  33271. {
  33272. name: "Shrunken",
  33273. height: math.unit(5, "inches")
  33274. },
  33275. {
  33276. name: "Normal",
  33277. height: math.unit(6 + 4 / 12, "feet"),
  33278. default: true
  33279. },
  33280. {
  33281. name: "Big",
  33282. height: math.unit(15, "feet")
  33283. },
  33284. ]
  33285. ))
  33286. characterMakers.push(() => makeCharacter(
  33287. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33288. {
  33289. front: {
  33290. height: math.unit(5 + 8/12, "feet"),
  33291. weight: math.unit(190, "lb"),
  33292. name: "Front",
  33293. image: {
  33294. source: "./media/characters/oven-otter/front.svg",
  33295. extra: 1809/1740,
  33296. bottom: 181/1990
  33297. }
  33298. },
  33299. back: {
  33300. height: math.unit(5 + 8/12, "feet"),
  33301. weight: math.unit(190, "lb"),
  33302. name: "Back",
  33303. image: {
  33304. source: "./media/characters/oven-otter/back.svg",
  33305. extra: 1709/1635,
  33306. bottom: 118/1827
  33307. }
  33308. },
  33309. hand: {
  33310. height: math.unit(1.07, "feet"),
  33311. name: "Hand",
  33312. image: {
  33313. source: "./media/characters/oven-otter/hand.svg"
  33314. }
  33315. },
  33316. beans: {
  33317. height: math.unit(1.74, "feet"),
  33318. name: "Beans",
  33319. image: {
  33320. source: "./media/characters/oven-otter/beans.svg"
  33321. }
  33322. },
  33323. },
  33324. [
  33325. {
  33326. name: "Micro",
  33327. height: math.unit(0.5, "inches")
  33328. },
  33329. {
  33330. name: "Normal",
  33331. height: math.unit(5 + 8/12, "feet"),
  33332. default: true
  33333. },
  33334. {
  33335. name: "Macro",
  33336. height: math.unit(250, "feet")
  33337. },
  33338. {
  33339. name: "Really High",
  33340. height: math.unit(420, "feet")
  33341. },
  33342. ]
  33343. ))
  33344. characterMakers.push(() => makeCharacter(
  33345. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33346. {
  33347. front: {
  33348. height: math.unit(5, "meters"),
  33349. weight: math.unit(292000000000000, "kg"),
  33350. name: "Front",
  33351. image: {
  33352. source: "./media/characters/devourer/front.svg",
  33353. extra: 1800/1733,
  33354. bottom: 211/2011
  33355. }
  33356. },
  33357. maw: {
  33358. height: math.unit(1.1, "meter"),
  33359. name: "Maw",
  33360. image: {
  33361. source: "./media/characters/devourer/maw.svg"
  33362. }
  33363. },
  33364. },
  33365. [
  33366. {
  33367. name: "Small",
  33368. height: math.unit(3, "meters")
  33369. },
  33370. {
  33371. name: "Large",
  33372. height: math.unit(5, "meters"),
  33373. default: true
  33374. },
  33375. ]
  33376. ))
  33377. characterMakers.push(() => makeCharacter(
  33378. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33379. {
  33380. front: {
  33381. height: math.unit(6, "feet"),
  33382. weight: math.unit(400, "lb"),
  33383. name: "Front",
  33384. image: {
  33385. source: "./media/characters/ellarby/front.svg",
  33386. extra: 1909/1763,
  33387. bottom: 80/1989
  33388. }
  33389. },
  33390. back: {
  33391. height: math.unit(6, "feet"),
  33392. weight: math.unit(400, "lb"),
  33393. name: "Back",
  33394. image: {
  33395. source: "./media/characters/ellarby/back.svg",
  33396. extra: 1914/1784,
  33397. bottom: 172/2086
  33398. }
  33399. },
  33400. },
  33401. [
  33402. {
  33403. name: "Mischief",
  33404. height: math.unit(18, "inches")
  33405. },
  33406. {
  33407. name: "Trouble",
  33408. height: math.unit(12, "feet")
  33409. },
  33410. {
  33411. name: "Havoc",
  33412. height: math.unit(200, "feet"),
  33413. default: true
  33414. },
  33415. {
  33416. name: "Pandemonium",
  33417. height: math.unit(1, "mile")
  33418. },
  33419. {
  33420. name: "Catastrophe",
  33421. height: math.unit(100, "miles")
  33422. },
  33423. ]
  33424. ))
  33425. characterMakers.push(() => makeCharacter(
  33426. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33427. {
  33428. front: {
  33429. height: math.unit(4.7, "meters"),
  33430. weight: math.unit(6500, "kg"),
  33431. name: "Front",
  33432. image: {
  33433. source: "./media/characters/vex/front.svg",
  33434. extra: 1288/1140,
  33435. bottom: 100/1388
  33436. }
  33437. },
  33438. },
  33439. [
  33440. {
  33441. name: "Normal",
  33442. height: math.unit(4.7, "meters"),
  33443. default: true
  33444. },
  33445. ]
  33446. ))
  33447. characterMakers.push(() => makeCharacter(
  33448. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33449. {
  33450. normal: {
  33451. height: math.unit(6, "feet"),
  33452. weight: math.unit(350, "lb"),
  33453. name: "Normal",
  33454. image: {
  33455. source: "./media/characters/teshy/normal.svg",
  33456. extra: 1795/1735,
  33457. bottom: 16/1811
  33458. }
  33459. },
  33460. monsterFront: {
  33461. height: math.unit(12, "feet"),
  33462. weight: math.unit(4700, "lb"),
  33463. name: "Monster (Front)",
  33464. image: {
  33465. source: "./media/characters/teshy/monster-front.svg",
  33466. extra: 2042/2034,
  33467. bottom: 128/2170
  33468. }
  33469. },
  33470. monsterSide: {
  33471. height: math.unit(12, "feet"),
  33472. weight: math.unit(4700, "lb"),
  33473. name: "Monster (Side)",
  33474. image: {
  33475. source: "./media/characters/teshy/monster-side.svg",
  33476. extra: 2067/2056,
  33477. bottom: 70/2137
  33478. }
  33479. },
  33480. monsterBack: {
  33481. height: math.unit(12, "feet"),
  33482. weight: math.unit(4700, "lb"),
  33483. name: "Monster (Back)",
  33484. image: {
  33485. source: "./media/characters/teshy/monster-back.svg",
  33486. extra: 1921/1914,
  33487. bottom: 171/2092
  33488. }
  33489. },
  33490. },
  33491. [
  33492. {
  33493. name: "Normal",
  33494. height: math.unit(6, "feet"),
  33495. default: true
  33496. },
  33497. ]
  33498. ))
  33499. characterMakers.push(() => makeCharacter(
  33500. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33501. {
  33502. front: {
  33503. height: math.unit(6, "feet"),
  33504. name: "Front",
  33505. image: {
  33506. source: "./media/characters/ramey/front.svg",
  33507. extra: 790/787,
  33508. bottom: 27/817
  33509. }
  33510. },
  33511. },
  33512. [
  33513. {
  33514. name: "Normal",
  33515. height: math.unit(6, "feet"),
  33516. default: true
  33517. },
  33518. ]
  33519. ))
  33520. characterMakers.push(() => makeCharacter(
  33521. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33522. {
  33523. front: {
  33524. height: math.unit(5 + 5/12, "feet"),
  33525. weight: math.unit(120, "lb"),
  33526. name: "Front",
  33527. image: {
  33528. source: "./media/characters/phirae/front.svg",
  33529. extra: 2491/2436,
  33530. bottom: 38/2529
  33531. }
  33532. },
  33533. },
  33534. [
  33535. {
  33536. name: "Normal",
  33537. height: math.unit(5 + 5/12, "feet"),
  33538. default: true
  33539. },
  33540. ]
  33541. ))
  33542. characterMakers.push(() => makeCharacter(
  33543. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33544. {
  33545. front: {
  33546. height: math.unit(6, "feet"),
  33547. weight: math.unit(150, "lb"),
  33548. name: "Front",
  33549. image: {
  33550. source: "./media/characters/stagglas/front.svg",
  33551. extra: 962/882,
  33552. bottom: 53/1015
  33553. }
  33554. },
  33555. },
  33556. [
  33557. {
  33558. name: "Normal",
  33559. height: math.unit(5 + 3/12, "feet"),
  33560. default: true
  33561. },
  33562. ]
  33563. ))
  33564. characterMakers.push(() => makeCharacter(
  33565. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33566. {
  33567. front: {
  33568. height: math.unit(5 + 4/12, "feet"),
  33569. weight: math.unit(145, "lb"),
  33570. name: "Front",
  33571. image: {
  33572. source: "./media/characters/starra/front.svg",
  33573. extra: 1790/1691,
  33574. bottom: 91/1881
  33575. }
  33576. },
  33577. },
  33578. [
  33579. {
  33580. name: "Normal",
  33581. height: math.unit(5 + 4/12, "feet"),
  33582. default: true
  33583. },
  33584. ]
  33585. ))
  33586. characterMakers.push(() => makeCharacter(
  33587. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33588. {
  33589. front: {
  33590. height: math.unit(2.2, "meters"),
  33591. name: "Front",
  33592. image: {
  33593. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33594. extra: 1194/1005,
  33595. bottom: 25/1219
  33596. }
  33597. },
  33598. },
  33599. [
  33600. {
  33601. name: "Normal",
  33602. height: math.unit(2.2, "meters"),
  33603. default: true
  33604. },
  33605. ]
  33606. ))
  33607. characterMakers.push(() => makeCharacter(
  33608. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33609. {
  33610. side: {
  33611. height: math.unit(8 + 2/12, "feet"),
  33612. weight: math.unit(1240, "lb"),
  33613. name: "Side",
  33614. image: {
  33615. source: "./media/characters/mika-valentine/side.svg",
  33616. extra: 2670/2501,
  33617. bottom: 250/2920
  33618. }
  33619. },
  33620. },
  33621. [
  33622. {
  33623. name: "Normal",
  33624. height: math.unit(8 + 2/12, "feet"),
  33625. default: true
  33626. },
  33627. ]
  33628. ))
  33629. characterMakers.push(() => makeCharacter(
  33630. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33631. {
  33632. front: {
  33633. height: math.unit(7 + 2/12, "feet"),
  33634. name: "Front",
  33635. image: {
  33636. source: "./media/characters/xoltol/front.svg",
  33637. extra: 2212/2124,
  33638. bottom: 84/2296
  33639. }
  33640. },
  33641. side: {
  33642. height: math.unit(7 + 2/12, "feet"),
  33643. name: "Side",
  33644. image: {
  33645. source: "./media/characters/xoltol/side.svg",
  33646. extra: 2273/2197,
  33647. bottom: 26/2299
  33648. }
  33649. },
  33650. hand: {
  33651. height: math.unit(2.5, "feet"),
  33652. name: "Hand",
  33653. image: {
  33654. source: "./media/characters/xoltol/hand.svg"
  33655. }
  33656. },
  33657. },
  33658. [
  33659. {
  33660. name: "Small-ish",
  33661. height: math.unit(5 + 11/12, "feet")
  33662. },
  33663. {
  33664. name: "Normal",
  33665. height: math.unit(7 + 2/12, "feet")
  33666. },
  33667. {
  33668. name: "\"Macro\"",
  33669. height: math.unit(14 + 9/12, "feet"),
  33670. default: true
  33671. },
  33672. {
  33673. name: "Alternate Height",
  33674. height: math.unit(20, "feet")
  33675. },
  33676. {
  33677. name: "Actually Macro",
  33678. height: math.unit(100, "feet")
  33679. },
  33680. ]
  33681. ))
  33682. characterMakers.push(() => makeCharacter(
  33683. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33684. {
  33685. front: {
  33686. height: math.unit(5 + 2/12, "feet"),
  33687. name: "Front",
  33688. image: {
  33689. source: "./media/characters/kotetsu-redwood/front.svg",
  33690. extra: 1053/942,
  33691. bottom: 60/1113
  33692. }
  33693. },
  33694. },
  33695. [
  33696. {
  33697. name: "Normal",
  33698. height: math.unit(5 + 2/12, "feet"),
  33699. default: true
  33700. },
  33701. ]
  33702. ))
  33703. characterMakers.push(() => makeCharacter(
  33704. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33705. {
  33706. front: {
  33707. height: math.unit(2.4, "meters"),
  33708. weight: math.unit(125, "kg"),
  33709. name: "Front",
  33710. image: {
  33711. source: "./media/characters/lilith/front.svg",
  33712. extra: 1590/1513,
  33713. bottom: 203/1793
  33714. }
  33715. },
  33716. },
  33717. [
  33718. {
  33719. name: "Humanoid",
  33720. height: math.unit(2.4, "meters")
  33721. },
  33722. {
  33723. name: "Normal",
  33724. height: math.unit(6, "meters"),
  33725. default: true
  33726. },
  33727. {
  33728. name: "Largest",
  33729. height: math.unit(55, "meters")
  33730. },
  33731. ]
  33732. ))
  33733. characterMakers.push(() => makeCharacter(
  33734. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33735. {
  33736. front: {
  33737. height: math.unit(8 + 4/12, "feet"),
  33738. weight: math.unit(535, "lb"),
  33739. name: "Front",
  33740. image: {
  33741. source: "./media/characters/beh'kah-bolger/front.svg",
  33742. extra: 1660/1603,
  33743. bottom: 37/1697
  33744. }
  33745. },
  33746. },
  33747. [
  33748. {
  33749. name: "Normal",
  33750. height: math.unit(8 + 4/12, "feet"),
  33751. default: true
  33752. },
  33753. {
  33754. name: "Kaiju",
  33755. height: math.unit(250, "feet")
  33756. },
  33757. {
  33758. name: "Still Growing",
  33759. height: math.unit(10, "miles")
  33760. },
  33761. {
  33762. name: "Continental",
  33763. height: math.unit(5000, "miles")
  33764. },
  33765. {
  33766. name: "Final Form",
  33767. height: math.unit(2500000, "miles")
  33768. },
  33769. ]
  33770. ))
  33771. characterMakers.push(() => makeCharacter(
  33772. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33773. {
  33774. front: {
  33775. height: math.unit(7 + 2/12, "feet"),
  33776. weight: math.unit(230, "kg"),
  33777. name: "Front",
  33778. image: {
  33779. source: "./media/characters/tatyana-milewska/front.svg",
  33780. extra: 1199/1150,
  33781. bottom: 86/1285
  33782. }
  33783. },
  33784. },
  33785. [
  33786. {
  33787. name: "Normal",
  33788. height: math.unit(7 + 2/12, "feet"),
  33789. default: true
  33790. },
  33791. {
  33792. name: "Big",
  33793. height: math.unit(12, "feet")
  33794. },
  33795. {
  33796. name: "Minimacro",
  33797. height: math.unit(20, "feet")
  33798. },
  33799. {
  33800. name: "Macro",
  33801. height: math.unit(120, "feet")
  33802. },
  33803. ]
  33804. ))
  33805. characterMakers.push(() => makeCharacter(
  33806. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33807. {
  33808. front: {
  33809. height: math.unit(7 + 8/12, "feet"),
  33810. weight: math.unit(152, "kg"),
  33811. name: "Front",
  33812. image: {
  33813. source: "./media/characters/helen-arri/front.svg",
  33814. extra: 440/423,
  33815. bottom: 14/454
  33816. }
  33817. },
  33818. back: {
  33819. height: math.unit(7 + 8/12, "feet"),
  33820. weight: math.unit(152, "kg"),
  33821. name: "Back",
  33822. image: {
  33823. source: "./media/characters/helen-arri/back.svg",
  33824. extra: 443/426,
  33825. bottom: 8/451
  33826. }
  33827. },
  33828. },
  33829. [
  33830. {
  33831. name: "Normal",
  33832. height: math.unit(7 + 8/12, "feet"),
  33833. default: true
  33834. },
  33835. {
  33836. name: "Big",
  33837. height: math.unit(14, "feet")
  33838. },
  33839. {
  33840. name: "Minimacro",
  33841. height: math.unit(24, "feet")
  33842. },
  33843. {
  33844. name: "Macro",
  33845. height: math.unit(140, "feet")
  33846. },
  33847. ]
  33848. ))
  33849. characterMakers.push(() => makeCharacter(
  33850. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33851. {
  33852. front: {
  33853. height: math.unit(6, "meters"),
  33854. name: "Front",
  33855. image: {
  33856. source: "./media/characters/ehanu-rehu/front.svg",
  33857. extra: 1800/1800,
  33858. bottom: 59/1859
  33859. }
  33860. },
  33861. },
  33862. [
  33863. {
  33864. name: "Normal",
  33865. height: math.unit(6, "meters"),
  33866. default: true
  33867. },
  33868. ]
  33869. ))
  33870. characterMakers.push(() => makeCharacter(
  33871. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33872. {
  33873. front: {
  33874. height: math.unit(7 + 3/12, "feet"),
  33875. name: "Front",
  33876. image: {
  33877. source: "./media/characters/renholder/front.svg",
  33878. extra: 3096/2960,
  33879. bottom: 250/3346
  33880. }
  33881. },
  33882. },
  33883. [
  33884. {
  33885. name: "Normal Bat",
  33886. height: math.unit(7 + 3/12, "feet"),
  33887. default: true
  33888. },
  33889. {
  33890. name: "Slightly Tall Bat",
  33891. height: math.unit(100, "feet")
  33892. },
  33893. {
  33894. name: "Big Bat",
  33895. height: math.unit(1000, "feet")
  33896. },
  33897. {
  33898. name: "City-Sized Bat",
  33899. height: math.unit(200000, "feet")
  33900. },
  33901. {
  33902. name: "Bigger Bat",
  33903. height: math.unit(10000, "miles")
  33904. },
  33905. {
  33906. name: "Solar Sized Bat",
  33907. height: math.unit(100, "AU")
  33908. },
  33909. {
  33910. name: "Galactic Bat",
  33911. height: math.unit(200000, "lightyears")
  33912. },
  33913. {
  33914. name: "Universally Known Bat",
  33915. height: math.unit(1, "universe")
  33916. },
  33917. ]
  33918. ))
  33919. characterMakers.push(() => makeCharacter(
  33920. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33921. {
  33922. front: {
  33923. height: math.unit(6 + 11/12, "feet"),
  33924. weight: math.unit(250, "lb"),
  33925. name: "Front",
  33926. image: {
  33927. source: "./media/characters/cookiecat/front.svg",
  33928. extra: 893/827,
  33929. bottom: 14/907
  33930. }
  33931. },
  33932. },
  33933. [
  33934. {
  33935. name: "Micro",
  33936. height: math.unit(3, "inches")
  33937. },
  33938. {
  33939. name: "Normal",
  33940. height: math.unit(6 + 11/12, "feet"),
  33941. default: true
  33942. },
  33943. {
  33944. name: "Macro",
  33945. height: math.unit(100, "feet")
  33946. },
  33947. {
  33948. name: "Macro+",
  33949. height: math.unit(404, "feet")
  33950. },
  33951. {
  33952. name: "Megamacro",
  33953. height: math.unit(165, "miles")
  33954. },
  33955. {
  33956. name: "Planetary",
  33957. height: math.unit(4600, "miles")
  33958. },
  33959. ]
  33960. ))
  33961. characterMakers.push(() => makeCharacter(
  33962. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33963. {
  33964. front: {
  33965. height: math.unit(10 + 3/12, "feet"),
  33966. weight: math.unit(1500, "lb"),
  33967. name: "Front",
  33968. image: {
  33969. source: "./media/characters/tux-kusanagi/front.svg",
  33970. extra: 944/840,
  33971. bottom: 39/983
  33972. }
  33973. },
  33974. back: {
  33975. height: math.unit(10 + 3/12, "feet"),
  33976. weight: math.unit(1500, "lb"),
  33977. name: "Back",
  33978. image: {
  33979. source: "./media/characters/tux-kusanagi/back.svg",
  33980. extra: 941/842,
  33981. bottom: 28/969
  33982. }
  33983. },
  33984. rump: {
  33985. height: math.unit(5.25, "feet"),
  33986. name: "Rump",
  33987. image: {
  33988. source: "./media/characters/tux-kusanagi/rump.svg"
  33989. }
  33990. },
  33991. beak: {
  33992. height: math.unit(1.54, "feet"),
  33993. name: "Beak",
  33994. image: {
  33995. source: "./media/characters/tux-kusanagi/beak.svg"
  33996. }
  33997. },
  33998. },
  33999. [
  34000. {
  34001. name: "Normal",
  34002. height: math.unit(10 + 3/12, "feet"),
  34003. default: true
  34004. },
  34005. ]
  34006. ))
  34007. characterMakers.push(() => makeCharacter(
  34008. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34009. {
  34010. front: {
  34011. height: math.unit(58, "feet"),
  34012. weight: math.unit(200, "tons"),
  34013. name: "Front",
  34014. image: {
  34015. source: "./media/characters/uzarmazari/front.svg",
  34016. extra: 1575/1455,
  34017. bottom: 152/1727
  34018. }
  34019. },
  34020. back: {
  34021. height: math.unit(58, "feet"),
  34022. weight: math.unit(200, "tons"),
  34023. name: "Back",
  34024. image: {
  34025. source: "./media/characters/uzarmazari/back.svg",
  34026. extra: 1585/1510,
  34027. bottom: 157/1742
  34028. }
  34029. },
  34030. head: {
  34031. height: math.unit(26, "feet"),
  34032. name: "Head",
  34033. image: {
  34034. source: "./media/characters/uzarmazari/head.svg"
  34035. }
  34036. },
  34037. },
  34038. [
  34039. {
  34040. name: "Normal",
  34041. height: math.unit(58, "feet"),
  34042. default: true
  34043. },
  34044. ]
  34045. ))
  34046. characterMakers.push(() => makeCharacter(
  34047. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34048. {
  34049. side: {
  34050. height: math.unit(15, "feet"),
  34051. name: "Side",
  34052. image: {
  34053. source: "./media/characters/akitu/side.svg",
  34054. extra: 1421/1321,
  34055. bottom: 157/1578
  34056. }
  34057. },
  34058. front: {
  34059. height: math.unit(15, "feet"),
  34060. name: "Front",
  34061. image: {
  34062. source: "./media/characters/akitu/front.svg",
  34063. extra: 1435/1326,
  34064. bottom: 232/1667
  34065. }
  34066. },
  34067. },
  34068. [
  34069. {
  34070. name: "Normal",
  34071. height: math.unit(15, "feet"),
  34072. default: true
  34073. },
  34074. ]
  34075. ))
  34076. characterMakers.push(() => makeCharacter(
  34077. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34078. {
  34079. front: {
  34080. height: math.unit(10 + 8/12, "feet"),
  34081. name: "Front",
  34082. image: {
  34083. source: "./media/characters/azalie-croixland/front.svg",
  34084. extra: 1972/1856,
  34085. bottom: 31/2003
  34086. }
  34087. },
  34088. },
  34089. [
  34090. {
  34091. name: "Original Height",
  34092. height: math.unit(5 + 4/12, "feet")
  34093. },
  34094. {
  34095. name: "Normal Height",
  34096. height: math.unit(10 + 8/12, "feet"),
  34097. default: true
  34098. },
  34099. ]
  34100. ))
  34101. characterMakers.push(() => makeCharacter(
  34102. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34103. {
  34104. side: {
  34105. height: math.unit(7 + 1/12, "feet"),
  34106. weight: math.unit(245, "lb"),
  34107. name: "Side",
  34108. image: {
  34109. source: "./media/characters/kavus-kazian/side.svg",
  34110. extra: 349/342,
  34111. bottom: 15/364
  34112. }
  34113. },
  34114. },
  34115. [
  34116. {
  34117. name: "Normal",
  34118. height: math.unit(7 + 1/12, "feet"),
  34119. default: true
  34120. },
  34121. ]
  34122. ))
  34123. characterMakers.push(() => makeCharacter(
  34124. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34125. {
  34126. normal: {
  34127. height: math.unit(5 + 11/12, "feet"),
  34128. name: "Normal",
  34129. image: {
  34130. source: "./media/characters/moonlight-rose/normal.svg",
  34131. extra: 1979/1835,
  34132. bottom: 14/1993
  34133. }
  34134. },
  34135. demon: {
  34136. height: math.unit(5, "km"),
  34137. name: "Demon",
  34138. image: {
  34139. source: "./media/characters/moonlight-rose/demon.svg",
  34140. extra: 986/916,
  34141. bottom: 28/1014
  34142. }
  34143. },
  34144. },
  34145. [
  34146. {
  34147. name: "\"Natural\" height",
  34148. height: math.unit(5 + 11/12, "feet")
  34149. },
  34150. {
  34151. name: "Comfortable Size",
  34152. height: math.unit(40, "meters")
  34153. },
  34154. {
  34155. name: "Common Size",
  34156. height: math.unit(50, "km"),
  34157. default: true
  34158. },
  34159. {
  34160. name: "Demonic",
  34161. height: math.unit(1.24415e+21, "meters")
  34162. },
  34163. ]
  34164. ))
  34165. characterMakers.push(() => makeCharacter(
  34166. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34167. {
  34168. front: {
  34169. height: math.unit(16, "feet"),
  34170. weight: math.unit(610, "kg"),
  34171. name: "Front",
  34172. image: {
  34173. source: "./media/characters/huckle/front.svg",
  34174. extra: 1731/1625,
  34175. bottom: 33/1764
  34176. }
  34177. },
  34178. back: {
  34179. height: math.unit(16, "feet"),
  34180. weight: math.unit(610, "kg"),
  34181. name: "Back",
  34182. image: {
  34183. source: "./media/characters/huckle/back.svg",
  34184. extra: 1738/1651,
  34185. bottom: 37/1775
  34186. }
  34187. },
  34188. laughing: {
  34189. height: math.unit(3.75, "feet"),
  34190. name: "Laughing",
  34191. image: {
  34192. source: "./media/characters/huckle/laughing.svg"
  34193. }
  34194. },
  34195. angry: {
  34196. height: math.unit(4.15, "feet"),
  34197. name: "Angry",
  34198. image: {
  34199. source: "./media/characters/huckle/angry.svg"
  34200. }
  34201. },
  34202. },
  34203. [
  34204. {
  34205. name: "Normal",
  34206. height: math.unit(16, "feet"),
  34207. default: true
  34208. },
  34209. {
  34210. name: "Mini Macro",
  34211. height: math.unit(463, "feet")
  34212. },
  34213. {
  34214. name: "Macro",
  34215. height: math.unit(1680, "meters")
  34216. },
  34217. {
  34218. name: "Mega Macro",
  34219. height: math.unit(175, "km")
  34220. },
  34221. {
  34222. name: "Terra Macro",
  34223. height: math.unit(32, "gigameters")
  34224. },
  34225. {
  34226. name: "Multiverse+",
  34227. height: math.unit(2.56e23, "yottameters")
  34228. },
  34229. ]
  34230. ))
  34231. characterMakers.push(() => makeCharacter(
  34232. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34233. {
  34234. front: {
  34235. height: math.unit(6 + 9/12, "feet"),
  34236. weight: math.unit(280, "lb"),
  34237. name: "Front",
  34238. image: {
  34239. source: "./media/characters/candy/front.svg",
  34240. extra: 234/217,
  34241. bottom: 11/245
  34242. }
  34243. },
  34244. },
  34245. [
  34246. {
  34247. name: "Really Small",
  34248. height: math.unit(0.1, "nm")
  34249. },
  34250. {
  34251. name: "Micro",
  34252. height: math.unit(2, "inches")
  34253. },
  34254. {
  34255. name: "Normal",
  34256. height: math.unit(6 + 9/12, "feet"),
  34257. default: true
  34258. },
  34259. {
  34260. name: "Small Macro",
  34261. height: math.unit(69, "feet")
  34262. },
  34263. {
  34264. name: "Macro",
  34265. height: math.unit(160, "feet")
  34266. },
  34267. {
  34268. name: "Megamacro",
  34269. height: math.unit(22000, "miles")
  34270. },
  34271. {
  34272. name: "Gigamacro",
  34273. height: math.unit(50000, "miles")
  34274. },
  34275. ]
  34276. ))
  34277. characterMakers.push(() => makeCharacter(
  34278. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34279. {
  34280. front: {
  34281. height: math.unit(4, "feet"),
  34282. weight: math.unit(90, "lb"),
  34283. name: "Front",
  34284. image: {
  34285. source: "./media/characters/joey-mcdonald/front.svg",
  34286. extra: 1059/852,
  34287. bottom: 33/1092
  34288. }
  34289. },
  34290. back: {
  34291. height: math.unit(4, "feet"),
  34292. weight: math.unit(90, "lb"),
  34293. name: "Back",
  34294. image: {
  34295. source: "./media/characters/joey-mcdonald/back.svg",
  34296. extra: 1077/879,
  34297. bottom: 5/1082
  34298. }
  34299. },
  34300. },
  34301. [
  34302. {
  34303. name: "Normal",
  34304. height: math.unit(4, "feet"),
  34305. default: true
  34306. },
  34307. ]
  34308. ))
  34309. characterMakers.push(() => makeCharacter(
  34310. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34311. {
  34312. front: {
  34313. height: math.unit(12 + 6/12, "feet"),
  34314. name: "Front",
  34315. image: {
  34316. source: "./media/characters/kass-lockheed/front.svg",
  34317. extra: 354/343,
  34318. bottom: 9/363
  34319. }
  34320. },
  34321. back: {
  34322. height: math.unit(12 + 6/12, "feet"),
  34323. name: "Back",
  34324. image: {
  34325. source: "./media/characters/kass-lockheed/back.svg",
  34326. extra: 364/352,
  34327. bottom: 3/367
  34328. }
  34329. },
  34330. dick: {
  34331. height: math.unit(3.12, "feet"),
  34332. name: "Dick",
  34333. image: {
  34334. source: "./media/characters/kass-lockheed/dick.svg"
  34335. }
  34336. },
  34337. head: {
  34338. height: math.unit(2.6, "feet"),
  34339. name: "Head",
  34340. image: {
  34341. source: "./media/characters/kass-lockheed/head.svg"
  34342. }
  34343. },
  34344. bleh: {
  34345. height: math.unit(2.85, "feet"),
  34346. name: "Bleh",
  34347. image: {
  34348. source: "./media/characters/kass-lockheed/bleh.svg"
  34349. }
  34350. },
  34351. smug: {
  34352. height: math.unit(2.85, "feet"),
  34353. name: "Smug",
  34354. image: {
  34355. source: "./media/characters/kass-lockheed/smug.svg"
  34356. }
  34357. },
  34358. },
  34359. [
  34360. {
  34361. name: "Normal",
  34362. height: math.unit(12 + 6/12, "feet"),
  34363. default: true
  34364. },
  34365. ]
  34366. ))
  34367. characterMakers.push(() => makeCharacter(
  34368. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34369. {
  34370. front: {
  34371. height: math.unit(6 + 2/12, "feet"),
  34372. name: "Front",
  34373. image: {
  34374. source: "./media/characters/taylor/front.svg",
  34375. extra: 639/495,
  34376. bottom: 12/651
  34377. }
  34378. },
  34379. },
  34380. [
  34381. {
  34382. name: "Normal",
  34383. height: math.unit(6 + 2/12, "feet"),
  34384. default: true
  34385. },
  34386. {
  34387. name: "Big",
  34388. height: math.unit(15, "feet")
  34389. },
  34390. {
  34391. name: "Lorg",
  34392. height: math.unit(80, "feet")
  34393. },
  34394. {
  34395. name: "Too Lorg",
  34396. height: math.unit(120, "feet")
  34397. },
  34398. ]
  34399. ))
  34400. characterMakers.push(() => makeCharacter(
  34401. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34402. {
  34403. front: {
  34404. height: math.unit(15, "feet"),
  34405. name: "Front",
  34406. image: {
  34407. source: "./media/characters/kaizer/front.svg",
  34408. extra: 1612/1436,
  34409. bottom: 43/1655
  34410. }
  34411. },
  34412. },
  34413. [
  34414. {
  34415. name: "Normal",
  34416. height: math.unit(15, "feet"),
  34417. default: true
  34418. },
  34419. ]
  34420. ))
  34421. characterMakers.push(() => makeCharacter(
  34422. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34423. {
  34424. front: {
  34425. height: math.unit(2, "feet"),
  34426. weight: math.unit(30, "lb"),
  34427. name: "Front",
  34428. image: {
  34429. source: "./media/characters/sandy/front.svg",
  34430. extra: 1439/1307,
  34431. bottom: 194/1633
  34432. }
  34433. },
  34434. },
  34435. [
  34436. {
  34437. name: "Normal",
  34438. height: math.unit(2, "feet"),
  34439. default: true
  34440. },
  34441. ]
  34442. ))
  34443. characterMakers.push(() => makeCharacter(
  34444. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34445. {
  34446. front: {
  34447. height: math.unit(3, "feet"),
  34448. name: "Front",
  34449. image: {
  34450. source: "./media/characters/mellvi/front.svg",
  34451. extra: 1831/1630,
  34452. bottom: 58/1889
  34453. }
  34454. },
  34455. },
  34456. [
  34457. {
  34458. name: "Normal",
  34459. height: math.unit(3, "feet"),
  34460. default: true
  34461. },
  34462. ]
  34463. ))
  34464. characterMakers.push(() => makeCharacter(
  34465. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34466. {
  34467. front: {
  34468. height: math.unit(5 + 11/12, "feet"),
  34469. weight: math.unit(200, "lb"),
  34470. name: "Front",
  34471. image: {
  34472. source: "./media/characters/shirou/front.svg",
  34473. extra: 2491/2383,
  34474. bottom: 189/2680
  34475. }
  34476. },
  34477. back: {
  34478. height: math.unit(5 + 11/12, "feet"),
  34479. weight: math.unit(200, "lb"),
  34480. name: "Back",
  34481. image: {
  34482. source: "./media/characters/shirou/back.svg",
  34483. extra: 2554/2450,
  34484. bottom: 76/2630
  34485. }
  34486. },
  34487. },
  34488. [
  34489. {
  34490. name: "Normal",
  34491. height: math.unit(5 + 11/12, "feet"),
  34492. default: true
  34493. },
  34494. ]
  34495. ))
  34496. characterMakers.push(() => makeCharacter(
  34497. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34498. {
  34499. front: {
  34500. height: math.unit(6 + 3/12, "feet"),
  34501. weight: math.unit(177, "lb"),
  34502. name: "Front",
  34503. image: {
  34504. source: "./media/characters/noryu/front.svg",
  34505. extra: 973/885,
  34506. bottom: 10/983
  34507. }
  34508. },
  34509. },
  34510. [
  34511. {
  34512. name: "Normal",
  34513. height: math.unit(6 + 3/12, "feet"),
  34514. default: true
  34515. },
  34516. ]
  34517. ))
  34518. characterMakers.push(() => makeCharacter(
  34519. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34520. {
  34521. front: {
  34522. height: math.unit(5 + 6/12, "feet"),
  34523. weight: math.unit(170, "lb"),
  34524. name: "Front",
  34525. image: {
  34526. source: "./media/characters/mevolas-rubenido/front.svg",
  34527. extra: 2109/1901,
  34528. bottom: 96/2205
  34529. }
  34530. },
  34531. },
  34532. [
  34533. {
  34534. name: "Normal",
  34535. height: math.unit(5 + 6/12, "feet"),
  34536. default: true
  34537. },
  34538. ]
  34539. ))
  34540. characterMakers.push(() => makeCharacter(
  34541. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34542. {
  34543. front: {
  34544. height: math.unit(100, "feet"),
  34545. name: "Front",
  34546. image: {
  34547. source: "./media/characters/dee/front.svg",
  34548. extra: 2153/2036,
  34549. bottom: 59/2212
  34550. }
  34551. },
  34552. back: {
  34553. height: math.unit(100, "feet"),
  34554. name: "Back",
  34555. image: {
  34556. source: "./media/characters/dee/back.svg",
  34557. extra: 2183/2058,
  34558. bottom: 75/2258
  34559. }
  34560. },
  34561. foot: {
  34562. height: math.unit(19.43, "feet"),
  34563. name: "Foot",
  34564. image: {
  34565. source: "./media/characters/dee/foot.svg"
  34566. }
  34567. },
  34568. hoof: {
  34569. height: math.unit(20.6, "feet"),
  34570. name: "Hoof",
  34571. image: {
  34572. source: "./media/characters/dee/hoof.svg"
  34573. }
  34574. },
  34575. },
  34576. [
  34577. {
  34578. name: "Macro",
  34579. height: math.unit(100, "feet"),
  34580. default: true
  34581. },
  34582. ]
  34583. ))
  34584. characterMakers.push(() => makeCharacter(
  34585. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34586. {
  34587. front: {
  34588. height: math.unit(5 + 6/12, "feet"),
  34589. name: "Front",
  34590. image: {
  34591. source: "./media/characters/teh/front.svg",
  34592. extra: 1002/847,
  34593. bottom: 62/1064
  34594. }
  34595. },
  34596. },
  34597. [
  34598. {
  34599. name: "Normal",
  34600. height: math.unit(5 + 6/12, "feet"),
  34601. default: true
  34602. },
  34603. ]
  34604. ))
  34605. characterMakers.push(() => makeCharacter(
  34606. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34607. {
  34608. side: {
  34609. height: math.unit(6 + 1/12, "feet"),
  34610. weight: math.unit(204, "lb"),
  34611. name: "Side",
  34612. image: {
  34613. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34614. extra: 974/775,
  34615. bottom: 169/1143
  34616. }
  34617. },
  34618. sitting: {
  34619. height: math.unit(6 + 2/12, "feet"),
  34620. weight: math.unit(204, "lb"),
  34621. name: "Sitting",
  34622. image: {
  34623. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34624. extra: 1175/964,
  34625. bottom: 378/1553
  34626. }
  34627. },
  34628. },
  34629. [
  34630. {
  34631. name: "Normal",
  34632. height: math.unit(6 + 1/12, "feet"),
  34633. default: true
  34634. },
  34635. ]
  34636. ))
  34637. characterMakers.push(() => makeCharacter(
  34638. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34639. {
  34640. front: {
  34641. height: math.unit(6, "inches"),
  34642. name: "Front",
  34643. image: {
  34644. source: "./media/characters/tululi/front.svg",
  34645. extra: 1997/1876,
  34646. bottom: 20/2017
  34647. }
  34648. },
  34649. },
  34650. [
  34651. {
  34652. name: "Normal",
  34653. height: math.unit(6, "inches"),
  34654. default: true
  34655. },
  34656. ]
  34657. ))
  34658. characterMakers.push(() => makeCharacter(
  34659. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34660. {
  34661. front: {
  34662. height: math.unit(4 + 1/12, "feet"),
  34663. name: "Front",
  34664. image: {
  34665. source: "./media/characters/star/front.svg",
  34666. extra: 1493/1189,
  34667. bottom: 48/1541
  34668. }
  34669. },
  34670. },
  34671. [
  34672. {
  34673. name: "Normal",
  34674. height: math.unit(4 + 1/12, "feet"),
  34675. default: true
  34676. },
  34677. ]
  34678. ))
  34679. characterMakers.push(() => makeCharacter(
  34680. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34681. {
  34682. front: {
  34683. height: math.unit(6 + 3/12, "feet"),
  34684. name: "Front",
  34685. image: {
  34686. source: "./media/characters/comet/front.svg",
  34687. extra: 1681/1462,
  34688. bottom: 26/1707
  34689. }
  34690. },
  34691. },
  34692. [
  34693. {
  34694. name: "Normal",
  34695. height: math.unit(6 + 3/12, "feet"),
  34696. default: true
  34697. },
  34698. ]
  34699. ))
  34700. characterMakers.push(() => makeCharacter(
  34701. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34702. {
  34703. front: {
  34704. height: math.unit(950, "feet"),
  34705. name: "Front",
  34706. image: {
  34707. source: "./media/characters/vortex/front.svg",
  34708. extra: 1497/1434,
  34709. bottom: 56/1553
  34710. }
  34711. },
  34712. maw: {
  34713. height: math.unit(285, "feet"),
  34714. name: "Maw",
  34715. image: {
  34716. source: "./media/characters/vortex/maw.svg"
  34717. }
  34718. },
  34719. },
  34720. [
  34721. {
  34722. name: "Macro",
  34723. height: math.unit(950, "feet"),
  34724. default: true
  34725. },
  34726. ]
  34727. ))
  34728. characterMakers.push(() => makeCharacter(
  34729. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34730. {
  34731. front: {
  34732. height: math.unit(600, "feet"),
  34733. weight: math.unit(0.02, "grams"),
  34734. name: "Front",
  34735. image: {
  34736. source: "./media/characters/doodle/front.svg",
  34737. extra: 1578/1413,
  34738. bottom: 37/1615
  34739. }
  34740. },
  34741. },
  34742. [
  34743. {
  34744. name: "Macro",
  34745. height: math.unit(600, "feet"),
  34746. default: true
  34747. },
  34748. ]
  34749. ))
  34750. characterMakers.push(() => makeCharacter(
  34751. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34752. {
  34753. front: {
  34754. height: math.unit(6 + 6/12, "feet"),
  34755. name: "Front",
  34756. image: {
  34757. source: "./media/characters/jai/front.svg",
  34758. extra: 1645/1534,
  34759. bottom: 115/1760
  34760. }
  34761. },
  34762. },
  34763. [
  34764. {
  34765. name: "Normal",
  34766. height: math.unit(6 + 6/12, "feet"),
  34767. default: true
  34768. },
  34769. ]
  34770. ))
  34771. characterMakers.push(() => makeCharacter(
  34772. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34773. {
  34774. front: {
  34775. height: math.unit(6 + 8/12, "feet"),
  34776. name: "Front",
  34777. image: {
  34778. source: "./media/characters/pixel/front.svg",
  34779. extra: 1900/1735,
  34780. bottom: 63/1963
  34781. }
  34782. },
  34783. },
  34784. [
  34785. {
  34786. name: "Normal",
  34787. height: math.unit(6 + 8/12, "feet"),
  34788. default: true
  34789. },
  34790. ]
  34791. ))
  34792. characterMakers.push(() => makeCharacter(
  34793. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34794. {
  34795. front: {
  34796. height: math.unit(4 + 11/12, "feet"),
  34797. weight: math.unit(111, "lb"),
  34798. name: "Front",
  34799. image: {
  34800. source: "./media/characters/rhett/front.svg",
  34801. extra: 1682/1586,
  34802. bottom: 92/1774
  34803. }
  34804. },
  34805. },
  34806. [
  34807. {
  34808. name: "Mini",
  34809. height: math.unit(1 + 1/12, "feet")
  34810. },
  34811. {
  34812. name: "Normal",
  34813. height: math.unit(4 + 11/12, "feet"),
  34814. default: true
  34815. },
  34816. ]
  34817. ))
  34818. characterMakers.push(() => makeCharacter(
  34819. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34820. {
  34821. front: {
  34822. height: math.unit(3 + 3/12, "feet"),
  34823. name: "Front",
  34824. image: {
  34825. source: "./media/characters/penny/front.svg",
  34826. extra: 1406/1311,
  34827. bottom: 26/1432
  34828. }
  34829. },
  34830. },
  34831. [
  34832. {
  34833. name: "Normal",
  34834. height: math.unit(3 + 3/12, "feet"),
  34835. default: true
  34836. },
  34837. ]
  34838. ))
  34839. characterMakers.push(() => makeCharacter(
  34840. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34841. {
  34842. front: {
  34843. height: math.unit(4 + 11/12, "feet"),
  34844. name: "Front",
  34845. image: {
  34846. source: "./media/characters/monty/front.svg",
  34847. extra: 1479/1209,
  34848. bottom: 0/1479
  34849. }
  34850. },
  34851. },
  34852. [
  34853. {
  34854. name: "Normal",
  34855. height: math.unit(4 + 11/12, "feet"),
  34856. default: true
  34857. },
  34858. ]
  34859. ))
  34860. characterMakers.push(() => makeCharacter(
  34861. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34862. {
  34863. front: {
  34864. height: math.unit(8 + 4/12, "feet"),
  34865. name: "Front",
  34866. image: {
  34867. source: "./media/characters/sterling/front.svg",
  34868. extra: 1420/1236,
  34869. bottom: 27/1447
  34870. }
  34871. },
  34872. },
  34873. [
  34874. {
  34875. name: "Normal",
  34876. height: math.unit(8 + 4/12, "feet"),
  34877. default: true
  34878. },
  34879. ]
  34880. ))
  34881. characterMakers.push(() => makeCharacter(
  34882. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34883. {
  34884. front: {
  34885. height: math.unit(15, "feet"),
  34886. name: "Front",
  34887. image: {
  34888. source: "./media/characters/marble/front.svg",
  34889. extra: 973/937,
  34890. bottom: 32/1005
  34891. }
  34892. },
  34893. },
  34894. [
  34895. {
  34896. name: "Normal",
  34897. height: math.unit(15, "feet"),
  34898. default: true
  34899. },
  34900. ]
  34901. ))
  34902. characterMakers.push(() => makeCharacter(
  34903. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34904. {
  34905. front: {
  34906. height: math.unit(3, "inches"),
  34907. name: "Front",
  34908. image: {
  34909. source: "./media/characters/powder/front.svg",
  34910. extra: 1504/1334,
  34911. bottom: 518/2022
  34912. }
  34913. },
  34914. },
  34915. [
  34916. {
  34917. name: "Normal",
  34918. height: math.unit(3, "inches"),
  34919. default: true
  34920. },
  34921. ]
  34922. ))
  34923. characterMakers.push(() => makeCharacter(
  34924. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34925. {
  34926. front: {
  34927. height: math.unit(4 + 5/12, "feet"),
  34928. name: "Front",
  34929. image: {
  34930. source: "./media/characters/joey-raccoon/front.svg",
  34931. extra: 1273/1197,
  34932. bottom: 0/1273
  34933. }
  34934. },
  34935. },
  34936. [
  34937. {
  34938. name: "Normal",
  34939. height: math.unit(4 + 5/12, "feet"),
  34940. default: true
  34941. },
  34942. ]
  34943. ))
  34944. characterMakers.push(() => makeCharacter(
  34945. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34946. {
  34947. front: {
  34948. height: math.unit(8 + 4/12, "feet"),
  34949. name: "Front",
  34950. image: {
  34951. source: "./media/characters/vick/front.svg",
  34952. extra: 2187/2118,
  34953. bottom: 47/2234
  34954. }
  34955. },
  34956. },
  34957. [
  34958. {
  34959. name: "Normal",
  34960. height: math.unit(8 + 4/12, "feet"),
  34961. default: true
  34962. },
  34963. ]
  34964. ))
  34965. characterMakers.push(() => makeCharacter(
  34966. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34967. {
  34968. front: {
  34969. height: math.unit(5 + 5/12, "feet"),
  34970. name: "Front",
  34971. image: {
  34972. source: "./media/characters/mitsy/front.svg",
  34973. extra: 1842/1695,
  34974. bottom: 0/1842
  34975. }
  34976. },
  34977. },
  34978. [
  34979. {
  34980. name: "Normal",
  34981. height: math.unit(5 + 5/12, "feet"),
  34982. default: true
  34983. },
  34984. ]
  34985. ))
  34986. characterMakers.push(() => makeCharacter(
  34987. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34988. {
  34989. front: {
  34990. height: math.unit(6 + 3/12, "feet"),
  34991. name: "Front",
  34992. image: {
  34993. source: "./media/characters/silvy/front.svg",
  34994. extra: 1995/1836,
  34995. bottom: 225/2220
  34996. }
  34997. },
  34998. },
  34999. [
  35000. {
  35001. name: "Normal",
  35002. height: math.unit(6 + 3/12, "feet"),
  35003. default: true
  35004. },
  35005. ]
  35006. ))
  35007. characterMakers.push(() => makeCharacter(
  35008. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35009. {
  35010. front: {
  35011. height: math.unit(3 + 8/12, "feet"),
  35012. name: "Front",
  35013. image: {
  35014. source: "./media/characters/rodney/front.svg",
  35015. extra: 1956/1747,
  35016. bottom: 31/1987
  35017. }
  35018. },
  35019. frontDressed: {
  35020. height: math.unit(2.9, "feet"),
  35021. name: "Front (Dressed)",
  35022. image: {
  35023. source: "./media/characters/rodney/front-dressed.svg",
  35024. extra: 1382/1241,
  35025. bottom: 385/1767
  35026. }
  35027. },
  35028. },
  35029. [
  35030. {
  35031. name: "Normal",
  35032. height: math.unit(3 + 8/12, "feet"),
  35033. default: true
  35034. },
  35035. ]
  35036. ))
  35037. characterMakers.push(() => makeCharacter(
  35038. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35039. {
  35040. front: {
  35041. height: math.unit(5 + 9/12, "feet"),
  35042. weight: math.unit(194, "lbs"),
  35043. name: "Front",
  35044. image: {
  35045. source: "./media/characters/zakail-sudekai/front.svg",
  35046. extra: 2696/2533,
  35047. bottom: 248/2944
  35048. }
  35049. },
  35050. maw: {
  35051. height: math.unit(1.35, "feet"),
  35052. name: "Maw",
  35053. image: {
  35054. source: "./media/characters/zakail-sudekai/maw.svg"
  35055. }
  35056. },
  35057. },
  35058. [
  35059. {
  35060. name: "Normal",
  35061. height: math.unit(5 + 9/12, "feet"),
  35062. default: true
  35063. },
  35064. ]
  35065. ))
  35066. characterMakers.push(() => makeCharacter(
  35067. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35068. {
  35069. front: {
  35070. height: math.unit(8 + 4/12, "feet"),
  35071. weight: math.unit(1200, "lb"),
  35072. name: "Front",
  35073. image: {
  35074. source: "./media/characters/eleanor/front.svg",
  35075. extra: 1226/1192,
  35076. bottom: 52/1278
  35077. }
  35078. },
  35079. back: {
  35080. height: math.unit(8 + 4/12, "feet"),
  35081. weight: math.unit(1200, "lb"),
  35082. name: "Back",
  35083. image: {
  35084. source: "./media/characters/eleanor/back.svg",
  35085. extra: 1242/1184,
  35086. bottom: 60/1302
  35087. }
  35088. },
  35089. head: {
  35090. height: math.unit(2.62, "feet"),
  35091. name: "Head",
  35092. image: {
  35093. source: "./media/characters/eleanor/head.svg"
  35094. }
  35095. },
  35096. },
  35097. [
  35098. {
  35099. name: "Normal",
  35100. height: math.unit(8 + 4/12, "feet"),
  35101. default: true
  35102. },
  35103. ]
  35104. ))
  35105. characterMakers.push(() => makeCharacter(
  35106. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35107. {
  35108. front: {
  35109. height: math.unit(8 + 4/12, "feet"),
  35110. weight: math.unit(750, "lb"),
  35111. name: "Front",
  35112. image: {
  35113. source: "./media/characters/tanya/front.svg",
  35114. extra: 1749/1615,
  35115. bottom: 33/1782
  35116. }
  35117. },
  35118. },
  35119. [
  35120. {
  35121. name: "Normal",
  35122. height: math.unit(8 + 4/12, "feet"),
  35123. default: true
  35124. },
  35125. ]
  35126. ))
  35127. characterMakers.push(() => makeCharacter(
  35128. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35129. {
  35130. front: {
  35131. height: math.unit(5, "feet"),
  35132. weight: math.unit(225, "lb"),
  35133. name: "Front",
  35134. image: {
  35135. source: "./media/characters/cindy/front.svg",
  35136. extra: 1320/1250,
  35137. bottom: 42/1362
  35138. }
  35139. },
  35140. frontDressed: {
  35141. height: math.unit(5, "feet"),
  35142. weight: math.unit(225, "lb"),
  35143. name: "Front (Dressed)",
  35144. image: {
  35145. source: "./media/characters/cindy/front-dressed.svg",
  35146. extra: 1320/1250,
  35147. bottom: 42/1362
  35148. }
  35149. },
  35150. back: {
  35151. height: math.unit(5, "feet"),
  35152. weight: math.unit(225, "lb"),
  35153. name: "Back",
  35154. image: {
  35155. source: "./media/characters/cindy/back.svg",
  35156. extra: 1384/1346,
  35157. bottom: 14/1398
  35158. }
  35159. },
  35160. },
  35161. [
  35162. {
  35163. name: "Normal",
  35164. height: math.unit(5, "feet"),
  35165. default: true
  35166. },
  35167. ]
  35168. ))
  35169. characterMakers.push(() => makeCharacter(
  35170. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35171. {
  35172. front: {
  35173. height: math.unit(6 + 9/12, "feet"),
  35174. weight: math.unit(440, "lb"),
  35175. name: "Front",
  35176. image: {
  35177. source: "./media/characters/wilbur-owen/front.svg",
  35178. extra: 1575/1448,
  35179. bottom: 72/1647
  35180. }
  35181. },
  35182. back: {
  35183. height: math.unit(6 + 9/12, "feet"),
  35184. weight: math.unit(440, "lb"),
  35185. name: "Back",
  35186. image: {
  35187. source: "./media/characters/wilbur-owen/back.svg",
  35188. extra: 1578/1445,
  35189. bottom: 36/1614
  35190. }
  35191. },
  35192. },
  35193. [
  35194. {
  35195. name: "Normal",
  35196. height: math.unit(6 + 9/12, "feet"),
  35197. default: true
  35198. },
  35199. ]
  35200. ))
  35201. characterMakers.push(() => makeCharacter(
  35202. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35203. {
  35204. front: {
  35205. height: math.unit(6 + 5/12, "feet"),
  35206. weight: math.unit(650, "lb"),
  35207. name: "Front",
  35208. image: {
  35209. source: "./media/characters/keegan/front.svg",
  35210. extra: 2387/2198,
  35211. bottom: 33/2420
  35212. }
  35213. },
  35214. side: {
  35215. height: math.unit(6 + 5/12, "feet"),
  35216. weight: math.unit(650, "lb"),
  35217. name: "Side",
  35218. image: {
  35219. source: "./media/characters/keegan/side.svg",
  35220. extra: 2390/2202,
  35221. bottom: 47/2437
  35222. }
  35223. },
  35224. back: {
  35225. height: math.unit(6 + 5/12, "feet"),
  35226. weight: math.unit(650, "lb"),
  35227. name: "Back",
  35228. image: {
  35229. source: "./media/characters/keegan/back.svg",
  35230. extra: 2418/2268,
  35231. bottom: 15/2433
  35232. }
  35233. },
  35234. frontSfw: {
  35235. height: math.unit(6 + 5/12, "feet"),
  35236. weight: math.unit(650, "lb"),
  35237. name: "Front (SFW)",
  35238. image: {
  35239. source: "./media/characters/keegan/front-sfw.svg",
  35240. extra: 2387/2198,
  35241. bottom: 33/2420
  35242. }
  35243. },
  35244. beans: {
  35245. height: math.unit(1.85, "feet"),
  35246. name: "Beans",
  35247. image: {
  35248. source: "./media/characters/keegan/beans.svg"
  35249. }
  35250. },
  35251. },
  35252. [
  35253. {
  35254. name: "Normal",
  35255. height: math.unit(6 + 5/12, "feet"),
  35256. default: true
  35257. },
  35258. ]
  35259. ))
  35260. characterMakers.push(() => makeCharacter(
  35261. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35262. {
  35263. front: {
  35264. height: math.unit(9, "feet"),
  35265. name: "Front",
  35266. image: {
  35267. source: "./media/characters/colton/front.svg",
  35268. extra: 1589/1326,
  35269. bottom: 139/1728
  35270. }
  35271. },
  35272. },
  35273. [
  35274. {
  35275. name: "Normal",
  35276. height: math.unit(9, "feet"),
  35277. default: true
  35278. },
  35279. ]
  35280. ))
  35281. characterMakers.push(() => makeCharacter(
  35282. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35283. {
  35284. front: {
  35285. height: math.unit(2 + 9/12, "feet"),
  35286. name: "Front",
  35287. image: {
  35288. source: "./media/characters/bora/front.svg",
  35289. extra: 1265/1250,
  35290. bottom: 24/1289
  35291. }
  35292. },
  35293. },
  35294. [
  35295. {
  35296. name: "Normal",
  35297. height: math.unit(2 + 9/12, "feet"),
  35298. default: true
  35299. },
  35300. ]
  35301. ))
  35302. characterMakers.push(() => makeCharacter(
  35303. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35304. {
  35305. front: {
  35306. height: math.unit(8, "feet"),
  35307. name: "Front",
  35308. image: {
  35309. source: "./media/characters/myu-myu/front.svg",
  35310. extra: 1949/1857,
  35311. bottom: 90/2039
  35312. }
  35313. },
  35314. },
  35315. [
  35316. {
  35317. name: "Normal",
  35318. height: math.unit(8, "feet"),
  35319. default: true
  35320. },
  35321. {
  35322. name: "Big",
  35323. height: math.unit(15, "feet")
  35324. },
  35325. {
  35326. name: "BIG",
  35327. height: math.unit(25, "feet")
  35328. },
  35329. ]
  35330. ))
  35331. characterMakers.push(() => makeCharacter(
  35332. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35333. {
  35334. side: {
  35335. height: math.unit(7 + 5/12, "feet"),
  35336. weight: math.unit(2800, "lb"),
  35337. name: "Side",
  35338. image: {
  35339. source: "./media/characters/haloren/side.svg",
  35340. extra: 1793/409,
  35341. bottom: 59/1852
  35342. }
  35343. },
  35344. frontPaw: {
  35345. height: math.unit(2.36, "feet"),
  35346. name: "Front paw",
  35347. image: {
  35348. source: "./media/characters/haloren/front-paw.svg"
  35349. }
  35350. },
  35351. hindPaw: {
  35352. height: math.unit(3.18, "feet"),
  35353. name: "Hind paw",
  35354. image: {
  35355. source: "./media/characters/haloren/hind-paw.svg"
  35356. }
  35357. },
  35358. maw: {
  35359. height: math.unit(5.05, "feet"),
  35360. name: "Maw",
  35361. image: {
  35362. source: "./media/characters/haloren/maw.svg"
  35363. }
  35364. },
  35365. dick: {
  35366. height: math.unit(2.90, "feet"),
  35367. name: "Dick",
  35368. image: {
  35369. source: "./media/characters/haloren/dick.svg"
  35370. }
  35371. },
  35372. },
  35373. [
  35374. {
  35375. name: "Normal",
  35376. height: math.unit(7 + 5/12, "feet"),
  35377. default: true
  35378. },
  35379. {
  35380. name: "Enhanced",
  35381. height: math.unit(14 + 3/12, "feet")
  35382. },
  35383. ]
  35384. ))
  35385. characterMakers.push(() => makeCharacter(
  35386. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35387. {
  35388. front: {
  35389. height: math.unit(171, "cm"),
  35390. name: "Front",
  35391. image: {
  35392. source: "./media/characters/kimmy/front.svg",
  35393. extra: 1491/1435,
  35394. bottom: 53/1544
  35395. }
  35396. },
  35397. },
  35398. [
  35399. {
  35400. name: "Small",
  35401. height: math.unit(9, "cm")
  35402. },
  35403. {
  35404. name: "Normal",
  35405. height: math.unit(171, "cm"),
  35406. default: true
  35407. },
  35408. ]
  35409. ))
  35410. characterMakers.push(() => makeCharacter(
  35411. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35412. {
  35413. front: {
  35414. height: math.unit(8, "feet"),
  35415. weight: math.unit(300, "lb"),
  35416. name: "Front",
  35417. image: {
  35418. source: "./media/characters/galeboomer/front.svg",
  35419. extra: 4651/4415,
  35420. bottom: 162/4813
  35421. }
  35422. },
  35423. back: {
  35424. height: math.unit(8, "feet"),
  35425. weight: math.unit(300, "lb"),
  35426. name: "Back",
  35427. image: {
  35428. source: "./media/characters/galeboomer/back.svg",
  35429. extra: 4544/4314,
  35430. bottom: 16/4560
  35431. }
  35432. },
  35433. frontAlt: {
  35434. height: math.unit(8, "feet"),
  35435. weight: math.unit(300, "lb"),
  35436. name: "Front (Alt)",
  35437. image: {
  35438. source: "./media/characters/galeboomer/front-alt.svg",
  35439. extra: 4458/4228,
  35440. bottom: 68/4526
  35441. }
  35442. },
  35443. maw: {
  35444. height: math.unit(1.2, "feet"),
  35445. name: "Maw",
  35446. image: {
  35447. source: "./media/characters/galeboomer/maw.svg"
  35448. }
  35449. },
  35450. },
  35451. [
  35452. {
  35453. name: "Normal",
  35454. height: math.unit(8, "feet"),
  35455. default: true
  35456. },
  35457. ]
  35458. ))
  35459. characterMakers.push(() => makeCharacter(
  35460. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35461. {
  35462. front: {
  35463. height: math.unit(5 + 9/12, "feet"),
  35464. weight: math.unit(120, "lb"),
  35465. name: "Front",
  35466. image: {
  35467. source: "./media/characters/chyr/front.svg",
  35468. extra: 1323/1254,
  35469. bottom: 63/1386
  35470. }
  35471. },
  35472. back: {
  35473. height: math.unit(5 + 9/12, "feet"),
  35474. weight: math.unit(120, "lb"),
  35475. name: "Back",
  35476. image: {
  35477. source: "./media/characters/chyr/back.svg",
  35478. extra: 1323/1252,
  35479. bottom: 48/1371
  35480. }
  35481. },
  35482. },
  35483. [
  35484. {
  35485. name: "Normal",
  35486. height: math.unit(5 + 9/12, "feet"),
  35487. default: true
  35488. },
  35489. ]
  35490. ))
  35491. characterMakers.push(() => makeCharacter(
  35492. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35493. {
  35494. front: {
  35495. height: math.unit(7, "feet"),
  35496. weight: math.unit(310, "lb"),
  35497. name: "Front",
  35498. image: {
  35499. source: "./media/characters/solarus/front.svg",
  35500. extra: 2415/2021,
  35501. bottom: 103/2518
  35502. }
  35503. },
  35504. back: {
  35505. height: math.unit(7, "feet"),
  35506. weight: math.unit(310, "lb"),
  35507. name: "Back",
  35508. image: {
  35509. source: "./media/characters/solarus/back.svg",
  35510. extra: 2463/2089,
  35511. bottom: 79/2542
  35512. }
  35513. },
  35514. },
  35515. [
  35516. {
  35517. name: "Normal",
  35518. height: math.unit(7, "feet"),
  35519. default: true
  35520. },
  35521. ]
  35522. ))
  35523. characterMakers.push(() => makeCharacter(
  35524. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35525. {
  35526. front: {
  35527. height: math.unit(16, "feet"),
  35528. name: "Front",
  35529. image: {
  35530. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35531. extra: 1844/1780,
  35532. bottom: 58/1902
  35533. }
  35534. },
  35535. },
  35536. [
  35537. {
  35538. name: "Normal",
  35539. height: math.unit(16, "feet"),
  35540. default: true
  35541. },
  35542. ]
  35543. ))
  35544. characterMakers.push(() => makeCharacter(
  35545. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35546. {
  35547. front: {
  35548. height: math.unit(11 + 6/12, "feet"),
  35549. weight: math.unit(1366, "lb"),
  35550. name: "Front",
  35551. image: {
  35552. source: "./media/characters/lexor/front.svg",
  35553. extra: 1560/1481,
  35554. bottom: 211/1771
  35555. }
  35556. },
  35557. back: {
  35558. height: math.unit(11 + 6/12, "feet"),
  35559. weight: math.unit(1366, "lb"),
  35560. name: "Back",
  35561. image: {
  35562. source: "./media/characters/lexor/back.svg",
  35563. extra: 1614/1533,
  35564. bottom: 76/1690
  35565. }
  35566. },
  35567. maw: {
  35568. height: math.unit(3, "feet"),
  35569. name: "Maw",
  35570. image: {
  35571. source: "./media/characters/lexor/maw.svg"
  35572. }
  35573. },
  35574. dick: {
  35575. height: math.unit(2.59, "feet"),
  35576. name: "Dick",
  35577. image: {
  35578. source: "./media/characters/lexor/dick.svg"
  35579. }
  35580. },
  35581. },
  35582. [
  35583. {
  35584. name: "Normal",
  35585. height: math.unit(11 + 6/12, "feet"),
  35586. default: true
  35587. },
  35588. ]
  35589. ))
  35590. characterMakers.push(() => makeCharacter(
  35591. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35592. {
  35593. front: {
  35594. height: math.unit(5 + 8/12, "feet"),
  35595. name: "Front",
  35596. image: {
  35597. source: "./media/characters/magnum/front.svg",
  35598. extra: 942/855,
  35599. bottom: 26/968
  35600. }
  35601. },
  35602. },
  35603. [
  35604. {
  35605. name: "Normal",
  35606. height: math.unit(5 + 8/12, "feet"),
  35607. default: true
  35608. },
  35609. ]
  35610. ))
  35611. characterMakers.push(() => makeCharacter(
  35612. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35613. {
  35614. front: {
  35615. height: math.unit(18 + 4/12, "feet"),
  35616. weight: math.unit(1500, "kg"),
  35617. name: "Front",
  35618. image: {
  35619. source: "./media/characters/solas-sharpsman/front.svg",
  35620. extra: 1698/1589,
  35621. bottom: 0/1698
  35622. }
  35623. },
  35624. },
  35625. [
  35626. {
  35627. name: "Normal",
  35628. height: math.unit(18 + 4/12, "feet"),
  35629. default: true
  35630. },
  35631. ]
  35632. ))
  35633. characterMakers.push(() => makeCharacter(
  35634. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35635. {
  35636. front: {
  35637. height: math.unit(5 + 5/12, "feet"),
  35638. weight: math.unit(180, "lb"),
  35639. name: "Front",
  35640. image: {
  35641. source: "./media/characters/october/front.svg",
  35642. extra: 1800/1650,
  35643. bottom: 0/1800
  35644. }
  35645. },
  35646. frontNsfw: {
  35647. height: math.unit(5 + 5/12, "feet"),
  35648. weight: math.unit(180, "lb"),
  35649. name: "Front (NSFW)",
  35650. image: {
  35651. source: "./media/characters/october/front-nsfw.svg",
  35652. extra: 1392/1307,
  35653. bottom: 42/1434
  35654. }
  35655. },
  35656. },
  35657. [
  35658. {
  35659. name: "Normal",
  35660. height: math.unit(5 + 5/12, "feet"),
  35661. default: true
  35662. },
  35663. ]
  35664. ))
  35665. characterMakers.push(() => makeCharacter(
  35666. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35667. {
  35668. front: {
  35669. height: math.unit(8 + 6/12, "feet"),
  35670. name: "Front",
  35671. image: {
  35672. source: "./media/characters/essynkardi/front.svg",
  35673. extra: 1914/1846,
  35674. bottom: 22/1936
  35675. }
  35676. },
  35677. },
  35678. [
  35679. {
  35680. name: "Normal",
  35681. height: math.unit(8 + 6/12, "feet"),
  35682. default: true
  35683. },
  35684. ]
  35685. ))
  35686. characterMakers.push(() => makeCharacter(
  35687. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35688. {
  35689. front: {
  35690. height: math.unit(6 + 6/12, "feet"),
  35691. weight: math.unit(7, "lb"),
  35692. name: "Front",
  35693. image: {
  35694. source: "./media/characters/icky/front.svg",
  35695. extra: 813/782,
  35696. bottom: 66/879
  35697. }
  35698. },
  35699. back: {
  35700. height: math.unit(6 + 6/12, "feet"),
  35701. weight: math.unit(7, "lb"),
  35702. name: "Back",
  35703. image: {
  35704. source: "./media/characters/icky/back.svg",
  35705. extra: 754/735,
  35706. bottom: 56/810
  35707. }
  35708. },
  35709. },
  35710. [
  35711. {
  35712. name: "Normal",
  35713. height: math.unit(6 + 6/12, "feet"),
  35714. default: true
  35715. },
  35716. ]
  35717. ))
  35718. characterMakers.push(() => makeCharacter(
  35719. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35720. {
  35721. front: {
  35722. height: math.unit(15, "feet"),
  35723. name: "Front",
  35724. image: {
  35725. source: "./media/characters/rojas/front.svg",
  35726. extra: 1462/1408,
  35727. bottom: 95/1557
  35728. }
  35729. },
  35730. back: {
  35731. height: math.unit(15, "feet"),
  35732. name: "Back",
  35733. image: {
  35734. source: "./media/characters/rojas/back.svg",
  35735. extra: 1023/954,
  35736. bottom: 28/1051
  35737. }
  35738. },
  35739. },
  35740. [
  35741. {
  35742. name: "Normal",
  35743. height: math.unit(15, "feet"),
  35744. default: true
  35745. },
  35746. ]
  35747. ))
  35748. characterMakers.push(() => makeCharacter(
  35749. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35750. {
  35751. frontHuman: {
  35752. height: math.unit(5 + 7/12, "feet"),
  35753. name: "Front (Human)",
  35754. image: {
  35755. source: "./media/characters/alek-dryagan/front-human.svg",
  35756. extra: 1687/1667,
  35757. bottom: 69/1756
  35758. }
  35759. },
  35760. backHuman: {
  35761. height: math.unit(5 + 7/12, "feet"),
  35762. name: "Back (Human)",
  35763. image: {
  35764. source: "./media/characters/alek-dryagan/back-human.svg",
  35765. extra: 1670/1649,
  35766. bottom: 65/1735
  35767. }
  35768. },
  35769. frontDemi: {
  35770. height: math.unit(65, "feet"),
  35771. name: "Front (Demi)",
  35772. image: {
  35773. source: "./media/characters/alek-dryagan/front-demi.svg",
  35774. extra: 1669/1642,
  35775. bottom: 49/1718
  35776. }
  35777. },
  35778. backDemi: {
  35779. height: math.unit(65, "feet"),
  35780. name: "Back (Demi)",
  35781. image: {
  35782. source: "./media/characters/alek-dryagan/back-demi.svg",
  35783. extra: 1658/1637,
  35784. bottom: 40/1698
  35785. }
  35786. },
  35787. mawHuman: {
  35788. height: math.unit(0.3, "feet"),
  35789. name: "Maw (Human)",
  35790. image: {
  35791. source: "./media/characters/alek-dryagan/maw-human.svg"
  35792. }
  35793. },
  35794. mawDemi: {
  35795. height: math.unit(3.8, "feet"),
  35796. name: "Maw (Demi)",
  35797. image: {
  35798. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35799. }
  35800. },
  35801. },
  35802. [
  35803. {
  35804. name: "Normal",
  35805. height: math.unit(5 + 7/12, "feet"),
  35806. default: true
  35807. },
  35808. ]
  35809. ))
  35810. characterMakers.push(() => makeCharacter(
  35811. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35812. {
  35813. frontHuman: {
  35814. height: math.unit(5 + 2/12, "feet"),
  35815. name: "Front (Human)",
  35816. image: {
  35817. source: "./media/characters/gen/front-human.svg",
  35818. extra: 1627/1538,
  35819. bottom: 71/1698
  35820. }
  35821. },
  35822. backHuman: {
  35823. height: math.unit(5 + 2/12, "feet"),
  35824. name: "Back (Human)",
  35825. image: {
  35826. source: "./media/characters/gen/back-human.svg",
  35827. extra: 1638/1548,
  35828. bottom: 69/1707
  35829. }
  35830. },
  35831. frontDemi: {
  35832. height: math.unit(5 + 2/12, "feet"),
  35833. name: "Front (Demi)",
  35834. image: {
  35835. source: "./media/characters/gen/front-demi.svg",
  35836. extra: 1627/1538,
  35837. bottom: 71/1698
  35838. }
  35839. },
  35840. backDemi: {
  35841. height: math.unit(5 + 2/12, "feet"),
  35842. name: "Back (Demi)",
  35843. image: {
  35844. source: "./media/characters/gen/back-demi.svg",
  35845. extra: 1638/1548,
  35846. bottom: 69/1707
  35847. }
  35848. },
  35849. },
  35850. [
  35851. {
  35852. name: "Normal",
  35853. height: math.unit(5 + 2/12, "feet"),
  35854. default: true
  35855. },
  35856. ]
  35857. ))
  35858. characterMakers.push(() => makeCharacter(
  35859. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35860. {
  35861. frontImp: {
  35862. height: math.unit(1 + 11/12, "feet"),
  35863. name: "Front (Imp)",
  35864. image: {
  35865. source: "./media/characters/max-kobold/front-imp.svg",
  35866. extra: 1238/1134,
  35867. bottom: 81/1319
  35868. }
  35869. },
  35870. backImp: {
  35871. height: math.unit(1 + 11/12, "feet"),
  35872. name: "Back (Imp)",
  35873. image: {
  35874. source: "./media/characters/max-kobold/back-imp.svg",
  35875. extra: 1334/1175,
  35876. bottom: 34/1368
  35877. }
  35878. },
  35879. frontDemi: {
  35880. height: math.unit(5 + 9/12, "feet"),
  35881. name: "Front (Demi)",
  35882. image: {
  35883. source: "./media/characters/max-kobold/front-demi.svg",
  35884. extra: 1715/1685,
  35885. bottom: 54/1769
  35886. }
  35887. },
  35888. backDemi: {
  35889. height: math.unit(5 + 9/12, "feet"),
  35890. name: "Back (Demi)",
  35891. image: {
  35892. source: "./media/characters/max-kobold/back-demi.svg",
  35893. extra: 1752/1729,
  35894. bottom: 41/1793
  35895. }
  35896. },
  35897. handImp: {
  35898. height: math.unit(0.45, "feet"),
  35899. name: "Hand (Imp)",
  35900. image: {
  35901. source: "./media/characters/max-kobold/hand.svg"
  35902. }
  35903. },
  35904. pawImp: {
  35905. height: math.unit(0.46, "feet"),
  35906. name: "Paw (Imp)",
  35907. image: {
  35908. source: "./media/characters/max-kobold/paw.svg"
  35909. }
  35910. },
  35911. handDemi: {
  35912. height: math.unit(0.80, "feet"),
  35913. name: "Hand (Demi)",
  35914. image: {
  35915. source: "./media/characters/max-kobold/hand.svg"
  35916. }
  35917. },
  35918. pawDemi: {
  35919. height: math.unit(1.1, "feet"),
  35920. name: "Paw (Demi)",
  35921. image: {
  35922. source: "./media/characters/max-kobold/paw.svg"
  35923. }
  35924. },
  35925. headImp: {
  35926. height: math.unit(1.33, "feet"),
  35927. name: "Head (Imp)",
  35928. image: {
  35929. source: "./media/characters/max-kobold/head-imp.svg"
  35930. }
  35931. },
  35932. mawImp: {
  35933. height: math.unit(0.75, "feet"),
  35934. name: "Maw (Imp)",
  35935. image: {
  35936. source: "./media/characters/max-kobold/maw-imp.svg"
  35937. }
  35938. },
  35939. mawDemi: {
  35940. height: math.unit(0.42, "feet"),
  35941. name: "Maw (Demi)",
  35942. image: {
  35943. source: "./media/characters/max-kobold/maw-demi.svg"
  35944. }
  35945. },
  35946. },
  35947. [
  35948. {
  35949. name: "Normal",
  35950. height: math.unit(1 + 11/12, "feet"),
  35951. default: true
  35952. },
  35953. ]
  35954. ))
  35955. characterMakers.push(() => makeCharacter(
  35956. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35957. {
  35958. front: {
  35959. height: math.unit(7 + 5/12, "feet"),
  35960. name: "Front",
  35961. image: {
  35962. source: "./media/characters/carbon/front.svg",
  35963. extra: 1754/1689,
  35964. bottom: 65/1819
  35965. }
  35966. },
  35967. back: {
  35968. height: math.unit(7 + 5/12, "feet"),
  35969. name: "Back",
  35970. image: {
  35971. source: "./media/characters/carbon/back.svg",
  35972. extra: 1762/1695,
  35973. bottom: 24/1786
  35974. }
  35975. },
  35976. frontGigantamax: {
  35977. height: math.unit(150, "feet"),
  35978. name: "Front (Gigantamax)",
  35979. image: {
  35980. source: "./media/characters/carbon/front-gigantamax.svg",
  35981. extra: 1826/1669,
  35982. bottom: 59/1885
  35983. }
  35984. },
  35985. backGigantamax: {
  35986. height: math.unit(150, "feet"),
  35987. name: "Back (Gigantamax)",
  35988. image: {
  35989. source: "./media/characters/carbon/back-gigantamax.svg",
  35990. extra: 1796/1653,
  35991. bottom: 53/1849
  35992. }
  35993. },
  35994. maw: {
  35995. height: math.unit(0.48, "feet"),
  35996. name: "Maw",
  35997. image: {
  35998. source: "./media/characters/carbon/maw.svg"
  35999. }
  36000. },
  36001. mawGigantamax: {
  36002. height: math.unit(7.5, "feet"),
  36003. name: "Maw (Gigantamax)",
  36004. image: {
  36005. source: "./media/characters/carbon/maw-gigantamax.svg"
  36006. }
  36007. },
  36008. },
  36009. [
  36010. {
  36011. name: "Normal",
  36012. height: math.unit(7 + 5/12, "feet"),
  36013. default: true
  36014. },
  36015. ]
  36016. ))
  36017. characterMakers.push(() => makeCharacter(
  36018. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36019. {
  36020. front: {
  36021. height: math.unit(6, "feet"),
  36022. name: "Front",
  36023. image: {
  36024. source: "./media/characters/maverick/front.svg",
  36025. extra: 1672/1661,
  36026. bottom: 85/1757
  36027. }
  36028. },
  36029. back: {
  36030. height: math.unit(6, "feet"),
  36031. name: "Back",
  36032. image: {
  36033. source: "./media/characters/maverick/back.svg",
  36034. extra: 1642/1631,
  36035. bottom: 38/1680
  36036. }
  36037. },
  36038. },
  36039. [
  36040. {
  36041. name: "Normal",
  36042. height: math.unit(6, "feet"),
  36043. default: true
  36044. },
  36045. ]
  36046. ))
  36047. characterMakers.push(() => makeCharacter(
  36048. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36049. {
  36050. front: {
  36051. height: math.unit(15, "feet"),
  36052. weight: math.unit(615, "lb"),
  36053. name: "Front",
  36054. image: {
  36055. source: "./media/characters/grockle/front.svg",
  36056. extra: 1535/1427,
  36057. bottom: 56/1591
  36058. }
  36059. },
  36060. },
  36061. [
  36062. {
  36063. name: "Normal",
  36064. height: math.unit(15, "feet"),
  36065. default: true
  36066. },
  36067. {
  36068. name: "Large",
  36069. height: math.unit(150, "feet")
  36070. },
  36071. {
  36072. name: "Macro",
  36073. height: math.unit(1876, "feet")
  36074. },
  36075. {
  36076. name: "Mega Macro",
  36077. height: math.unit(121940, "feet")
  36078. },
  36079. {
  36080. name: "Giga Macro",
  36081. height: math.unit(750, "km")
  36082. },
  36083. {
  36084. name: "Tera Macro",
  36085. height: math.unit(750000, "km")
  36086. },
  36087. {
  36088. name: "Galactic",
  36089. height: math.unit(1.4e5, "km")
  36090. },
  36091. {
  36092. name: "Godlike",
  36093. height: math.unit(9.8e280, "galaxies")
  36094. },
  36095. ]
  36096. ))
  36097. characterMakers.push(() => makeCharacter(
  36098. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36099. {
  36100. front: {
  36101. height: math.unit(11, "meters"),
  36102. weight: math.unit(20, "tonnes"),
  36103. name: "Front",
  36104. image: {
  36105. source: "./media/characters/alistair/front.svg",
  36106. extra: 1265/1009,
  36107. bottom: 93/1358
  36108. }
  36109. },
  36110. },
  36111. [
  36112. {
  36113. name: "Normal",
  36114. height: math.unit(11, "meters"),
  36115. default: true
  36116. },
  36117. ]
  36118. ))
  36119. characterMakers.push(() => makeCharacter(
  36120. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36121. {
  36122. front: {
  36123. height: math.unit(5 + 8/12, "feet"),
  36124. name: "Front",
  36125. image: {
  36126. source: "./media/characters/haruka/front.svg",
  36127. extra: 2012/1952,
  36128. bottom: 0/2012
  36129. }
  36130. },
  36131. },
  36132. [
  36133. {
  36134. name: "Normal",
  36135. height: math.unit(5 + 8/12, "feet"),
  36136. default: true
  36137. },
  36138. ]
  36139. ))
  36140. characterMakers.push(() => makeCharacter(
  36141. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36142. {
  36143. back: {
  36144. height: math.unit(9, "feet"),
  36145. name: "Back",
  36146. image: {
  36147. source: "./media/characters/vivian-sylveon/back.svg",
  36148. extra: 1853/1714,
  36149. bottom: 0/1853
  36150. }
  36151. },
  36152. },
  36153. [
  36154. {
  36155. name: "Normal",
  36156. height: math.unit(9, "feet"),
  36157. default: true
  36158. },
  36159. {
  36160. name: "Macro",
  36161. height: math.unit(500, "feet")
  36162. },
  36163. {
  36164. name: "Megamacro",
  36165. height: math.unit(600, "miles")
  36166. },
  36167. {
  36168. name: "Gigamacro",
  36169. height: math.unit(30000, "miles")
  36170. },
  36171. ]
  36172. ))
  36173. characterMakers.push(() => makeCharacter(
  36174. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36175. {
  36176. anthro: {
  36177. height: math.unit(5 + 10/12, "feet"),
  36178. weight: math.unit(100, "lb"),
  36179. name: "Anthro",
  36180. image: {
  36181. source: "./media/characters/daiki/anthro.svg",
  36182. extra: 1115/1027,
  36183. bottom: 69/1184
  36184. }
  36185. },
  36186. feral: {
  36187. height: math.unit(200, "feet"),
  36188. name: "Feral",
  36189. image: {
  36190. source: "./media/characters/daiki/feral.svg",
  36191. extra: 1256/313,
  36192. bottom: 39/1295
  36193. }
  36194. },
  36195. feralHead: {
  36196. height: math.unit(171, "feet"),
  36197. name: "Feral Head",
  36198. image: {
  36199. source: "./media/characters/daiki/feral-head.svg"
  36200. }
  36201. },
  36202. },
  36203. [
  36204. {
  36205. name: "Normal",
  36206. height: math.unit(5 + 10/12, "feet"),
  36207. default: true
  36208. },
  36209. ]
  36210. ))
  36211. characterMakers.push(() => makeCharacter(
  36212. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36213. {
  36214. fullyEquippedFront: {
  36215. height: math.unit(3 + 1/12, "feet"),
  36216. weight: math.unit(24, "lb"),
  36217. name: "Fully Equipped (Front)",
  36218. image: {
  36219. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36220. extra: 687/605,
  36221. bottom: 18/705
  36222. }
  36223. },
  36224. fullyEquippedBack: {
  36225. height: math.unit(3 + 1/12, "feet"),
  36226. weight: math.unit(24, "lb"),
  36227. name: "Fully Equipped (Back)",
  36228. image: {
  36229. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36230. extra: 689/590,
  36231. bottom: 18/707
  36232. }
  36233. },
  36234. dailyWear: {
  36235. height: math.unit(3 + 1/12, "feet"),
  36236. weight: math.unit(24, "lb"),
  36237. name: "Daily Wear",
  36238. image: {
  36239. source: "./media/characters/tea-spot/daily-wear.svg",
  36240. extra: 701/620,
  36241. bottom: 21/722
  36242. }
  36243. },
  36244. maidWork: {
  36245. height: math.unit(3 + 1/12, "feet"),
  36246. weight: math.unit(24, "lb"),
  36247. name: "Maid Work",
  36248. image: {
  36249. source: "./media/characters/tea-spot/maid-work.svg",
  36250. extra: 693/609,
  36251. bottom: 15/708
  36252. }
  36253. },
  36254. },
  36255. [
  36256. {
  36257. name: "Normal",
  36258. height: math.unit(3 + 1/12, "feet"),
  36259. default: true
  36260. },
  36261. ]
  36262. ))
  36263. characterMakers.push(() => makeCharacter(
  36264. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36265. {
  36266. front: {
  36267. height: math.unit(175, "cm"),
  36268. weight: math.unit(75, "kg"),
  36269. name: "Front",
  36270. image: {
  36271. source: "./media/characters/chee/front.svg",
  36272. extra: 1796/1740,
  36273. bottom: 40/1836
  36274. }
  36275. },
  36276. },
  36277. [
  36278. {
  36279. name: "Micro-Micro",
  36280. height: math.unit(1, "nm")
  36281. },
  36282. {
  36283. name: "Micro-erst",
  36284. height: math.unit(1, "micrometer")
  36285. },
  36286. {
  36287. name: "Micro-er",
  36288. height: math.unit(1, "cm")
  36289. },
  36290. {
  36291. name: "Normal",
  36292. height: math.unit(175, "cm"),
  36293. default: true
  36294. },
  36295. {
  36296. name: "Macro",
  36297. height: math.unit(100, "m")
  36298. },
  36299. {
  36300. name: "Macro-er",
  36301. height: math.unit(1, "km")
  36302. },
  36303. {
  36304. name: "Macro-erst",
  36305. height: math.unit(10, "km")
  36306. },
  36307. {
  36308. name: "Macro-Macro",
  36309. height: math.unit(100, "km")
  36310. },
  36311. ]
  36312. ))
  36313. characterMakers.push(() => makeCharacter(
  36314. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36315. {
  36316. front: {
  36317. height: math.unit(11 + 9/12, "feet"),
  36318. weight: math.unit(935, "lb"),
  36319. name: "Front",
  36320. image: {
  36321. source: "./media/characters/kingsley/front.svg",
  36322. extra: 1803/1674,
  36323. bottom: 127/1930
  36324. }
  36325. },
  36326. frontNude: {
  36327. height: math.unit(11 + 9/12, "feet"),
  36328. weight: math.unit(935, "lb"),
  36329. name: "Front (Nude)",
  36330. image: {
  36331. source: "./media/characters/kingsley/front-nude.svg",
  36332. extra: 1803/1674,
  36333. bottom: 127/1930
  36334. }
  36335. },
  36336. },
  36337. [
  36338. {
  36339. name: "Normal",
  36340. height: math.unit(11 + 9/12, "feet"),
  36341. default: true
  36342. },
  36343. ]
  36344. ))
  36345. characterMakers.push(() => makeCharacter(
  36346. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36347. {
  36348. side: {
  36349. height: math.unit(9, "feet"),
  36350. name: "Side",
  36351. image: {
  36352. source: "./media/characters/rymel/side.svg",
  36353. extra: 792/469,
  36354. bottom: 121/913
  36355. }
  36356. },
  36357. maw: {
  36358. height: math.unit(2.4, "meters"),
  36359. name: "Maw",
  36360. image: {
  36361. source: "./media/characters/rymel/maw.svg"
  36362. }
  36363. },
  36364. },
  36365. [
  36366. {
  36367. name: "House Drake",
  36368. height: math.unit(2, "feet")
  36369. },
  36370. {
  36371. name: "Reduced",
  36372. height: math.unit(4.5, "feet")
  36373. },
  36374. {
  36375. name: "Normal",
  36376. height: math.unit(9, "feet"),
  36377. default: true
  36378. },
  36379. ]
  36380. ))
  36381. characterMakers.push(() => makeCharacter(
  36382. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36383. {
  36384. front: {
  36385. height: math.unit(1.74, "meters"),
  36386. weight: math.unit(55, "kg"),
  36387. name: "Front",
  36388. image: {
  36389. source: "./media/characters/rubus/front.svg",
  36390. extra: 1894/1742,
  36391. bottom: 44/1938
  36392. }
  36393. },
  36394. },
  36395. [
  36396. {
  36397. name: "Normal",
  36398. height: math.unit(1.74, "meters"),
  36399. default: true
  36400. },
  36401. ]
  36402. ))
  36403. characterMakers.push(() => makeCharacter(
  36404. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36405. {
  36406. front: {
  36407. height: math.unit(5 + 2/12, "feet"),
  36408. weight: math.unit(112, "lb"),
  36409. name: "Front",
  36410. image: {
  36411. source: "./media/characters/cassie-kingston/front.svg",
  36412. extra: 1438/1390,
  36413. bottom: 47/1485
  36414. }
  36415. },
  36416. },
  36417. [
  36418. {
  36419. name: "Normal",
  36420. height: math.unit(5 + 2/12, "feet"),
  36421. default: true
  36422. },
  36423. {
  36424. name: "Macro",
  36425. height: math.unit(128, "feet")
  36426. },
  36427. {
  36428. name: "Megamacro",
  36429. height: math.unit(2.56, "miles")
  36430. },
  36431. ]
  36432. ))
  36433. characterMakers.push(() => makeCharacter(
  36434. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36435. {
  36436. front: {
  36437. height: math.unit(7, "feet"),
  36438. name: "Front",
  36439. image: {
  36440. source: "./media/characters/fox/front.svg",
  36441. extra: 1798/1703,
  36442. bottom: 55/1853
  36443. }
  36444. },
  36445. back: {
  36446. height: math.unit(7, "feet"),
  36447. name: "Back",
  36448. image: {
  36449. source: "./media/characters/fox/back.svg",
  36450. extra: 1748/1649,
  36451. bottom: 32/1780
  36452. }
  36453. },
  36454. head: {
  36455. height: math.unit(1.95, "feet"),
  36456. name: "Head",
  36457. image: {
  36458. source: "./media/characters/fox/head.svg"
  36459. }
  36460. },
  36461. dick: {
  36462. height: math.unit(1.33, "feet"),
  36463. name: "Dick",
  36464. image: {
  36465. source: "./media/characters/fox/dick.svg"
  36466. }
  36467. },
  36468. foot: {
  36469. height: math.unit(1, "feet"),
  36470. name: "Foot",
  36471. image: {
  36472. source: "./media/characters/fox/foot.svg"
  36473. }
  36474. },
  36475. paw: {
  36476. height: math.unit(0.92, "feet"),
  36477. name: "Paw",
  36478. image: {
  36479. source: "./media/characters/fox/paw.svg"
  36480. }
  36481. },
  36482. },
  36483. [
  36484. {
  36485. name: "Small",
  36486. height: math.unit(3, "inches")
  36487. },
  36488. {
  36489. name: "\"Realistic\"",
  36490. height: math.unit(7, "feet")
  36491. },
  36492. {
  36493. name: "Normal",
  36494. height: math.unit(150, "feet"),
  36495. default: true
  36496. },
  36497. {
  36498. name: "BIG",
  36499. height: math.unit(1200, "feet")
  36500. },
  36501. {
  36502. name: "👀",
  36503. height: math.unit(5, "miles")
  36504. },
  36505. {
  36506. name: "👀👀👀",
  36507. height: math.unit(64, "miles")
  36508. },
  36509. ]
  36510. ))
  36511. characterMakers.push(() => makeCharacter(
  36512. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36513. {
  36514. front: {
  36515. height: math.unit(625, "feet"),
  36516. name: "Front",
  36517. image: {
  36518. source: "./media/characters/asonja-rossa/front.svg",
  36519. extra: 1833/1686,
  36520. bottom: 24/1857
  36521. }
  36522. },
  36523. back: {
  36524. height: math.unit(625, "feet"),
  36525. name: "Back",
  36526. image: {
  36527. source: "./media/characters/asonja-rossa/back.svg",
  36528. extra: 1852/1753,
  36529. bottom: 26/1878
  36530. }
  36531. },
  36532. },
  36533. [
  36534. {
  36535. name: "Macro",
  36536. height: math.unit(625, "feet"),
  36537. default: true
  36538. },
  36539. ]
  36540. ))
  36541. characterMakers.push(() => makeCharacter(
  36542. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36543. {
  36544. side: {
  36545. height: math.unit(6, "feet"),
  36546. weight: math.unit(150, "lb"),
  36547. name: "Side",
  36548. image: {
  36549. source: "./media/characters/rezukii/side.svg",
  36550. extra: 979/542,
  36551. bottom: 87/1066
  36552. }
  36553. },
  36554. },
  36555. [
  36556. {
  36557. name: "Tiny",
  36558. height: math.unit(2, "feet")
  36559. },
  36560. {
  36561. name: "Smol",
  36562. height: math.unit(4, "feet")
  36563. },
  36564. {
  36565. name: "Normal",
  36566. height: math.unit(8, "feet"),
  36567. default: true
  36568. },
  36569. {
  36570. name: "Big",
  36571. height: math.unit(12, "feet")
  36572. },
  36573. {
  36574. name: "Macro",
  36575. height: math.unit(30, "feet")
  36576. },
  36577. ]
  36578. ))
  36579. characterMakers.push(() => makeCharacter(
  36580. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  36581. {
  36582. front: {
  36583. height: math.unit(14, "feet"),
  36584. weight: math.unit(9.5, "tonnes"),
  36585. name: "Front",
  36586. image: {
  36587. source: "./media/characters/dawnheart/front.svg",
  36588. extra: 2792/2675,
  36589. bottom: 64/2856
  36590. }
  36591. },
  36592. },
  36593. [
  36594. {
  36595. name: "Normal",
  36596. height: math.unit(14, "feet"),
  36597. default: true
  36598. },
  36599. ]
  36600. ))
  36601. characterMakers.push(() => makeCharacter(
  36602. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  36603. {
  36604. front: {
  36605. height: math.unit(1.7, "m"),
  36606. name: "Front",
  36607. image: {
  36608. source: "./media/characters/gladi/front.svg",
  36609. extra: 1460/1362,
  36610. bottom: 19/1479
  36611. }
  36612. },
  36613. back: {
  36614. height: math.unit(1.7, "m"),
  36615. name: "Back",
  36616. image: {
  36617. source: "./media/characters/gladi/back.svg",
  36618. extra: 1459/1357,
  36619. bottom: 12/1471
  36620. }
  36621. },
  36622. feral: {
  36623. height: math.unit(2.05, "m"),
  36624. name: "Feral",
  36625. image: {
  36626. source: "./media/characters/gladi/feral.svg",
  36627. extra: 821/557,
  36628. bottom: 91/912
  36629. }
  36630. },
  36631. },
  36632. [
  36633. {
  36634. name: "Shortest",
  36635. height: math.unit(70, "cm")
  36636. },
  36637. {
  36638. name: "Normal",
  36639. height: math.unit(1.7, "m")
  36640. },
  36641. {
  36642. name: "Macro",
  36643. height: math.unit(10, "m"),
  36644. default: true
  36645. },
  36646. {
  36647. name: "Tallest",
  36648. height: math.unit(200, "m")
  36649. },
  36650. ]
  36651. ))
  36652. characterMakers.push(() => makeCharacter(
  36653. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  36654. {
  36655. front: {
  36656. height: math.unit(5 + 7/12, "feet"),
  36657. weight: math.unit(92, "kg"),
  36658. name: "Front",
  36659. image: {
  36660. source: "./media/characters/erdno/front.svg",
  36661. extra: 1954/1889,
  36662. bottom: 22/1976
  36663. }
  36664. },
  36665. },
  36666. [
  36667. {
  36668. name: "Normal",
  36669. height: math.unit(5 + 7/12, "feet"),
  36670. default: true
  36671. },
  36672. ]
  36673. ))
  36674. characterMakers.push(() => makeCharacter(
  36675. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  36676. {
  36677. front: {
  36678. height: math.unit(5 + 10/12, "feet"),
  36679. weight: math.unit(150, "lb"),
  36680. name: "Front",
  36681. image: {
  36682. source: "./media/characters/jamie/front.svg",
  36683. extra: 1908/1768,
  36684. bottom: 19/1927
  36685. }
  36686. },
  36687. },
  36688. [
  36689. {
  36690. name: "Minimum",
  36691. height: math.unit(2, "cm")
  36692. },
  36693. {
  36694. name: "Micro",
  36695. height: math.unit(3, "inches")
  36696. },
  36697. {
  36698. name: "Normal",
  36699. height: math.unit(5 + 10/12, "feet"),
  36700. default: true
  36701. },
  36702. {
  36703. name: "Macro",
  36704. height: math.unit(150, "feet")
  36705. },
  36706. {
  36707. name: "Megamacro",
  36708. height: math.unit(10000, "m")
  36709. },
  36710. ]
  36711. ))
  36712. characterMakers.push(() => makeCharacter(
  36713. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  36714. {
  36715. front: {
  36716. height: math.unit(2, "meters"),
  36717. weight: math.unit(100, "kg"),
  36718. name: "Front",
  36719. image: {
  36720. source: "./media/characters/shiron/front.svg",
  36721. extra: 2103/1985,
  36722. bottom: 98/2201
  36723. }
  36724. },
  36725. back: {
  36726. height: math.unit(2, "meters"),
  36727. weight: math.unit(100, "kg"),
  36728. name: "Back",
  36729. image: {
  36730. source: "./media/characters/shiron/back.svg",
  36731. extra: 2110/2015,
  36732. bottom: 89/2199
  36733. }
  36734. },
  36735. hand: {
  36736. height: math.unit(0.96, "feet"),
  36737. name: "Hand",
  36738. image: {
  36739. source: "./media/characters/shiron/hand.svg"
  36740. }
  36741. },
  36742. foot: {
  36743. height: math.unit(1.464, "feet"),
  36744. name: "Foot",
  36745. image: {
  36746. source: "./media/characters/shiron/foot.svg"
  36747. }
  36748. },
  36749. },
  36750. [
  36751. {
  36752. name: "Normal",
  36753. height: math.unit(2, "meters")
  36754. },
  36755. {
  36756. name: "Macro",
  36757. height: math.unit(500, "meters"),
  36758. default: true
  36759. },
  36760. {
  36761. name: "Megamacro",
  36762. height: math.unit(20, "km")
  36763. },
  36764. ]
  36765. ))
  36766. characterMakers.push(() => makeCharacter(
  36767. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  36768. {
  36769. front: {
  36770. height: math.unit(6, "feet"),
  36771. name: "Front",
  36772. image: {
  36773. source: "./media/characters/sam/front.svg",
  36774. extra: 849/826,
  36775. bottom: 19/868
  36776. }
  36777. },
  36778. },
  36779. [
  36780. {
  36781. name: "Normal",
  36782. height: math.unit(6, "feet"),
  36783. default: true
  36784. },
  36785. ]
  36786. ))
  36787. characterMakers.push(() => makeCharacter(
  36788. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  36789. {
  36790. front: {
  36791. height: math.unit(8 + 4/12, "feet"),
  36792. weight: math.unit(122, "kg"),
  36793. name: "Front",
  36794. image: {
  36795. source: "./media/characters/namori-kurogawa/front.svg",
  36796. extra: 1894/1576,
  36797. bottom: 34/1928
  36798. }
  36799. },
  36800. },
  36801. [
  36802. {
  36803. name: "Normal",
  36804. height: math.unit(8 + 4/12, "feet"),
  36805. default: true
  36806. },
  36807. ]
  36808. ))
  36809. characterMakers.push(() => makeCharacter(
  36810. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  36811. {
  36812. front: {
  36813. height: math.unit(9, "feet"),
  36814. weight: math.unit(621, "lb"),
  36815. name: "Front",
  36816. image: {
  36817. source: "./media/characters/unmru/front.svg",
  36818. extra: 1853/1747,
  36819. bottom: 73/1926
  36820. }
  36821. },
  36822. side: {
  36823. height: math.unit(9, "feet"),
  36824. weight: math.unit(621, "lb"),
  36825. name: "Side",
  36826. image: {
  36827. source: "./media/characters/unmru/side.svg",
  36828. extra: 1781/1671,
  36829. bottom: 127/1908
  36830. }
  36831. },
  36832. back: {
  36833. height: math.unit(9, "feet"),
  36834. weight: math.unit(621, "lb"),
  36835. name: "Back",
  36836. image: {
  36837. source: "./media/characters/unmru/back.svg",
  36838. extra: 1894/1765,
  36839. bottom: 75/1969
  36840. }
  36841. },
  36842. dick: {
  36843. height: math.unit(3, "feet"),
  36844. weight: math.unit(35, "lb"),
  36845. name: "Dick",
  36846. image: {
  36847. source: "./media/characters/unmru/dick.svg"
  36848. }
  36849. },
  36850. },
  36851. [
  36852. {
  36853. name: "Normal",
  36854. height: math.unit(9, "feet")
  36855. },
  36856. {
  36857. name: "Natural",
  36858. height: math.unit(27, "feet"),
  36859. default: true
  36860. },
  36861. {
  36862. name: "Giant",
  36863. height: math.unit(90, "feet")
  36864. },
  36865. {
  36866. name: "Kaiju",
  36867. height: math.unit(270, "feet")
  36868. },
  36869. {
  36870. name: "Macro",
  36871. height: math.unit(900, "feet")
  36872. },
  36873. {
  36874. name: "Macro+",
  36875. height: math.unit(2700, "feet")
  36876. },
  36877. {
  36878. name: "Megamacro",
  36879. height: math.unit(9000, "feet")
  36880. },
  36881. {
  36882. name: "City-Crushing",
  36883. height: math.unit(27000, "feet")
  36884. },
  36885. {
  36886. name: "Mountain-Mashing",
  36887. height: math.unit(90000, "feet")
  36888. },
  36889. {
  36890. name: "Earth-Eclipsing",
  36891. height: math.unit(2.7e8, "feet")
  36892. },
  36893. {
  36894. name: "Sol-Swallowing",
  36895. height: math.unit(9e10, "feet")
  36896. },
  36897. {
  36898. name: "Majoris-Munching",
  36899. height: math.unit(2.7e13, "feet")
  36900. },
  36901. ]
  36902. ))
  36903. characterMakers.push(() => makeCharacter(
  36904. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  36905. {
  36906. front: {
  36907. height: math.unit(1, "inch"),
  36908. name: "Front",
  36909. image: {
  36910. source: "./media/characters/squeaks-mouse/front.svg",
  36911. extra: 352/308,
  36912. bottom: 25/377
  36913. }
  36914. },
  36915. },
  36916. [
  36917. {
  36918. name: "Micro",
  36919. height: math.unit(1, "inch"),
  36920. default: true
  36921. },
  36922. ]
  36923. ))
  36924. characterMakers.push(() => makeCharacter(
  36925. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  36926. {
  36927. side: {
  36928. height: math.unit(35, "feet"),
  36929. name: "Side",
  36930. image: {
  36931. source: "./media/characters/sayko/side.svg",
  36932. extra: 1697/1021,
  36933. bottom: 82/1779
  36934. }
  36935. },
  36936. head: {
  36937. height: math.unit(16, "feet"),
  36938. name: "Head",
  36939. image: {
  36940. source: "./media/characters/sayko/head.svg"
  36941. }
  36942. },
  36943. forepaw: {
  36944. height: math.unit(7.85, "feet"),
  36945. name: "Forepaw",
  36946. image: {
  36947. source: "./media/characters/sayko/forepaw.svg"
  36948. }
  36949. },
  36950. hindpaw: {
  36951. height: math.unit(8.8, "feet"),
  36952. name: "Hindpaw",
  36953. image: {
  36954. source: "./media/characters/sayko/hindpaw.svg"
  36955. }
  36956. },
  36957. },
  36958. [
  36959. {
  36960. name: "Normal",
  36961. height: math.unit(35, "feet"),
  36962. default: true
  36963. },
  36964. {
  36965. name: "Colossus",
  36966. height: math.unit(100, "meters")
  36967. },
  36968. {
  36969. name: "\"Small\" Deity",
  36970. height: math.unit(1, "km")
  36971. },
  36972. {
  36973. name: "\"Large\" Deity",
  36974. height: math.unit(15, "km")
  36975. },
  36976. ]
  36977. ))
  36978. characterMakers.push(() => makeCharacter(
  36979. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  36980. {
  36981. front: {
  36982. height: math.unit(6, "feet"),
  36983. weight: math.unit(250, "lb"),
  36984. name: "Front",
  36985. image: {
  36986. source: "./media/characters/mukiro/front.svg",
  36987. extra: 1368/1310,
  36988. bottom: 34/1402
  36989. }
  36990. },
  36991. },
  36992. [
  36993. {
  36994. name: "Normal",
  36995. height: math.unit(6, "feet"),
  36996. default: true
  36997. },
  36998. ]
  36999. ))
  37000. characterMakers.push(() => makeCharacter(
  37001. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37002. {
  37003. front: {
  37004. height: math.unit(12 + 4/12, "feet"),
  37005. name: "Front",
  37006. image: {
  37007. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37008. extra: 1346/1311,
  37009. bottom: 65/1411
  37010. }
  37011. },
  37012. },
  37013. [
  37014. {
  37015. name: "Base",
  37016. height: math.unit(12 + 4/12, "feet"),
  37017. default: true
  37018. },
  37019. {
  37020. name: "Macro",
  37021. height: math.unit(150, "feet")
  37022. },
  37023. {
  37024. name: "Mega",
  37025. height: math.unit(2, "miles")
  37026. },
  37027. {
  37028. name: "Demi God",
  37029. height: math.unit(4, "AU")
  37030. },
  37031. {
  37032. name: "God Size",
  37033. height: math.unit(1, "universe")
  37034. },
  37035. ]
  37036. ))
  37037. characterMakers.push(() => makeCharacter(
  37038. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37039. {
  37040. front: {
  37041. height: math.unit(3 + 3/12, "feet"),
  37042. weight: math.unit(88, "lb"),
  37043. name: "Front",
  37044. image: {
  37045. source: "./media/characters/trey/front.svg",
  37046. extra: 1815/1509,
  37047. bottom: 60/1875
  37048. }
  37049. },
  37050. },
  37051. [
  37052. {
  37053. name: "Normal",
  37054. height: math.unit(3 + 3/12, "feet"),
  37055. default: true
  37056. },
  37057. ]
  37058. ))
  37059. characterMakers.push(() => makeCharacter(
  37060. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37061. {
  37062. front: {
  37063. height: math.unit(4, "meters"),
  37064. name: "Front",
  37065. image: {
  37066. source: "./media/characters/adelonda/front.svg",
  37067. extra: 1942/1775,
  37068. bottom: 33/1975
  37069. }
  37070. },
  37071. back: {
  37072. height: math.unit(4, "meters"),
  37073. name: "Back",
  37074. image: {
  37075. source: "./media/characters/adelonda/back.svg",
  37076. extra: 1932/1780,
  37077. bottom: 42/1974
  37078. }
  37079. },
  37080. bust: {
  37081. height: math.unit(1.8, "meter"),
  37082. name: "Bust",
  37083. image: {
  37084. source: "./media/characters/adelonda/bust.svg"
  37085. }
  37086. },
  37087. },
  37088. [
  37089. {
  37090. name: "Normal",
  37091. height: math.unit(4, "meters"),
  37092. default: true
  37093. },
  37094. ]
  37095. ))
  37096. characterMakers.push(() => makeCharacter(
  37097. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37098. {
  37099. front: {
  37100. height: math.unit(8 + 4/12, "feet"),
  37101. weight: math.unit(670, "lb"),
  37102. name: "Front",
  37103. image: {
  37104. source: "./media/characters/acadiel/front.svg",
  37105. extra: 1901/1595,
  37106. bottom: 142/2043
  37107. }
  37108. },
  37109. },
  37110. [
  37111. {
  37112. name: "Normal",
  37113. height: math.unit(8 + 4/12, "feet"),
  37114. default: true
  37115. },
  37116. {
  37117. name: "Macro",
  37118. height: math.unit(200, "feet")
  37119. },
  37120. ]
  37121. ))
  37122. characterMakers.push(() => makeCharacter(
  37123. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37124. {
  37125. front: {
  37126. height: math.unit(6 + 2/12, "feet"),
  37127. weight: math.unit(185, "lb"),
  37128. name: "Front",
  37129. image: {
  37130. source: "./media/characters/kayne-ein/front.svg",
  37131. extra: 1780/1560,
  37132. bottom: 81/1861
  37133. }
  37134. },
  37135. },
  37136. [
  37137. {
  37138. name: "Normal",
  37139. height: math.unit(6 + 2/12, "feet"),
  37140. default: true
  37141. },
  37142. {
  37143. name: "Transformation Stage",
  37144. height: math.unit(15, "feet")
  37145. },
  37146. {
  37147. name: "Macro",
  37148. height: math.unit(150, "feet")
  37149. },
  37150. {
  37151. name: "Earth's Shadow",
  37152. height: math.unit(6200, "miles")
  37153. },
  37154. {
  37155. name: "Universal Demon",
  37156. height: math.unit(28e9, "parsecs")
  37157. },
  37158. {
  37159. name: "Multiverse God",
  37160. height: math.unit(3, "multiverses")
  37161. },
  37162. ]
  37163. ))
  37164. characterMakers.push(() => makeCharacter(
  37165. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37166. {
  37167. front: {
  37168. height: math.unit(5 + 5/12, "feet"),
  37169. name: "Front",
  37170. image: {
  37171. source: "./media/characters/fawn/front.svg",
  37172. extra: 1873/1731,
  37173. bottom: 95/1968
  37174. }
  37175. },
  37176. back: {
  37177. height: math.unit(5 + 5/12, "feet"),
  37178. name: "Back",
  37179. image: {
  37180. source: "./media/characters/fawn/back.svg",
  37181. extra: 1813/1700,
  37182. bottom: 14/1827
  37183. }
  37184. },
  37185. hoof: {
  37186. height: math.unit(1.45, "feet"),
  37187. name: "Hoof",
  37188. image: {
  37189. source: "./media/characters/fawn/hoof.svg"
  37190. }
  37191. },
  37192. },
  37193. [
  37194. {
  37195. name: "Normal",
  37196. height: math.unit(5 + 5/12, "feet"),
  37197. default: true
  37198. },
  37199. ]
  37200. ))
  37201. characterMakers.push(() => makeCharacter(
  37202. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37203. {
  37204. front: {
  37205. height: math.unit(2 + 5/12, "feet"),
  37206. name: "Front",
  37207. image: {
  37208. source: "./media/characters/orion/front.svg",
  37209. extra: 1366/1304,
  37210. bottom: 43/1409
  37211. }
  37212. },
  37213. paw: {
  37214. height: math.unit(0.52, "feet"),
  37215. name: "Paw",
  37216. image: {
  37217. source: "./media/characters/orion/paw.svg"
  37218. }
  37219. },
  37220. },
  37221. [
  37222. {
  37223. name: "Normal",
  37224. height: math.unit(2 + 5/12, "feet"),
  37225. default: true
  37226. },
  37227. ]
  37228. ))
  37229. characterMakers.push(() => makeCharacter(
  37230. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37231. {
  37232. front: {
  37233. height: math.unit(5 + 10/12, "feet"),
  37234. name: "Front",
  37235. image: {
  37236. source: "./media/characters/vera/front.svg",
  37237. extra: 1680/1575,
  37238. bottom: 49/1729
  37239. }
  37240. },
  37241. back: {
  37242. height: math.unit(5 + 10/12, "feet"),
  37243. name: "Back",
  37244. image: {
  37245. source: "./media/characters/vera/back.svg",
  37246. extra: 1700/1588,
  37247. bottom: 18/1718
  37248. }
  37249. },
  37250. arcanine: {
  37251. height: math.unit(6 + 8/12, "feet"),
  37252. name: "Arcanine",
  37253. image: {
  37254. source: "./media/characters/vera/arcanine.svg",
  37255. extra: 1590/1511,
  37256. bottom: 71/1661
  37257. }
  37258. },
  37259. maw: {
  37260. height: math.unit(0.82, "feet"),
  37261. name: "Maw",
  37262. image: {
  37263. source: "./media/characters/vera/maw.svg"
  37264. }
  37265. },
  37266. mawArcanine: {
  37267. height: math.unit(0.97, "feet"),
  37268. name: "Maw (Arcanine)",
  37269. image: {
  37270. source: "./media/characters/vera/maw-arcanine.svg"
  37271. }
  37272. },
  37273. paw: {
  37274. height: math.unit(0.75, "feet"),
  37275. name: "Paw",
  37276. image: {
  37277. source: "./media/characters/vera/paw.svg"
  37278. }
  37279. },
  37280. pawprint: {
  37281. height: math.unit(0.52, "feet"),
  37282. name: "Pawprint",
  37283. image: {
  37284. source: "./media/characters/vera/pawprint.svg"
  37285. }
  37286. },
  37287. },
  37288. [
  37289. {
  37290. name: "Normal",
  37291. height: math.unit(5 + 10/12, "feet"),
  37292. default: true
  37293. },
  37294. {
  37295. name: "Macro",
  37296. height: math.unit(75, "feet")
  37297. },
  37298. ]
  37299. ))
  37300. characterMakers.push(() => makeCharacter(
  37301. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37302. {
  37303. front: {
  37304. height: math.unit(4, "feet"),
  37305. weight: math.unit(40, "lb"),
  37306. name: "Front",
  37307. image: {
  37308. source: "./media/characters/orvan-rabbit/front.svg",
  37309. extra: 1896/1642,
  37310. bottom: 29/1925
  37311. }
  37312. },
  37313. },
  37314. [
  37315. {
  37316. name: "Normal",
  37317. height: math.unit(4, "feet"),
  37318. default: true
  37319. },
  37320. ]
  37321. ))
  37322. characterMakers.push(() => makeCharacter(
  37323. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37324. {
  37325. front: {
  37326. height: math.unit(6, "feet"),
  37327. weight: math.unit(168, "lb"),
  37328. name: "Front",
  37329. image: {
  37330. source: "./media/characters/lisa/front.svg",
  37331. extra: 2065/1867,
  37332. bottom: 46/2111
  37333. }
  37334. },
  37335. back: {
  37336. height: math.unit(6, "feet"),
  37337. weight: math.unit(168, "lb"),
  37338. name: "Back",
  37339. image: {
  37340. source: "./media/characters/lisa/back.svg",
  37341. extra: 1982/1838,
  37342. bottom: 29/2011
  37343. }
  37344. },
  37345. maw: {
  37346. height: math.unit(0.81, "feet"),
  37347. name: "Maw",
  37348. image: {
  37349. source: "./media/characters/lisa/maw.svg"
  37350. }
  37351. },
  37352. paw: {
  37353. height: math.unit(0.9, "feet"),
  37354. name: "Paw",
  37355. image: {
  37356. source: "./media/characters/lisa/paw.svg"
  37357. }
  37358. },
  37359. caribousune: {
  37360. height: math.unit(7 + 2/12, "feet"),
  37361. weight: math.unit(268, "lb"),
  37362. name: "Caribousune",
  37363. image: {
  37364. source: "./media/characters/lisa/caribousune.svg",
  37365. extra: 1843/1633,
  37366. bottom: 29/1872
  37367. }
  37368. },
  37369. frontCaribousune: {
  37370. height: math.unit(7 + 2/12, "feet"),
  37371. weight: math.unit(268, "lb"),
  37372. name: "Front (Caribousune)",
  37373. image: {
  37374. source: "./media/characters/lisa/front-caribousune.svg",
  37375. extra: 1818/1638,
  37376. bottom: 52/1870
  37377. }
  37378. },
  37379. sideCaribousune: {
  37380. height: math.unit(7 + 2/12, "feet"),
  37381. weight: math.unit(268, "lb"),
  37382. name: "Side (Caribousune)",
  37383. image: {
  37384. source: "./media/characters/lisa/side-caribousune.svg",
  37385. extra: 1851/1635,
  37386. bottom: 16/1867
  37387. }
  37388. },
  37389. backCaribousune: {
  37390. height: math.unit(7 + 2/12, "feet"),
  37391. weight: math.unit(268, "lb"),
  37392. name: "Back (Caribousune)",
  37393. image: {
  37394. source: "./media/characters/lisa/back-caribousune.svg",
  37395. extra: 1801/1604,
  37396. bottom: 44/1845
  37397. }
  37398. },
  37399. caribou: {
  37400. height: math.unit(7 + 2/12, "feet"),
  37401. weight: math.unit(268, "lb"),
  37402. name: "Caribou",
  37403. image: {
  37404. source: "./media/characters/lisa/caribou.svg",
  37405. extra: 1843/1633,
  37406. bottom: 29/1872
  37407. }
  37408. },
  37409. frontCaribou: {
  37410. height: math.unit(7 + 2/12, "feet"),
  37411. weight: math.unit(268, "lb"),
  37412. name: "Front (Caribou)",
  37413. image: {
  37414. source: "./media/characters/lisa/front-caribou.svg",
  37415. extra: 1818/1638,
  37416. bottom: 52/1870
  37417. }
  37418. },
  37419. sideCaribou: {
  37420. height: math.unit(7 + 2/12, "feet"),
  37421. weight: math.unit(268, "lb"),
  37422. name: "Side (Caribou)",
  37423. image: {
  37424. source: "./media/characters/lisa/side-caribou.svg",
  37425. extra: 1851/1635,
  37426. bottom: 16/1867
  37427. }
  37428. },
  37429. backCaribou: {
  37430. height: math.unit(7 + 2/12, "feet"),
  37431. weight: math.unit(268, "lb"),
  37432. name: "Back (Caribou)",
  37433. image: {
  37434. source: "./media/characters/lisa/back-caribou.svg",
  37435. extra: 1801/1604,
  37436. bottom: 44/1845
  37437. }
  37438. },
  37439. mawCaribou: {
  37440. height: math.unit(1.45, "feet"),
  37441. name: "Maw (Caribou)",
  37442. image: {
  37443. source: "./media/characters/lisa/maw-caribou.svg"
  37444. }
  37445. },
  37446. mawCaribousune: {
  37447. height: math.unit(1.45, "feet"),
  37448. name: "Maw (Caribousune)",
  37449. image: {
  37450. source: "./media/characters/lisa/maw-caribousune.svg"
  37451. }
  37452. },
  37453. pawCaribousune: {
  37454. height: math.unit(1.61, "feet"),
  37455. name: "Paw (Caribou)",
  37456. image: {
  37457. source: "./media/characters/lisa/paw-caribousune.svg"
  37458. }
  37459. },
  37460. },
  37461. [
  37462. {
  37463. name: "Normal",
  37464. height: math.unit(6, "feet")
  37465. },
  37466. {
  37467. name: "God Size",
  37468. height: math.unit(72, "feet"),
  37469. default: true
  37470. },
  37471. {
  37472. name: "Towering",
  37473. height: math.unit(288, "feet")
  37474. },
  37475. {
  37476. name: "City Size",
  37477. height: math.unit(48384, "feet")
  37478. },
  37479. {
  37480. name: "Continental",
  37481. height: math.unit(4200, "miles")
  37482. },
  37483. {
  37484. name: "Planet Eater",
  37485. height: math.unit(42, "earths")
  37486. },
  37487. {
  37488. name: "Star Swallower",
  37489. height: math.unit(42, "solarradii")
  37490. },
  37491. {
  37492. name: "System Swallower",
  37493. height: math.unit(84000, "AU")
  37494. },
  37495. {
  37496. name: "Galaxy Gobbler",
  37497. height: math.unit(42, "galaxies")
  37498. },
  37499. {
  37500. name: "Universe Devourer",
  37501. height: math.unit(42, "universes")
  37502. },
  37503. {
  37504. name: "Multiverse Muncher",
  37505. height: math.unit(42, "multiverses")
  37506. },
  37507. ]
  37508. ))
  37509. characterMakers.push(() => makeCharacter(
  37510. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  37511. {
  37512. front: {
  37513. height: math.unit(36, "feet"),
  37514. name: "Front",
  37515. image: {
  37516. source: "./media/characters/shadow-rat/front.svg",
  37517. extra: 1845/1758,
  37518. bottom: 83/1928
  37519. }
  37520. },
  37521. },
  37522. [
  37523. {
  37524. name: "Macro",
  37525. height: math.unit(36, "feet"),
  37526. default: true
  37527. },
  37528. ]
  37529. ))
  37530. characterMakers.push(() => makeCharacter(
  37531. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  37532. {
  37533. side: {
  37534. height: math.unit(8, "feet"),
  37535. weight: math.unit(2630, "lb"),
  37536. name: "Side",
  37537. image: {
  37538. source: "./media/characters/torallia/side.svg",
  37539. extra: 2164/2021,
  37540. bottom: 371/2535
  37541. }
  37542. },
  37543. },
  37544. [
  37545. {
  37546. name: "Mortal Interaction",
  37547. height: math.unit(8, "feet")
  37548. },
  37549. {
  37550. name: "Natural",
  37551. height: math.unit(24, "feet"),
  37552. default: true
  37553. },
  37554. {
  37555. name: "Giant",
  37556. height: math.unit(80, "feet")
  37557. },
  37558. {
  37559. name: "Kaiju",
  37560. height: math.unit(240, "feet")
  37561. },
  37562. {
  37563. name: "Macro",
  37564. height: math.unit(800, "feet")
  37565. },
  37566. {
  37567. name: "Macro+",
  37568. height: math.unit(2400, "feet")
  37569. },
  37570. {
  37571. name: "Macro++",
  37572. height: math.unit(8000, "feet")
  37573. },
  37574. {
  37575. name: "City-Crushing",
  37576. height: math.unit(24000, "feet")
  37577. },
  37578. {
  37579. name: "Mountain-Mashing",
  37580. height: math.unit(80000, "feet")
  37581. },
  37582. {
  37583. name: "District Demolisher",
  37584. height: math.unit(240000, "feet")
  37585. },
  37586. {
  37587. name: "Tri-County Terror",
  37588. height: math.unit(800000, "feet")
  37589. },
  37590. {
  37591. name: "State Smasher",
  37592. height: math.unit(2.4e6, "feet")
  37593. },
  37594. {
  37595. name: "Nation Nemesis",
  37596. height: math.unit(8e6, "feet")
  37597. },
  37598. {
  37599. name: "Continent Cracker",
  37600. height: math.unit(2.4e7, "feet")
  37601. },
  37602. {
  37603. name: "Planet-Pillaging",
  37604. height: math.unit(8e7, "feet")
  37605. },
  37606. {
  37607. name: "Earth-Eclipsing",
  37608. height: math.unit(2.4e8, "feet")
  37609. },
  37610. {
  37611. name: "Jovian-Jostling",
  37612. height: math.unit(8e8, "feet")
  37613. },
  37614. {
  37615. name: "Gas Giant Gulper",
  37616. height: math.unit(2.4e9, "feet")
  37617. },
  37618. {
  37619. name: "Astral Annihilator",
  37620. height: math.unit(8e9, "feet")
  37621. },
  37622. {
  37623. name: "Celestial Conqueror",
  37624. height: math.unit(2.4e10, "feet")
  37625. },
  37626. {
  37627. name: "Sol-Swallowing",
  37628. height: math.unit(8e10, "feet")
  37629. },
  37630. {
  37631. name: "Hunter of the Heavens",
  37632. height: math.unit(2.4e13, "feet")
  37633. },
  37634. ]
  37635. ))
  37636. characterMakers.push(() => makeCharacter(
  37637. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  37638. {
  37639. front: {
  37640. height: math.unit(6 + 8/12, "feet"),
  37641. name: "Front",
  37642. image: {
  37643. source: "./media/characters/rebecca-pawlson/front.svg",
  37644. extra: 1737/1596,
  37645. bottom: 107/1844
  37646. }
  37647. },
  37648. back: {
  37649. height: math.unit(6 + 8/12, "feet"),
  37650. name: "Back",
  37651. image: {
  37652. source: "./media/characters/rebecca-pawlson/back.svg",
  37653. extra: 1702/1523,
  37654. bottom: 86/1788
  37655. }
  37656. },
  37657. },
  37658. [
  37659. {
  37660. name: "Normal",
  37661. height: math.unit(6 + 8/12, "feet")
  37662. },
  37663. {
  37664. name: "Mini Macro",
  37665. height: math.unit(10, "feet"),
  37666. default: true
  37667. },
  37668. {
  37669. name: "Macro",
  37670. height: math.unit(100, "feet")
  37671. },
  37672. {
  37673. name: "Mega Macro",
  37674. height: math.unit(2500, "feet")
  37675. },
  37676. {
  37677. name: "Giga Macro",
  37678. height: math.unit(50, "miles")
  37679. },
  37680. ]
  37681. ))
  37682. characterMakers.push(() => makeCharacter(
  37683. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  37684. {
  37685. front: {
  37686. height: math.unit(7 + 6/12, "feet"),
  37687. weight: math.unit(600, "lb"),
  37688. name: "Front",
  37689. image: {
  37690. source: "./media/characters/moxie-nova/front.svg",
  37691. extra: 1734/1652,
  37692. bottom: 41/1775
  37693. }
  37694. },
  37695. },
  37696. [
  37697. {
  37698. name: "Normal",
  37699. height: math.unit(7 + 6/12, "feet"),
  37700. default: true
  37701. },
  37702. ]
  37703. ))
  37704. characterMakers.push(() => makeCharacter(
  37705. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  37706. {
  37707. front: {
  37708. height: math.unit(5, "feet"),
  37709. weight: math.unit(150, "lb"),
  37710. name: "Front",
  37711. image: {
  37712. source: "./media/characters/tiffany/front.svg",
  37713. extra: 1941/1845,
  37714. bottom: 58/1999
  37715. }
  37716. },
  37717. },
  37718. [
  37719. {
  37720. name: "Normal",
  37721. height: math.unit(5, "feet"),
  37722. default: true
  37723. },
  37724. ]
  37725. ))
  37726. characterMakers.push(() => makeCharacter(
  37727. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  37728. {
  37729. front: {
  37730. height: math.unit(8, "feet"),
  37731. weight: math.unit(300, "lb"),
  37732. name: "Front",
  37733. image: {
  37734. source: "./media/characters/raxinath/front.svg",
  37735. extra: 1407/1309,
  37736. bottom: 39/1446
  37737. }
  37738. },
  37739. back: {
  37740. height: math.unit(8, "feet"),
  37741. weight: math.unit(300, "lb"),
  37742. name: "Back",
  37743. image: {
  37744. source: "./media/characters/raxinath/back.svg",
  37745. extra: 1405/1315,
  37746. bottom: 9/1414
  37747. }
  37748. },
  37749. },
  37750. [
  37751. {
  37752. name: "Speck",
  37753. height: math.unit(0.5, "nm")
  37754. },
  37755. {
  37756. name: "Micro",
  37757. height: math.unit(3, "inches")
  37758. },
  37759. {
  37760. name: "Kobold",
  37761. height: math.unit(3, "feet")
  37762. },
  37763. {
  37764. name: "Normal",
  37765. height: math.unit(8, "feet"),
  37766. default: true
  37767. },
  37768. {
  37769. name: "Giant",
  37770. height: math.unit(50, "feet")
  37771. },
  37772. {
  37773. name: "Macro",
  37774. height: math.unit(1000, "feet")
  37775. },
  37776. {
  37777. name: "Megamacro",
  37778. height: math.unit(1, "mile")
  37779. },
  37780. ]
  37781. ))
  37782. characterMakers.push(() => makeCharacter(
  37783. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  37784. {
  37785. front: {
  37786. height: math.unit(10, "feet"),
  37787. weight: math.unit(1442, "lb"),
  37788. name: "Front",
  37789. image: {
  37790. source: "./media/characters/mal-dragon/front.svg",
  37791. extra: 1515/1444,
  37792. bottom: 113/1628
  37793. }
  37794. },
  37795. back: {
  37796. height: math.unit(10, "feet"),
  37797. weight: math.unit(1442, "lb"),
  37798. name: "Back",
  37799. image: {
  37800. source: "./media/characters/mal-dragon/back.svg",
  37801. extra: 1527/1434,
  37802. bottom: 25/1552
  37803. }
  37804. },
  37805. },
  37806. [
  37807. {
  37808. name: "Mortal Interaction",
  37809. height: math.unit(10, "feet"),
  37810. default: true
  37811. },
  37812. {
  37813. name: "Large",
  37814. height: math.unit(30, "feet")
  37815. },
  37816. {
  37817. name: "Kaiju",
  37818. height: math.unit(300, "feet")
  37819. },
  37820. {
  37821. name: "Megamacro",
  37822. height: math.unit(10000, "feet")
  37823. },
  37824. {
  37825. name: "Continent Cracker",
  37826. height: math.unit(30000000, "feet")
  37827. },
  37828. {
  37829. name: "Sol-Swallowing",
  37830. height: math.unit(1e11, "feet")
  37831. },
  37832. {
  37833. name: "Light Universal",
  37834. height: math.unit(5, "universes")
  37835. },
  37836. {
  37837. name: "Universe Atoms",
  37838. height: math.unit(1.829e9, "universes")
  37839. },
  37840. {
  37841. name: "Light Multiversal",
  37842. height: math.unit(5, "multiverses")
  37843. },
  37844. {
  37845. name: "Multiverse Atoms",
  37846. height: math.unit(1.829e9, "multiverses")
  37847. },
  37848. {
  37849. name: "Fabric of Time",
  37850. height: math.unit(1e262, "multiverses")
  37851. },
  37852. ]
  37853. ))
  37854. characterMakers.push(() => makeCharacter(
  37855. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  37856. {
  37857. front: {
  37858. height: math.unit(9, "feet"),
  37859. weight: math.unit(1050, "lb"),
  37860. name: "Front",
  37861. image: {
  37862. source: "./media/characters/tabitha/front.svg",
  37863. extra: 2083/1994,
  37864. bottom: 68/2151
  37865. }
  37866. },
  37867. },
  37868. [
  37869. {
  37870. name: "Baseline",
  37871. height: math.unit(9, "feet"),
  37872. default: true
  37873. },
  37874. {
  37875. name: "Giant",
  37876. height: math.unit(90, "feet")
  37877. },
  37878. {
  37879. name: "Macro",
  37880. height: math.unit(900, "feet")
  37881. },
  37882. {
  37883. name: "Megamacro",
  37884. height: math.unit(9000, "feet")
  37885. },
  37886. {
  37887. name: "City-Crushing",
  37888. height: math.unit(27000, "feet")
  37889. },
  37890. {
  37891. name: "Mountain-Mashing",
  37892. height: math.unit(90000, "feet")
  37893. },
  37894. {
  37895. name: "Nation Nemesis",
  37896. height: math.unit(9e6, "feet")
  37897. },
  37898. {
  37899. name: "Continent Cracker",
  37900. height: math.unit(27e6, "feet")
  37901. },
  37902. {
  37903. name: "Earth-Eclipsing",
  37904. height: math.unit(2.7e8, "feet")
  37905. },
  37906. {
  37907. name: "Gas Giant Gulper",
  37908. height: math.unit(2.7e9, "feet")
  37909. },
  37910. {
  37911. name: "Sol-Swallowing",
  37912. height: math.unit(9e10, "feet")
  37913. },
  37914. {
  37915. name: "Galaxy Gulper",
  37916. height: math.unit(9, "galaxies")
  37917. },
  37918. {
  37919. name: "Cosmos Churner",
  37920. height: math.unit(9, "universes")
  37921. },
  37922. ]
  37923. ))
  37924. characterMakers.push(() => makeCharacter(
  37925. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  37926. {
  37927. front: {
  37928. height: math.unit(160, "cm"),
  37929. weight: math.unit(55, "kg"),
  37930. name: "Front",
  37931. image: {
  37932. source: "./media/characters/tow/front.svg",
  37933. extra: 1751/1722,
  37934. bottom: 74/1825
  37935. }
  37936. },
  37937. },
  37938. [
  37939. {
  37940. name: "Norm",
  37941. height: math.unit(160, "cm")
  37942. },
  37943. {
  37944. name: "Casual",
  37945. height: math.unit(3200, "m"),
  37946. default: true
  37947. },
  37948. {
  37949. name: "Show-Off",
  37950. height: math.unit(160, "km")
  37951. },
  37952. ]
  37953. ))
  37954. characterMakers.push(() => makeCharacter(
  37955. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  37956. {
  37957. front: {
  37958. height: math.unit(7 + 11/12, "feet"),
  37959. weight: math.unit(342.8, "lb"),
  37960. name: "Front",
  37961. image: {
  37962. source: "./media/characters/vivian-orca-dragon/front.svg",
  37963. extra: 1890/1865,
  37964. bottom: 28/1918
  37965. }
  37966. },
  37967. },
  37968. [
  37969. {
  37970. name: "Micro",
  37971. height: math.unit(5, "inches")
  37972. },
  37973. {
  37974. name: "Normal",
  37975. height: math.unit(7 + 11/12, "feet"),
  37976. default: true
  37977. },
  37978. {
  37979. name: "Macro",
  37980. height: math.unit(395 + 7/12, "feet")
  37981. },
  37982. ]
  37983. ))
  37984. characterMakers.push(() => makeCharacter(
  37985. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  37986. {
  37987. side: {
  37988. height: math.unit(10, "feet"),
  37989. weight: math.unit(1442, "lb"),
  37990. name: "Side",
  37991. image: {
  37992. source: "./media/characters/lotherakon/side.svg",
  37993. extra: 1604/1497,
  37994. bottom: 89/1693
  37995. }
  37996. },
  37997. },
  37998. [
  37999. {
  38000. name: "Mortal Interaction",
  38001. height: math.unit(10, "feet")
  38002. },
  38003. {
  38004. name: "Large",
  38005. height: math.unit(30, "feet"),
  38006. default: true
  38007. },
  38008. {
  38009. name: "Giant",
  38010. height: math.unit(100, "feet")
  38011. },
  38012. {
  38013. name: "Kaiju",
  38014. height: math.unit(300, "feet")
  38015. },
  38016. {
  38017. name: "Macro",
  38018. height: math.unit(1000, "feet")
  38019. },
  38020. {
  38021. name: "Macro+",
  38022. height: math.unit(3000, "feet")
  38023. },
  38024. {
  38025. name: "Megamacro",
  38026. height: math.unit(10000, "feet")
  38027. },
  38028. {
  38029. name: "City-Crushing",
  38030. height: math.unit(30000, "feet")
  38031. },
  38032. {
  38033. name: "Continent Cracker",
  38034. height: math.unit(30e6, "feet")
  38035. },
  38036. {
  38037. name: "Earth Eclipsing",
  38038. height: math.unit(3e8, "feet")
  38039. },
  38040. {
  38041. name: "Gas Giant Gulper",
  38042. height: math.unit(3e9, "feet")
  38043. },
  38044. {
  38045. name: "Sol-Swallowing",
  38046. height: math.unit(1e11, "feet")
  38047. },
  38048. {
  38049. name: "System Swallower",
  38050. height: math.unit(3e14, "feet")
  38051. },
  38052. {
  38053. name: "Galaxy Gulper",
  38054. height: math.unit(10, "galaxies")
  38055. },
  38056. {
  38057. name: "Light Universal",
  38058. height: math.unit(5, "universes")
  38059. },
  38060. {
  38061. name: "Universe Palm",
  38062. height: math.unit(20, "universes")
  38063. },
  38064. {
  38065. name: "Light Multiversal",
  38066. height: math.unit(5, "multiverses")
  38067. },
  38068. {
  38069. name: "Multiverse Palm",
  38070. height: math.unit(20, "multiverses")
  38071. },
  38072. {
  38073. name: "Inferno Incarnate",
  38074. height: math.unit(1e7, "multiverses")
  38075. },
  38076. ]
  38077. ))
  38078. characterMakers.push(() => makeCharacter(
  38079. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38080. {
  38081. front: {
  38082. height: math.unit(8, "feet"),
  38083. weight: math.unit(1200, "lb"),
  38084. name: "Front",
  38085. image: {
  38086. source: "./media/characters/malithee/front.svg",
  38087. extra: 1675/1640,
  38088. bottom: 162/1837
  38089. }
  38090. },
  38091. },
  38092. [
  38093. {
  38094. name: "Mortal Interaction",
  38095. height: math.unit(8, "feet"),
  38096. default: true
  38097. },
  38098. {
  38099. name: "Large",
  38100. height: math.unit(24, "feet")
  38101. },
  38102. {
  38103. name: "Kaiju",
  38104. height: math.unit(240, "feet")
  38105. },
  38106. {
  38107. name: "Megamacro",
  38108. height: math.unit(8000, "feet")
  38109. },
  38110. {
  38111. name: "Continent Cracker",
  38112. height: math.unit(24e6, "feet")
  38113. },
  38114. {
  38115. name: "Earth-Eclipsing",
  38116. height: math.unit(2.4e8, "feet")
  38117. },
  38118. {
  38119. name: "Sol-Swallowing",
  38120. height: math.unit(8e10, "feet")
  38121. },
  38122. {
  38123. name: "Galaxy Gulper",
  38124. height: math.unit(8, "galaxies")
  38125. },
  38126. {
  38127. name: "Light Universal",
  38128. height: math.unit(4, "universes")
  38129. },
  38130. {
  38131. name: "Universe Atoms",
  38132. height: math.unit(1.829e9, "universes")
  38133. },
  38134. {
  38135. name: "Light Multiversal",
  38136. height: math.unit(4, "multiverses")
  38137. },
  38138. {
  38139. name: "Multiverse Atoms",
  38140. height: math.unit(1.829e9, "multiverses")
  38141. },
  38142. {
  38143. name: "Nigh-Omnipresence",
  38144. height: math.unit(8e261, "multiverses")
  38145. },
  38146. ]
  38147. ))
  38148. characterMakers.push(() => makeCharacter(
  38149. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38150. {
  38151. front: {
  38152. height: math.unit(10, "feet"),
  38153. weight: math.unit(1500, "lb"),
  38154. name: "Front",
  38155. image: {
  38156. source: "./media/characters/miles-thestia/front.svg",
  38157. extra: 1812/1727,
  38158. bottom: 86/1898
  38159. }
  38160. },
  38161. back: {
  38162. height: math.unit(10, "feet"),
  38163. weight: math.unit(1500, "lb"),
  38164. name: "Back",
  38165. image: {
  38166. source: "./media/characters/miles-thestia/back.svg",
  38167. extra: 1799/1690,
  38168. bottom: 47/1846
  38169. }
  38170. },
  38171. frontNsfw: {
  38172. height: math.unit(10, "feet"),
  38173. weight: math.unit(1500, "lb"),
  38174. name: "Front (NSFW)",
  38175. image: {
  38176. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38177. extra: 1812/1727,
  38178. bottom: 86/1898
  38179. }
  38180. },
  38181. },
  38182. [
  38183. {
  38184. name: "Mini-Macro",
  38185. height: math.unit(10, "feet"),
  38186. default: true
  38187. },
  38188. ]
  38189. ))
  38190. characterMakers.push(() => makeCharacter(
  38191. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38192. {
  38193. front: {
  38194. height: math.unit(25, "feet"),
  38195. name: "Front",
  38196. image: {
  38197. source: "./media/characters/titan-s-wulf/front.svg",
  38198. extra: 1560/1484,
  38199. bottom: 76/1636
  38200. }
  38201. },
  38202. },
  38203. [
  38204. {
  38205. name: "Smallest",
  38206. height: math.unit(25, "feet"),
  38207. default: true
  38208. },
  38209. {
  38210. name: "Normal",
  38211. height: math.unit(200, "feet")
  38212. },
  38213. {
  38214. name: "Macro",
  38215. height: math.unit(200000, "feet")
  38216. },
  38217. {
  38218. name: "Multiversal Original",
  38219. height: math.unit(10000, "multiverses")
  38220. },
  38221. ]
  38222. ))
  38223. characterMakers.push(() => makeCharacter(
  38224. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38225. {
  38226. front: {
  38227. height: math.unit(8, "feet"),
  38228. weight: math.unit(553, "lb"),
  38229. name: "Front",
  38230. image: {
  38231. source: "./media/characters/tawendeh/front.svg",
  38232. extra: 2365/2268,
  38233. bottom: 83/2448
  38234. }
  38235. },
  38236. frontClothed: {
  38237. height: math.unit(8, "feet"),
  38238. weight: math.unit(553, "lb"),
  38239. name: "Front (Clothed)",
  38240. image: {
  38241. source: "./media/characters/tawendeh/front-clothed.svg",
  38242. extra: 2365/2268,
  38243. bottom: 83/2448
  38244. }
  38245. },
  38246. back: {
  38247. height: math.unit(8, "feet"),
  38248. weight: math.unit(553, "lb"),
  38249. name: "Back",
  38250. image: {
  38251. source: "./media/characters/tawendeh/back.svg",
  38252. extra: 2397/2294,
  38253. bottom: 42/2439
  38254. }
  38255. },
  38256. },
  38257. [
  38258. {
  38259. name: "Mortal Interaction",
  38260. height: math.unit(8, "feet"),
  38261. default: true
  38262. },
  38263. {
  38264. name: "Giant",
  38265. height: math.unit(80, "feet")
  38266. },
  38267. {
  38268. name: "Macro",
  38269. height: math.unit(800, "feet")
  38270. },
  38271. {
  38272. name: "Megamacro",
  38273. height: math.unit(8000, "feet")
  38274. },
  38275. {
  38276. name: "City-Crushing",
  38277. height: math.unit(24000, "feet")
  38278. },
  38279. {
  38280. name: "Mountain-Mashing",
  38281. height: math.unit(80000, "feet")
  38282. },
  38283. {
  38284. name: "Nation Nemesis",
  38285. height: math.unit(8e6, "feet")
  38286. },
  38287. {
  38288. name: "Continent Cracker",
  38289. height: math.unit(24e6, "feet")
  38290. },
  38291. {
  38292. name: "Earth-Eclipsing",
  38293. height: math.unit(2.4e8, "feet")
  38294. },
  38295. {
  38296. name: "Gas Giant Gulper",
  38297. height: math.unit(2.4e9, "feet")
  38298. },
  38299. {
  38300. name: "Sol-Swallowing",
  38301. height: math.unit(8e10, "feet")
  38302. },
  38303. {
  38304. name: "Galaxy Gulper",
  38305. height: math.unit(8, "galaxies")
  38306. },
  38307. {
  38308. name: "Cosmos Churner",
  38309. height: math.unit(8, "universes")
  38310. },
  38311. {
  38312. name: "Omnipotent Otter",
  38313. height: math.unit(80, "universes")
  38314. },
  38315. ]
  38316. ))
  38317. characterMakers.push(() => makeCharacter(
  38318. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38319. {
  38320. front: {
  38321. height: math.unit(2.6, "meters"),
  38322. weight: math.unit(900, "kg"),
  38323. name: "Front",
  38324. image: {
  38325. source: "./media/characters/neesha/front.svg",
  38326. extra: 1803/1653,
  38327. bottom: 128/1931
  38328. }
  38329. },
  38330. },
  38331. [
  38332. {
  38333. name: "Normal",
  38334. height: math.unit(2.6, "meters"),
  38335. default: true
  38336. },
  38337. {
  38338. name: "Macro",
  38339. height: math.unit(50, "meters")
  38340. },
  38341. ]
  38342. ))
  38343. characterMakers.push(() => makeCharacter(
  38344. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38345. {
  38346. front: {
  38347. height: math.unit(5, "feet"),
  38348. weight: math.unit(185, "lb"),
  38349. name: "Front",
  38350. image: {
  38351. source: "./media/characters/kyera/front.svg",
  38352. extra: 1875/1790,
  38353. bottom: 96/1971
  38354. }
  38355. },
  38356. },
  38357. [
  38358. {
  38359. name: "Normal",
  38360. height: math.unit(5, "feet"),
  38361. default: true
  38362. },
  38363. ]
  38364. ))
  38365. characterMakers.push(() => makeCharacter(
  38366. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38367. {
  38368. front: {
  38369. height: math.unit(7 + 6/12, "feet"),
  38370. weight: math.unit(540, "lb"),
  38371. name: "Front",
  38372. image: {
  38373. source: "./media/characters/yuko/front.svg",
  38374. extra: 1282/1222,
  38375. bottom: 101/1383
  38376. }
  38377. },
  38378. frontClothed: {
  38379. height: math.unit(7 + 6/12, "feet"),
  38380. weight: math.unit(540, "lb"),
  38381. name: "Front (Clothed)",
  38382. image: {
  38383. source: "./media/characters/yuko/front-clothed.svg",
  38384. extra: 1282/1222,
  38385. bottom: 101/1383
  38386. }
  38387. },
  38388. },
  38389. [
  38390. {
  38391. name: "Normal",
  38392. height: math.unit(7 + 6/12, "feet"),
  38393. default: true
  38394. },
  38395. {
  38396. name: "Macro",
  38397. height: math.unit(26 + 9/12, "feet")
  38398. },
  38399. {
  38400. name: "Megamacro",
  38401. height: math.unit(300, "feet")
  38402. },
  38403. {
  38404. name: "Gigamacro",
  38405. height: math.unit(5000, "feet")
  38406. },
  38407. {
  38408. name: "Planetary",
  38409. height: math.unit(10000, "miles")
  38410. },
  38411. ]
  38412. ))
  38413. characterMakers.push(() => makeCharacter(
  38414. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38415. {
  38416. front: {
  38417. height: math.unit(8 + 2/12, "feet"),
  38418. weight: math.unit(600, "lb"),
  38419. name: "Front",
  38420. image: {
  38421. source: "./media/characters/deam-nitrel/front.svg",
  38422. extra: 1308/1234,
  38423. bottom: 125/1433
  38424. }
  38425. },
  38426. },
  38427. [
  38428. {
  38429. name: "Normal",
  38430. height: math.unit(8 + 2/12, "feet"),
  38431. default: true
  38432. },
  38433. ]
  38434. ))
  38435. characterMakers.push(() => makeCharacter(
  38436. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38437. {
  38438. front: {
  38439. height: math.unit(6.1, "feet"),
  38440. weight: math.unit(180, "lb"),
  38441. name: "Front",
  38442. image: {
  38443. source: "./media/characters/skyress/front.svg",
  38444. extra: 1045/915,
  38445. bottom: 28/1073
  38446. }
  38447. },
  38448. maw: {
  38449. height: math.unit(1, "feet"),
  38450. name: "Maw",
  38451. image: {
  38452. source: "./media/characters/skyress/maw.svg"
  38453. }
  38454. },
  38455. },
  38456. [
  38457. {
  38458. name: "Normal",
  38459. height: math.unit(6.1, "feet"),
  38460. default: true
  38461. },
  38462. {
  38463. name: "Macro",
  38464. height: math.unit(200, "feet")
  38465. },
  38466. ]
  38467. ))
  38468. characterMakers.push(() => makeCharacter(
  38469. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  38470. {
  38471. front: {
  38472. height: math.unit(4 + 2/12, "feet"),
  38473. weight: math.unit(40, "kg"),
  38474. name: "Front",
  38475. image: {
  38476. source: "./media/characters/amethyst-jones/front.svg",
  38477. extra: 1220/1150,
  38478. bottom: 101/1321
  38479. }
  38480. },
  38481. },
  38482. [
  38483. {
  38484. name: "Normal",
  38485. height: math.unit(4 + 2/12, "feet"),
  38486. default: true
  38487. },
  38488. ]
  38489. ))
  38490. characterMakers.push(() => makeCharacter(
  38491. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  38492. {
  38493. front: {
  38494. height: math.unit(1.7, "m"),
  38495. weight: math.unit(135, "lb"),
  38496. name: "Front",
  38497. image: {
  38498. source: "./media/characters/jade/front.svg",
  38499. extra: 1818/1767,
  38500. bottom: 32/1850
  38501. }
  38502. },
  38503. back: {
  38504. height: math.unit(1.7, "m"),
  38505. weight: math.unit(135, "lb"),
  38506. name: "Back",
  38507. image: {
  38508. source: "./media/characters/jade/back.svg",
  38509. extra: 1869/1809,
  38510. bottom: 35/1904
  38511. }
  38512. },
  38513. hand: {
  38514. height: math.unit(0.24, "m"),
  38515. name: "Hand",
  38516. image: {
  38517. source: "./media/characters/jade/hand.svg"
  38518. }
  38519. },
  38520. foot: {
  38521. height: math.unit(0.263, "m"),
  38522. name: "Foot",
  38523. image: {
  38524. source: "./media/characters/jade/foot.svg"
  38525. }
  38526. },
  38527. dick: {
  38528. height: math.unit(0.47, "m"),
  38529. name: "Dick",
  38530. image: {
  38531. source: "./media/characters/jade/dick.svg"
  38532. }
  38533. },
  38534. },
  38535. [
  38536. {
  38537. name: "Micro",
  38538. height: math.unit(22, "cm")
  38539. },
  38540. {
  38541. name: "Normal",
  38542. height: math.unit(1.7, "m"),
  38543. default: true
  38544. },
  38545. {
  38546. name: "Macro",
  38547. height: math.unit(152, "m")
  38548. },
  38549. ]
  38550. ))
  38551. characterMakers.push(() => makeCharacter(
  38552. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  38553. {
  38554. front: {
  38555. height: math.unit(100, "miles"),
  38556. weight: math.unit(20000, "tons"),
  38557. name: "Front",
  38558. image: {
  38559. source: "./media/characters/cookie/front.svg",
  38560. extra: 1125/1070,
  38561. bottom: 30/1155
  38562. }
  38563. },
  38564. },
  38565. [
  38566. {
  38567. name: "Big",
  38568. height: math.unit(50, "feet")
  38569. },
  38570. {
  38571. name: "Macro",
  38572. height: math.unit(100, "miles"),
  38573. default: true
  38574. },
  38575. {
  38576. name: "Megamacro",
  38577. height: math.unit(90000, "miles")
  38578. },
  38579. ]
  38580. ))
  38581. characterMakers.push(() => makeCharacter(
  38582. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  38583. {
  38584. front: {
  38585. height: math.unit(6, "feet"),
  38586. weight: math.unit(145, "lb"),
  38587. name: "Front",
  38588. image: {
  38589. source: "./media/characters/farzian/front.svg",
  38590. extra: 1902/1693,
  38591. bottom: 108/2010
  38592. }
  38593. },
  38594. },
  38595. [
  38596. {
  38597. name: "Macro",
  38598. height: math.unit(500, "feet"),
  38599. default: true
  38600. },
  38601. ]
  38602. ))
  38603. characterMakers.push(() => makeCharacter(
  38604. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  38605. {
  38606. front: {
  38607. height: math.unit(3 + 6/12, "feet"),
  38608. weight: math.unit(50, "lb"),
  38609. name: "Front",
  38610. image: {
  38611. source: "./media/characters/kimberly-tilson/front.svg",
  38612. extra: 1400/1322,
  38613. bottom: 36/1436
  38614. }
  38615. },
  38616. back: {
  38617. height: math.unit(3 + 6/12, "feet"),
  38618. weight: math.unit(50, "lb"),
  38619. name: "Back",
  38620. image: {
  38621. source: "./media/characters/kimberly-tilson/back.svg",
  38622. extra: 1370/1307,
  38623. bottom: 20/1390
  38624. }
  38625. },
  38626. },
  38627. [
  38628. {
  38629. name: "Normal",
  38630. height: math.unit(3 + 6/12, "feet"),
  38631. default: true
  38632. },
  38633. ]
  38634. ))
  38635. characterMakers.push(() => makeCharacter(
  38636. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  38637. {
  38638. front: {
  38639. height: math.unit(1148, "feet"),
  38640. weight: math.unit(34057, "lb"),
  38641. name: "Front",
  38642. image: {
  38643. source: "./media/characters/harthos/front.svg",
  38644. extra: 1391/1339,
  38645. bottom: 13/1404
  38646. }
  38647. },
  38648. },
  38649. [
  38650. {
  38651. name: "Macro",
  38652. height: math.unit(1148, "feet"),
  38653. default: true
  38654. },
  38655. ]
  38656. ))
  38657. characterMakers.push(() => makeCharacter(
  38658. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  38659. {
  38660. front: {
  38661. height: math.unit(15, "feet"),
  38662. name: "Front",
  38663. image: {
  38664. source: "./media/characters/hypatia/front.svg",
  38665. extra: 1653/1591,
  38666. bottom: 79/1732
  38667. }
  38668. },
  38669. },
  38670. [
  38671. {
  38672. name: "Normal",
  38673. height: math.unit(15, "feet")
  38674. },
  38675. {
  38676. name: "Small",
  38677. height: math.unit(300, "feet")
  38678. },
  38679. {
  38680. name: "Macro",
  38681. height: math.unit(2500, "feet"),
  38682. default: true
  38683. },
  38684. {
  38685. name: "Mega Macro",
  38686. height: math.unit(1500, "miles")
  38687. },
  38688. {
  38689. name: "Giga Macro",
  38690. height: math.unit(1.5e6, "miles")
  38691. },
  38692. ]
  38693. ))
  38694. characterMakers.push(() => makeCharacter(
  38695. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  38696. {
  38697. front: {
  38698. height: math.unit(6, "feet"),
  38699. weight: math.unit(200, "lb"),
  38700. name: "Front",
  38701. image: {
  38702. source: "./media/characters/wulver/front.svg",
  38703. extra: 1724/1632,
  38704. bottom: 130/1854
  38705. }
  38706. },
  38707. frontNsfw: {
  38708. height: math.unit(6, "feet"),
  38709. weight: math.unit(200, "lb"),
  38710. name: "Front (NSFW)",
  38711. image: {
  38712. source: "./media/characters/wulver/front-nsfw.svg",
  38713. extra: 1724/1632,
  38714. bottom: 130/1854
  38715. }
  38716. },
  38717. },
  38718. [
  38719. {
  38720. name: "Human-Sized",
  38721. height: math.unit(6, "feet")
  38722. },
  38723. {
  38724. name: "Normal",
  38725. height: math.unit(4, "meters"),
  38726. default: true
  38727. },
  38728. {
  38729. name: "Large",
  38730. height: math.unit(6, "m")
  38731. },
  38732. ]
  38733. ))
  38734. characterMakers.push(() => makeCharacter(
  38735. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  38736. {
  38737. front: {
  38738. height: math.unit(7, "feet"),
  38739. name: "Front",
  38740. image: {
  38741. source: "./media/characters/maru/front.svg",
  38742. extra: 1595/1570,
  38743. bottom: 0/1595
  38744. }
  38745. },
  38746. },
  38747. [
  38748. {
  38749. name: "Normal",
  38750. height: math.unit(7, "feet"),
  38751. default: true
  38752. },
  38753. {
  38754. name: "Macro",
  38755. height: math.unit(700, "feet")
  38756. },
  38757. {
  38758. name: "Mega Macro",
  38759. height: math.unit(25, "miles")
  38760. },
  38761. ]
  38762. ))
  38763. characterMakers.push(() => makeCharacter(
  38764. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  38765. {
  38766. front: {
  38767. height: math.unit(6, "feet"),
  38768. weight: math.unit(170, "lb"),
  38769. name: "Front",
  38770. image: {
  38771. source: "./media/characters/xenon/front.svg",
  38772. extra: 1376/1305,
  38773. bottom: 56/1432
  38774. }
  38775. },
  38776. back: {
  38777. height: math.unit(6, "feet"),
  38778. weight: math.unit(170, "lb"),
  38779. name: "Back",
  38780. image: {
  38781. source: "./media/characters/xenon/back.svg",
  38782. extra: 1328/1259,
  38783. bottom: 95/1423
  38784. }
  38785. },
  38786. maw: {
  38787. height: math.unit(0.52, "feet"),
  38788. name: "Maw",
  38789. image: {
  38790. source: "./media/characters/xenon/maw.svg"
  38791. }
  38792. },
  38793. hand: {
  38794. height: math.unit(0.82, "feet"),
  38795. name: "Hand",
  38796. image: {
  38797. source: "./media/characters/xenon/hand.svg"
  38798. }
  38799. },
  38800. foot: {
  38801. height: math.unit(1.13, "feet"),
  38802. name: "Foot",
  38803. image: {
  38804. source: "./media/characters/xenon/foot.svg"
  38805. }
  38806. },
  38807. },
  38808. [
  38809. {
  38810. name: "Micro",
  38811. height: math.unit(0.8, "inches")
  38812. },
  38813. {
  38814. name: "Normal",
  38815. height: math.unit(6, "feet")
  38816. },
  38817. {
  38818. name: "Macro",
  38819. height: math.unit(50, "feet"),
  38820. default: true
  38821. },
  38822. {
  38823. name: "Macro+",
  38824. height: math.unit(250, "feet")
  38825. },
  38826. {
  38827. name: "Megamacro",
  38828. height: math.unit(1500, "feet")
  38829. },
  38830. ]
  38831. ))
  38832. characterMakers.push(() => makeCharacter(
  38833. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  38834. {
  38835. front: {
  38836. height: math.unit(7 + 5/12, "feet"),
  38837. name: "Front",
  38838. image: {
  38839. source: "./media/characters/zane/front.svg",
  38840. extra: 1260/1203,
  38841. bottom: 94/1354
  38842. }
  38843. },
  38844. back: {
  38845. height: math.unit(5.05, "feet"),
  38846. name: "Back",
  38847. image: {
  38848. source: "./media/characters/zane/back.svg",
  38849. extra: 893/829,
  38850. bottom: 30/923
  38851. }
  38852. },
  38853. werewolf: {
  38854. height: math.unit(11, "feet"),
  38855. name: "Werewolf",
  38856. image: {
  38857. source: "./media/characters/zane/werewolf.svg",
  38858. extra: 1383/1323,
  38859. bottom: 89/1472
  38860. }
  38861. },
  38862. foot: {
  38863. height: math.unit(1.46, "feet"),
  38864. name: "Foot",
  38865. image: {
  38866. source: "./media/characters/zane/foot.svg"
  38867. }
  38868. },
  38869. footFront: {
  38870. height: math.unit(0.784, "feet"),
  38871. name: "Foot (Front)",
  38872. image: {
  38873. source: "./media/characters/zane/foot-front.svg"
  38874. }
  38875. },
  38876. dick: {
  38877. height: math.unit(1.95, "feet"),
  38878. name: "Dick",
  38879. image: {
  38880. source: "./media/characters/zane/dick.svg"
  38881. }
  38882. },
  38883. dickWerewolf: {
  38884. height: math.unit(3.77, "feet"),
  38885. name: "Dick (Werewolf)",
  38886. image: {
  38887. source: "./media/characters/zane/dick.svg"
  38888. }
  38889. },
  38890. },
  38891. [
  38892. {
  38893. name: "Normal",
  38894. height: math.unit(7 + 5/12, "feet"),
  38895. default: true
  38896. },
  38897. ]
  38898. ))
  38899. characterMakers.push(() => makeCharacter(
  38900. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  38901. {
  38902. front: {
  38903. height: math.unit(6 + 2/12, "feet"),
  38904. weight: math.unit(284, "lb"),
  38905. name: "Front",
  38906. image: {
  38907. source: "./media/characters/benni-desparque/front.svg",
  38908. extra: 1353/1126,
  38909. bottom: 69/1422
  38910. }
  38911. },
  38912. },
  38913. [
  38914. {
  38915. name: "Civilian",
  38916. height: math.unit(6 + 2/12, "feet")
  38917. },
  38918. {
  38919. name: "Normal",
  38920. height: math.unit(98, "feet"),
  38921. default: true
  38922. },
  38923. {
  38924. name: "Kaiju Fighter",
  38925. height: math.unit(268, "feet")
  38926. },
  38927. ]
  38928. ))
  38929. characterMakers.push(() => makeCharacter(
  38930. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  38931. {
  38932. front: {
  38933. height: math.unit(5, "feet"),
  38934. weight: math.unit(105, "lb"),
  38935. name: "Front",
  38936. image: {
  38937. source: "./media/characters/maxine/front.svg",
  38938. extra: 1386/1250,
  38939. bottom: 71/1457
  38940. }
  38941. },
  38942. },
  38943. [
  38944. {
  38945. name: "Normal",
  38946. height: math.unit(5, "feet"),
  38947. default: true
  38948. },
  38949. ]
  38950. ))
  38951. characterMakers.push(() => makeCharacter(
  38952. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  38953. {
  38954. front: {
  38955. height: math.unit(11 + 7/12, "feet"),
  38956. weight: math.unit(9576, "lb"),
  38957. name: "Front",
  38958. image: {
  38959. source: "./media/characters/scaly/front.svg",
  38960. extra: 888/867,
  38961. bottom: 36/924
  38962. }
  38963. },
  38964. },
  38965. [
  38966. {
  38967. name: "Normal",
  38968. height: math.unit(11 + 7/12, "feet"),
  38969. default: true
  38970. },
  38971. ]
  38972. ))
  38973. characterMakers.push(() => makeCharacter(
  38974. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  38975. {
  38976. front: {
  38977. height: math.unit(9, "inches"),
  38978. name: "Front",
  38979. image: {
  38980. source: "./media/characters/saelria/front.svg",
  38981. extra: 662/621,
  38982. bottom: 12/674
  38983. }
  38984. },
  38985. },
  38986. [
  38987. {
  38988. name: "Tiny",
  38989. height: math.unit(9, "inches"),
  38990. default: true
  38991. },
  38992. ]
  38993. ))
  38994. characterMakers.push(() => makeCharacter(
  38995. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  38996. {
  38997. front: {
  38998. height: math.unit(80, "meters"),
  38999. weight: math.unit(7000, "tonnes"),
  39000. name: "Front",
  39001. image: {
  39002. source: "./media/characters/tef/front.svg",
  39003. extra: 2036/1991,
  39004. bottom: 54/2090
  39005. }
  39006. },
  39007. back: {
  39008. height: math.unit(80, "meters"),
  39009. weight: math.unit(7000, "tonnes"),
  39010. name: "Back",
  39011. image: {
  39012. source: "./media/characters/tef/back.svg",
  39013. extra: 2036/1991,
  39014. bottom: 54/2090
  39015. }
  39016. },
  39017. },
  39018. [
  39019. {
  39020. name: "Macro",
  39021. height: math.unit(80, "meters"),
  39022. default: true
  39023. },
  39024. ]
  39025. ))
  39026. characterMakers.push(() => makeCharacter(
  39027. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39028. {
  39029. front: {
  39030. height: math.unit(13, "feet"),
  39031. weight: math.unit(6, "tons"),
  39032. name: "Front",
  39033. image: {
  39034. source: "./media/characters/rover/front.svg",
  39035. extra: 1233/1156,
  39036. bottom: 50/1283
  39037. }
  39038. },
  39039. back: {
  39040. height: math.unit(13, "feet"),
  39041. weight: math.unit(6, "tons"),
  39042. name: "Back",
  39043. image: {
  39044. source: "./media/characters/rover/back.svg",
  39045. extra: 1327/1258,
  39046. bottom: 39/1366
  39047. }
  39048. },
  39049. },
  39050. [
  39051. {
  39052. name: "Normal",
  39053. height: math.unit(13, "feet"),
  39054. default: true
  39055. },
  39056. {
  39057. name: "Macro",
  39058. height: math.unit(1300, "feet")
  39059. },
  39060. {
  39061. name: "Megamacro",
  39062. height: math.unit(1300, "miles")
  39063. },
  39064. {
  39065. name: "Gigamacro",
  39066. height: math.unit(1300000, "miles")
  39067. },
  39068. ]
  39069. ))
  39070. characterMakers.push(() => makeCharacter(
  39071. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39072. {
  39073. front: {
  39074. height: math.unit(6, "feet"),
  39075. weight: math.unit(150, "lb"),
  39076. name: "Front",
  39077. image: {
  39078. source: "./media/characters/ariz/front.svg",
  39079. extra: 1401/1346,
  39080. bottom: 5/1406
  39081. }
  39082. },
  39083. },
  39084. [
  39085. {
  39086. name: "Normal",
  39087. height: math.unit(10, "feet"),
  39088. default: true
  39089. },
  39090. ]
  39091. ))
  39092. characterMakers.push(() => makeCharacter(
  39093. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39094. {
  39095. front: {
  39096. height: math.unit(6, "feet"),
  39097. weight: math.unit(140, "lb"),
  39098. name: "Front",
  39099. image: {
  39100. source: "./media/characters/sigrun/front.svg",
  39101. extra: 1418/1359,
  39102. bottom: 27/1445
  39103. }
  39104. },
  39105. },
  39106. [
  39107. {
  39108. name: "Macro",
  39109. height: math.unit(35, "feet"),
  39110. default: true
  39111. },
  39112. ]
  39113. ))
  39114. characterMakers.push(() => makeCharacter(
  39115. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39116. {
  39117. front: {
  39118. height: math.unit(6, "feet"),
  39119. weight: math.unit(150, "lb"),
  39120. name: "Front",
  39121. image: {
  39122. source: "./media/characters/numin/front.svg",
  39123. extra: 1433/1388,
  39124. bottom: 12/1445
  39125. }
  39126. },
  39127. },
  39128. [
  39129. {
  39130. name: "Macro",
  39131. height: math.unit(21.5, "km"),
  39132. default: true
  39133. },
  39134. ]
  39135. ))
  39136. characterMakers.push(() => makeCharacter(
  39137. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39138. {
  39139. front: {
  39140. height: math.unit(6, "feet"),
  39141. weight: math.unit(463, "lb"),
  39142. name: "Front",
  39143. image: {
  39144. source: "./media/characters/melwa/front.svg",
  39145. extra: 1307/1248,
  39146. bottom: 93/1400
  39147. }
  39148. },
  39149. },
  39150. [
  39151. {
  39152. name: "Macro",
  39153. height: math.unit(50, "meters"),
  39154. default: true
  39155. },
  39156. ]
  39157. ))
  39158. //characters
  39159. function makeCharacters() {
  39160. const results = [];
  39161. characterMakers.forEach(character => {
  39162. results.push(character());
  39163. });
  39164. return results;
  39165. }