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

36901 строка
928 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "canine"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon"
  226. },
  227. "cougar": {
  228. name: "Cougar",
  229. parents: [
  230. "cat"
  231. ]
  232. },
  233. "goat": {
  234. name: "Goat",
  235. parents: [
  236. "mammal"
  237. ]
  238. },
  239. "lion": {
  240. name: "Lion",
  241. parents: [
  242. "cat"
  243. ]
  244. },
  245. "harpy-eager": {
  246. name: "Harpy Eagle",
  247. parents: [
  248. "avian"
  249. ]
  250. },
  251. "deer": {
  252. name: "Deer",
  253. parents: [
  254. "mammal"
  255. ]
  256. },
  257. "phoenix": {
  258. name: "Phoenix",
  259. parents: [
  260. "avian"
  261. ]
  262. },
  263. "aeromorph": {
  264. name: "Aeromorph",
  265. parents: [
  266. "machine"
  267. ]
  268. },
  269. "machine": {
  270. name: "Machine",
  271. },
  272. "android": {
  273. name: "Android",
  274. parents: [
  275. "machine"
  276. ]
  277. },
  278. "jackal": {
  279. name: "Jackal",
  280. parents: [
  281. "canine"
  282. ]
  283. },
  284. "corvid": {
  285. name: "Corvid",
  286. parents: [
  287. "avian"
  288. ]
  289. },
  290. "pharaoh-hound": {
  291. name: "Pharaoh Hound",
  292. parents: [
  293. "dog"
  294. ]
  295. },
  296. "skunk": {
  297. name: "Skunk",
  298. parents: [
  299. "mammal"
  300. ]
  301. },
  302. "shark": {
  303. name: "Shark",
  304. parents: [
  305. "fish"
  306. ]
  307. },
  308. "black-panther": {
  309. name: "Black Panther",
  310. parents: [
  311. "cat"
  312. ]
  313. },
  314. "umbra": {
  315. name: "Umbra",
  316. parents: [
  317. "animal"
  318. ]
  319. },
  320. "raven": {
  321. name: "Raven",
  322. parents: [
  323. "corvid"
  324. ]
  325. },
  326. "snow-leopard": {
  327. name: "Snow Leopard",
  328. parents: [
  329. "cat"
  330. ]
  331. },
  332. "barbary-lion": {
  333. name: "Barbary Lion",
  334. parents: [
  335. "lion"
  336. ]
  337. },
  338. "dra'gal": {
  339. name: "Dra'Gal",
  340. parents: [
  341. "mammal"
  342. ]
  343. },
  344. "german-shepherd": {
  345. name: "German Shepherd",
  346. parents: [
  347. "dog"
  348. ]
  349. },
  350. "bayleef": {
  351. name: "Bayleef",
  352. parents: [
  353. "pokemon"
  354. ]
  355. },
  356. "mouse": {
  357. name: "Mouse",
  358. parents: [
  359. "rodent"
  360. ]
  361. },
  362. "rat": {
  363. name: "Rat",
  364. parents: [
  365. "mammal"
  366. ]
  367. },
  368. "hoshiko-beast": {
  369. name: "Hoshiko Beast",
  370. parents: ["animal"]
  371. },
  372. "snow-jugani": {
  373. name: "Snow Jugani",
  374. parents: ["cat"]
  375. },
  376. "patamon": {
  377. name: "Patamon",
  378. parents: ["digimon"]
  379. },
  380. "digimon": {
  381. name: "Digimon",
  382. },
  383. "jugani": {
  384. name: "Jugani",
  385. parents: ["cat"]
  386. },
  387. "luxray": {
  388. name: "Luxray",
  389. parents: ["pokemon"]
  390. },
  391. "mech": {
  392. name: "Mech",
  393. parents: ["machine"]
  394. },
  395. "zoid": {
  396. name: "Zoid",
  397. parents: ["mech"]
  398. },
  399. "monster": {
  400. name: "Monster",
  401. parents: ["animal"]
  402. },
  403. "foo-dog": {
  404. name: "Foo Dog",
  405. parents: ["mammal"]
  406. },
  407. "elephant": {
  408. name: "Elephant",
  409. parents: ["mammal"]
  410. },
  411. "eagle": {
  412. name: "Eagle",
  413. parents: ["avian"]
  414. },
  415. "cow": {
  416. name: "Cow",
  417. parents: ["mammal"]
  418. },
  419. "crocodile": {
  420. name: "Crocodile",
  421. parents: ["reptile"]
  422. },
  423. "borzoi": {
  424. name: "Borzoi",
  425. parents: ["dog"]
  426. },
  427. "snake": {
  428. name: "Snake",
  429. parents: ["reptile"]
  430. },
  431. "horned-bush-viper": {
  432. name: "Horned Bush Viper",
  433. parents: ["snake"]
  434. },
  435. "cobra": {
  436. name: "Cobra",
  437. parents: ["snake"]
  438. },
  439. "harpy-eagle": {
  440. name: "Harpy Eagle",
  441. parents: ["eagle"]
  442. },
  443. "raptor": {
  444. name: "Raptor",
  445. parents: ["dinosaur"]
  446. },
  447. "dinosaur": {
  448. name: "Dinosaur",
  449. parents: ["reptile"]
  450. },
  451. "veilhound": {
  452. name: "Veilhound",
  453. parents: ["hellhound", "demon"]
  454. },
  455. "hellhound": {
  456. name: "Hellhound",
  457. parents: ["canine"]
  458. },
  459. "insect": {
  460. name: "Insect",
  461. parents: ["animal"]
  462. },
  463. "beetle": {
  464. name: "Beetle",
  465. parents: ["insect"]
  466. },
  467. "moth": {
  468. name: "Moth",
  469. parents: ["insect"]
  470. },
  471. "eastern-dragon": {
  472. name: "Eastern Dragon",
  473. parents: ["dragon"]
  474. },
  475. "jaguar": {
  476. name: "Jaguar",
  477. parents: ["cat"]
  478. },
  479. "horse": {
  480. name: "Horse",
  481. parents: ["mammal"]
  482. },
  483. "sergal": {
  484. name: "Sergal",
  485. parents: ["mammal"]
  486. },
  487. "gryphon": {
  488. name: "Gryphon",
  489. parents: ["lion", "eagle"]
  490. },
  491. "robot": {
  492. name: "Robot",
  493. parents: ["machine"]
  494. },
  495. "medihound": {
  496. name: "Medihound",
  497. parents: ["robot", "dog"]
  498. },
  499. "sylveon": {
  500. name: "Sylveon",
  501. parents: ["pokemon"]
  502. },
  503. "catgirl": {
  504. name: "Catgirl",
  505. parents: ["mammal"]
  506. },
  507. "cowgirl": {
  508. name: "Cowgirl",
  509. parents: ["mammal"]
  510. },
  511. "pony": {
  512. name: "Pony",
  513. parents: ["horse"]
  514. },
  515. "rabbit": {
  516. name: "Rabbit",
  517. parents: ["mammal"]
  518. },
  519. "fennec-fox": {
  520. name: "Fennec Fox",
  521. parents: ["fox"]
  522. },
  523. "azodian": {
  524. name: "Azodian",
  525. parents: ["mouse"]
  526. },
  527. "shiba-inu": {
  528. name: "Shiba Inu",
  529. parents: ["dog"]
  530. },
  531. "changeling": {
  532. name: "Changeling",
  533. parents: ["insect"]
  534. },
  535. "cheetah": {
  536. name: "Cheetah",
  537. parents: ["cat"]
  538. },
  539. "golden-jackal": {
  540. name: "Golden Jackal",
  541. parents: ["jackal"]
  542. },
  543. "manectric": {
  544. name: "Manectric",
  545. parents: ["pokemon"]
  546. },
  547. "rat": {
  548. name: "Rat",
  549. parents: ["rodent"]
  550. },
  551. "rodent": {
  552. name: "Rodent",
  553. parents: ["mammal"]
  554. },
  555. "octocoon": {
  556. name: "Octocoon",
  557. parents: ["raccoon", "octopus"]
  558. },
  559. "octopus": {
  560. name: "Octopus",
  561. parents: ["fish"]
  562. },
  563. "werewolf": {
  564. name: "Werewolf",
  565. parents: ["wolf"]
  566. },
  567. "meerkat": {
  568. name: "Meerkat",
  569. parents: ["mammal"]
  570. },
  571. "human": {
  572. name: "Human",
  573. parents: ["mammal"]
  574. },
  575. "geth": {
  576. name: "Geth",
  577. parents: ["android"]
  578. },
  579. "husky": {
  580. name: "Husky",
  581. parents: ["dog"]
  582. },
  583. "long-eared-bat": {
  584. name: "Long Eared Bat",
  585. parents: ["bat"]
  586. },
  587. "lizard": {
  588. name: "Lizard",
  589. parents: ["reptile"]
  590. },
  591. "salamander": {
  592. name: "Salamander",
  593. parents: ["lizard"]
  594. },
  595. "chameleon": {
  596. name: "Chameleon",
  597. parents: ["lizard"]
  598. },
  599. "gecko": {
  600. name: "Gecko",
  601. parents: ["lizard"]
  602. },
  603. "kobold": {
  604. name: "Kobold",
  605. parents: ["reptile"]
  606. },
  607. "charizard": {
  608. name: "Charizard",
  609. parents: ["pokemon"]
  610. },
  611. "lugia": {
  612. name: "Lugia",
  613. parents: ["pokemon"]
  614. },
  615. "cerberus": {
  616. name: "Cerberus",
  617. parents: ["dog"]
  618. },
  619. "tyrantrum": {
  620. name: "Tyrantrum",
  621. parents: ["pokemon"]
  622. },
  623. "lemur": {
  624. name: "Lemur",
  625. parents: ["mammal"]
  626. },
  627. "kelpie": {
  628. name: "Kelpie",
  629. parents: ["horse", "monster"]
  630. },
  631. "labrador": {
  632. name: "Labrador",
  633. parents: ["dog"]
  634. },
  635. "sylveon": {
  636. name: "Sylveon",
  637. parents: ["eeveelution"]
  638. },
  639. "eeveelution": {
  640. name: "Eeveelution",
  641. parents: ["pokemon"]
  642. },
  643. "polar-bear": {
  644. name: "Polar Bear",
  645. parents: ["bear"]
  646. },
  647. "bear": {
  648. name: "Bear",
  649. parents: ["mammal"]
  650. },
  651. "absol": {
  652. name: "Absol",
  653. parents: ["pokemon"]
  654. },
  655. "wolver": {
  656. name: "Wolver",
  657. parents: ["mammal"]
  658. },
  659. "rottweiler": {
  660. name: "Rottweiler",
  661. parents: ["dog"]
  662. },
  663. "zebra": {
  664. name: "Zebra",
  665. parents: ["horse"]
  666. },
  667. "yoshi": {
  668. name: "Yoshi",
  669. parents: ["lizard"]
  670. },
  671. "lynx": {
  672. name: "Lynx",
  673. parents: ["cat"]
  674. },
  675. "unknown": {
  676. name: "Unknown",
  677. parents: []
  678. },
  679. "thylacine": {
  680. name: "Thylacine",
  681. parents: ["mammal"]
  682. },
  683. "gabumon": {
  684. name: "Gabumon",
  685. parents: ["digimon"]
  686. },
  687. "border-collie": {
  688. name: "Border Collie",
  689. parents: ["dog"]
  690. },
  691. "imp": {
  692. name: "Imp",
  693. parents: ["demon"]
  694. },
  695. "kangaroo": {
  696. name: "Kangaroo",
  697. parents: ["mammal"]
  698. },
  699. "renamon": {
  700. name: "Renamon",
  701. parents: ["digimon"]
  702. },
  703. "candy-orca-dragon": {
  704. name: "Candy Orca Dragon",
  705. parents: ["fish", "dragon", "candy"]
  706. },
  707. "sabertooth-tiger": {
  708. name: "Sabertooth Tiger",
  709. parents: ["cat"]
  710. },
  711. "espurr": {
  712. name: "Espurr",
  713. parents: ["pokemon"]
  714. },
  715. "otter": {
  716. name: "Otter",
  717. parents: ["mammal"]
  718. },
  719. "elemental": {
  720. name: "Elemental",
  721. parents: ["mammal"]
  722. },
  723. "mew": {
  724. name: "Mew",
  725. parents: ["pokemon"]
  726. },
  727. "goodra": {
  728. name: "Goodra",
  729. parents: ["pokemon"]
  730. },
  731. "fairy": {
  732. name: "Fairy",
  733. parents: ["magical"]
  734. },
  735. "typhlosion": {
  736. name: "Typhlosion",
  737. parents: ["pokemon"]
  738. },
  739. "magical": {
  740. name: "Magical",
  741. parents: []
  742. },
  743. "xenomorph": {
  744. name: "Xenomorph",
  745. parents: ["monster", "alien"]
  746. },
  747. "charr": {
  748. name: "Charr",
  749. parents: ["cat"]
  750. },
  751. "siberian-husky": {
  752. name: "Siberian Husky",
  753. parents: ["husky"]
  754. },
  755. "alligator": {
  756. name: "Alligator",
  757. parents: ["reptile"]
  758. },
  759. "bernese-mountain-dog": {
  760. name: "Bernese Mountain Dog",
  761. parents: ["dog"]
  762. },
  763. "reshiram": {
  764. name: "Reshiram",
  765. parents: ["pokemon"]
  766. },
  767. "grizzly-bear": {
  768. name: "Grizzly Bear",
  769. parents: ["bear"]
  770. },
  771. "water-monitor": {
  772. name: "Water Monitor",
  773. parents: ["lizard"]
  774. },
  775. "banchofossa": {
  776. name: "Banchofossa",
  777. parents: ["mammal"]
  778. },
  779. "kirin": {
  780. name: "Kirin",
  781. parents: ["monster"]
  782. },
  783. "quilava": {
  784. name: "Quilava",
  785. parents: ["pokemon"]
  786. },
  787. "seviper": {
  788. name: "Seviper",
  789. parents: ["pokemon"]
  790. },
  791. "flying-fox": {
  792. name: "Flying Fox",
  793. parents: ["bat"]
  794. },
  795. "keynain": {
  796. name: "Keynain",
  797. parents: ["avian"]
  798. },
  799. "lucario": {
  800. name: "Lucario",
  801. parents: ["pokemon"]
  802. },
  803. "siamese-cat": {
  804. name: "Siamese Cat",
  805. parents: ["cat"]
  806. },
  807. "spider": {
  808. name: "Spider",
  809. parents: ["insect"]
  810. },
  811. "samurott": {
  812. name: "Samurott",
  813. parents: ["pokemon"]
  814. },
  815. "megalodon": {
  816. name: "Megalodon",
  817. parents: ["shark"]
  818. },
  819. "unicorn": {
  820. name: "Unicorn",
  821. parents: ["horse"]
  822. },
  823. "greninja": {
  824. name: "Greninja",
  825. parents: ["pokemon"]
  826. },
  827. "water-dragon": {
  828. name: "Water Dragon",
  829. parents: ["dragon"]
  830. },
  831. "cross-fox": {
  832. name: "Cross Fox",
  833. parents: ["fox"]
  834. },
  835. "synth": {
  836. name: "Synth",
  837. parents: ["machine"]
  838. },
  839. "construct": {
  840. name: "Construct",
  841. parents: []
  842. },
  843. "mexican-wolf": {
  844. name: "Mexican Wolf",
  845. parents: ["wolf"]
  846. },
  847. "leopard": {
  848. name: "Leopard",
  849. parents: ["cat"]
  850. },
  851. "pig": {
  852. name: "Pig",
  853. parents: ["mammal"]
  854. },
  855. "ampharos": {
  856. name: "Ampharos",
  857. parents: ["pokemon"]
  858. },
  859. "orca": {
  860. name: "Orca",
  861. parents: ["fish"]
  862. },
  863. "lycanroc": {
  864. name: "Lycanroc",
  865. parents: ["pokemon"]
  866. },
  867. "surkanu": {
  868. name: "Surkanu",
  869. parents: ["monster"]
  870. },
  871. "seal": {
  872. name: "Seal",
  873. parents: ["mammal"]
  874. },
  875. "keldeo": {
  876. name: "Keldeo",
  877. parents: ["pokemon"]
  878. },
  879. "great-dane": {
  880. name: "Great Dane",
  881. parents: ["dog"]
  882. },
  883. "black-backed-jackal": {
  884. name: "Black Backed Jackal",
  885. parents: ["jackal"]
  886. },
  887. "sheep": {
  888. name: "Sheep",
  889. parents: ["mammal"]
  890. },
  891. "leopard-seal": {
  892. name: "Leopard Seal",
  893. parents: ["seal"]
  894. },
  895. "zoroark": {
  896. name: "Zoroark",
  897. parents: ["pokemon"]
  898. },
  899. "maned-wolf": {
  900. name: "Maned Wolf",
  901. parents: ["canine"]
  902. },
  903. "dracha": {
  904. name: "Dracha",
  905. parents: ["dragon"]
  906. },
  907. "wolxi": {
  908. name: "Wolxi",
  909. parents: ["mammal", "alien"]
  910. },
  911. "dratini": {
  912. name: "Dratini",
  913. parents: ["pokemon", "dragon"]
  914. },
  915. "skaven": {
  916. name: "Skaven",
  917. parents: ["rat"]
  918. },
  919. "mongoose": {
  920. name: "Mongoose",
  921. parents: ["mammal"]
  922. },
  923. "lopunny": {
  924. name: "Lopunny",
  925. parents: ["pokemon", "rabbit"]
  926. },
  927. "feraligatr": {
  928. name: "Feraligatr",
  929. parents: ["pokemon", "alligator"]
  930. },
  931. "houndoom": {
  932. name: "Houndoom",
  933. parents: ["pokemon", "dog"]
  934. },
  935. "protogen": {
  936. name: "Protogen",
  937. parents: ["machine"]
  938. },
  939. "saint-bernard": {
  940. name: "Saint Bernard",
  941. parents: ["dog"]
  942. },
  943. "crow": {
  944. name: "Crow",
  945. parents: ["corvid"]
  946. },
  947. "delphox": {
  948. name: "Delphox",
  949. parents: ["pokemon", "fox"]
  950. },
  951. "moose": {
  952. name: "Moose",
  953. parents: ["mammal"]
  954. },
  955. "joraxian": {
  956. name: "Joraxian",
  957. parents: ["monster", "canine", "demon"]
  958. },
  959. "nimbat": {
  960. name: "Nimbat",
  961. parents: ["mammal"]
  962. },
  963. "aardwolf": {
  964. name: "Aardwolf",
  965. parents: ["canine"]
  966. },
  967. "fluudrani": {
  968. name: "Fluudrani",
  969. parents: ["animal"]
  970. },
  971. "arcanine": {
  972. name: "Arcanine",
  973. parents: ["pokemon", "dog"]
  974. },
  975. "inteleon": {
  976. name: "Inteleon",
  977. parents: ["pokemon", "fish"]
  978. },
  979. "ninetales": {
  980. name: "Ninetales",
  981. parents: ["pokemon", "kitsune"]
  982. },
  983. "tigrex": {
  984. name: "Tigrex",
  985. parents: ["tiger"]
  986. },
  987. "zorua": {
  988. name: "Zorua",
  989. parents: ["pokemon", "fox"]
  990. },
  991. "vulpix": {
  992. name: "Vulpix",
  993. parents: ["pokemon", "fox"]
  994. },
  995. "barghest": {
  996. name: "Barghest",
  997. parents: ["monster"]
  998. },
  999. "gray-wolf": {
  1000. name: "Gray Wolf",
  1001. parents: ["wolf"]
  1002. },
  1003. "ruppells-fox": {
  1004. name: "Rüppell's Fox",
  1005. parents: ["fox"]
  1006. },
  1007. "bull-terrier": {
  1008. name: "Bull Terrier",
  1009. parents: ["dog"]
  1010. },
  1011. "european-honey-buzzard": {
  1012. name: "European Honey Buzzard",
  1013. parents: ["avian"]
  1014. },
  1015. "t-rex": {
  1016. name: "T Rex",
  1017. parents: ["dinosaur"]
  1018. },
  1019. "mactarian": {
  1020. name: "Mactarian",
  1021. parents: ["shark", "monster"]
  1022. },
  1023. "mewtwo-y": {
  1024. name: "Mewtwo Y",
  1025. parents: ["mewtwo"]
  1026. },
  1027. "mewtwo": {
  1028. name: "Mewtwo",
  1029. parents: ["pokemon"]
  1030. },
  1031. "mew": {
  1032. name: "Mew",
  1033. parents: ["pokemon"]
  1034. },
  1035. "eevee": {
  1036. name: "Eevee",
  1037. parents: ["eeveelution"]
  1038. },
  1039. "mienshao": {
  1040. name: "Mienshao",
  1041. parents: ["pokemon"]
  1042. },
  1043. "sugar-glider": {
  1044. name: "Sugar Glider",
  1045. parents: ["opossum"]
  1046. },
  1047. "spectral-bat": {
  1048. name: "Spectral Bat",
  1049. parents: ["bat"]
  1050. },
  1051. "scolipede": {
  1052. name: "Scolipede",
  1053. parents: ["pokemon", "insect"]
  1054. },
  1055. "jackalope": {
  1056. name: "Jackalope",
  1057. parents: ["rabbit", "antelope"]
  1058. },
  1059. "caracal": {
  1060. name: "Caracal",
  1061. parents: ["cat"]
  1062. },
  1063. "stoat": {
  1064. name: "Stoat",
  1065. parents: ["mammal"]
  1066. },
  1067. "african-golden-cat": {
  1068. name: "African Golden Cat",
  1069. parents: ["cat"]
  1070. },
  1071. "gigantosaurus": {
  1072. name: "Gigantosaurus",
  1073. parents: ["dinosaur"]
  1074. },
  1075. "zorgoia": {
  1076. name: "Zorgoia",
  1077. parents: ["mammal"]
  1078. },
  1079. "monitor-lizard": {
  1080. name: "Monitor Lizard",
  1081. parents: ["lizard"]
  1082. },
  1083. "ziralkia": {
  1084. name: "Ziralkia",
  1085. parents: ["mammal"]
  1086. },
  1087. "kiiasi": {
  1088. name: "Kiiasi",
  1089. parents: ["animal"]
  1090. },
  1091. "synx": {
  1092. name: "Synx",
  1093. parents: ["monster"]
  1094. },
  1095. "panther": {
  1096. name: "Panther",
  1097. parents: ["cat"]
  1098. },
  1099. "azumarill": {
  1100. name: "Azumarill",
  1101. parents: ["pokemon"]
  1102. },
  1103. "river-snaptail": {
  1104. name: "River Snaptail",
  1105. parents: ["otter", "crocodile"]
  1106. },
  1107. "great-blue-heron": {
  1108. name: "Great Blue Heron",
  1109. parents: ["avian"]
  1110. },
  1111. "smeargle": {
  1112. name: "Smeargle",
  1113. parents: ["pokemon"]
  1114. },
  1115. "vendeilen": {
  1116. name: "Vendeilen",
  1117. parents: ["monster"]
  1118. },
  1119. "ventura": {
  1120. name: "Ventura",
  1121. parents: ["canine"]
  1122. },
  1123. "clouded-leopard": {
  1124. name: "Clouded Leopard",
  1125. parents: ["leopard"]
  1126. },
  1127. "argonian": {
  1128. name: "Argonian",
  1129. parents: ["lizard"]
  1130. },
  1131. "salazzle": {
  1132. name: "Salazzle",
  1133. parents: ["pokemon", "lizard"]
  1134. },
  1135. "je-stoff-drachen": {
  1136. name: "Je-Stoff Drachen",
  1137. parents: ["dragon"]
  1138. },
  1139. "finnish-spitz-dog": {
  1140. name: "Finnish Spitz Dog",
  1141. parents: ["dog"]
  1142. },
  1143. "gray-fox": {
  1144. name: "Gray Fox",
  1145. parents: ["fox"]
  1146. },
  1147. "opossum": {
  1148. name: "opossum",
  1149. parents: ["mammal"]
  1150. },
  1151. "antelope": {
  1152. name: "Antelope",
  1153. parents: ["mammal"]
  1154. },
  1155. "weavile": {
  1156. name: "Weavile",
  1157. parents: ["pokemon"]
  1158. },
  1159. "pikachu": {
  1160. name: "Pikachu",
  1161. parents: ["pokemon", "mouse"]
  1162. },
  1163. "grovyle": {
  1164. name: "Grovyle",
  1165. parents: ["pokemon", "plant"]
  1166. },
  1167. "sthara": {
  1168. name: "Sthara",
  1169. parents: ["snow-leopard", "reptile"]
  1170. },
  1171. "star-warrior": {
  1172. name: "Star Warrior",
  1173. parents: ["magical"]
  1174. },
  1175. "dragonoid": {
  1176. name: "Dragonoid",
  1177. parents: ["dragon"]
  1178. },
  1179. "suicune": {
  1180. name: "Suicune",
  1181. parents: ["pokemon"]
  1182. },
  1183. "vole": {
  1184. name: "Vole",
  1185. parents: ["mammal"]
  1186. },
  1187. "blaziken": {
  1188. name: "Blaziken",
  1189. parents: ["pokemon", "avian"]
  1190. },
  1191. "buizel": {
  1192. name: "Buizel",
  1193. parents: ["pokemon", "fish"]
  1194. },
  1195. "floatzel": {
  1196. name: "Floatzel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "umok": {
  1200. name: "Umok",
  1201. parents: ["avian"]
  1202. },
  1203. "sea-monster": {
  1204. name: "Sea Monster",
  1205. parents: ["monster", "fish"]
  1206. },
  1207. "egyptian-vulture": {
  1208. name: "Egyptian Vulture",
  1209. parents: ["avian"]
  1210. },
  1211. "doberman": {
  1212. name: "Doberman",
  1213. parents: ["dog"]
  1214. },
  1215. "zangoose": {
  1216. name: "Zangoose",
  1217. parents: ["pokemon", "mongoose"]
  1218. },
  1219. "mongoose": {
  1220. name: "Mongoose",
  1221. parents: ["mammal"]
  1222. },
  1223. "wickerbeast": {
  1224. name: "Wickerbeast",
  1225. parents: ["monster"]
  1226. },
  1227. "zenari": {
  1228. name: "Zenari",
  1229. parents: ["lizard"]
  1230. },
  1231. "plant": {
  1232. name: "Plant",
  1233. parents: []
  1234. },
  1235. "raskatox": {
  1236. name: "Raskatox",
  1237. parents: ["raccoon", "skunk", "cat", "fox"]
  1238. },
  1239. "mikromare": {
  1240. name: "mikromare",
  1241. parents: ["alien"]
  1242. },
  1243. "alien": {
  1244. name: "Alien",
  1245. parents: ["animal"]
  1246. },
  1247. "deity": {
  1248. name: "Deity",
  1249. parents: []
  1250. },
  1251. "skarlan": {
  1252. name: "Skarlan",
  1253. parents: ["slug", "dragon"]
  1254. },
  1255. "slug": {
  1256. name: "Slug",
  1257. parents: ["mollusk"]
  1258. },
  1259. "mollusk": {
  1260. name: "Mollusk",
  1261. parents: ["animal"]
  1262. },
  1263. "chimera": {
  1264. name: "Chimera",
  1265. parents: ["monster"]
  1266. },
  1267. "gestalt": {
  1268. name: "Gestalt",
  1269. parents: ["construct"]
  1270. },
  1271. "mimic": {
  1272. name: "Mimic",
  1273. parents: ["monster"]
  1274. },
  1275. "calico-rat": {
  1276. name: "Calico Rat",
  1277. parents: ["rat"]
  1278. },
  1279. "panda": {
  1280. name: "Panda",
  1281. parents: ["mammal"]
  1282. },
  1283. "oni": {
  1284. name: "Oni",
  1285. parents: ["monster"]
  1286. },
  1287. "pegasus": {
  1288. name: "Pegasus",
  1289. parents: ["horse"]
  1290. },
  1291. "vulpera": {
  1292. name: "Vulpera",
  1293. parents: ["fennec-fox"]
  1294. },
  1295. "ceratosaurus": {
  1296. name: "Ceratosaurus",
  1297. parents: ["dinosaur"]
  1298. },
  1299. "nykur": {
  1300. name: "Nykur",
  1301. parents: ["horse", "monster"]
  1302. },
  1303. "giraffe": {
  1304. name: "Giraffe",
  1305. parents: ["mammal"]
  1306. },
  1307. "tauren": {
  1308. name: "Tauren",
  1309. parents: ["cow"]
  1310. },
  1311. "draconi": {
  1312. name: "Draconi",
  1313. parents: ["alien", "cat", "cyborg"]
  1314. },
  1315. "dire-wolf": {
  1316. name: "Dire Wolf",
  1317. parents: ["wolf"]
  1318. },
  1319. "ferromorph": {
  1320. name: "Ferromorph",
  1321. parents: ["construct"]
  1322. },
  1323. "meowth": {
  1324. name: "Meowth",
  1325. parents: ["cat", "pokemon"]
  1326. },
  1327. "pavodragon": {
  1328. name: "Pavodragon",
  1329. parents: ["dragon"]
  1330. },
  1331. "aaltranae": {
  1332. name: "Aaltranae",
  1333. parents: ["dragon"]
  1334. },
  1335. "cyborg": {
  1336. name: "Cyborg",
  1337. parents: ["machine"]
  1338. },
  1339. "draptor": {
  1340. name: "Draptor",
  1341. parents: ["dragon"]
  1342. },
  1343. "candy": {
  1344. name: "Candy",
  1345. parents: []
  1346. },
  1347. "drenath": {
  1348. name: "Drenath",
  1349. parents: ["dragon", "snake", "rabbit"]
  1350. },
  1351. "coyju": {
  1352. name: "Coyju",
  1353. parents: ["coyote", "kaiju"]
  1354. },
  1355. "kaiju": {
  1356. name: "Kaiju",
  1357. parents: ["monster"]
  1358. },
  1359. "nickit": {
  1360. name: "Nickit",
  1361. parents: ["pokemon", "cat"]
  1362. },
  1363. "lopunny": {
  1364. name: "Lopunny",
  1365. parents: ["pokemon", "rabbit"]
  1366. },
  1367. "korean-jindo-dog": {
  1368. name: "Korean Jindo Dog",
  1369. parents: ["dog"]
  1370. },
  1371. "naga": {
  1372. name: "Naga",
  1373. parents: ["snake", "monster"]
  1374. },
  1375. "undead": {
  1376. name: "Undead",
  1377. parents: ["monster"]
  1378. },
  1379. "whale": {
  1380. name: "Whale",
  1381. parents: ["fish"]
  1382. },
  1383. "gelato-bee": {
  1384. name: "Gelato Bee",
  1385. parents: ["bee"]
  1386. },
  1387. "bee": {
  1388. name: "Bee",
  1389. parents: ["insect"]
  1390. },
  1391. "gardevoir": {
  1392. name: "Gardevoir",
  1393. parents: ["pokemon"]
  1394. },
  1395. "ant": {
  1396. name: "Ant",
  1397. parents: ["insect"]
  1398. },
  1399. "frog": {
  1400. name: "Frog",
  1401. parents: ["amphibian"]
  1402. },
  1403. "amphibian": {
  1404. name: "Amphibian",
  1405. parents: ["animal"]
  1406. },
  1407. "pangolin": {
  1408. name: "Pangolin",
  1409. parents: ["mammal"]
  1410. },
  1411. "uragi'viidorn": {
  1412. name: "Uragi'viidorn",
  1413. parents: ["avian", "bear"]
  1414. },
  1415. "gryphdelphais": {
  1416. name: "Gryphdelphais",
  1417. parents: ["dolphin", "gryphon"]
  1418. },
  1419. "plush": {
  1420. name: "Plush",
  1421. parents: ["construct"]
  1422. },
  1423. "draiger": {
  1424. name: "Draiger",
  1425. parents: ["dragon","tiger"]
  1426. },
  1427. "foxsky": {
  1428. name: "Foxsky",
  1429. parents: ["fox", "husky"]
  1430. },
  1431. "umbreon": {
  1432. name: "Umbreon",
  1433. parents: ["eeveelution"]
  1434. },
  1435. "slime-dragon": {
  1436. name: "Slime Dragon",
  1437. parents: ["dragon"]
  1438. },
  1439. "enderman": {
  1440. name: "Enderman",
  1441. parents: ["monster"]
  1442. },
  1443. "gremlin": {
  1444. name: "Gremlin",
  1445. parents: ["monster"]
  1446. },
  1447. "dragonsune": {
  1448. name: "Dragonsune",
  1449. parents: ["dragon", "kitsune"]
  1450. },
  1451. "ghost": {
  1452. name: "Ghost",
  1453. parents: ["monster"]
  1454. },
  1455. "false-vampire-bat": {
  1456. name: "False Vampire Bat",
  1457. parents: ["bat"]
  1458. },
  1459. "succubus": {
  1460. name: "Succubus",
  1461. parents: ["demon"]
  1462. },
  1463. "mia": {
  1464. name: "Mia",
  1465. parents: ["canine"]
  1466. },
  1467. "rainbow": {
  1468. name: "Rainbow",
  1469. parents: ["monster"]
  1470. },
  1471. "solgaleo": {
  1472. name: "Solgaleo",
  1473. parents: ["pokemon"]
  1474. },
  1475. "lucent-nargacuga": {
  1476. name: "Lucent Nargacuga",
  1477. parents: ["monster-hunter"]
  1478. },
  1479. "monster-hunter": {
  1480. name: "Monster Hunter",
  1481. parents: ["monster"]
  1482. },
  1483. "leviathan": {
  1484. "name": "Leviathan",
  1485. "url": "sea-monster"
  1486. },
  1487. "bull": {
  1488. name: "Bull",
  1489. parents: ["mammal"]
  1490. },
  1491. "tanuki": {
  1492. name: "Tanuki",
  1493. parents: ["monster"]
  1494. },
  1495. "chakat": {
  1496. name: "Chakat",
  1497. parents: ["cat"]
  1498. },
  1499. "hydra": {
  1500. name: "Hydra",
  1501. parents: ["monster"]
  1502. },
  1503. "zigzagoon": {
  1504. name: "Zigzagoon",
  1505. parents: ["raccoon", "pokemon"]
  1506. },
  1507. "vulture": {
  1508. name: "Vulture",
  1509. parents: ["avian"]
  1510. },
  1511. "eastern-dragon": {
  1512. name: "Eastern Dragon",
  1513. parents: ["dragon"]
  1514. },
  1515. "gryffon": {
  1516. name: "Gryffon",
  1517. parents: ["phoenix", "red-panda"]
  1518. },
  1519. "amtsvane": {
  1520. name: "Amtsvane",
  1521. parents: ["reptile"]
  1522. },
  1523. "kigavi": {
  1524. name: "Kigavi",
  1525. parents: ["avian"]
  1526. },
  1527. "turian": {
  1528. name: "Turian",
  1529. parents: ["avian"]
  1530. },
  1531. "zeraora": {
  1532. name: "Zeraora",
  1533. parents: ["pokemon"]
  1534. },
  1535. "sandshrew": {
  1536. name: "Sandshrew",
  1537. parents: ["pokemon", "pangolin"]
  1538. },
  1539. "valais-blacknose-sheep": {
  1540. name: "Valais Blacknose Sheep",
  1541. parents: ["sheep"]
  1542. },
  1543. "novaleit": {
  1544. name: "Novaleit",
  1545. parents: ["mammal"]
  1546. },
  1547. "dunnoh": {
  1548. name: "Dunnoh",
  1549. parents: ["mammal"]
  1550. },
  1551. "lunaral-dragon": {
  1552. name: "Lunaral Dragon",
  1553. parents: ["dragon"]
  1554. },
  1555. "arctic-wolf": {
  1556. name: "Arctic Wolf",
  1557. parents: ["wolf"]
  1558. },
  1559. "donkey": {
  1560. name: "Donkey",
  1561. parents: ["horse"]
  1562. },
  1563. "chinchilla": {
  1564. name: "Chinchilla",
  1565. parents: ["rodent"]
  1566. },
  1567. "felkin": {
  1568. name: "Felkin",
  1569. parents: ["dragon"]
  1570. },
  1571. "tykeriel": {
  1572. name: "Tykeriel",
  1573. parents: ["avian"]
  1574. },
  1575. "folf": {
  1576. name: "Folf",
  1577. parents: ["fox", "wolf"]
  1578. },
  1579. "pooltoy": {
  1580. name: "Pooltoy",
  1581. parents: ["construct"]
  1582. },
  1583. "demi": {
  1584. name: "Demi",
  1585. parents: ["human"]
  1586. },
  1587. "stegosaurus": {
  1588. name: "Stegosaurus",
  1589. parents: ["dinosaur"]
  1590. },
  1591. }
  1592. //species
  1593. function getSpeciesInfo(speciesList) {
  1594. let result = new Set();
  1595. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1596. result.add(entry)
  1597. });
  1598. return Array.from(result);
  1599. };
  1600. function getSpeciesInfoHelper(species) {
  1601. if (!speciesData[species]) {
  1602. console.warn(species + " doesn't exist");
  1603. return [];
  1604. }
  1605. if (speciesData[species].parents) {
  1606. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1607. } else {
  1608. return [species];
  1609. }
  1610. }
  1611. characterMakers.push(() => makeCharacter(
  1612. {
  1613. name: "Fen",
  1614. species: ["crux"],
  1615. description: {
  1616. title: "Bio",
  1617. text: "Very furry. Sheds on everything."
  1618. },
  1619. tags: [
  1620. "anthro",
  1621. "goo"
  1622. ]
  1623. },
  1624. {
  1625. back: {
  1626. height: math.unit(2.2428, "meter"),
  1627. weight: math.unit(124.738, "kg"),
  1628. name: "Back",
  1629. image: {
  1630. source: "./media/characters/fen/back.svg",
  1631. extra: 2024 / 1867,
  1632. bottom: 13 / 2037
  1633. },
  1634. info: {
  1635. description: {
  1636. mode: "append",
  1637. text: "\n\nHe is not currently looking at you."
  1638. }
  1639. }
  1640. },
  1641. full: {
  1642. height: math.unit(1.34, "meter"),
  1643. weight: math.unit(225, "kg"),
  1644. name: "Full",
  1645. image: {
  1646. source: "./media/characters/fen/full.svg"
  1647. },
  1648. info: {
  1649. description: {
  1650. mode: "append",
  1651. text: "\n\nMunch."
  1652. }
  1653. }
  1654. },
  1655. kneeling: {
  1656. height: math.unit(5.4, "feet"),
  1657. weight: math.unit(124.738, "kg"),
  1658. name: "Kneeling",
  1659. image: {
  1660. source: "./media/characters/fen/kneeling.svg",
  1661. extra: 563 / 507
  1662. }
  1663. },
  1664. goo: {
  1665. height: math.unit(2.8, "feet"),
  1666. weight: math.unit(125, "kg"),
  1667. capacity: math.unit(1, "people"),
  1668. name: "Goo",
  1669. image: {
  1670. source: "./media/characters/fen/goo.svg",
  1671. bottom: 116 / 613
  1672. }
  1673. },
  1674. lounging: {
  1675. height: math.unit(6.5, "feet"),
  1676. weight: math.unit(125, "kg"),
  1677. name: "Lounging",
  1678. image: {
  1679. source: "./media/characters/fen/lounging.svg"
  1680. }
  1681. },
  1682. },
  1683. [
  1684. {
  1685. name: "Normal",
  1686. height: math.unit(2.2428, "meter")
  1687. },
  1688. {
  1689. name: "Big",
  1690. height: math.unit(12, "feet")
  1691. },
  1692. {
  1693. name: "Minimacro",
  1694. height: math.unit(40, "feet"),
  1695. default: true,
  1696. info: {
  1697. description: {
  1698. mode: "append",
  1699. text: "\n\nTOO DAMN BIG"
  1700. }
  1701. }
  1702. },
  1703. {
  1704. name: "Macro",
  1705. height: math.unit(100, "feet"),
  1706. info: {
  1707. description: {
  1708. mode: "append",
  1709. text: "\n\nTOO DAMN BIG"
  1710. }
  1711. }
  1712. },
  1713. {
  1714. name: "Macro+",
  1715. height: math.unit(300, "feet")
  1716. },
  1717. {
  1718. name: "Megamacro",
  1719. height: math.unit(2, "miles")
  1720. }
  1721. ]
  1722. ))
  1723. characterMakers.push(() => makeCharacter(
  1724. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1725. {
  1726. front: {
  1727. height: math.unit(183, "cm"),
  1728. weight: math.unit(80, "kg"),
  1729. name: "Front",
  1730. image: {
  1731. source: "./media/characters/sofia-fluttertail/front.svg",
  1732. bottom: 0.01,
  1733. extra: 2154 / 2081
  1734. }
  1735. },
  1736. frontAlt: {
  1737. height: math.unit(183, "cm"),
  1738. weight: math.unit(80, "kg"),
  1739. name: "Front (alt)",
  1740. image: {
  1741. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1742. }
  1743. },
  1744. back: {
  1745. height: math.unit(183, "cm"),
  1746. weight: math.unit(80, "kg"),
  1747. name: "Back",
  1748. image: {
  1749. source: "./media/characters/sofia-fluttertail/back.svg"
  1750. }
  1751. },
  1752. kneeling: {
  1753. height: math.unit(125, "cm"),
  1754. weight: math.unit(80, "kg"),
  1755. name: "Kneeling",
  1756. image: {
  1757. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1758. extra: 1033 / 977,
  1759. bottom: 23.7 / 1057
  1760. }
  1761. },
  1762. maw: {
  1763. height: math.unit(183 / 5, "cm"),
  1764. name: "Maw",
  1765. image: {
  1766. source: "./media/characters/sofia-fluttertail/maw.svg"
  1767. }
  1768. },
  1769. mawcloseup: {
  1770. height: math.unit(183 / 5 * 0.41, "cm"),
  1771. name: "Maw (Closeup)",
  1772. image: {
  1773. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1774. }
  1775. },
  1776. paws: {
  1777. height: math.unit(1.17, "feet"),
  1778. name: "Paws",
  1779. image: {
  1780. source: "./media/characters/sofia-fluttertail/paws.svg",
  1781. extra: 851 / 851,
  1782. bottom: 17 / 868
  1783. }
  1784. },
  1785. },
  1786. [
  1787. {
  1788. name: "Normal",
  1789. height: math.unit(1.83, "meter")
  1790. },
  1791. {
  1792. name: "Size Thief",
  1793. height: math.unit(18, "feet")
  1794. },
  1795. {
  1796. name: "50 Foot Collie",
  1797. height: math.unit(50, "feet")
  1798. },
  1799. {
  1800. name: "Macro",
  1801. height: math.unit(96, "feet"),
  1802. default: true
  1803. },
  1804. {
  1805. name: "Megamerger",
  1806. height: math.unit(650, "feet")
  1807. },
  1808. ]
  1809. ))
  1810. characterMakers.push(() => makeCharacter(
  1811. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1812. {
  1813. front: {
  1814. height: math.unit(7, "feet"),
  1815. weight: math.unit(100, "kg"),
  1816. name: "Front",
  1817. image: {
  1818. source: "./media/characters/march/front.svg",
  1819. extra: 1,
  1820. bottom: 0.015
  1821. }
  1822. },
  1823. foot: {
  1824. height: math.unit(0.9, "feet"),
  1825. name: "Foot",
  1826. image: {
  1827. source: "./media/characters/march/foot.svg"
  1828. }
  1829. },
  1830. },
  1831. [
  1832. {
  1833. name: "Normal",
  1834. height: math.unit(7.9, "feet")
  1835. },
  1836. {
  1837. name: "Macro",
  1838. height: math.unit(220, "meters")
  1839. },
  1840. {
  1841. name: "Megamacro",
  1842. height: math.unit(2.98, "km"),
  1843. default: true
  1844. },
  1845. {
  1846. name: "Gigamacro",
  1847. height: math.unit(15963, "km")
  1848. },
  1849. {
  1850. name: "Teramacro",
  1851. height: math.unit(2980000000, "km")
  1852. },
  1853. {
  1854. name: "Examacro",
  1855. height: math.unit(250, "parsecs")
  1856. },
  1857. ]
  1858. ))
  1859. characterMakers.push(() => makeCharacter(
  1860. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1861. {
  1862. front: {
  1863. height: math.unit(6, "feet"),
  1864. weight: math.unit(60, "kg"),
  1865. name: "Front",
  1866. image: {
  1867. source: "./media/characters/noir/front.svg",
  1868. extra: 1,
  1869. bottom: 0.032
  1870. }
  1871. },
  1872. },
  1873. [
  1874. {
  1875. name: "Normal",
  1876. height: math.unit(6.6, "feet")
  1877. },
  1878. {
  1879. name: "Macro",
  1880. height: math.unit(500, "feet")
  1881. },
  1882. {
  1883. name: "Megamacro",
  1884. height: math.unit(2.5, "km"),
  1885. default: true
  1886. },
  1887. {
  1888. name: "Gigamacro",
  1889. height: math.unit(22500, "km")
  1890. },
  1891. {
  1892. name: "Teramacro",
  1893. height: math.unit(2500000000, "km")
  1894. },
  1895. {
  1896. name: "Examacro",
  1897. height: math.unit(200, "parsecs")
  1898. },
  1899. ]
  1900. ))
  1901. characterMakers.push(() => makeCharacter(
  1902. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1903. {
  1904. front: {
  1905. height: math.unit(7, "feet"),
  1906. weight: math.unit(100, "kg"),
  1907. name: "Front",
  1908. image: {
  1909. source: "./media/characters/okuri/front.svg",
  1910. extra: 1,
  1911. bottom: 0.037
  1912. }
  1913. },
  1914. back: {
  1915. height: math.unit(7, "feet"),
  1916. weight: math.unit(100, "kg"),
  1917. name: "Back",
  1918. image: {
  1919. source: "./media/characters/okuri/back.svg",
  1920. extra: 1,
  1921. bottom: 0.007
  1922. }
  1923. },
  1924. },
  1925. [
  1926. {
  1927. name: "Megamacro",
  1928. height: math.unit(100, "miles"),
  1929. default: true
  1930. },
  1931. ]
  1932. ))
  1933. characterMakers.push(() => makeCharacter(
  1934. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1935. {
  1936. front: {
  1937. height: math.unit(7, "feet"),
  1938. weight: math.unit(100, "kg"),
  1939. name: "Front",
  1940. image: {
  1941. source: "./media/characters/manny/front.svg",
  1942. extra: 1,
  1943. bottom: 0.06
  1944. }
  1945. },
  1946. back: {
  1947. height: math.unit(7, "feet"),
  1948. weight: math.unit(100, "kg"),
  1949. name: "Back",
  1950. image: {
  1951. source: "./media/characters/manny/back.svg",
  1952. extra: 1,
  1953. bottom: 0.014
  1954. }
  1955. },
  1956. },
  1957. [
  1958. {
  1959. name: "Normal",
  1960. height: math.unit(7, "feet"),
  1961. },
  1962. {
  1963. name: "Macro",
  1964. height: math.unit(78, "feet"),
  1965. default: true
  1966. },
  1967. {
  1968. name: "Macro+",
  1969. height: math.unit(300, "meters")
  1970. },
  1971. {
  1972. name: "Macro++",
  1973. height: math.unit(2400, "meters")
  1974. },
  1975. {
  1976. name: "Megamacro",
  1977. height: math.unit(5167, "meters")
  1978. },
  1979. {
  1980. name: "Gigamacro",
  1981. height: math.unit(41769, "miles")
  1982. },
  1983. ]
  1984. ))
  1985. characterMakers.push(() => makeCharacter(
  1986. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1987. {
  1988. front: {
  1989. height: math.unit(7, "feet"),
  1990. weight: math.unit(100, "kg"),
  1991. name: "Front",
  1992. image: {
  1993. source: "./media/characters/adake/front-1.svg"
  1994. }
  1995. },
  1996. frontAlt: {
  1997. height: math.unit(7, "feet"),
  1998. weight: math.unit(100, "kg"),
  1999. name: "Front (Alt)",
  2000. image: {
  2001. source: "./media/characters/adake/front-2.svg",
  2002. extra: 1,
  2003. bottom: 0.01
  2004. }
  2005. },
  2006. back: {
  2007. height: math.unit(7, "feet"),
  2008. weight: math.unit(100, "kg"),
  2009. name: "Back",
  2010. image: {
  2011. source: "./media/characters/adake/back.svg",
  2012. }
  2013. },
  2014. kneel: {
  2015. height: math.unit(5.385, "feet"),
  2016. weight: math.unit(100, "kg"),
  2017. name: "Kneeling",
  2018. image: {
  2019. source: "./media/characters/adake/kneel.svg",
  2020. bottom: 0.052
  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: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2054. {
  2055. front: {
  2056. height: math.unit(1.65, "meters"),
  2057. weight: math.unit(50, "kg"),
  2058. name: "Front",
  2059. image: {
  2060. source: "./media/characters/elijah/front.svg",
  2061. extra: 858 / 830,
  2062. bottom: 95.5 / 953.8559
  2063. }
  2064. },
  2065. back: {
  2066. height: math.unit(1.65, "meters"),
  2067. weight: math.unit(50, "kg"),
  2068. name: "Back",
  2069. image: {
  2070. source: "./media/characters/elijah/back.svg",
  2071. extra: 895 / 850,
  2072. bottom: 5.3 / 897.956
  2073. }
  2074. },
  2075. frontNsfw: {
  2076. height: math.unit(1.65, "meters"),
  2077. weight: math.unit(50, "kg"),
  2078. name: "Front (NSFW)",
  2079. image: {
  2080. source: "./media/characters/elijah/front-nsfw.svg",
  2081. extra: 858 / 830,
  2082. bottom: 95.5 / 953.8559
  2083. }
  2084. },
  2085. backNsfw: {
  2086. height: math.unit(1.65, "meters"),
  2087. weight: math.unit(50, "kg"),
  2088. name: "Back (NSFW)",
  2089. image: {
  2090. source: "./media/characters/elijah/back-nsfw.svg",
  2091. extra: 895 / 850,
  2092. bottom: 5.3 / 897.956
  2093. }
  2094. },
  2095. dick: {
  2096. height: math.unit(1, "feet"),
  2097. name: "Dick",
  2098. image: {
  2099. source: "./media/characters/elijah/dick.svg"
  2100. }
  2101. },
  2102. beakOpen: {
  2103. height: math.unit(1.25, "feet"),
  2104. name: "Beak (Open)",
  2105. image: {
  2106. source: "./media/characters/elijah/beak-open.svg"
  2107. }
  2108. },
  2109. beakShut: {
  2110. height: math.unit(1.25, "feet"),
  2111. name: "Beak (Shut)",
  2112. image: {
  2113. source: "./media/characters/elijah/beak-shut.svg"
  2114. }
  2115. },
  2116. footFlexing: {
  2117. height: math.unit(1.61, "feet"),
  2118. name: "Foot (Flexing)",
  2119. image: {
  2120. source: "./media/characters/elijah/foot-flexing.svg"
  2121. }
  2122. },
  2123. footStepping: {
  2124. height: math.unit(1.44, "feet"),
  2125. name: "Foot (Stepping)",
  2126. image: {
  2127. source: "./media/characters/elijah/foot-stepping.svg"
  2128. }
  2129. },
  2130. plantigradeLeg: {
  2131. height: math.unit(2.34, "feet"),
  2132. name: "Plantigrade Leg",
  2133. image: {
  2134. source: "./media/characters/elijah/plantigrade-leg.svg"
  2135. }
  2136. },
  2137. plantigradeFootLeft: {
  2138. height: math.unit(0.9, "feet"),
  2139. name: "Plantigrade Foot (Left)",
  2140. image: {
  2141. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2142. }
  2143. },
  2144. plantigradeFootRight: {
  2145. height: math.unit(0.9, "feet"),
  2146. name: "Plantigrade Foot (Right)",
  2147. image: {
  2148. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2149. }
  2150. },
  2151. },
  2152. [
  2153. {
  2154. name: "Normal",
  2155. height: math.unit(1.65, "meters")
  2156. },
  2157. {
  2158. name: "Macro",
  2159. height: math.unit(55, "meters"),
  2160. default: true
  2161. },
  2162. {
  2163. name: "Macro+",
  2164. height: math.unit(105, "meters")
  2165. },
  2166. ]
  2167. ))
  2168. characterMakers.push(() => makeCharacter(
  2169. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2170. {
  2171. front: {
  2172. height: math.unit(11, "feet"),
  2173. weight: math.unit(320, "kg"),
  2174. name: "Front",
  2175. image: {
  2176. source: "./media/characters/rai/front.svg",
  2177. extra: 1802/1696,
  2178. bottom: 68/1870
  2179. }
  2180. },
  2181. frontDressed: {
  2182. height: math.unit(11, "feet"),
  2183. weight: math.unit(320, "kg"),
  2184. name: "Front (Dressed)",
  2185. image: {
  2186. source: "./media/characters/rai/front-dressed.svg",
  2187. extra: 1802/1696,
  2188. bottom: 68/1870
  2189. }
  2190. },
  2191. side: {
  2192. height: math.unit(11, "feet"),
  2193. weight: math.unit(320, "kg"),
  2194. name: "Side",
  2195. image: {
  2196. source: "./media/characters/rai/side.svg",
  2197. extra: 1789/1710,
  2198. bottom: 115/1904
  2199. }
  2200. },
  2201. back: {
  2202. height: math.unit(11, "feet"),
  2203. weight: math.unit(320, "kg"),
  2204. name: "Back",
  2205. image: {
  2206. source: "./media/characters/rai/back.svg",
  2207. extra: 1770/1707,
  2208. bottom: 28/1798
  2209. }
  2210. },
  2211. feral: {
  2212. height: math.unit(11, "feet"),
  2213. weight: math.unit(640, "kg"),
  2214. name: "Feral",
  2215. image: {
  2216. source: "./media/characters/rai/feral.svg",
  2217. extra: 1035/642,
  2218. bottom: 86/1121
  2219. }
  2220. },
  2221. dragon: {
  2222. height: math.unit(23, "feet"),
  2223. weight: math.unit(50000, "lb"),
  2224. name: "Dragon",
  2225. image: {
  2226. source: "./media/characters/rai/dragon.svg",
  2227. extra: 2498 / 2030,
  2228. bottom: 85.2 / 2584
  2229. }
  2230. },
  2231. maw: {
  2232. height: math.unit(6 / 3.81416, "feet"),
  2233. name: "Maw",
  2234. image: {
  2235. source: "./media/characters/rai/maw.svg"
  2236. }
  2237. },
  2238. },
  2239. [
  2240. {
  2241. name: "Normal",
  2242. height: math.unit(11, "feet")
  2243. },
  2244. {
  2245. name: "Macro",
  2246. height: math.unit(302, "feet"),
  2247. default: true
  2248. },
  2249. ]
  2250. ))
  2251. characterMakers.push(() => makeCharacter(
  2252. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2253. {
  2254. frontDressed: {
  2255. height: math.unit(216, "feet"),
  2256. weight: math.unit(7000000, "lb"),
  2257. name: "Front (Dressed)",
  2258. image: {
  2259. source: "./media/characters/jazzy/front-dressed.svg",
  2260. extra: 2738 / 2651,
  2261. bottom: 41.8 / 2786
  2262. }
  2263. },
  2264. backDressed: {
  2265. height: math.unit(216, "feet"),
  2266. weight: math.unit(7000000, "lb"),
  2267. name: "Back (Dressed)",
  2268. image: {
  2269. source: "./media/characters/jazzy/back-dressed.svg",
  2270. extra: 2775 / 2673,
  2271. bottom: 36.8 / 2817
  2272. }
  2273. },
  2274. front: {
  2275. height: math.unit(216, "feet"),
  2276. weight: math.unit(7000000, "lb"),
  2277. name: "Front",
  2278. image: {
  2279. source: "./media/characters/jazzy/front.svg",
  2280. extra: 2738 / 2651,
  2281. bottom: 41.8 / 2786
  2282. }
  2283. },
  2284. back: {
  2285. height: math.unit(216, "feet"),
  2286. weight: math.unit(7000000, "lb"),
  2287. name: "Back",
  2288. image: {
  2289. source: "./media/characters/jazzy/back.svg",
  2290. extra: 2775 / 2673,
  2291. bottom: 36.8 / 2817
  2292. }
  2293. },
  2294. maw: {
  2295. height: math.unit(20, "feet"),
  2296. name: "Maw",
  2297. image: {
  2298. source: "./media/characters/jazzy/maw.svg"
  2299. }
  2300. },
  2301. paws: {
  2302. height: math.unit(27.5, "feet"),
  2303. name: "Paws",
  2304. image: {
  2305. source: "./media/characters/jazzy/paws.svg"
  2306. }
  2307. },
  2308. eye: {
  2309. height: math.unit(4.4, "feet"),
  2310. name: "Eye",
  2311. image: {
  2312. source: "./media/characters/jazzy/eye.svg"
  2313. }
  2314. },
  2315. droneOffense: {
  2316. height: math.unit(9.5, "inches"),
  2317. name: "Drone (Offense)",
  2318. image: {
  2319. source: "./media/characters/jazzy/drone-offense.svg"
  2320. }
  2321. },
  2322. droneRecon: {
  2323. height: math.unit(9.5, "inches"),
  2324. name: "Drone (Recon)",
  2325. image: {
  2326. source: "./media/characters/jazzy/drone-recon.svg"
  2327. }
  2328. },
  2329. droneDefense: {
  2330. height: math.unit(9.5, "inches"),
  2331. name: "Drone (Defense)",
  2332. image: {
  2333. source: "./media/characters/jazzy/drone-defense.svg"
  2334. }
  2335. },
  2336. },
  2337. [
  2338. {
  2339. name: "Macro",
  2340. height: math.unit(216, "feet"),
  2341. default: true
  2342. },
  2343. ]
  2344. ))
  2345. characterMakers.push(() => makeCharacter(
  2346. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2347. {
  2348. front: {
  2349. height: math.unit(9 + 6/12, "feet"),
  2350. weight: math.unit(700, "lb"),
  2351. name: "Front",
  2352. image: {
  2353. source: "./media/characters/flamm/front.svg",
  2354. extra: 1751/1632,
  2355. bottom: 46/1797
  2356. }
  2357. },
  2358. buff: {
  2359. height: math.unit(9 + 6/12, "feet"),
  2360. weight: math.unit(950, "lb"),
  2361. name: "Buff",
  2362. image: {
  2363. source: "./media/characters/flamm/buff.svg",
  2364. extra: 3018/2874,
  2365. bottom: 221/3239
  2366. }
  2367. },
  2368. },
  2369. [
  2370. {
  2371. name: "Normal",
  2372. height: math.unit(9.5, "feet")
  2373. },
  2374. {
  2375. name: "Macro",
  2376. height: math.unit(200, "feet"),
  2377. default: true
  2378. },
  2379. ]
  2380. ))
  2381. characterMakers.push(() => makeCharacter(
  2382. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2383. {
  2384. front: {
  2385. height: math.unit(5 + 3/12, "feet"),
  2386. weight: math.unit(60, "kg"),
  2387. name: "Front",
  2388. image: {
  2389. source: "./media/characters/zephiro/front.svg",
  2390. extra: 2309 / 2162,
  2391. bottom: 0.069
  2392. }
  2393. },
  2394. side: {
  2395. height: math.unit(5 + 3/12, "feet"),
  2396. weight: math.unit(60, "kg"),
  2397. name: "Side",
  2398. image: {
  2399. source: "./media/characters/zephiro/side.svg",
  2400. extra: 2403 / 2279,
  2401. bottom: 0.015
  2402. }
  2403. },
  2404. back: {
  2405. height: math.unit(5 + 3/12, "feet"),
  2406. weight: math.unit(60, "kg"),
  2407. name: "Back",
  2408. image: {
  2409. source: "./media/characters/zephiro/back.svg",
  2410. extra: 2373 / 2244,
  2411. bottom: 0.013
  2412. }
  2413. },
  2414. hand: {
  2415. height: math.unit(0.68, "feet"),
  2416. name: "Hand",
  2417. image: {
  2418. source: "./media/characters/zephiro/hand.svg"
  2419. }
  2420. },
  2421. paw: {
  2422. height: math.unit(1, "feet"),
  2423. name: "Paw",
  2424. image: {
  2425. source: "./media/characters/zephiro/paw.svg"
  2426. }
  2427. },
  2428. beans: {
  2429. height: math.unit(0.93, "feet"),
  2430. name: "Beans",
  2431. image: {
  2432. source: "./media/characters/zephiro/beans.svg"
  2433. }
  2434. },
  2435. },
  2436. [
  2437. {
  2438. name: "Micro",
  2439. height: math.unit(3, "inches")
  2440. },
  2441. {
  2442. name: "Normal",
  2443. height: math.unit(5 + 3 / 12, "feet"),
  2444. default: true
  2445. },
  2446. {
  2447. name: "Macro",
  2448. height: math.unit(118, "feet")
  2449. },
  2450. ]
  2451. ))
  2452. characterMakers.push(() => makeCharacter(
  2453. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2454. {
  2455. front: {
  2456. height: math.unit(5, "feet"),
  2457. weight: math.unit(90, "kg"),
  2458. name: "Front",
  2459. image: {
  2460. source: "./media/characters/fory/front.svg",
  2461. extra: 2862 / 2674,
  2462. bottom: 180 / 3043.8
  2463. }
  2464. },
  2465. back: {
  2466. height: math.unit(5, "feet"),
  2467. weight: math.unit(90, "kg"),
  2468. name: "Back",
  2469. image: {
  2470. source: "./media/characters/fory/back.svg",
  2471. extra: 2962 / 2791,
  2472. bottom: 106 / 3071.8
  2473. }
  2474. },
  2475. foot: {
  2476. height: math.unit(2.14, "feet"),
  2477. name: "Foot",
  2478. image: {
  2479. source: "./media/characters/fory/foot.svg"
  2480. }
  2481. },
  2482. },
  2483. [
  2484. {
  2485. name: "Normal",
  2486. height: math.unit(5, "feet")
  2487. },
  2488. {
  2489. name: "Macro",
  2490. height: math.unit(50, "feet"),
  2491. default: true
  2492. },
  2493. {
  2494. name: "Megamacro",
  2495. height: math.unit(10, "miles")
  2496. },
  2497. {
  2498. name: "Gigamacro",
  2499. height: math.unit(5, "earths")
  2500. },
  2501. ]
  2502. ))
  2503. characterMakers.push(() => makeCharacter(
  2504. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2505. {
  2506. front: {
  2507. height: math.unit(7, "feet"),
  2508. weight: math.unit(90, "kg"),
  2509. name: "Front",
  2510. image: {
  2511. source: "./media/characters/kurrikage/front.svg",
  2512. extra: 1,
  2513. bottom: 0.035
  2514. }
  2515. },
  2516. back: {
  2517. height: math.unit(7, "feet"),
  2518. weight: math.unit(90, "lb"),
  2519. name: "Back",
  2520. image: {
  2521. source: "./media/characters/kurrikage/back.svg"
  2522. }
  2523. },
  2524. paw: {
  2525. height: math.unit(1.5, "feet"),
  2526. name: "Paw",
  2527. image: {
  2528. source: "./media/characters/kurrikage/paw.svg"
  2529. }
  2530. },
  2531. staff: {
  2532. height: math.unit(6.7, "feet"),
  2533. name: "Staff",
  2534. image: {
  2535. source: "./media/characters/kurrikage/staff.svg"
  2536. }
  2537. },
  2538. peek: {
  2539. height: math.unit(1.05, "feet"),
  2540. name: "Peeking",
  2541. image: {
  2542. source: "./media/characters/kurrikage/peek.svg",
  2543. bottom: 0.08
  2544. }
  2545. },
  2546. },
  2547. [
  2548. {
  2549. name: "Normal",
  2550. height: math.unit(12, "feet"),
  2551. default: true
  2552. },
  2553. {
  2554. name: "Big",
  2555. height: math.unit(20, "feet")
  2556. },
  2557. {
  2558. name: "Macro",
  2559. height: math.unit(500, "feet")
  2560. },
  2561. {
  2562. name: "Megamacro",
  2563. height: math.unit(20, "miles")
  2564. },
  2565. ]
  2566. ))
  2567. characterMakers.push(() => makeCharacter(
  2568. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2569. {
  2570. front: {
  2571. height: math.unit(6, "feet"),
  2572. weight: math.unit(75, "kg"),
  2573. name: "Front",
  2574. image: {
  2575. source: "./media/characters/shingo/front.svg",
  2576. extra: 706/681,
  2577. bottom: 11/717
  2578. }
  2579. },
  2580. frontAlt: {
  2581. height: math.unit(6, "feet"),
  2582. weight: math.unit(75, "kg"),
  2583. name: "Front (Alt)",
  2584. image: {
  2585. source: "./media/characters/shingo/front-alt.svg",
  2586. extra: 3511 / 3338,
  2587. bottom: 0.005
  2588. }
  2589. },
  2590. paw: {
  2591. height: math.unit(1, "feet"),
  2592. name: "Paw",
  2593. image: {
  2594. source: "./media/characters/shingo/paw.svg"
  2595. }
  2596. },
  2597. },
  2598. [
  2599. {
  2600. name: "Micro",
  2601. height: math.unit(4, "inches")
  2602. },
  2603. {
  2604. name: "Normal",
  2605. height: math.unit(6, "feet"),
  2606. default: true
  2607. },
  2608. {
  2609. name: "Macro",
  2610. height: math.unit(108, "feet")
  2611. },
  2612. {
  2613. name: "Macro+",
  2614. height: math.unit(1500, "feet")
  2615. },
  2616. ]
  2617. ))
  2618. characterMakers.push(() => makeCharacter(
  2619. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2620. {
  2621. side: {
  2622. height: math.unit(6, "feet"),
  2623. weight: math.unit(75, "kg"),
  2624. name: "Side",
  2625. image: {
  2626. source: "./media/characters/aigey/side.svg"
  2627. }
  2628. },
  2629. },
  2630. [
  2631. {
  2632. name: "Macro",
  2633. height: math.unit(200, "feet"),
  2634. default: true
  2635. },
  2636. {
  2637. name: "Megamacro",
  2638. height: math.unit(100, "miles")
  2639. },
  2640. ]
  2641. )
  2642. )
  2643. characterMakers.push(() => makeCharacter(
  2644. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2645. {
  2646. front: {
  2647. height: math.unit(5 + 5 / 12, "feet"),
  2648. weight: math.unit(75, "kg"),
  2649. name: "Front",
  2650. image: {
  2651. source: "./media/characters/natasha/front.svg",
  2652. extra: 859 / 824,
  2653. bottom: 23 / 879.6
  2654. }
  2655. },
  2656. frontNsfw: {
  2657. height: math.unit(5 + 5 / 12, "feet"),
  2658. weight: math.unit(75, "kg"),
  2659. name: "Front (NSFW)",
  2660. image: {
  2661. source: "./media/characters/natasha/front-nsfw.svg",
  2662. extra: 859 / 824,
  2663. bottom: 23 / 879.6
  2664. }
  2665. },
  2666. frontErect: {
  2667. height: math.unit(5 + 5 / 12, "feet"),
  2668. weight: math.unit(75, "kg"),
  2669. name: "Front (Erect)",
  2670. image: {
  2671. source: "./media/characters/natasha/front-erect.svg",
  2672. extra: 859 / 824,
  2673. bottom: 23 / 879.6
  2674. }
  2675. },
  2676. back: {
  2677. height: math.unit(5 + 5 / 12, "feet"),
  2678. weight: math.unit(75, "kg"),
  2679. name: "Back",
  2680. image: {
  2681. source: "./media/characters/natasha/back.svg",
  2682. extra: 887.9 / 852.6,
  2683. bottom: 9.7 / 896.4
  2684. }
  2685. },
  2686. backAlt: {
  2687. height: math.unit(5 + 5 / 12, "feet"),
  2688. weight: math.unit(75, "kg"),
  2689. name: "Back (Alt)",
  2690. image: {
  2691. source: "./media/characters/natasha/back-alt.svg",
  2692. extra: 1236.7 / 1192,
  2693. bottom: 22.3 / 1258.2
  2694. }
  2695. },
  2696. dick: {
  2697. height: math.unit(1.772, "feet"),
  2698. name: "Dick",
  2699. image: {
  2700. source: "./media/characters/natasha/dick.svg"
  2701. }
  2702. },
  2703. paw: {
  2704. height: math.unit(0.250, "meters"),
  2705. name: "Paw",
  2706. image: {
  2707. source: "./media/characters/natasha/paw.svg"
  2708. }
  2709. },
  2710. },
  2711. [
  2712. {
  2713. name: "Normal",
  2714. height: math.unit(5 + 5 / 12, "feet")
  2715. },
  2716. {
  2717. name: "Large",
  2718. height: math.unit(12, "feet")
  2719. },
  2720. {
  2721. name: "Macro",
  2722. height: math.unit(100, "feet"),
  2723. default: true
  2724. },
  2725. {
  2726. name: "Macro+",
  2727. height: math.unit(260, "feet")
  2728. },
  2729. {
  2730. name: "Macro++",
  2731. height: math.unit(1, "mile")
  2732. },
  2733. ]
  2734. ))
  2735. characterMakers.push(() => makeCharacter(
  2736. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2737. {
  2738. front: {
  2739. height: math.unit(6, "feet"),
  2740. weight: math.unit(75, "kg"),
  2741. name: "Front",
  2742. image: {
  2743. source: "./media/characters/malik/front.svg"
  2744. }
  2745. },
  2746. side: {
  2747. height: math.unit(6, "feet"),
  2748. weight: math.unit(75, "kg"),
  2749. name: "Side",
  2750. image: {
  2751. source: "./media/characters/malik/side.svg",
  2752. extra: 1.1539
  2753. }
  2754. },
  2755. back: {
  2756. height: math.unit(6, "feet"),
  2757. weight: math.unit(75, "kg"),
  2758. name: "Back",
  2759. image: {
  2760. source: "./media/characters/malik/back.svg"
  2761. }
  2762. },
  2763. },
  2764. [
  2765. {
  2766. name: "Macro",
  2767. height: math.unit(156, "feet"),
  2768. default: true
  2769. },
  2770. {
  2771. name: "Macro+",
  2772. height: math.unit(1188, "feet")
  2773. },
  2774. ]
  2775. ))
  2776. characterMakers.push(() => makeCharacter(
  2777. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2778. {
  2779. front: {
  2780. height: math.unit(6, "feet"),
  2781. weight: math.unit(75, "kg"),
  2782. name: "Front",
  2783. image: {
  2784. source: "./media/characters/sefer/front.svg",
  2785. extra: 848 / 659,
  2786. bottom: 28.3 / 876.442
  2787. }
  2788. },
  2789. back: {
  2790. height: math.unit(6, "feet"),
  2791. weight: math.unit(75, "kg"),
  2792. name: "Back",
  2793. image: {
  2794. source: "./media/characters/sefer/back.svg",
  2795. extra: 864 / 695,
  2796. bottom: 10 / 871
  2797. }
  2798. },
  2799. frontDressed: {
  2800. height: math.unit(6, "feet"),
  2801. weight: math.unit(75, "kg"),
  2802. name: "Front (Dressed)",
  2803. image: {
  2804. source: "./media/characters/sefer/front-dressed.svg",
  2805. extra: 839 / 653,
  2806. bottom: 37.6 / 878
  2807. }
  2808. },
  2809. },
  2810. [
  2811. {
  2812. name: "Normal",
  2813. height: math.unit(6, "feet"),
  2814. default: true
  2815. },
  2816. ]
  2817. ))
  2818. characterMakers.push(() => makeCharacter(
  2819. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2820. {
  2821. body: {
  2822. height: math.unit(2.2428, "meter"),
  2823. weight: math.unit(124.738, "kg"),
  2824. name: "Body",
  2825. image: {
  2826. extra: 1225 / 1050,
  2827. source: "./media/characters/north/front.svg"
  2828. }
  2829. }
  2830. },
  2831. [
  2832. {
  2833. name: "Micro",
  2834. height: math.unit(4, "inches")
  2835. },
  2836. {
  2837. name: "Macro",
  2838. height: math.unit(63, "meters")
  2839. },
  2840. {
  2841. name: "Megamacro",
  2842. height: math.unit(101, "miles"),
  2843. default: true
  2844. }
  2845. ]
  2846. ))
  2847. characterMakers.push(() => makeCharacter(
  2848. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2849. {
  2850. angled: {
  2851. height: math.unit(4, "meter"),
  2852. weight: math.unit(150, "kg"),
  2853. name: "Angled",
  2854. image: {
  2855. source: "./media/characters/talan/angled-sfw.svg",
  2856. bottom: 29 / 3734
  2857. }
  2858. },
  2859. angledNsfw: {
  2860. height: math.unit(4, "meter"),
  2861. weight: math.unit(150, "kg"),
  2862. name: "Angled (NSFW)",
  2863. image: {
  2864. source: "./media/characters/talan/angled-nsfw.svg",
  2865. bottom: 29 / 3734
  2866. }
  2867. },
  2868. frontNsfw: {
  2869. height: math.unit(4, "meter"),
  2870. weight: math.unit(150, "kg"),
  2871. name: "Front (NSFW)",
  2872. image: {
  2873. source: "./media/characters/talan/front-nsfw.svg",
  2874. bottom: 29 / 3734
  2875. }
  2876. },
  2877. sideNsfw: {
  2878. height: math.unit(4, "meter"),
  2879. weight: math.unit(150, "kg"),
  2880. name: "Side (NSFW)",
  2881. image: {
  2882. source: "./media/characters/talan/side-nsfw.svg",
  2883. bottom: 29 / 3734
  2884. }
  2885. },
  2886. back: {
  2887. height: math.unit(4, "meter"),
  2888. weight: math.unit(150, "kg"),
  2889. name: "Back",
  2890. image: {
  2891. source: "./media/characters/talan/back.svg"
  2892. }
  2893. },
  2894. dickBottom: {
  2895. height: math.unit(0.621, "meter"),
  2896. name: "Dick (Bottom)",
  2897. image: {
  2898. source: "./media/characters/talan/dick-bottom.svg"
  2899. }
  2900. },
  2901. dickTop: {
  2902. height: math.unit(0.621, "meter"),
  2903. name: "Dick (Top)",
  2904. image: {
  2905. source: "./media/characters/talan/dick-top.svg"
  2906. }
  2907. },
  2908. dickSide: {
  2909. height: math.unit(0.305, "meter"),
  2910. name: "Dick (Side)",
  2911. image: {
  2912. source: "./media/characters/talan/dick-side.svg"
  2913. }
  2914. },
  2915. dickFront: {
  2916. height: math.unit(0.305, "meter"),
  2917. name: "Dick (Front)",
  2918. image: {
  2919. source: "./media/characters/talan/dick-front.svg"
  2920. }
  2921. },
  2922. },
  2923. [
  2924. {
  2925. name: "Normal",
  2926. height: math.unit(4, "meters")
  2927. },
  2928. {
  2929. name: "Macro",
  2930. height: math.unit(100, "meters")
  2931. },
  2932. {
  2933. name: "Megamacro",
  2934. height: math.unit(2, "miles"),
  2935. default: true
  2936. },
  2937. {
  2938. name: "Gigamacro",
  2939. height: math.unit(5000, "miles")
  2940. },
  2941. {
  2942. name: "Teramacro",
  2943. height: math.unit(100, "parsecs")
  2944. }
  2945. ]
  2946. ))
  2947. characterMakers.push(() => makeCharacter(
  2948. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2949. {
  2950. front: {
  2951. height: math.unit(2, "meter"),
  2952. weight: math.unit(90, "kg"),
  2953. name: "Front",
  2954. image: {
  2955. source: "./media/characters/gael'rathus/front.svg"
  2956. }
  2957. },
  2958. frontAlt: {
  2959. height: math.unit(2, "meter"),
  2960. weight: math.unit(90, "kg"),
  2961. name: "Front (alt)",
  2962. image: {
  2963. source: "./media/characters/gael'rathus/front-alt.svg"
  2964. }
  2965. },
  2966. frontAlt2: {
  2967. height: math.unit(2, "meter"),
  2968. weight: math.unit(90, "kg"),
  2969. name: "Front (alt 2)",
  2970. image: {
  2971. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2972. }
  2973. }
  2974. },
  2975. [
  2976. {
  2977. name: "Normal",
  2978. height: math.unit(9, "feet"),
  2979. default: true
  2980. },
  2981. {
  2982. name: "Large",
  2983. height: math.unit(25, "feet")
  2984. },
  2985. {
  2986. name: "Macro",
  2987. height: math.unit(0.25, "miles")
  2988. },
  2989. {
  2990. name: "Megamacro",
  2991. height: math.unit(10, "miles")
  2992. }
  2993. ]
  2994. ))
  2995. characterMakers.push(() => makeCharacter(
  2996. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2997. {
  2998. side: {
  2999. height: math.unit(2, "meter"),
  3000. weight: math.unit(140, "kg"),
  3001. name: "Side",
  3002. image: {
  3003. source: "./media/characters/sosha/side.svg",
  3004. bottom: 0.042
  3005. }
  3006. },
  3007. },
  3008. [
  3009. {
  3010. name: "Normal",
  3011. height: math.unit(12, "feet"),
  3012. default: true
  3013. }
  3014. ]
  3015. ))
  3016. characterMakers.push(() => makeCharacter(
  3017. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3018. {
  3019. side: {
  3020. height: math.unit(5 + 5 / 12, "feet"),
  3021. weight: math.unit(170, "kg"),
  3022. name: "Side",
  3023. image: {
  3024. source: "./media/characters/runnola/side.svg",
  3025. extra: 741 / 448,
  3026. bottom: 0.05
  3027. }
  3028. },
  3029. },
  3030. [
  3031. {
  3032. name: "Small",
  3033. height: math.unit(3, "feet")
  3034. },
  3035. {
  3036. name: "Normal",
  3037. height: math.unit(5 + 5 / 12, "feet"),
  3038. default: true
  3039. },
  3040. {
  3041. name: "Big",
  3042. height: math.unit(10, "feet")
  3043. },
  3044. ]
  3045. ))
  3046. characterMakers.push(() => makeCharacter(
  3047. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3048. {
  3049. front: {
  3050. height: math.unit(2, "meter"),
  3051. weight: math.unit(50, "kg"),
  3052. name: "Front",
  3053. image: {
  3054. source: "./media/characters/kurribird/front.svg",
  3055. bottom: 0.015
  3056. }
  3057. },
  3058. frontAlt: {
  3059. height: math.unit(1.5, "meter"),
  3060. weight: math.unit(50, "kg"),
  3061. name: "Front (Alt)",
  3062. image: {
  3063. source: "./media/characters/kurribird/front-alt.svg",
  3064. extra: 1.45
  3065. }
  3066. },
  3067. },
  3068. [
  3069. {
  3070. name: "Normal",
  3071. height: math.unit(7, "feet")
  3072. },
  3073. {
  3074. name: "Big",
  3075. height: math.unit(12, "feet"),
  3076. default: true
  3077. },
  3078. {
  3079. name: "Macro",
  3080. height: math.unit(1500, "feet")
  3081. },
  3082. {
  3083. name: "Megamacro",
  3084. height: math.unit(2, "miles")
  3085. }
  3086. ]
  3087. ))
  3088. characterMakers.push(() => makeCharacter(
  3089. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3090. {
  3091. front: {
  3092. height: math.unit(2, "meter"),
  3093. weight: math.unit(80, "kg"),
  3094. name: "Front",
  3095. image: {
  3096. source: "./media/characters/elbial/front.svg",
  3097. extra: 1643 / 1556,
  3098. bottom: 60.2 / 1696
  3099. }
  3100. },
  3101. side: {
  3102. height: math.unit(2, "meter"),
  3103. weight: math.unit(80, "kg"),
  3104. name: "Side",
  3105. image: {
  3106. source: "./media/characters/elbial/side.svg",
  3107. extra: 1630 / 1565,
  3108. bottom: 71.5 / 1697
  3109. }
  3110. },
  3111. back: {
  3112. height: math.unit(2, "meter"),
  3113. weight: math.unit(80, "kg"),
  3114. name: "Back",
  3115. image: {
  3116. source: "./media/characters/elbial/back.svg",
  3117. extra: 1668 / 1595,
  3118. bottom: 5.6 / 1672
  3119. }
  3120. },
  3121. frontDressed: {
  3122. height: math.unit(2, "meter"),
  3123. weight: math.unit(80, "kg"),
  3124. name: "Front (Dressed)",
  3125. image: {
  3126. source: "./media/characters/elbial/front-dressed.svg",
  3127. extra: 1653 / 1584,
  3128. bottom: 57 / 1708
  3129. }
  3130. },
  3131. genitals: {
  3132. height: math.unit(2 / 3.367, "meter"),
  3133. name: "Genitals",
  3134. image: {
  3135. source: "./media/characters/elbial/genitals.svg"
  3136. }
  3137. },
  3138. },
  3139. [
  3140. {
  3141. name: "Large",
  3142. height: math.unit(100, "feet")
  3143. },
  3144. {
  3145. name: "Macro",
  3146. height: math.unit(500, "feet"),
  3147. default: true
  3148. },
  3149. {
  3150. name: "Megamacro",
  3151. height: math.unit(10, "miles")
  3152. },
  3153. {
  3154. name: "Gigamacro",
  3155. height: math.unit(25000, "miles")
  3156. },
  3157. {
  3158. name: "Full-Size",
  3159. height: math.unit(8000000, "gigaparsecs")
  3160. }
  3161. ]
  3162. ))
  3163. characterMakers.push(() => makeCharacter(
  3164. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3165. {
  3166. front: {
  3167. height: math.unit(2, "meter"),
  3168. weight: math.unit(60, "kg"),
  3169. name: "Front",
  3170. image: {
  3171. source: "./media/characters/noah/front.svg"
  3172. }
  3173. },
  3174. talons: {
  3175. height: math.unit(0.315, "meter"),
  3176. name: "Talons",
  3177. image: {
  3178. source: "./media/characters/noah/talons.svg"
  3179. }
  3180. }
  3181. },
  3182. [
  3183. {
  3184. name: "Large",
  3185. height: math.unit(50, "feet")
  3186. },
  3187. {
  3188. name: "Macro",
  3189. height: math.unit(750, "feet"),
  3190. default: true
  3191. },
  3192. {
  3193. name: "Megamacro",
  3194. height: math.unit(50, "miles")
  3195. },
  3196. {
  3197. name: "Gigamacro",
  3198. height: math.unit(100000, "miles")
  3199. },
  3200. {
  3201. name: "Full-Size",
  3202. height: math.unit(3000000000, "miles")
  3203. }
  3204. ]
  3205. ))
  3206. characterMakers.push(() => makeCharacter(
  3207. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3208. {
  3209. front: {
  3210. height: math.unit(2, "meter"),
  3211. weight: math.unit(80, "kg"),
  3212. name: "Front",
  3213. image: {
  3214. source: "./media/characters/natalya/front.svg"
  3215. }
  3216. },
  3217. back: {
  3218. height: math.unit(2, "meter"),
  3219. weight: math.unit(80, "kg"),
  3220. name: "Back",
  3221. image: {
  3222. source: "./media/characters/natalya/back.svg"
  3223. }
  3224. }
  3225. },
  3226. [
  3227. {
  3228. name: "Normal",
  3229. height: math.unit(150, "feet"),
  3230. default: true
  3231. },
  3232. {
  3233. name: "Megamacro",
  3234. height: math.unit(5, "miles")
  3235. },
  3236. {
  3237. name: "Full-Size",
  3238. height: math.unit(600, "kiloparsecs")
  3239. }
  3240. ]
  3241. ))
  3242. characterMakers.push(() => makeCharacter(
  3243. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3244. {
  3245. front: {
  3246. height: math.unit(2, "meter"),
  3247. weight: math.unit(50, "kg"),
  3248. name: "Front",
  3249. image: {
  3250. source: "./media/characters/erestrebah/front.svg",
  3251. extra: 208 / 193,
  3252. bottom: 0.055
  3253. }
  3254. },
  3255. back: {
  3256. height: math.unit(2, "meter"),
  3257. weight: math.unit(50, "kg"),
  3258. name: "Back",
  3259. image: {
  3260. source: "./media/characters/erestrebah/back.svg",
  3261. extra: 1.3
  3262. }
  3263. }
  3264. },
  3265. [
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(10, "feet")
  3269. },
  3270. {
  3271. name: "Large",
  3272. height: math.unit(50, "feet"),
  3273. default: true
  3274. },
  3275. {
  3276. name: "Macro",
  3277. height: math.unit(300, "feet")
  3278. },
  3279. {
  3280. name: "Macro+",
  3281. height: math.unit(750, "feet")
  3282. },
  3283. {
  3284. name: "Megamacro",
  3285. height: math.unit(3, "miles")
  3286. }
  3287. ]
  3288. ))
  3289. characterMakers.push(() => makeCharacter(
  3290. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3291. {
  3292. front: {
  3293. height: math.unit(2, "meter"),
  3294. weight: math.unit(80, "kg"),
  3295. name: "Front",
  3296. image: {
  3297. source: "./media/characters/jennifer/front.svg",
  3298. bottom: 0.11,
  3299. extra: 1.16
  3300. }
  3301. },
  3302. frontAlt: {
  3303. height: math.unit(2, "meter"),
  3304. weight: math.unit(80, "kg"),
  3305. name: "Front (Alt)",
  3306. image: {
  3307. source: "./media/characters/jennifer/front-alt.svg"
  3308. }
  3309. }
  3310. },
  3311. [
  3312. {
  3313. name: "Canon Height",
  3314. height: math.unit(120, "feet"),
  3315. default: true
  3316. },
  3317. {
  3318. name: "Macro+",
  3319. height: math.unit(300, "feet")
  3320. },
  3321. {
  3322. name: "Megamacro",
  3323. height: math.unit(20000, "feet")
  3324. }
  3325. ]
  3326. ))
  3327. characterMakers.push(() => makeCharacter(
  3328. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3329. {
  3330. front: {
  3331. height: math.unit(2, "meter"),
  3332. weight: math.unit(50, "kg"),
  3333. name: "Front",
  3334. image: {
  3335. source: "./media/characters/kalista/front.svg",
  3336. extra: 1947 / 1700,
  3337. bottom: 76.6 / 1412.98
  3338. }
  3339. },
  3340. back: {
  3341. height: math.unit(2, "meter"),
  3342. weight: math.unit(50, "kg"),
  3343. name: "Back",
  3344. image: {
  3345. source: "./media/characters/kalista/back.svg",
  3346. extra: 1366 / 1156,
  3347. bottom: 33.9 / 1362.78
  3348. }
  3349. }
  3350. },
  3351. [
  3352. {
  3353. name: "Uncomfortably Small",
  3354. height: math.unit(10, "feet")
  3355. },
  3356. {
  3357. name: "Small",
  3358. height: math.unit(30, "feet")
  3359. },
  3360. {
  3361. name: "Macro",
  3362. height: math.unit(100, "feet"),
  3363. default: true
  3364. },
  3365. {
  3366. name: "Macro+",
  3367. height: math.unit(2000, "feet")
  3368. },
  3369. {
  3370. name: "True Form",
  3371. height: math.unit(8924, "miles")
  3372. }
  3373. ]
  3374. ))
  3375. characterMakers.push(() => makeCharacter(
  3376. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3377. {
  3378. front: {
  3379. height: math.unit(2, "meter"),
  3380. weight: math.unit(120, "kg"),
  3381. name: "Front",
  3382. image: {
  3383. source: "./media/characters/ggv/front.svg"
  3384. }
  3385. },
  3386. side: {
  3387. height: math.unit(2, "meter"),
  3388. weight: math.unit(120, "kg"),
  3389. name: "Side",
  3390. image: {
  3391. source: "./media/characters/ggv/side.svg"
  3392. }
  3393. }
  3394. },
  3395. [
  3396. {
  3397. name: "Extremely Puny",
  3398. height: math.unit(9 + 5 / 12, "feet")
  3399. },
  3400. {
  3401. name: "Horribly Small",
  3402. height: math.unit(47.7, "miles"),
  3403. default: true
  3404. },
  3405. {
  3406. name: "Reasonably Sized",
  3407. height: math.unit(25000, "parsecs")
  3408. },
  3409. {
  3410. name: "Slightly Uncompressed",
  3411. height: math.unit(7.77e31, "parsecs")
  3412. },
  3413. {
  3414. name: "Omniversal",
  3415. height: math.unit(1e300, "meters")
  3416. },
  3417. ]
  3418. ))
  3419. characterMakers.push(() => makeCharacter(
  3420. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3421. {
  3422. front: {
  3423. height: math.unit(2, "meter"),
  3424. weight: math.unit(75, "lb"),
  3425. name: "Front",
  3426. image: {
  3427. source: "./media/characters/napalm/front.svg"
  3428. }
  3429. },
  3430. back: {
  3431. height: math.unit(2, "meter"),
  3432. weight: math.unit(75, "lb"),
  3433. name: "Back",
  3434. image: {
  3435. source: "./media/characters/napalm/back.svg"
  3436. }
  3437. }
  3438. },
  3439. [
  3440. {
  3441. name: "Standard",
  3442. height: math.unit(55, "feet"),
  3443. default: true
  3444. }
  3445. ]
  3446. ))
  3447. characterMakers.push(() => makeCharacter(
  3448. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3449. {
  3450. front: {
  3451. height: math.unit(7 + 5 / 6, "feet"),
  3452. weight: math.unit(325, "lb"),
  3453. name: "Front",
  3454. image: {
  3455. source: "./media/characters/asana/front.svg",
  3456. extra: 1133 / 1060,
  3457. bottom: 15.2 / 1148.6
  3458. }
  3459. },
  3460. back: {
  3461. height: math.unit(7 + 5 / 6, "feet"),
  3462. weight: math.unit(325, "lb"),
  3463. name: "Back",
  3464. image: {
  3465. source: "./media/characters/asana/back.svg",
  3466. extra: 1114 / 1043,
  3467. bottom: 5 / 1120
  3468. }
  3469. },
  3470. dressedDark: {
  3471. height: math.unit(7 + 5 / 6, "feet"),
  3472. weight: math.unit(325, "lb"),
  3473. name: "Dressed (Dark)",
  3474. image: {
  3475. source: "./media/characters/asana/dressed-dark.svg",
  3476. extra: 1133 / 1060,
  3477. bottom: 15.2 / 1148.6
  3478. }
  3479. },
  3480. dressedLight: {
  3481. height: math.unit(7 + 5 / 6, "feet"),
  3482. weight: math.unit(325, "lb"),
  3483. name: "Dressed (Light)",
  3484. image: {
  3485. source: "./media/characters/asana/dressed-light.svg",
  3486. extra: 1133 / 1060,
  3487. bottom: 15.2 / 1148.6
  3488. }
  3489. },
  3490. },
  3491. [
  3492. {
  3493. name: "Standard",
  3494. height: math.unit(7 + 5 / 6, "feet"),
  3495. default: true
  3496. },
  3497. {
  3498. name: "Large",
  3499. height: math.unit(10, "meters")
  3500. },
  3501. {
  3502. name: "Macro",
  3503. height: math.unit(2500, "meters")
  3504. },
  3505. {
  3506. name: "Megamacro",
  3507. height: math.unit(5e6, "meters")
  3508. },
  3509. {
  3510. name: "Examacro",
  3511. height: math.unit(5e12, "lightyears")
  3512. },
  3513. {
  3514. name: "Max Size",
  3515. height: math.unit(1e31, "lightyears")
  3516. }
  3517. ]
  3518. ))
  3519. characterMakers.push(() => makeCharacter(
  3520. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3521. {
  3522. front: {
  3523. height: math.unit(2, "meter"),
  3524. weight: math.unit(60, "kg"),
  3525. name: "Front",
  3526. image: {
  3527. source: "./media/characters/ebony/front.svg",
  3528. bottom: 0.03,
  3529. extra: 1045 / 810 + 0.03
  3530. }
  3531. },
  3532. side: {
  3533. height: math.unit(2, "meter"),
  3534. weight: math.unit(60, "kg"),
  3535. name: "Side",
  3536. image: {
  3537. source: "./media/characters/ebony/side.svg",
  3538. bottom: 0.03,
  3539. extra: 1045 / 810 + 0.03
  3540. }
  3541. },
  3542. back: {
  3543. height: math.unit(2, "meter"),
  3544. weight: math.unit(60, "kg"),
  3545. name: "Back",
  3546. image: {
  3547. source: "./media/characters/ebony/back.svg",
  3548. bottom: 0.01,
  3549. extra: 1045 / 810 + 0.01
  3550. }
  3551. },
  3552. },
  3553. [
  3554. // TODO check why I did this lol
  3555. {
  3556. name: "Standard",
  3557. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3558. default: true
  3559. },
  3560. {
  3561. name: "Macro",
  3562. height: math.unit(200, "feet")
  3563. },
  3564. {
  3565. name: "Gigamacro",
  3566. height: math.unit(13000, "km")
  3567. }
  3568. ]
  3569. ))
  3570. characterMakers.push(() => makeCharacter(
  3571. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3572. {
  3573. front: {
  3574. height: math.unit(6, "feet"),
  3575. weight: math.unit(175, "lb"),
  3576. name: "Front",
  3577. image: {
  3578. source: "./media/characters/mountain/front.svg",
  3579. extra: 972 / 955,
  3580. bottom: 64 / 1036.6
  3581. }
  3582. },
  3583. back: {
  3584. height: math.unit(6, "feet"),
  3585. weight: math.unit(175, "lb"),
  3586. name: "Back",
  3587. image: {
  3588. source: "./media/characters/mountain/back.svg",
  3589. extra: 970 / 950,
  3590. bottom: 28.25 / 999
  3591. }
  3592. },
  3593. },
  3594. [
  3595. {
  3596. name: "Large",
  3597. height: math.unit(20, "meters")
  3598. },
  3599. {
  3600. name: "Macro",
  3601. height: math.unit(300, "meters")
  3602. },
  3603. {
  3604. name: "Gigamacro",
  3605. height: math.unit(10000, "km"),
  3606. default: true
  3607. },
  3608. {
  3609. name: "Examacro",
  3610. height: math.unit(10e9, "lightyears")
  3611. }
  3612. ]
  3613. ))
  3614. characterMakers.push(() => makeCharacter(
  3615. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3616. {
  3617. front: {
  3618. height: math.unit(8, "feet"),
  3619. weight: math.unit(500, "lb"),
  3620. name: "Front",
  3621. image: {
  3622. source: "./media/characters/rick/front.svg"
  3623. }
  3624. }
  3625. },
  3626. [
  3627. {
  3628. name: "Normal",
  3629. height: math.unit(8, "feet"),
  3630. default: true
  3631. },
  3632. {
  3633. name: "Macro",
  3634. height: math.unit(5, "km")
  3635. }
  3636. ]
  3637. ))
  3638. characterMakers.push(() => makeCharacter(
  3639. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3640. {
  3641. front: {
  3642. height: math.unit(8, "feet"),
  3643. weight: math.unit(120, "lb"),
  3644. name: "Front",
  3645. image: {
  3646. source: "./media/characters/ona/front.svg"
  3647. }
  3648. },
  3649. frontAlt: {
  3650. height: math.unit(8, "feet"),
  3651. weight: math.unit(120, "lb"),
  3652. name: "Front (Alt)",
  3653. image: {
  3654. source: "./media/characters/ona/front-alt.svg"
  3655. }
  3656. },
  3657. back: {
  3658. height: math.unit(8, "feet"),
  3659. weight: math.unit(120, "lb"),
  3660. name: "Back",
  3661. image: {
  3662. source: "./media/characters/ona/back.svg"
  3663. }
  3664. },
  3665. foot: {
  3666. height: math.unit(1.1, "feet"),
  3667. name: "Foot",
  3668. image: {
  3669. source: "./media/characters/ona/foot.svg"
  3670. }
  3671. }
  3672. },
  3673. [
  3674. {
  3675. name: "Megamacro",
  3676. height: math.unit(70, "km"),
  3677. default: true
  3678. },
  3679. {
  3680. name: "Gigamacro",
  3681. height: math.unit(681818, "miles")
  3682. },
  3683. {
  3684. name: "Examacro",
  3685. height: math.unit(3800000, "lightyears")
  3686. },
  3687. ]
  3688. ))
  3689. characterMakers.push(() => makeCharacter(
  3690. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3691. {
  3692. front: {
  3693. height: math.unit(12, "feet"),
  3694. weight: math.unit(3000, "lb"),
  3695. name: "Front",
  3696. image: {
  3697. source: "./media/characters/mech/front.svg",
  3698. extra: 2900 / 2770,
  3699. bottom: 110 / 3010
  3700. }
  3701. },
  3702. back: {
  3703. height: math.unit(12, "feet"),
  3704. weight: math.unit(3000, "lb"),
  3705. name: "Back",
  3706. image: {
  3707. source: "./media/characters/mech/back.svg",
  3708. extra: 3011 / 2890,
  3709. bottom: 94 / 3105
  3710. }
  3711. },
  3712. maw: {
  3713. height: math.unit(3.07, "feet"),
  3714. name: "Maw",
  3715. image: {
  3716. source: "./media/characters/mech/maw.svg"
  3717. }
  3718. },
  3719. head: {
  3720. height: math.unit(2.82, "feet"),
  3721. name: "Head",
  3722. image: {
  3723. source: "./media/characters/mech/head.svg"
  3724. }
  3725. },
  3726. dick: {
  3727. height: math.unit(1.43, "feet"),
  3728. name: "Dick",
  3729. image: {
  3730. source: "./media/characters/mech/dick.svg"
  3731. }
  3732. },
  3733. },
  3734. [
  3735. {
  3736. name: "Normal",
  3737. height: math.unit(12, "feet")
  3738. },
  3739. {
  3740. name: "Macro",
  3741. height: math.unit(300, "feet"),
  3742. default: true
  3743. },
  3744. {
  3745. name: "Macro+",
  3746. height: math.unit(1500, "feet")
  3747. },
  3748. ]
  3749. ))
  3750. characterMakers.push(() => makeCharacter(
  3751. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3752. {
  3753. front: {
  3754. height: math.unit(1.3, "meter"),
  3755. weight: math.unit(30, "kg"),
  3756. name: "Front",
  3757. image: {
  3758. source: "./media/characters/gregory/front.svg",
  3759. }
  3760. }
  3761. },
  3762. [
  3763. {
  3764. name: "Normal",
  3765. height: math.unit(1.3, "meter"),
  3766. default: true
  3767. },
  3768. {
  3769. name: "Macro",
  3770. height: math.unit(20, "meter")
  3771. }
  3772. ]
  3773. ))
  3774. characterMakers.push(() => makeCharacter(
  3775. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3776. {
  3777. front: {
  3778. height: math.unit(2.8, "meter"),
  3779. weight: math.unit(200, "kg"),
  3780. name: "Front",
  3781. image: {
  3782. source: "./media/characters/elory/front.svg",
  3783. }
  3784. }
  3785. },
  3786. [
  3787. {
  3788. name: "Normal",
  3789. height: math.unit(2.8, "meter"),
  3790. default: true
  3791. },
  3792. {
  3793. name: "Macro",
  3794. height: math.unit(38, "meter")
  3795. }
  3796. ]
  3797. ))
  3798. characterMakers.push(() => makeCharacter(
  3799. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3800. {
  3801. front: {
  3802. height: math.unit(470, "feet"),
  3803. weight: math.unit(924, "tons"),
  3804. name: "Front",
  3805. image: {
  3806. source: "./media/characters/angelpatamon/front.svg",
  3807. }
  3808. }
  3809. },
  3810. [
  3811. {
  3812. name: "Normal",
  3813. height: math.unit(470, "feet"),
  3814. default: true
  3815. },
  3816. {
  3817. name: "Deity Size I",
  3818. height: math.unit(28651.2, "km")
  3819. },
  3820. {
  3821. name: "Deity Size II",
  3822. height: math.unit(171907.2, "km")
  3823. }
  3824. ]
  3825. ))
  3826. characterMakers.push(() => makeCharacter(
  3827. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3828. {
  3829. side: {
  3830. height: math.unit(7.2, "meter"),
  3831. weight: math.unit(8.2, "tons"),
  3832. name: "Side",
  3833. image: {
  3834. source: "./media/characters/cryae/side.svg",
  3835. extra: 3500 / 1500
  3836. }
  3837. }
  3838. },
  3839. [
  3840. {
  3841. name: "Normal",
  3842. height: math.unit(7.2, "meter"),
  3843. default: true
  3844. }
  3845. ]
  3846. ))
  3847. characterMakers.push(() => makeCharacter(
  3848. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3849. {
  3850. front: {
  3851. height: math.unit(6, "feet"),
  3852. weight: math.unit(175, "lb"),
  3853. name: "Front",
  3854. image: {
  3855. source: "./media/characters/xera/front.svg",
  3856. extra: 2377 / 1972,
  3857. bottom: 75.5 / 2452
  3858. }
  3859. },
  3860. side: {
  3861. height: math.unit(6, "feet"),
  3862. weight: math.unit(175, "lb"),
  3863. name: "Side",
  3864. image: {
  3865. source: "./media/characters/xera/side.svg",
  3866. extra: 2345 / 2019,
  3867. bottom: 39.7 / 2384
  3868. }
  3869. },
  3870. back: {
  3871. height: math.unit(6, "feet"),
  3872. weight: math.unit(175, "lb"),
  3873. name: "Back",
  3874. image: {
  3875. source: "./media/characters/xera/back.svg",
  3876. extra: 2095 / 1984,
  3877. bottom: 67 / 2166
  3878. }
  3879. },
  3880. },
  3881. [
  3882. {
  3883. name: "Small",
  3884. height: math.unit(10, "feet")
  3885. },
  3886. {
  3887. name: "Macro",
  3888. height: math.unit(500, "meters"),
  3889. default: true
  3890. },
  3891. {
  3892. name: "Macro+",
  3893. height: math.unit(10, "km")
  3894. },
  3895. {
  3896. name: "Gigamacro",
  3897. height: math.unit(25000, "km")
  3898. },
  3899. {
  3900. name: "Teramacro",
  3901. height: math.unit(3e6, "km")
  3902. }
  3903. ]
  3904. ))
  3905. characterMakers.push(() => makeCharacter(
  3906. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3907. {
  3908. front: {
  3909. height: math.unit(6, "feet"),
  3910. weight: math.unit(175, "lb"),
  3911. name: "Front",
  3912. image: {
  3913. source: "./media/characters/nebula/front.svg",
  3914. extra: 2566 / 2362,
  3915. bottom: 81 / 2644
  3916. }
  3917. }
  3918. },
  3919. [
  3920. {
  3921. name: "Small",
  3922. height: math.unit(4.5, "meters")
  3923. },
  3924. {
  3925. name: "Macro",
  3926. height: math.unit(1500, "meters"),
  3927. default: true
  3928. },
  3929. {
  3930. name: "Megamacro",
  3931. height: math.unit(150, "km")
  3932. },
  3933. {
  3934. name: "Gigamacro",
  3935. height: math.unit(27000, "km")
  3936. }
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3941. {
  3942. front: {
  3943. height: math.unit(6, "feet"),
  3944. weight: math.unit(225, "lb"),
  3945. name: "Front",
  3946. image: {
  3947. source: "./media/characters/abysgar/front.svg"
  3948. }
  3949. }
  3950. },
  3951. [
  3952. {
  3953. name: "Small",
  3954. height: math.unit(4.5, "meters")
  3955. },
  3956. {
  3957. name: "Macro",
  3958. height: math.unit(1250, "meters"),
  3959. default: true
  3960. },
  3961. {
  3962. name: "Megamacro",
  3963. height: math.unit(125, "km")
  3964. },
  3965. {
  3966. name: "Gigamacro",
  3967. height: math.unit(26000, "km")
  3968. }
  3969. ]
  3970. ))
  3971. characterMakers.push(() => makeCharacter(
  3972. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3973. {
  3974. front: {
  3975. height: math.unit(6, "feet"),
  3976. weight: math.unit(180, "lb"),
  3977. name: "Front",
  3978. image: {
  3979. source: "./media/characters/yakuz/front.svg"
  3980. }
  3981. }
  3982. },
  3983. [
  3984. {
  3985. name: "Small",
  3986. height: math.unit(5, "meters")
  3987. },
  3988. {
  3989. name: "Macro",
  3990. height: math.unit(1500, "meters"),
  3991. default: true
  3992. },
  3993. {
  3994. name: "Megamacro",
  3995. height: math.unit(200, "km")
  3996. },
  3997. {
  3998. name: "Gigamacro",
  3999. height: math.unit(100000, "km")
  4000. }
  4001. ]
  4002. ))
  4003. characterMakers.push(() => makeCharacter(
  4004. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4005. {
  4006. front: {
  4007. height: math.unit(6, "feet"),
  4008. weight: math.unit(175, "lb"),
  4009. name: "Front",
  4010. image: {
  4011. source: "./media/characters/mirova/front.svg",
  4012. extra: 3334 / 3071,
  4013. bottom: 42 / 3375.6
  4014. }
  4015. }
  4016. },
  4017. [
  4018. {
  4019. name: "Small",
  4020. height: math.unit(5, "meters")
  4021. },
  4022. {
  4023. name: "Macro",
  4024. height: math.unit(900, "meters"),
  4025. default: true
  4026. },
  4027. {
  4028. name: "Megamacro",
  4029. height: math.unit(135, "km")
  4030. },
  4031. {
  4032. name: "Gigamacro",
  4033. height: math.unit(20000, "km")
  4034. }
  4035. ]
  4036. ))
  4037. characterMakers.push(() => makeCharacter(
  4038. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4039. {
  4040. side: {
  4041. height: math.unit(28.35, "feet"),
  4042. weight: math.unit(99.75, "tons"),
  4043. name: "Side",
  4044. image: {
  4045. source: "./media/characters/asana-mech/side.svg",
  4046. extra: 923 / 699,
  4047. bottom: 50 / 975
  4048. }
  4049. },
  4050. chaingun: {
  4051. height: math.unit(7, "feet"),
  4052. weight: math.unit(2400, "lb"),
  4053. name: "Chaingun",
  4054. image: {
  4055. source: "./media/characters/asana-mech/chaingun.svg"
  4056. }
  4057. },
  4058. laser: {
  4059. height: math.unit(7.12, "feet"),
  4060. weight: math.unit(2000, "lb"),
  4061. name: "Laser",
  4062. image: {
  4063. source: "./media/characters/asana-mech/laser.svg"
  4064. }
  4065. },
  4066. },
  4067. [
  4068. {
  4069. name: "Normal",
  4070. height: math.unit(28.35, "feet"),
  4071. default: true
  4072. },
  4073. {
  4074. name: "Macro",
  4075. height: math.unit(2500, "feet")
  4076. },
  4077. {
  4078. name: "Megamacro",
  4079. height: math.unit(25, "miles")
  4080. },
  4081. {
  4082. name: "Examacro",
  4083. height: math.unit(6e8, "lightyears")
  4084. },
  4085. ]
  4086. ))
  4087. characterMakers.push(() => makeCharacter(
  4088. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4089. {
  4090. front: {
  4091. height: math.unit(5, "meters"),
  4092. weight: math.unit(1000, "kg"),
  4093. name: "Front",
  4094. image: {
  4095. source: "./media/characters/asche/front.svg",
  4096. extra: 1258 / 1190,
  4097. bottom: 47 / 1305
  4098. }
  4099. },
  4100. frontUnderwear: {
  4101. height: math.unit(5, "meters"),
  4102. weight: math.unit(1000, "kg"),
  4103. name: "Front (Underwear)",
  4104. image: {
  4105. source: "./media/characters/asche/front-underwear.svg",
  4106. extra: 1258 / 1190,
  4107. bottom: 47 / 1305
  4108. }
  4109. },
  4110. frontDressed: {
  4111. height: math.unit(5, "meters"),
  4112. weight: math.unit(1000, "kg"),
  4113. name: "Front (Dressed)",
  4114. image: {
  4115. source: "./media/characters/asche/front-dressed.svg",
  4116. extra: 1258 / 1190,
  4117. bottom: 47 / 1305
  4118. }
  4119. },
  4120. frontArmor: {
  4121. height: math.unit(5, "meters"),
  4122. weight: math.unit(1000, "kg"),
  4123. name: "Front (Armored)",
  4124. image: {
  4125. source: "./media/characters/asche/front-armored.svg",
  4126. extra: 1374 / 1308,
  4127. bottom: 23 / 1397
  4128. }
  4129. },
  4130. mp724: {
  4131. height: math.unit(0.96, "meters"),
  4132. weight: math.unit(38, "kg"),
  4133. name: "H&K MP724",
  4134. image: {
  4135. source: "./media/characters/asche/h&k-mp724.svg"
  4136. }
  4137. },
  4138. side: {
  4139. height: math.unit(5, "meters"),
  4140. weight: math.unit(1000, "kg"),
  4141. name: "Side",
  4142. image: {
  4143. source: "./media/characters/asche/side.svg",
  4144. extra: 1717 / 1609,
  4145. bottom: 0.005
  4146. }
  4147. },
  4148. back: {
  4149. height: math.unit(5, "meters"),
  4150. weight: math.unit(1000, "kg"),
  4151. name: "Back",
  4152. image: {
  4153. source: "./media/characters/asche/back.svg",
  4154. extra: 1570 / 1501
  4155. }
  4156. },
  4157. },
  4158. [
  4159. {
  4160. name: "DEFCON 5",
  4161. height: math.unit(5, "meters")
  4162. },
  4163. {
  4164. name: "DEFCON 4",
  4165. height: math.unit(500, "meters"),
  4166. default: true
  4167. },
  4168. {
  4169. name: "DEFCON 3",
  4170. height: math.unit(5, "km")
  4171. },
  4172. {
  4173. name: "DEFCON 2",
  4174. height: math.unit(500, "km")
  4175. },
  4176. {
  4177. name: "DEFCON 1",
  4178. height: math.unit(500000, "km")
  4179. },
  4180. {
  4181. name: "DEFCON 0",
  4182. height: math.unit(3, "gigaparsecs")
  4183. },
  4184. ]
  4185. ))
  4186. characterMakers.push(() => makeCharacter(
  4187. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4188. {
  4189. front: {
  4190. height: math.unit(2, "meters"),
  4191. weight: math.unit(76, "kg"),
  4192. name: "Front",
  4193. image: {
  4194. source: "./media/characters/gale/front.svg"
  4195. }
  4196. },
  4197. frontAlt1: {
  4198. height: math.unit(2, "meters"),
  4199. weight: math.unit(76, "kg"),
  4200. name: "Front (Alt 1)",
  4201. image: {
  4202. source: "./media/characters/gale/front-alt-1.svg"
  4203. }
  4204. },
  4205. frontAlt2: {
  4206. height: math.unit(2, "meters"),
  4207. weight: math.unit(76, "kg"),
  4208. name: "Front (Alt 2)",
  4209. image: {
  4210. source: "./media/characters/gale/front-alt-2.svg"
  4211. }
  4212. },
  4213. },
  4214. [
  4215. {
  4216. name: "Normal",
  4217. height: math.unit(7, "feet")
  4218. },
  4219. {
  4220. name: "Macro",
  4221. height: math.unit(150, "feet"),
  4222. default: true
  4223. },
  4224. {
  4225. name: "Macro+",
  4226. height: math.unit(300, "feet")
  4227. },
  4228. ]
  4229. ))
  4230. characterMakers.push(() => makeCharacter(
  4231. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4232. {
  4233. front: {
  4234. height: math.unit(2, "meters"),
  4235. weight: math.unit(76, "kg"),
  4236. name: "Front",
  4237. image: {
  4238. source: "./media/characters/draylen/front.svg"
  4239. }
  4240. }
  4241. },
  4242. [
  4243. {
  4244. name: "Macro",
  4245. height: math.unit(150, "feet"),
  4246. default: true
  4247. }
  4248. ]
  4249. ))
  4250. characterMakers.push(() => makeCharacter(
  4251. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4252. {
  4253. front: {
  4254. height: math.unit(7 + 9 / 12, "feet"),
  4255. weight: math.unit(379, "lbs"),
  4256. name: "Front",
  4257. image: {
  4258. source: "./media/characters/chez/front.svg"
  4259. }
  4260. },
  4261. side: {
  4262. height: math.unit(7 + 9 / 12, "feet"),
  4263. weight: math.unit(379, "lbs"),
  4264. name: "Side",
  4265. image: {
  4266. source: "./media/characters/chez/side.svg"
  4267. }
  4268. }
  4269. },
  4270. [
  4271. {
  4272. name: "Normal",
  4273. height: math.unit(7 + 9 / 12, "feet"),
  4274. default: true
  4275. },
  4276. {
  4277. name: "God King",
  4278. height: math.unit(9750000, "meters")
  4279. }
  4280. ]
  4281. ))
  4282. characterMakers.push(() => makeCharacter(
  4283. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4284. {
  4285. front: {
  4286. height: math.unit(6, "feet"),
  4287. weight: math.unit(275, "lbs"),
  4288. name: "Front",
  4289. image: {
  4290. source: "./media/characters/kaylum/front.svg",
  4291. bottom: 0.01,
  4292. extra: 1166 / 1031
  4293. }
  4294. },
  4295. frontWingless: {
  4296. height: math.unit(6, "feet"),
  4297. weight: math.unit(275, "lbs"),
  4298. name: "Front (Wingless)",
  4299. image: {
  4300. source: "./media/characters/kaylum/front-wingless.svg",
  4301. bottom: 0.01,
  4302. extra: 1117 / 1031
  4303. }
  4304. }
  4305. },
  4306. [
  4307. {
  4308. name: "Normal",
  4309. height: math.unit(3.05, "meters")
  4310. },
  4311. {
  4312. name: "Master",
  4313. height: math.unit(5.5, "meters")
  4314. },
  4315. {
  4316. name: "Rampage",
  4317. height: math.unit(19, "meters")
  4318. },
  4319. {
  4320. name: "Macro Lite",
  4321. height: math.unit(37, "meters")
  4322. },
  4323. {
  4324. name: "Hyper Predator",
  4325. height: math.unit(61, "meters")
  4326. },
  4327. {
  4328. name: "Macro",
  4329. height: math.unit(138, "meters"),
  4330. default: true
  4331. }
  4332. ]
  4333. ))
  4334. characterMakers.push(() => makeCharacter(
  4335. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4336. {
  4337. front: {
  4338. height: math.unit(6, "feet"),
  4339. weight: math.unit(150, "lbs"),
  4340. name: "Front",
  4341. image: {
  4342. source: "./media/characters/geta/front.svg"
  4343. }
  4344. }
  4345. },
  4346. [
  4347. {
  4348. name: "Micro",
  4349. height: math.unit(3, "inches"),
  4350. default: true
  4351. },
  4352. {
  4353. name: "Normal",
  4354. height: math.unit(5 + 5 / 12, "feet")
  4355. }
  4356. ]
  4357. ))
  4358. characterMakers.push(() => makeCharacter(
  4359. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4360. {
  4361. front: {
  4362. height: math.unit(6, "feet"),
  4363. weight: math.unit(300, "lbs"),
  4364. name: "Front",
  4365. image: {
  4366. source: "./media/characters/tyrnn/front.svg"
  4367. }
  4368. }
  4369. },
  4370. [
  4371. {
  4372. name: "Main Height",
  4373. height: math.unit(355, "feet"),
  4374. default: true
  4375. },
  4376. {
  4377. name: "Fave. Height",
  4378. height: math.unit(2400, "feet")
  4379. }
  4380. ]
  4381. ))
  4382. characterMakers.push(() => makeCharacter(
  4383. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4384. {
  4385. front: {
  4386. height: math.unit(6, "feet"),
  4387. weight: math.unit(300, "lbs"),
  4388. name: "Front",
  4389. image: {
  4390. source: "./media/characters/appledectomy/front.svg"
  4391. }
  4392. }
  4393. },
  4394. [
  4395. {
  4396. name: "Macro",
  4397. height: math.unit(2500, "feet")
  4398. },
  4399. {
  4400. name: "Megamacro",
  4401. height: math.unit(50, "miles"),
  4402. default: true
  4403. },
  4404. {
  4405. name: "Gigamacro",
  4406. height: math.unit(5000, "miles")
  4407. },
  4408. {
  4409. name: "Teramacro",
  4410. height: math.unit(250000, "miles")
  4411. },
  4412. ]
  4413. ))
  4414. characterMakers.push(() => makeCharacter(
  4415. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4416. {
  4417. front: {
  4418. height: math.unit(6, "feet"),
  4419. weight: math.unit(200, "lbs"),
  4420. name: "Front",
  4421. image: {
  4422. source: "./media/characters/vulpes/front.svg",
  4423. extra: 573 / 543,
  4424. bottom: 0.033
  4425. }
  4426. },
  4427. side: {
  4428. height: math.unit(6, "feet"),
  4429. weight: math.unit(200, "lbs"),
  4430. name: "Side",
  4431. image: {
  4432. source: "./media/characters/vulpes/side.svg",
  4433. extra: 577 / 549,
  4434. bottom: 11 / 588
  4435. }
  4436. },
  4437. back: {
  4438. height: math.unit(6, "feet"),
  4439. weight: math.unit(200, "lbs"),
  4440. name: "Back",
  4441. image: {
  4442. source: "./media/characters/vulpes/back.svg",
  4443. extra: 573 / 549,
  4444. bottom: 20 / 593
  4445. }
  4446. },
  4447. feet: {
  4448. height: math.unit(1.276, "feet"),
  4449. name: "Feet",
  4450. image: {
  4451. source: "./media/characters/vulpes/feet.svg"
  4452. }
  4453. },
  4454. maw: {
  4455. height: math.unit(1.18, "feet"),
  4456. name: "Maw",
  4457. image: {
  4458. source: "./media/characters/vulpes/maw.svg"
  4459. }
  4460. },
  4461. },
  4462. [
  4463. {
  4464. name: "Micro",
  4465. height: math.unit(2, "inches")
  4466. },
  4467. {
  4468. name: "Normal",
  4469. height: math.unit(6.3, "feet")
  4470. },
  4471. {
  4472. name: "Macro",
  4473. height: math.unit(850, "feet")
  4474. },
  4475. {
  4476. name: "Megamacro",
  4477. height: math.unit(7500, "feet"),
  4478. default: true
  4479. },
  4480. {
  4481. name: "Gigamacro",
  4482. height: math.unit(570000, "miles")
  4483. }
  4484. ]
  4485. ))
  4486. characterMakers.push(() => makeCharacter(
  4487. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4488. {
  4489. front: {
  4490. height: math.unit(6, "feet"),
  4491. weight: math.unit(210, "lbs"),
  4492. name: "Front",
  4493. image: {
  4494. source: "./media/characters/rain-fallen/front.svg"
  4495. }
  4496. },
  4497. side: {
  4498. height: math.unit(6, "feet"),
  4499. weight: math.unit(210, "lbs"),
  4500. name: "Side",
  4501. image: {
  4502. source: "./media/characters/rain-fallen/side.svg"
  4503. }
  4504. },
  4505. back: {
  4506. height: math.unit(6, "feet"),
  4507. weight: math.unit(210, "lbs"),
  4508. name: "Back",
  4509. image: {
  4510. source: "./media/characters/rain-fallen/back.svg"
  4511. }
  4512. },
  4513. feral: {
  4514. height: math.unit(9, "feet"),
  4515. weight: math.unit(700, "lbs"),
  4516. name: "Feral",
  4517. image: {
  4518. source: "./media/characters/rain-fallen/feral.svg"
  4519. }
  4520. },
  4521. },
  4522. [
  4523. {
  4524. name: "Meddling with Mortals",
  4525. height: math.unit(8 + 8/12, "feet")
  4526. },
  4527. {
  4528. name: "Normal",
  4529. height: math.unit(5, "meter")
  4530. },
  4531. {
  4532. name: "Macro",
  4533. height: math.unit(150, "meter"),
  4534. default: true
  4535. },
  4536. {
  4537. name: "Megamacro",
  4538. height: math.unit(278e6, "meter")
  4539. },
  4540. {
  4541. name: "Gigamacro",
  4542. height: math.unit(2e9, "meter")
  4543. },
  4544. {
  4545. name: "Teramacro",
  4546. height: math.unit(8e12, "meter")
  4547. },
  4548. {
  4549. name: "Devourer",
  4550. height: math.unit(14, "zettameters")
  4551. },
  4552. {
  4553. name: "Scarlet King",
  4554. height: math.unit(18, "yottameters")
  4555. },
  4556. {
  4557. name: "Void",
  4558. height: math.unit(1e88, "yottameters")
  4559. }
  4560. ]
  4561. ))
  4562. characterMakers.push(() => makeCharacter(
  4563. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4564. {
  4565. standing: {
  4566. height: math.unit(6, "feet"),
  4567. weight: math.unit(180, "lbs"),
  4568. name: "Standing",
  4569. image: {
  4570. source: "./media/characters/zaakira/standing.svg",
  4571. extra: 1599/1504,
  4572. bottom: 39/1638
  4573. }
  4574. },
  4575. laying: {
  4576. height: math.unit(3, "feet"),
  4577. weight: math.unit(180, "lbs"),
  4578. name: "Laying",
  4579. image: {
  4580. source: "./media/characters/zaakira/laying.svg"
  4581. }
  4582. },
  4583. },
  4584. [
  4585. {
  4586. name: "Normal",
  4587. height: math.unit(12, "feet")
  4588. },
  4589. {
  4590. name: "Macro",
  4591. height: math.unit(279, "feet"),
  4592. default: true
  4593. }
  4594. ]
  4595. ))
  4596. characterMakers.push(() => makeCharacter(
  4597. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4598. {
  4599. femSfw: {
  4600. height: math.unit(8, "feet"),
  4601. weight: math.unit(350, "lb"),
  4602. name: "Fem",
  4603. image: {
  4604. source: "./media/characters/sigvald/fem-sfw.svg",
  4605. extra: 182 / 164,
  4606. bottom: 8.7 / 190.5
  4607. }
  4608. },
  4609. femNsfw: {
  4610. height: math.unit(8, "feet"),
  4611. weight: math.unit(350, "lb"),
  4612. name: "Fem (NSFW)",
  4613. image: {
  4614. source: "./media/characters/sigvald/fem-nsfw.svg",
  4615. extra: 182 / 164,
  4616. bottom: 8.7 / 190.5
  4617. }
  4618. },
  4619. maleNsfw: {
  4620. height: math.unit(8, "feet"),
  4621. weight: math.unit(350, "lb"),
  4622. name: "Male (NSFW)",
  4623. image: {
  4624. source: "./media/characters/sigvald/male-nsfw.svg",
  4625. extra: 182 / 164,
  4626. bottom: 8.7 / 190.5
  4627. }
  4628. },
  4629. hermNsfw: {
  4630. height: math.unit(8, "feet"),
  4631. weight: math.unit(350, "lb"),
  4632. name: "Herm (NSFW)",
  4633. image: {
  4634. source: "./media/characters/sigvald/herm-nsfw.svg",
  4635. extra: 182 / 164,
  4636. bottom: 8.7 / 190.5
  4637. }
  4638. },
  4639. dick: {
  4640. height: math.unit(2.36, "feet"),
  4641. name: "Dick",
  4642. image: {
  4643. source: "./media/characters/sigvald/dick.svg"
  4644. }
  4645. },
  4646. eye: {
  4647. height: math.unit(0.31, "feet"),
  4648. name: "Eye",
  4649. image: {
  4650. source: "./media/characters/sigvald/eye.svg"
  4651. }
  4652. },
  4653. mouth: {
  4654. height: math.unit(0.92, "feet"),
  4655. name: "Mouth",
  4656. image: {
  4657. source: "./media/characters/sigvald/mouth.svg"
  4658. }
  4659. },
  4660. paws: {
  4661. height: math.unit(2.2, "feet"),
  4662. name: "Paws",
  4663. image: {
  4664. source: "./media/characters/sigvald/paws.svg"
  4665. }
  4666. }
  4667. },
  4668. [
  4669. {
  4670. name: "Normal",
  4671. height: math.unit(8, "feet")
  4672. },
  4673. {
  4674. name: "Large",
  4675. height: math.unit(12, "feet")
  4676. },
  4677. {
  4678. name: "Larger",
  4679. height: math.unit(20, "feet")
  4680. },
  4681. {
  4682. name: "Macro",
  4683. height: math.unit(150, "feet")
  4684. },
  4685. {
  4686. name: "Macro+",
  4687. height: math.unit(200, "feet"),
  4688. default: true
  4689. },
  4690. ]
  4691. ))
  4692. characterMakers.push(() => makeCharacter(
  4693. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4694. {
  4695. side: {
  4696. height: math.unit(12, "feet"),
  4697. weight: math.unit(2000, "kg"),
  4698. name: "Side",
  4699. image: {
  4700. source: "./media/characters/scott/side.svg",
  4701. extra: 754 / 724,
  4702. bottom: 0.069
  4703. }
  4704. },
  4705. upright: {
  4706. height: math.unit(12, "feet"),
  4707. weight: math.unit(2000, "kg"),
  4708. name: "Upright",
  4709. image: {
  4710. source: "./media/characters/scott/upright.svg",
  4711. extra: 3881 / 3722,
  4712. bottom: 0.05
  4713. }
  4714. },
  4715. },
  4716. [
  4717. {
  4718. name: "Normal",
  4719. height: math.unit(12, "feet"),
  4720. default: true
  4721. },
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4726. {
  4727. side: {
  4728. height: math.unit(8, "meters"),
  4729. weight: math.unit(84755, "lbs"),
  4730. name: "Side",
  4731. image: {
  4732. source: "./media/characters/tobias/side.svg",
  4733. extra: 1474 / 1096,
  4734. bottom: 38.9 / 1513.1235
  4735. }
  4736. },
  4737. },
  4738. [
  4739. {
  4740. name: "Normal",
  4741. height: math.unit(8, "meters"),
  4742. default: true
  4743. },
  4744. ]
  4745. ))
  4746. characterMakers.push(() => makeCharacter(
  4747. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4748. {
  4749. front: {
  4750. height: math.unit(5.5, "feet"),
  4751. weight: math.unit(400, "lbs"),
  4752. name: "Front",
  4753. image: {
  4754. source: "./media/characters/kieran/front.svg",
  4755. extra: 2694 / 2364,
  4756. bottom: 217 / 2908
  4757. }
  4758. },
  4759. side: {
  4760. height: math.unit(5.5, "feet"),
  4761. weight: math.unit(400, "lbs"),
  4762. name: "Side",
  4763. image: {
  4764. source: "./media/characters/kieran/side.svg",
  4765. extra: 875 / 777,
  4766. bottom: 84.6 / 959
  4767. }
  4768. },
  4769. },
  4770. [
  4771. {
  4772. name: "Normal",
  4773. height: math.unit(5.5, "feet"),
  4774. default: true
  4775. },
  4776. ]
  4777. ))
  4778. characterMakers.push(() => makeCharacter(
  4779. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4780. {
  4781. side: {
  4782. height: math.unit(2, "meters"),
  4783. weight: math.unit(70, "kg"),
  4784. name: "Side",
  4785. image: {
  4786. source: "./media/characters/sanya/side.svg",
  4787. bottom: 0.02,
  4788. extra: 1.02
  4789. }
  4790. },
  4791. },
  4792. [
  4793. {
  4794. name: "Small",
  4795. height: math.unit(2, "meters")
  4796. },
  4797. {
  4798. name: "Normal",
  4799. height: math.unit(3, "meters")
  4800. },
  4801. {
  4802. name: "Macro",
  4803. height: math.unit(16, "meters"),
  4804. default: true
  4805. },
  4806. ]
  4807. ))
  4808. characterMakers.push(() => makeCharacter(
  4809. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4810. {
  4811. front: {
  4812. height: math.unit(2, "meters"),
  4813. weight: math.unit(120, "kg"),
  4814. name: "Front",
  4815. image: {
  4816. source: "./media/characters/miranda/front.svg",
  4817. extra: 195 / 185,
  4818. bottom: 10.9 / 206.5
  4819. }
  4820. },
  4821. back: {
  4822. height: math.unit(2, "meters"),
  4823. weight: math.unit(120, "kg"),
  4824. name: "Back",
  4825. image: {
  4826. source: "./media/characters/miranda/back.svg",
  4827. extra: 201 / 193,
  4828. bottom: 2.3 / 203.7
  4829. }
  4830. },
  4831. },
  4832. [
  4833. {
  4834. name: "Normal",
  4835. height: math.unit(10, "feet"),
  4836. default: true
  4837. }
  4838. ]
  4839. ))
  4840. characterMakers.push(() => makeCharacter(
  4841. { name: "James", species: ["deer"], tags: ["anthro"] },
  4842. {
  4843. side: {
  4844. height: math.unit(2, "meters"),
  4845. weight: math.unit(100, "kg"),
  4846. name: "Front",
  4847. image: {
  4848. source: "./media/characters/james/front.svg",
  4849. extra: 10 / 8.5
  4850. }
  4851. },
  4852. },
  4853. [
  4854. {
  4855. name: "Normal",
  4856. height: math.unit(8.5, "feet"),
  4857. default: true
  4858. }
  4859. ]
  4860. ))
  4861. characterMakers.push(() => makeCharacter(
  4862. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4863. {
  4864. side: {
  4865. height: math.unit(9.5, "feet"),
  4866. weight: math.unit(2500, "lbs"),
  4867. name: "Side",
  4868. image: {
  4869. source: "./media/characters/heather/side.svg"
  4870. }
  4871. },
  4872. },
  4873. [
  4874. {
  4875. name: "Normal",
  4876. height: math.unit(9.5, "feet"),
  4877. default: true
  4878. }
  4879. ]
  4880. ))
  4881. characterMakers.push(() => makeCharacter(
  4882. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4883. {
  4884. side: {
  4885. height: math.unit(6.5, "feet"),
  4886. weight: math.unit(400, "lbs"),
  4887. name: "Side",
  4888. image: {
  4889. source: "./media/characters/lukas/side.svg",
  4890. extra: 7.25 / 6.5
  4891. }
  4892. },
  4893. },
  4894. [
  4895. {
  4896. name: "Normal",
  4897. height: math.unit(6.5, "feet"),
  4898. default: true
  4899. }
  4900. ]
  4901. ))
  4902. characterMakers.push(() => makeCharacter(
  4903. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4904. {
  4905. side: {
  4906. height: math.unit(5, "feet"),
  4907. weight: math.unit(3000, "lbs"),
  4908. name: "Side",
  4909. image: {
  4910. source: "./media/characters/louise/side.svg"
  4911. }
  4912. },
  4913. },
  4914. [
  4915. {
  4916. name: "Normal",
  4917. height: math.unit(5, "feet"),
  4918. default: true
  4919. }
  4920. ]
  4921. ))
  4922. characterMakers.push(() => makeCharacter(
  4923. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4924. {
  4925. side: {
  4926. height: math.unit(6, "feet"),
  4927. weight: math.unit(150, "lbs"),
  4928. name: "Side",
  4929. image: {
  4930. source: "./media/characters/ramona/side.svg"
  4931. }
  4932. },
  4933. },
  4934. [
  4935. {
  4936. name: "Normal",
  4937. height: math.unit(5.3, "meters"),
  4938. default: true
  4939. },
  4940. {
  4941. name: "Macro",
  4942. height: math.unit(20, "stories")
  4943. },
  4944. {
  4945. name: "Macro+",
  4946. height: math.unit(50, "stories")
  4947. },
  4948. ]
  4949. ))
  4950. characterMakers.push(() => makeCharacter(
  4951. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4952. {
  4953. standing: {
  4954. height: math.unit(5.75, "feet"),
  4955. weight: math.unit(160, "lbs"),
  4956. name: "Standing",
  4957. image: {
  4958. source: "./media/characters/deerpuff/standing.svg",
  4959. extra: 682 / 624
  4960. }
  4961. },
  4962. sitting: {
  4963. height: math.unit(5.75 / 1.79, "feet"),
  4964. weight: math.unit(160, "lbs"),
  4965. name: "Sitting",
  4966. image: {
  4967. source: "./media/characters/deerpuff/sitting.svg",
  4968. bottom: 44 / 400,
  4969. extra: 1
  4970. }
  4971. },
  4972. taurLaying: {
  4973. height: math.unit(6, "feet"),
  4974. weight: math.unit(400, "lbs"),
  4975. name: "Taur (Laying)",
  4976. image: {
  4977. source: "./media/characters/deerpuff/taur-laying.svg"
  4978. }
  4979. },
  4980. },
  4981. [
  4982. {
  4983. name: "Puffball",
  4984. height: math.unit(6, "inches")
  4985. },
  4986. {
  4987. name: "Normalpuff",
  4988. height: math.unit(5.75, "feet")
  4989. },
  4990. {
  4991. name: "Macropuff",
  4992. height: math.unit(1500, "feet"),
  4993. default: true
  4994. },
  4995. {
  4996. name: "Megapuff",
  4997. height: math.unit(500, "miles")
  4998. },
  4999. {
  5000. name: "Gigapuff",
  5001. height: math.unit(250000, "miles")
  5002. },
  5003. {
  5004. name: "Omegapuff",
  5005. height: math.unit(1000, "lightyears")
  5006. },
  5007. ]
  5008. ))
  5009. characterMakers.push(() => makeCharacter(
  5010. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5011. {
  5012. stomping: {
  5013. height: math.unit(6, "feet"),
  5014. weight: math.unit(170, "lbs"),
  5015. name: "Stomping",
  5016. image: {
  5017. source: "./media/characters/vivian/stomping.svg"
  5018. }
  5019. },
  5020. sitting: {
  5021. height: math.unit(6 / 1.75, "feet"),
  5022. weight: math.unit(170, "lbs"),
  5023. name: "Sitting",
  5024. image: {
  5025. source: "./media/characters/vivian/sitting.svg",
  5026. bottom: 1 / 6.4,
  5027. extra: 1,
  5028. }
  5029. },
  5030. },
  5031. [
  5032. {
  5033. name: "Normal",
  5034. height: math.unit(7, "feet"),
  5035. default: true
  5036. },
  5037. {
  5038. name: "Macro",
  5039. height: math.unit(10, "stories")
  5040. },
  5041. {
  5042. name: "Macro+",
  5043. height: math.unit(30, "stories")
  5044. },
  5045. {
  5046. name: "Megamacro",
  5047. height: math.unit(10, "miles")
  5048. },
  5049. {
  5050. name: "Megamacro+",
  5051. height: math.unit(2750000, "meters")
  5052. },
  5053. ]
  5054. ))
  5055. characterMakers.push(() => makeCharacter(
  5056. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5057. {
  5058. front: {
  5059. height: math.unit(6, "feet"),
  5060. weight: math.unit(160, "lbs"),
  5061. name: "Front",
  5062. image: {
  5063. source: "./media/characters/prince/front.svg",
  5064. extra: 3400 / 3000
  5065. }
  5066. },
  5067. jumping: {
  5068. height: math.unit(6, "feet"),
  5069. weight: math.unit(160, "lbs"),
  5070. name: "Jumping",
  5071. image: {
  5072. source: "./media/characters/prince/jump.svg",
  5073. extra: 2555 / 2134
  5074. }
  5075. },
  5076. },
  5077. [
  5078. {
  5079. name: "Normal",
  5080. height: math.unit(7.75, "feet"),
  5081. default: true
  5082. },
  5083. {
  5084. name: "Not cute",
  5085. height: math.unit(17, "feet")
  5086. },
  5087. {
  5088. name: "I said NOT",
  5089. height: math.unit(91, "feet")
  5090. },
  5091. {
  5092. name: "Please stop",
  5093. height: math.unit(560, "feet")
  5094. },
  5095. {
  5096. name: "What have you done",
  5097. height: math.unit(2200, "feet")
  5098. },
  5099. {
  5100. name: "Deer God",
  5101. height: math.unit(3.6, "miles")
  5102. },
  5103. ]
  5104. ))
  5105. characterMakers.push(() => makeCharacter(
  5106. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5107. {
  5108. standing: {
  5109. height: math.unit(6, "feet"),
  5110. weight: math.unit(300, "lbs"),
  5111. name: "Standing",
  5112. image: {
  5113. source: "./media/characters/psymon/standing.svg",
  5114. extra: 1888 / 1810,
  5115. bottom: 0.05
  5116. }
  5117. },
  5118. slithering: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(300, "lbs"),
  5121. name: "Slithering",
  5122. image: {
  5123. source: "./media/characters/psymon/slithering.svg",
  5124. extra: 1330 / 1224
  5125. }
  5126. },
  5127. slitheringAlt: {
  5128. height: math.unit(6, "feet"),
  5129. weight: math.unit(300, "lbs"),
  5130. name: "Slithering (Alt)",
  5131. image: {
  5132. source: "./media/characters/psymon/slithering-alt.svg",
  5133. extra: 1330 / 1224
  5134. }
  5135. },
  5136. },
  5137. [
  5138. {
  5139. name: "Normal",
  5140. height: math.unit(11.25, "feet"),
  5141. default: true
  5142. },
  5143. {
  5144. name: "Large",
  5145. height: math.unit(27, "feet")
  5146. },
  5147. {
  5148. name: "Giant",
  5149. height: math.unit(87, "feet")
  5150. },
  5151. {
  5152. name: "Macro",
  5153. height: math.unit(365, "feet")
  5154. },
  5155. {
  5156. name: "Megamacro",
  5157. height: math.unit(3, "miles")
  5158. },
  5159. {
  5160. name: "World Serpent",
  5161. height: math.unit(8000, "miles")
  5162. },
  5163. ]
  5164. ))
  5165. characterMakers.push(() => makeCharacter(
  5166. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5167. {
  5168. front: {
  5169. height: math.unit(6, "feet"),
  5170. weight: math.unit(180, "lbs"),
  5171. name: "Front",
  5172. image: {
  5173. source: "./media/characters/daimos/front.svg",
  5174. extra: 4160 / 3897,
  5175. bottom: 0.021
  5176. }
  5177. }
  5178. },
  5179. [
  5180. {
  5181. name: "Normal",
  5182. height: math.unit(8, "feet"),
  5183. default: true
  5184. },
  5185. {
  5186. name: "Big Dog",
  5187. height: math.unit(22, "feet")
  5188. },
  5189. {
  5190. name: "Macro",
  5191. height: math.unit(127, "feet")
  5192. },
  5193. {
  5194. name: "Megamacro",
  5195. height: math.unit(3600, "feet")
  5196. },
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5201. {
  5202. side: {
  5203. height: math.unit(6, "feet"),
  5204. weight: math.unit(180, "lbs"),
  5205. name: "Side",
  5206. image: {
  5207. source: "./media/characters/blake/side.svg",
  5208. extra: 1212 / 1120,
  5209. bottom: 0.05
  5210. }
  5211. },
  5212. crouched: {
  5213. height: math.unit(6 * 0.57, "feet"),
  5214. weight: math.unit(180, "lbs"),
  5215. name: "Crouched",
  5216. image: {
  5217. source: "./media/characters/blake/crouched.svg",
  5218. extra: 840 / 587,
  5219. bottom: 0.04
  5220. }
  5221. },
  5222. bent: {
  5223. height: math.unit(6 * 0.75, "feet"),
  5224. weight: math.unit(180, "lbs"),
  5225. name: "Bent",
  5226. image: {
  5227. source: "./media/characters/blake/bent.svg",
  5228. extra: 592 / 544,
  5229. bottom: 0.035
  5230. }
  5231. },
  5232. },
  5233. [
  5234. {
  5235. name: "Normal",
  5236. height: math.unit(8 + 1 / 6, "feet"),
  5237. default: true
  5238. },
  5239. {
  5240. name: "Big Backside",
  5241. height: math.unit(37, "feet")
  5242. },
  5243. {
  5244. name: "Subway Shredder",
  5245. height: math.unit(72, "feet")
  5246. },
  5247. {
  5248. name: "City Carver",
  5249. height: math.unit(1675, "feet")
  5250. },
  5251. {
  5252. name: "Tectonic Tweaker",
  5253. height: math.unit(2300, "miles")
  5254. },
  5255. ]
  5256. ))
  5257. characterMakers.push(() => makeCharacter(
  5258. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5259. {
  5260. front: {
  5261. height: math.unit(6, "feet"),
  5262. weight: math.unit(180, "lbs"),
  5263. name: "Front",
  5264. image: {
  5265. source: "./media/characters/guisetto/front.svg",
  5266. extra: 856 / 817,
  5267. bottom: 0.06
  5268. }
  5269. },
  5270. airborne: {
  5271. height: math.unit(6, "feet"),
  5272. weight: math.unit(180, "lbs"),
  5273. name: "Airborne",
  5274. image: {
  5275. source: "./media/characters/guisetto/airborne.svg",
  5276. extra: 584 / 525
  5277. }
  5278. },
  5279. },
  5280. [
  5281. {
  5282. name: "Normal",
  5283. height: math.unit(10 + 11 / 12, "feet"),
  5284. default: true
  5285. },
  5286. {
  5287. name: "Large",
  5288. height: math.unit(35, "feet")
  5289. },
  5290. {
  5291. name: "Macro",
  5292. height: math.unit(475, "feet")
  5293. },
  5294. ]
  5295. ))
  5296. characterMakers.push(() => makeCharacter(
  5297. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5298. {
  5299. front: {
  5300. height: math.unit(6, "feet"),
  5301. weight: math.unit(180, "lbs"),
  5302. name: "Front",
  5303. image: {
  5304. source: "./media/characters/luxor/front.svg",
  5305. extra: 2940 / 2152
  5306. }
  5307. },
  5308. back: {
  5309. height: math.unit(6, "feet"),
  5310. weight: math.unit(180, "lbs"),
  5311. name: "Back",
  5312. image: {
  5313. source: "./media/characters/luxor/back.svg",
  5314. extra: 1083 / 960
  5315. }
  5316. },
  5317. },
  5318. [
  5319. {
  5320. name: "Normal",
  5321. height: math.unit(5 + 5 / 6, "feet"),
  5322. default: true
  5323. },
  5324. {
  5325. name: "Lamp",
  5326. height: math.unit(50, "feet")
  5327. },
  5328. {
  5329. name: "Lämp",
  5330. height: math.unit(300, "feet")
  5331. },
  5332. {
  5333. name: "The sun is a lamp",
  5334. height: math.unit(250000, "miles")
  5335. },
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5340. {
  5341. front: {
  5342. height: math.unit(6, "feet"),
  5343. weight: math.unit(50, "lbs"),
  5344. name: "Front",
  5345. image: {
  5346. source: "./media/characters/huoyan/front.svg"
  5347. }
  5348. },
  5349. side: {
  5350. height: math.unit(6, "feet"),
  5351. weight: math.unit(180, "lbs"),
  5352. name: "Side",
  5353. image: {
  5354. source: "./media/characters/huoyan/side.svg"
  5355. }
  5356. },
  5357. },
  5358. [
  5359. {
  5360. name: "Chef",
  5361. height: math.unit(9, "feet")
  5362. },
  5363. {
  5364. name: "Normal",
  5365. height: math.unit(65, "feet"),
  5366. default: true
  5367. },
  5368. {
  5369. name: "Macro",
  5370. height: math.unit(780, "feet")
  5371. },
  5372. {
  5373. name: "Flaming Mountain",
  5374. height: math.unit(4.8, "miles")
  5375. },
  5376. {
  5377. name: "Celestial",
  5378. height: math.unit(765000, "miles")
  5379. },
  5380. ]
  5381. ))
  5382. characterMakers.push(() => makeCharacter(
  5383. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5384. {
  5385. front: {
  5386. height: math.unit(5 + 3 / 4, "feet"),
  5387. weight: math.unit(120, "lbs"),
  5388. name: "Front",
  5389. image: {
  5390. source: "./media/characters/tails/front.svg"
  5391. }
  5392. }
  5393. },
  5394. [
  5395. {
  5396. name: "Normal",
  5397. height: math.unit(5 + 3 / 4, "feet"),
  5398. default: true
  5399. }
  5400. ]
  5401. ))
  5402. characterMakers.push(() => makeCharacter(
  5403. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5404. {
  5405. front: {
  5406. height: math.unit(4, "feet"),
  5407. weight: math.unit(50, "lbs"),
  5408. name: "Front",
  5409. image: {
  5410. source: "./media/characters/rainy/front.svg"
  5411. }
  5412. }
  5413. },
  5414. [
  5415. {
  5416. name: "Macro",
  5417. height: math.unit(800, "feet"),
  5418. default: true
  5419. }
  5420. ]
  5421. ))
  5422. characterMakers.push(() => makeCharacter(
  5423. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5424. {
  5425. front: {
  5426. height: math.unit(6, "feet"),
  5427. weight: math.unit(150, "lbs"),
  5428. name: "Front",
  5429. image: {
  5430. source: "./media/characters/rainier/front.svg"
  5431. }
  5432. }
  5433. },
  5434. [
  5435. {
  5436. name: "Micro",
  5437. height: math.unit(2, "mm"),
  5438. default: true
  5439. }
  5440. ]
  5441. ))
  5442. characterMakers.push(() => makeCharacter(
  5443. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5444. {
  5445. front: {
  5446. height: math.unit(6, "feet"),
  5447. weight: math.unit(180, "lbs"),
  5448. name: "Front",
  5449. image: {
  5450. source: "./media/characters/andy/front.svg"
  5451. }
  5452. }
  5453. },
  5454. [
  5455. {
  5456. name: "Normal",
  5457. height: math.unit(8, "feet"),
  5458. default: true
  5459. },
  5460. {
  5461. name: "Macro",
  5462. height: math.unit(1000, "feet")
  5463. },
  5464. {
  5465. name: "Megamacro",
  5466. height: math.unit(5, "miles")
  5467. },
  5468. {
  5469. name: "Gigamacro",
  5470. height: math.unit(5000, "miles")
  5471. },
  5472. ]
  5473. ))
  5474. characterMakers.push(() => makeCharacter(
  5475. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5476. {
  5477. front: {
  5478. height: math.unit(6, "feet"),
  5479. weight: math.unit(210, "lbs"),
  5480. name: "Front",
  5481. image: {
  5482. source: "./media/characters/cimmaron/front-sfw.svg",
  5483. extra: 701 / 676,
  5484. bottom: 0.046
  5485. }
  5486. },
  5487. back: {
  5488. height: math.unit(6, "feet"),
  5489. weight: math.unit(210, "lbs"),
  5490. name: "Back",
  5491. image: {
  5492. source: "./media/characters/cimmaron/back-sfw.svg",
  5493. extra: 701 / 676,
  5494. bottom: 0.046
  5495. }
  5496. },
  5497. frontNsfw: {
  5498. height: math.unit(6, "feet"),
  5499. weight: math.unit(210, "lbs"),
  5500. name: "Front (NSFW)",
  5501. image: {
  5502. source: "./media/characters/cimmaron/front-nsfw.svg",
  5503. extra: 701 / 676,
  5504. bottom: 0.046
  5505. }
  5506. },
  5507. backNsfw: {
  5508. height: math.unit(6, "feet"),
  5509. weight: math.unit(210, "lbs"),
  5510. name: "Back (NSFW)",
  5511. image: {
  5512. source: "./media/characters/cimmaron/back-nsfw.svg",
  5513. extra: 701 / 676,
  5514. bottom: 0.046
  5515. }
  5516. },
  5517. dick: {
  5518. height: math.unit(1.714, "feet"),
  5519. name: "Dick",
  5520. image: {
  5521. source: "./media/characters/cimmaron/dick.svg"
  5522. }
  5523. },
  5524. },
  5525. [
  5526. {
  5527. name: "Normal",
  5528. height: math.unit(6, "feet"),
  5529. default: true
  5530. },
  5531. {
  5532. name: "Macro Mayor",
  5533. height: math.unit(350, "meters")
  5534. },
  5535. ]
  5536. ))
  5537. characterMakers.push(() => makeCharacter(
  5538. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5539. {
  5540. front: {
  5541. height: math.unit(6, "feet"),
  5542. weight: math.unit(200, "lbs"),
  5543. name: "Front",
  5544. image: {
  5545. source: "./media/characters/akari/front.svg",
  5546. extra: 962 / 901,
  5547. bottom: 0.04
  5548. }
  5549. }
  5550. },
  5551. [
  5552. {
  5553. name: "Micro",
  5554. height: math.unit(5, "inches"),
  5555. default: true
  5556. },
  5557. {
  5558. name: "Normal",
  5559. height: math.unit(7, "feet")
  5560. },
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5565. {
  5566. front: {
  5567. height: math.unit(6, "feet"),
  5568. weight: math.unit(140, "lbs"),
  5569. name: "Front",
  5570. image: {
  5571. source: "./media/characters/cynosura/front.svg",
  5572. extra: 896 / 847
  5573. }
  5574. },
  5575. back: {
  5576. height: math.unit(6, "feet"),
  5577. weight: math.unit(140, "lbs"),
  5578. name: "Back",
  5579. image: {
  5580. source: "./media/characters/cynosura/back.svg",
  5581. extra: 1365 / 1250
  5582. }
  5583. },
  5584. },
  5585. [
  5586. {
  5587. name: "Micro",
  5588. height: math.unit(4, "inches")
  5589. },
  5590. {
  5591. name: "Normal",
  5592. height: math.unit(5.75, "feet"),
  5593. default: true
  5594. },
  5595. {
  5596. name: "Tall",
  5597. height: math.unit(10, "feet")
  5598. },
  5599. {
  5600. name: "Big",
  5601. height: math.unit(20, "feet")
  5602. },
  5603. {
  5604. name: "Macro",
  5605. height: math.unit(50, "feet")
  5606. },
  5607. ]
  5608. ))
  5609. characterMakers.push(() => makeCharacter(
  5610. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5611. {
  5612. front: {
  5613. height: math.unit(13 + 2/12, "feet"),
  5614. weight: math.unit(800, "kg"),
  5615. name: "Front",
  5616. image: {
  5617. source: "./media/characters/gin/front.svg",
  5618. extra: 1312/1191,
  5619. bottom: 45/1357
  5620. }
  5621. },
  5622. mouth: {
  5623. height: math.unit(2.39 * 1.8, "feet"),
  5624. name: "Mouth",
  5625. image: {
  5626. source: "./media/characters/gin/mouth.svg"
  5627. }
  5628. },
  5629. hand: {
  5630. height: math.unit(1.57 * 2.19, "feet"),
  5631. name: "Hand",
  5632. image: {
  5633. source: "./media/characters/gin/hand.svg"
  5634. }
  5635. },
  5636. foot: {
  5637. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5638. name: "Foot",
  5639. image: {
  5640. source: "./media/characters/gin/foot.svg"
  5641. }
  5642. },
  5643. sole: {
  5644. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5645. name: "Sole",
  5646. image: {
  5647. source: "./media/characters/gin/sole.svg"
  5648. }
  5649. },
  5650. },
  5651. [
  5652. {
  5653. name: "Very Small",
  5654. height: math.unit(13 + 2 / 12, "feet")
  5655. },
  5656. {
  5657. name: "Micro",
  5658. height: math.unit(600, "miles")
  5659. },
  5660. {
  5661. name: "Regular",
  5662. height: math.unit(20, "earths"),
  5663. default: true
  5664. },
  5665. {
  5666. name: "Macro",
  5667. height: math.unit(2.2, "solarradii")
  5668. },
  5669. {
  5670. name: "Teramacro",
  5671. height: math.unit(1.2, "galaxies")
  5672. },
  5673. {
  5674. name: "Omegamacro",
  5675. height: math.unit(200, "universes")
  5676. },
  5677. ]
  5678. ))
  5679. characterMakers.push(() => makeCharacter(
  5680. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5681. {
  5682. front: {
  5683. height: math.unit(6 + 1 / 6, "feet"),
  5684. weight: math.unit(178, "lbs"),
  5685. name: "Front",
  5686. image: {
  5687. source: "./media/characters/guy/front.svg"
  5688. }
  5689. }
  5690. },
  5691. [
  5692. {
  5693. name: "Normal",
  5694. height: math.unit(6 + 1 / 6, "feet"),
  5695. default: true
  5696. },
  5697. {
  5698. name: "Large",
  5699. height: math.unit(25 + 7 / 12, "feet")
  5700. },
  5701. {
  5702. name: "Macro",
  5703. height: math.unit(60 + 9 / 12, "feet")
  5704. },
  5705. {
  5706. name: "Macro+",
  5707. height: math.unit(246, "feet")
  5708. },
  5709. {
  5710. name: "Macro++",
  5711. height: math.unit(878, "feet")
  5712. }
  5713. ]
  5714. ))
  5715. characterMakers.push(() => makeCharacter(
  5716. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5717. {
  5718. front: {
  5719. height: math.unit(9, "feet"),
  5720. weight: math.unit(800, "lbs"),
  5721. name: "Front",
  5722. image: {
  5723. source: "./media/characters/tiberius/front.svg",
  5724. extra: 2295 / 2071
  5725. }
  5726. },
  5727. back: {
  5728. height: math.unit(9, "feet"),
  5729. weight: math.unit(800, "lbs"),
  5730. name: "Back",
  5731. image: {
  5732. source: "./media/characters/tiberius/back.svg",
  5733. extra: 2373 / 2160
  5734. }
  5735. },
  5736. },
  5737. [
  5738. {
  5739. name: "Normal",
  5740. height: math.unit(9, "feet"),
  5741. default: true
  5742. }
  5743. ]
  5744. ))
  5745. characterMakers.push(() => makeCharacter(
  5746. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5747. {
  5748. front: {
  5749. height: math.unit(6, "feet"),
  5750. weight: math.unit(600, "lbs"),
  5751. name: "Front",
  5752. image: {
  5753. source: "./media/characters/surgo/front.svg",
  5754. extra: 3591 / 2227
  5755. }
  5756. },
  5757. back: {
  5758. height: math.unit(6, "feet"),
  5759. weight: math.unit(600, "lbs"),
  5760. name: "Back",
  5761. image: {
  5762. source: "./media/characters/surgo/back.svg",
  5763. extra: 3557 / 2228
  5764. }
  5765. },
  5766. laying: {
  5767. height: math.unit(6 * 0.85, "feet"),
  5768. weight: math.unit(600, "lbs"),
  5769. name: "Laying",
  5770. image: {
  5771. source: "./media/characters/surgo/laying.svg"
  5772. }
  5773. },
  5774. },
  5775. [
  5776. {
  5777. name: "Normal",
  5778. height: math.unit(6, "feet"),
  5779. default: true
  5780. }
  5781. ]
  5782. ))
  5783. characterMakers.push(() => makeCharacter(
  5784. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5785. {
  5786. side: {
  5787. height: math.unit(6, "feet"),
  5788. weight: math.unit(150, "lbs"),
  5789. name: "Side",
  5790. image: {
  5791. source: "./media/characters/cibus/side.svg",
  5792. extra: 800 / 400
  5793. }
  5794. },
  5795. },
  5796. [
  5797. {
  5798. name: "Normal",
  5799. height: math.unit(6, "feet"),
  5800. default: true
  5801. }
  5802. ]
  5803. ))
  5804. characterMakers.push(() => makeCharacter(
  5805. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5806. {
  5807. front: {
  5808. height: math.unit(6, "feet"),
  5809. weight: math.unit(240, "lbs"),
  5810. name: "Front",
  5811. image: {
  5812. source: "./media/characters/nibbles/front.svg"
  5813. }
  5814. },
  5815. side: {
  5816. height: math.unit(6, "feet"),
  5817. weight: math.unit(240, "lbs"),
  5818. name: "Side",
  5819. image: {
  5820. source: "./media/characters/nibbles/side.svg"
  5821. }
  5822. },
  5823. },
  5824. [
  5825. {
  5826. name: "Normal",
  5827. height: math.unit(9, "feet"),
  5828. default: true
  5829. }
  5830. ]
  5831. ))
  5832. characterMakers.push(() => makeCharacter(
  5833. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5834. {
  5835. side: {
  5836. height: math.unit(5 + 1 / 6, "feet"),
  5837. weight: math.unit(130, "lbs"),
  5838. name: "Side",
  5839. image: {
  5840. source: "./media/characters/rikky/side.svg",
  5841. extra: 851 / 801
  5842. }
  5843. },
  5844. },
  5845. [
  5846. {
  5847. name: "Normal",
  5848. height: math.unit(5 + 1 / 6, "feet")
  5849. },
  5850. {
  5851. name: "Macro",
  5852. height: math.unit(152, "feet"),
  5853. default: true
  5854. },
  5855. {
  5856. name: "Megamacro",
  5857. height: math.unit(7, "miles")
  5858. }
  5859. ]
  5860. ))
  5861. characterMakers.push(() => makeCharacter(
  5862. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5863. {
  5864. side: {
  5865. height: math.unit(370, "cm"),
  5866. weight: math.unit(350, "lbs"),
  5867. name: "Side",
  5868. image: {
  5869. source: "./media/characters/malfressa/side.svg"
  5870. }
  5871. },
  5872. walking: {
  5873. height: math.unit(370, "cm"),
  5874. weight: math.unit(350, "lbs"),
  5875. name: "Walking",
  5876. image: {
  5877. source: "./media/characters/malfressa/walking.svg"
  5878. }
  5879. },
  5880. feral: {
  5881. height: math.unit(2500, "cm"),
  5882. weight: math.unit(100000, "lbs"),
  5883. name: "Feral",
  5884. image: {
  5885. source: "./media/characters/malfressa/feral.svg",
  5886. extra: 2108 / 837,
  5887. bottom: 0.02
  5888. }
  5889. },
  5890. },
  5891. [
  5892. {
  5893. name: "Normal",
  5894. height: math.unit(370, "cm")
  5895. },
  5896. {
  5897. name: "Macro",
  5898. height: math.unit(300, "meters"),
  5899. default: true
  5900. }
  5901. ]
  5902. ))
  5903. characterMakers.push(() => makeCharacter(
  5904. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5905. {
  5906. front: {
  5907. height: math.unit(6, "feet"),
  5908. weight: math.unit(60, "kg"),
  5909. name: "Front",
  5910. image: {
  5911. source: "./media/characters/jaro/front.svg"
  5912. }
  5913. },
  5914. back: {
  5915. height: math.unit(6, "feet"),
  5916. weight: math.unit(60, "kg"),
  5917. name: "Back",
  5918. image: {
  5919. source: "./media/characters/jaro/back.svg"
  5920. }
  5921. },
  5922. },
  5923. [
  5924. {
  5925. name: "Micro",
  5926. height: math.unit(7, "inches")
  5927. },
  5928. {
  5929. name: "Normal",
  5930. height: math.unit(5.5, "feet"),
  5931. default: true
  5932. },
  5933. {
  5934. name: "Minimacro",
  5935. height: math.unit(20, "feet")
  5936. },
  5937. {
  5938. name: "Macro",
  5939. height: math.unit(200, "meters")
  5940. }
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5945. {
  5946. front: {
  5947. height: math.unit(6, "feet"),
  5948. weight: math.unit(195, "lb"),
  5949. name: "Front",
  5950. image: {
  5951. source: "./media/characters/rogue/front.svg"
  5952. }
  5953. },
  5954. },
  5955. [
  5956. {
  5957. name: "Macro",
  5958. height: math.unit(90, "feet"),
  5959. default: true
  5960. },
  5961. ]
  5962. ))
  5963. characterMakers.push(() => makeCharacter(
  5964. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5965. {
  5966. front: {
  5967. height: math.unit(5 + 8 / 12, "feet"),
  5968. weight: math.unit(140, "lb"),
  5969. name: "Front",
  5970. image: {
  5971. source: "./media/characters/piper/front.svg",
  5972. extra: 3948/3655,
  5973. bottom: 0/3948
  5974. }
  5975. },
  5976. },
  5977. [
  5978. {
  5979. name: "Micro",
  5980. height: math.unit(2, "inches")
  5981. },
  5982. {
  5983. name: "Normal",
  5984. height: math.unit(5 + 8 / 12, "feet")
  5985. },
  5986. {
  5987. name: "Macro",
  5988. height: math.unit(250, "feet"),
  5989. default: true
  5990. },
  5991. {
  5992. name: "Megamacro",
  5993. height: math.unit(7, "miles")
  5994. },
  5995. ]
  5996. ))
  5997. characterMakers.push(() => makeCharacter(
  5998. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5999. {
  6000. front: {
  6001. height: math.unit(6, "feet"),
  6002. weight: math.unit(220, "lb"),
  6003. name: "Front",
  6004. image: {
  6005. source: "./media/characters/gemini/front.svg"
  6006. }
  6007. },
  6008. back: {
  6009. height: math.unit(6, "feet"),
  6010. weight: math.unit(220, "lb"),
  6011. name: "Back",
  6012. image: {
  6013. source: "./media/characters/gemini/back.svg"
  6014. }
  6015. },
  6016. kneeling: {
  6017. height: math.unit(6 / 1.5, "feet"),
  6018. weight: math.unit(220, "lb"),
  6019. name: "Kneeling",
  6020. image: {
  6021. source: "./media/characters/gemini/kneeling.svg",
  6022. bottom: 0.02
  6023. }
  6024. },
  6025. },
  6026. [
  6027. {
  6028. name: "Macro",
  6029. height: math.unit(300, "meters"),
  6030. default: true
  6031. },
  6032. {
  6033. name: "Megamacro",
  6034. height: math.unit(6900, "meters")
  6035. },
  6036. ]
  6037. ))
  6038. characterMakers.push(() => makeCharacter(
  6039. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6040. {
  6041. anthro: {
  6042. height: math.unit(2.35, "meters"),
  6043. weight: math.unit(73, "kg"),
  6044. name: "Anthro",
  6045. image: {
  6046. source: "./media/characters/alicia/anthro.svg",
  6047. extra: 2571 / 2385,
  6048. bottom: 75 / 2648
  6049. }
  6050. },
  6051. paw: {
  6052. height: math.unit(1.32, "feet"),
  6053. name: "Paw",
  6054. image: {
  6055. source: "./media/characters/alicia/paw.svg"
  6056. }
  6057. },
  6058. feral: {
  6059. height: math.unit(1.69, "meters"),
  6060. weight: math.unit(73, "kg"),
  6061. name: "Feral",
  6062. image: {
  6063. source: "./media/characters/alicia/feral.svg",
  6064. extra: 2123 / 1715,
  6065. bottom: 222 / 2349
  6066. }
  6067. },
  6068. },
  6069. [
  6070. {
  6071. name: "Normal",
  6072. height: math.unit(2.35, "meters")
  6073. },
  6074. {
  6075. name: "Macro",
  6076. height: math.unit(60, "meters"),
  6077. default: true
  6078. },
  6079. {
  6080. name: "Megamacro",
  6081. height: math.unit(10000, "kilometers")
  6082. },
  6083. ]
  6084. ))
  6085. characterMakers.push(() => makeCharacter(
  6086. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6087. {
  6088. front: {
  6089. height: math.unit(7, "feet"),
  6090. weight: math.unit(250, "lbs"),
  6091. name: "Front",
  6092. image: {
  6093. source: "./media/characters/archy/front.svg"
  6094. }
  6095. }
  6096. },
  6097. [
  6098. {
  6099. name: "Micro",
  6100. height: math.unit(1, "inch")
  6101. },
  6102. {
  6103. name: "Shorty",
  6104. height: math.unit(5, "feet")
  6105. },
  6106. {
  6107. name: "Normal",
  6108. height: math.unit(7, "feet")
  6109. },
  6110. {
  6111. name: "Macro",
  6112. height: math.unit(600, "meters"),
  6113. default: true
  6114. },
  6115. {
  6116. name: "Megamacro",
  6117. height: math.unit(1, "mile")
  6118. },
  6119. ]
  6120. ))
  6121. characterMakers.push(() => makeCharacter(
  6122. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6123. {
  6124. front: {
  6125. height: math.unit(1.65, "meters"),
  6126. weight: math.unit(74, "kg"),
  6127. name: "Front",
  6128. image: {
  6129. source: "./media/characters/berri/front.svg",
  6130. extra: 857 / 837,
  6131. bottom: 18 / 877
  6132. }
  6133. },
  6134. bum: {
  6135. height: math.unit(1.46, "feet"),
  6136. name: "Bum",
  6137. image: {
  6138. source: "./media/characters/berri/bum.svg"
  6139. }
  6140. },
  6141. mouth: {
  6142. height: math.unit(0.44, "feet"),
  6143. name: "Mouth",
  6144. image: {
  6145. source: "./media/characters/berri/mouth.svg"
  6146. }
  6147. },
  6148. paw: {
  6149. height: math.unit(0.826, "feet"),
  6150. name: "Paw",
  6151. image: {
  6152. source: "./media/characters/berri/paw.svg"
  6153. }
  6154. },
  6155. },
  6156. [
  6157. {
  6158. name: "Normal",
  6159. height: math.unit(1.65, "meters")
  6160. },
  6161. {
  6162. name: "Macro",
  6163. height: math.unit(60, "m"),
  6164. default: true
  6165. },
  6166. {
  6167. name: "Megamacro",
  6168. height: math.unit(9.213, "km")
  6169. },
  6170. {
  6171. name: "Planet Eater",
  6172. height: math.unit(489, "megameters")
  6173. },
  6174. {
  6175. name: "Teramacro",
  6176. height: math.unit(2471635000000, "meters")
  6177. },
  6178. {
  6179. name: "Examacro",
  6180. height: math.unit(8.0624e+26, "meters")
  6181. }
  6182. ]
  6183. ))
  6184. characterMakers.push(() => makeCharacter(
  6185. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6186. {
  6187. front: {
  6188. height: math.unit(1.72, "meters"),
  6189. weight: math.unit(68, "kg"),
  6190. name: "Front",
  6191. image: {
  6192. source: "./media/characters/lexi/front.svg"
  6193. }
  6194. }
  6195. },
  6196. [
  6197. {
  6198. name: "Very Smol",
  6199. height: math.unit(10, "mm")
  6200. },
  6201. {
  6202. name: "Micro",
  6203. height: math.unit(6.8, "cm"),
  6204. default: true
  6205. },
  6206. {
  6207. name: "Normal",
  6208. height: math.unit(1.72, "m")
  6209. }
  6210. ]
  6211. ))
  6212. characterMakers.push(() => makeCharacter(
  6213. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6214. {
  6215. front: {
  6216. height: math.unit(1.69, "meters"),
  6217. weight: math.unit(68, "kg"),
  6218. name: "Front",
  6219. image: {
  6220. source: "./media/characters/martin/front.svg",
  6221. extra: 596 / 581
  6222. }
  6223. }
  6224. },
  6225. [
  6226. {
  6227. name: "Micro",
  6228. height: math.unit(6.85, "cm"),
  6229. default: true
  6230. },
  6231. {
  6232. name: "Normal",
  6233. height: math.unit(1.69, "m")
  6234. }
  6235. ]
  6236. ))
  6237. characterMakers.push(() => makeCharacter(
  6238. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6239. {
  6240. front: {
  6241. height: math.unit(1.69, "meters"),
  6242. weight: math.unit(68, "kg"),
  6243. name: "Front",
  6244. image: {
  6245. source: "./media/characters/juno/front.svg"
  6246. }
  6247. }
  6248. },
  6249. [
  6250. {
  6251. name: "Micro",
  6252. height: math.unit(7, "cm")
  6253. },
  6254. {
  6255. name: "Normal",
  6256. height: math.unit(1.89, "m")
  6257. },
  6258. {
  6259. name: "Macro",
  6260. height: math.unit(353, "meters"),
  6261. default: true
  6262. }
  6263. ]
  6264. ))
  6265. characterMakers.push(() => makeCharacter(
  6266. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6267. {
  6268. front: {
  6269. height: math.unit(1.93, "meters"),
  6270. weight: math.unit(83, "kg"),
  6271. name: "Front",
  6272. image: {
  6273. source: "./media/characters/samantha/front.svg"
  6274. }
  6275. },
  6276. frontClothed: {
  6277. height: math.unit(1.93, "meters"),
  6278. weight: math.unit(83, "kg"),
  6279. name: "Front (Clothed)",
  6280. image: {
  6281. source: "./media/characters/samantha/front-clothed.svg"
  6282. }
  6283. },
  6284. back: {
  6285. height: math.unit(1.93, "meters"),
  6286. weight: math.unit(83, "kg"),
  6287. name: "Back",
  6288. image: {
  6289. source: "./media/characters/samantha/back.svg"
  6290. }
  6291. },
  6292. },
  6293. [
  6294. {
  6295. name: "Normal",
  6296. height: math.unit(1.93, "m")
  6297. },
  6298. {
  6299. name: "Macro",
  6300. height: math.unit(74, "meters"),
  6301. default: true
  6302. },
  6303. {
  6304. name: "Macro+",
  6305. height: math.unit(223, "meters"),
  6306. },
  6307. {
  6308. name: "Megamacro",
  6309. height: math.unit(8381, "meters"),
  6310. },
  6311. {
  6312. name: "Megamacro+",
  6313. height: math.unit(12000, "kilometers")
  6314. },
  6315. ]
  6316. ))
  6317. characterMakers.push(() => makeCharacter(
  6318. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6319. {
  6320. front: {
  6321. height: math.unit(1.92, "meters"),
  6322. weight: math.unit(80, "kg"),
  6323. name: "Front",
  6324. image: {
  6325. source: "./media/characters/dr-clay/front.svg"
  6326. }
  6327. },
  6328. frontClothed: {
  6329. height: math.unit(1.92, "meters"),
  6330. weight: math.unit(80, "kg"),
  6331. name: "Front (Clothed)",
  6332. image: {
  6333. source: "./media/characters/dr-clay/front-clothed.svg"
  6334. }
  6335. }
  6336. },
  6337. [
  6338. {
  6339. name: "Normal",
  6340. height: math.unit(1.92, "m")
  6341. },
  6342. {
  6343. name: "Macro",
  6344. height: math.unit(214, "meters"),
  6345. default: true
  6346. },
  6347. {
  6348. name: "Macro+",
  6349. height: math.unit(12.237, "meters"),
  6350. },
  6351. {
  6352. name: "Megamacro",
  6353. height: math.unit(557, "megameters"),
  6354. },
  6355. {
  6356. name: "Unimaginable",
  6357. height: math.unit(120e9, "lightyears")
  6358. },
  6359. ]
  6360. ))
  6361. characterMakers.push(() => makeCharacter(
  6362. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6363. {
  6364. front: {
  6365. height: math.unit(2, "meters"),
  6366. weight: math.unit(80, "kg"),
  6367. name: "Front",
  6368. image: {
  6369. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6370. }
  6371. }
  6372. },
  6373. [
  6374. {
  6375. name: "Teramacro",
  6376. height: math.unit(500000, "lightyears"),
  6377. default: true
  6378. },
  6379. ]
  6380. ))
  6381. characterMakers.push(() => makeCharacter(
  6382. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6383. {
  6384. front: {
  6385. height: math.unit(2, "meters"),
  6386. weight: math.unit(150, "kg"),
  6387. name: "Front",
  6388. image: {
  6389. source: "./media/characters/vemus/front.svg",
  6390. extra: 1074/936,
  6391. bottom: 23/1097
  6392. }
  6393. }
  6394. },
  6395. [
  6396. {
  6397. name: "Normal",
  6398. height: math.unit(3.75, "meters"),
  6399. default: true
  6400. },
  6401. {
  6402. name: "Big",
  6403. height: math.unit(8, "meters")
  6404. },
  6405. {
  6406. name: "Macro",
  6407. height: math.unit(100, "meters")
  6408. },
  6409. {
  6410. name: "Macro+",
  6411. height: math.unit(1500, "meters")
  6412. },
  6413. {
  6414. name: "Stellar",
  6415. height: math.unit(14e8, "meters")
  6416. },
  6417. ]
  6418. ))
  6419. characterMakers.push(() => makeCharacter(
  6420. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6421. {
  6422. front: {
  6423. height: math.unit(2, "meters"),
  6424. weight: math.unit(70, "kg"),
  6425. name: "Front",
  6426. image: {
  6427. source: "./media/characters/beherit/front.svg",
  6428. extra: 1408 / 1242
  6429. }
  6430. }
  6431. },
  6432. [
  6433. {
  6434. name: "Normal",
  6435. height: math.unit(6, "feet")
  6436. },
  6437. {
  6438. name: "Lorg",
  6439. height: math.unit(25, "feet"),
  6440. default: true
  6441. },
  6442. {
  6443. name: "Lorger",
  6444. height: math.unit(75, "feet")
  6445. },
  6446. {
  6447. name: "Macro",
  6448. height: math.unit(200, "meters")
  6449. },
  6450. ]
  6451. ))
  6452. characterMakers.push(() => makeCharacter(
  6453. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6454. {
  6455. front: {
  6456. height: math.unit(2, "meters"),
  6457. weight: math.unit(150, "kg"),
  6458. name: "Front",
  6459. image: {
  6460. source: "./media/characters/everett/front.svg",
  6461. extra: 2038 / 1737,
  6462. bottom: 0.03
  6463. }
  6464. },
  6465. paw: {
  6466. height: math.unit(2 / 3.6, "meters"),
  6467. name: "Paw",
  6468. image: {
  6469. source: "./media/characters/everett/paw.svg"
  6470. }
  6471. },
  6472. },
  6473. [
  6474. {
  6475. name: "Normal",
  6476. height: math.unit(15, "feet"),
  6477. default: true
  6478. },
  6479. {
  6480. name: "Lorg",
  6481. height: math.unit(70, "feet"),
  6482. default: true
  6483. },
  6484. {
  6485. name: "Lorger",
  6486. height: math.unit(250, "feet")
  6487. },
  6488. {
  6489. name: "Macro",
  6490. height: math.unit(500, "meters")
  6491. },
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6496. {
  6497. front: {
  6498. height: math.unit(2, "meters"),
  6499. weight: math.unit(86, "kg"),
  6500. name: "Front",
  6501. image: {
  6502. source: "./media/characters/rose/front.svg",
  6503. extra: 350/335,
  6504. bottom: 10/360
  6505. }
  6506. },
  6507. frontAlt: {
  6508. height: math.unit(1.6, "meters"),
  6509. weight: math.unit(86, "kg"),
  6510. name: "Front (Alt)",
  6511. image: {
  6512. source: "./media/characters/rose/front-alt.svg",
  6513. extra: 299/283,
  6514. bottom: 3/302
  6515. }
  6516. },
  6517. plush: {
  6518. height: math.unit(2, "meters"),
  6519. weight: math.unit(86/3, "kg"),
  6520. name: "Plush",
  6521. image: {
  6522. source: "./media/characters/rose/plush.svg",
  6523. extra: 361/337,
  6524. bottom: 11/372
  6525. }
  6526. },
  6527. },
  6528. [
  6529. {
  6530. name: "Mini-Micro",
  6531. height: math.unit(1, "cm")
  6532. },
  6533. {
  6534. name: "Micro",
  6535. height: math.unit(3.5, "inches"),
  6536. default: true
  6537. },
  6538. {
  6539. name: "Normal",
  6540. height: math.unit(6 + 1 / 6, "feet")
  6541. },
  6542. {
  6543. name: "Mini-Macro",
  6544. height: math.unit(9 + 10 / 12, "feet")
  6545. },
  6546. ]
  6547. ))
  6548. characterMakers.push(() => makeCharacter(
  6549. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6550. {
  6551. front: {
  6552. height: math.unit(2, "meters"),
  6553. weight: math.unit(350, "lbs"),
  6554. name: "Front",
  6555. image: {
  6556. source: "./media/characters/regal/front.svg"
  6557. }
  6558. },
  6559. back: {
  6560. height: math.unit(2, "meters"),
  6561. weight: math.unit(350, "lbs"),
  6562. name: "Back",
  6563. image: {
  6564. source: "./media/characters/regal/back.svg"
  6565. }
  6566. },
  6567. },
  6568. [
  6569. {
  6570. name: "Macro",
  6571. height: math.unit(350, "feet"),
  6572. default: true
  6573. }
  6574. ]
  6575. ))
  6576. characterMakers.push(() => makeCharacter(
  6577. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6578. {
  6579. front: {
  6580. height: math.unit(4 + 11 / 12, "feet"),
  6581. weight: math.unit(100, "lbs"),
  6582. name: "Front",
  6583. image: {
  6584. source: "./media/characters/opal/front.svg"
  6585. }
  6586. },
  6587. frontAlt: {
  6588. height: math.unit(4 + 11 / 12, "feet"),
  6589. weight: math.unit(100, "lbs"),
  6590. name: "Front (Alt)",
  6591. image: {
  6592. source: "./media/characters/opal/front-alt.svg"
  6593. }
  6594. },
  6595. },
  6596. [
  6597. {
  6598. name: "Small",
  6599. height: math.unit(4 + 11 / 12, "feet")
  6600. },
  6601. {
  6602. name: "Normal",
  6603. height: math.unit(20, "feet"),
  6604. default: true
  6605. },
  6606. {
  6607. name: "Macro",
  6608. height: math.unit(120, "feet")
  6609. },
  6610. {
  6611. name: "Megamacro",
  6612. height: math.unit(80, "miles")
  6613. },
  6614. {
  6615. name: "True Size",
  6616. height: math.unit(100000, "lightyears")
  6617. },
  6618. ]
  6619. ))
  6620. characterMakers.push(() => makeCharacter(
  6621. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6622. {
  6623. front: {
  6624. height: math.unit(6, "feet"),
  6625. weight: math.unit(200, "lbs"),
  6626. name: "Front",
  6627. image: {
  6628. source: "./media/characters/vector-wuff/front.svg"
  6629. }
  6630. }
  6631. },
  6632. [
  6633. {
  6634. name: "Normal",
  6635. height: math.unit(2.8, "meters")
  6636. },
  6637. {
  6638. name: "Macro",
  6639. height: math.unit(450, "meters"),
  6640. default: true
  6641. },
  6642. {
  6643. name: "Megamacro",
  6644. height: math.unit(15, "kilometers")
  6645. }
  6646. ]
  6647. ))
  6648. characterMakers.push(() => makeCharacter(
  6649. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6650. {
  6651. front: {
  6652. height: math.unit(6, "feet"),
  6653. weight: math.unit(256, "lbs"),
  6654. name: "Front",
  6655. image: {
  6656. source: "./media/characters/dannik/front.svg"
  6657. }
  6658. }
  6659. },
  6660. [
  6661. {
  6662. name: "Macro",
  6663. height: math.unit(69.57, "meters"),
  6664. default: true
  6665. },
  6666. ]
  6667. ))
  6668. characterMakers.push(() => makeCharacter(
  6669. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6670. {
  6671. front: {
  6672. height: math.unit(6, "feet"),
  6673. weight: math.unit(120, "lbs"),
  6674. name: "Front",
  6675. image: {
  6676. source: "./media/characters/azura-saharah/front.svg"
  6677. }
  6678. },
  6679. back: {
  6680. height: math.unit(6, "feet"),
  6681. weight: math.unit(120, "lbs"),
  6682. name: "Back",
  6683. image: {
  6684. source: "./media/characters/azura-saharah/back.svg"
  6685. }
  6686. },
  6687. },
  6688. [
  6689. {
  6690. name: "Macro",
  6691. height: math.unit(100, "feet"),
  6692. default: true
  6693. },
  6694. ]
  6695. ))
  6696. characterMakers.push(() => makeCharacter(
  6697. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6698. {
  6699. side: {
  6700. height: math.unit(5 + 4 / 12, "feet"),
  6701. weight: math.unit(163, "lbs"),
  6702. name: "Side",
  6703. image: {
  6704. source: "./media/characters/kennedy/side.svg"
  6705. }
  6706. }
  6707. },
  6708. [
  6709. {
  6710. name: "Standard Doggo",
  6711. height: math.unit(5 + 4 / 12, "feet")
  6712. },
  6713. {
  6714. name: "Big Doggo",
  6715. height: math.unit(25 + 3 / 12, "feet"),
  6716. default: true
  6717. },
  6718. ]
  6719. ))
  6720. characterMakers.push(() => makeCharacter(
  6721. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6722. {
  6723. front: {
  6724. height: math.unit(6, "feet"),
  6725. weight: math.unit(90, "lbs"),
  6726. name: "Front",
  6727. image: {
  6728. source: "./media/characters/odi-lunar/front.svg"
  6729. }
  6730. }
  6731. },
  6732. [
  6733. {
  6734. name: "Micro",
  6735. height: math.unit(3, "inches"),
  6736. default: true
  6737. },
  6738. {
  6739. name: "Normal",
  6740. height: math.unit(5.5, "feet")
  6741. }
  6742. ]
  6743. ))
  6744. characterMakers.push(() => makeCharacter(
  6745. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6746. {
  6747. back: {
  6748. height: math.unit(6, "feet"),
  6749. weight: math.unit(220, "lbs"),
  6750. name: "Back",
  6751. image: {
  6752. source: "./media/characters/mandake/back.svg"
  6753. }
  6754. }
  6755. },
  6756. [
  6757. {
  6758. name: "Normal",
  6759. height: math.unit(7, "feet"),
  6760. default: true
  6761. },
  6762. {
  6763. name: "Macro",
  6764. height: math.unit(78, "feet")
  6765. },
  6766. {
  6767. name: "Macro+",
  6768. height: math.unit(300, "meters")
  6769. },
  6770. {
  6771. name: "Macro++",
  6772. height: math.unit(2400, "feet")
  6773. },
  6774. {
  6775. name: "Megamacro",
  6776. height: math.unit(5167, "meters")
  6777. },
  6778. {
  6779. name: "Gigamacro",
  6780. height: math.unit(41769, "miles")
  6781. },
  6782. ]
  6783. ))
  6784. characterMakers.push(() => makeCharacter(
  6785. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6786. {
  6787. front: {
  6788. height: math.unit(6, "feet"),
  6789. weight: math.unit(120, "lbs"),
  6790. name: "Front",
  6791. image: {
  6792. source: "./media/characters/yozey/front.svg"
  6793. }
  6794. },
  6795. frontAlt: {
  6796. height: math.unit(6, "feet"),
  6797. weight: math.unit(120, "lbs"),
  6798. name: "Front (Alt)",
  6799. image: {
  6800. source: "./media/characters/yozey/front-alt.svg"
  6801. }
  6802. },
  6803. side: {
  6804. height: math.unit(6, "feet"),
  6805. weight: math.unit(120, "lbs"),
  6806. name: "Side",
  6807. image: {
  6808. source: "./media/characters/yozey/side.svg"
  6809. }
  6810. },
  6811. },
  6812. [
  6813. {
  6814. name: "Micro",
  6815. height: math.unit(3, "inches"),
  6816. default: true
  6817. },
  6818. {
  6819. name: "Normal",
  6820. height: math.unit(6, "feet")
  6821. }
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(6, "feet"),
  6829. weight: math.unit(103, "lbs"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/valeska-voss/front.svg"
  6833. }
  6834. }
  6835. },
  6836. [
  6837. {
  6838. name: "Mini-Sized Sub",
  6839. height: math.unit(3.1, "inches")
  6840. },
  6841. {
  6842. name: "Mid-Sized Sub",
  6843. height: math.unit(6.2, "inches")
  6844. },
  6845. {
  6846. name: "Full-Sized Sub",
  6847. height: math.unit(9.3, "inches")
  6848. },
  6849. {
  6850. name: "Normal",
  6851. height: math.unit(5 + 2 / 12, "foot"),
  6852. default: true
  6853. },
  6854. ]
  6855. ))
  6856. characterMakers.push(() => makeCharacter(
  6857. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6858. {
  6859. front: {
  6860. height: math.unit(6, "feet"),
  6861. weight: math.unit(160, "lbs"),
  6862. name: "Front",
  6863. image: {
  6864. source: "./media/characters/gene-zeta/front.svg",
  6865. extra: 3006 / 2826,
  6866. bottom: 182 / 3188
  6867. }
  6868. }
  6869. },
  6870. [
  6871. {
  6872. name: "Micro",
  6873. height: math.unit(6, "inches")
  6874. },
  6875. {
  6876. name: "Normal",
  6877. height: math.unit(5 + 11 / 12, "foot"),
  6878. default: true
  6879. },
  6880. {
  6881. name: "Macro",
  6882. height: math.unit(140, "feet")
  6883. },
  6884. {
  6885. name: "Supercharged",
  6886. height: math.unit(2500, "feet")
  6887. },
  6888. ]
  6889. ))
  6890. characterMakers.push(() => makeCharacter(
  6891. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6892. {
  6893. front: {
  6894. height: math.unit(6, "feet"),
  6895. weight: math.unit(350, "lbs"),
  6896. name: "Front",
  6897. image: {
  6898. source: "./media/characters/razinox/front.svg",
  6899. extra: 1686 / 1548,
  6900. bottom: 28.2 / 1868
  6901. }
  6902. },
  6903. back: {
  6904. height: math.unit(6, "feet"),
  6905. weight: math.unit(350, "lbs"),
  6906. name: "Back",
  6907. image: {
  6908. source: "./media/characters/razinox/back.svg",
  6909. extra: 1660 / 1590,
  6910. bottom: 15 / 1665
  6911. }
  6912. },
  6913. },
  6914. [
  6915. {
  6916. name: "Normal",
  6917. height: math.unit(10 + 8 / 12, "foot")
  6918. },
  6919. {
  6920. name: "Minimacro",
  6921. height: math.unit(15, "foot")
  6922. },
  6923. {
  6924. name: "Macro",
  6925. height: math.unit(60, "foot"),
  6926. default: true
  6927. },
  6928. {
  6929. name: "Megamacro",
  6930. height: math.unit(5, "miles")
  6931. },
  6932. {
  6933. name: "Gigamacro",
  6934. height: math.unit(6000, "miles")
  6935. },
  6936. ]
  6937. ))
  6938. characterMakers.push(() => makeCharacter(
  6939. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6940. {
  6941. front: {
  6942. height: math.unit(6, "feet"),
  6943. weight: math.unit(150, "lbs"),
  6944. name: "Front",
  6945. image: {
  6946. source: "./media/characters/cobalt/front.svg"
  6947. }
  6948. }
  6949. },
  6950. [
  6951. {
  6952. name: "Normal",
  6953. height: math.unit(8 + 1 / 12, "foot")
  6954. },
  6955. {
  6956. name: "Macro",
  6957. height: math.unit(111, "foot"),
  6958. default: true
  6959. },
  6960. {
  6961. name: "Supracosmic",
  6962. height: math.unit(1e42, "feet")
  6963. },
  6964. ]
  6965. ))
  6966. characterMakers.push(() => makeCharacter(
  6967. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6968. {
  6969. front: {
  6970. height: math.unit(6, "feet"),
  6971. weight: math.unit(140, "lbs"),
  6972. name: "Front",
  6973. image: {
  6974. source: "./media/characters/amanda/front.svg"
  6975. }
  6976. }
  6977. },
  6978. [
  6979. {
  6980. name: "Micro",
  6981. height: math.unit(5, "inches"),
  6982. default: true
  6983. },
  6984. ]
  6985. ))
  6986. characterMakers.push(() => makeCharacter(
  6987. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6988. {
  6989. front: {
  6990. height: math.unit(2.75, "meters"),
  6991. weight: math.unit(1200, "lb"),
  6992. name: "Front",
  6993. image: {
  6994. source: "./media/characters/teal/front.svg",
  6995. extra: 2463 / 2320,
  6996. bottom: 166 / 2629
  6997. }
  6998. },
  6999. back: {
  7000. height: math.unit(2.75, "meters"),
  7001. weight: math.unit(1200, "lb"),
  7002. name: "Back",
  7003. image: {
  7004. source: "./media/characters/teal/back.svg",
  7005. extra: 2580 / 2489,
  7006. bottom: 151 / 2731
  7007. }
  7008. },
  7009. sitting: {
  7010. height: math.unit(1.9, "meters"),
  7011. weight: math.unit(1200, "lb"),
  7012. name: "Sitting",
  7013. image: {
  7014. source: "./media/characters/teal/sitting.svg",
  7015. extra: 623 / 590,
  7016. bottom: 121 / 744
  7017. }
  7018. },
  7019. standing: {
  7020. height: math.unit(2.75, "meters"),
  7021. weight: math.unit(1200, "lb"),
  7022. name: "Standing",
  7023. image: {
  7024. source: "./media/characters/teal/standing.svg",
  7025. extra: 923 / 893,
  7026. bottom: 60 / 983
  7027. }
  7028. },
  7029. stretching: {
  7030. height: math.unit(3.65, "meters"),
  7031. weight: math.unit(1200, "lb"),
  7032. name: "Stretching",
  7033. image: {
  7034. source: "./media/characters/teal/stretching.svg",
  7035. extra: 1276 / 1244,
  7036. bottom: 0 / 1276
  7037. }
  7038. },
  7039. legged: {
  7040. height: math.unit(1.3, "meters"),
  7041. weight: math.unit(100, "lb"),
  7042. name: "Legged",
  7043. image: {
  7044. source: "./media/characters/teal/legged.svg",
  7045. extra: 462 / 437,
  7046. bottom: 24 / 486
  7047. }
  7048. },
  7049. naga: {
  7050. height: math.unit(5.4, "meters"),
  7051. weight: math.unit(4000, "lb"),
  7052. name: "Naga",
  7053. image: {
  7054. source: "./media/characters/teal/naga.svg",
  7055. extra: 1902 / 1858,
  7056. bottom: 0 / 1902
  7057. }
  7058. },
  7059. hand: {
  7060. height: math.unit(0.52, "meters"),
  7061. name: "Hand",
  7062. image: {
  7063. source: "./media/characters/teal/hand.svg"
  7064. }
  7065. },
  7066. maw: {
  7067. height: math.unit(0.43, "meters"),
  7068. name: "Maw",
  7069. image: {
  7070. source: "./media/characters/teal/maw.svg"
  7071. }
  7072. },
  7073. slit: {
  7074. height: math.unit(0.25, "meters"),
  7075. name: "Slit",
  7076. image: {
  7077. source: "./media/characters/teal/slit.svg"
  7078. }
  7079. },
  7080. },
  7081. [
  7082. {
  7083. name: "Normal",
  7084. height: math.unit(2.75, "meters"),
  7085. default: true
  7086. },
  7087. {
  7088. name: "Macro",
  7089. height: math.unit(300, "feet")
  7090. },
  7091. {
  7092. name: "Macro+",
  7093. height: math.unit(2000, "feet")
  7094. },
  7095. ]
  7096. ))
  7097. characterMakers.push(() => makeCharacter(
  7098. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7099. {
  7100. frontCat: {
  7101. height: math.unit(6, "feet"),
  7102. weight: math.unit(180, "lbs"),
  7103. name: "Front (Cat)",
  7104. image: {
  7105. source: "./media/characters/ravin-amulet/front-cat.svg"
  7106. }
  7107. },
  7108. frontCatAlt: {
  7109. height: math.unit(6, "feet"),
  7110. weight: math.unit(180, "lbs"),
  7111. name: "Front (Alt, Cat)",
  7112. image: {
  7113. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7114. }
  7115. },
  7116. frontWerewolf: {
  7117. height: math.unit(6 * 1.2, "feet"),
  7118. weight: math.unit(225, "lbs"),
  7119. name: "Front (Werewolf)",
  7120. image: {
  7121. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7122. }
  7123. },
  7124. backWerewolf: {
  7125. height: math.unit(6 * 1.2, "feet"),
  7126. weight: math.unit(225, "lbs"),
  7127. name: "Back (Werewolf)",
  7128. image: {
  7129. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7130. }
  7131. },
  7132. },
  7133. [
  7134. {
  7135. name: "Nano",
  7136. height: math.unit(1, "micrometer")
  7137. },
  7138. {
  7139. name: "Micro",
  7140. height: math.unit(1, "inch")
  7141. },
  7142. {
  7143. name: "Normal",
  7144. height: math.unit(6, "feet"),
  7145. default: true
  7146. },
  7147. {
  7148. name: "Macro",
  7149. height: math.unit(60, "feet")
  7150. }
  7151. ]
  7152. ))
  7153. characterMakers.push(() => makeCharacter(
  7154. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7155. {
  7156. front: {
  7157. height: math.unit(6, "feet"),
  7158. weight: math.unit(165, "lbs"),
  7159. name: "Front",
  7160. image: {
  7161. source: "./media/characters/fluoresce/front.svg"
  7162. }
  7163. }
  7164. },
  7165. [
  7166. {
  7167. name: "Micro",
  7168. height: math.unit(6, "cm")
  7169. },
  7170. {
  7171. name: "Normal",
  7172. height: math.unit(5 + 7 / 12, "feet"),
  7173. default: true
  7174. },
  7175. {
  7176. name: "Macro",
  7177. height: math.unit(56, "feet")
  7178. },
  7179. {
  7180. name: "Megamacro",
  7181. height: math.unit(1.9, "miles")
  7182. },
  7183. ]
  7184. ))
  7185. characterMakers.push(() => makeCharacter(
  7186. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7187. {
  7188. front: {
  7189. height: math.unit(9 + 6 / 12, "feet"),
  7190. weight: math.unit(523, "lbs"),
  7191. name: "Side",
  7192. image: {
  7193. source: "./media/characters/aurora/side.svg"
  7194. }
  7195. }
  7196. },
  7197. [
  7198. {
  7199. name: "Normal",
  7200. height: math.unit(9 + 6 / 12, "feet")
  7201. },
  7202. {
  7203. name: "Macro",
  7204. height: math.unit(96, "feet"),
  7205. default: true
  7206. },
  7207. {
  7208. name: "Macro+",
  7209. height: math.unit(243, "feet")
  7210. },
  7211. ]
  7212. ))
  7213. characterMakers.push(() => makeCharacter(
  7214. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7215. {
  7216. front: {
  7217. height: math.unit(194, "cm"),
  7218. weight: math.unit(90, "kg"),
  7219. name: "Front",
  7220. image: {
  7221. source: "./media/characters/ranek/front.svg"
  7222. }
  7223. },
  7224. side: {
  7225. height: math.unit(194, "cm"),
  7226. weight: math.unit(90, "kg"),
  7227. name: "Side",
  7228. image: {
  7229. source: "./media/characters/ranek/side.svg"
  7230. }
  7231. },
  7232. back: {
  7233. height: math.unit(194, "cm"),
  7234. weight: math.unit(90, "kg"),
  7235. name: "Back",
  7236. image: {
  7237. source: "./media/characters/ranek/back.svg"
  7238. }
  7239. },
  7240. feral: {
  7241. height: math.unit(30, "cm"),
  7242. weight: math.unit(1.6, "lbs"),
  7243. name: "Feral",
  7244. image: {
  7245. source: "./media/characters/ranek/feral.svg"
  7246. }
  7247. },
  7248. },
  7249. [
  7250. {
  7251. name: "Normal",
  7252. height: math.unit(194, "cm"),
  7253. default: true
  7254. },
  7255. {
  7256. name: "Macro",
  7257. height: math.unit(100, "meters")
  7258. },
  7259. ]
  7260. ))
  7261. characterMakers.push(() => makeCharacter(
  7262. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7263. {
  7264. front: {
  7265. height: math.unit(5 + 6 / 12, "feet"),
  7266. weight: math.unit(153, "lbs"),
  7267. name: "Front",
  7268. image: {
  7269. source: "./media/characters/andrew-cooper/front.svg"
  7270. }
  7271. },
  7272. },
  7273. [
  7274. {
  7275. name: "Nano",
  7276. height: math.unit(1, "mm")
  7277. },
  7278. {
  7279. name: "Micro",
  7280. height: math.unit(2, "inches")
  7281. },
  7282. {
  7283. name: "Normal",
  7284. height: math.unit(5 + 6 / 12, "feet"),
  7285. default: true
  7286. }
  7287. ]
  7288. ))
  7289. characterMakers.push(() => makeCharacter(
  7290. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7291. {
  7292. front: {
  7293. height: math.unit(6, "feet"),
  7294. weight: math.unit(180, "lbs"),
  7295. name: "Front",
  7296. image: {
  7297. source: "./media/characters/akane-sato/front.svg",
  7298. extra: 1219 / 1140
  7299. }
  7300. },
  7301. back: {
  7302. height: math.unit(6, "feet"),
  7303. weight: math.unit(180, "lbs"),
  7304. name: "Back",
  7305. image: {
  7306. source: "./media/characters/akane-sato/back.svg",
  7307. extra: 1219 / 1170
  7308. }
  7309. },
  7310. },
  7311. [
  7312. {
  7313. name: "Normal",
  7314. height: math.unit(2.5, "meters")
  7315. },
  7316. {
  7317. name: "Macro",
  7318. height: math.unit(250, "meters"),
  7319. default: true
  7320. },
  7321. {
  7322. name: "Megamacro",
  7323. height: math.unit(25, "km")
  7324. },
  7325. ]
  7326. ))
  7327. characterMakers.push(() => makeCharacter(
  7328. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7329. {
  7330. front: {
  7331. height: math.unit(6, "feet"),
  7332. weight: math.unit(65, "kg"),
  7333. name: "Front",
  7334. image: {
  7335. source: "./media/characters/rook/front.svg",
  7336. extra: 960 / 950
  7337. }
  7338. }
  7339. },
  7340. [
  7341. {
  7342. name: "Normal",
  7343. height: math.unit(8.8, "feet")
  7344. },
  7345. {
  7346. name: "Macro",
  7347. height: math.unit(88, "feet"),
  7348. default: true
  7349. },
  7350. {
  7351. name: "Megamacro",
  7352. height: math.unit(8, "miles")
  7353. },
  7354. ]
  7355. ))
  7356. characterMakers.push(() => makeCharacter(
  7357. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7358. {
  7359. front: {
  7360. height: math.unit(12 + 2 / 12, "feet"),
  7361. weight: math.unit(808, "lbs"),
  7362. name: "Front",
  7363. image: {
  7364. source: "./media/characters/prodigy/front.svg"
  7365. }
  7366. }
  7367. },
  7368. [
  7369. {
  7370. name: "Normal",
  7371. height: math.unit(12 + 2 / 12, "feet"),
  7372. default: true
  7373. },
  7374. {
  7375. name: "Macro",
  7376. height: math.unit(143, "feet")
  7377. },
  7378. {
  7379. name: "Macro+",
  7380. height: math.unit(400, "feet")
  7381. },
  7382. ]
  7383. ))
  7384. characterMakers.push(() => makeCharacter(
  7385. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7386. {
  7387. front: {
  7388. height: math.unit(6, "feet"),
  7389. weight: math.unit(225, "lbs"),
  7390. name: "Front",
  7391. image: {
  7392. source: "./media/characters/daniel/front.svg"
  7393. }
  7394. },
  7395. leaning: {
  7396. height: math.unit(6, "feet"),
  7397. weight: math.unit(225, "lbs"),
  7398. name: "Leaning",
  7399. image: {
  7400. source: "./media/characters/daniel/leaning.svg"
  7401. }
  7402. },
  7403. },
  7404. [
  7405. {
  7406. name: "Macro",
  7407. height: math.unit(1000, "feet"),
  7408. default: true
  7409. },
  7410. ]
  7411. ))
  7412. characterMakers.push(() => makeCharacter(
  7413. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7414. {
  7415. front: {
  7416. height: math.unit(6, "feet"),
  7417. weight: math.unit(88, "lbs"),
  7418. name: "Front",
  7419. image: {
  7420. source: "./media/characters/chiros/front.svg",
  7421. extra: 306 / 226
  7422. }
  7423. },
  7424. side: {
  7425. height: math.unit(6, "feet"),
  7426. weight: math.unit(88, "lbs"),
  7427. name: "Side",
  7428. image: {
  7429. source: "./media/characters/chiros/side.svg",
  7430. extra: 306 / 226
  7431. }
  7432. },
  7433. },
  7434. [
  7435. {
  7436. name: "Normal",
  7437. height: math.unit(6, "cm"),
  7438. default: true
  7439. },
  7440. ]
  7441. ))
  7442. characterMakers.push(() => makeCharacter(
  7443. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7444. {
  7445. front: {
  7446. height: math.unit(6, "feet"),
  7447. weight: math.unit(100, "lbs"),
  7448. name: "Front",
  7449. image: {
  7450. source: "./media/characters/selka/front.svg",
  7451. extra: 947 / 887
  7452. }
  7453. }
  7454. },
  7455. [
  7456. {
  7457. name: "Normal",
  7458. height: math.unit(5, "cm"),
  7459. default: true
  7460. },
  7461. ]
  7462. ))
  7463. characterMakers.push(() => makeCharacter(
  7464. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7465. {
  7466. front: {
  7467. height: math.unit(8 + 3 / 12, "feet"),
  7468. weight: math.unit(424, "lbs"),
  7469. name: "Front",
  7470. image: {
  7471. source: "./media/characters/verin/front.svg",
  7472. extra: 1845 / 1550
  7473. }
  7474. },
  7475. frontArmored: {
  7476. height: math.unit(8 + 3 / 12, "feet"),
  7477. weight: math.unit(424, "lbs"),
  7478. name: "Front (Armored)",
  7479. image: {
  7480. source: "./media/characters/verin/front-armor.svg",
  7481. extra: 1845 / 1550,
  7482. bottom: 0.01
  7483. }
  7484. },
  7485. back: {
  7486. height: math.unit(8 + 3 / 12, "feet"),
  7487. weight: math.unit(424, "lbs"),
  7488. name: "Back",
  7489. image: {
  7490. source: "./media/characters/verin/back.svg",
  7491. bottom: 0.1,
  7492. extra: 1
  7493. }
  7494. },
  7495. foot: {
  7496. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7497. name: "Foot",
  7498. image: {
  7499. source: "./media/characters/verin/foot.svg"
  7500. }
  7501. },
  7502. },
  7503. [
  7504. {
  7505. name: "Normal",
  7506. height: math.unit(8 + 3 / 12, "feet")
  7507. },
  7508. {
  7509. name: "Minimacro",
  7510. height: math.unit(21, "feet"),
  7511. default: true
  7512. },
  7513. {
  7514. name: "Macro",
  7515. height: math.unit(626, "feet")
  7516. },
  7517. ]
  7518. ))
  7519. characterMakers.push(() => makeCharacter(
  7520. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7521. {
  7522. front: {
  7523. height: math.unit(2.718, "meters"),
  7524. weight: math.unit(150, "lbs"),
  7525. name: "Front",
  7526. image: {
  7527. source: "./media/characters/sovrim-terraquian/front.svg"
  7528. }
  7529. },
  7530. back: {
  7531. height: math.unit(2.718, "meters"),
  7532. weight: math.unit(150, "lbs"),
  7533. name: "Back",
  7534. image: {
  7535. source: "./media/characters/sovrim-terraquian/back.svg"
  7536. }
  7537. }
  7538. },
  7539. [
  7540. {
  7541. name: "Micro",
  7542. height: math.unit(2, "inches")
  7543. },
  7544. {
  7545. name: "Small",
  7546. height: math.unit(1, "meter")
  7547. },
  7548. {
  7549. name: "Normal",
  7550. height: math.unit(Math.E, "meters"),
  7551. default: true
  7552. },
  7553. {
  7554. name: "Macro",
  7555. height: math.unit(20, "meters")
  7556. },
  7557. {
  7558. name: "Macro+",
  7559. height: math.unit(400, "meters")
  7560. },
  7561. ]
  7562. ))
  7563. characterMakers.push(() => makeCharacter(
  7564. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7565. {
  7566. front: {
  7567. height: math.unit(7, "feet"),
  7568. weight: math.unit(489, "lbs"),
  7569. name: "Front",
  7570. image: {
  7571. source: "./media/characters/reece-silvermane/front.svg",
  7572. bottom: 0.02,
  7573. extra: 1
  7574. }
  7575. },
  7576. },
  7577. [
  7578. {
  7579. name: "Macro",
  7580. height: math.unit(1.5, "miles"),
  7581. default: true
  7582. },
  7583. ]
  7584. ))
  7585. characterMakers.push(() => makeCharacter(
  7586. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7587. {
  7588. front: {
  7589. height: math.unit(6, "feet"),
  7590. weight: math.unit(78, "kg"),
  7591. name: "Front",
  7592. image: {
  7593. source: "./media/characters/kane/front.svg",
  7594. extra: 978 / 899
  7595. }
  7596. },
  7597. },
  7598. [
  7599. {
  7600. name: "Normal",
  7601. height: math.unit(2.1, "m"),
  7602. },
  7603. {
  7604. name: "Macro",
  7605. height: math.unit(1, "km"),
  7606. default: true
  7607. },
  7608. ]
  7609. ))
  7610. characterMakers.push(() => makeCharacter(
  7611. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7612. {
  7613. front: {
  7614. height: math.unit(6, "feet"),
  7615. weight: math.unit(200, "kg"),
  7616. name: "Front",
  7617. image: {
  7618. source: "./media/characters/tegon/front.svg",
  7619. bottom: 0.01,
  7620. extra: 1
  7621. }
  7622. },
  7623. },
  7624. [
  7625. {
  7626. name: "Micro",
  7627. height: math.unit(1, "inch")
  7628. },
  7629. {
  7630. name: "Normal",
  7631. height: math.unit(6 + 3 / 12, "feet"),
  7632. default: true
  7633. },
  7634. {
  7635. name: "Macro",
  7636. height: math.unit(300, "feet")
  7637. },
  7638. {
  7639. name: "Megamacro",
  7640. height: math.unit(69, "miles")
  7641. },
  7642. ]
  7643. ))
  7644. characterMakers.push(() => makeCharacter(
  7645. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7646. {
  7647. side: {
  7648. height: math.unit(6, "feet"),
  7649. weight: math.unit(2304, "lbs"),
  7650. name: "Side",
  7651. image: {
  7652. source: "./media/characters/arcturax/side.svg",
  7653. extra: 790 / 376,
  7654. bottom: 0.01
  7655. }
  7656. },
  7657. },
  7658. [
  7659. {
  7660. name: "Micro",
  7661. height: math.unit(2, "inch")
  7662. },
  7663. {
  7664. name: "Normal",
  7665. height: math.unit(6, "feet")
  7666. },
  7667. {
  7668. name: "Macro",
  7669. height: math.unit(39, "feet"),
  7670. default: true
  7671. },
  7672. {
  7673. name: "Megamacro",
  7674. height: math.unit(7, "miles")
  7675. },
  7676. ]
  7677. ))
  7678. characterMakers.push(() => makeCharacter(
  7679. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7680. {
  7681. front: {
  7682. height: math.unit(6, "feet"),
  7683. weight: math.unit(50, "lbs"),
  7684. name: "Front",
  7685. image: {
  7686. source: "./media/characters/sentri/front.svg",
  7687. extra: 1750 / 1570,
  7688. bottom: 0.025
  7689. }
  7690. },
  7691. frontAlt: {
  7692. height: math.unit(6, "feet"),
  7693. weight: math.unit(50, "lbs"),
  7694. name: "Front (Alt)",
  7695. image: {
  7696. source: "./media/characters/sentri/front-alt.svg",
  7697. extra: 1750 / 1570,
  7698. bottom: 0.025
  7699. }
  7700. },
  7701. },
  7702. [
  7703. {
  7704. name: "Normal",
  7705. height: math.unit(15, "feet"),
  7706. default: true
  7707. },
  7708. {
  7709. name: "Macro",
  7710. height: math.unit(2500, "feet")
  7711. }
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7716. {
  7717. front: {
  7718. height: math.unit(5 + 8 / 12, "feet"),
  7719. weight: math.unit(130, "lbs"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/corvin/front.svg",
  7723. extra: 1803 / 1629
  7724. }
  7725. },
  7726. frontShirt: {
  7727. height: math.unit(5 + 8 / 12, "feet"),
  7728. weight: math.unit(130, "lbs"),
  7729. name: "Front (Shirt)",
  7730. image: {
  7731. source: "./media/characters/corvin/front-shirt.svg",
  7732. extra: 1803 / 1629
  7733. }
  7734. },
  7735. frontPoncho: {
  7736. height: math.unit(5 + 8 / 12, "feet"),
  7737. weight: math.unit(130, "lbs"),
  7738. name: "Front (Poncho)",
  7739. image: {
  7740. source: "./media/characters/corvin/front-poncho.svg",
  7741. extra: 1803 / 1629
  7742. }
  7743. },
  7744. side: {
  7745. height: math.unit(5 + 8 / 12, "feet"),
  7746. weight: math.unit(130, "lbs"),
  7747. name: "Side",
  7748. image: {
  7749. source: "./media/characters/corvin/side.svg",
  7750. extra: 1012 / 945
  7751. }
  7752. },
  7753. back: {
  7754. height: math.unit(5 + 8 / 12, "feet"),
  7755. weight: math.unit(130, "lbs"),
  7756. name: "Back",
  7757. image: {
  7758. source: "./media/characters/corvin/back.svg",
  7759. extra: 1803 / 1629
  7760. }
  7761. },
  7762. },
  7763. [
  7764. {
  7765. name: "Micro",
  7766. height: math.unit(3, "inches")
  7767. },
  7768. {
  7769. name: "Normal",
  7770. height: math.unit(5 + 8 / 12, "feet")
  7771. },
  7772. {
  7773. name: "Macro",
  7774. height: math.unit(300, "feet"),
  7775. default: true
  7776. },
  7777. {
  7778. name: "Megamacro",
  7779. height: math.unit(500, "miles")
  7780. }
  7781. ]
  7782. ))
  7783. characterMakers.push(() => makeCharacter(
  7784. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7785. {
  7786. front: {
  7787. height: math.unit(6, "feet"),
  7788. weight: math.unit(135, "lbs"),
  7789. name: "Front",
  7790. image: {
  7791. source: "./media/characters/q/front.svg",
  7792. extra: 854 / 752,
  7793. bottom: 0.005
  7794. }
  7795. },
  7796. back: {
  7797. height: math.unit(6, "feet"),
  7798. weight: math.unit(130, "lbs"),
  7799. name: "Back",
  7800. image: {
  7801. source: "./media/characters/q/back.svg",
  7802. extra: 854 / 752
  7803. }
  7804. },
  7805. },
  7806. [
  7807. {
  7808. name: "Macro",
  7809. height: math.unit(90, "feet"),
  7810. default: true
  7811. },
  7812. {
  7813. name: "Extra Macro",
  7814. height: math.unit(300, "feet"),
  7815. },
  7816. {
  7817. name: "BIG WALF",
  7818. height: math.unit(750, "feet"),
  7819. },
  7820. ]
  7821. ))
  7822. characterMakers.push(() => makeCharacter(
  7823. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7824. {
  7825. front: {
  7826. height: math.unit(6, "feet"),
  7827. weight: math.unit(150, "lbs"),
  7828. name: "Front",
  7829. image: {
  7830. source: "./media/characters/carley/front.svg",
  7831. extra: 3927 / 3540,
  7832. bottom: 29.2 / 735
  7833. }
  7834. }
  7835. },
  7836. [
  7837. {
  7838. name: "Normal",
  7839. height: math.unit(6 + 3 / 12, "feet")
  7840. },
  7841. {
  7842. name: "Macro",
  7843. height: math.unit(185, "feet"),
  7844. default: true
  7845. },
  7846. {
  7847. name: "Megamacro",
  7848. height: math.unit(8, "miles"),
  7849. },
  7850. ]
  7851. ))
  7852. characterMakers.push(() => makeCharacter(
  7853. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7854. {
  7855. front: {
  7856. height: math.unit(3, "feet"),
  7857. weight: math.unit(28, "lbs"),
  7858. name: "Front",
  7859. image: {
  7860. source: "./media/characters/citrine/front.svg"
  7861. }
  7862. }
  7863. },
  7864. [
  7865. {
  7866. name: "Normal",
  7867. height: math.unit(3, "feet"),
  7868. default: true
  7869. }
  7870. ]
  7871. ))
  7872. characterMakers.push(() => makeCharacter(
  7873. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7874. {
  7875. front: {
  7876. height: math.unit(14, "feet"),
  7877. weight: math.unit(1450, "kg"),
  7878. capacity: math.unit(15, "people"),
  7879. name: "Front",
  7880. image: {
  7881. source: "./media/characters/aura-starwind/front.svg",
  7882. extra: 1455 / 1335
  7883. }
  7884. },
  7885. side: {
  7886. height: math.unit(14, "feet"),
  7887. weight: math.unit(1450, "kg"),
  7888. capacity: math.unit(15, "people"),
  7889. name: "Side",
  7890. image: {
  7891. source: "./media/characters/aura-starwind/side.svg",
  7892. extra: 1654 / 1497
  7893. }
  7894. },
  7895. taur: {
  7896. height: math.unit(18, "feet"),
  7897. weight: math.unit(5500, "kg"),
  7898. capacity: math.unit(50, "people"),
  7899. name: "Taur",
  7900. image: {
  7901. source: "./media/characters/aura-starwind/taur.svg",
  7902. extra: 1760 / 1650
  7903. }
  7904. },
  7905. feral: {
  7906. height: math.unit(46, "feet"),
  7907. weight: math.unit(25000, "kg"),
  7908. capacity: math.unit(120, "people"),
  7909. name: "Feral",
  7910. image: {
  7911. source: "./media/characters/aura-starwind/feral.svg"
  7912. }
  7913. },
  7914. },
  7915. [
  7916. {
  7917. name: "Normal",
  7918. height: math.unit(14, "feet"),
  7919. default: true
  7920. },
  7921. {
  7922. name: "Macro",
  7923. height: math.unit(50, "meters")
  7924. },
  7925. {
  7926. name: "Megamacro",
  7927. height: math.unit(5000, "meters")
  7928. },
  7929. {
  7930. name: "Gigamacro",
  7931. height: math.unit(100000, "kilometers")
  7932. },
  7933. ]
  7934. ))
  7935. characterMakers.push(() => makeCharacter(
  7936. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7937. {
  7938. front: {
  7939. height: math.unit(2 + 7 / 12, "feet"),
  7940. weight: math.unit(32, "lbs"),
  7941. name: "Front",
  7942. image: {
  7943. source: "./media/characters/rivet/front.svg",
  7944. extra: 1716 / 1658,
  7945. bottom: 0.03
  7946. }
  7947. },
  7948. foot: {
  7949. height: math.unit(0.551, "feet"),
  7950. name: "Rivet's Foot",
  7951. image: {
  7952. source: "./media/characters/rivet/foot.svg"
  7953. },
  7954. rename: true
  7955. }
  7956. },
  7957. [
  7958. {
  7959. name: "Micro",
  7960. height: math.unit(1.5, "inches"),
  7961. },
  7962. {
  7963. name: "Normal",
  7964. height: math.unit(2 + 7 / 12, "feet"),
  7965. default: true
  7966. },
  7967. {
  7968. name: "Macro",
  7969. height: math.unit(85, "feet")
  7970. },
  7971. {
  7972. name: "Megamacro",
  7973. height: math.unit(2.2, "km")
  7974. }
  7975. ]
  7976. ))
  7977. characterMakers.push(() => makeCharacter(
  7978. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7979. {
  7980. front: {
  7981. height: math.unit(5 + 9 / 12, "feet"),
  7982. weight: math.unit(150, "lbs"),
  7983. name: "Front",
  7984. image: {
  7985. source: "./media/characters/coffee/front.svg",
  7986. extra: 3666 / 3032,
  7987. bottom: 0.04
  7988. }
  7989. },
  7990. foot: {
  7991. height: math.unit(1.29, "feet"),
  7992. name: "Foot",
  7993. image: {
  7994. source: "./media/characters/coffee/foot.svg"
  7995. }
  7996. },
  7997. },
  7998. [
  7999. {
  8000. name: "Micro",
  8001. height: math.unit(2, "inches"),
  8002. },
  8003. {
  8004. name: "Normal",
  8005. height: math.unit(5 + 9 / 12, "feet"),
  8006. default: true
  8007. },
  8008. {
  8009. name: "Macro",
  8010. height: math.unit(800, "feet")
  8011. },
  8012. {
  8013. name: "Megamacro",
  8014. height: math.unit(25, "miles")
  8015. }
  8016. ]
  8017. ))
  8018. characterMakers.push(() => makeCharacter(
  8019. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8020. {
  8021. front: {
  8022. height: math.unit(6, "feet"),
  8023. weight: math.unit(200, "lbs"),
  8024. name: "Front",
  8025. image: {
  8026. source: "./media/characters/chari-gal/front.svg",
  8027. extra: 1568 / 1385,
  8028. bottom: 0.047
  8029. }
  8030. },
  8031. gigantamax: {
  8032. height: math.unit(6 * 16, "feet"),
  8033. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8034. name: "Gigantamax",
  8035. image: {
  8036. source: "./media/characters/chari-gal/gigantamax.svg",
  8037. extra: 1124 / 888,
  8038. bottom: 0.03
  8039. }
  8040. },
  8041. },
  8042. [
  8043. {
  8044. name: "Normal",
  8045. height: math.unit(5 + 7 / 12, "feet")
  8046. },
  8047. {
  8048. name: "Macro",
  8049. height: math.unit(200, "feet"),
  8050. default: true
  8051. }
  8052. ]
  8053. ))
  8054. characterMakers.push(() => makeCharacter(
  8055. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8056. {
  8057. front: {
  8058. height: math.unit(6, "feet"),
  8059. weight: math.unit(150, "lbs"),
  8060. name: "Front",
  8061. image: {
  8062. source: "./media/characters/nova/front.svg",
  8063. extra: 5000 / 4722,
  8064. bottom: 0.02
  8065. }
  8066. }
  8067. },
  8068. [
  8069. {
  8070. name: "Micro-",
  8071. height: math.unit(0.8, "inches")
  8072. },
  8073. {
  8074. name: "Micro",
  8075. height: math.unit(2, "inches"),
  8076. default: true
  8077. },
  8078. ]
  8079. ))
  8080. characterMakers.push(() => makeCharacter(
  8081. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8082. {
  8083. front: {
  8084. height: math.unit(3 + 1 / 12, "feet"),
  8085. weight: math.unit(21.7, "lbs"),
  8086. name: "Front",
  8087. image: {
  8088. source: "./media/characters/argent/front.svg",
  8089. extra: 1471 / 1331,
  8090. bottom: 100.8 / 1575.5
  8091. }
  8092. }
  8093. },
  8094. [
  8095. {
  8096. name: "Micro",
  8097. height: math.unit(2, "inches")
  8098. },
  8099. {
  8100. name: "Normal",
  8101. height: math.unit(3 + 1 / 12, "feet"),
  8102. default: true
  8103. },
  8104. {
  8105. name: "Macro",
  8106. height: math.unit(120, "feet")
  8107. },
  8108. ]
  8109. ))
  8110. characterMakers.push(() => makeCharacter(
  8111. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8112. {
  8113. lamp: {
  8114. height: math.unit(7 * 1559 / 989, "feet"),
  8115. name: "Magic Lamp",
  8116. image: {
  8117. source: "./media/characters/mira-al-cul/lamp.svg",
  8118. extra: 1617 / 1559
  8119. }
  8120. },
  8121. front: {
  8122. height: math.unit(7, "feet"),
  8123. name: "Front",
  8124. image: {
  8125. source: "./media/characters/mira-al-cul/front.svg",
  8126. extra: 1044 / 990
  8127. }
  8128. },
  8129. },
  8130. [
  8131. {
  8132. name: "Heavily Restricted",
  8133. height: math.unit(7 * 1559 / 989, "feet")
  8134. },
  8135. {
  8136. name: "Freshly Freed",
  8137. height: math.unit(50 * 1559 / 989, "feet")
  8138. },
  8139. {
  8140. name: "World Encompassing",
  8141. height: math.unit(10000 * 1559 / 989, "miles")
  8142. },
  8143. {
  8144. name: "Galactic",
  8145. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8146. },
  8147. {
  8148. name: "Palmed Universe",
  8149. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8150. default: true
  8151. },
  8152. {
  8153. name: "Multiversal Matriarch",
  8154. height: math.unit(8.87e10, "yottameters")
  8155. },
  8156. {
  8157. name: "Void Mother",
  8158. height: math.unit(3.14e110, "yottaparsecs")
  8159. },
  8160. {
  8161. name: "Toying with Transcendence",
  8162. height: math.unit(1e307, "meters")
  8163. },
  8164. ]
  8165. ))
  8166. characterMakers.push(() => makeCharacter(
  8167. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8168. {
  8169. front: {
  8170. height: math.unit(17 + 1 / 12, "feet"),
  8171. weight: math.unit(476.2 * 5, "lbs"),
  8172. name: "Front",
  8173. image: {
  8174. source: "./media/characters/kuro-shi-uchū/front.svg",
  8175. extra: 2329 / 1835,
  8176. bottom: 0.02
  8177. }
  8178. },
  8179. },
  8180. [
  8181. {
  8182. name: "Micro",
  8183. height: math.unit(2, "inches")
  8184. },
  8185. {
  8186. name: "Normal",
  8187. height: math.unit(12, "meters")
  8188. },
  8189. {
  8190. name: "Planetary",
  8191. height: math.unit(0.00929, "AU"),
  8192. default: true
  8193. },
  8194. {
  8195. name: "Universal",
  8196. height: math.unit(20, "gigaparsecs")
  8197. },
  8198. ]
  8199. ))
  8200. characterMakers.push(() => makeCharacter(
  8201. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8202. {
  8203. front: {
  8204. height: math.unit(5 + 2 / 12, "feet"),
  8205. weight: math.unit(120, "lbs"),
  8206. name: "Front",
  8207. image: {
  8208. source: "./media/characters/katherine/front.svg",
  8209. extra: 2075 / 1969
  8210. }
  8211. },
  8212. dress: {
  8213. height: math.unit(5 + 2 / 12, "feet"),
  8214. weight: math.unit(120, "lbs"),
  8215. name: "Dress",
  8216. image: {
  8217. source: "./media/characters/katherine/dress.svg",
  8218. extra: 2258 / 2064
  8219. }
  8220. },
  8221. },
  8222. [
  8223. {
  8224. name: "Micro",
  8225. height: math.unit(1, "inches"),
  8226. default: true
  8227. },
  8228. {
  8229. name: "Normal",
  8230. height: math.unit(5 + 2 / 12, "feet")
  8231. },
  8232. {
  8233. name: "Macro",
  8234. height: math.unit(100, "meters")
  8235. },
  8236. {
  8237. name: "Megamacro",
  8238. height: math.unit(80, "miles")
  8239. },
  8240. ]
  8241. ))
  8242. characterMakers.push(() => makeCharacter(
  8243. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8244. {
  8245. front: {
  8246. height: math.unit(7 + 8 / 12, "feet"),
  8247. weight: math.unit(250, "lbs"),
  8248. name: "Front",
  8249. image: {
  8250. source: "./media/characters/yevis/front.svg",
  8251. extra: 1938 / 1755
  8252. }
  8253. }
  8254. },
  8255. [
  8256. {
  8257. name: "Mortal",
  8258. height: math.unit(7 + 8 / 12, "feet")
  8259. },
  8260. {
  8261. name: "Battle",
  8262. height: math.unit(25 + 11 / 12, "feet")
  8263. },
  8264. {
  8265. name: "Wrath",
  8266. height: math.unit(1654 + 11 / 12, "feet")
  8267. },
  8268. {
  8269. name: "Planet Destroyer",
  8270. height: math.unit(12000, "miles")
  8271. },
  8272. {
  8273. name: "Galaxy Conqueror",
  8274. height: math.unit(1.45, "zettameters"),
  8275. default: true
  8276. },
  8277. {
  8278. name: "Universal War",
  8279. height: math.unit(184, "gigaparsecs")
  8280. },
  8281. {
  8282. name: "Eternity War",
  8283. height: math.unit(1.98e55, "yottaparsecs")
  8284. },
  8285. ]
  8286. ))
  8287. characterMakers.push(() => makeCharacter(
  8288. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8289. {
  8290. front: {
  8291. height: math.unit(5 + 8 / 12, "feet"),
  8292. weight: math.unit(63, "kg"),
  8293. name: "Front",
  8294. image: {
  8295. source: "./media/characters/xavier/front.svg",
  8296. extra: 944 / 883
  8297. }
  8298. },
  8299. frontStretch: {
  8300. height: math.unit(5 + 8 / 12, "feet"),
  8301. weight: math.unit(63, "kg"),
  8302. name: "Stretching",
  8303. image: {
  8304. source: "./media/characters/xavier/front-stretch.svg",
  8305. extra: 962 / 820
  8306. }
  8307. },
  8308. },
  8309. [
  8310. {
  8311. name: "Normal",
  8312. height: math.unit(5 + 8 / 12, "feet")
  8313. },
  8314. {
  8315. name: "Macro",
  8316. height: math.unit(100, "meters"),
  8317. default: true
  8318. },
  8319. {
  8320. name: "McLargeHuge",
  8321. height: math.unit(10, "miles")
  8322. },
  8323. ]
  8324. ))
  8325. characterMakers.push(() => makeCharacter(
  8326. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8327. {
  8328. front: {
  8329. height: math.unit(5 + 5 / 12, "feet"),
  8330. weight: math.unit(150, "lb"),
  8331. name: "Front",
  8332. image: {
  8333. source: "./media/characters/joshii/front.svg",
  8334. extra: 765 / 653,
  8335. bottom: 51 / 816
  8336. }
  8337. },
  8338. foot: {
  8339. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8340. name: "Foot",
  8341. image: {
  8342. source: "./media/characters/joshii/foot.svg"
  8343. }
  8344. },
  8345. },
  8346. [
  8347. {
  8348. name: "Micro",
  8349. height: math.unit(2, "inches"),
  8350. default: true
  8351. },
  8352. {
  8353. name: "Normal",
  8354. height: math.unit(5 + 5 / 12, "feet")
  8355. },
  8356. {
  8357. name: "Macro",
  8358. height: math.unit(785, "feet")
  8359. },
  8360. {
  8361. name: "Megamacro",
  8362. height: math.unit(24.5, "miles")
  8363. },
  8364. ]
  8365. ))
  8366. characterMakers.push(() => makeCharacter(
  8367. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8368. {
  8369. front: {
  8370. height: math.unit(6, "feet"),
  8371. weight: math.unit(150, "lb"),
  8372. name: "Front",
  8373. image: {
  8374. source: "./media/characters/goddess-elizabeth/front.svg",
  8375. extra: 1800 / 1525,
  8376. bottom: 0.005
  8377. }
  8378. },
  8379. foot: {
  8380. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8381. name: "Foot",
  8382. image: {
  8383. source: "./media/characters/goddess-elizabeth/foot.svg"
  8384. }
  8385. },
  8386. mouth: {
  8387. height: math.unit(6, "feet"),
  8388. name: "Mouth",
  8389. image: {
  8390. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8391. }
  8392. },
  8393. },
  8394. [
  8395. {
  8396. name: "Micro",
  8397. height: math.unit(12, "feet")
  8398. },
  8399. {
  8400. name: "Normal",
  8401. height: math.unit(80, "miles"),
  8402. default: true
  8403. },
  8404. {
  8405. name: "Macro",
  8406. height: math.unit(15000, "parsecs")
  8407. },
  8408. ]
  8409. ))
  8410. characterMakers.push(() => makeCharacter(
  8411. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8412. {
  8413. front: {
  8414. height: math.unit(5 + 9 / 12, "feet"),
  8415. weight: math.unit(144, "lb"),
  8416. name: "Front",
  8417. image: {
  8418. source: "./media/characters/kara/front.svg"
  8419. }
  8420. },
  8421. feet: {
  8422. height: math.unit(6 / 6.765, "feet"),
  8423. name: "Kara's Feet",
  8424. rename: true,
  8425. image: {
  8426. source: "./media/characters/kara/feet.svg"
  8427. }
  8428. },
  8429. },
  8430. [
  8431. {
  8432. name: "Normal",
  8433. height: math.unit(5 + 9 / 12, "feet")
  8434. },
  8435. {
  8436. name: "Macro",
  8437. height: math.unit(174, "feet"),
  8438. default: true
  8439. },
  8440. ]
  8441. ))
  8442. characterMakers.push(() => makeCharacter(
  8443. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8444. {
  8445. front: {
  8446. height: math.unit(18, "feet"),
  8447. weight: math.unit(4050, "lb"),
  8448. name: "Front",
  8449. image: {
  8450. source: "./media/characters/tyrone/front.svg",
  8451. extra: 2405 / 2270,
  8452. bottom: 182 / 2587
  8453. }
  8454. },
  8455. },
  8456. [
  8457. {
  8458. name: "Normal",
  8459. height: math.unit(18, "feet"),
  8460. default: true
  8461. },
  8462. {
  8463. name: "Macro",
  8464. height: math.unit(300, "feet")
  8465. },
  8466. {
  8467. name: "Megamacro",
  8468. height: math.unit(15, "km")
  8469. },
  8470. {
  8471. name: "Gigamacro",
  8472. height: math.unit(500, "km")
  8473. },
  8474. {
  8475. name: "Teramacro",
  8476. height: math.unit(0.5, "gigameters")
  8477. },
  8478. {
  8479. name: "Omnimacro",
  8480. height: math.unit(1e252, "yottauniverse")
  8481. },
  8482. ]
  8483. ))
  8484. characterMakers.push(() => makeCharacter(
  8485. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8486. {
  8487. front: {
  8488. height: math.unit(7 + 8 / 12, "feet"),
  8489. weight: math.unit(120, "lb"),
  8490. name: "Front",
  8491. image: {
  8492. source: "./media/characters/danny/front.svg",
  8493. extra: 1490 / 1350
  8494. }
  8495. },
  8496. back: {
  8497. height: math.unit(7 + 8 / 12, "feet"),
  8498. weight: math.unit(120, "lb"),
  8499. name: "Back",
  8500. image: {
  8501. source: "./media/characters/danny/back.svg",
  8502. extra: 1490 / 1350
  8503. }
  8504. },
  8505. },
  8506. [
  8507. {
  8508. name: "Normal",
  8509. height: math.unit(7 + 8 / 12, "feet"),
  8510. default: true
  8511. },
  8512. ]
  8513. ))
  8514. characterMakers.push(() => makeCharacter(
  8515. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8516. {
  8517. front: {
  8518. height: math.unit(3.5, "inches"),
  8519. weight: math.unit(19, "grams"),
  8520. name: "Front",
  8521. image: {
  8522. source: "./media/characters/mallow/front.svg",
  8523. extra: 471 / 431
  8524. }
  8525. },
  8526. back: {
  8527. height: math.unit(3.5, "inches"),
  8528. weight: math.unit(19, "grams"),
  8529. name: "Back",
  8530. image: {
  8531. source: "./media/characters/mallow/back.svg",
  8532. extra: 471 / 431
  8533. }
  8534. },
  8535. },
  8536. [
  8537. {
  8538. name: "Normal",
  8539. height: math.unit(3.5, "inches"),
  8540. default: true
  8541. },
  8542. ]
  8543. ))
  8544. characterMakers.push(() => makeCharacter(
  8545. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8546. {
  8547. front: {
  8548. height: math.unit(9, "feet"),
  8549. weight: math.unit(230, "kg"),
  8550. name: "Front",
  8551. image: {
  8552. source: "./media/characters/starry-aqua/front.svg"
  8553. }
  8554. },
  8555. back: {
  8556. height: math.unit(9, "feet"),
  8557. weight: math.unit(230, "kg"),
  8558. name: "Back",
  8559. image: {
  8560. source: "./media/characters/starry-aqua/back.svg"
  8561. }
  8562. },
  8563. hand: {
  8564. height: math.unit(9 * 0.1168, "feet"),
  8565. name: "Hand",
  8566. image: {
  8567. source: "./media/characters/starry-aqua/hand.svg"
  8568. }
  8569. },
  8570. foot: {
  8571. height: math.unit(9 * 0.18, "feet"),
  8572. name: "Foot",
  8573. image: {
  8574. source: "./media/characters/starry-aqua/foot.svg"
  8575. }
  8576. }
  8577. },
  8578. [
  8579. {
  8580. name: "Micro",
  8581. height: math.unit(3, "inches")
  8582. },
  8583. {
  8584. name: "Normal",
  8585. height: math.unit(9, "feet")
  8586. },
  8587. {
  8588. name: "Macro",
  8589. height: math.unit(300, "feet"),
  8590. default: true
  8591. },
  8592. {
  8593. name: "Megamacro",
  8594. height: math.unit(3200, "feet")
  8595. }
  8596. ]
  8597. ))
  8598. characterMakers.push(() => makeCharacter(
  8599. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8600. {
  8601. front: {
  8602. height: math.unit(6, "feet"),
  8603. weight: math.unit(230, "lb"),
  8604. name: "Front",
  8605. image: {
  8606. source: "./media/characters/luka/front.svg",
  8607. extra: 1,
  8608. bottom: 0.025
  8609. }
  8610. },
  8611. },
  8612. [
  8613. {
  8614. name: "Normal",
  8615. height: math.unit(12 + 8 / 12, "feet"),
  8616. default: true
  8617. },
  8618. {
  8619. name: "Minimacro",
  8620. height: math.unit(20, "feet")
  8621. },
  8622. {
  8623. name: "Macro",
  8624. height: math.unit(250, "feet")
  8625. },
  8626. {
  8627. name: "Megamacro",
  8628. height: math.unit(5, "miles")
  8629. },
  8630. {
  8631. name: "Gigamacro",
  8632. height: math.unit(8000, "miles")
  8633. },
  8634. ]
  8635. ))
  8636. characterMakers.push(() => makeCharacter(
  8637. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8638. {
  8639. front: {
  8640. height: math.unit(6, "feet"),
  8641. weight: math.unit(150, "lb"),
  8642. name: "Front",
  8643. image: {
  8644. source: "./media/characters/natalie-nightring/front.svg",
  8645. extra: 1,
  8646. bottom: 0.06
  8647. }
  8648. },
  8649. },
  8650. [
  8651. {
  8652. name: "Uh Oh",
  8653. height: math.unit(0.1, "mm")
  8654. },
  8655. {
  8656. name: "Small",
  8657. height: math.unit(3, "inches")
  8658. },
  8659. {
  8660. name: "Human Scale",
  8661. height: math.unit(6, "feet")
  8662. },
  8663. {
  8664. name: "Librarian",
  8665. height: math.unit(50, "feet"),
  8666. default: true
  8667. },
  8668. {
  8669. name: "Immense",
  8670. height: math.unit(200, "miles")
  8671. },
  8672. ]
  8673. ))
  8674. characterMakers.push(() => makeCharacter(
  8675. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8676. {
  8677. front: {
  8678. height: math.unit(6, "feet"),
  8679. weight: math.unit(180, "lbs"),
  8680. name: "Front",
  8681. image: {
  8682. source: "./media/characters/danni-rosie/front.svg",
  8683. extra: 1260 / 1128,
  8684. bottom: 0.022
  8685. }
  8686. },
  8687. },
  8688. [
  8689. {
  8690. name: "Micro",
  8691. height: math.unit(2, "inches"),
  8692. default: true
  8693. },
  8694. ]
  8695. ))
  8696. characterMakers.push(() => makeCharacter(
  8697. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8698. {
  8699. front: {
  8700. height: math.unit(5 + 9 / 12, "feet"),
  8701. weight: math.unit(220, "lb"),
  8702. name: "Front",
  8703. image: {
  8704. source: "./media/characters/samantha-kruse/front.svg",
  8705. extra: (985 / 935),
  8706. bottom: 0.03
  8707. }
  8708. },
  8709. frontUndressed: {
  8710. height: math.unit(5 + 9 / 12, "feet"),
  8711. weight: math.unit(220, "lb"),
  8712. name: "Front (Undressed)",
  8713. image: {
  8714. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8715. extra: (973 / 923),
  8716. bottom: 0.025
  8717. }
  8718. },
  8719. fat: {
  8720. height: math.unit(5 + 9 / 12, "feet"),
  8721. weight: math.unit(900, "lb"),
  8722. name: "Front (Fat)",
  8723. image: {
  8724. source: "./media/characters/samantha-kruse/fat.svg",
  8725. extra: 2688 / 2561
  8726. }
  8727. },
  8728. },
  8729. [
  8730. {
  8731. name: "Normal",
  8732. height: math.unit(5 + 9 / 12, "feet"),
  8733. default: true
  8734. }
  8735. ]
  8736. ))
  8737. characterMakers.push(() => makeCharacter(
  8738. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8739. {
  8740. back: {
  8741. height: math.unit(5 + 4 / 12, "feet"),
  8742. weight: math.unit(4963, "lb"),
  8743. name: "Back",
  8744. image: {
  8745. source: "./media/characters/amelia-rosie/back.svg",
  8746. extra: 1113 / 963,
  8747. bottom: 0.01
  8748. }
  8749. },
  8750. },
  8751. [
  8752. {
  8753. name: "Level 0",
  8754. height: math.unit(5 + 4 / 12, "feet")
  8755. },
  8756. {
  8757. name: "Level 1",
  8758. height: math.unit(164597, "feet"),
  8759. default: true
  8760. },
  8761. {
  8762. name: "Level 2",
  8763. height: math.unit(956243, "miles")
  8764. },
  8765. {
  8766. name: "Level 3",
  8767. height: math.unit(29421709423, "miles")
  8768. },
  8769. {
  8770. name: "Level 4",
  8771. height: math.unit(154, "lightyears")
  8772. },
  8773. {
  8774. name: "Level 5",
  8775. height: math.unit(4738272, "lightyears")
  8776. },
  8777. {
  8778. name: "Level 6",
  8779. height: math.unit(145787152896, "lightyears")
  8780. },
  8781. ]
  8782. ))
  8783. characterMakers.push(() => makeCharacter(
  8784. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8785. {
  8786. front: {
  8787. height: math.unit(5 + 11 / 12, "feet"),
  8788. weight: math.unit(65, "kg"),
  8789. name: "Front",
  8790. image: {
  8791. source: "./media/characters/rook-kitara/front.svg",
  8792. extra: 1347 / 1274,
  8793. bottom: 0.005
  8794. }
  8795. },
  8796. },
  8797. [
  8798. {
  8799. name: "Totally Unfair",
  8800. height: math.unit(1.8, "mm")
  8801. },
  8802. {
  8803. name: "Lap Rookie",
  8804. height: math.unit(1.4, "feet")
  8805. },
  8806. {
  8807. name: "Normal",
  8808. height: math.unit(5 + 11 / 12, "feet"),
  8809. default: true
  8810. },
  8811. {
  8812. name: "How Did This Happen",
  8813. height: math.unit(80, "miles")
  8814. }
  8815. ]
  8816. ))
  8817. characterMakers.push(() => makeCharacter(
  8818. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8819. {
  8820. front: {
  8821. height: math.unit(7, "feet"),
  8822. weight: math.unit(300, "lb"),
  8823. name: "Front",
  8824. image: {
  8825. source: "./media/characters/pisces/front.svg",
  8826. extra: 2255 / 2115,
  8827. bottom: 0.03
  8828. }
  8829. },
  8830. back: {
  8831. height: math.unit(7, "feet"),
  8832. weight: math.unit(300, "lb"),
  8833. name: "Back",
  8834. image: {
  8835. source: "./media/characters/pisces/back.svg",
  8836. extra: 2146 / 2055,
  8837. bottom: 0.04
  8838. }
  8839. },
  8840. },
  8841. [
  8842. {
  8843. name: "Normal",
  8844. height: math.unit(7, "feet"),
  8845. default: true
  8846. },
  8847. {
  8848. name: "Swimming Pool",
  8849. height: math.unit(12.2, "meters")
  8850. },
  8851. {
  8852. name: "Olympic Swimming Pool",
  8853. height: math.unit(56.3, "meters")
  8854. },
  8855. {
  8856. name: "Lake Superior",
  8857. height: math.unit(93900, "meters")
  8858. },
  8859. {
  8860. name: "Mediterranean Sea",
  8861. height: math.unit(644457, "meters")
  8862. },
  8863. {
  8864. name: "World's Oceans",
  8865. height: math.unit(4567491, "meters")
  8866. },
  8867. ]
  8868. ))
  8869. characterMakers.push(() => makeCharacter(
  8870. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8871. {
  8872. front: {
  8873. height: math.unit(2.3, "meters"),
  8874. weight: math.unit(120, "kg"),
  8875. name: "Front",
  8876. image: {
  8877. source: "./media/characters/zelas/front.svg"
  8878. }
  8879. },
  8880. side: {
  8881. height: math.unit(2.3, "meters"),
  8882. weight: math.unit(120, "kg"),
  8883. name: "Side",
  8884. image: {
  8885. source: "./media/characters/zelas/side.svg"
  8886. }
  8887. },
  8888. back: {
  8889. height: math.unit(2.3, "meters"),
  8890. weight: math.unit(120, "kg"),
  8891. name: "Back",
  8892. image: {
  8893. source: "./media/characters/zelas/back.svg"
  8894. }
  8895. },
  8896. foot: {
  8897. height: math.unit(1.116, "feet"),
  8898. name: "Foot",
  8899. image: {
  8900. source: "./media/characters/zelas/foot.svg"
  8901. }
  8902. },
  8903. },
  8904. [
  8905. {
  8906. name: "Normal",
  8907. height: math.unit(2.3, "meters")
  8908. },
  8909. {
  8910. name: "Macro",
  8911. height: math.unit(30, "meters"),
  8912. default: true
  8913. },
  8914. ]
  8915. ))
  8916. characterMakers.push(() => makeCharacter(
  8917. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8918. {
  8919. front: {
  8920. height: math.unit(1, "inch"),
  8921. weight: math.unit(0.21, "grams"),
  8922. name: "Front",
  8923. image: {
  8924. source: "./media/characters/talbot/front.svg",
  8925. extra: 594 / 544
  8926. }
  8927. },
  8928. },
  8929. [
  8930. {
  8931. name: "Micro",
  8932. height: math.unit(1, "inch"),
  8933. default: true
  8934. },
  8935. ]
  8936. ))
  8937. characterMakers.push(() => makeCharacter(
  8938. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8939. {
  8940. front: {
  8941. height: math.unit(3 + 3 / 12, "feet"),
  8942. weight: math.unit(51.8, "lb"),
  8943. name: "Front",
  8944. image: {
  8945. source: "./media/characters/fliss/front.svg",
  8946. extra: 840 / 640
  8947. }
  8948. },
  8949. },
  8950. [
  8951. {
  8952. name: "Teeny Tiny",
  8953. height: math.unit(1, "mm")
  8954. },
  8955. {
  8956. name: "Small",
  8957. height: math.unit(1, "inch"),
  8958. default: true
  8959. },
  8960. {
  8961. name: "Standard Sylveon",
  8962. height: math.unit(3 + 3 / 12, "feet")
  8963. },
  8964. {
  8965. name: "Large Nuisance",
  8966. height: math.unit(33, "feet")
  8967. },
  8968. {
  8969. name: "City Filler",
  8970. height: math.unit(3000, "feet")
  8971. },
  8972. {
  8973. name: "New Horizon",
  8974. height: math.unit(6000, "miles")
  8975. },
  8976. ]
  8977. ))
  8978. characterMakers.push(() => makeCharacter(
  8979. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8980. {
  8981. front: {
  8982. height: math.unit(5, "cm"),
  8983. weight: math.unit(1.94, "g"),
  8984. name: "Front",
  8985. image: {
  8986. source: "./media/characters/fleta/front.svg",
  8987. extra: 835 / 803
  8988. }
  8989. },
  8990. back: {
  8991. height: math.unit(5, "cm"),
  8992. weight: math.unit(1.94, "g"),
  8993. name: "Back",
  8994. image: {
  8995. source: "./media/characters/fleta/back.svg",
  8996. extra: 835 / 803
  8997. }
  8998. },
  8999. },
  9000. [
  9001. {
  9002. name: "Micro",
  9003. height: math.unit(5, "cm"),
  9004. default: true
  9005. },
  9006. ]
  9007. ))
  9008. characterMakers.push(() => makeCharacter(
  9009. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9010. {
  9011. front: {
  9012. height: math.unit(6, "feet"),
  9013. weight: math.unit(225, "lb"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/dominic/front.svg",
  9017. extra: 1770 / 1620,
  9018. bottom: 0.025
  9019. }
  9020. },
  9021. back: {
  9022. height: math.unit(6, "feet"),
  9023. weight: math.unit(225, "lb"),
  9024. name: "Back",
  9025. image: {
  9026. source: "./media/characters/dominic/back.svg",
  9027. extra: 1745 / 1620,
  9028. bottom: 0.065
  9029. }
  9030. },
  9031. },
  9032. [
  9033. {
  9034. name: "Nano",
  9035. height: math.unit(0.1, "mm")
  9036. },
  9037. {
  9038. name: "Micro-",
  9039. height: math.unit(1, "mm")
  9040. },
  9041. {
  9042. name: "Micro",
  9043. height: math.unit(4, "inches")
  9044. },
  9045. {
  9046. name: "Normal",
  9047. height: math.unit(6 + 4 / 12, "feet"),
  9048. default: true
  9049. },
  9050. {
  9051. name: "Macro",
  9052. height: math.unit(115, "feet")
  9053. },
  9054. {
  9055. name: "Macro+",
  9056. height: math.unit(955, "feet")
  9057. },
  9058. {
  9059. name: "Megamacro",
  9060. height: math.unit(8990, "feet")
  9061. },
  9062. {
  9063. name: "Gigmacro",
  9064. height: math.unit(9310, "miles")
  9065. },
  9066. {
  9067. name: "Teramacro",
  9068. height: math.unit(1567005010, "miles")
  9069. },
  9070. {
  9071. name: "Examacro",
  9072. height: math.unit(1425, "parsecs")
  9073. },
  9074. ]
  9075. ))
  9076. characterMakers.push(() => makeCharacter(
  9077. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9078. {
  9079. front: {
  9080. height: math.unit(400, "feet"),
  9081. weight: math.unit(44444444, "lb"),
  9082. name: "Front",
  9083. image: {
  9084. source: "./media/characters/major-colonel/front.svg"
  9085. }
  9086. },
  9087. back: {
  9088. height: math.unit(400, "feet"),
  9089. weight: math.unit(44444444, "lb"),
  9090. name: "Back",
  9091. image: {
  9092. source: "./media/characters/major-colonel/back.svg"
  9093. }
  9094. },
  9095. },
  9096. [
  9097. {
  9098. name: "Macro",
  9099. height: math.unit(400, "feet"),
  9100. default: true
  9101. },
  9102. ]
  9103. ))
  9104. characterMakers.push(() => makeCharacter(
  9105. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9106. {
  9107. catFront: {
  9108. height: math.unit(6, "feet"),
  9109. weight: math.unit(120, "lb"),
  9110. name: "Front (Cat Side)",
  9111. image: {
  9112. source: "./media/characters/axel-lycan/cat-front.svg",
  9113. extra: 430 / 402,
  9114. bottom: 43 / 472.35
  9115. }
  9116. },
  9117. catBack: {
  9118. height: math.unit(6, "feet"),
  9119. weight: math.unit(120, "lb"),
  9120. name: "Back (Cat Side)",
  9121. image: {
  9122. source: "./media/characters/axel-lycan/cat-back.svg",
  9123. extra: 447 / 419,
  9124. bottom: 23.3 / 469
  9125. }
  9126. },
  9127. wolfFront: {
  9128. height: math.unit(6, "feet"),
  9129. weight: math.unit(120, "lb"),
  9130. name: "Front (Wolf Side)",
  9131. image: {
  9132. source: "./media/characters/axel-lycan/wolf-front.svg",
  9133. extra: 485 / 456,
  9134. bottom: 19 / 504
  9135. }
  9136. },
  9137. wolfBack: {
  9138. height: math.unit(6, "feet"),
  9139. weight: math.unit(120, "lb"),
  9140. name: "Back (Wolf Side)",
  9141. image: {
  9142. source: "./media/characters/axel-lycan/wolf-back.svg",
  9143. extra: 475 / 438,
  9144. bottom: 39.2 / 514
  9145. }
  9146. },
  9147. },
  9148. [
  9149. {
  9150. name: "Macro",
  9151. height: math.unit(1, "km"),
  9152. default: true
  9153. },
  9154. ]
  9155. ))
  9156. characterMakers.push(() => makeCharacter(
  9157. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9158. {
  9159. front: {
  9160. height: math.unit(5 + 9 / 12, "feet"),
  9161. weight: math.unit(175, "lb"),
  9162. name: "Front",
  9163. image: {
  9164. source: "./media/characters/vanrel-hyena/front.svg",
  9165. extra: 1086 / 1010,
  9166. bottom: 0.04
  9167. }
  9168. },
  9169. },
  9170. [
  9171. {
  9172. name: "Normal",
  9173. height: math.unit(5 + 9 / 12, "feet"),
  9174. default: true
  9175. },
  9176. ]
  9177. ))
  9178. characterMakers.push(() => makeCharacter(
  9179. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9180. {
  9181. front: {
  9182. height: math.unit(6, "feet"),
  9183. weight: math.unit(103, "lb"),
  9184. name: "Front",
  9185. image: {
  9186. source: "./media/characters/abbott-absol/front.svg",
  9187. extra: 2010 / 1842
  9188. }
  9189. },
  9190. },
  9191. [
  9192. {
  9193. name: "Megamicro",
  9194. height: math.unit(0.1, "mm")
  9195. },
  9196. {
  9197. name: "Micro",
  9198. height: math.unit(1, "inch")
  9199. },
  9200. {
  9201. name: "Normal",
  9202. height: math.unit(6, "feet"),
  9203. default: true
  9204. },
  9205. ]
  9206. ))
  9207. characterMakers.push(() => makeCharacter(
  9208. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9209. {
  9210. front: {
  9211. height: math.unit(6, "feet"),
  9212. weight: math.unit(264, "lb"),
  9213. name: "Front",
  9214. image: {
  9215. source: "./media/characters/hector/front.svg",
  9216. extra: 2280 / 2130,
  9217. bottom: 0.07
  9218. }
  9219. },
  9220. },
  9221. [
  9222. {
  9223. name: "Normal",
  9224. height: math.unit(12.25, "foot"),
  9225. default: true
  9226. },
  9227. {
  9228. name: "Macro",
  9229. height: math.unit(160, "feet")
  9230. },
  9231. ]
  9232. ))
  9233. characterMakers.push(() => makeCharacter(
  9234. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9235. {
  9236. front: {
  9237. height: math.unit(6, "feet"),
  9238. weight: math.unit(150, "lb"),
  9239. name: "Front",
  9240. image: {
  9241. source: "./media/characters/sal/front.svg",
  9242. extra: 1846 / 1699,
  9243. bottom: 0.04
  9244. }
  9245. },
  9246. },
  9247. [
  9248. {
  9249. name: "Megamacro",
  9250. height: math.unit(10, "miles"),
  9251. default: true
  9252. },
  9253. ]
  9254. ))
  9255. characterMakers.push(() => makeCharacter(
  9256. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9257. {
  9258. front: {
  9259. height: math.unit(3, "meters"),
  9260. weight: math.unit(450, "kg"),
  9261. name: "front",
  9262. image: {
  9263. source: "./media/characters/ranger/front.svg",
  9264. extra: 2401 / 2243,
  9265. bottom: 0.05
  9266. }
  9267. },
  9268. },
  9269. [
  9270. {
  9271. name: "Normal",
  9272. height: math.unit(3, "meters"),
  9273. default: true
  9274. },
  9275. ]
  9276. ))
  9277. characterMakers.push(() => makeCharacter(
  9278. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9279. {
  9280. front: {
  9281. height: math.unit(14, "feet"),
  9282. weight: math.unit(800, "kg"),
  9283. name: "Front",
  9284. image: {
  9285. source: "./media/characters/theresa/front.svg",
  9286. extra: 3575 / 3346,
  9287. bottom: 0.03
  9288. }
  9289. },
  9290. },
  9291. [
  9292. {
  9293. name: "Normal",
  9294. height: math.unit(14, "feet"),
  9295. default: true
  9296. },
  9297. ]
  9298. ))
  9299. characterMakers.push(() => makeCharacter(
  9300. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9301. {
  9302. front: {
  9303. height: math.unit(6, "feet"),
  9304. weight: math.unit(3, "kg"),
  9305. name: "Front",
  9306. image: {
  9307. source: "./media/characters/ine/front.svg",
  9308. extra: 678 / 539,
  9309. bottom: 0.023
  9310. }
  9311. },
  9312. },
  9313. [
  9314. {
  9315. name: "Normal",
  9316. height: math.unit(2.265, "feet"),
  9317. default: true
  9318. },
  9319. ]
  9320. ))
  9321. characterMakers.push(() => makeCharacter(
  9322. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9323. {
  9324. front: {
  9325. height: math.unit(5, "feet"),
  9326. weight: math.unit(30, "kg"),
  9327. name: "Front",
  9328. image: {
  9329. source: "./media/characters/vial/front.svg",
  9330. extra: 1365 / 1277,
  9331. bottom: 0.04
  9332. }
  9333. },
  9334. },
  9335. [
  9336. {
  9337. name: "Normal",
  9338. height: math.unit(5, "feet"),
  9339. default: true
  9340. },
  9341. ]
  9342. ))
  9343. characterMakers.push(() => makeCharacter(
  9344. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9345. {
  9346. side: {
  9347. height: math.unit(3.4, "meters"),
  9348. weight: math.unit(1000, "lb"),
  9349. name: "Side",
  9350. image: {
  9351. source: "./media/characters/rovoska/side.svg",
  9352. extra: 4403 / 1515
  9353. }
  9354. },
  9355. },
  9356. [
  9357. {
  9358. name: "Normal",
  9359. height: math.unit(3.4, "meters"),
  9360. default: true
  9361. },
  9362. ]
  9363. ))
  9364. characterMakers.push(() => makeCharacter(
  9365. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9366. {
  9367. front: {
  9368. height: math.unit(8, "feet"),
  9369. weight: math.unit(315, "lb"),
  9370. name: "Front",
  9371. image: {
  9372. source: "./media/characters/gunner-rotthbauer/front.svg"
  9373. }
  9374. },
  9375. back: {
  9376. height: math.unit(8, "feet"),
  9377. weight: math.unit(315, "lb"),
  9378. name: "Back",
  9379. image: {
  9380. source: "./media/characters/gunner-rotthbauer/back.svg"
  9381. }
  9382. },
  9383. },
  9384. [
  9385. {
  9386. name: "Micro",
  9387. height: math.unit(3.5, "inches")
  9388. },
  9389. {
  9390. name: "Normal",
  9391. height: math.unit(8, "feet"),
  9392. default: true
  9393. },
  9394. {
  9395. name: "Macro",
  9396. height: math.unit(250, "feet")
  9397. },
  9398. {
  9399. name: "Megamacro",
  9400. height: math.unit(1, "AU")
  9401. },
  9402. ]
  9403. ))
  9404. characterMakers.push(() => makeCharacter(
  9405. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9406. {
  9407. front: {
  9408. height: math.unit(5 + 5 / 12, "feet"),
  9409. weight: math.unit(140, "lb"),
  9410. name: "Front",
  9411. image: {
  9412. source: "./media/characters/allatia/front.svg",
  9413. extra: 1227 / 1180,
  9414. bottom: 0.027
  9415. }
  9416. },
  9417. },
  9418. [
  9419. {
  9420. name: "Normal",
  9421. height: math.unit(5 + 5 / 12, "feet")
  9422. },
  9423. {
  9424. name: "Macro",
  9425. height: math.unit(250, "feet"),
  9426. default: true
  9427. },
  9428. {
  9429. name: "Megamacro",
  9430. height: math.unit(8, "miles")
  9431. }
  9432. ]
  9433. ))
  9434. characterMakers.push(() => makeCharacter(
  9435. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9436. {
  9437. front: {
  9438. height: math.unit(6, "feet"),
  9439. weight: math.unit(120, "lb"),
  9440. name: "Front",
  9441. image: {
  9442. source: "./media/characters/tene/front.svg",
  9443. extra: 1728 / 1578,
  9444. bottom: 0.022
  9445. }
  9446. },
  9447. stomping: {
  9448. height: math.unit(2.025, "meters"),
  9449. weight: math.unit(120, "lb"),
  9450. name: "Stomping",
  9451. image: {
  9452. source: "./media/characters/tene/stomping.svg",
  9453. extra: 938 / 873,
  9454. bottom: 0.01
  9455. }
  9456. },
  9457. sitting: {
  9458. height: math.unit(1, "meter"),
  9459. weight: math.unit(120, "lb"),
  9460. name: "Sitting",
  9461. image: {
  9462. source: "./media/characters/tene/sitting.svg",
  9463. extra: 437 / 415,
  9464. bottom: 0.1
  9465. }
  9466. },
  9467. feral: {
  9468. height: math.unit(3.9, "feet"),
  9469. weight: math.unit(250, "lb"),
  9470. name: "Feral",
  9471. image: {
  9472. source: "./media/characters/tene/feral.svg",
  9473. extra: 717 / 458,
  9474. bottom: 0.179
  9475. }
  9476. },
  9477. },
  9478. [
  9479. {
  9480. name: "Normal",
  9481. height: math.unit(6, "feet")
  9482. },
  9483. {
  9484. name: "Macro",
  9485. height: math.unit(300, "feet"),
  9486. default: true
  9487. },
  9488. {
  9489. name: "Megamacro",
  9490. height: math.unit(5, "miles")
  9491. },
  9492. ]
  9493. ))
  9494. characterMakers.push(() => makeCharacter(
  9495. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9496. {
  9497. side: {
  9498. height: math.unit(6, "feet"),
  9499. name: "Side",
  9500. image: {
  9501. source: "./media/characters/evander/side.svg",
  9502. extra: 877 / 477
  9503. }
  9504. },
  9505. },
  9506. [
  9507. {
  9508. name: "Normal",
  9509. height: math.unit(0.83, "meters"),
  9510. default: true
  9511. },
  9512. ]
  9513. ))
  9514. characterMakers.push(() => makeCharacter(
  9515. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9516. {
  9517. front: {
  9518. height: math.unit(12, "feet"),
  9519. weight: math.unit(1000, "lb"),
  9520. name: "Front",
  9521. image: {
  9522. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9523. extra: 1762 / 1611
  9524. }
  9525. },
  9526. back: {
  9527. height: math.unit(12, "feet"),
  9528. weight: math.unit(1000, "lb"),
  9529. name: "Back",
  9530. image: {
  9531. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9532. extra: 1762 / 1611
  9533. }
  9534. },
  9535. },
  9536. [
  9537. {
  9538. name: "Normal",
  9539. height: math.unit(12, "feet"),
  9540. default: true
  9541. },
  9542. {
  9543. name: "Kaiju",
  9544. height: math.unit(150, "feet")
  9545. },
  9546. ]
  9547. ))
  9548. characterMakers.push(() => makeCharacter(
  9549. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9550. {
  9551. front: {
  9552. height: math.unit(6, "feet"),
  9553. weight: math.unit(150, "lb"),
  9554. name: "Front",
  9555. image: {
  9556. source: "./media/characters/zero-alurus/front.svg"
  9557. }
  9558. },
  9559. back: {
  9560. height: math.unit(6, "feet"),
  9561. weight: math.unit(150, "lb"),
  9562. name: "Back",
  9563. image: {
  9564. source: "./media/characters/zero-alurus/back.svg"
  9565. }
  9566. },
  9567. },
  9568. [
  9569. {
  9570. name: "Normal",
  9571. height: math.unit(5 + 10 / 12, "feet")
  9572. },
  9573. {
  9574. name: "Macro",
  9575. height: math.unit(60, "feet"),
  9576. default: true
  9577. },
  9578. {
  9579. name: "Macro+",
  9580. height: math.unit(450, "feet")
  9581. },
  9582. ]
  9583. ))
  9584. characterMakers.push(() => makeCharacter(
  9585. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9586. {
  9587. front: {
  9588. height: math.unit(6, "feet"),
  9589. weight: math.unit(200, "lb"),
  9590. name: "Front",
  9591. image: {
  9592. source: "./media/characters/mega-shi/front.svg",
  9593. extra: 1279 / 1250,
  9594. bottom: 0.02
  9595. }
  9596. },
  9597. back: {
  9598. height: math.unit(6, "feet"),
  9599. weight: math.unit(200, "lb"),
  9600. name: "Back",
  9601. image: {
  9602. source: "./media/characters/mega-shi/back.svg",
  9603. extra: 1279 / 1250,
  9604. bottom: 0.02
  9605. }
  9606. },
  9607. },
  9608. [
  9609. {
  9610. name: "Micro",
  9611. height: math.unit(16 + 6 / 12, "feet")
  9612. },
  9613. {
  9614. name: "Third Dimension",
  9615. height: math.unit(40, "meters")
  9616. },
  9617. {
  9618. name: "Normal",
  9619. height: math.unit(660, "feet"),
  9620. default: true
  9621. },
  9622. {
  9623. name: "Megamacro",
  9624. height: math.unit(10, "miles")
  9625. },
  9626. {
  9627. name: "Planetary Launch",
  9628. height: math.unit(500, "miles")
  9629. },
  9630. {
  9631. name: "Interstellar",
  9632. height: math.unit(1e9, "miles")
  9633. },
  9634. {
  9635. name: "Leaving the Universe",
  9636. height: math.unit(1, "gigaparsec")
  9637. },
  9638. {
  9639. name: "Travelling Universes",
  9640. height: math.unit(30e15, "parsecs")
  9641. },
  9642. ]
  9643. ))
  9644. characterMakers.push(() => makeCharacter(
  9645. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9646. {
  9647. front: {
  9648. height: math.unit(6, "feet"),
  9649. weight: math.unit(150, "lb"),
  9650. name: "Front",
  9651. image: {
  9652. source: "./media/characters/odyssey/front.svg",
  9653. extra: 1782 / 1582,
  9654. bottom: 0.01
  9655. }
  9656. },
  9657. side: {
  9658. height: math.unit(5.7, "feet"),
  9659. weight: math.unit(140, "lb"),
  9660. name: "Side",
  9661. image: {
  9662. source: "./media/characters/odyssey/side.svg",
  9663. extra: 6462 / 5700
  9664. }
  9665. },
  9666. },
  9667. [
  9668. {
  9669. name: "Normal",
  9670. height: math.unit(5 + 4 / 12, "feet")
  9671. },
  9672. {
  9673. name: "Macro",
  9674. height: math.unit(1, "km")
  9675. },
  9676. {
  9677. name: "Megamacro",
  9678. height: math.unit(3000, "km")
  9679. },
  9680. {
  9681. name: "Gigamacro",
  9682. height: math.unit(1, "AU"),
  9683. default: true
  9684. },
  9685. {
  9686. name: "Omniversal",
  9687. height: math.unit(100e14, "lightyears")
  9688. },
  9689. ]
  9690. ))
  9691. characterMakers.push(() => makeCharacter(
  9692. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9693. {
  9694. front: {
  9695. height: math.unit(6, "feet"),
  9696. weight: math.unit(300, "lb"),
  9697. name: "Front",
  9698. image: {
  9699. source: "./media/characters/mekuto/front.svg",
  9700. extra: 921 / 832,
  9701. bottom: 0.03
  9702. }
  9703. },
  9704. hand: {
  9705. height: math.unit(6 / 10.24, "feet"),
  9706. name: "Hand",
  9707. image: {
  9708. source: "./media/characters/mekuto/hand.svg"
  9709. }
  9710. },
  9711. foot: {
  9712. height: math.unit(6 / 5.05, "feet"),
  9713. name: "Foot",
  9714. image: {
  9715. source: "./media/characters/mekuto/foot.svg"
  9716. }
  9717. },
  9718. },
  9719. [
  9720. {
  9721. name: "Minimicro",
  9722. height: math.unit(0.2, "inches")
  9723. },
  9724. {
  9725. name: "Micro",
  9726. height: math.unit(1.5, "inches")
  9727. },
  9728. {
  9729. name: "Normal",
  9730. height: math.unit(5 + 11 / 12, "feet"),
  9731. default: true
  9732. },
  9733. {
  9734. name: "Minimacro",
  9735. height: math.unit(17 + 9 / 12, "feet")
  9736. },
  9737. {
  9738. name: "Macro",
  9739. height: math.unit(177.5, "feet")
  9740. },
  9741. {
  9742. name: "Megamacro",
  9743. height: math.unit(152, "miles")
  9744. },
  9745. ]
  9746. ))
  9747. characterMakers.push(() => makeCharacter(
  9748. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9749. {
  9750. front: {
  9751. height: math.unit(6.5, "inches"),
  9752. weight: math.unit(13, "oz"),
  9753. name: "Front",
  9754. image: {
  9755. source: "./media/characters/dafydd-tomos/front.svg",
  9756. extra: 2990 / 2603,
  9757. bottom: 0.03
  9758. }
  9759. },
  9760. },
  9761. [
  9762. {
  9763. name: "Micro",
  9764. height: math.unit(6.5, "inches"),
  9765. default: true
  9766. },
  9767. ]
  9768. ))
  9769. characterMakers.push(() => makeCharacter(
  9770. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9771. {
  9772. front: {
  9773. height: math.unit(6, "feet"),
  9774. weight: math.unit(150, "lb"),
  9775. name: "Front",
  9776. image: {
  9777. source: "./media/characters/splinter/front.svg",
  9778. extra: 2990 / 2882,
  9779. bottom: 0.04
  9780. }
  9781. },
  9782. back: {
  9783. height: math.unit(6, "feet"),
  9784. weight: math.unit(150, "lb"),
  9785. name: "Back",
  9786. image: {
  9787. source: "./media/characters/splinter/back.svg",
  9788. extra: 2990 / 2882,
  9789. bottom: 0.04
  9790. }
  9791. },
  9792. },
  9793. [
  9794. {
  9795. name: "Normal",
  9796. height: math.unit(6, "feet")
  9797. },
  9798. {
  9799. name: "Macro",
  9800. height: math.unit(230, "meters"),
  9801. default: true
  9802. },
  9803. ]
  9804. ))
  9805. characterMakers.push(() => makeCharacter(
  9806. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9807. {
  9808. front: {
  9809. height: math.unit(4 + 10 / 12, "feet"),
  9810. weight: math.unit(480, "lb"),
  9811. name: "Front",
  9812. image: {
  9813. source: "./media/characters/snow-gabumon/front.svg",
  9814. extra: 1140 / 963,
  9815. bottom: 0.058
  9816. }
  9817. },
  9818. back: {
  9819. height: math.unit(4 + 10 / 12, "feet"),
  9820. weight: math.unit(480, "lb"),
  9821. name: "Back",
  9822. image: {
  9823. source: "./media/characters/snow-gabumon/back.svg",
  9824. extra: 1115 / 962,
  9825. bottom: 0.041
  9826. }
  9827. },
  9828. frontUndresed: {
  9829. height: math.unit(4 + 10 / 12, "feet"),
  9830. weight: math.unit(480, "lb"),
  9831. name: "Front (Undressed)",
  9832. image: {
  9833. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9834. extra: 1061 / 960,
  9835. bottom: 0.045
  9836. }
  9837. },
  9838. },
  9839. [
  9840. {
  9841. name: "Micro",
  9842. height: math.unit(1, "inch")
  9843. },
  9844. {
  9845. name: "Normal",
  9846. height: math.unit(4 + 10 / 12, "feet"),
  9847. default: true
  9848. },
  9849. {
  9850. name: "Macro",
  9851. height: math.unit(200, "feet")
  9852. },
  9853. {
  9854. name: "Megamacro",
  9855. height: math.unit(120, "miles")
  9856. },
  9857. {
  9858. name: "Gigamacro",
  9859. height: math.unit(9800, "miles")
  9860. },
  9861. ]
  9862. ))
  9863. characterMakers.push(() => makeCharacter(
  9864. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9865. {
  9866. front: {
  9867. height: math.unit(1.7, "meters"),
  9868. weight: math.unit(140, "lb"),
  9869. name: "Front",
  9870. image: {
  9871. source: "./media/characters/moody/front.svg",
  9872. extra: 3226 / 3007,
  9873. bottom: 0.087
  9874. }
  9875. },
  9876. },
  9877. [
  9878. {
  9879. name: "Micro",
  9880. height: math.unit(1, "mm")
  9881. },
  9882. {
  9883. name: "Normal",
  9884. height: math.unit(1.7, "meters"),
  9885. default: true
  9886. },
  9887. {
  9888. name: "Macro",
  9889. height: math.unit(80, "meters")
  9890. },
  9891. {
  9892. name: "Macro+",
  9893. height: math.unit(500, "meters")
  9894. },
  9895. ]
  9896. ))
  9897. characterMakers.push(() => makeCharacter(
  9898. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9899. {
  9900. front: {
  9901. height: math.unit(6, "feet"),
  9902. weight: math.unit(150, "lb"),
  9903. name: "Front",
  9904. image: {
  9905. source: "./media/characters/zyas/front.svg",
  9906. extra: 1180 / 1120,
  9907. bottom: 0.045
  9908. }
  9909. },
  9910. },
  9911. [
  9912. {
  9913. name: "Normal",
  9914. height: math.unit(10, "feet"),
  9915. default: true
  9916. },
  9917. {
  9918. name: "Macro",
  9919. height: math.unit(500, "feet")
  9920. },
  9921. {
  9922. name: "Megamacro",
  9923. height: math.unit(5, "miles")
  9924. },
  9925. {
  9926. name: "Teramacro",
  9927. height: math.unit(150000, "miles")
  9928. },
  9929. ]
  9930. ))
  9931. characterMakers.push(() => makeCharacter(
  9932. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9933. {
  9934. front: {
  9935. height: math.unit(6, "feet"),
  9936. weight: math.unit(150, "lb"),
  9937. name: "Front",
  9938. image: {
  9939. source: "./media/characters/cuon/front.svg",
  9940. extra: 1390 / 1320,
  9941. bottom: 0.008
  9942. }
  9943. },
  9944. },
  9945. [
  9946. {
  9947. name: "Micro",
  9948. height: math.unit(3, "inches")
  9949. },
  9950. {
  9951. name: "Normal",
  9952. height: math.unit(18 + 9 / 12, "feet"),
  9953. default: true
  9954. },
  9955. {
  9956. name: "Macro",
  9957. height: math.unit(360, "feet")
  9958. },
  9959. {
  9960. name: "Megamacro",
  9961. height: math.unit(360, "miles")
  9962. },
  9963. ]
  9964. ))
  9965. characterMakers.push(() => makeCharacter(
  9966. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9967. {
  9968. front: {
  9969. height: math.unit(2.4, "meters"),
  9970. weight: math.unit(70, "kg"),
  9971. name: "Front",
  9972. image: {
  9973. source: "./media/characters/nyanuxk/front.svg",
  9974. extra: 1172 / 1084,
  9975. bottom: 0.065
  9976. }
  9977. },
  9978. side: {
  9979. height: math.unit(2.4, "meters"),
  9980. weight: math.unit(70, "kg"),
  9981. name: "Side",
  9982. image: {
  9983. source: "./media/characters/nyanuxk/side.svg",
  9984. extra: 1190 / 1132,
  9985. bottom: 0.007
  9986. }
  9987. },
  9988. back: {
  9989. height: math.unit(2.4, "meters"),
  9990. weight: math.unit(70, "kg"),
  9991. name: "Back",
  9992. image: {
  9993. source: "./media/characters/nyanuxk/back.svg",
  9994. extra: 1200 / 1141,
  9995. bottom: 0.015
  9996. }
  9997. },
  9998. foot: {
  9999. height: math.unit(0.52, "meters"),
  10000. name: "Foot",
  10001. image: {
  10002. source: "./media/characters/nyanuxk/foot.svg"
  10003. }
  10004. },
  10005. },
  10006. [
  10007. {
  10008. name: "Micro",
  10009. height: math.unit(2, "cm")
  10010. },
  10011. {
  10012. name: "Normal",
  10013. height: math.unit(2.4, "meters"),
  10014. default: true
  10015. },
  10016. {
  10017. name: "Smaller Macro",
  10018. height: math.unit(120, "meters")
  10019. },
  10020. {
  10021. name: "Bigger Macro",
  10022. height: math.unit(1.2, "km")
  10023. },
  10024. {
  10025. name: "Megamacro",
  10026. height: math.unit(15, "kilometers")
  10027. },
  10028. {
  10029. name: "Gigamacro",
  10030. height: math.unit(2000, "km")
  10031. },
  10032. {
  10033. name: "Teramacro",
  10034. height: math.unit(500000, "km")
  10035. },
  10036. ]
  10037. ))
  10038. characterMakers.push(() => makeCharacter(
  10039. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10040. {
  10041. side: {
  10042. height: math.unit(6, "feet"),
  10043. name: "Side",
  10044. image: {
  10045. source: "./media/characters/ailbhe/side.svg",
  10046. extra: 757 / 464,
  10047. bottom: 0.041
  10048. }
  10049. },
  10050. },
  10051. [
  10052. {
  10053. name: "Normal",
  10054. height: math.unit(1.07, "meters"),
  10055. default: true
  10056. },
  10057. ]
  10058. ))
  10059. characterMakers.push(() => makeCharacter(
  10060. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10061. {
  10062. front: {
  10063. height: math.unit(6, "feet"),
  10064. weight: math.unit(120, "kg"),
  10065. name: "Front",
  10066. image: {
  10067. source: "./media/characters/zevulfius/front.svg",
  10068. extra: 965 / 903
  10069. }
  10070. },
  10071. side: {
  10072. height: math.unit(6, "feet"),
  10073. weight: math.unit(120, "kg"),
  10074. name: "Side",
  10075. image: {
  10076. source: "./media/characters/zevulfius/side.svg",
  10077. extra: 939 / 900
  10078. }
  10079. },
  10080. back: {
  10081. height: math.unit(6, "feet"),
  10082. weight: math.unit(120, "kg"),
  10083. name: "Back",
  10084. image: {
  10085. source: "./media/characters/zevulfius/back.svg",
  10086. extra: 918 / 854,
  10087. bottom: 0.005
  10088. }
  10089. },
  10090. foot: {
  10091. height: math.unit(6 / 3.72, "feet"),
  10092. name: "Foot",
  10093. image: {
  10094. source: "./media/characters/zevulfius/foot.svg"
  10095. }
  10096. },
  10097. },
  10098. [
  10099. {
  10100. name: "Macro",
  10101. height: math.unit(750, "meters")
  10102. },
  10103. {
  10104. name: "Megamacro",
  10105. height: math.unit(20, "km"),
  10106. default: true
  10107. },
  10108. {
  10109. name: "Gigamacro",
  10110. height: math.unit(2000, "km")
  10111. },
  10112. {
  10113. name: "Teramacro",
  10114. height: math.unit(250000, "km")
  10115. },
  10116. ]
  10117. ))
  10118. characterMakers.push(() => makeCharacter(
  10119. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10120. {
  10121. front: {
  10122. height: math.unit(100, "feet"),
  10123. weight: math.unit(350, "kg"),
  10124. name: "Front",
  10125. image: {
  10126. source: "./media/characters/rikes/front.svg",
  10127. extra: 1565 / 1483,
  10128. bottom: 0.017
  10129. }
  10130. },
  10131. },
  10132. [
  10133. {
  10134. name: "Macro",
  10135. height: math.unit(100, "feet"),
  10136. default: true
  10137. },
  10138. ]
  10139. ))
  10140. characterMakers.push(() => makeCharacter(
  10141. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10142. {
  10143. anthro: {
  10144. height: math.unit(8, "feet"),
  10145. weight: math.unit(120, "kg"),
  10146. name: "Anthro",
  10147. image: {
  10148. source: "./media/characters/adam-silver-mane/anthro.svg",
  10149. extra: 5743 / 5339,
  10150. bottom: 0.07
  10151. }
  10152. },
  10153. taur: {
  10154. height: math.unit(16, "feet"),
  10155. weight: math.unit(1500, "kg"),
  10156. name: "Taur",
  10157. image: {
  10158. source: "./media/characters/adam-silver-mane/taur.svg",
  10159. extra: 1713 / 1571,
  10160. bottom: 0.01
  10161. }
  10162. },
  10163. },
  10164. [
  10165. {
  10166. name: "Normal",
  10167. height: math.unit(8, "feet")
  10168. },
  10169. {
  10170. name: "Minimacro",
  10171. height: math.unit(80, "feet")
  10172. },
  10173. {
  10174. name: "Macro",
  10175. height: math.unit(800, "feet"),
  10176. default: true
  10177. },
  10178. {
  10179. name: "Megamacro",
  10180. height: math.unit(8000, "feet")
  10181. },
  10182. {
  10183. name: "Gigamacro",
  10184. height: math.unit(800, "miles")
  10185. },
  10186. {
  10187. name: "Teramacro",
  10188. height: math.unit(80000, "miles")
  10189. },
  10190. {
  10191. name: "Celestial",
  10192. height: math.unit(8e6, "miles")
  10193. },
  10194. {
  10195. name: "Star Dragon",
  10196. height: math.unit(800000, "parsecs")
  10197. },
  10198. {
  10199. name: "Godly",
  10200. height: math.unit(800, "teraparsecs")
  10201. },
  10202. ]
  10203. ))
  10204. characterMakers.push(() => makeCharacter(
  10205. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10206. {
  10207. front: {
  10208. height: math.unit(6, "feet"),
  10209. weight: math.unit(150, "lb"),
  10210. name: "Front",
  10211. image: {
  10212. source: "./media/characters/ky'owin/front.svg",
  10213. extra: 3888 / 3068,
  10214. bottom: 0.015
  10215. }
  10216. },
  10217. },
  10218. [
  10219. {
  10220. name: "Normal",
  10221. height: math.unit(6 + 8 / 12, "feet")
  10222. },
  10223. {
  10224. name: "Large",
  10225. height: math.unit(68, "feet")
  10226. },
  10227. {
  10228. name: "Macro",
  10229. height: math.unit(132, "feet")
  10230. },
  10231. {
  10232. name: "Macro+",
  10233. height: math.unit(340, "feet")
  10234. },
  10235. {
  10236. name: "Macro++",
  10237. height: math.unit(680, "feet"),
  10238. default: true
  10239. },
  10240. {
  10241. name: "Megamacro",
  10242. height: math.unit(1, "mile")
  10243. },
  10244. {
  10245. name: "Megamacro+",
  10246. height: math.unit(10, "miles")
  10247. },
  10248. ]
  10249. ))
  10250. characterMakers.push(() => makeCharacter(
  10251. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10252. {
  10253. front: {
  10254. height: math.unit(4, "feet"),
  10255. weight: math.unit(50, "lb"),
  10256. name: "Front",
  10257. image: {
  10258. source: "./media/characters/mal/front.svg",
  10259. extra: 785 / 724,
  10260. bottom: 0.07
  10261. }
  10262. },
  10263. },
  10264. [
  10265. {
  10266. name: "Micro",
  10267. height: math.unit(4, "inches")
  10268. },
  10269. {
  10270. name: "Normal",
  10271. height: math.unit(4, "feet"),
  10272. default: true
  10273. },
  10274. {
  10275. name: "Macro",
  10276. height: math.unit(200, "feet")
  10277. },
  10278. ]
  10279. ))
  10280. characterMakers.push(() => makeCharacter(
  10281. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10282. {
  10283. front: {
  10284. height: math.unit(6, "feet"),
  10285. weight: math.unit(150, "lb"),
  10286. name: "Front",
  10287. image: {
  10288. source: "./media/characters/jordan-deware/front.svg",
  10289. extra: 1191 / 1012
  10290. }
  10291. },
  10292. },
  10293. [
  10294. {
  10295. name: "Nano",
  10296. height: math.unit(0.01, "mm")
  10297. },
  10298. {
  10299. name: "Minimicro",
  10300. height: math.unit(1, "mm")
  10301. },
  10302. {
  10303. name: "Micro",
  10304. height: math.unit(0.5, "inches")
  10305. },
  10306. {
  10307. name: "Normal",
  10308. height: math.unit(4, "feet"),
  10309. default: true
  10310. },
  10311. {
  10312. name: "Minimacro",
  10313. height: math.unit(40, "meters")
  10314. },
  10315. {
  10316. name: "Small Macro",
  10317. height: math.unit(400, "meters")
  10318. },
  10319. {
  10320. name: "Macro",
  10321. height: math.unit(4, "miles")
  10322. },
  10323. {
  10324. name: "Megamacro",
  10325. height: math.unit(40, "miles")
  10326. },
  10327. {
  10328. name: "Megamacro+",
  10329. height: math.unit(400, "miles")
  10330. },
  10331. {
  10332. name: "Gigamacro",
  10333. height: math.unit(400000, "miles")
  10334. },
  10335. ]
  10336. ))
  10337. characterMakers.push(() => makeCharacter(
  10338. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10339. {
  10340. side: {
  10341. height: math.unit(6, "feet"),
  10342. weight: math.unit(150, "lb"),
  10343. name: "Side",
  10344. image: {
  10345. source: "./media/characters/kimiko/side.svg",
  10346. extra: 600 / 358
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Normal",
  10353. height: math.unit(15, "feet"),
  10354. default: true
  10355. },
  10356. {
  10357. name: "Macro",
  10358. height: math.unit(220, "feet")
  10359. },
  10360. {
  10361. name: "Macro+",
  10362. height: math.unit(1450, "feet")
  10363. },
  10364. {
  10365. name: "Megamacro",
  10366. height: math.unit(11500, "feet")
  10367. },
  10368. {
  10369. name: "Gigamacro",
  10370. height: math.unit(9500, "miles")
  10371. },
  10372. {
  10373. name: "Teramacro",
  10374. height: math.unit(2208005005, "miles")
  10375. },
  10376. {
  10377. name: "Examacro",
  10378. height: math.unit(2750, "parsecs")
  10379. },
  10380. {
  10381. name: "Zettamacro",
  10382. height: math.unit(101500, "parsecs")
  10383. },
  10384. ]
  10385. ))
  10386. characterMakers.push(() => makeCharacter(
  10387. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10388. {
  10389. front: {
  10390. height: math.unit(6, "feet"),
  10391. weight: math.unit(70, "kg"),
  10392. name: "Front",
  10393. image: {
  10394. source: "./media/characters/andrew-sleepy/front.svg"
  10395. }
  10396. },
  10397. side: {
  10398. height: math.unit(6, "feet"),
  10399. weight: math.unit(70, "kg"),
  10400. name: "Side",
  10401. image: {
  10402. source: "./media/characters/andrew-sleepy/side.svg"
  10403. }
  10404. },
  10405. },
  10406. [
  10407. {
  10408. name: "Micro",
  10409. height: math.unit(1, "mm"),
  10410. default: true
  10411. },
  10412. ]
  10413. ))
  10414. characterMakers.push(() => makeCharacter(
  10415. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10416. {
  10417. front: {
  10418. height: math.unit(6, "feet"),
  10419. weight: math.unit(150, "lb"),
  10420. name: "Front",
  10421. image: {
  10422. source: "./media/characters/judio/front.svg",
  10423. extra: 1258 / 1110
  10424. }
  10425. },
  10426. },
  10427. [
  10428. {
  10429. name: "Normal",
  10430. height: math.unit(5 + 6 / 12, "feet")
  10431. },
  10432. {
  10433. name: "Macro",
  10434. height: math.unit(1000, "feet"),
  10435. default: true
  10436. },
  10437. {
  10438. name: "Megamacro",
  10439. height: math.unit(10, "miles")
  10440. },
  10441. ]
  10442. ))
  10443. characterMakers.push(() => makeCharacter(
  10444. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10445. {
  10446. front: {
  10447. height: math.unit(6, "feet"),
  10448. weight: math.unit(68, "kg"),
  10449. name: "Front",
  10450. image: {
  10451. source: "./media/characters/nomaxice/front.svg",
  10452. extra: 1498 / 1073,
  10453. bottom: 0.075
  10454. }
  10455. },
  10456. foot: {
  10457. height: math.unit(1.1, "feet"),
  10458. name: "Foot",
  10459. image: {
  10460. source: "./media/characters/nomaxice/foot.svg"
  10461. }
  10462. },
  10463. },
  10464. [
  10465. {
  10466. name: "Micro",
  10467. height: math.unit(8, "cm")
  10468. },
  10469. {
  10470. name: "Norm",
  10471. height: math.unit(1.82, "m")
  10472. },
  10473. {
  10474. name: "Norm+",
  10475. height: math.unit(8.8, "feet")
  10476. },
  10477. {
  10478. name: "Big",
  10479. height: math.unit(8, "meters"),
  10480. default: true
  10481. },
  10482. {
  10483. name: "Macro",
  10484. height: math.unit(18, "meters")
  10485. },
  10486. {
  10487. name: "Macro+",
  10488. height: math.unit(88, "meters")
  10489. },
  10490. ]
  10491. ))
  10492. characterMakers.push(() => makeCharacter(
  10493. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10494. {
  10495. front: {
  10496. height: math.unit(12, "feet"),
  10497. weight: math.unit(1.5, "tons"),
  10498. name: "Front",
  10499. image: {
  10500. source: "./media/characters/dydros/front.svg",
  10501. extra: 863 / 800,
  10502. bottom: 0.015
  10503. }
  10504. },
  10505. back: {
  10506. height: math.unit(12, "feet"),
  10507. weight: math.unit(1.5, "tons"),
  10508. name: "Back",
  10509. image: {
  10510. source: "./media/characters/dydros/back.svg",
  10511. extra: 900 / 843,
  10512. bottom: 0.005
  10513. }
  10514. },
  10515. },
  10516. [
  10517. {
  10518. name: "Normal",
  10519. height: math.unit(12, "feet"),
  10520. default: true
  10521. },
  10522. ]
  10523. ))
  10524. characterMakers.push(() => makeCharacter(
  10525. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10526. {
  10527. front: {
  10528. height: math.unit(6, "feet"),
  10529. weight: math.unit(100, "kg"),
  10530. name: "Front",
  10531. image: {
  10532. source: "./media/characters/riggi/front.svg",
  10533. extra: 5787 / 5303
  10534. }
  10535. },
  10536. hyper: {
  10537. height: math.unit(6 * 5 / 3, "feet"),
  10538. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10539. name: "Hyper",
  10540. image: {
  10541. source: "./media/characters/riggi/hyper.svg",
  10542. extra: 3595 / 3485
  10543. }
  10544. },
  10545. },
  10546. [
  10547. {
  10548. name: "Small Macro",
  10549. height: math.unit(50, "feet")
  10550. },
  10551. {
  10552. name: "Default",
  10553. height: math.unit(200, "feet"),
  10554. default: true
  10555. },
  10556. {
  10557. name: "Loom",
  10558. height: math.unit(10000, "feet")
  10559. },
  10560. {
  10561. name: "Cruising Altitude",
  10562. height: math.unit(30000, "feet")
  10563. },
  10564. {
  10565. name: "Megamacro",
  10566. height: math.unit(100, "miles")
  10567. },
  10568. {
  10569. name: "Continent Sized",
  10570. height: math.unit(2800, "miles")
  10571. },
  10572. {
  10573. name: "Earth Sized",
  10574. height: math.unit(8000, "miles")
  10575. },
  10576. ]
  10577. ))
  10578. characterMakers.push(() => makeCharacter(
  10579. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10580. {
  10581. front: {
  10582. height: math.unit(6, "feet"),
  10583. weight: math.unit(250, "lb"),
  10584. name: "Front",
  10585. image: {
  10586. source: "./media/characters/alexi/front.svg",
  10587. extra: 3483 / 3291,
  10588. bottom: 0.04
  10589. }
  10590. },
  10591. back: {
  10592. height: math.unit(6, "feet"),
  10593. weight: math.unit(250, "lb"),
  10594. name: "Back",
  10595. image: {
  10596. source: "./media/characters/alexi/back.svg",
  10597. extra: 3533 / 3356,
  10598. bottom: 0.021
  10599. }
  10600. },
  10601. frontTransforming: {
  10602. height: math.unit(8.58, "feet"),
  10603. weight: math.unit(1300, "lb"),
  10604. name: "Transforming",
  10605. image: {
  10606. source: "./media/characters/alexi/front-transforming.svg",
  10607. extra: 437 / 409,
  10608. bottom: 19 / 458.66
  10609. }
  10610. },
  10611. frontTransformed: {
  10612. height: math.unit(12.5, "feet"),
  10613. weight: math.unit(4000, "lb"),
  10614. name: "Transformed",
  10615. image: {
  10616. source: "./media/characters/alexi/front-transformed.svg",
  10617. extra: 639 / 614,
  10618. bottom: 30.55 / 671
  10619. }
  10620. },
  10621. },
  10622. [
  10623. {
  10624. name: "Normal",
  10625. height: math.unit(14, "feet"),
  10626. default: true
  10627. },
  10628. {
  10629. name: "Minimacro",
  10630. height: math.unit(30, "meters")
  10631. },
  10632. {
  10633. name: "Macro",
  10634. height: math.unit(500, "meters")
  10635. },
  10636. {
  10637. name: "Megamacro",
  10638. height: math.unit(9000, "km")
  10639. },
  10640. {
  10641. name: "Teramacro",
  10642. height: math.unit(384000, "km")
  10643. },
  10644. ]
  10645. ))
  10646. characterMakers.push(() => makeCharacter(
  10647. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10648. {
  10649. front: {
  10650. height: math.unit(6, "feet"),
  10651. weight: math.unit(150, "lb"),
  10652. name: "Front",
  10653. image: {
  10654. source: "./media/characters/kayroo/front.svg",
  10655. extra: 1153 / 1038,
  10656. bottom: 0.06
  10657. }
  10658. },
  10659. foot: {
  10660. height: math.unit(6, "feet"),
  10661. weight: math.unit(150, "lb"),
  10662. name: "Foot",
  10663. image: {
  10664. source: "./media/characters/kayroo/foot.svg"
  10665. }
  10666. },
  10667. },
  10668. [
  10669. {
  10670. name: "Normal",
  10671. height: math.unit(8, "feet"),
  10672. default: true
  10673. },
  10674. {
  10675. name: "Minimacro",
  10676. height: math.unit(250, "feet")
  10677. },
  10678. {
  10679. name: "Macro",
  10680. height: math.unit(2800, "feet")
  10681. },
  10682. {
  10683. name: "Megamacro",
  10684. height: math.unit(5200, "feet")
  10685. },
  10686. {
  10687. name: "Gigamacro",
  10688. height: math.unit(27000, "feet")
  10689. },
  10690. {
  10691. name: "Omega",
  10692. height: math.unit(45000, "feet")
  10693. },
  10694. ]
  10695. ))
  10696. characterMakers.push(() => makeCharacter(
  10697. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10698. {
  10699. front: {
  10700. height: math.unit(18, "feet"),
  10701. weight: math.unit(5800, "lb"),
  10702. name: "Front",
  10703. image: {
  10704. source: "./media/characters/rhys/front.svg",
  10705. extra: 3386 / 3090,
  10706. bottom: 0.07
  10707. }
  10708. },
  10709. },
  10710. [
  10711. {
  10712. name: "Normal",
  10713. height: math.unit(18, "feet"),
  10714. default: true
  10715. },
  10716. {
  10717. name: "Working Size",
  10718. height: math.unit(200, "feet")
  10719. },
  10720. {
  10721. name: "Demolition Size",
  10722. height: math.unit(2000, "feet")
  10723. },
  10724. {
  10725. name: "Maximum Licensed Size",
  10726. height: math.unit(5, "miles")
  10727. },
  10728. {
  10729. name: "Maximum Observed Size",
  10730. height: math.unit(10, "yottameters")
  10731. },
  10732. ]
  10733. ))
  10734. characterMakers.push(() => makeCharacter(
  10735. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10736. {
  10737. front: {
  10738. height: math.unit(6, "feet"),
  10739. weight: math.unit(250, "lb"),
  10740. name: "Front",
  10741. image: {
  10742. source: "./media/characters/toto/front.svg",
  10743. extra: 527 / 479,
  10744. bottom: 0.05
  10745. }
  10746. },
  10747. },
  10748. [
  10749. {
  10750. name: "Micro",
  10751. height: math.unit(3, "feet")
  10752. },
  10753. {
  10754. name: "Normal",
  10755. height: math.unit(10, "feet")
  10756. },
  10757. {
  10758. name: "Macro",
  10759. height: math.unit(150, "feet"),
  10760. default: true
  10761. },
  10762. {
  10763. name: "Megamacro",
  10764. height: math.unit(1200, "feet")
  10765. },
  10766. ]
  10767. ))
  10768. characterMakers.push(() => makeCharacter(
  10769. { name: "King", species: ["lion"], tags: ["anthro"] },
  10770. {
  10771. back: {
  10772. height: math.unit(6, "feet"),
  10773. weight: math.unit(150, "lb"),
  10774. name: "Back",
  10775. image: {
  10776. source: "./media/characters/king/back.svg"
  10777. }
  10778. },
  10779. },
  10780. [
  10781. {
  10782. name: "Micro",
  10783. height: math.unit(2, "inches")
  10784. },
  10785. {
  10786. name: "Normal",
  10787. height: math.unit(8, "feet")
  10788. },
  10789. {
  10790. name: "Macro",
  10791. height: math.unit(200, "feet"),
  10792. default: true
  10793. },
  10794. {
  10795. name: "Megamacro",
  10796. height: math.unit(50, "miles")
  10797. },
  10798. ]
  10799. ))
  10800. characterMakers.push(() => makeCharacter(
  10801. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10802. {
  10803. anthro: {
  10804. height: math.unit(6 + 5 / 12, "feet"),
  10805. weight: math.unit(280, "lb"),
  10806. name: "Anthro",
  10807. image: {
  10808. source: "./media/characters/cordite/anthro.svg",
  10809. extra: 1986 / 1905,
  10810. bottom: 0.025
  10811. }
  10812. },
  10813. feral: {
  10814. height: math.unit(2, "feet"),
  10815. weight: math.unit(90, "lb"),
  10816. name: "Feral",
  10817. image: {
  10818. source: "./media/characters/cordite/feral.svg",
  10819. extra: 1260 / 755,
  10820. bottom: 0.05
  10821. }
  10822. },
  10823. },
  10824. [
  10825. {
  10826. name: "Normal",
  10827. height: math.unit(6 + 5 / 12, "feet"),
  10828. default: true
  10829. },
  10830. ]
  10831. ))
  10832. characterMakers.push(() => makeCharacter(
  10833. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10834. {
  10835. front: {
  10836. height: math.unit(6, "feet"),
  10837. weight: math.unit(150, "lb"),
  10838. name: "Front",
  10839. image: {
  10840. source: "./media/characters/pianostrong/front.svg",
  10841. extra: 6577 / 6254,
  10842. bottom: 0.02
  10843. }
  10844. },
  10845. side: {
  10846. height: math.unit(6, "feet"),
  10847. weight: math.unit(150, "lb"),
  10848. name: "Side",
  10849. image: {
  10850. source: "./media/characters/pianostrong/side.svg",
  10851. extra: 6106 / 5730
  10852. }
  10853. },
  10854. back: {
  10855. height: math.unit(6, "feet"),
  10856. weight: math.unit(150, "lb"),
  10857. name: "Back",
  10858. image: {
  10859. source: "./media/characters/pianostrong/back.svg",
  10860. extra: 6085 / 5733,
  10861. bottom: 0.01
  10862. }
  10863. },
  10864. },
  10865. [
  10866. {
  10867. name: "Macro",
  10868. height: math.unit(100, "feet")
  10869. },
  10870. {
  10871. name: "Macro+",
  10872. height: math.unit(300, "feet"),
  10873. default: true
  10874. },
  10875. {
  10876. name: "Macro++",
  10877. height: math.unit(1000, "feet")
  10878. },
  10879. ]
  10880. ))
  10881. characterMakers.push(() => makeCharacter(
  10882. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10883. {
  10884. front: {
  10885. height: math.unit(6, "feet"),
  10886. weight: math.unit(150, "lb"),
  10887. name: "Front",
  10888. image: {
  10889. source: "./media/characters/kona/front.svg",
  10890. extra: 2960 / 2629,
  10891. bottom: 0.005
  10892. }
  10893. },
  10894. },
  10895. [
  10896. {
  10897. name: "Normal",
  10898. height: math.unit(11 + 8 / 12, "feet")
  10899. },
  10900. {
  10901. name: "Macro",
  10902. height: math.unit(850, "feet"),
  10903. default: true
  10904. },
  10905. {
  10906. name: "Macro+",
  10907. height: math.unit(1.5, "km"),
  10908. default: true
  10909. },
  10910. {
  10911. name: "Megamacro",
  10912. height: math.unit(80, "miles")
  10913. },
  10914. {
  10915. name: "Gigamacro",
  10916. height: math.unit(3500, "miles")
  10917. },
  10918. ]
  10919. ))
  10920. characterMakers.push(() => makeCharacter(
  10921. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10922. {
  10923. side: {
  10924. height: math.unit(1.9, "meters"),
  10925. weight: math.unit(326, "kg"),
  10926. name: "Side",
  10927. image: {
  10928. source: "./media/characters/levi/side.svg",
  10929. extra: 1704 / 1334,
  10930. bottom: 0.02
  10931. }
  10932. },
  10933. },
  10934. [
  10935. {
  10936. name: "Normal",
  10937. height: math.unit(1.9, "meters"),
  10938. default: true
  10939. },
  10940. {
  10941. name: "Macro",
  10942. height: math.unit(20, "meters")
  10943. },
  10944. {
  10945. name: "Macro+",
  10946. height: math.unit(200, "meters")
  10947. },
  10948. {
  10949. name: "Megamacro",
  10950. height: math.unit(2, "km")
  10951. },
  10952. {
  10953. name: "Megamacro+",
  10954. height: math.unit(20, "km")
  10955. },
  10956. {
  10957. name: "Gigamacro",
  10958. height: math.unit(2500, "km")
  10959. },
  10960. {
  10961. name: "Gigamacro+",
  10962. height: math.unit(120000, "km")
  10963. },
  10964. {
  10965. name: "Teramacro",
  10966. height: math.unit(7.77e6, "km")
  10967. },
  10968. ]
  10969. ))
  10970. characterMakers.push(() => makeCharacter(
  10971. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10972. {
  10973. front: {
  10974. height: math.unit(6 + 4 / 12, "feet"),
  10975. weight: math.unit(188, "lb"),
  10976. name: "Front",
  10977. image: {
  10978. source: "./media/characters/bmc/front.svg",
  10979. extra: 1067 / 1022,
  10980. bottom: 0.047
  10981. }
  10982. },
  10983. },
  10984. [
  10985. {
  10986. name: "Human-sized",
  10987. height: math.unit(6 + 4 / 12, "feet")
  10988. },
  10989. {
  10990. name: "Small",
  10991. height: math.unit(250, "feet")
  10992. },
  10993. {
  10994. name: "Normal",
  10995. height: math.unit(1250, "feet"),
  10996. default: true
  10997. },
  10998. {
  10999. name: "Good Day",
  11000. height: math.unit(88, "miles")
  11001. },
  11002. {
  11003. name: "Largest Measured Size",
  11004. height: math.unit(11.2e6, "lightyears")
  11005. },
  11006. ]
  11007. ))
  11008. characterMakers.push(() => makeCharacter(
  11009. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11010. {
  11011. front: {
  11012. height: math.unit(20, "feet"),
  11013. weight: math.unit(2016, "kg"),
  11014. name: "Front",
  11015. image: {
  11016. source: "./media/characters/sven-the-kaiju/front.svg",
  11017. extra: 1479 / 1449,
  11018. bottom: 0.05
  11019. }
  11020. },
  11021. },
  11022. [
  11023. {
  11024. name: "Fairy",
  11025. height: math.unit(6, "inches")
  11026. },
  11027. {
  11028. name: "Normal",
  11029. height: math.unit(20, "feet"),
  11030. default: true
  11031. },
  11032. {
  11033. name: "Rampage",
  11034. height: math.unit(200, "feet")
  11035. },
  11036. {
  11037. name: "Archfey Forest Guardian",
  11038. height: math.unit(1, "mile")
  11039. },
  11040. ]
  11041. ))
  11042. characterMakers.push(() => makeCharacter(
  11043. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11044. {
  11045. front: {
  11046. height: math.unit(4, "meters"),
  11047. weight: math.unit(2, "tons"),
  11048. name: "Front",
  11049. image: {
  11050. source: "./media/characters/marik/front.svg",
  11051. extra: 1057 / 1003,
  11052. bottom: 0.08
  11053. }
  11054. },
  11055. },
  11056. [
  11057. {
  11058. name: "Normal",
  11059. height: math.unit(4, "meters"),
  11060. default: true
  11061. },
  11062. {
  11063. name: "Macro",
  11064. height: math.unit(20, "meters")
  11065. },
  11066. {
  11067. name: "Megamacro",
  11068. height: math.unit(50, "km")
  11069. },
  11070. {
  11071. name: "Gigamacro",
  11072. height: math.unit(100, "km")
  11073. },
  11074. {
  11075. name: "Alpha Macro",
  11076. height: math.unit(7.88e7, "yottameters")
  11077. },
  11078. ]
  11079. ))
  11080. characterMakers.push(() => makeCharacter(
  11081. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11082. {
  11083. front: {
  11084. height: math.unit(6, "feet"),
  11085. weight: math.unit(110, "lb"),
  11086. name: "Front",
  11087. image: {
  11088. source: "./media/characters/mel/front.svg",
  11089. extra: 736 / 617,
  11090. bottom: 0.017
  11091. }
  11092. },
  11093. },
  11094. [
  11095. {
  11096. name: "Pico",
  11097. height: math.unit(3, "pm")
  11098. },
  11099. {
  11100. name: "Nano",
  11101. height: math.unit(3, "nm")
  11102. },
  11103. {
  11104. name: "Micro",
  11105. height: math.unit(0.3, "mm"),
  11106. default: true
  11107. },
  11108. {
  11109. name: "Micro+",
  11110. height: math.unit(3, "mm")
  11111. },
  11112. {
  11113. name: "Normal",
  11114. height: math.unit(5 + 10.5 / 12, "feet")
  11115. },
  11116. ]
  11117. ))
  11118. characterMakers.push(() => makeCharacter(
  11119. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11120. {
  11121. kaiju: {
  11122. height: math.unit(1.75, "meters"),
  11123. weight: math.unit(55, "kg"),
  11124. name: "Kaiju",
  11125. image: {
  11126. source: "./media/characters/lykonous/kaiju.svg",
  11127. extra: 1055 / 946,
  11128. bottom: 0.135
  11129. }
  11130. },
  11131. },
  11132. [
  11133. {
  11134. name: "Normal",
  11135. height: math.unit(2.5, "meters"),
  11136. default: true
  11137. },
  11138. {
  11139. name: "Kaiju Dragon",
  11140. height: math.unit(60, "meters")
  11141. },
  11142. {
  11143. name: "Mega Kaiju",
  11144. height: math.unit(120, "km")
  11145. },
  11146. {
  11147. name: "Giga Kaiju",
  11148. height: math.unit(200, "megameters")
  11149. },
  11150. {
  11151. name: "Terra Kaiju",
  11152. height: math.unit(400, "gigameters")
  11153. },
  11154. {
  11155. name: "Kaiju Dragon God",
  11156. height: math.unit(13000, "exaparsecs")
  11157. },
  11158. ]
  11159. ))
  11160. characterMakers.push(() => makeCharacter(
  11161. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11162. {
  11163. front: {
  11164. height: math.unit(6, "feet"),
  11165. weight: math.unit(150, "lb"),
  11166. name: "Front",
  11167. image: {
  11168. source: "./media/characters/blü/front.svg",
  11169. extra: 1883 / 1564,
  11170. bottom: 0.031
  11171. }
  11172. },
  11173. },
  11174. [
  11175. {
  11176. name: "Normal",
  11177. height: math.unit(13, "feet"),
  11178. default: true
  11179. },
  11180. {
  11181. name: "Big Boi",
  11182. height: math.unit(150, "meters")
  11183. },
  11184. {
  11185. name: "Mini Stomper",
  11186. height: math.unit(300, "meters")
  11187. },
  11188. {
  11189. name: "Macro",
  11190. height: math.unit(1000, "meters")
  11191. },
  11192. {
  11193. name: "Megamacro",
  11194. height: math.unit(11000, "meters")
  11195. },
  11196. {
  11197. name: "Gigamacro",
  11198. height: math.unit(11000, "km")
  11199. },
  11200. {
  11201. name: "Teramacro",
  11202. height: math.unit(420000, "km")
  11203. },
  11204. {
  11205. name: "Examacro",
  11206. height: math.unit(120, "parsecs")
  11207. },
  11208. {
  11209. name: "God Tho",
  11210. height: math.unit(98000000000, "parsecs")
  11211. },
  11212. ]
  11213. ))
  11214. characterMakers.push(() => makeCharacter(
  11215. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11216. {
  11217. taurFront: {
  11218. height: math.unit(6, "feet"),
  11219. weight: math.unit(200, "lb"),
  11220. name: "Taur (Front)",
  11221. image: {
  11222. source: "./media/characters/scales/taur-front.svg",
  11223. extra: 1,
  11224. bottom: 0.05
  11225. }
  11226. },
  11227. taurBack: {
  11228. height: math.unit(6, "feet"),
  11229. weight: math.unit(200, "lb"),
  11230. name: "Taur (Back)",
  11231. image: {
  11232. source: "./media/characters/scales/taur-back.svg",
  11233. extra: 1,
  11234. bottom: 0.08
  11235. }
  11236. },
  11237. anthro: {
  11238. height: math.unit(6 * 7 / 12, "feet"),
  11239. weight: math.unit(100, "lb"),
  11240. name: "Anthro",
  11241. image: {
  11242. source: "./media/characters/scales/anthro.svg",
  11243. extra: 1,
  11244. bottom: 0.06
  11245. }
  11246. },
  11247. },
  11248. [
  11249. {
  11250. name: "Normal",
  11251. height: math.unit(12, "feet"),
  11252. default: true
  11253. },
  11254. ]
  11255. ))
  11256. characterMakers.push(() => makeCharacter(
  11257. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11258. {
  11259. front: {
  11260. height: math.unit(6, "feet"),
  11261. weight: math.unit(150, "lb"),
  11262. name: "Front",
  11263. image: {
  11264. source: "./media/characters/koragos/front.svg",
  11265. extra: 841 / 794,
  11266. bottom: 0.035
  11267. }
  11268. },
  11269. back: {
  11270. height: math.unit(6, "feet"),
  11271. weight: math.unit(150, "lb"),
  11272. name: "Back",
  11273. image: {
  11274. source: "./media/characters/koragos/back.svg",
  11275. extra: 841 / 810,
  11276. bottom: 0.022
  11277. }
  11278. },
  11279. },
  11280. [
  11281. {
  11282. name: "Normal",
  11283. height: math.unit(6 + 11 / 12, "feet"),
  11284. default: true
  11285. },
  11286. {
  11287. name: "Macro",
  11288. height: math.unit(490, "feet")
  11289. },
  11290. {
  11291. name: "Megamacro",
  11292. height: math.unit(10, "miles")
  11293. },
  11294. {
  11295. name: "Gigamacro",
  11296. height: math.unit(50, "miles")
  11297. },
  11298. ]
  11299. ))
  11300. characterMakers.push(() => makeCharacter(
  11301. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11302. {
  11303. front: {
  11304. height: math.unit(6, "feet"),
  11305. weight: math.unit(250, "lb"),
  11306. name: "Front",
  11307. image: {
  11308. source: "./media/characters/xylrem/front.svg",
  11309. extra: 3323 / 3050,
  11310. bottom: 0.065
  11311. }
  11312. },
  11313. },
  11314. [
  11315. {
  11316. name: "Micro",
  11317. height: math.unit(4, "feet")
  11318. },
  11319. {
  11320. name: "Normal",
  11321. height: math.unit(16, "feet"),
  11322. default: true
  11323. },
  11324. {
  11325. name: "Macro",
  11326. height: math.unit(2720, "feet")
  11327. },
  11328. {
  11329. name: "Megamacro",
  11330. height: math.unit(25000, "miles")
  11331. },
  11332. ]
  11333. ))
  11334. characterMakers.push(() => makeCharacter(
  11335. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11336. {
  11337. front: {
  11338. height: math.unit(8, "feet"),
  11339. weight: math.unit(250, "kg"),
  11340. name: "Front",
  11341. image: {
  11342. source: "./media/characters/ikideru/front.svg",
  11343. extra: 930 / 870,
  11344. bottom: 0.087
  11345. }
  11346. },
  11347. back: {
  11348. height: math.unit(8, "feet"),
  11349. weight: math.unit(250, "kg"),
  11350. name: "Back",
  11351. image: {
  11352. source: "./media/characters/ikideru/back.svg",
  11353. extra: 919 / 852,
  11354. bottom: 0.055
  11355. }
  11356. },
  11357. },
  11358. [
  11359. {
  11360. name: "Rare",
  11361. height: math.unit(8, "feet"),
  11362. default: true
  11363. },
  11364. {
  11365. name: "Playful Loom",
  11366. height: math.unit(80, "feet")
  11367. },
  11368. {
  11369. name: "City Leaner",
  11370. height: math.unit(230, "feet")
  11371. },
  11372. {
  11373. name: "Megamacro",
  11374. height: math.unit(2500, "feet")
  11375. },
  11376. {
  11377. name: "Gigamacro",
  11378. height: math.unit(26400, "feet")
  11379. },
  11380. {
  11381. name: "Tectonic Shifter",
  11382. height: math.unit(1.7, "megameters")
  11383. },
  11384. {
  11385. name: "Planet Carer",
  11386. height: math.unit(21, "megameters")
  11387. },
  11388. {
  11389. name: "God",
  11390. height: math.unit(11157.22, "parsecs")
  11391. },
  11392. ]
  11393. ))
  11394. characterMakers.push(() => makeCharacter(
  11395. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11396. {
  11397. front: {
  11398. height: math.unit(6, "feet"),
  11399. weight: math.unit(120, "lb"),
  11400. name: "Front",
  11401. image: {
  11402. source: "./media/characters/neo/front.svg"
  11403. }
  11404. },
  11405. },
  11406. [
  11407. {
  11408. name: "Micro",
  11409. height: math.unit(2, "inches"),
  11410. default: true
  11411. },
  11412. {
  11413. name: "Human Size",
  11414. height: math.unit(5 + 8 / 12, "feet")
  11415. },
  11416. ]
  11417. ))
  11418. characterMakers.push(() => makeCharacter(
  11419. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11420. {
  11421. front: {
  11422. height: math.unit(13 + 10 / 12, "feet"),
  11423. weight: math.unit(5320, "lb"),
  11424. name: "Front",
  11425. image: {
  11426. source: "./media/characters/chauncey-chantz/front.svg",
  11427. extra: 1587 / 1435,
  11428. bottom: 0.02
  11429. }
  11430. },
  11431. },
  11432. [
  11433. {
  11434. name: "Normal",
  11435. height: math.unit(13 + 10 / 12, "feet"),
  11436. default: true
  11437. },
  11438. {
  11439. name: "Macro",
  11440. height: math.unit(45, "feet")
  11441. },
  11442. {
  11443. name: "Megamacro",
  11444. height: math.unit(250, "miles")
  11445. },
  11446. {
  11447. name: "Planetary",
  11448. height: math.unit(10000, "miles")
  11449. },
  11450. {
  11451. name: "Galactic",
  11452. height: math.unit(40000, "parsecs")
  11453. },
  11454. {
  11455. name: "Universal",
  11456. height: math.unit(1, "yottameter")
  11457. },
  11458. ]
  11459. ))
  11460. characterMakers.push(() => makeCharacter(
  11461. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11462. {
  11463. front: {
  11464. height: math.unit(6, "feet"),
  11465. weight: math.unit(150, "lb"),
  11466. name: "Front",
  11467. image: {
  11468. source: "./media/characters/epifox/front.svg",
  11469. extra: 1,
  11470. bottom: 0.075
  11471. }
  11472. },
  11473. },
  11474. [
  11475. {
  11476. name: "Micro",
  11477. height: math.unit(6, "inches")
  11478. },
  11479. {
  11480. name: "Normal",
  11481. height: math.unit(12, "feet"),
  11482. default: true
  11483. },
  11484. {
  11485. name: "Macro",
  11486. height: math.unit(3810, "feet")
  11487. },
  11488. {
  11489. name: "Megamacro",
  11490. height: math.unit(500, "miles")
  11491. },
  11492. ]
  11493. ))
  11494. characterMakers.push(() => makeCharacter(
  11495. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11496. {
  11497. front: {
  11498. height: math.unit(1.8796, "m"),
  11499. weight: math.unit(230, "lb"),
  11500. name: "Front",
  11501. image: {
  11502. source: "./media/characters/colin-t/front.svg",
  11503. extra: 1272 / 1193,
  11504. bottom: 0.07
  11505. }
  11506. },
  11507. },
  11508. [
  11509. {
  11510. name: "Micro",
  11511. height: math.unit(0.571, "meters")
  11512. },
  11513. {
  11514. name: "Normal",
  11515. height: math.unit(1.8796, "meters"),
  11516. default: true
  11517. },
  11518. {
  11519. name: "Tall",
  11520. height: math.unit(4, "meters")
  11521. },
  11522. {
  11523. name: "Macro",
  11524. height: math.unit(67.241, "meters")
  11525. },
  11526. {
  11527. name: "Megamacro",
  11528. height: math.unit(371.856, "meters")
  11529. },
  11530. {
  11531. name: "Planetary",
  11532. height: math.unit(12631.5689, "km")
  11533. },
  11534. ]
  11535. ))
  11536. characterMakers.push(() => makeCharacter(
  11537. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11538. {
  11539. front: {
  11540. height: math.unit(1.85, "meters"),
  11541. weight: math.unit(80, "kg"),
  11542. name: "Front",
  11543. image: {
  11544. source: "./media/characters/matvei/front.svg",
  11545. extra: 614 / 594,
  11546. bottom: 0.01
  11547. }
  11548. },
  11549. },
  11550. [
  11551. {
  11552. name: "Normal",
  11553. height: math.unit(1.85, "meters"),
  11554. default: true
  11555. },
  11556. ]
  11557. ))
  11558. characterMakers.push(() => makeCharacter(
  11559. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11560. {
  11561. front: {
  11562. height: math.unit(5 + 9 / 12, "feet"),
  11563. weight: math.unit(70, "lb"),
  11564. name: "Front",
  11565. image: {
  11566. source: "./media/characters/quincy/front.svg",
  11567. extra: 3041 / 2751
  11568. }
  11569. },
  11570. back: {
  11571. height: math.unit(5 + 9 / 12, "feet"),
  11572. weight: math.unit(70, "lb"),
  11573. name: "Back",
  11574. image: {
  11575. source: "./media/characters/quincy/back.svg",
  11576. extra: 3041 / 2751
  11577. }
  11578. },
  11579. flying: {
  11580. height: math.unit(5 + 4 / 12, "feet"),
  11581. weight: math.unit(70, "lb"),
  11582. name: "Flying",
  11583. image: {
  11584. source: "./media/characters/quincy/flying.svg",
  11585. extra: 1044 / 930
  11586. }
  11587. },
  11588. },
  11589. [
  11590. {
  11591. name: "Micro",
  11592. height: math.unit(3, "cm")
  11593. },
  11594. {
  11595. name: "Normal",
  11596. height: math.unit(5 + 9 / 12, "feet")
  11597. },
  11598. {
  11599. name: "Macro",
  11600. height: math.unit(200, "meters"),
  11601. default: true
  11602. },
  11603. {
  11604. name: "Megamacro",
  11605. height: math.unit(1000, "meters")
  11606. },
  11607. ]
  11608. ))
  11609. characterMakers.push(() => makeCharacter(
  11610. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11611. {
  11612. front: {
  11613. height: math.unit(4 + 7 / 12, "feet"),
  11614. weight: math.unit(50, "lb"),
  11615. name: "Front",
  11616. image: {
  11617. source: "./media/characters/vanrel/front.svg",
  11618. extra: 1,
  11619. bottom: 0.02
  11620. }
  11621. },
  11622. frontAlt: {
  11623. height: math.unit(4 + 7 / 12, "feet"),
  11624. weight: math.unit(50, "lb"),
  11625. name: "Front-alt",
  11626. image: {
  11627. source: "./media/characters/vanrel/front-alt.svg",
  11628. extra: 1,
  11629. bottom: 15 / 1511
  11630. }
  11631. },
  11632. elemental: {
  11633. height: math.unit(3, "feet"),
  11634. weight: math.unit(50, "lb"),
  11635. name: "Elemental",
  11636. image: {
  11637. source: "./media/characters/vanrel/elemental.svg",
  11638. extra: 192.3 / 162.8,
  11639. bottom: 1.79 / 194.17
  11640. }
  11641. },
  11642. side: {
  11643. height: math.unit(4 + 7 / 12, "feet"),
  11644. weight: math.unit(50, "lb"),
  11645. name: "Side",
  11646. image: {
  11647. source: "./media/characters/vanrel/side.svg",
  11648. extra: 1,
  11649. bottom: 0.025
  11650. }
  11651. },
  11652. tome: {
  11653. height: math.unit(1.35, "feet"),
  11654. weight: math.unit(10, "lb"),
  11655. name: "Vanrel's Tome",
  11656. rename: true,
  11657. image: {
  11658. source: "./media/characters/vanrel/tome.svg"
  11659. }
  11660. },
  11661. beans: {
  11662. height: math.unit(0.89, "feet"),
  11663. name: "Beans",
  11664. image: {
  11665. source: "./media/characters/vanrel/beans.svg"
  11666. }
  11667. },
  11668. },
  11669. [
  11670. {
  11671. name: "Normal",
  11672. height: math.unit(4 + 7 / 12, "feet"),
  11673. default: true
  11674. },
  11675. ]
  11676. ))
  11677. characterMakers.push(() => makeCharacter(
  11678. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11679. {
  11680. front: {
  11681. height: math.unit(7 + 5 / 12, "feet"),
  11682. weight: math.unit(150, "lb"),
  11683. name: "Front",
  11684. image: {
  11685. source: "./media/characters/kuiper-vanrel/front.svg",
  11686. extra: 1118 / 1068,
  11687. bottom: 0.09
  11688. }
  11689. },
  11690. foot: {
  11691. height: math.unit(0.55, "meters"),
  11692. name: "Foot",
  11693. image: {
  11694. source: "./media/characters/kuiper-vanrel/foot.svg",
  11695. }
  11696. },
  11697. battle: {
  11698. height: math.unit(6.824, "feet"),
  11699. weight: math.unit(150, "lb"),
  11700. name: "Battle",
  11701. image: {
  11702. source: "./media/characters/kuiper-vanrel/battle.svg",
  11703. extra: 1466 / 1327,
  11704. bottom: 29 / 1492.5
  11705. }
  11706. },
  11707. battleAlt: {
  11708. height: math.unit(6.824, "feet"),
  11709. weight: math.unit(150, "lb"),
  11710. name: "Battle (Alt)",
  11711. image: {
  11712. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11713. extra: 2081 / 1965,
  11714. bottom: 40 / 2121
  11715. }
  11716. },
  11717. },
  11718. [
  11719. {
  11720. name: "Normal",
  11721. height: math.unit(7 + 5 / 12, "feet"),
  11722. default: true
  11723. },
  11724. ]
  11725. ))
  11726. characterMakers.push(() => makeCharacter(
  11727. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11728. {
  11729. front: {
  11730. height: math.unit(8 + 5 / 12, "feet"),
  11731. weight: math.unit(150, "lb"),
  11732. name: "Front",
  11733. image: {
  11734. source: "./media/characters/keset-vanrel/front.svg",
  11735. extra: 1150 / 1084,
  11736. bottom: 0.05
  11737. }
  11738. },
  11739. hand: {
  11740. height: math.unit(0.6, "meters"),
  11741. name: "Hand",
  11742. image: {
  11743. source: "./media/characters/keset-vanrel/hand.svg"
  11744. }
  11745. },
  11746. foot: {
  11747. height: math.unit(0.94978, "meters"),
  11748. name: "Foot",
  11749. image: {
  11750. source: "./media/characters/keset-vanrel/foot.svg"
  11751. }
  11752. },
  11753. battle: {
  11754. height: math.unit(7.408, "feet"),
  11755. weight: math.unit(150, "lb"),
  11756. name: "Battle",
  11757. image: {
  11758. source: "./media/characters/keset-vanrel/battle.svg",
  11759. extra: 1890 / 1386,
  11760. bottom: 73.28 / 1970
  11761. }
  11762. },
  11763. },
  11764. [
  11765. {
  11766. name: "Normal",
  11767. height: math.unit(8 + 5 / 12, "feet"),
  11768. default: true
  11769. },
  11770. ]
  11771. ))
  11772. characterMakers.push(() => makeCharacter(
  11773. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11774. {
  11775. front: {
  11776. height: math.unit(6, "feet"),
  11777. weight: math.unit(150, "lb"),
  11778. name: "Front",
  11779. image: {
  11780. source: "./media/characters/neos/front.svg",
  11781. extra: 1696 / 992,
  11782. bottom: 0.14
  11783. }
  11784. },
  11785. },
  11786. [
  11787. {
  11788. name: "Normal",
  11789. height: math.unit(54, "cm"),
  11790. default: true
  11791. },
  11792. {
  11793. name: "Macro",
  11794. height: math.unit(100, "m")
  11795. },
  11796. {
  11797. name: "Megamacro",
  11798. height: math.unit(10, "km")
  11799. },
  11800. {
  11801. name: "Megamacro+",
  11802. height: math.unit(100, "km")
  11803. },
  11804. {
  11805. name: "Gigamacro",
  11806. height: math.unit(100, "Mm")
  11807. },
  11808. {
  11809. name: "Teramacro",
  11810. height: math.unit(100, "Gm")
  11811. },
  11812. {
  11813. name: "Examacro",
  11814. height: math.unit(100, "Em")
  11815. },
  11816. {
  11817. name: "Godly",
  11818. height: math.unit(10000, "Ym")
  11819. },
  11820. {
  11821. name: "Beyond Godly",
  11822. height: math.unit(25, "multiverses")
  11823. },
  11824. ]
  11825. ))
  11826. characterMakers.push(() => makeCharacter(
  11827. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11828. {
  11829. feminine: {
  11830. height: math.unit(5, "feet"),
  11831. weight: math.unit(100, "lb"),
  11832. name: "Feminine",
  11833. image: {
  11834. source: "./media/characters/sammy-mouse/feminine.svg",
  11835. extra: 2526 / 2425,
  11836. bottom: 0.123
  11837. }
  11838. },
  11839. masculine: {
  11840. height: math.unit(5, "feet"),
  11841. weight: math.unit(100, "lb"),
  11842. name: "Masculine",
  11843. image: {
  11844. source: "./media/characters/sammy-mouse/masculine.svg",
  11845. extra: 2526 / 2425,
  11846. bottom: 0.123
  11847. }
  11848. },
  11849. },
  11850. [
  11851. {
  11852. name: "Micro",
  11853. height: math.unit(5, "inches")
  11854. },
  11855. {
  11856. name: "Normal",
  11857. height: math.unit(5, "feet"),
  11858. default: true
  11859. },
  11860. {
  11861. name: "Macro",
  11862. height: math.unit(60, "feet")
  11863. },
  11864. ]
  11865. ))
  11866. characterMakers.push(() => makeCharacter(
  11867. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11868. {
  11869. front: {
  11870. height: math.unit(4, "feet"),
  11871. weight: math.unit(50, "lb"),
  11872. name: "Front",
  11873. image: {
  11874. source: "./media/characters/kole/front.svg",
  11875. extra: 1423 / 1303,
  11876. bottom: 0.025
  11877. }
  11878. },
  11879. back: {
  11880. height: math.unit(4, "feet"),
  11881. weight: math.unit(50, "lb"),
  11882. name: "Back",
  11883. image: {
  11884. source: "./media/characters/kole/back.svg",
  11885. extra: 1426 / 1280,
  11886. bottom: 0.02
  11887. }
  11888. },
  11889. },
  11890. [
  11891. {
  11892. name: "Normal",
  11893. height: math.unit(4, "feet"),
  11894. default: true
  11895. },
  11896. ]
  11897. ))
  11898. characterMakers.push(() => makeCharacter(
  11899. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11900. {
  11901. front: {
  11902. height: math.unit(2 + 6 / 12, "feet"),
  11903. weight: math.unit(20, "lb"),
  11904. name: "Front",
  11905. image: {
  11906. source: "./media/characters/rufran/front.svg",
  11907. extra: 2041 / 1839,
  11908. bottom: 0.055
  11909. }
  11910. },
  11911. back: {
  11912. height: math.unit(2 + 6 / 12, "feet"),
  11913. weight: math.unit(20, "lb"),
  11914. name: "Back",
  11915. image: {
  11916. source: "./media/characters/rufran/back.svg",
  11917. extra: 2054 / 1839,
  11918. bottom: 0.01
  11919. }
  11920. },
  11921. hand: {
  11922. height: math.unit(0.2166, "meters"),
  11923. name: "Hand",
  11924. image: {
  11925. source: "./media/characters/rufran/hand.svg"
  11926. }
  11927. },
  11928. foot: {
  11929. height: math.unit(0.185, "meters"),
  11930. name: "Foot",
  11931. image: {
  11932. source: "./media/characters/rufran/foot.svg"
  11933. }
  11934. },
  11935. },
  11936. [
  11937. {
  11938. name: "Micro",
  11939. height: math.unit(1, "inch")
  11940. },
  11941. {
  11942. name: "Normal",
  11943. height: math.unit(2 + 6 / 12, "feet"),
  11944. default: true
  11945. },
  11946. {
  11947. name: "Big",
  11948. height: math.unit(60, "feet")
  11949. },
  11950. {
  11951. name: "Macro",
  11952. height: math.unit(325, "feet")
  11953. },
  11954. ]
  11955. ))
  11956. characterMakers.push(() => makeCharacter(
  11957. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11958. {
  11959. front: {
  11960. height: math.unit(0.3, "meters"),
  11961. weight: math.unit(3.5, "kg"),
  11962. name: "Front",
  11963. image: {
  11964. source: "./media/characters/chip/front.svg",
  11965. extra: 748 / 674
  11966. }
  11967. },
  11968. },
  11969. [
  11970. {
  11971. name: "Micro",
  11972. height: math.unit(1, "inch"),
  11973. default: true
  11974. },
  11975. ]
  11976. ))
  11977. characterMakers.push(() => makeCharacter(
  11978. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11979. {
  11980. side: {
  11981. height: math.unit(2.3, "meters"),
  11982. weight: math.unit(3500, "lb"),
  11983. name: "Side",
  11984. image: {
  11985. source: "./media/characters/torvid/side.svg",
  11986. extra: 1972 / 722,
  11987. bottom: 0.035
  11988. }
  11989. },
  11990. },
  11991. [
  11992. {
  11993. name: "Normal",
  11994. height: math.unit(2.3, "meters"),
  11995. default: true
  11996. },
  11997. ]
  11998. ))
  11999. characterMakers.push(() => makeCharacter(
  12000. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12001. {
  12002. front: {
  12003. height: math.unit(2, "meters"),
  12004. weight: math.unit(150.5, "kg"),
  12005. name: "Front",
  12006. image: {
  12007. source: "./media/characters/susan/front.svg",
  12008. extra: 693 / 635,
  12009. bottom: 0.05
  12010. }
  12011. },
  12012. },
  12013. [
  12014. {
  12015. name: "Megamacro",
  12016. height: math.unit(505, "miles"),
  12017. default: true
  12018. },
  12019. ]
  12020. ))
  12021. characterMakers.push(() => makeCharacter(
  12022. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12023. {
  12024. front: {
  12025. height: math.unit(6, "feet"),
  12026. weight: math.unit(150, "lb"),
  12027. name: "Front",
  12028. image: {
  12029. source: "./media/characters/raindrops/front.svg",
  12030. extra: 2655 / 2461,
  12031. bottom: 49 / 2705
  12032. }
  12033. },
  12034. back: {
  12035. height: math.unit(6, "feet"),
  12036. weight: math.unit(150, "lb"),
  12037. name: "Back",
  12038. image: {
  12039. source: "./media/characters/raindrops/back.svg",
  12040. extra: 2574 / 2400,
  12041. bottom: 65 / 2634
  12042. }
  12043. },
  12044. },
  12045. [
  12046. {
  12047. name: "Micro",
  12048. height: math.unit(6, "inches")
  12049. },
  12050. {
  12051. name: "Normal",
  12052. height: math.unit(6 + 2 / 12, "feet")
  12053. },
  12054. {
  12055. name: "Macro",
  12056. height: math.unit(131, "feet"),
  12057. default: true
  12058. },
  12059. {
  12060. name: "Megamacro",
  12061. height: math.unit(15, "miles")
  12062. },
  12063. {
  12064. name: "Gigamacro",
  12065. height: math.unit(4000, "miles")
  12066. },
  12067. {
  12068. name: "Teramacro",
  12069. height: math.unit(315000, "miles")
  12070. },
  12071. ]
  12072. ))
  12073. characterMakers.push(() => makeCharacter(
  12074. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12075. {
  12076. front: {
  12077. height: math.unit(2.794, "meters"),
  12078. weight: math.unit(325, "kg"),
  12079. name: "Front",
  12080. image: {
  12081. source: "./media/characters/tezwa/front.svg",
  12082. extra: 2083 / 1906,
  12083. bottom: 0.031
  12084. }
  12085. },
  12086. foot: {
  12087. height: math.unit(0.687, "meters"),
  12088. name: "Foot",
  12089. image: {
  12090. source: "./media/characters/tezwa/foot.svg"
  12091. }
  12092. },
  12093. },
  12094. [
  12095. {
  12096. name: "Normal",
  12097. height: math.unit(9 + 2 / 12, "feet"),
  12098. default: true
  12099. },
  12100. ]
  12101. ))
  12102. characterMakers.push(() => makeCharacter(
  12103. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12104. {
  12105. front: {
  12106. height: math.unit(58, "feet"),
  12107. weight: math.unit(89000, "lb"),
  12108. name: "Front",
  12109. image: {
  12110. source: "./media/characters/typhus/front.svg",
  12111. extra: 816 / 800,
  12112. bottom: 0.065
  12113. }
  12114. },
  12115. },
  12116. [
  12117. {
  12118. name: "Macro",
  12119. height: math.unit(58, "feet"),
  12120. default: true
  12121. },
  12122. ]
  12123. ))
  12124. characterMakers.push(() => makeCharacter(
  12125. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12126. {
  12127. front: {
  12128. height: math.unit(12, "feet"),
  12129. weight: math.unit(6, "tonnes"),
  12130. name: "Front",
  12131. image: {
  12132. source: "./media/characters/lyra-von-wulf/front.svg",
  12133. extra: 1,
  12134. bottom: 0.10
  12135. }
  12136. },
  12137. frontMecha: {
  12138. height: math.unit(12, "feet"),
  12139. weight: math.unit(12, "tonnes"),
  12140. name: "Front (Mecha)",
  12141. image: {
  12142. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12143. extra: 1,
  12144. bottom: 0.042
  12145. }
  12146. },
  12147. maw: {
  12148. height: math.unit(2.2, "feet"),
  12149. name: "Maw",
  12150. image: {
  12151. source: "./media/characters/lyra-von-wulf/maw.svg"
  12152. }
  12153. },
  12154. },
  12155. [
  12156. {
  12157. name: "Normal",
  12158. height: math.unit(12, "feet"),
  12159. default: true
  12160. },
  12161. {
  12162. name: "Classic",
  12163. height: math.unit(50, "feet")
  12164. },
  12165. {
  12166. name: "Macro",
  12167. height: math.unit(500, "feet")
  12168. },
  12169. {
  12170. name: "Megamacro",
  12171. height: math.unit(1, "mile")
  12172. },
  12173. {
  12174. name: "Gigamacro",
  12175. height: math.unit(400, "miles")
  12176. },
  12177. {
  12178. name: "Teramacro",
  12179. height: math.unit(22000, "miles")
  12180. },
  12181. {
  12182. name: "Solarmacro",
  12183. height: math.unit(8600000, "miles")
  12184. },
  12185. {
  12186. name: "Galactic",
  12187. height: math.unit(1057000, "lightyears")
  12188. },
  12189. ]
  12190. ))
  12191. characterMakers.push(() => makeCharacter(
  12192. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12193. {
  12194. front: {
  12195. height: math.unit(6 + 10 / 12, "feet"),
  12196. weight: math.unit(150, "lb"),
  12197. name: "Front",
  12198. image: {
  12199. source: "./media/characters/dixon/front.svg",
  12200. extra: 3361 / 3209,
  12201. bottom: 0.01
  12202. }
  12203. },
  12204. },
  12205. [
  12206. {
  12207. name: "Normal",
  12208. height: math.unit(6 + 10 / 12, "feet"),
  12209. default: true
  12210. },
  12211. {
  12212. name: "Big",
  12213. height: math.unit(12, "meters")
  12214. },
  12215. {
  12216. name: "Macro",
  12217. height: math.unit(500, "meters")
  12218. },
  12219. {
  12220. name: "Megamacro",
  12221. height: math.unit(2, "km")
  12222. },
  12223. ]
  12224. ))
  12225. characterMakers.push(() => makeCharacter(
  12226. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12227. {
  12228. front: {
  12229. height: math.unit(185, "cm"),
  12230. weight: math.unit(68, "kg"),
  12231. name: "Front",
  12232. image: {
  12233. source: "./media/characters/kauko/front.svg",
  12234. extra: 1455 / 1421,
  12235. bottom: 0.03
  12236. }
  12237. },
  12238. back: {
  12239. height: math.unit(185, "cm"),
  12240. weight: math.unit(68, "kg"),
  12241. name: "Back",
  12242. image: {
  12243. source: "./media/characters/kauko/back.svg",
  12244. extra: 1455 / 1421,
  12245. bottom: 0.004
  12246. }
  12247. },
  12248. },
  12249. [
  12250. {
  12251. name: "Normal",
  12252. height: math.unit(185, "cm"),
  12253. default: true
  12254. },
  12255. ]
  12256. ))
  12257. characterMakers.push(() => makeCharacter(
  12258. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12259. {
  12260. front: {
  12261. height: math.unit(6, "feet"),
  12262. weight: math.unit(150, "kg"),
  12263. name: "Front",
  12264. image: {
  12265. source: "./media/characters/varg/front.svg",
  12266. extra: 1108 / 1018,
  12267. bottom: 0.0375
  12268. }
  12269. },
  12270. },
  12271. [
  12272. {
  12273. name: "Normal",
  12274. height: math.unit(5, "meters")
  12275. },
  12276. {
  12277. name: "Macro",
  12278. height: math.unit(200, "meters")
  12279. },
  12280. {
  12281. name: "Megamacro",
  12282. height: math.unit(20, "kilometers")
  12283. },
  12284. {
  12285. name: "True Size",
  12286. height: math.unit(211, "km"),
  12287. default: true
  12288. },
  12289. {
  12290. name: "Gigamacro",
  12291. height: math.unit(1000, "km")
  12292. },
  12293. {
  12294. name: "Gigamacro+",
  12295. height: math.unit(8000, "km")
  12296. },
  12297. {
  12298. name: "Teramacro",
  12299. height: math.unit(1000000, "km")
  12300. },
  12301. ]
  12302. ))
  12303. characterMakers.push(() => makeCharacter(
  12304. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12305. {
  12306. front: {
  12307. height: math.unit(7 + 7 / 12, "feet"),
  12308. weight: math.unit(267, "lb"),
  12309. name: "Front",
  12310. image: {
  12311. source: "./media/characters/dayza/front.svg",
  12312. extra: 1262 / 1200,
  12313. bottom: 0.035
  12314. }
  12315. },
  12316. side: {
  12317. height: math.unit(7 + 7 / 12, "feet"),
  12318. weight: math.unit(267, "lb"),
  12319. name: "Side",
  12320. image: {
  12321. source: "./media/characters/dayza/side.svg",
  12322. extra: 1295 / 1245,
  12323. bottom: 0.05
  12324. }
  12325. },
  12326. back: {
  12327. height: math.unit(7 + 7 / 12, "feet"),
  12328. weight: math.unit(267, "lb"),
  12329. name: "Back",
  12330. image: {
  12331. source: "./media/characters/dayza/back.svg",
  12332. extra: 1241 / 1170
  12333. }
  12334. },
  12335. },
  12336. [
  12337. {
  12338. name: "Normal",
  12339. height: math.unit(7 + 7 / 12, "feet"),
  12340. default: true
  12341. },
  12342. {
  12343. name: "Macro",
  12344. height: math.unit(155, "feet")
  12345. },
  12346. ]
  12347. ))
  12348. characterMakers.push(() => makeCharacter(
  12349. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12350. {
  12351. front: {
  12352. height: math.unit(6 + 5 / 12, "feet"),
  12353. weight: math.unit(160, "lb"),
  12354. name: "Front",
  12355. image: {
  12356. source: "./media/characters/xanthos/front.svg",
  12357. extra: 1,
  12358. bottom: 0.04
  12359. }
  12360. },
  12361. back: {
  12362. height: math.unit(6 + 5 / 12, "feet"),
  12363. weight: math.unit(160, "lb"),
  12364. name: "Back",
  12365. image: {
  12366. source: "./media/characters/xanthos/back.svg",
  12367. extra: 1,
  12368. bottom: 0.03
  12369. }
  12370. },
  12371. hand: {
  12372. height: math.unit(0.928, "feet"),
  12373. name: "Hand",
  12374. image: {
  12375. source: "./media/characters/xanthos/hand.svg"
  12376. }
  12377. },
  12378. foot: {
  12379. height: math.unit(1.286, "feet"),
  12380. name: "Foot",
  12381. image: {
  12382. source: "./media/characters/xanthos/foot.svg"
  12383. }
  12384. },
  12385. },
  12386. [
  12387. {
  12388. name: "Normal",
  12389. height: math.unit(6 + 5 / 12, "feet"),
  12390. default: true
  12391. },
  12392. {
  12393. name: "Normal+",
  12394. height: math.unit(6, "meters")
  12395. },
  12396. {
  12397. name: "Macro",
  12398. height: math.unit(40, "feet")
  12399. },
  12400. {
  12401. name: "Macro+",
  12402. height: math.unit(200, "meters")
  12403. },
  12404. {
  12405. name: "Megamacro",
  12406. height: math.unit(20, "km")
  12407. },
  12408. {
  12409. name: "Megamacro+",
  12410. height: math.unit(100, "km")
  12411. },
  12412. ]
  12413. ))
  12414. characterMakers.push(() => makeCharacter(
  12415. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12416. {
  12417. front: {
  12418. height: math.unit(6 + 3 / 12, "feet"),
  12419. weight: math.unit(215, "lb"),
  12420. name: "Front",
  12421. image: {
  12422. source: "./media/characters/grynn/front.svg",
  12423. extra: 4627 / 4209,
  12424. bottom: 0.047
  12425. }
  12426. },
  12427. },
  12428. [
  12429. {
  12430. name: "Micro",
  12431. height: math.unit(6, "inches")
  12432. },
  12433. {
  12434. name: "Normal",
  12435. height: math.unit(6 + 3 / 12, "feet"),
  12436. default: true
  12437. },
  12438. {
  12439. name: "Big",
  12440. height: math.unit(104, "feet")
  12441. },
  12442. {
  12443. name: "Macro",
  12444. height: math.unit(944, "feet")
  12445. },
  12446. {
  12447. name: "Macro+",
  12448. height: math.unit(9480, "feet")
  12449. },
  12450. {
  12451. name: "Megamacro",
  12452. height: math.unit(78752, "feet")
  12453. },
  12454. {
  12455. name: "Megamacro+",
  12456. height: math.unit(630128, "feet")
  12457. },
  12458. {
  12459. name: "Megamacro++",
  12460. height: math.unit(3150695, "feet")
  12461. },
  12462. ]
  12463. ))
  12464. characterMakers.push(() => makeCharacter(
  12465. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12466. {
  12467. front: {
  12468. height: math.unit(7 + 5 / 12, "feet"),
  12469. weight: math.unit(450, "lb"),
  12470. name: "Front",
  12471. image: {
  12472. source: "./media/characters/mocha-aura/front.svg",
  12473. extra: 1907 / 1817,
  12474. bottom: 0.04
  12475. }
  12476. },
  12477. back: {
  12478. height: math.unit(7 + 5 / 12, "feet"),
  12479. weight: math.unit(450, "lb"),
  12480. name: "Back",
  12481. image: {
  12482. source: "./media/characters/mocha-aura/back.svg",
  12483. extra: 1900 / 1825,
  12484. bottom: 0.045
  12485. }
  12486. },
  12487. },
  12488. [
  12489. {
  12490. name: "Nano",
  12491. height: math.unit(1, "nm")
  12492. },
  12493. {
  12494. name: "Megamicro",
  12495. height: math.unit(1, "mm")
  12496. },
  12497. {
  12498. name: "Micro",
  12499. height: math.unit(3, "inches")
  12500. },
  12501. {
  12502. name: "Normal",
  12503. height: math.unit(7 + 5 / 12, "feet"),
  12504. default: true
  12505. },
  12506. {
  12507. name: "Macro",
  12508. height: math.unit(30, "feet")
  12509. },
  12510. {
  12511. name: "Megamacro",
  12512. height: math.unit(3500, "feet")
  12513. },
  12514. {
  12515. name: "Teramacro",
  12516. height: math.unit(500000, "miles")
  12517. },
  12518. {
  12519. name: "Petamacro",
  12520. height: math.unit(50000000000000000, "parsecs")
  12521. },
  12522. ]
  12523. ))
  12524. characterMakers.push(() => makeCharacter(
  12525. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12526. {
  12527. front: {
  12528. height: math.unit(6, "feet"),
  12529. weight: math.unit(150, "lb"),
  12530. name: "Front",
  12531. image: {
  12532. source: "./media/characters/ilisha-devya/front.svg",
  12533. extra: 1,
  12534. bottom: 0.175
  12535. }
  12536. },
  12537. back: {
  12538. height: math.unit(6, "feet"),
  12539. weight: math.unit(150, "lb"),
  12540. name: "Back",
  12541. image: {
  12542. source: "./media/characters/ilisha-devya/back.svg",
  12543. extra: 1,
  12544. bottom: 0.015
  12545. }
  12546. },
  12547. },
  12548. [
  12549. {
  12550. name: "Macro",
  12551. height: math.unit(500, "feet"),
  12552. default: true
  12553. },
  12554. {
  12555. name: "Megamacro",
  12556. height: math.unit(10, "miles")
  12557. },
  12558. {
  12559. name: "Gigamacro",
  12560. height: math.unit(100000, "miles")
  12561. },
  12562. {
  12563. name: "Examacro",
  12564. height: math.unit(1e9, "lightyears")
  12565. },
  12566. {
  12567. name: "Omniversal",
  12568. height: math.unit(1e33, "lightyears")
  12569. },
  12570. {
  12571. name: "Beyond Infinite",
  12572. height: math.unit(1e100, "lightyears")
  12573. },
  12574. ]
  12575. ))
  12576. characterMakers.push(() => makeCharacter(
  12577. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12578. {
  12579. Side: {
  12580. height: math.unit(6, "feet"),
  12581. weight: math.unit(150, "lb"),
  12582. name: "Side",
  12583. image: {
  12584. source: "./media/characters/mira/side.svg",
  12585. extra: 900 / 799,
  12586. bottom: 0.02
  12587. }
  12588. },
  12589. },
  12590. [
  12591. {
  12592. name: "Human Size",
  12593. height: math.unit(6, "feet")
  12594. },
  12595. {
  12596. name: "Macro",
  12597. height: math.unit(100, "feet"),
  12598. default: true
  12599. },
  12600. {
  12601. name: "Megamacro",
  12602. height: math.unit(10, "miles")
  12603. },
  12604. {
  12605. name: "Gigamacro",
  12606. height: math.unit(25000, "miles")
  12607. },
  12608. {
  12609. name: "Teramacro",
  12610. height: math.unit(300, "AU")
  12611. },
  12612. {
  12613. name: "Full Size",
  12614. height: math.unit(4.5e10, "lightyears")
  12615. },
  12616. ]
  12617. ))
  12618. characterMakers.push(() => makeCharacter(
  12619. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12620. {
  12621. front: {
  12622. height: math.unit(6, "feet"),
  12623. weight: math.unit(150, "lb"),
  12624. name: "Front",
  12625. image: {
  12626. source: "./media/characters/holly/front.svg",
  12627. extra: 639 / 606
  12628. }
  12629. },
  12630. back: {
  12631. height: math.unit(6, "feet"),
  12632. weight: math.unit(150, "lb"),
  12633. name: "Back",
  12634. image: {
  12635. source: "./media/characters/holly/back.svg",
  12636. extra: 623 / 598
  12637. }
  12638. },
  12639. frontWorking: {
  12640. height: math.unit(6, "feet"),
  12641. weight: math.unit(150, "lb"),
  12642. name: "Front (Working)",
  12643. image: {
  12644. source: "./media/characters/holly/front-working.svg",
  12645. extra: 607 / 577,
  12646. bottom: 0.048
  12647. }
  12648. },
  12649. },
  12650. [
  12651. {
  12652. name: "Normal",
  12653. height: math.unit(12 + 3 / 12, "feet"),
  12654. default: true
  12655. },
  12656. ]
  12657. ))
  12658. characterMakers.push(() => makeCharacter(
  12659. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12660. {
  12661. front: {
  12662. height: math.unit(6, "feet"),
  12663. weight: math.unit(150, "lb"),
  12664. name: "Front",
  12665. image: {
  12666. source: "./media/characters/porter/front.svg",
  12667. extra: 1,
  12668. bottom: 0.01
  12669. }
  12670. },
  12671. frontRobes: {
  12672. height: math.unit(6, "feet"),
  12673. weight: math.unit(150, "lb"),
  12674. name: "Front (Robes)",
  12675. image: {
  12676. source: "./media/characters/porter/front-robes.svg",
  12677. extra: 1.01,
  12678. bottom: 0.01
  12679. }
  12680. },
  12681. },
  12682. [
  12683. {
  12684. name: "Normal",
  12685. height: math.unit(11 + 9 / 12, "feet"),
  12686. default: true
  12687. },
  12688. ]
  12689. ))
  12690. characterMakers.push(() => makeCharacter(
  12691. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12692. {
  12693. legendary: {
  12694. height: math.unit(6, "feet"),
  12695. weight: math.unit(150, "lb"),
  12696. name: "Legendary",
  12697. image: {
  12698. source: "./media/characters/lucy/legendary.svg",
  12699. extra: 1355 / 1100,
  12700. bottom: 0.045
  12701. }
  12702. },
  12703. },
  12704. [
  12705. {
  12706. name: "Legendary",
  12707. height: math.unit(86882 * 2, "miles"),
  12708. default: true
  12709. },
  12710. ]
  12711. ))
  12712. characterMakers.push(() => makeCharacter(
  12713. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12714. {
  12715. front: {
  12716. height: math.unit(6, "feet"),
  12717. weight: math.unit(150, "lb"),
  12718. name: "Front",
  12719. image: {
  12720. source: "./media/characters/drusilla/front.svg",
  12721. extra: 678 / 635,
  12722. bottom: 0.03
  12723. }
  12724. },
  12725. back: {
  12726. height: math.unit(6, "feet"),
  12727. weight: math.unit(150, "lb"),
  12728. name: "Back",
  12729. image: {
  12730. source: "./media/characters/drusilla/back.svg",
  12731. extra: 678 / 635,
  12732. bottom: 0.005
  12733. }
  12734. },
  12735. },
  12736. [
  12737. {
  12738. name: "Macro",
  12739. height: math.unit(100, "feet")
  12740. },
  12741. {
  12742. name: "Canon Height",
  12743. height: math.unit(2000, "feet"),
  12744. default: true
  12745. },
  12746. ]
  12747. ))
  12748. characterMakers.push(() => makeCharacter(
  12749. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12750. {
  12751. front: {
  12752. height: math.unit(6, "feet"),
  12753. weight: math.unit(180, "lb"),
  12754. name: "Front",
  12755. image: {
  12756. source: "./media/characters/renard-thatch/front.svg",
  12757. extra: 2411 / 2275,
  12758. bottom: 0.01
  12759. }
  12760. },
  12761. frontPosing: {
  12762. height: math.unit(6, "feet"),
  12763. weight: math.unit(180, "lb"),
  12764. name: "Front (Posing)",
  12765. image: {
  12766. source: "./media/characters/renard-thatch/front-posing.svg",
  12767. extra: 2381 / 2261,
  12768. bottom: 0.01
  12769. }
  12770. },
  12771. back: {
  12772. height: math.unit(6, "feet"),
  12773. weight: math.unit(180, "lb"),
  12774. name: "Back",
  12775. image: {
  12776. source: "./media/characters/renard-thatch/back.svg",
  12777. extra: 2428 / 2288
  12778. }
  12779. },
  12780. },
  12781. [
  12782. {
  12783. name: "Micro",
  12784. height: math.unit(3, "inches")
  12785. },
  12786. {
  12787. name: "Default",
  12788. height: math.unit(6, "feet"),
  12789. default: true
  12790. },
  12791. {
  12792. name: "Macro",
  12793. height: math.unit(75, "feet")
  12794. },
  12795. ]
  12796. ))
  12797. characterMakers.push(() => makeCharacter(
  12798. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12799. {
  12800. front: {
  12801. height: math.unit(1450, "feet"),
  12802. weight: math.unit(1.21e6, "tons"),
  12803. name: "Front",
  12804. image: {
  12805. source: "./media/characters/sekvra/front.svg",
  12806. extra: 1,
  12807. bottom: 0.03
  12808. }
  12809. },
  12810. frontClothed: {
  12811. height: math.unit(1450, "feet"),
  12812. weight: math.unit(1.21e6, "tons"),
  12813. name: "Front (Clothed)",
  12814. image: {
  12815. source: "./media/characters/sekvra/front-clothed.svg",
  12816. extra: 1,
  12817. bottom: 0.03
  12818. }
  12819. },
  12820. side: {
  12821. height: math.unit(1450, "feet"),
  12822. weight: math.unit(1.21e6, "tons"),
  12823. name: "Side",
  12824. image: {
  12825. source: "./media/characters/sekvra/side.svg",
  12826. extra: 1,
  12827. bottom: 0.025
  12828. }
  12829. },
  12830. back: {
  12831. height: math.unit(1450, "feet"),
  12832. weight: math.unit(1.21e6, "tons"),
  12833. name: "Back",
  12834. image: {
  12835. source: "./media/characters/sekvra/back.svg",
  12836. extra: 1,
  12837. bottom: 0.005
  12838. }
  12839. },
  12840. },
  12841. [
  12842. {
  12843. name: "Macro",
  12844. height: math.unit(1450, "feet"),
  12845. default: true
  12846. },
  12847. {
  12848. name: "Megamacro",
  12849. height: math.unit(15000, "feet")
  12850. },
  12851. ]
  12852. ))
  12853. characterMakers.push(() => makeCharacter(
  12854. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12855. {
  12856. front: {
  12857. height: math.unit(6, "feet"),
  12858. weight: math.unit(150, "lb"),
  12859. name: "Front",
  12860. image: {
  12861. source: "./media/characters/carmine/front.svg",
  12862. extra: 1,
  12863. bottom: 0.035
  12864. }
  12865. },
  12866. frontArmor: {
  12867. height: math.unit(6, "feet"),
  12868. weight: math.unit(150, "lb"),
  12869. name: "Front (Armor)",
  12870. image: {
  12871. source: "./media/characters/carmine/front-armor.svg",
  12872. extra: 1,
  12873. bottom: 0.035
  12874. }
  12875. },
  12876. },
  12877. [
  12878. {
  12879. name: "Large",
  12880. height: math.unit(1, "mile")
  12881. },
  12882. {
  12883. name: "Huge",
  12884. height: math.unit(40, "miles"),
  12885. default: true
  12886. },
  12887. {
  12888. name: "Colossal",
  12889. height: math.unit(2500, "miles")
  12890. },
  12891. ]
  12892. ))
  12893. characterMakers.push(() => makeCharacter(
  12894. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12895. {
  12896. front: {
  12897. height: math.unit(6, "feet"),
  12898. weight: math.unit(150, "lb"),
  12899. name: "Front",
  12900. image: {
  12901. source: "./media/characters/elyssia/front.svg",
  12902. extra: 2201 / 2035,
  12903. bottom: 0.05
  12904. }
  12905. },
  12906. frontClothed: {
  12907. height: math.unit(6, "feet"),
  12908. weight: math.unit(150, "lb"),
  12909. name: "Front (Clothed)",
  12910. image: {
  12911. source: "./media/characters/elyssia/front-clothed.svg",
  12912. extra: 2201 / 2035,
  12913. bottom: 0.05
  12914. }
  12915. },
  12916. back: {
  12917. height: math.unit(6, "feet"),
  12918. weight: math.unit(150, "lb"),
  12919. name: "Back",
  12920. image: {
  12921. source: "./media/characters/elyssia/back.svg",
  12922. extra: 2201 / 2035,
  12923. bottom: 0.013
  12924. }
  12925. },
  12926. },
  12927. [
  12928. {
  12929. name: "Smaller",
  12930. height: math.unit(150, "feet")
  12931. },
  12932. {
  12933. name: "Standard",
  12934. height: math.unit(1400, "feet"),
  12935. default: true
  12936. },
  12937. {
  12938. name: "Distracted",
  12939. height: math.unit(15000, "feet")
  12940. },
  12941. ]
  12942. ))
  12943. characterMakers.push(() => makeCharacter(
  12944. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12945. {
  12946. front: {
  12947. height: math.unit(7 + 4 / 12, "feet"),
  12948. weight: math.unit(500, "lb"),
  12949. name: "Front",
  12950. image: {
  12951. source: "./media/characters/geno-maxwell/front.svg",
  12952. extra: 2207 / 2040,
  12953. bottom: 0.015
  12954. }
  12955. },
  12956. },
  12957. [
  12958. {
  12959. name: "Micro",
  12960. height: math.unit(3, "inches")
  12961. },
  12962. {
  12963. name: "Normal",
  12964. height: math.unit(7 + 4 / 12, "feet"),
  12965. default: true
  12966. },
  12967. {
  12968. name: "Macro",
  12969. height: math.unit(220, "feet")
  12970. },
  12971. {
  12972. name: "Megamacro",
  12973. height: math.unit(11, "miles")
  12974. },
  12975. ]
  12976. ))
  12977. characterMakers.push(() => makeCharacter(
  12978. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12979. {
  12980. front: {
  12981. height: math.unit(7 + 4 / 12, "feet"),
  12982. weight: math.unit(500, "lb"),
  12983. name: "Front",
  12984. image: {
  12985. source: "./media/characters/regena-maxwell/front.svg",
  12986. extra: 3115 / 2770,
  12987. bottom: 0.02
  12988. }
  12989. },
  12990. },
  12991. [
  12992. {
  12993. name: "Normal",
  12994. height: math.unit(7 + 4 / 12, "feet"),
  12995. default: true
  12996. },
  12997. {
  12998. name: "Macro",
  12999. height: math.unit(220, "feet")
  13000. },
  13001. {
  13002. name: "Megamacro",
  13003. height: math.unit(11, "miles")
  13004. },
  13005. ]
  13006. ))
  13007. characterMakers.push(() => makeCharacter(
  13008. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], 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/x-gliding-dragon-x/front.svg",
  13016. extra: 860 / 690,
  13017. bottom: 0.03
  13018. }
  13019. },
  13020. },
  13021. [
  13022. {
  13023. name: "Normal",
  13024. height: math.unit(1.7, "meters"),
  13025. default: true
  13026. },
  13027. ]
  13028. ))
  13029. characterMakers.push(() => makeCharacter(
  13030. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13031. {
  13032. front: {
  13033. height: math.unit(6, "feet"),
  13034. weight: math.unit(150, "lb"),
  13035. name: "Front",
  13036. image: {
  13037. source: "./media/characters/quilly/front.svg",
  13038. extra: 890 / 776
  13039. }
  13040. },
  13041. },
  13042. [
  13043. {
  13044. name: "Gigamacro",
  13045. height: math.unit(404090, "miles"),
  13046. default: true
  13047. },
  13048. ]
  13049. ))
  13050. characterMakers.push(() => makeCharacter(
  13051. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13052. {
  13053. front: {
  13054. height: math.unit(7 + 8 / 12, "feet"),
  13055. weight: math.unit(350, "lb"),
  13056. name: "Front",
  13057. image: {
  13058. source: "./media/characters/tempest/front.svg",
  13059. extra: 1175 / 1086,
  13060. bottom: 0.02
  13061. }
  13062. },
  13063. },
  13064. [
  13065. {
  13066. name: "Normal",
  13067. height: math.unit(7 + 8 / 12, "feet"),
  13068. default: true
  13069. },
  13070. ]
  13071. ))
  13072. characterMakers.push(() => makeCharacter(
  13073. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13074. {
  13075. side: {
  13076. height: math.unit(4 + 5 / 12, "feet"),
  13077. weight: math.unit(80, "lb"),
  13078. name: "Side",
  13079. image: {
  13080. source: "./media/characters/rodger/side.svg",
  13081. extra: 1235 / 1118
  13082. }
  13083. },
  13084. },
  13085. [
  13086. {
  13087. name: "Micro",
  13088. height: math.unit(1, "inch")
  13089. },
  13090. {
  13091. name: "Normal",
  13092. height: math.unit(4 + 5 / 12, "feet"),
  13093. default: true
  13094. },
  13095. {
  13096. name: "Macro",
  13097. height: math.unit(120, "feet")
  13098. },
  13099. ]
  13100. ))
  13101. characterMakers.push(() => makeCharacter(
  13102. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13103. {
  13104. front: {
  13105. height: math.unit(6, "feet"),
  13106. weight: math.unit(150, "lb"),
  13107. name: "Front",
  13108. image: {
  13109. source: "./media/characters/danyel/front.svg",
  13110. extra: 1185 / 1123,
  13111. bottom: 0.05
  13112. }
  13113. },
  13114. },
  13115. [
  13116. {
  13117. name: "Shrunken",
  13118. height: math.unit(0.5, "mm")
  13119. },
  13120. {
  13121. name: "Micro",
  13122. height: math.unit(1, "mm"),
  13123. default: true
  13124. },
  13125. {
  13126. name: "Upsized",
  13127. height: math.unit(5 + 5 / 12, "feet")
  13128. },
  13129. ]
  13130. ))
  13131. characterMakers.push(() => makeCharacter(
  13132. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13133. {
  13134. front: {
  13135. height: math.unit(5 + 6 / 12, "feet"),
  13136. weight: math.unit(200, "lb"),
  13137. name: "Front",
  13138. image: {
  13139. source: "./media/characters/vivian-bijoux/front.svg",
  13140. extra: 1,
  13141. bottom: 0.072
  13142. }
  13143. },
  13144. },
  13145. [
  13146. {
  13147. name: "Normal",
  13148. height: math.unit(5 + 6 / 12, "feet"),
  13149. default: true
  13150. },
  13151. {
  13152. name: "Bad Dream",
  13153. height: math.unit(500, "feet")
  13154. },
  13155. {
  13156. name: "Nightmare",
  13157. height: math.unit(500, "miles")
  13158. },
  13159. ]
  13160. ))
  13161. characterMakers.push(() => makeCharacter(
  13162. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13163. {
  13164. front: {
  13165. height: math.unit(6 + 1 / 12, "feet"),
  13166. weight: math.unit(260, "lb"),
  13167. name: "Front",
  13168. image: {
  13169. source: "./media/characters/zeta/front.svg",
  13170. extra: 1968 / 1889,
  13171. bottom: 0.06
  13172. }
  13173. },
  13174. back: {
  13175. height: math.unit(6 + 1 / 12, "feet"),
  13176. weight: math.unit(260, "lb"),
  13177. name: "Back",
  13178. image: {
  13179. source: "./media/characters/zeta/back.svg",
  13180. extra: 1944 / 1858,
  13181. bottom: 0.03
  13182. }
  13183. },
  13184. hand: {
  13185. height: math.unit(1.112, "feet"),
  13186. name: "Hand",
  13187. image: {
  13188. source: "./media/characters/zeta/hand.svg"
  13189. }
  13190. },
  13191. foot: {
  13192. height: math.unit(1.48, "feet"),
  13193. name: "Foot",
  13194. image: {
  13195. source: "./media/characters/zeta/foot.svg"
  13196. }
  13197. },
  13198. },
  13199. [
  13200. {
  13201. name: "Micro",
  13202. height: math.unit(6, "inches")
  13203. },
  13204. {
  13205. name: "Normal",
  13206. height: math.unit(6 + 1 / 12, "feet"),
  13207. default: true
  13208. },
  13209. {
  13210. name: "Macro",
  13211. height: math.unit(20, "feet")
  13212. },
  13213. ]
  13214. ))
  13215. characterMakers.push(() => makeCharacter(
  13216. { name: "Jamie Larsen", species: ["rabbit"], 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/jamie-larsen/front.svg",
  13224. extra: 962 / 933,
  13225. bottom: 0.02
  13226. }
  13227. },
  13228. back: {
  13229. height: math.unit(6, "feet"),
  13230. weight: math.unit(150, "lb"),
  13231. name: "Back",
  13232. image: {
  13233. source: "./media/characters/jamie-larsen/back.svg",
  13234. extra: 997 / 946
  13235. }
  13236. },
  13237. },
  13238. [
  13239. {
  13240. name: "Macro",
  13241. height: math.unit(28 + 7 / 12, "feet"),
  13242. default: true
  13243. },
  13244. {
  13245. name: "Macro+",
  13246. height: math.unit(180, "feet")
  13247. },
  13248. {
  13249. name: "Megamacro",
  13250. height: math.unit(10, "miles")
  13251. },
  13252. {
  13253. name: "Gigamacro",
  13254. height: math.unit(200000, "miles")
  13255. },
  13256. ]
  13257. ))
  13258. characterMakers.push(() => makeCharacter(
  13259. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13260. {
  13261. front: {
  13262. height: math.unit(6, "feet"),
  13263. weight: math.unit(120, "lb"),
  13264. name: "Front",
  13265. image: {
  13266. source: "./media/characters/vance/front.svg",
  13267. extra: 1980 / 1890,
  13268. bottom: 0.09
  13269. }
  13270. },
  13271. back: {
  13272. height: math.unit(6, "feet"),
  13273. weight: math.unit(120, "lb"),
  13274. name: "Back",
  13275. image: {
  13276. source: "./media/characters/vance/back.svg",
  13277. extra: 2081 / 1994,
  13278. bottom: 0.014
  13279. }
  13280. },
  13281. hand: {
  13282. height: math.unit(0.88, "feet"),
  13283. name: "Hand",
  13284. image: {
  13285. source: "./media/characters/vance/hand.svg"
  13286. }
  13287. },
  13288. foot: {
  13289. height: math.unit(0.64, "feet"),
  13290. name: "Foot",
  13291. image: {
  13292. source: "./media/characters/vance/foot.svg"
  13293. }
  13294. },
  13295. },
  13296. [
  13297. {
  13298. name: "Small",
  13299. height: math.unit(90, "feet"),
  13300. default: true
  13301. },
  13302. {
  13303. name: "Macro",
  13304. height: math.unit(100, "meters")
  13305. },
  13306. {
  13307. name: "Megamacro",
  13308. height: math.unit(15, "miles")
  13309. },
  13310. ]
  13311. ))
  13312. characterMakers.push(() => makeCharacter(
  13313. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13314. {
  13315. front: {
  13316. height: math.unit(6, "feet"),
  13317. weight: math.unit(180, "lb"),
  13318. name: "Front",
  13319. image: {
  13320. source: "./media/characters/xochitl/front.svg",
  13321. extra: 2297 / 2261,
  13322. bottom: 0.065
  13323. }
  13324. },
  13325. back: {
  13326. height: math.unit(6, "feet"),
  13327. weight: math.unit(180, "lb"),
  13328. name: "Back",
  13329. image: {
  13330. source: "./media/characters/xochitl/back.svg",
  13331. extra: 2386 / 2354,
  13332. bottom: 0.01
  13333. }
  13334. },
  13335. foot: {
  13336. height: math.unit(6 / 5 * 1.15, "feet"),
  13337. weight: math.unit(150, "lb"),
  13338. name: "Foot",
  13339. image: {
  13340. source: "./media/characters/xochitl/foot.svg"
  13341. }
  13342. },
  13343. },
  13344. [
  13345. {
  13346. name: "Macro",
  13347. height: math.unit(80, "feet")
  13348. },
  13349. {
  13350. name: "Macro+",
  13351. height: math.unit(400, "feet"),
  13352. default: true
  13353. },
  13354. {
  13355. name: "Gigamacro",
  13356. height: math.unit(80000, "miles")
  13357. },
  13358. {
  13359. name: "Gigamacro+",
  13360. height: math.unit(400000, "miles")
  13361. },
  13362. {
  13363. name: "Teramacro",
  13364. height: math.unit(300, "AU")
  13365. },
  13366. ]
  13367. ))
  13368. characterMakers.push(() => makeCharacter(
  13369. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13370. {
  13371. front: {
  13372. height: math.unit(6, "feet"),
  13373. weight: math.unit(150, "lb"),
  13374. name: "Front",
  13375. image: {
  13376. source: "./media/characters/vincent/front.svg",
  13377. extra: 1130 / 1080,
  13378. bottom: 0.055
  13379. }
  13380. },
  13381. beak: {
  13382. height: math.unit(6 * 0.1, "feet"),
  13383. name: "Beak",
  13384. image: {
  13385. source: "./media/characters/vincent/beak.svg"
  13386. }
  13387. },
  13388. hand: {
  13389. height: math.unit(6 * 0.85, "feet"),
  13390. weight: math.unit(150, "lb"),
  13391. name: "Hand",
  13392. image: {
  13393. source: "./media/characters/vincent/hand.svg"
  13394. }
  13395. },
  13396. foot: {
  13397. height: math.unit(6 * 0.19, "feet"),
  13398. weight: math.unit(150, "lb"),
  13399. name: "Foot",
  13400. image: {
  13401. source: "./media/characters/vincent/foot.svg"
  13402. }
  13403. },
  13404. },
  13405. [
  13406. {
  13407. name: "Base",
  13408. height: math.unit(6 + 5 / 12, "feet"),
  13409. default: true
  13410. },
  13411. {
  13412. name: "Macro",
  13413. height: math.unit(300, "feet")
  13414. },
  13415. {
  13416. name: "Megamacro",
  13417. height: math.unit(2, "miles")
  13418. },
  13419. {
  13420. name: "Gigamacro",
  13421. height: math.unit(1000, "miles")
  13422. },
  13423. ]
  13424. ))
  13425. characterMakers.push(() => makeCharacter(
  13426. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13427. {
  13428. front: {
  13429. height: math.unit(2, "meters"),
  13430. weight: math.unit(500, "kg"),
  13431. name: "Front",
  13432. image: {
  13433. source: "./media/characters/coatl/front.svg",
  13434. extra: 3948 / 3500,
  13435. bottom: 0.082
  13436. }
  13437. },
  13438. },
  13439. [
  13440. {
  13441. name: "Normal",
  13442. height: math.unit(4, "meters")
  13443. },
  13444. {
  13445. name: "Macro",
  13446. height: math.unit(100, "meters"),
  13447. default: true
  13448. },
  13449. {
  13450. name: "Macro+",
  13451. height: math.unit(300, "meters")
  13452. },
  13453. {
  13454. name: "Megamacro",
  13455. height: math.unit(3, "gigameters")
  13456. },
  13457. {
  13458. name: "Megamacro+",
  13459. height: math.unit(300, "terameters")
  13460. },
  13461. {
  13462. name: "Megamacro++",
  13463. height: math.unit(3, "lightyears")
  13464. },
  13465. ]
  13466. ))
  13467. characterMakers.push(() => makeCharacter(
  13468. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13469. {
  13470. front: {
  13471. height: math.unit(6, "feet"),
  13472. weight: math.unit(50, "kg"),
  13473. name: "front",
  13474. image: {
  13475. source: "./media/characters/shiroryu/front.svg",
  13476. extra: 1990 / 1935
  13477. }
  13478. },
  13479. },
  13480. [
  13481. {
  13482. name: "Mortal Mingling",
  13483. height: math.unit(3, "meters")
  13484. },
  13485. {
  13486. name: "Kaiju-ish",
  13487. height: math.unit(250, "meters")
  13488. },
  13489. {
  13490. name: "Somewhat Godly",
  13491. height: math.unit(400, "km"),
  13492. default: true
  13493. },
  13494. {
  13495. name: "Planetary",
  13496. height: math.unit(300, "megameters")
  13497. },
  13498. {
  13499. name: "Galaxy-dwarfing",
  13500. height: math.unit(450, "kiloparsecs")
  13501. },
  13502. {
  13503. name: "Universe Eater",
  13504. height: math.unit(150, "gigaparsecs")
  13505. },
  13506. {
  13507. name: "Almost Immeasurable",
  13508. height: math.unit(1.3e266, "yottaparsecs")
  13509. },
  13510. ]
  13511. ))
  13512. characterMakers.push(() => makeCharacter(
  13513. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13514. {
  13515. front: {
  13516. height: math.unit(6, "feet"),
  13517. weight: math.unit(150, "lb"),
  13518. name: "Front",
  13519. image: {
  13520. source: "./media/characters/umeko/front.svg",
  13521. extra: 1,
  13522. bottom: 0.019
  13523. }
  13524. },
  13525. frontArmored: {
  13526. height: math.unit(6, "feet"),
  13527. weight: math.unit(150, "lb"),
  13528. name: "Front (Armored)",
  13529. image: {
  13530. source: "./media/characters/umeko/front-armored.svg",
  13531. extra: 1,
  13532. bottom: 0.021
  13533. }
  13534. },
  13535. },
  13536. [
  13537. {
  13538. name: "Macro",
  13539. height: math.unit(220, "feet"),
  13540. default: true
  13541. },
  13542. {
  13543. name: "Guardian Dragon",
  13544. height: math.unit(50, "miles")
  13545. },
  13546. {
  13547. name: "Cosmic",
  13548. height: math.unit(800000, "miles")
  13549. },
  13550. ]
  13551. ))
  13552. characterMakers.push(() => makeCharacter(
  13553. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13554. {
  13555. front: {
  13556. height: math.unit(6, "feet"),
  13557. weight: math.unit(150, "lb"),
  13558. name: "Front",
  13559. image: {
  13560. source: "./media/characters/cassidy/front.svg",
  13561. extra: 1,
  13562. bottom: 0.043
  13563. }
  13564. },
  13565. },
  13566. [
  13567. {
  13568. name: "Canon Height",
  13569. height: math.unit(120, "feet"),
  13570. default: true
  13571. },
  13572. {
  13573. name: "Macro+",
  13574. height: math.unit(400, "feet")
  13575. },
  13576. {
  13577. name: "Macro++",
  13578. height: math.unit(4000, "feet")
  13579. },
  13580. {
  13581. name: "Megamacro",
  13582. height: math.unit(3, "miles")
  13583. },
  13584. ]
  13585. ))
  13586. characterMakers.push(() => makeCharacter(
  13587. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13588. {
  13589. front: {
  13590. height: math.unit(6, "feet"),
  13591. weight: math.unit(150, "lb"),
  13592. name: "Front",
  13593. image: {
  13594. source: "./media/characters/isaac/front.svg",
  13595. extra: 896 / 815,
  13596. bottom: 0.11
  13597. }
  13598. },
  13599. },
  13600. [
  13601. {
  13602. name: "Human Size",
  13603. height: math.unit(8, "feet"),
  13604. default: true
  13605. },
  13606. {
  13607. name: "Macro",
  13608. height: math.unit(400, "feet")
  13609. },
  13610. {
  13611. name: "Megamacro",
  13612. height: math.unit(50, "miles")
  13613. },
  13614. {
  13615. name: "Canon Height",
  13616. height: math.unit(200, "AU")
  13617. },
  13618. ]
  13619. ))
  13620. characterMakers.push(() => makeCharacter(
  13621. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13622. {
  13623. front: {
  13624. height: math.unit(6, "feet"),
  13625. weight: math.unit(72, "kg"),
  13626. name: "Front",
  13627. image: {
  13628. source: "./media/characters/sleekit/front.svg",
  13629. extra: 4693 / 4487,
  13630. bottom: 0.012
  13631. }
  13632. },
  13633. },
  13634. [
  13635. {
  13636. name: "Minimum Height",
  13637. height: math.unit(10, "meters")
  13638. },
  13639. {
  13640. name: "Smaller",
  13641. height: math.unit(25, "meters")
  13642. },
  13643. {
  13644. name: "Larger",
  13645. height: math.unit(38, "meters"),
  13646. default: true
  13647. },
  13648. {
  13649. name: "Maximum height",
  13650. height: math.unit(100, "meters")
  13651. },
  13652. ]
  13653. ))
  13654. characterMakers.push(() => makeCharacter(
  13655. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13656. {
  13657. front: {
  13658. height: math.unit(6, "feet"),
  13659. weight: math.unit(150, "lb"),
  13660. name: "Front",
  13661. image: {
  13662. source: "./media/characters/nillia/front.svg",
  13663. extra: 2195 / 2037,
  13664. bottom: 0.005
  13665. }
  13666. },
  13667. back: {
  13668. height: math.unit(6, "feet"),
  13669. weight: math.unit(150, "lb"),
  13670. name: "Back",
  13671. image: {
  13672. source: "./media/characters/nillia/back.svg",
  13673. extra: 2195 / 2037,
  13674. bottom: 0.005
  13675. }
  13676. },
  13677. },
  13678. [
  13679. {
  13680. name: "Canon Height",
  13681. height: math.unit(489, "feet"),
  13682. default: true
  13683. }
  13684. ]
  13685. ))
  13686. characterMakers.push(() => makeCharacter(
  13687. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13688. {
  13689. front: {
  13690. height: math.unit(6, "feet"),
  13691. weight: math.unit(150, "lb"),
  13692. name: "Front",
  13693. image: {
  13694. source: "./media/characters/mesmyriza/front.svg",
  13695. extra: 2067 / 1784,
  13696. bottom: 0.035
  13697. }
  13698. },
  13699. foot: {
  13700. height: math.unit(6 / (250 / 35), "feet"),
  13701. name: "Foot",
  13702. image: {
  13703. source: "./media/characters/mesmyriza/foot.svg"
  13704. }
  13705. },
  13706. },
  13707. [
  13708. {
  13709. name: "Macro",
  13710. height: math.unit(457, "meters"),
  13711. default: true
  13712. },
  13713. {
  13714. name: "Megamacro",
  13715. height: math.unit(8, "megameters")
  13716. },
  13717. ]
  13718. ))
  13719. characterMakers.push(() => makeCharacter(
  13720. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13721. {
  13722. front: {
  13723. height: math.unit(6, "feet"),
  13724. weight: math.unit(250, "lb"),
  13725. name: "Front",
  13726. image: {
  13727. source: "./media/characters/saudade/front.svg",
  13728. extra: 1172 / 1139,
  13729. bottom: 0.035
  13730. }
  13731. },
  13732. },
  13733. [
  13734. {
  13735. name: "Micro",
  13736. height: math.unit(3, "inches")
  13737. },
  13738. {
  13739. name: "Normal",
  13740. height: math.unit(6, "feet"),
  13741. default: true
  13742. },
  13743. {
  13744. name: "Macro",
  13745. height: math.unit(50, "feet")
  13746. },
  13747. {
  13748. name: "Megamacro",
  13749. height: math.unit(2800, "feet")
  13750. },
  13751. ]
  13752. ))
  13753. characterMakers.push(() => makeCharacter(
  13754. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13755. {
  13756. front: {
  13757. height: math.unit(5 + 4 / 12, "feet"),
  13758. weight: math.unit(100, "lb"),
  13759. name: "Front",
  13760. image: {
  13761. source: "./media/characters/keireer/front.svg",
  13762. extra: 716 / 666,
  13763. bottom: 0.05
  13764. }
  13765. },
  13766. },
  13767. [
  13768. {
  13769. name: "Normal",
  13770. height: math.unit(5 + 4 / 12, "feet"),
  13771. default: true
  13772. },
  13773. ]
  13774. ))
  13775. characterMakers.push(() => makeCharacter(
  13776. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13777. {
  13778. front: {
  13779. height: math.unit(6, "feet"),
  13780. weight: math.unit(90, "kg"),
  13781. name: "Front",
  13782. image: {
  13783. source: "./media/characters/mirja/front.svg",
  13784. extra: 1789 / 1683,
  13785. bottom: 0.05
  13786. }
  13787. },
  13788. frontDressed: {
  13789. height: math.unit(6, "feet"),
  13790. weight: math.unit(90, "lb"),
  13791. name: "Front (Dressed)",
  13792. image: {
  13793. source: "./media/characters/mirja/front-dressed.svg",
  13794. extra: 1789 / 1683,
  13795. bottom: 0.05
  13796. }
  13797. },
  13798. back: {
  13799. height: math.unit(6, "feet"),
  13800. weight: math.unit(90, "lb"),
  13801. name: "Back",
  13802. image: {
  13803. source: "./media/characters/mirja/back.svg",
  13804. extra: 953 / 917,
  13805. bottom: 0.017
  13806. }
  13807. },
  13808. },
  13809. [
  13810. {
  13811. name: "\"Incognito\"",
  13812. height: math.unit(3, "meters")
  13813. },
  13814. {
  13815. name: "Strolling Size",
  13816. height: math.unit(15, "km")
  13817. },
  13818. {
  13819. name: "Larger Strolling Size",
  13820. height: math.unit(400, "km")
  13821. },
  13822. {
  13823. name: "Preferred Size",
  13824. height: math.unit(5000, "km")
  13825. },
  13826. {
  13827. name: "True Size",
  13828. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13829. default: true
  13830. },
  13831. ]
  13832. ))
  13833. characterMakers.push(() => makeCharacter(
  13834. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13835. {
  13836. front: {
  13837. height: math.unit(15, "feet"),
  13838. weight: math.unit(880, "kg"),
  13839. name: "Front",
  13840. image: {
  13841. source: "./media/characters/nightraver/front.svg",
  13842. extra: 2444 / 2160,
  13843. bottom: 0.027
  13844. }
  13845. },
  13846. back: {
  13847. height: math.unit(15, "feet"),
  13848. weight: math.unit(880, "kg"),
  13849. name: "Back",
  13850. image: {
  13851. source: "./media/characters/nightraver/back.svg",
  13852. extra: 2309 / 2180,
  13853. bottom: 0.005
  13854. }
  13855. },
  13856. sole: {
  13857. height: math.unit(2.878, "feet"),
  13858. name: "Sole",
  13859. image: {
  13860. source: "./media/characters/nightraver/sole.svg"
  13861. }
  13862. },
  13863. foot: {
  13864. height: math.unit(2.285, "feet"),
  13865. name: "Foot",
  13866. image: {
  13867. source: "./media/characters/nightraver/foot.svg"
  13868. }
  13869. },
  13870. maw: {
  13871. height: math.unit(2.67, "feet"),
  13872. name: "Maw",
  13873. image: {
  13874. source: "./media/characters/nightraver/maw.svg"
  13875. }
  13876. },
  13877. },
  13878. [
  13879. {
  13880. name: "Micro",
  13881. height: math.unit(1, "cm")
  13882. },
  13883. {
  13884. name: "Normal",
  13885. height: math.unit(15, "feet"),
  13886. default: true
  13887. },
  13888. {
  13889. name: "Macro",
  13890. height: math.unit(300, "feet")
  13891. },
  13892. {
  13893. name: "Megamacro",
  13894. height: math.unit(300, "miles")
  13895. },
  13896. {
  13897. name: "Gigamacro",
  13898. height: math.unit(10000, "miles")
  13899. },
  13900. ]
  13901. ))
  13902. characterMakers.push(() => makeCharacter(
  13903. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13904. {
  13905. side: {
  13906. height: math.unit(2, "inches"),
  13907. weight: math.unit(5, "grams"),
  13908. name: "Side",
  13909. image: {
  13910. source: "./media/characters/arc/side.svg"
  13911. }
  13912. },
  13913. },
  13914. [
  13915. {
  13916. name: "Micro",
  13917. height: math.unit(2, "inches"),
  13918. default: true
  13919. },
  13920. ]
  13921. ))
  13922. characterMakers.push(() => makeCharacter(
  13923. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13924. {
  13925. front: {
  13926. height: math.unit(1.1938, "meters"),
  13927. weight: math.unit(54, "kg"),
  13928. name: "Front",
  13929. image: {
  13930. source: "./media/characters/nebula-shahar/front.svg",
  13931. extra: 1642 / 1436,
  13932. bottom: 0.06
  13933. }
  13934. },
  13935. },
  13936. [
  13937. {
  13938. name: "Megamicro",
  13939. height: math.unit(0.3, "mm")
  13940. },
  13941. {
  13942. name: "Micro",
  13943. height: math.unit(3, "cm")
  13944. },
  13945. {
  13946. name: "Normal",
  13947. height: math.unit(138, "cm"),
  13948. default: true
  13949. },
  13950. {
  13951. name: "Macro",
  13952. height: math.unit(30, "m")
  13953. },
  13954. ]
  13955. ))
  13956. characterMakers.push(() => makeCharacter(
  13957. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13958. {
  13959. front: {
  13960. height: math.unit(5.24, "feet"),
  13961. weight: math.unit(150, "lb"),
  13962. name: "Front",
  13963. image: {
  13964. source: "./media/characters/shayla/front.svg",
  13965. extra: 1512 / 1414,
  13966. bottom: 0.01
  13967. }
  13968. },
  13969. back: {
  13970. height: math.unit(5.24, "feet"),
  13971. weight: math.unit(150, "lb"),
  13972. name: "Back",
  13973. image: {
  13974. source: "./media/characters/shayla/back.svg",
  13975. extra: 1512 / 1414
  13976. }
  13977. },
  13978. hand: {
  13979. height: math.unit(0.7781496062992126, "feet"),
  13980. name: "Hand",
  13981. image: {
  13982. source: "./media/characters/shayla/hand.svg"
  13983. }
  13984. },
  13985. foot: {
  13986. height: math.unit(1.4206036745406823, "feet"),
  13987. name: "Foot",
  13988. image: {
  13989. source: "./media/characters/shayla/foot.svg"
  13990. }
  13991. },
  13992. },
  13993. [
  13994. {
  13995. name: "Micro",
  13996. height: math.unit(0.32, "feet")
  13997. },
  13998. {
  13999. name: "Normal",
  14000. height: math.unit(5.24, "feet"),
  14001. default: true
  14002. },
  14003. {
  14004. name: "Macro",
  14005. height: math.unit(492.12, "feet")
  14006. },
  14007. {
  14008. name: "Megamacro",
  14009. height: math.unit(186.41, "miles")
  14010. },
  14011. ]
  14012. ))
  14013. characterMakers.push(() => makeCharacter(
  14014. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14015. {
  14016. front: {
  14017. height: math.unit(2.2, "m"),
  14018. weight: math.unit(120, "kg"),
  14019. name: "Front",
  14020. image: {
  14021. source: "./media/characters/pia-jr/front.svg",
  14022. extra: 1000 / 970,
  14023. bottom: 0.035
  14024. }
  14025. },
  14026. hand: {
  14027. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14028. name: "Hand",
  14029. image: {
  14030. source: "./media/characters/pia-jr/hand.svg"
  14031. }
  14032. },
  14033. paw: {
  14034. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14035. name: "Paw",
  14036. image: {
  14037. source: "./media/characters/pia-jr/paw.svg"
  14038. }
  14039. },
  14040. },
  14041. [
  14042. {
  14043. name: "Micro",
  14044. height: math.unit(1.2, "cm")
  14045. },
  14046. {
  14047. name: "Normal",
  14048. height: math.unit(2.2, "m"),
  14049. default: true
  14050. },
  14051. {
  14052. name: "Macro",
  14053. height: math.unit(180, "m")
  14054. },
  14055. {
  14056. name: "Megamacro",
  14057. height: math.unit(420, "km")
  14058. },
  14059. ]
  14060. ))
  14061. characterMakers.push(() => makeCharacter(
  14062. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14063. {
  14064. front: {
  14065. height: math.unit(2, "m"),
  14066. weight: math.unit(115, "kg"),
  14067. name: "Front",
  14068. image: {
  14069. source: "./media/characters/pia-sr/front.svg",
  14070. extra: 760 / 730,
  14071. bottom: 0.015
  14072. }
  14073. },
  14074. back: {
  14075. height: math.unit(2, "m"),
  14076. weight: math.unit(115, "kg"),
  14077. name: "Back",
  14078. image: {
  14079. source: "./media/characters/pia-sr/back.svg",
  14080. extra: 760 / 730,
  14081. bottom: 0.01
  14082. }
  14083. },
  14084. hand: {
  14085. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14086. name: "Hand",
  14087. image: {
  14088. source: "./media/characters/pia-sr/hand.svg"
  14089. }
  14090. },
  14091. foot: {
  14092. height: math.unit(1.83, "feet"),
  14093. name: "Foot",
  14094. image: {
  14095. source: "./media/characters/pia-sr/foot.svg"
  14096. }
  14097. },
  14098. },
  14099. [
  14100. {
  14101. name: "Micro",
  14102. height: math.unit(88, "mm")
  14103. },
  14104. {
  14105. name: "Normal",
  14106. height: math.unit(2, "m"),
  14107. default: true
  14108. },
  14109. {
  14110. name: "Macro",
  14111. height: math.unit(200, "m")
  14112. },
  14113. {
  14114. name: "Megamacro",
  14115. height: math.unit(420, "km")
  14116. },
  14117. ]
  14118. ))
  14119. characterMakers.push(() => makeCharacter(
  14120. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14121. {
  14122. front: {
  14123. height: math.unit(8 + 2 / 12, "feet"),
  14124. weight: math.unit(300, "lb"),
  14125. name: "Front",
  14126. image: {
  14127. source: "./media/characters/kibibyte/front.svg",
  14128. extra: 2221 / 2098,
  14129. bottom: 0.04
  14130. }
  14131. },
  14132. },
  14133. [
  14134. {
  14135. name: "Normal",
  14136. height: math.unit(8 + 2 / 12, "feet"),
  14137. default: true
  14138. },
  14139. {
  14140. name: "Socialable Macro",
  14141. height: math.unit(50, "feet")
  14142. },
  14143. {
  14144. name: "Macro",
  14145. height: math.unit(300, "feet")
  14146. },
  14147. {
  14148. name: "Megamacro",
  14149. height: math.unit(500, "miles")
  14150. },
  14151. ]
  14152. ))
  14153. characterMakers.push(() => makeCharacter(
  14154. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14155. {
  14156. front: {
  14157. height: math.unit(6, "feet"),
  14158. weight: math.unit(150, "lb"),
  14159. name: "Front",
  14160. image: {
  14161. source: "./media/characters/felix/front.svg",
  14162. extra: 762 / 722,
  14163. bottom: 0.02
  14164. }
  14165. },
  14166. frontClothed: {
  14167. height: math.unit(6, "feet"),
  14168. weight: math.unit(150, "lb"),
  14169. name: "Front (Clothed)",
  14170. image: {
  14171. source: "./media/characters/felix/front-clothed.svg",
  14172. extra: 762 / 722,
  14173. bottom: 0.02
  14174. }
  14175. },
  14176. },
  14177. [
  14178. {
  14179. name: "Normal",
  14180. height: math.unit(6 + 8 / 12, "feet"),
  14181. default: true
  14182. },
  14183. {
  14184. name: "Macro",
  14185. height: math.unit(2600, "feet")
  14186. },
  14187. {
  14188. name: "Megamacro",
  14189. height: math.unit(450, "miles")
  14190. },
  14191. ]
  14192. ))
  14193. characterMakers.push(() => makeCharacter(
  14194. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14195. {
  14196. front: {
  14197. height: math.unit(6 + 1 / 12, "feet"),
  14198. weight: math.unit(250, "lb"),
  14199. name: "Front",
  14200. image: {
  14201. source: "./media/characters/tobo/front.svg",
  14202. extra: 608 / 586,
  14203. bottom: 0.023
  14204. }
  14205. },
  14206. back: {
  14207. height: math.unit(6 + 1 / 12, "feet"),
  14208. weight: math.unit(250, "lb"),
  14209. name: "Back",
  14210. image: {
  14211. source: "./media/characters/tobo/back.svg",
  14212. extra: 608 / 586
  14213. }
  14214. },
  14215. },
  14216. [
  14217. {
  14218. name: "Nano",
  14219. height: math.unit(2, "nm")
  14220. },
  14221. {
  14222. name: "Megamicro",
  14223. height: math.unit(0.1, "mm")
  14224. },
  14225. {
  14226. name: "Micro",
  14227. height: math.unit(1, "inch"),
  14228. default: true
  14229. },
  14230. {
  14231. name: "Human-sized",
  14232. height: math.unit(6 + 1 / 12, "feet")
  14233. },
  14234. {
  14235. name: "Macro",
  14236. height: math.unit(250, "feet")
  14237. },
  14238. {
  14239. name: "Megamacro",
  14240. height: math.unit(75, "miles")
  14241. },
  14242. {
  14243. name: "Texas-sized",
  14244. height: math.unit(750, "miles")
  14245. },
  14246. {
  14247. name: "Teramacro",
  14248. height: math.unit(50000, "miles")
  14249. },
  14250. ]
  14251. ))
  14252. characterMakers.push(() => makeCharacter(
  14253. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14254. {
  14255. front: {
  14256. height: math.unit(6, "feet"),
  14257. weight: math.unit(269, "lb"),
  14258. name: "Front",
  14259. image: {
  14260. source: "./media/characters/danny-kapowsky/front.svg",
  14261. extra: 766 / 736,
  14262. bottom: 0.044
  14263. }
  14264. },
  14265. back: {
  14266. height: math.unit(6, "feet"),
  14267. weight: math.unit(269, "lb"),
  14268. name: "Back",
  14269. image: {
  14270. source: "./media/characters/danny-kapowsky/back.svg",
  14271. extra: 797 / 760,
  14272. bottom: 0.025
  14273. }
  14274. },
  14275. },
  14276. [
  14277. {
  14278. name: "Macro",
  14279. height: math.unit(150, "feet"),
  14280. default: true
  14281. },
  14282. {
  14283. name: "Macro+",
  14284. height: math.unit(200, "feet")
  14285. },
  14286. {
  14287. name: "Macro++",
  14288. height: math.unit(300, "feet")
  14289. },
  14290. {
  14291. name: "Macro+++",
  14292. height: math.unit(400, "feet")
  14293. },
  14294. ]
  14295. ))
  14296. characterMakers.push(() => makeCharacter(
  14297. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14298. {
  14299. side: {
  14300. height: math.unit(6, "feet"),
  14301. weight: math.unit(170, "lb"),
  14302. name: "Side",
  14303. image: {
  14304. source: "./media/characters/finn/side.svg",
  14305. extra: 1953 / 1807,
  14306. bottom: 0.057
  14307. }
  14308. },
  14309. },
  14310. [
  14311. {
  14312. name: "Megamacro",
  14313. height: math.unit(14445, "feet"),
  14314. default: true
  14315. },
  14316. ]
  14317. ))
  14318. characterMakers.push(() => makeCharacter(
  14319. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14320. {
  14321. front: {
  14322. height: math.unit(5 + 6 / 12, "feet"),
  14323. weight: math.unit(125, "lb"),
  14324. name: "Front",
  14325. image: {
  14326. source: "./media/characters/roy/front.svg",
  14327. extra: 1,
  14328. bottom: 0.11
  14329. }
  14330. },
  14331. },
  14332. [
  14333. {
  14334. name: "Micro",
  14335. height: math.unit(3, "inches"),
  14336. default: true
  14337. },
  14338. {
  14339. name: "Normal",
  14340. height: math.unit(5 + 6 / 12, "feet")
  14341. },
  14342. {
  14343. name: "Lesser Macro",
  14344. height: math.unit(60, "feet")
  14345. },
  14346. {
  14347. name: "Greater Macro",
  14348. height: math.unit(120, "feet")
  14349. },
  14350. ]
  14351. ))
  14352. characterMakers.push(() => makeCharacter(
  14353. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14354. {
  14355. front: {
  14356. height: math.unit(6, "feet"),
  14357. weight: math.unit(100, "lb"),
  14358. name: "Front",
  14359. image: {
  14360. source: "./media/characters/aevsivs/front.svg",
  14361. extra: 1,
  14362. bottom: 0.03
  14363. }
  14364. },
  14365. back: {
  14366. height: math.unit(6, "feet"),
  14367. weight: math.unit(100, "lb"),
  14368. name: "Back",
  14369. image: {
  14370. source: "./media/characters/aevsivs/back.svg"
  14371. }
  14372. },
  14373. },
  14374. [
  14375. {
  14376. name: "Micro",
  14377. height: math.unit(2, "inches"),
  14378. default: true
  14379. },
  14380. {
  14381. name: "Normal",
  14382. height: math.unit(5, "feet")
  14383. },
  14384. ]
  14385. ))
  14386. characterMakers.push(() => makeCharacter(
  14387. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14388. {
  14389. front: {
  14390. height: math.unit(5 + 7 / 12, "feet"),
  14391. weight: math.unit(159, "lb"),
  14392. name: "Front",
  14393. image: {
  14394. source: "./media/characters/hildegard/front.svg",
  14395. extra: 289 / 269,
  14396. bottom: 7.63 / 297.8
  14397. }
  14398. },
  14399. back: {
  14400. height: math.unit(5 + 7 / 12, "feet"),
  14401. weight: math.unit(159, "lb"),
  14402. name: "Back",
  14403. image: {
  14404. source: "./media/characters/hildegard/back.svg",
  14405. extra: 280 / 260,
  14406. bottom: 2.3 / 282
  14407. }
  14408. },
  14409. },
  14410. [
  14411. {
  14412. name: "Normal",
  14413. height: math.unit(5 + 7 / 12, "feet"),
  14414. default: true
  14415. },
  14416. ]
  14417. ))
  14418. characterMakers.push(() => makeCharacter(
  14419. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14420. {
  14421. bernard: {
  14422. height: math.unit(2 + 7 / 12, "feet"),
  14423. weight: math.unit(66, "lb"),
  14424. name: "Bernard",
  14425. rename: true,
  14426. image: {
  14427. source: "./media/characters/bernard-wilder/bernard.svg",
  14428. extra: 192 / 128,
  14429. bottom: 0.05
  14430. }
  14431. },
  14432. wilder: {
  14433. height: math.unit(5 + 8 / 12, "feet"),
  14434. weight: math.unit(143, "lb"),
  14435. name: "Wilder",
  14436. rename: true,
  14437. image: {
  14438. source: "./media/characters/bernard-wilder/wilder.svg",
  14439. extra: 361 / 312,
  14440. bottom: 0.02
  14441. }
  14442. },
  14443. },
  14444. [
  14445. {
  14446. name: "Normal",
  14447. height: math.unit(2 + 7 / 12, "feet"),
  14448. default: true
  14449. },
  14450. ]
  14451. ))
  14452. characterMakers.push(() => makeCharacter(
  14453. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14454. {
  14455. anthro: {
  14456. height: math.unit(6 + 1 / 12, "feet"),
  14457. weight: math.unit(155, "lb"),
  14458. name: "Anthro",
  14459. image: {
  14460. source: "./media/characters/hearth/anthro.svg",
  14461. extra: 260 / 250,
  14462. bottom: 0.02
  14463. }
  14464. },
  14465. feral: {
  14466. height: math.unit(3.78, "feet"),
  14467. weight: math.unit(35, "kg"),
  14468. name: "Feral",
  14469. image: {
  14470. source: "./media/characters/hearth/feral.svg",
  14471. extra: 153 / 135,
  14472. bottom: 0.03
  14473. }
  14474. },
  14475. },
  14476. [
  14477. {
  14478. name: "Normal",
  14479. height: math.unit(6 + 1 / 12, "feet"),
  14480. default: true
  14481. },
  14482. ]
  14483. ))
  14484. characterMakers.push(() => makeCharacter(
  14485. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14486. {
  14487. front: {
  14488. height: math.unit(6, "feet"),
  14489. weight: math.unit(182, "lb"),
  14490. name: "Front",
  14491. image: {
  14492. source: "./media/characters/ingrid/front.svg",
  14493. extra: 294 / 268,
  14494. bottom: 0.027
  14495. }
  14496. },
  14497. },
  14498. [
  14499. {
  14500. name: "Normal",
  14501. height: math.unit(6, "feet"),
  14502. default: true
  14503. },
  14504. ]
  14505. ))
  14506. characterMakers.push(() => makeCharacter(
  14507. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14508. {
  14509. eevee: {
  14510. height: math.unit(2 + 10 / 12, "feet"),
  14511. weight: math.unit(86, "lb"),
  14512. name: "Malgam",
  14513. image: {
  14514. source: "./media/characters/malgam/eevee.svg",
  14515. extra: 218 / 180,
  14516. bottom: 0.2
  14517. }
  14518. },
  14519. sylveon: {
  14520. height: math.unit(4, "feet"),
  14521. weight: math.unit(101, "lb"),
  14522. name: "Future Malgam",
  14523. rename: true,
  14524. image: {
  14525. source: "./media/characters/malgam/sylveon.svg",
  14526. extra: 371 / 325,
  14527. bottom: 0.015
  14528. }
  14529. },
  14530. gigantamax: {
  14531. height: math.unit(50, "feet"),
  14532. name: "Gigantamax Malgam",
  14533. rename: true,
  14534. image: {
  14535. source: "./media/characters/malgam/gigantamax.svg"
  14536. }
  14537. },
  14538. },
  14539. [
  14540. {
  14541. name: "Normal",
  14542. height: math.unit(2 + 10 / 12, "feet"),
  14543. default: true
  14544. },
  14545. ]
  14546. ))
  14547. characterMakers.push(() => makeCharacter(
  14548. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14549. {
  14550. front: {
  14551. height: math.unit(5 + 11 / 12, "feet"),
  14552. weight: math.unit(188, "lb"),
  14553. name: "Front",
  14554. image: {
  14555. source: "./media/characters/fleur/front.svg",
  14556. extra: 309 / 283,
  14557. bottom: 0.007
  14558. }
  14559. },
  14560. },
  14561. [
  14562. {
  14563. name: "Normal",
  14564. height: math.unit(5 + 11 / 12, "feet"),
  14565. default: true
  14566. },
  14567. ]
  14568. ))
  14569. characterMakers.push(() => makeCharacter(
  14570. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14571. {
  14572. front: {
  14573. height: math.unit(5 + 4 / 12, "feet"),
  14574. weight: math.unit(122, "lb"),
  14575. name: "Front",
  14576. image: {
  14577. source: "./media/characters/jude/front.svg",
  14578. extra: 288 / 273,
  14579. bottom: 0.03
  14580. }
  14581. },
  14582. },
  14583. [
  14584. {
  14585. name: "Normal",
  14586. height: math.unit(5 + 4 / 12, "feet"),
  14587. default: true
  14588. },
  14589. ]
  14590. ))
  14591. characterMakers.push(() => makeCharacter(
  14592. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14593. {
  14594. front: {
  14595. height: math.unit(5 + 11 / 12, "feet"),
  14596. weight: math.unit(190, "lb"),
  14597. name: "Front",
  14598. image: {
  14599. source: "./media/characters/seara/front.svg",
  14600. extra: 1,
  14601. bottom: 0.05
  14602. }
  14603. },
  14604. },
  14605. [
  14606. {
  14607. name: "Normal",
  14608. height: math.unit(5 + 11 / 12, "feet"),
  14609. default: true
  14610. },
  14611. ]
  14612. ))
  14613. characterMakers.push(() => makeCharacter(
  14614. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14615. {
  14616. front: {
  14617. height: math.unit(16 + 5 / 12, "feet"),
  14618. weight: math.unit(524, "lb"),
  14619. name: "Front",
  14620. image: {
  14621. source: "./media/characters/caspian/front.svg",
  14622. extra: 1,
  14623. bottom: 0.04
  14624. }
  14625. },
  14626. },
  14627. [
  14628. {
  14629. name: "Normal",
  14630. height: math.unit(16 + 5 / 12, "feet"),
  14631. default: true
  14632. },
  14633. ]
  14634. ))
  14635. characterMakers.push(() => makeCharacter(
  14636. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14637. {
  14638. front: {
  14639. height: math.unit(5 + 7 / 12, "feet"),
  14640. weight: math.unit(170, "lb"),
  14641. name: "Front",
  14642. image: {
  14643. source: "./media/characters/mika/front.svg",
  14644. extra: 1,
  14645. bottom: 0.016
  14646. }
  14647. },
  14648. },
  14649. [
  14650. {
  14651. name: "Normal",
  14652. height: math.unit(5 + 7 / 12, "feet"),
  14653. default: true
  14654. },
  14655. ]
  14656. ))
  14657. characterMakers.push(() => makeCharacter(
  14658. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14659. {
  14660. front: {
  14661. height: math.unit(6 + 2 / 12, "feet"),
  14662. weight: math.unit(268, "lb"),
  14663. name: "Front",
  14664. image: {
  14665. source: "./media/characters/sol/front.svg",
  14666. extra: 247 / 231,
  14667. bottom: 0.05
  14668. }
  14669. },
  14670. },
  14671. [
  14672. {
  14673. name: "Normal",
  14674. height: math.unit(6 + 2 / 12, "feet"),
  14675. default: true
  14676. },
  14677. ]
  14678. ))
  14679. characterMakers.push(() => makeCharacter(
  14680. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14681. {
  14682. buizel: {
  14683. height: math.unit(2 + 5 / 12, "feet"),
  14684. weight: math.unit(87, "lb"),
  14685. name: "Buizel",
  14686. image: {
  14687. source: "./media/characters/umiko/buizel.svg",
  14688. extra: 172 / 157,
  14689. bottom: 0.01
  14690. }
  14691. },
  14692. floatzel: {
  14693. height: math.unit(5 + 9 / 12, "feet"),
  14694. weight: math.unit(250, "lb"),
  14695. name: "Floatzel",
  14696. image: {
  14697. source: "./media/characters/umiko/floatzel.svg",
  14698. extra: 262 / 248
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Normal",
  14705. height: math.unit(2 + 5 / 12, "feet"),
  14706. default: true
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14712. {
  14713. front: {
  14714. height: math.unit(6 + 2 / 12, "feet"),
  14715. weight: math.unit(146, "lb"),
  14716. name: "Front",
  14717. image: {
  14718. source: "./media/characters/iliac/front.svg",
  14719. extra: 389 / 365,
  14720. bottom: 0.035
  14721. }
  14722. },
  14723. },
  14724. [
  14725. {
  14726. name: "Normal",
  14727. height: math.unit(6 + 2 / 12, "feet"),
  14728. default: true
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14734. {
  14735. front: {
  14736. height: math.unit(6, "feet"),
  14737. weight: math.unit(170, "lb"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/topaz/front.svg",
  14741. extra: 317 / 303,
  14742. bottom: 0.055
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Normal",
  14749. height: math.unit(6, "feet"),
  14750. default: true
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14756. {
  14757. front: {
  14758. height: math.unit(5 + 11 / 12, "feet"),
  14759. weight: math.unit(144, "lb"),
  14760. name: "Front",
  14761. image: {
  14762. source: "./media/characters/gabriel/front.svg",
  14763. extra: 285 / 262,
  14764. bottom: 0.004
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Normal",
  14771. height: math.unit(5 + 11 / 12, "feet"),
  14772. default: true
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14778. {
  14779. side: {
  14780. height: math.unit(6 + 5 / 12, "feet"),
  14781. weight: math.unit(300, "lb"),
  14782. name: "Side",
  14783. image: {
  14784. source: "./media/characters/tempest-suicune/side.svg",
  14785. extra: 195 / 154,
  14786. bottom: 0.04
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Normal",
  14793. height: math.unit(6 + 5 / 12, "feet"),
  14794. default: true
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14800. {
  14801. front: {
  14802. height: math.unit(7 + 2 / 12, "feet"),
  14803. weight: math.unit(322, "lb"),
  14804. name: "Front",
  14805. image: {
  14806. source: "./media/characters/vulcan/front.svg",
  14807. extra: 154 / 147,
  14808. bottom: 0.04
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Normal",
  14815. height: math.unit(7 + 2 / 12, "feet"),
  14816. default: true
  14817. },
  14818. ]
  14819. ))
  14820. characterMakers.push(() => makeCharacter(
  14821. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14822. {
  14823. front: {
  14824. height: math.unit(5 + 10 / 12, "feet"),
  14825. weight: math.unit(264, "lb"),
  14826. name: "Front",
  14827. image: {
  14828. source: "./media/characters/gault/front.svg",
  14829. extra: 161 / 140,
  14830. bottom: 0.028
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Normal",
  14837. height: math.unit(5 + 10 / 12, "feet"),
  14838. default: true
  14839. },
  14840. ]
  14841. ))
  14842. characterMakers.push(() => makeCharacter(
  14843. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14844. {
  14845. front: {
  14846. height: math.unit(6, "feet"),
  14847. weight: math.unit(150, "lb"),
  14848. name: "Front",
  14849. image: {
  14850. source: "./media/characters/shard/front.svg",
  14851. extra: 273 / 238,
  14852. bottom: 0.02
  14853. }
  14854. },
  14855. },
  14856. [
  14857. {
  14858. name: "Normal",
  14859. height: math.unit(3 + 6 / 12, "feet"),
  14860. default: true
  14861. },
  14862. ]
  14863. ))
  14864. characterMakers.push(() => makeCharacter(
  14865. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14866. {
  14867. front: {
  14868. height: math.unit(5 + 11 / 12, "feet"),
  14869. weight: math.unit(146, "lb"),
  14870. name: "Front",
  14871. image: {
  14872. source: "./media/characters/ashe/front.svg",
  14873. extra: 400 / 373,
  14874. bottom: 0.01
  14875. }
  14876. },
  14877. },
  14878. [
  14879. {
  14880. name: "Normal",
  14881. height: math.unit(5 + 11 / 12, "feet"),
  14882. default: true
  14883. },
  14884. ]
  14885. ))
  14886. characterMakers.push(() => makeCharacter(
  14887. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14888. {
  14889. front: {
  14890. height: math.unit(5 + 5 / 12, "feet"),
  14891. weight: math.unit(135, "lb"),
  14892. name: "Front",
  14893. image: {
  14894. source: "./media/characters/beatrix/front.svg",
  14895. extra: 392 / 379,
  14896. bottom: 0.01
  14897. }
  14898. },
  14899. },
  14900. [
  14901. {
  14902. name: "Normal",
  14903. height: math.unit(6, "feet"),
  14904. default: true
  14905. },
  14906. ]
  14907. ))
  14908. characterMakers.push(() => makeCharacter(
  14909. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14910. {
  14911. front: {
  14912. height: math.unit(6, "feet"),
  14913. weight: math.unit(150, "lb"),
  14914. name: "Front",
  14915. image: {
  14916. source: "./media/characters/ignatius/front.svg",
  14917. extra: 245 / 222,
  14918. bottom: 0.01
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Normal",
  14925. height: math.unit(5 + 5 / 12, "feet"),
  14926. default: true
  14927. },
  14928. ]
  14929. ))
  14930. characterMakers.push(() => makeCharacter(
  14931. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14932. {
  14933. front: {
  14934. height: math.unit(6 + 2 / 12, "feet"),
  14935. weight: math.unit(138, "lb"),
  14936. name: "Front",
  14937. image: {
  14938. source: "./media/characters/mei-li/front.svg",
  14939. extra: 237 / 229,
  14940. bottom: 0.03
  14941. }
  14942. },
  14943. },
  14944. [
  14945. {
  14946. name: "Normal",
  14947. height: math.unit(6 + 2 / 12, "feet"),
  14948. default: true
  14949. },
  14950. ]
  14951. ))
  14952. characterMakers.push(() => makeCharacter(
  14953. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14954. {
  14955. front: {
  14956. height: math.unit(2 + 4 / 12, "feet"),
  14957. weight: math.unit(62, "lb"),
  14958. name: "Front",
  14959. image: {
  14960. source: "./media/characters/puru/front.svg",
  14961. extra: 206 / 149,
  14962. bottom: 0.06
  14963. }
  14964. },
  14965. },
  14966. [
  14967. {
  14968. name: "Normal",
  14969. height: math.unit(2 + 4 / 12, "feet"),
  14970. default: true
  14971. },
  14972. ]
  14973. ))
  14974. characterMakers.push(() => makeCharacter(
  14975. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  14976. {
  14977. anthro: {
  14978. height: math.unit(5 + 8/12, "feet"),
  14979. weight: math.unit(200, "lb"),
  14980. energyNeed: math.unit(2000, "kcal"),
  14981. name: "Anthro",
  14982. image: {
  14983. source: "./media/characters/kee/anthro.svg",
  14984. extra: 3251/3184,
  14985. bottom: 250/3501
  14986. }
  14987. },
  14988. taur: {
  14989. height: math.unit(11, "feet"),
  14990. weight: math.unit(500, "lb"),
  14991. energyNeed: math.unit(5000, "kcal"),
  14992. name: "Taur",
  14993. image: {
  14994. source: "./media/characters/kee/taur.svg",
  14995. extra: 1362/1320,
  14996. bottom: 83/1445
  14997. }
  14998. },
  14999. },
  15000. [
  15001. {
  15002. name: "Normal",
  15003. height: math.unit(5 + 8/12, "feet"),
  15004. default: true
  15005. },
  15006. {
  15007. name: "Macro",
  15008. height: math.unit(35, "feet")
  15009. },
  15010. ]
  15011. ))
  15012. characterMakers.push(() => makeCharacter(
  15013. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15014. {
  15015. anthro: {
  15016. height: math.unit(7, "feet"),
  15017. weight: math.unit(190, "lb"),
  15018. name: "Anthro",
  15019. image: {
  15020. source: "./media/characters/cobalt-dracha/anthro.svg",
  15021. extra: 231 / 225,
  15022. bottom: 0.04
  15023. }
  15024. },
  15025. feral: {
  15026. height: math.unit(9 + 7 / 12, "feet"),
  15027. weight: math.unit(294, "lb"),
  15028. name: "Feral",
  15029. image: {
  15030. source: "./media/characters/cobalt-dracha/feral.svg",
  15031. extra: 692 / 633,
  15032. bottom: 0.05
  15033. }
  15034. },
  15035. },
  15036. [
  15037. {
  15038. name: "Normal",
  15039. height: math.unit(7, "feet"),
  15040. default: true
  15041. },
  15042. ]
  15043. ))
  15044. characterMakers.push(() => makeCharacter(
  15045. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15046. {
  15047. fallen: {
  15048. height: math.unit(11 + 8 / 12, "feet"),
  15049. weight: math.unit(485, "lb"),
  15050. name: "Java (Fallen)",
  15051. rename: true,
  15052. image: {
  15053. source: "./media/characters/java/fallen.svg",
  15054. extra: 226 / 208,
  15055. bottom: 0.005
  15056. }
  15057. },
  15058. godkin: {
  15059. height: math.unit(10 + 6 / 12, "feet"),
  15060. weight: math.unit(328, "lb"),
  15061. name: "Java (Godkin)",
  15062. rename: true,
  15063. image: {
  15064. source: "./media/characters/java/godkin.svg",
  15065. extra: 270 / 262,
  15066. bottom: 0.02
  15067. }
  15068. },
  15069. },
  15070. [
  15071. {
  15072. name: "Normal",
  15073. height: math.unit(11 + 8 / 12, "feet"),
  15074. default: true
  15075. },
  15076. ]
  15077. ))
  15078. characterMakers.push(() => makeCharacter(
  15079. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15080. {
  15081. front: {
  15082. height: math.unit(7 + 8 / 12, "feet"),
  15083. weight: math.unit(320, "lb"),
  15084. name: "Front",
  15085. image: {
  15086. source: "./media/characters/skoll/front.svg",
  15087. extra: 232 / 220,
  15088. bottom: 0.02
  15089. }
  15090. },
  15091. },
  15092. [
  15093. {
  15094. name: "Normal",
  15095. height: math.unit(7 + 8 / 12, "feet"),
  15096. default: true
  15097. },
  15098. ]
  15099. ))
  15100. characterMakers.push(() => makeCharacter(
  15101. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15102. {
  15103. front: {
  15104. height: math.unit(5 + 9 / 12, "feet"),
  15105. weight: math.unit(170, "lb"),
  15106. name: "Front",
  15107. image: {
  15108. source: "./media/characters/purna/front.svg",
  15109. extra: 239 / 229,
  15110. bottom: 0.01
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(5 + 9 / 12, "feet"),
  15118. default: true
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15124. {
  15125. front: {
  15126. height: math.unit(5 + 9 / 12, "feet"),
  15127. weight: math.unit(142, "lb"),
  15128. name: "Front",
  15129. image: {
  15130. source: "./media/characters/kuva/front.svg",
  15131. extra: 281 / 271,
  15132. bottom: 0.006
  15133. }
  15134. },
  15135. },
  15136. [
  15137. {
  15138. name: "Normal",
  15139. height: math.unit(5 + 9 / 12, "feet"),
  15140. default: true
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15146. {
  15147. anthro: {
  15148. height: math.unit(9 + 2 / 12, "feet"),
  15149. weight: math.unit(270, "lb"),
  15150. name: "Anthro",
  15151. image: {
  15152. source: "./media/characters/embra/anthro.svg",
  15153. extra: 200 / 187,
  15154. bottom: 0.02
  15155. }
  15156. },
  15157. feral: {
  15158. height: math.unit(18 + 8 / 12, "feet"),
  15159. weight: math.unit(576, "lb"),
  15160. name: "Feral",
  15161. image: {
  15162. source: "./media/characters/embra/feral.svg",
  15163. extra: 152 / 137,
  15164. bottom: 0.037
  15165. }
  15166. },
  15167. },
  15168. [
  15169. {
  15170. name: "Normal",
  15171. height: math.unit(9 + 2 / 12, "feet"),
  15172. default: true
  15173. },
  15174. ]
  15175. ))
  15176. characterMakers.push(() => makeCharacter(
  15177. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15178. {
  15179. anthro: {
  15180. height: math.unit(10 + 9 / 12, "feet"),
  15181. weight: math.unit(224, "lb"),
  15182. name: "Anthro",
  15183. image: {
  15184. source: "./media/characters/grottos/anthro.svg",
  15185. extra: 350 / 332,
  15186. bottom: 0.045
  15187. }
  15188. },
  15189. feral: {
  15190. height: math.unit(20 + 7 / 12, "feet"),
  15191. weight: math.unit(629, "lb"),
  15192. name: "Feral",
  15193. image: {
  15194. source: "./media/characters/grottos/feral.svg",
  15195. extra: 207 / 190,
  15196. bottom: 0.05
  15197. }
  15198. },
  15199. },
  15200. [
  15201. {
  15202. name: "Normal",
  15203. height: math.unit(10 + 9 / 12, "feet"),
  15204. default: true
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15210. {
  15211. anthro: {
  15212. height: math.unit(9 + 6 / 12, "feet"),
  15213. weight: math.unit(298, "lb"),
  15214. name: "Anthro",
  15215. image: {
  15216. source: "./media/characters/frifna/anthro.svg",
  15217. extra: 282 / 269,
  15218. bottom: 0.015
  15219. }
  15220. },
  15221. feral: {
  15222. height: math.unit(16 + 2 / 12, "feet"),
  15223. weight: math.unit(624, "lb"),
  15224. name: "Feral",
  15225. image: {
  15226. source: "./media/characters/frifna/feral.svg"
  15227. }
  15228. },
  15229. },
  15230. [
  15231. {
  15232. name: "Normal",
  15233. height: math.unit(9 + 6 / 12, "feet"),
  15234. default: true
  15235. },
  15236. ]
  15237. ))
  15238. characterMakers.push(() => makeCharacter(
  15239. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15240. {
  15241. front: {
  15242. height: math.unit(6 + 2 / 12, "feet"),
  15243. weight: math.unit(168, "lb"),
  15244. name: "Front",
  15245. image: {
  15246. source: "./media/characters/elise/front.svg",
  15247. extra: 276 / 271
  15248. }
  15249. },
  15250. },
  15251. [
  15252. {
  15253. name: "Normal",
  15254. height: math.unit(6 + 2 / 12, "feet"),
  15255. default: true
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15261. {
  15262. front: {
  15263. height: math.unit(5 + 10 / 12, "feet"),
  15264. weight: math.unit(210, "lb"),
  15265. name: "Front",
  15266. image: {
  15267. source: "./media/characters/glade/front.svg",
  15268. extra: 258 / 247,
  15269. bottom: 0.008
  15270. }
  15271. },
  15272. },
  15273. [
  15274. {
  15275. name: "Normal",
  15276. height: math.unit(5 + 10 / 12, "feet"),
  15277. default: true
  15278. },
  15279. ]
  15280. ))
  15281. characterMakers.push(() => makeCharacter(
  15282. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15283. {
  15284. front: {
  15285. height: math.unit(5 + 10 / 12, "feet"),
  15286. weight: math.unit(129, "lb"),
  15287. name: "Front",
  15288. image: {
  15289. source: "./media/characters/rina/front.svg",
  15290. extra: 266 / 255,
  15291. bottom: 0.005
  15292. }
  15293. },
  15294. },
  15295. [
  15296. {
  15297. name: "Normal",
  15298. height: math.unit(5 + 10 / 12, "feet"),
  15299. default: true
  15300. },
  15301. ]
  15302. ))
  15303. characterMakers.push(() => makeCharacter(
  15304. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15305. {
  15306. front: {
  15307. height: math.unit(6 + 1 / 12, "feet"),
  15308. weight: math.unit(192, "lb"),
  15309. name: "Front",
  15310. image: {
  15311. source: "./media/characters/veronica/front.svg",
  15312. extra: 319 / 309,
  15313. bottom: 0.005
  15314. }
  15315. },
  15316. },
  15317. [
  15318. {
  15319. name: "Normal",
  15320. height: math.unit(6 + 1 / 12, "feet"),
  15321. default: true
  15322. },
  15323. ]
  15324. ))
  15325. characterMakers.push(() => makeCharacter(
  15326. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15327. {
  15328. front: {
  15329. height: math.unit(9 + 3 / 12, "feet"),
  15330. weight: math.unit(1100, "lb"),
  15331. name: "Front",
  15332. image: {
  15333. source: "./media/characters/braxton/front.svg",
  15334. extra: 1057 / 984,
  15335. bottom: 0.05
  15336. }
  15337. },
  15338. },
  15339. [
  15340. {
  15341. name: "Normal",
  15342. height: math.unit(9 + 3 / 12, "feet")
  15343. },
  15344. {
  15345. name: "Giant",
  15346. height: math.unit(300, "feet"),
  15347. default: true
  15348. },
  15349. {
  15350. name: "Macro",
  15351. height: math.unit(700, "feet")
  15352. },
  15353. {
  15354. name: "Megamacro",
  15355. height: math.unit(6000, "feet")
  15356. },
  15357. ]
  15358. ))
  15359. characterMakers.push(() => makeCharacter(
  15360. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15361. {
  15362. front: {
  15363. height: math.unit(6 + 7 / 12, "feet"),
  15364. weight: math.unit(150, "lb"),
  15365. name: "Front",
  15366. image: {
  15367. source: "./media/characters/blue-feyonics/front.svg",
  15368. extra: 1403 / 1306,
  15369. bottom: 0.047
  15370. }
  15371. },
  15372. },
  15373. [
  15374. {
  15375. name: "Normal",
  15376. height: math.unit(6 + 7 / 12, "feet"),
  15377. default: true
  15378. },
  15379. ]
  15380. ))
  15381. characterMakers.push(() => makeCharacter(
  15382. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15383. {
  15384. front: {
  15385. height: math.unit(1.8, "meters"),
  15386. weight: math.unit(60, "kg"),
  15387. name: "Front",
  15388. image: {
  15389. source: "./media/characters/maxwell/front.svg",
  15390. extra: 2060 / 1873
  15391. }
  15392. },
  15393. },
  15394. [
  15395. {
  15396. name: "Micro",
  15397. height: math.unit(1, "mm")
  15398. },
  15399. {
  15400. name: "Normal",
  15401. height: math.unit(1.8, "meter"),
  15402. default: true
  15403. },
  15404. {
  15405. name: "Macro",
  15406. height: math.unit(30, "meters")
  15407. },
  15408. {
  15409. name: "Megamacro",
  15410. height: math.unit(10, "km")
  15411. },
  15412. ]
  15413. ))
  15414. characterMakers.push(() => makeCharacter(
  15415. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15416. {
  15417. front: {
  15418. height: math.unit(6, "feet"),
  15419. weight: math.unit(150, "lb"),
  15420. name: "Front",
  15421. image: {
  15422. source: "./media/characters/jack/front.svg",
  15423. extra: 1754 / 1640,
  15424. bottom: 0.01
  15425. }
  15426. },
  15427. },
  15428. [
  15429. {
  15430. name: "Normal",
  15431. height: math.unit(80000, "feet"),
  15432. default: true
  15433. },
  15434. {
  15435. name: "Max size",
  15436. height: math.unit(10, "lightyears")
  15437. },
  15438. ]
  15439. ))
  15440. characterMakers.push(() => makeCharacter(
  15441. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15442. {
  15443. upright: {
  15444. height: math.unit(7, "feet"),
  15445. weight: math.unit(170, "lb"),
  15446. name: "Upright",
  15447. image: {
  15448. source: "./media/characters/cafat/upright.svg",
  15449. bottom: 0.01
  15450. }
  15451. },
  15452. uprightFull: {
  15453. height: math.unit(7, "feet"),
  15454. weight: math.unit(170, "lb"),
  15455. name: "Upright (Full)",
  15456. image: {
  15457. source: "./media/characters/cafat/upright-full.svg",
  15458. bottom: 0.01
  15459. }
  15460. },
  15461. side: {
  15462. height: math.unit(5, "feet"),
  15463. weight: math.unit(150, "lb"),
  15464. name: "Side",
  15465. image: {
  15466. source: "./media/characters/cafat/side.svg"
  15467. }
  15468. },
  15469. },
  15470. [
  15471. {
  15472. name: "Small",
  15473. height: math.unit(7, "feet"),
  15474. default: true
  15475. },
  15476. {
  15477. name: "Large",
  15478. height: math.unit(15.5, "feet")
  15479. },
  15480. ]
  15481. ))
  15482. characterMakers.push(() => makeCharacter(
  15483. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15484. {
  15485. front: {
  15486. height: math.unit(6, "feet"),
  15487. weight: math.unit(150, "lb"),
  15488. name: "Front",
  15489. image: {
  15490. source: "./media/characters/verin-raharra/front.svg",
  15491. extra: 5019 / 4835,
  15492. bottom: 0.023
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Normal",
  15499. height: math.unit(7 + 5 / 12, "feet"),
  15500. default: true
  15501. },
  15502. {
  15503. name: "Upsized",
  15504. height: math.unit(20, "feet")
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15510. {
  15511. front: {
  15512. height: math.unit(7, "feet"),
  15513. weight: math.unit(230, "lb"),
  15514. name: "Front",
  15515. image: {
  15516. source: "./media/characters/nakata/front.svg",
  15517. extra: 1.005,
  15518. bottom: 0.01
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Normal",
  15525. height: math.unit(7, "feet"),
  15526. default: true
  15527. },
  15528. {
  15529. name: "Big",
  15530. height: math.unit(14, "feet")
  15531. },
  15532. {
  15533. name: "Macro",
  15534. height: math.unit(400, "feet")
  15535. },
  15536. ]
  15537. ))
  15538. characterMakers.push(() => makeCharacter(
  15539. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15540. {
  15541. front: {
  15542. height: math.unit(4.91, "feet"),
  15543. weight: math.unit(100, "lb"),
  15544. name: "Front",
  15545. image: {
  15546. source: "./media/characters/lily/front.svg",
  15547. extra: 1585 / 1415,
  15548. bottom: 0.02
  15549. }
  15550. },
  15551. },
  15552. [
  15553. {
  15554. name: "Normal",
  15555. height: math.unit(4.91, "feet"),
  15556. default: true
  15557. },
  15558. ]
  15559. ))
  15560. characterMakers.push(() => makeCharacter(
  15561. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15562. {
  15563. laying: {
  15564. height: math.unit(4 + 4 / 12, "feet"),
  15565. weight: math.unit(600, "lb"),
  15566. name: "Laying",
  15567. image: {
  15568. source: "./media/characters/sheila/laying.svg",
  15569. extra: 1333 / 1265,
  15570. bottom: 0.16
  15571. }
  15572. },
  15573. },
  15574. [
  15575. {
  15576. name: "Normal",
  15577. height: math.unit(4 + 4 / 12, "feet"),
  15578. default: true
  15579. },
  15580. ]
  15581. ))
  15582. characterMakers.push(() => makeCharacter(
  15583. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15584. {
  15585. front: {
  15586. height: math.unit(6, "feet"),
  15587. weight: math.unit(190, "lb"),
  15588. name: "Front",
  15589. image: {
  15590. source: "./media/characters/sax/front.svg",
  15591. extra: 1187 / 973,
  15592. bottom: 0.042
  15593. }
  15594. },
  15595. },
  15596. [
  15597. {
  15598. name: "Micro",
  15599. height: math.unit(4, "inches"),
  15600. default: true
  15601. },
  15602. ]
  15603. ))
  15604. characterMakers.push(() => makeCharacter(
  15605. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15606. {
  15607. front: {
  15608. height: math.unit(6, "feet"),
  15609. weight: math.unit(150, "lb"),
  15610. name: "Front",
  15611. image: {
  15612. source: "./media/characters/pandora/front.svg",
  15613. extra: 2720 / 2556,
  15614. bottom: 0.015
  15615. }
  15616. },
  15617. back: {
  15618. height: math.unit(6, "feet"),
  15619. weight: math.unit(150, "lb"),
  15620. name: "Back",
  15621. image: {
  15622. source: "./media/characters/pandora/back.svg",
  15623. extra: 2720 / 2556,
  15624. bottom: 0.01
  15625. }
  15626. },
  15627. beans: {
  15628. height: math.unit(6 / 8, "feet"),
  15629. name: "Beans",
  15630. image: {
  15631. source: "./media/characters/pandora/beans.svg"
  15632. }
  15633. },
  15634. skirt: {
  15635. height: math.unit(6, "feet"),
  15636. weight: math.unit(150, "lb"),
  15637. name: "Skirt",
  15638. image: {
  15639. source: "./media/characters/pandora/skirt.svg",
  15640. extra: 1622 / 1525,
  15641. bottom: 0.015
  15642. }
  15643. },
  15644. hoodie: {
  15645. height: math.unit(6, "feet"),
  15646. weight: math.unit(150, "lb"),
  15647. name: "Hoodie",
  15648. image: {
  15649. source: "./media/characters/pandora/hoodie.svg",
  15650. extra: 1622 / 1525,
  15651. bottom: 0.015
  15652. }
  15653. },
  15654. casual: {
  15655. height: math.unit(6, "feet"),
  15656. weight: math.unit(150, "lb"),
  15657. name: "Casual",
  15658. image: {
  15659. source: "./media/characters/pandora/casual.svg",
  15660. extra: 1622 / 1525,
  15661. bottom: 0.015
  15662. }
  15663. },
  15664. },
  15665. [
  15666. {
  15667. name: "Normal",
  15668. height: math.unit(6, "feet")
  15669. },
  15670. {
  15671. name: "Big Steppy",
  15672. height: math.unit(1, "km"),
  15673. default: true
  15674. },
  15675. ]
  15676. ))
  15677. characterMakers.push(() => makeCharacter(
  15678. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15679. {
  15680. side: {
  15681. height: math.unit(10, "feet"),
  15682. weight: math.unit(800, "kg"),
  15683. name: "Side",
  15684. image: {
  15685. source: "./media/characters/venio-darcony/side.svg",
  15686. extra: 1373 / 1003,
  15687. bottom: 0.037
  15688. }
  15689. },
  15690. front: {
  15691. height: math.unit(19, "feet"),
  15692. weight: math.unit(800, "kg"),
  15693. name: "Front",
  15694. image: {
  15695. source: "./media/characters/venio-darcony/front.svg"
  15696. }
  15697. },
  15698. back: {
  15699. height: math.unit(19, "feet"),
  15700. weight: math.unit(800, "kg"),
  15701. name: "Back",
  15702. image: {
  15703. source: "./media/characters/venio-darcony/back.svg"
  15704. }
  15705. },
  15706. sideNsfw: {
  15707. height: math.unit(10, "feet"),
  15708. weight: math.unit(800, "kg"),
  15709. name: "Side (NSFW)",
  15710. image: {
  15711. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15712. extra: 1373 / 1003,
  15713. bottom: 0.037
  15714. }
  15715. },
  15716. frontNsfw: {
  15717. height: math.unit(19, "feet"),
  15718. weight: math.unit(800, "kg"),
  15719. name: "Front (NSFW)",
  15720. image: {
  15721. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15722. }
  15723. },
  15724. backNsfw: {
  15725. height: math.unit(19, "feet"),
  15726. weight: math.unit(800, "kg"),
  15727. name: "Back (NSFW)",
  15728. image: {
  15729. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15730. }
  15731. },
  15732. sideArmored: {
  15733. height: math.unit(10, "feet"),
  15734. weight: math.unit(800, "kg"),
  15735. name: "Side (Armored)",
  15736. image: {
  15737. source: "./media/characters/venio-darcony/side-armored.svg",
  15738. extra: 1373 / 1003,
  15739. bottom: 0.037
  15740. }
  15741. },
  15742. frontArmored: {
  15743. height: math.unit(19, "feet"),
  15744. weight: math.unit(900, "kg"),
  15745. name: "Front (Armored)",
  15746. image: {
  15747. source: "./media/characters/venio-darcony/front-armored.svg"
  15748. }
  15749. },
  15750. backArmored: {
  15751. height: math.unit(19, "feet"),
  15752. weight: math.unit(900, "kg"),
  15753. name: "Back (Armored)",
  15754. image: {
  15755. source: "./media/characters/venio-darcony/back-armored.svg"
  15756. }
  15757. },
  15758. sword: {
  15759. height: math.unit(10, "feet"),
  15760. weight: math.unit(50, "lb"),
  15761. name: "Sword",
  15762. image: {
  15763. source: "./media/characters/venio-darcony/sword.svg"
  15764. }
  15765. },
  15766. },
  15767. [
  15768. {
  15769. name: "Normal",
  15770. height: math.unit(10, "feet")
  15771. },
  15772. {
  15773. name: "Macro",
  15774. height: math.unit(130, "feet"),
  15775. default: true
  15776. },
  15777. {
  15778. name: "Macro+",
  15779. height: math.unit(240, "feet")
  15780. },
  15781. ]
  15782. ))
  15783. characterMakers.push(() => makeCharacter(
  15784. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15785. {
  15786. front: {
  15787. height: math.unit(6, "feet"),
  15788. weight: math.unit(150, "lb"),
  15789. name: "Front",
  15790. image: {
  15791. source: "./media/characters/veski/front.svg",
  15792. extra: 1299 / 1225,
  15793. bottom: 0.04
  15794. }
  15795. },
  15796. back: {
  15797. height: math.unit(6, "feet"),
  15798. weight: math.unit(150, "lb"),
  15799. name: "Back",
  15800. image: {
  15801. source: "./media/characters/veski/back.svg",
  15802. extra: 1299 / 1225,
  15803. bottom: 0.008
  15804. }
  15805. },
  15806. maw: {
  15807. height: math.unit(1.5 * 1.21, "feet"),
  15808. name: "Maw",
  15809. image: {
  15810. source: "./media/characters/veski/maw.svg"
  15811. }
  15812. },
  15813. },
  15814. [
  15815. {
  15816. name: "Macro",
  15817. height: math.unit(2, "km"),
  15818. default: true
  15819. },
  15820. ]
  15821. ))
  15822. characterMakers.push(() => makeCharacter(
  15823. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15824. {
  15825. front: {
  15826. height: math.unit(5 + 7 / 12, "feet"),
  15827. name: "Front",
  15828. image: {
  15829. source: "./media/characters/isabelle/front.svg",
  15830. extra: 2130 / 1976,
  15831. bottom: 0.05
  15832. }
  15833. },
  15834. },
  15835. [
  15836. {
  15837. name: "Supermicro",
  15838. height: math.unit(10, "micrometers")
  15839. },
  15840. {
  15841. name: "Micro",
  15842. height: math.unit(1, "inch")
  15843. },
  15844. {
  15845. name: "Tiny",
  15846. height: math.unit(5, "inches")
  15847. },
  15848. {
  15849. name: "Standard",
  15850. height: math.unit(5 + 7 / 12, "inches")
  15851. },
  15852. {
  15853. name: "Macro",
  15854. height: math.unit(80, "meters"),
  15855. default: true
  15856. },
  15857. {
  15858. name: "Megamacro",
  15859. height: math.unit(250, "meters")
  15860. },
  15861. {
  15862. name: "Gigamacro",
  15863. height: math.unit(5, "km")
  15864. },
  15865. {
  15866. name: "Cosmic",
  15867. height: math.unit(2.5e6, "miles")
  15868. },
  15869. ]
  15870. ))
  15871. characterMakers.push(() => makeCharacter(
  15872. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15873. {
  15874. front: {
  15875. height: math.unit(6, "feet"),
  15876. weight: math.unit(150, "lb"),
  15877. name: "Front",
  15878. image: {
  15879. source: "./media/characters/hanzo/front.svg",
  15880. extra: 374 / 344,
  15881. bottom: 0.02
  15882. }
  15883. },
  15884. },
  15885. [
  15886. {
  15887. name: "Normal",
  15888. height: math.unit(8, "feet"),
  15889. default: true
  15890. },
  15891. ]
  15892. ))
  15893. characterMakers.push(() => makeCharacter(
  15894. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15895. {
  15896. front: {
  15897. height: math.unit(7, "feet"),
  15898. weight: math.unit(130, "lb"),
  15899. name: "Front",
  15900. image: {
  15901. source: "./media/characters/anna/front.svg",
  15902. extra: 169 / 145,
  15903. bottom: 0.06
  15904. }
  15905. },
  15906. full: {
  15907. height: math.unit(4.96, "feet"),
  15908. weight: math.unit(220, "lb"),
  15909. name: "Full",
  15910. image: {
  15911. source: "./media/characters/anna/full.svg",
  15912. extra: 138 / 114,
  15913. bottom: 0.15
  15914. }
  15915. },
  15916. tongue: {
  15917. height: math.unit(2.53, "feet"),
  15918. name: "Tongue",
  15919. image: {
  15920. source: "./media/characters/anna/tongue.svg"
  15921. }
  15922. },
  15923. },
  15924. [
  15925. {
  15926. name: "Normal",
  15927. height: math.unit(7, "feet"),
  15928. default: true
  15929. },
  15930. ]
  15931. ))
  15932. characterMakers.push(() => makeCharacter(
  15933. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15934. {
  15935. front: {
  15936. height: math.unit(7, "feet"),
  15937. weight: math.unit(150, "lb"),
  15938. name: "Front",
  15939. image: {
  15940. source: "./media/characters/ian-corvid/front.svg",
  15941. extra: 150 / 142,
  15942. bottom: 0.02
  15943. }
  15944. },
  15945. back: {
  15946. height: math.unit(7, "feet"),
  15947. weight: math.unit(150, "lb"),
  15948. name: "Back",
  15949. image: {
  15950. source: "./media/characters/ian-corvid/back.svg",
  15951. extra: 150 / 143,
  15952. bottom: 0.01
  15953. }
  15954. },
  15955. stomping: {
  15956. height: math.unit(7, "feet"),
  15957. weight: math.unit(150, "lb"),
  15958. name: "Stomping",
  15959. image: {
  15960. source: "./media/characters/ian-corvid/stomping.svg",
  15961. extra: 76 / 72
  15962. }
  15963. },
  15964. sitting: {
  15965. height: math.unit(7 / 1.8, "feet"),
  15966. weight: math.unit(150, "lb"),
  15967. name: "Sitting",
  15968. image: {
  15969. source: "./media/characters/ian-corvid/sitting.svg",
  15970. extra: 1400 / 1269,
  15971. bottom: 0.15
  15972. }
  15973. },
  15974. },
  15975. [
  15976. {
  15977. name: "Tiny Microw",
  15978. height: math.unit(1, "inch")
  15979. },
  15980. {
  15981. name: "Microw",
  15982. height: math.unit(6, "inches")
  15983. },
  15984. {
  15985. name: "Crow",
  15986. height: math.unit(7 + 1 / 12, "feet"),
  15987. default: true
  15988. },
  15989. {
  15990. name: "Macrow",
  15991. height: math.unit(176, "feet")
  15992. },
  15993. ]
  15994. ))
  15995. characterMakers.push(() => makeCharacter(
  15996. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15997. {
  15998. front: {
  15999. height: math.unit(5 + 7 / 12, "feet"),
  16000. weight: math.unit(147, "lb"),
  16001. name: "Front",
  16002. image: {
  16003. source: "./media/characters/natalie-kellon/front.svg",
  16004. extra: 1214 / 1141,
  16005. bottom: 0.02
  16006. }
  16007. },
  16008. },
  16009. [
  16010. {
  16011. name: "Micro",
  16012. height: math.unit(1 / 16, "inch")
  16013. },
  16014. {
  16015. name: "Tiny",
  16016. height: math.unit(4, "inches")
  16017. },
  16018. {
  16019. name: "Normal",
  16020. height: math.unit(5 + 7 / 12, "feet"),
  16021. default: true
  16022. },
  16023. {
  16024. name: "Amazon",
  16025. height: math.unit(12, "feet")
  16026. },
  16027. {
  16028. name: "Giantess",
  16029. height: math.unit(160, "meters")
  16030. },
  16031. {
  16032. name: "Titaness",
  16033. height: math.unit(800, "meters")
  16034. },
  16035. ]
  16036. ))
  16037. characterMakers.push(() => makeCharacter(
  16038. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16039. {
  16040. front: {
  16041. height: math.unit(6, "feet"),
  16042. weight: math.unit(150, "lb"),
  16043. name: "Front",
  16044. image: {
  16045. source: "./media/characters/alluria/front.svg",
  16046. extra: 806 / 738,
  16047. bottom: 0.01
  16048. }
  16049. },
  16050. side: {
  16051. height: math.unit(6, "feet"),
  16052. weight: math.unit(150, "lb"),
  16053. name: "Side",
  16054. image: {
  16055. source: "./media/characters/alluria/side.svg",
  16056. extra: 800 / 750,
  16057. }
  16058. },
  16059. back: {
  16060. height: math.unit(6, "feet"),
  16061. weight: math.unit(150, "lb"),
  16062. name: "Back",
  16063. image: {
  16064. source: "./media/characters/alluria/back.svg",
  16065. extra: 806 / 738,
  16066. }
  16067. },
  16068. frontMaid: {
  16069. height: math.unit(6, "feet"),
  16070. weight: math.unit(150, "lb"),
  16071. name: "Front (Maid)",
  16072. image: {
  16073. source: "./media/characters/alluria/front-maid.svg",
  16074. extra: 806 / 738,
  16075. bottom: 0.01
  16076. }
  16077. },
  16078. sideMaid: {
  16079. height: math.unit(6, "feet"),
  16080. weight: math.unit(150, "lb"),
  16081. name: "Side (Maid)",
  16082. image: {
  16083. source: "./media/characters/alluria/side-maid.svg",
  16084. extra: 800 / 750,
  16085. bottom: 0.005
  16086. }
  16087. },
  16088. backMaid: {
  16089. height: math.unit(6, "feet"),
  16090. weight: math.unit(150, "lb"),
  16091. name: "Back (Maid)",
  16092. image: {
  16093. source: "./media/characters/alluria/back-maid.svg",
  16094. extra: 806 / 738,
  16095. }
  16096. },
  16097. },
  16098. [
  16099. {
  16100. name: "Micro",
  16101. height: math.unit(6, "inches"),
  16102. default: true
  16103. },
  16104. ]
  16105. ))
  16106. characterMakers.push(() => makeCharacter(
  16107. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16108. {
  16109. front: {
  16110. height: math.unit(6, "feet"),
  16111. weight: math.unit(150, "lb"),
  16112. name: "Front",
  16113. image: {
  16114. source: "./media/characters/kyle/front.svg",
  16115. extra: 1069 / 962,
  16116. bottom: 77.228 / 1727.45
  16117. }
  16118. },
  16119. },
  16120. [
  16121. {
  16122. name: "Macro",
  16123. height: math.unit(150, "feet"),
  16124. default: true
  16125. },
  16126. ]
  16127. ))
  16128. characterMakers.push(() => makeCharacter(
  16129. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16130. {
  16131. front: {
  16132. height: math.unit(6, "feet"),
  16133. weight: math.unit(300, "lb"),
  16134. name: "Front",
  16135. image: {
  16136. source: "./media/characters/duncan/front.svg",
  16137. extra: 1650 / 1482,
  16138. bottom: 0.05
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Macro",
  16145. height: math.unit(100, "feet"),
  16146. default: true
  16147. },
  16148. ]
  16149. ))
  16150. characterMakers.push(() => makeCharacter(
  16151. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16152. {
  16153. front: {
  16154. height: math.unit(5 + 4 / 12, "feet"),
  16155. weight: math.unit(220, "lb"),
  16156. name: "Front",
  16157. image: {
  16158. source: "./media/characters/memory/front.svg",
  16159. extra: 3641 / 3545,
  16160. bottom: 0.03
  16161. }
  16162. },
  16163. back: {
  16164. height: math.unit(5 + 4 / 12, "feet"),
  16165. weight: math.unit(220, "lb"),
  16166. name: "Back",
  16167. image: {
  16168. source: "./media/characters/memory/back.svg",
  16169. extra: 3641 / 3545,
  16170. bottom: 0.025
  16171. }
  16172. },
  16173. frontSkirt: {
  16174. height: math.unit(5 + 4 / 12, "feet"),
  16175. weight: math.unit(220, "lb"),
  16176. name: "Front (Skirt)",
  16177. image: {
  16178. source: "./media/characters/memory/front-skirt.svg",
  16179. extra: 3641 / 3545,
  16180. bottom: 0.03
  16181. }
  16182. },
  16183. frontDress: {
  16184. height: math.unit(5 + 4 / 12, "feet"),
  16185. weight: math.unit(220, "lb"),
  16186. name: "Front (Dress)",
  16187. image: {
  16188. source: "./media/characters/memory/front-dress.svg",
  16189. extra: 3641 / 3545,
  16190. bottom: 0.03
  16191. }
  16192. },
  16193. },
  16194. [
  16195. {
  16196. name: "Micro",
  16197. height: math.unit(6, "inches"),
  16198. default: true
  16199. },
  16200. {
  16201. name: "Normal",
  16202. height: math.unit(5 + 4 / 12, "feet")
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16208. {
  16209. front: {
  16210. height: math.unit(4 + 11 / 12, "feet"),
  16211. weight: math.unit(100, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/luno/front.svg",
  16215. extra: 1535 / 1487,
  16216. bottom: 0.03
  16217. }
  16218. },
  16219. },
  16220. [
  16221. {
  16222. name: "Micro",
  16223. height: math.unit(3, "inches")
  16224. },
  16225. {
  16226. name: "Normal",
  16227. height: math.unit(4 + 11 / 12, "feet"),
  16228. default: true
  16229. },
  16230. {
  16231. name: "Macro",
  16232. height: math.unit(300, "feet")
  16233. },
  16234. {
  16235. name: "Megamacro",
  16236. height: math.unit(700, "miles")
  16237. },
  16238. ]
  16239. ))
  16240. characterMakers.push(() => makeCharacter(
  16241. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16242. {
  16243. front: {
  16244. height: math.unit(6 + 2 / 12, "feet"),
  16245. weight: math.unit(170, "lb"),
  16246. name: "Front",
  16247. image: {
  16248. source: "./media/characters/jamesy/front.svg",
  16249. extra: 440 / 382,
  16250. bottom: 0.005
  16251. }
  16252. },
  16253. },
  16254. [
  16255. {
  16256. name: "Micro",
  16257. height: math.unit(3, "inches")
  16258. },
  16259. {
  16260. name: "Normal",
  16261. height: math.unit(6 + 2 / 12, "feet"),
  16262. default: true
  16263. },
  16264. {
  16265. name: "Macro",
  16266. height: math.unit(300, "feet")
  16267. },
  16268. {
  16269. name: "Megamacro",
  16270. height: math.unit(700, "miles")
  16271. },
  16272. ]
  16273. ))
  16274. characterMakers.push(() => makeCharacter(
  16275. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16276. {
  16277. front: {
  16278. height: math.unit(6, "feet"),
  16279. weight: math.unit(160, "lb"),
  16280. name: "Front",
  16281. image: {
  16282. source: "./media/characters/mark/front.svg",
  16283. extra: 3300 / 3100,
  16284. bottom: 136.42 / 3440.47
  16285. }
  16286. },
  16287. },
  16288. [
  16289. {
  16290. name: "Macro",
  16291. height: math.unit(120, "meters")
  16292. },
  16293. {
  16294. name: "Bigger Macro",
  16295. height: math.unit(350, "meters")
  16296. },
  16297. {
  16298. name: "Megamacro",
  16299. height: math.unit(8, "km"),
  16300. default: true
  16301. },
  16302. {
  16303. name: "Continental",
  16304. height: math.unit(4550, "km")
  16305. },
  16306. {
  16307. name: "Planetary",
  16308. height: math.unit(65000, "km")
  16309. },
  16310. ]
  16311. ))
  16312. characterMakers.push(() => makeCharacter(
  16313. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16314. {
  16315. front: {
  16316. height: math.unit(6, "feet"),
  16317. weight: math.unit(400, "lb"),
  16318. name: "Front",
  16319. image: {
  16320. source: "./media/characters/mac/front.svg",
  16321. extra: 1048 / 987.7,
  16322. bottom: 60 / 1107.6,
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Macro",
  16329. height: math.unit(500, "feet"),
  16330. default: true
  16331. },
  16332. ]
  16333. ))
  16334. characterMakers.push(() => makeCharacter(
  16335. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16336. {
  16337. front: {
  16338. height: math.unit(5 + 2 / 12, "feet"),
  16339. weight: math.unit(190, "lb"),
  16340. name: "Front",
  16341. image: {
  16342. source: "./media/characters/bari/front.svg",
  16343. extra: 3156 / 2880,
  16344. bottom: 0.03
  16345. }
  16346. },
  16347. back: {
  16348. height: math.unit(5 + 2 / 12, "feet"),
  16349. weight: math.unit(190, "lb"),
  16350. name: "Back",
  16351. image: {
  16352. source: "./media/characters/bari/back.svg",
  16353. extra: 3260 / 2834,
  16354. bottom: 0.025
  16355. }
  16356. },
  16357. frontPlush: {
  16358. height: math.unit(5 + 2 / 12, "feet"),
  16359. weight: math.unit(190, "lb"),
  16360. name: "Front (Plush)",
  16361. image: {
  16362. source: "./media/characters/bari/front-plush.svg",
  16363. extra: 1112 / 1061,
  16364. bottom: 0.002
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Micro",
  16371. height: math.unit(3, "inches")
  16372. },
  16373. {
  16374. name: "Normal",
  16375. height: math.unit(5 + 2 / 12, "feet"),
  16376. default: true
  16377. },
  16378. {
  16379. name: "Macro",
  16380. height: math.unit(20, "feet")
  16381. },
  16382. ]
  16383. ))
  16384. characterMakers.push(() => makeCharacter(
  16385. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16386. {
  16387. front: {
  16388. height: math.unit(6 + 1 / 12, "feet"),
  16389. weight: math.unit(275, "lb"),
  16390. name: "Front",
  16391. image: {
  16392. source: "./media/characters/hunter-misha-raven/front.svg"
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Mortal",
  16399. height: math.unit(6 + 1 / 12, "feet")
  16400. },
  16401. {
  16402. name: "Divine",
  16403. height: math.unit(1.12134e34, "parsecs"),
  16404. default: true
  16405. },
  16406. ]
  16407. ))
  16408. characterMakers.push(() => makeCharacter(
  16409. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16410. {
  16411. front: {
  16412. height: math.unit(6 + 3 / 12, "feet"),
  16413. weight: math.unit(220, "lb"),
  16414. name: "Front",
  16415. image: {
  16416. source: "./media/characters/max-calore/front.svg",
  16417. extra: 1700 / 1648,
  16418. bottom: 0.01
  16419. }
  16420. },
  16421. back: {
  16422. height: math.unit(6 + 3 / 12, "feet"),
  16423. weight: math.unit(220, "lb"),
  16424. name: "Back",
  16425. image: {
  16426. source: "./media/characters/max-calore/back.svg",
  16427. extra: 1700 / 1648,
  16428. bottom: 0.01
  16429. }
  16430. },
  16431. },
  16432. [
  16433. {
  16434. name: "Normal",
  16435. height: math.unit(6 + 3 / 12, "feet"),
  16436. default: true
  16437. },
  16438. ]
  16439. ))
  16440. characterMakers.push(() => makeCharacter(
  16441. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16442. {
  16443. side: {
  16444. height: math.unit(2 + 8 / 12, "feet"),
  16445. weight: math.unit(99, "lb"),
  16446. name: "Side",
  16447. image: {
  16448. source: "./media/characters/aspen/side.svg",
  16449. extra: 152 / 138,
  16450. bottom: 0.032
  16451. }
  16452. },
  16453. },
  16454. [
  16455. {
  16456. name: "Normal",
  16457. height: math.unit(2 + 8 / 12, "feet"),
  16458. default: true
  16459. },
  16460. ]
  16461. ))
  16462. characterMakers.push(() => makeCharacter(
  16463. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16464. {
  16465. side: {
  16466. height: math.unit(3 + 2 / 12, "feet"),
  16467. weight: math.unit(224, "lb"),
  16468. name: "Side",
  16469. image: {
  16470. source: "./media/characters/sheila-feral-wolf/side.svg",
  16471. extra: 179 / 166,
  16472. bottom: 0.03
  16473. }
  16474. },
  16475. },
  16476. [
  16477. {
  16478. name: "Normal",
  16479. height: math.unit(3 + 2 / 12, "feet"),
  16480. default: true
  16481. },
  16482. ]
  16483. ))
  16484. characterMakers.push(() => makeCharacter(
  16485. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16486. {
  16487. side: {
  16488. height: math.unit(1 + 9 / 12, "feet"),
  16489. weight: math.unit(38, "lb"),
  16490. name: "Side",
  16491. image: {
  16492. source: "./media/characters/michelle/side.svg",
  16493. extra: 147 / 136.7,
  16494. bottom: 0.03
  16495. }
  16496. },
  16497. },
  16498. [
  16499. {
  16500. name: "Normal",
  16501. height: math.unit(1 + 9 / 12, "feet"),
  16502. default: true
  16503. },
  16504. ]
  16505. ))
  16506. characterMakers.push(() => makeCharacter(
  16507. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16508. {
  16509. front: {
  16510. height: math.unit(1 + 1 / 12, "feet"),
  16511. weight: math.unit(18, "lb"),
  16512. name: "Front",
  16513. image: {
  16514. source: "./media/characters/nino/front.svg"
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(1 + 1 / 12, "feet"),
  16522. default: true
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16528. {
  16529. front: {
  16530. height: math.unit(1, "feet"),
  16531. weight: math.unit(16, "lb"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/viola/front.svg"
  16535. }
  16536. },
  16537. },
  16538. [
  16539. {
  16540. name: "Normal",
  16541. height: math.unit(1, "feet"),
  16542. default: true
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16548. {
  16549. front: {
  16550. height: math.unit(6 + 5 / 12, "feet"),
  16551. weight: math.unit(580, "lb"),
  16552. name: "Front",
  16553. image: {
  16554. source: "./media/characters/atlas/front.svg",
  16555. extra: 298.5 / 290,
  16556. bottom: 0.015
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(6 + 5 / 12, "feet"),
  16564. default: true
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16570. {
  16571. side: {
  16572. height: math.unit(1 + 10 / 12, "feet"),
  16573. weight: math.unit(25, "lb"),
  16574. name: "Side",
  16575. image: {
  16576. source: "./media/characters/davy/side.svg",
  16577. extra: 200 / 170,
  16578. bottom: 0.01
  16579. }
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Normal",
  16585. height: math.unit(1 + 10 / 12, "feet"),
  16586. default: true
  16587. },
  16588. ]
  16589. ))
  16590. characterMakers.push(() => makeCharacter(
  16591. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16592. {
  16593. side: {
  16594. height: math.unit(4 + 8 / 12, "feet"),
  16595. weight: math.unit(166, "lb"),
  16596. name: "Side",
  16597. image: {
  16598. source: "./media/characters/fiona/side.svg",
  16599. extra: 232 / 220,
  16600. bottom: 0.03
  16601. }
  16602. },
  16603. },
  16604. [
  16605. {
  16606. name: "Normal",
  16607. height: math.unit(4 + 8 / 12, "feet"),
  16608. default: true
  16609. },
  16610. ]
  16611. ))
  16612. characterMakers.push(() => makeCharacter(
  16613. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16614. {
  16615. front: {
  16616. height: math.unit(2, "feet"),
  16617. weight: math.unit(62, "lb"),
  16618. name: "Front",
  16619. image: {
  16620. source: "./media/characters/lyla/front.svg",
  16621. bottom: 0.1
  16622. }
  16623. },
  16624. },
  16625. [
  16626. {
  16627. name: "Normal",
  16628. height: math.unit(2, "feet"),
  16629. default: true
  16630. },
  16631. ]
  16632. ))
  16633. characterMakers.push(() => makeCharacter(
  16634. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16635. {
  16636. side: {
  16637. height: math.unit(1.8, "feet"),
  16638. weight: math.unit(44, "lb"),
  16639. name: "Side",
  16640. image: {
  16641. source: "./media/characters/perseus/side.svg",
  16642. bottom: 0.21
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Normal",
  16649. height: math.unit(1.8, "feet"),
  16650. default: true
  16651. },
  16652. ]
  16653. ))
  16654. characterMakers.push(() => makeCharacter(
  16655. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16656. {
  16657. side: {
  16658. height: math.unit(4 + 2 / 12, "feet"),
  16659. weight: math.unit(20, "lb"),
  16660. name: "Side",
  16661. image: {
  16662. source: "./media/characters/remus/side.svg"
  16663. }
  16664. },
  16665. },
  16666. [
  16667. {
  16668. name: "Normal",
  16669. height: math.unit(4 + 2 / 12, "feet"),
  16670. default: true
  16671. },
  16672. ]
  16673. ))
  16674. characterMakers.push(() => makeCharacter(
  16675. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16676. {
  16677. front: {
  16678. height: math.unit(4 + 11 / 12, "feet"),
  16679. weight: math.unit(114, "lb"),
  16680. name: "Front",
  16681. image: {
  16682. source: "./media/characters/raf/front.svg",
  16683. bottom: 20.5 / 1863
  16684. }
  16685. },
  16686. side: {
  16687. height: math.unit(4 + 11 / 12, "feet"),
  16688. weight: math.unit(114, "lb"),
  16689. name: "Side",
  16690. image: {
  16691. source: "./media/characters/raf/side.svg",
  16692. bottom: 22 / 1822
  16693. }
  16694. },
  16695. },
  16696. [
  16697. {
  16698. name: "Micro",
  16699. height: math.unit(2, "inches")
  16700. },
  16701. {
  16702. name: "Normal",
  16703. height: math.unit(4 + 11 / 12, "feet"),
  16704. default: true
  16705. },
  16706. {
  16707. name: "Macro",
  16708. height: math.unit(70, "feet")
  16709. },
  16710. ]
  16711. ))
  16712. characterMakers.push(() => makeCharacter(
  16713. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16714. {
  16715. front: {
  16716. height: math.unit(1.5, "meters"),
  16717. weight: math.unit(68, "kg"),
  16718. name: "Front",
  16719. image: {
  16720. source: "./media/characters/liam-einarr/front.svg",
  16721. extra: 2822 / 2666
  16722. }
  16723. },
  16724. back: {
  16725. height: math.unit(1.5, "meters"),
  16726. weight: math.unit(68, "kg"),
  16727. name: "Back",
  16728. image: {
  16729. source: "./media/characters/liam-einarr/back.svg",
  16730. extra: 2822 / 2666,
  16731. bottom: 0.015
  16732. }
  16733. },
  16734. },
  16735. [
  16736. {
  16737. name: "Normal",
  16738. height: math.unit(1.5, "meters"),
  16739. default: true
  16740. },
  16741. {
  16742. name: "Macro",
  16743. height: math.unit(150, "meters")
  16744. },
  16745. {
  16746. name: "Megamacro",
  16747. height: math.unit(35, "km")
  16748. },
  16749. ]
  16750. ))
  16751. characterMakers.push(() => makeCharacter(
  16752. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16753. {
  16754. front: {
  16755. height: math.unit(6, "feet"),
  16756. weight: math.unit(75, "kg"),
  16757. name: "Front",
  16758. image: {
  16759. source: "./media/characters/linda/front.svg",
  16760. extra: 930 / 874,
  16761. bottom: 0.004
  16762. }
  16763. },
  16764. },
  16765. [
  16766. {
  16767. name: "Normal",
  16768. height: math.unit(6, "feet"),
  16769. default: true
  16770. },
  16771. ]
  16772. ))
  16773. characterMakers.push(() => makeCharacter(
  16774. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16775. {
  16776. front: {
  16777. height: math.unit(6 + 8 / 12, "feet"),
  16778. weight: math.unit(220, "lb"),
  16779. name: "Front",
  16780. image: {
  16781. source: "./media/characters/caylex/front.svg",
  16782. extra: 821 / 772,
  16783. bottom: 0.07
  16784. }
  16785. },
  16786. back: {
  16787. height: math.unit(6 + 8 / 12, "feet"),
  16788. weight: math.unit(220, "lb"),
  16789. name: "Back",
  16790. image: {
  16791. source: "./media/characters/caylex/back.svg",
  16792. extra: 821 / 772,
  16793. bottom: 0.022
  16794. }
  16795. },
  16796. hand: {
  16797. height: math.unit(1.25, "feet"),
  16798. name: "Hand",
  16799. image: {
  16800. source: "./media/characters/caylex/hand.svg"
  16801. }
  16802. },
  16803. foot: {
  16804. height: math.unit(1.6, "feet"),
  16805. name: "Foot",
  16806. image: {
  16807. source: "./media/characters/caylex/foot.svg"
  16808. }
  16809. },
  16810. armored: {
  16811. height: math.unit(6 + 8 / 12, "feet"),
  16812. weight: math.unit(250, "lb"),
  16813. name: "Armored",
  16814. image: {
  16815. source: "./media/characters/caylex/armored.svg",
  16816. extra: 1420 / 1310,
  16817. bottom: 0.045
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Normal",
  16824. height: math.unit(6 + 8 / 12, "feet"),
  16825. default: true
  16826. },
  16827. {
  16828. name: "Normal+",
  16829. height: math.unit(12, "feet")
  16830. },
  16831. ]
  16832. ))
  16833. characterMakers.push(() => makeCharacter(
  16834. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16835. {
  16836. front: {
  16837. height: math.unit(7 + 6 / 12, "feet"),
  16838. weight: math.unit(288, "lb"),
  16839. name: "Front",
  16840. image: {
  16841. source: "./media/characters/alana/front.svg",
  16842. extra: 679 / 653,
  16843. bottom: 22.5 / 701
  16844. }
  16845. },
  16846. },
  16847. [
  16848. {
  16849. name: "Normal",
  16850. height: math.unit(7 + 6 / 12, "feet")
  16851. },
  16852. {
  16853. name: "Large",
  16854. height: math.unit(50, "feet")
  16855. },
  16856. {
  16857. name: "Macro",
  16858. height: math.unit(100, "feet"),
  16859. default: true
  16860. },
  16861. {
  16862. name: "Macro+",
  16863. height: math.unit(200, "feet")
  16864. },
  16865. ]
  16866. ))
  16867. characterMakers.push(() => makeCharacter(
  16868. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16869. {
  16870. front: {
  16871. height: math.unit(6 + 1 / 12, "feet"),
  16872. weight: math.unit(210, "lb"),
  16873. name: "Front",
  16874. image: {
  16875. source: "./media/characters/hasani/front.svg",
  16876. extra: 244 / 232,
  16877. bottom: 0.01
  16878. }
  16879. },
  16880. back: {
  16881. height: math.unit(6 + 1 / 12, "feet"),
  16882. weight: math.unit(210, "lb"),
  16883. name: "Back",
  16884. image: {
  16885. source: "./media/characters/hasani/back.svg",
  16886. extra: 244 / 232,
  16887. bottom: 0.01
  16888. }
  16889. },
  16890. },
  16891. [
  16892. {
  16893. name: "Normal",
  16894. height: math.unit(6 + 1 / 12, "feet")
  16895. },
  16896. {
  16897. name: "Macro",
  16898. height: math.unit(175, "feet"),
  16899. default: true
  16900. },
  16901. ]
  16902. ))
  16903. characterMakers.push(() => makeCharacter(
  16904. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16905. {
  16906. front: {
  16907. height: math.unit(1.82, "meters"),
  16908. weight: math.unit(140, "lb"),
  16909. name: "Front",
  16910. image: {
  16911. source: "./media/characters/nita/front.svg",
  16912. extra: 2473 / 2363,
  16913. bottom: 0.01
  16914. }
  16915. },
  16916. },
  16917. [
  16918. {
  16919. name: "Normal",
  16920. height: math.unit(1.82, "m")
  16921. },
  16922. {
  16923. name: "Macro",
  16924. height: math.unit(300, "m")
  16925. },
  16926. {
  16927. name: "Mistake Canon",
  16928. height: math.unit(0.5, "miles"),
  16929. default: true
  16930. },
  16931. {
  16932. name: "Big Mistake",
  16933. height: math.unit(13, "miles")
  16934. },
  16935. {
  16936. name: "Playing God",
  16937. height: math.unit(2450, "miles")
  16938. },
  16939. ]
  16940. ))
  16941. characterMakers.push(() => makeCharacter(
  16942. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16943. {
  16944. front: {
  16945. height: math.unit(4, "feet"),
  16946. weight: math.unit(120, "lb"),
  16947. name: "Front",
  16948. image: {
  16949. source: "./media/characters/shiriko/front.svg",
  16950. extra: 195 / 188
  16951. }
  16952. },
  16953. },
  16954. [
  16955. {
  16956. name: "Normal",
  16957. height: math.unit(4, "feet"),
  16958. default: true
  16959. },
  16960. ]
  16961. ))
  16962. characterMakers.push(() => makeCharacter(
  16963. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16964. {
  16965. front: {
  16966. height: math.unit(6, "feet"),
  16967. name: "front",
  16968. image: {
  16969. source: "./media/characters/deja/front.svg",
  16970. extra: 926 / 840,
  16971. bottom: 0.07
  16972. }
  16973. },
  16974. },
  16975. [
  16976. {
  16977. name: "Planck Length",
  16978. height: math.unit(1.6e-35, "meters")
  16979. },
  16980. {
  16981. name: "Normal",
  16982. height: math.unit(30.48, "meters"),
  16983. default: true
  16984. },
  16985. {
  16986. name: "Universal",
  16987. height: math.unit(8.8e26, "meters")
  16988. },
  16989. ]
  16990. ))
  16991. characterMakers.push(() => makeCharacter(
  16992. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16993. {
  16994. side: {
  16995. height: math.unit(8, "feet"),
  16996. weight: math.unit(6300, "lb"),
  16997. name: "Side",
  16998. image: {
  16999. source: "./media/characters/anima/side.svg",
  17000. bottom: 0.035
  17001. }
  17002. },
  17003. },
  17004. [
  17005. {
  17006. name: "Normal",
  17007. height: math.unit(8, "feet"),
  17008. default: true
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17014. {
  17015. front: {
  17016. height: math.unit(8, "feet"),
  17017. weight: math.unit(350, "lb"),
  17018. name: "Front",
  17019. image: {
  17020. source: "./media/characters/bianca/front.svg",
  17021. extra: 234 / 225,
  17022. bottom: 0.03
  17023. }
  17024. },
  17025. },
  17026. [
  17027. {
  17028. name: "Normal",
  17029. height: math.unit(8, "feet"),
  17030. default: true
  17031. },
  17032. ]
  17033. ))
  17034. characterMakers.push(() => makeCharacter(
  17035. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17036. {
  17037. front: {
  17038. height: math.unit(6, "feet"),
  17039. weight: math.unit(150, "lb"),
  17040. name: "Front",
  17041. image: {
  17042. source: "./media/characters/adinia/front.svg",
  17043. extra: 1845 / 1672,
  17044. bottom: 0.02
  17045. }
  17046. },
  17047. back: {
  17048. height: math.unit(6, "feet"),
  17049. weight: math.unit(150, "lb"),
  17050. name: "Back",
  17051. image: {
  17052. source: "./media/characters/adinia/back.svg",
  17053. extra: 1845 / 1672,
  17054. bottom: 0.002
  17055. }
  17056. },
  17057. },
  17058. [
  17059. {
  17060. name: "Normal",
  17061. height: math.unit(11 + 5 / 12, "feet"),
  17062. default: true
  17063. },
  17064. ]
  17065. ))
  17066. characterMakers.push(() => makeCharacter(
  17067. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17068. {
  17069. front: {
  17070. height: math.unit(3, "meters"),
  17071. weight: math.unit(200, "kg"),
  17072. name: "Front",
  17073. image: {
  17074. source: "./media/characters/lykasa/front.svg",
  17075. extra: 1076 / 976,
  17076. bottom: 0.06
  17077. }
  17078. },
  17079. },
  17080. [
  17081. {
  17082. name: "Normal",
  17083. height: math.unit(3, "meters")
  17084. },
  17085. {
  17086. name: "Kaiju",
  17087. height: math.unit(120, "meters"),
  17088. default: true
  17089. },
  17090. {
  17091. name: "Mega Kaiju",
  17092. height: math.unit(240, "km")
  17093. },
  17094. {
  17095. name: "Giga Kaiju",
  17096. height: math.unit(400, "megameters")
  17097. },
  17098. {
  17099. name: "Tera Kaiju",
  17100. height: math.unit(800, "gigameters")
  17101. },
  17102. {
  17103. name: "Kaiju Dragon Goddess",
  17104. height: math.unit(26, "zettaparsecs")
  17105. },
  17106. ]
  17107. ))
  17108. characterMakers.push(() => makeCharacter(
  17109. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17110. {
  17111. side: {
  17112. height: math.unit(283 / 124 * 6, "feet"),
  17113. weight: math.unit(35000, "lb"),
  17114. name: "Side",
  17115. image: {
  17116. source: "./media/characters/malfaren/side.svg",
  17117. extra: 2500 / 1010,
  17118. bottom: 0.01
  17119. }
  17120. },
  17121. front: {
  17122. height: math.unit(22.36, "feet"),
  17123. weight: math.unit(35000, "lb"),
  17124. name: "Front",
  17125. image: {
  17126. source: "./media/characters/malfaren/front.svg",
  17127. extra: 1631 / 1476,
  17128. bottom: 0.01
  17129. }
  17130. },
  17131. maw: {
  17132. height: math.unit(6.9, "feet"),
  17133. name: "Maw",
  17134. image: {
  17135. source: "./media/characters/malfaren/maw.svg"
  17136. }
  17137. },
  17138. },
  17139. [
  17140. {
  17141. name: "Big",
  17142. height: math.unit(283 / 162 * 6, "feet"),
  17143. },
  17144. {
  17145. name: "Bigger",
  17146. height: math.unit(283 / 124 * 6, "feet")
  17147. },
  17148. {
  17149. name: "Massive",
  17150. height: math.unit(283 / 92 * 6, "feet"),
  17151. default: true
  17152. },
  17153. {
  17154. name: "👀💦",
  17155. height: math.unit(283 / 73 * 6, "feet"),
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17161. {
  17162. front: {
  17163. height: math.unit(1.7, "m"),
  17164. weight: math.unit(70, "kg"),
  17165. name: "Front",
  17166. image: {
  17167. source: "./media/characters/kernel/front.svg",
  17168. extra: 222 / 210,
  17169. bottom: 0.007
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Nano",
  17176. height: math.unit(17, "micrometers")
  17177. },
  17178. {
  17179. name: "Micro",
  17180. height: math.unit(1.7, "mm")
  17181. },
  17182. {
  17183. name: "Small",
  17184. height: math.unit(1.7, "cm")
  17185. },
  17186. {
  17187. name: "Normal",
  17188. height: math.unit(1.7, "m"),
  17189. default: true
  17190. },
  17191. ]
  17192. ))
  17193. characterMakers.push(() => makeCharacter(
  17194. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17195. {
  17196. front: {
  17197. height: math.unit(1.75, "meters"),
  17198. weight: math.unit(65, "kg"),
  17199. name: "Front",
  17200. image: {
  17201. source: "./media/characters/jayne-folest/front.svg",
  17202. extra: 2115 / 2007,
  17203. bottom: 0.02
  17204. }
  17205. },
  17206. back: {
  17207. height: math.unit(1.75, "meters"),
  17208. weight: math.unit(65, "kg"),
  17209. name: "Back",
  17210. image: {
  17211. source: "./media/characters/jayne-folest/back.svg",
  17212. extra: 2115 / 2007,
  17213. bottom: 0.005
  17214. }
  17215. },
  17216. frontClothed: {
  17217. height: math.unit(1.75, "meters"),
  17218. weight: math.unit(65, "kg"),
  17219. name: "Front (Clothed)",
  17220. image: {
  17221. source: "./media/characters/jayne-folest/front-clothed.svg",
  17222. extra: 2115 / 2007,
  17223. bottom: 0.035
  17224. }
  17225. },
  17226. hand: {
  17227. height: math.unit(1 / 1.260, "feet"),
  17228. name: "Hand",
  17229. image: {
  17230. source: "./media/characters/jayne-folest/hand.svg"
  17231. }
  17232. },
  17233. foot: {
  17234. height: math.unit(1 / 0.918, "feet"),
  17235. name: "Foot",
  17236. image: {
  17237. source: "./media/characters/jayne-folest/foot.svg"
  17238. }
  17239. },
  17240. },
  17241. [
  17242. {
  17243. name: "Micro",
  17244. height: math.unit(4, "cm")
  17245. },
  17246. {
  17247. name: "Normal",
  17248. height: math.unit(1.75, "meters")
  17249. },
  17250. {
  17251. name: "Macro",
  17252. height: math.unit(47.5, "meters"),
  17253. default: true
  17254. },
  17255. ]
  17256. ))
  17257. characterMakers.push(() => makeCharacter(
  17258. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17259. {
  17260. front: {
  17261. height: math.unit(180, "cm"),
  17262. weight: math.unit(70, "kg"),
  17263. name: "Front",
  17264. image: {
  17265. source: "./media/characters/algier/front.svg",
  17266. extra: 596 / 572,
  17267. bottom: 0.04
  17268. }
  17269. },
  17270. back: {
  17271. height: math.unit(180, "cm"),
  17272. weight: math.unit(70, "kg"),
  17273. name: "Back",
  17274. image: {
  17275. source: "./media/characters/algier/back.svg",
  17276. extra: 596 / 572,
  17277. bottom: 0.025
  17278. }
  17279. },
  17280. frontdressed: {
  17281. height: math.unit(180, "cm"),
  17282. weight: math.unit(150, "kg"),
  17283. name: "Front-dressed",
  17284. image: {
  17285. source: "./media/characters/algier/front-dressed.svg",
  17286. extra: 596 / 572,
  17287. bottom: 0.038
  17288. }
  17289. },
  17290. },
  17291. [
  17292. {
  17293. name: "Micro",
  17294. height: math.unit(5, "cm")
  17295. },
  17296. {
  17297. name: "Normal",
  17298. height: math.unit(180, "cm"),
  17299. default: true
  17300. },
  17301. {
  17302. name: "Macro",
  17303. height: math.unit(64, "m")
  17304. },
  17305. ]
  17306. ))
  17307. characterMakers.push(() => makeCharacter(
  17308. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17309. {
  17310. upright: {
  17311. height: math.unit(7, "feet"),
  17312. weight: math.unit(300, "lb"),
  17313. name: "Upright",
  17314. image: {
  17315. source: "./media/characters/pretzel/upright.svg",
  17316. extra: 534 / 522,
  17317. bottom: 0.065
  17318. }
  17319. },
  17320. sprawling: {
  17321. height: math.unit(3.75, "feet"),
  17322. weight: math.unit(300, "lb"),
  17323. name: "Sprawling",
  17324. image: {
  17325. source: "./media/characters/pretzel/sprawling.svg",
  17326. extra: 314 / 281,
  17327. bottom: 0.1
  17328. }
  17329. },
  17330. tongue: {
  17331. height: math.unit(2, "feet"),
  17332. name: "Tongue",
  17333. image: {
  17334. source: "./media/characters/pretzel/tongue.svg"
  17335. }
  17336. },
  17337. },
  17338. [
  17339. {
  17340. name: "Normal",
  17341. height: math.unit(7, "feet"),
  17342. default: true
  17343. },
  17344. {
  17345. name: "Oversized",
  17346. height: math.unit(15, "feet")
  17347. },
  17348. {
  17349. name: "Huge",
  17350. height: math.unit(30, "feet")
  17351. },
  17352. {
  17353. name: "Macro",
  17354. height: math.unit(250, "feet")
  17355. },
  17356. ]
  17357. ))
  17358. characterMakers.push(() => makeCharacter(
  17359. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17360. {
  17361. sideFront: {
  17362. height: math.unit(5 + 2 / 12, "feet"),
  17363. weight: math.unit(120, "lb"),
  17364. name: "Front Side",
  17365. image: {
  17366. source: "./media/characters/roxi/side-front.svg",
  17367. extra: 2924 / 2717,
  17368. bottom: 0.08
  17369. }
  17370. },
  17371. sideBack: {
  17372. height: math.unit(5 + 2 / 12, "feet"),
  17373. weight: math.unit(120, "lb"),
  17374. name: "Back Side",
  17375. image: {
  17376. source: "./media/characters/roxi/side-back.svg",
  17377. extra: 2904 / 2693,
  17378. bottom: 0.06
  17379. }
  17380. },
  17381. front: {
  17382. height: math.unit(5 + 2 / 12, "feet"),
  17383. weight: math.unit(120, "lb"),
  17384. name: "Front",
  17385. image: {
  17386. source: "./media/characters/roxi/front.svg",
  17387. extra: 2028 / 1907,
  17388. bottom: 0.01
  17389. }
  17390. },
  17391. frontAlt: {
  17392. height: math.unit(5 + 2 / 12, "feet"),
  17393. weight: math.unit(120, "lb"),
  17394. name: "Front (Alt)",
  17395. image: {
  17396. source: "./media/characters/roxi/front-alt.svg",
  17397. extra: 1828 / 1798,
  17398. bottom: 0.01
  17399. }
  17400. },
  17401. sitting: {
  17402. height: math.unit(2.8, "feet"),
  17403. weight: math.unit(120, "lb"),
  17404. name: "Sitting",
  17405. image: {
  17406. source: "./media/characters/roxi/sitting.svg",
  17407. extra: 2660 / 2462,
  17408. bottom: 0.1
  17409. }
  17410. },
  17411. },
  17412. [
  17413. {
  17414. name: "Normal",
  17415. height: math.unit(5 + 2 / 12, "feet"),
  17416. default: true
  17417. },
  17418. ]
  17419. ))
  17420. characterMakers.push(() => makeCharacter(
  17421. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17422. {
  17423. side: {
  17424. height: math.unit(55, "feet"),
  17425. weight: math.unit(153, "tons"),
  17426. name: "Side",
  17427. image: {
  17428. source: "./media/characters/shadow/side.svg",
  17429. extra: 701 / 628,
  17430. bottom: 0.02
  17431. }
  17432. },
  17433. flying: {
  17434. height: math.unit(145, "feet"),
  17435. weight: math.unit(153, "tons"),
  17436. name: "Flying",
  17437. image: {
  17438. source: "./media/characters/shadow/flying.svg"
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(55, "feet"),
  17446. default: true
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(6, "feet"),
  17455. weight: math.unit(200, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/marcie/front.svg",
  17459. extra: 960 / 876,
  17460. bottom: 58 / 1017.87
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Macro",
  17467. height: math.unit(1, "mile"),
  17468. default: true
  17469. },
  17470. ]
  17471. ))
  17472. characterMakers.push(() => makeCharacter(
  17473. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17474. {
  17475. front: {
  17476. height: math.unit(7, "feet"),
  17477. weight: math.unit(200, "lb"),
  17478. name: "Front",
  17479. image: {
  17480. source: "./media/characters/kachina/front.svg",
  17481. extra: 1290.68 / 1119,
  17482. bottom: 36.5 / 1327.18
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Normal",
  17489. height: math.unit(7, "feet"),
  17490. default: true
  17491. },
  17492. ]
  17493. ))
  17494. characterMakers.push(() => makeCharacter(
  17495. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17496. {
  17497. looking: {
  17498. height: math.unit(2, "meters"),
  17499. weight: math.unit(300, "kg"),
  17500. name: "Looking",
  17501. image: {
  17502. source: "./media/characters/kash/looking.svg",
  17503. extra: 474 / 344,
  17504. bottom: 0.03
  17505. }
  17506. },
  17507. side: {
  17508. height: math.unit(2, "meters"),
  17509. weight: math.unit(300, "kg"),
  17510. name: "Side",
  17511. image: {
  17512. source: "./media/characters/kash/side.svg",
  17513. extra: 302 / 251,
  17514. bottom: 0.03
  17515. }
  17516. },
  17517. front: {
  17518. height: math.unit(2, "meters"),
  17519. weight: math.unit(300, "kg"),
  17520. name: "Front",
  17521. image: {
  17522. source: "./media/characters/kash/front.svg",
  17523. extra: 495 / 360,
  17524. bottom: 0.015
  17525. }
  17526. },
  17527. },
  17528. [
  17529. {
  17530. name: "Normal",
  17531. height: math.unit(2, "meters"),
  17532. default: true
  17533. },
  17534. {
  17535. name: "Big",
  17536. height: math.unit(3, "meters")
  17537. },
  17538. {
  17539. name: "Large",
  17540. height: math.unit(5, "meters")
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17546. {
  17547. feeding: {
  17548. height: math.unit(6.7, "feet"),
  17549. weight: math.unit(350, "lb"),
  17550. name: "Feeding",
  17551. image: {
  17552. source: "./media/characters/lalim/feeding.svg",
  17553. }
  17554. },
  17555. },
  17556. [
  17557. {
  17558. name: "Normal",
  17559. height: math.unit(6.7, "feet"),
  17560. default: true
  17561. },
  17562. ]
  17563. ))
  17564. characterMakers.push(() => makeCharacter(
  17565. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17566. {
  17567. front: {
  17568. height: math.unit(9.5, "feet"),
  17569. weight: math.unit(600, "lb"),
  17570. name: "Front",
  17571. image: {
  17572. source: "./media/characters/de'vout/front.svg",
  17573. extra: 1443 / 1328,
  17574. bottom: 0.025
  17575. }
  17576. },
  17577. back: {
  17578. height: math.unit(9.5, "feet"),
  17579. weight: math.unit(600, "lb"),
  17580. name: "Back",
  17581. image: {
  17582. source: "./media/characters/de'vout/back.svg",
  17583. extra: 1443 / 1328
  17584. }
  17585. },
  17586. frontDressed: {
  17587. height: math.unit(9.5, "feet"),
  17588. weight: math.unit(600, "lb"),
  17589. name: "Front (Dressed",
  17590. image: {
  17591. source: "./media/characters/de'vout/front-dressed.svg",
  17592. extra: 1443 / 1328,
  17593. bottom: 0.025
  17594. }
  17595. },
  17596. backDressed: {
  17597. height: math.unit(9.5, "feet"),
  17598. weight: math.unit(600, "lb"),
  17599. name: "Back (Dressed",
  17600. image: {
  17601. source: "./media/characters/de'vout/back-dressed.svg",
  17602. extra: 1443 / 1328
  17603. }
  17604. },
  17605. },
  17606. [
  17607. {
  17608. name: "Normal",
  17609. height: math.unit(9.5, "feet"),
  17610. default: true
  17611. },
  17612. ]
  17613. ))
  17614. characterMakers.push(() => makeCharacter(
  17615. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17616. {
  17617. front: {
  17618. height: math.unit(8, "feet"),
  17619. weight: math.unit(225, "lb"),
  17620. name: "Front",
  17621. image: {
  17622. source: "./media/characters/talana/front.svg",
  17623. extra: 1410 / 1300,
  17624. bottom: 0.015
  17625. }
  17626. },
  17627. frontDressed: {
  17628. height: math.unit(8, "feet"),
  17629. weight: math.unit(225, "lb"),
  17630. name: "Front (Dressed",
  17631. image: {
  17632. source: "./media/characters/talana/front-dressed.svg",
  17633. extra: 1410 / 1300,
  17634. bottom: 0.015
  17635. }
  17636. },
  17637. },
  17638. [
  17639. {
  17640. name: "Normal",
  17641. height: math.unit(8, "feet"),
  17642. default: true
  17643. },
  17644. ]
  17645. ))
  17646. characterMakers.push(() => makeCharacter(
  17647. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17648. {
  17649. side: {
  17650. height: math.unit(7.2, "feet"),
  17651. weight: math.unit(150, "lb"),
  17652. name: "Side",
  17653. image: {
  17654. source: "./media/characters/xeauvok/side.svg",
  17655. extra: 1975 / 1523,
  17656. bottom: 0.07
  17657. }
  17658. },
  17659. },
  17660. [
  17661. {
  17662. name: "Normal",
  17663. height: math.unit(7.2, "feet"),
  17664. default: true
  17665. },
  17666. ]
  17667. ))
  17668. characterMakers.push(() => makeCharacter(
  17669. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17670. {
  17671. side: {
  17672. height: math.unit(10, "feet"),
  17673. weight: math.unit(900, "kg"),
  17674. name: "Side",
  17675. image: {
  17676. source: "./media/characters/zara/side.svg",
  17677. extra: 504 / 498
  17678. }
  17679. },
  17680. },
  17681. [
  17682. {
  17683. name: "Normal",
  17684. height: math.unit(10, "feet"),
  17685. default: true
  17686. },
  17687. ]
  17688. ))
  17689. characterMakers.push(() => makeCharacter(
  17690. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17691. {
  17692. side: {
  17693. height: math.unit(6, "feet"),
  17694. weight: math.unit(150, "lb"),
  17695. name: "Side",
  17696. image: {
  17697. source: "./media/characters/richard-dragon/side.svg",
  17698. extra: 845 / 340,
  17699. bottom: 0.017
  17700. }
  17701. },
  17702. maw: {
  17703. height: math.unit(2.97, "feet"),
  17704. name: "Maw",
  17705. image: {
  17706. source: "./media/characters/richard-dragon/maw.svg"
  17707. }
  17708. },
  17709. },
  17710. [
  17711. ]
  17712. ))
  17713. characterMakers.push(() => makeCharacter(
  17714. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17715. {
  17716. front: {
  17717. height: math.unit(4, "feet"),
  17718. weight: math.unit(100, "lb"),
  17719. name: "Front",
  17720. image: {
  17721. source: "./media/characters/richard-smeargle/front.svg",
  17722. extra: 2952 / 2820,
  17723. bottom: 0.028
  17724. }
  17725. },
  17726. },
  17727. [
  17728. {
  17729. name: "Normal",
  17730. height: math.unit(4, "feet"),
  17731. default: true
  17732. },
  17733. {
  17734. name: "Dynamax",
  17735. height: math.unit(20, "meters")
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17741. {
  17742. front: {
  17743. height: math.unit(6, "feet"),
  17744. weight: math.unit(110, "lb"),
  17745. name: "Front",
  17746. image: {
  17747. source: "./media/characters/klay/front.svg",
  17748. extra: 962 / 883,
  17749. bottom: 0.04
  17750. }
  17751. },
  17752. back: {
  17753. height: math.unit(6, "feet"),
  17754. weight: math.unit(110, "lb"),
  17755. name: "Back",
  17756. image: {
  17757. source: "./media/characters/klay/back.svg",
  17758. extra: 962 / 883
  17759. }
  17760. },
  17761. beans: {
  17762. height: math.unit(1.15, "feet"),
  17763. name: "Beans",
  17764. image: {
  17765. source: "./media/characters/klay/beans.svg"
  17766. }
  17767. },
  17768. },
  17769. [
  17770. {
  17771. name: "Micro",
  17772. height: math.unit(6, "inches")
  17773. },
  17774. {
  17775. name: "Mini",
  17776. height: math.unit(3, "feet")
  17777. },
  17778. {
  17779. name: "Normal",
  17780. height: math.unit(6, "feet"),
  17781. default: true
  17782. },
  17783. {
  17784. name: "Big",
  17785. height: math.unit(25, "feet")
  17786. },
  17787. {
  17788. name: "Macro",
  17789. height: math.unit(100, "feet")
  17790. },
  17791. {
  17792. name: "Megamacro",
  17793. height: math.unit(400, "feet")
  17794. },
  17795. ]
  17796. ))
  17797. characterMakers.push(() => makeCharacter(
  17798. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17799. {
  17800. front: {
  17801. height: math.unit(6, "feet"),
  17802. weight: math.unit(160, "lb"),
  17803. name: "Front",
  17804. image: {
  17805. source: "./media/characters/marcus/front.svg",
  17806. extra: 734 / 676,
  17807. bottom: 0.03
  17808. }
  17809. },
  17810. },
  17811. [
  17812. {
  17813. name: "Little",
  17814. height: math.unit(6, "feet")
  17815. },
  17816. {
  17817. name: "Normal",
  17818. height: math.unit(110, "feet"),
  17819. default: true
  17820. },
  17821. {
  17822. name: "Macro",
  17823. height: math.unit(250, "feet")
  17824. },
  17825. {
  17826. name: "Megamacro",
  17827. height: math.unit(1000, "feet")
  17828. },
  17829. ]
  17830. ))
  17831. characterMakers.push(() => makeCharacter(
  17832. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17833. {
  17834. front: {
  17835. height: math.unit(7, "feet"),
  17836. weight: math.unit(275, "lb"),
  17837. name: "Front",
  17838. image: {
  17839. source: "./media/characters/claude-delroute/front.svg",
  17840. extra: 230 / 214,
  17841. bottom: 0.007
  17842. }
  17843. },
  17844. side: {
  17845. height: math.unit(7, "feet"),
  17846. weight: math.unit(275, "lb"),
  17847. name: "Side",
  17848. image: {
  17849. source: "./media/characters/claude-delroute/side.svg",
  17850. extra: 222 / 214,
  17851. bottom: 0.01
  17852. }
  17853. },
  17854. back: {
  17855. height: math.unit(7, "feet"),
  17856. weight: math.unit(275, "lb"),
  17857. name: "Back",
  17858. image: {
  17859. source: "./media/characters/claude-delroute/back.svg",
  17860. extra: 230 / 214,
  17861. bottom: 0.015
  17862. }
  17863. },
  17864. maw: {
  17865. height: math.unit(0.6407, "meters"),
  17866. name: "Maw",
  17867. image: {
  17868. source: "./media/characters/claude-delroute/maw.svg"
  17869. }
  17870. },
  17871. },
  17872. [
  17873. {
  17874. name: "Normal",
  17875. height: math.unit(7, "feet"),
  17876. default: true
  17877. },
  17878. {
  17879. name: "Lorge",
  17880. height: math.unit(20, "feet")
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(8 + 4 / 12, "feet"),
  17889. weight: math.unit(600, "lb"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/dragonien/front.svg",
  17893. extra: 100 / 94,
  17894. bottom: 3.3 / 103.3445
  17895. }
  17896. },
  17897. back: {
  17898. height: math.unit(8 + 4 / 12, "feet"),
  17899. weight: math.unit(600, "lb"),
  17900. name: "Back",
  17901. image: {
  17902. source: "./media/characters/dragonien/back.svg",
  17903. extra: 776 / 746,
  17904. bottom: 6.4 / 782.0616
  17905. }
  17906. },
  17907. foot: {
  17908. height: math.unit(1.54, "feet"),
  17909. name: "Foot",
  17910. image: {
  17911. source: "./media/characters/dragonien/foot.svg",
  17912. }
  17913. },
  17914. },
  17915. [
  17916. {
  17917. name: "Normal",
  17918. height: math.unit(8 + 4 / 12, "feet"),
  17919. default: true
  17920. },
  17921. {
  17922. name: "Macro",
  17923. height: math.unit(200, "feet")
  17924. },
  17925. {
  17926. name: "Megamacro",
  17927. height: math.unit(1, "mile")
  17928. },
  17929. {
  17930. name: "Gigamacro",
  17931. height: math.unit(1000, "miles")
  17932. },
  17933. ]
  17934. ))
  17935. characterMakers.push(() => makeCharacter(
  17936. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17937. {
  17938. front: {
  17939. height: math.unit(5 + 2 / 12, "feet"),
  17940. weight: math.unit(110, "lb"),
  17941. name: "Front",
  17942. image: {
  17943. source: "./media/characters/desta/front.svg",
  17944. extra: 767 / 726,
  17945. bottom: 11.7 / 779
  17946. }
  17947. },
  17948. back: {
  17949. height: math.unit(5 + 2 / 12, "feet"),
  17950. weight: math.unit(110, "lb"),
  17951. name: "Back",
  17952. image: {
  17953. source: "./media/characters/desta/back.svg",
  17954. extra: 777 / 728,
  17955. bottom: 6 / 784
  17956. }
  17957. },
  17958. frontAlt: {
  17959. height: math.unit(5 + 2 / 12, "feet"),
  17960. weight: math.unit(110, "lb"),
  17961. name: "Front",
  17962. image: {
  17963. source: "./media/characters/desta/front-alt.svg",
  17964. extra: 1482 / 1417
  17965. }
  17966. },
  17967. side: {
  17968. height: math.unit(5 + 2 / 12, "feet"),
  17969. weight: math.unit(110, "lb"),
  17970. name: "Side",
  17971. image: {
  17972. source: "./media/characters/desta/side.svg",
  17973. extra: 2579 / 2491,
  17974. bottom: 0.053
  17975. }
  17976. },
  17977. },
  17978. [
  17979. {
  17980. name: "Micro",
  17981. height: math.unit(6, "inches")
  17982. },
  17983. {
  17984. name: "Normal",
  17985. height: math.unit(5 + 2 / 12, "feet"),
  17986. default: true
  17987. },
  17988. {
  17989. name: "Macro",
  17990. height: math.unit(62, "feet")
  17991. },
  17992. {
  17993. name: "Megamacro",
  17994. height: math.unit(1800, "feet")
  17995. },
  17996. ]
  17997. ))
  17998. characterMakers.push(() => makeCharacter(
  17999. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18000. {
  18001. front: {
  18002. height: math.unit(10, "feet"),
  18003. weight: math.unit(700, "lb"),
  18004. name: "Front",
  18005. image: {
  18006. source: "./media/characters/storm-alystar/front.svg",
  18007. extra: 2112 / 1898,
  18008. bottom: 0.034
  18009. }
  18010. },
  18011. },
  18012. [
  18013. {
  18014. name: "Micro",
  18015. height: math.unit(3.5, "inches")
  18016. },
  18017. {
  18018. name: "Normal",
  18019. height: math.unit(10, "feet"),
  18020. default: true
  18021. },
  18022. {
  18023. name: "Macro",
  18024. height: math.unit(400, "feet")
  18025. },
  18026. {
  18027. name: "Deific",
  18028. height: math.unit(60, "miles")
  18029. },
  18030. ]
  18031. ))
  18032. characterMakers.push(() => makeCharacter(
  18033. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18034. {
  18035. front: {
  18036. height: math.unit(2.35, "meters"),
  18037. weight: math.unit(119, "kg"),
  18038. name: "Front",
  18039. image: {
  18040. source: "./media/characters/ilia/front.svg",
  18041. extra: 1285 / 1255,
  18042. bottom: 0.06
  18043. }
  18044. },
  18045. },
  18046. [
  18047. {
  18048. name: "Normal",
  18049. height: math.unit(2.35, "meters")
  18050. },
  18051. {
  18052. name: "Macro",
  18053. height: math.unit(140, "meters"),
  18054. default: true
  18055. },
  18056. {
  18057. name: "Megamacro",
  18058. height: math.unit(100, "miles")
  18059. },
  18060. ]
  18061. ))
  18062. characterMakers.push(() => makeCharacter(
  18063. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18064. {
  18065. front: {
  18066. height: math.unit(6 + 5 / 12, "feet"),
  18067. weight: math.unit(190, "lb"),
  18068. name: "Front",
  18069. image: {
  18070. source: "./media/characters/kingdead/front.svg",
  18071. extra: 1228 / 1177
  18072. }
  18073. },
  18074. },
  18075. [
  18076. {
  18077. name: "Micro",
  18078. height: math.unit(7, "inches")
  18079. },
  18080. {
  18081. name: "Normal",
  18082. height: math.unit(6 + 5 / 12, "feet")
  18083. },
  18084. {
  18085. name: "Macro",
  18086. height: math.unit(150, "feet"),
  18087. default: true
  18088. },
  18089. {
  18090. name: "Megamacro",
  18091. height: math.unit(200, "miles")
  18092. },
  18093. ]
  18094. ))
  18095. characterMakers.push(() => makeCharacter(
  18096. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18097. {
  18098. front: {
  18099. height: math.unit(8, "feet"),
  18100. weight: math.unit(600, "lb"),
  18101. name: "Front",
  18102. image: {
  18103. source: "./media/characters/kyrehx/front.svg",
  18104. extra: 1195 / 1095,
  18105. bottom: 0.034
  18106. }
  18107. },
  18108. },
  18109. [
  18110. {
  18111. name: "Micro",
  18112. height: math.unit(2, "inches")
  18113. },
  18114. {
  18115. name: "Normal",
  18116. height: math.unit(8, "feet"),
  18117. default: true
  18118. },
  18119. {
  18120. name: "Macro",
  18121. height: math.unit(255, "feet")
  18122. },
  18123. ]
  18124. ))
  18125. characterMakers.push(() => makeCharacter(
  18126. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18127. {
  18128. front: {
  18129. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18130. weight: math.unit(184, "lb"),
  18131. name: "Front",
  18132. image: {
  18133. source: "./media/characters/xang/front.svg",
  18134. extra: 845 / 755
  18135. }
  18136. },
  18137. },
  18138. [
  18139. {
  18140. name: "Normal",
  18141. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18142. default: true
  18143. },
  18144. {
  18145. name: "Macro",
  18146. height: math.unit(0.935 * 146, "feet")
  18147. },
  18148. {
  18149. name: "Megamacro",
  18150. height: math.unit(0.935 * 3, "miles")
  18151. },
  18152. ]
  18153. ))
  18154. characterMakers.push(() => makeCharacter(
  18155. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18156. {
  18157. frontDressed: {
  18158. height: math.unit(5 + 7 / 12, "feet"),
  18159. weight: math.unit(140, "lb"),
  18160. name: "Front (Dressed)",
  18161. image: {
  18162. source: "./media/characters/doc-weardno/front-dressed.svg",
  18163. extra: 263 / 234
  18164. }
  18165. },
  18166. backDressed: {
  18167. height: math.unit(5 + 7 / 12, "feet"),
  18168. weight: math.unit(140, "lb"),
  18169. name: "Back (Dressed)",
  18170. image: {
  18171. source: "./media/characters/doc-weardno/back-dressed.svg",
  18172. extra: 266 / 238
  18173. }
  18174. },
  18175. front: {
  18176. height: math.unit(5 + 7 / 12, "feet"),
  18177. weight: math.unit(140, "lb"),
  18178. name: "Front",
  18179. image: {
  18180. source: "./media/characters/doc-weardno/front.svg",
  18181. extra: 254 / 233
  18182. }
  18183. },
  18184. },
  18185. [
  18186. {
  18187. name: "Micro",
  18188. height: math.unit(3, "inches")
  18189. },
  18190. {
  18191. name: "Normal",
  18192. height: math.unit(5 + 7 / 12, "feet"),
  18193. default: true
  18194. },
  18195. {
  18196. name: "Macro",
  18197. height: math.unit(25, "feet")
  18198. },
  18199. {
  18200. name: "Megamacro",
  18201. height: math.unit(2, "miles")
  18202. },
  18203. ]
  18204. ))
  18205. characterMakers.push(() => makeCharacter(
  18206. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18207. {
  18208. front: {
  18209. height: math.unit(6 + 2 / 12, "feet"),
  18210. weight: math.unit(153, "lb"),
  18211. name: "Front",
  18212. image: {
  18213. source: "./media/characters/seth-whilst/front.svg",
  18214. bottom: 0.07
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Micro",
  18221. height: math.unit(5, "inches")
  18222. },
  18223. {
  18224. name: "Normal",
  18225. height: math.unit(6 + 2 / 12, "feet"),
  18226. default: true
  18227. },
  18228. ]
  18229. ))
  18230. characterMakers.push(() => makeCharacter(
  18231. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18232. {
  18233. front: {
  18234. height: math.unit(3, "inches"),
  18235. weight: math.unit(8, "grams"),
  18236. name: "Front",
  18237. image: {
  18238. source: "./media/characters/pocket-jabari/front.svg",
  18239. extra: 1024 / 974,
  18240. bottom: 0.039
  18241. }
  18242. },
  18243. },
  18244. [
  18245. {
  18246. name: "Minimicro",
  18247. height: math.unit(8, "mm")
  18248. },
  18249. {
  18250. name: "Micro",
  18251. height: math.unit(3, "inches"),
  18252. default: true
  18253. },
  18254. {
  18255. name: "Normal",
  18256. height: math.unit(3, "feet")
  18257. },
  18258. ]
  18259. ))
  18260. characterMakers.push(() => makeCharacter(
  18261. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18262. {
  18263. front: {
  18264. height: math.unit(15, "feet"),
  18265. weight: math.unit(3280, "lb"),
  18266. name: "Front",
  18267. image: {
  18268. source: "./media/characters/sapphy/front.svg",
  18269. extra: 671 / 577,
  18270. bottom: 0.085
  18271. }
  18272. },
  18273. back: {
  18274. height: math.unit(15, "feet"),
  18275. weight: math.unit(3280, "lb"),
  18276. name: "Back",
  18277. image: {
  18278. source: "./media/characters/sapphy/back.svg",
  18279. extra: 631 / 607,
  18280. bottom: 0.045
  18281. }
  18282. },
  18283. },
  18284. [
  18285. {
  18286. name: "Normal",
  18287. height: math.unit(15, "feet")
  18288. },
  18289. {
  18290. name: "Casual Macro",
  18291. height: math.unit(120, "feet")
  18292. },
  18293. {
  18294. name: "Macro",
  18295. height: math.unit(2150, "feet"),
  18296. default: true
  18297. },
  18298. {
  18299. name: "Megamacro",
  18300. height: math.unit(8, "miles")
  18301. },
  18302. {
  18303. name: "Galaxy Mom",
  18304. height: math.unit(6, "megalightyears")
  18305. },
  18306. ]
  18307. ))
  18308. characterMakers.push(() => makeCharacter(
  18309. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18310. {
  18311. front: {
  18312. height: math.unit(6, "feet"),
  18313. weight: math.unit(170, "lb"),
  18314. name: "Front",
  18315. image: {
  18316. source: "./media/characters/kiro/front.svg",
  18317. extra: 1064 / 1012,
  18318. bottom: 0.052
  18319. }
  18320. },
  18321. },
  18322. [
  18323. {
  18324. name: "Micro",
  18325. height: math.unit(6, "inches")
  18326. },
  18327. {
  18328. name: "Normal",
  18329. height: math.unit(6, "feet"),
  18330. default: true
  18331. },
  18332. {
  18333. name: "Macro",
  18334. height: math.unit(72, "feet")
  18335. },
  18336. ]
  18337. ))
  18338. characterMakers.push(() => makeCharacter(
  18339. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18340. {
  18341. front: {
  18342. height: math.unit(5 + 9 / 12, "feet"),
  18343. weight: math.unit(175, "lb"),
  18344. name: "Front",
  18345. image: {
  18346. source: "./media/characters/irishfox/front.svg",
  18347. extra: 1912 / 1680,
  18348. bottom: 0.02
  18349. }
  18350. },
  18351. },
  18352. [
  18353. {
  18354. name: "Nano",
  18355. height: math.unit(1, "mm")
  18356. },
  18357. {
  18358. name: "Micro",
  18359. height: math.unit(2, "inches")
  18360. },
  18361. {
  18362. name: "Normal",
  18363. height: math.unit(5 + 9 / 12, "feet"),
  18364. default: true
  18365. },
  18366. {
  18367. name: "Macro",
  18368. height: math.unit(45, "feet")
  18369. },
  18370. ]
  18371. ))
  18372. characterMakers.push(() => makeCharacter(
  18373. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18374. {
  18375. front: {
  18376. height: math.unit(6 + 1 / 12, "feet"),
  18377. weight: math.unit(75, "lb"),
  18378. name: "Front",
  18379. image: {
  18380. source: "./media/characters/aronai-sieyes/front.svg",
  18381. extra: 1556 / 1480,
  18382. bottom: 0.015
  18383. }
  18384. },
  18385. side: {
  18386. height: math.unit(6 + 1 / 12, "feet"),
  18387. weight: math.unit(75, "lb"),
  18388. name: "Side",
  18389. image: {
  18390. source: "./media/characters/aronai-sieyes/side.svg",
  18391. extra: 1433 / 1390,
  18392. bottom: 0.0393
  18393. }
  18394. },
  18395. back: {
  18396. height: math.unit(6 + 1 / 12, "feet"),
  18397. weight: math.unit(75, "lb"),
  18398. name: "Back",
  18399. image: {
  18400. source: "./media/characters/aronai-sieyes/back.svg",
  18401. extra: 1544 / 1494,
  18402. bottom: 0.02
  18403. }
  18404. },
  18405. frontClothed: {
  18406. height: math.unit(6 + 1 / 12, "feet"),
  18407. weight: math.unit(75, "lb"),
  18408. name: "Front (Clothed)",
  18409. image: {
  18410. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18411. extra: 1582 / 1527
  18412. }
  18413. },
  18414. feral: {
  18415. height: math.unit(18, "feet"),
  18416. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18417. name: "Feral",
  18418. image: {
  18419. source: "./media/characters/aronai-sieyes/feral.svg",
  18420. extra: 1530 / 1240,
  18421. bottom: 0.035
  18422. }
  18423. },
  18424. },
  18425. [
  18426. {
  18427. name: "Micro",
  18428. height: math.unit(2, "inches")
  18429. },
  18430. {
  18431. name: "Normal",
  18432. height: math.unit(6 + 1 / 12, "feet"),
  18433. default: true
  18434. }
  18435. ]
  18436. ))
  18437. characterMakers.push(() => makeCharacter(
  18438. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18439. {
  18440. front: {
  18441. height: math.unit(12, "feet"),
  18442. weight: math.unit(410, "kg"),
  18443. name: "Front",
  18444. image: {
  18445. source: "./media/characters/xuna/front.svg",
  18446. extra: 2184 / 1980
  18447. }
  18448. },
  18449. side: {
  18450. height: math.unit(12, "feet"),
  18451. weight: math.unit(410, "kg"),
  18452. name: "Side",
  18453. image: {
  18454. source: "./media/characters/xuna/side.svg",
  18455. extra: 2184 / 1980
  18456. }
  18457. },
  18458. back: {
  18459. height: math.unit(12, "feet"),
  18460. weight: math.unit(410, "kg"),
  18461. name: "Back",
  18462. image: {
  18463. source: "./media/characters/xuna/back.svg",
  18464. extra: 2184 / 1980
  18465. }
  18466. },
  18467. },
  18468. [
  18469. {
  18470. name: "Nano glow",
  18471. height: math.unit(10, "nm")
  18472. },
  18473. {
  18474. name: "Micro floof",
  18475. height: math.unit(0.3, "m")
  18476. },
  18477. {
  18478. name: "Huggable softy boi",
  18479. height: math.unit(3.6576, "m"),
  18480. default: true
  18481. },
  18482. {
  18483. name: "Admirable floof",
  18484. height: math.unit(80, "meters")
  18485. },
  18486. {
  18487. name: "Gentle macro",
  18488. height: math.unit(300, "meters")
  18489. },
  18490. {
  18491. name: "Very careful floof",
  18492. height: math.unit(3200, "meters")
  18493. },
  18494. {
  18495. name: "The mega floof",
  18496. height: math.unit(36000, "meters")
  18497. },
  18498. {
  18499. name: "Giga-fur-Wicker",
  18500. height: math.unit(4800000, "meters")
  18501. },
  18502. {
  18503. name: "Licky world",
  18504. height: math.unit(20000000, "meters")
  18505. },
  18506. {
  18507. name: "Floofy cyan sun",
  18508. height: math.unit(1500000000, "meters")
  18509. },
  18510. {
  18511. name: "Milky Wicker",
  18512. height: math.unit(1000000000000000000000, "meters")
  18513. },
  18514. {
  18515. name: "The observing Wicker",
  18516. height: math.unit(999999999999999999999999999, "meters")
  18517. },
  18518. ]
  18519. ))
  18520. characterMakers.push(() => makeCharacter(
  18521. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18522. {
  18523. front: {
  18524. height: math.unit(5 + 9 / 12, "feet"),
  18525. weight: math.unit(150, "lb"),
  18526. name: "Front",
  18527. image: {
  18528. source: "./media/characters/arokha-sieyes/front.svg",
  18529. extra: 1425 / 1284,
  18530. bottom: 0.05
  18531. }
  18532. },
  18533. },
  18534. [
  18535. {
  18536. name: "Normal",
  18537. height: math.unit(5 + 9 / 12, "feet")
  18538. },
  18539. {
  18540. name: "Macro",
  18541. height: math.unit(30, "meters"),
  18542. default: true
  18543. },
  18544. ]
  18545. ))
  18546. characterMakers.push(() => makeCharacter(
  18547. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18548. {
  18549. front: {
  18550. height: math.unit(6, "feet"),
  18551. weight: math.unit(180, "lb"),
  18552. name: "Front",
  18553. image: {
  18554. source: "./media/characters/arokh-sieyes/front.svg",
  18555. extra: 1830 / 1769,
  18556. bottom: 0.01
  18557. }
  18558. },
  18559. },
  18560. [
  18561. {
  18562. name: "Normal",
  18563. height: math.unit(6, "feet")
  18564. },
  18565. {
  18566. name: "Macro",
  18567. height: math.unit(30, "meters"),
  18568. default: true
  18569. },
  18570. ]
  18571. ))
  18572. characterMakers.push(() => makeCharacter(
  18573. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18574. {
  18575. side: {
  18576. height: math.unit(13 + 1 / 12, "feet"),
  18577. weight: math.unit(8.5, "tonnes"),
  18578. name: "Side",
  18579. image: {
  18580. source: "./media/characters/goldeneye/side.svg",
  18581. extra: 1182 / 778,
  18582. bottom: 0.067
  18583. }
  18584. },
  18585. paw: {
  18586. height: math.unit(3.4, "feet"),
  18587. name: "Paw",
  18588. image: {
  18589. source: "./media/characters/goldeneye/paw.svg"
  18590. }
  18591. },
  18592. },
  18593. [
  18594. {
  18595. name: "Normal",
  18596. height: math.unit(13 + 1 / 12, "feet"),
  18597. default: true
  18598. },
  18599. ]
  18600. ))
  18601. characterMakers.push(() => makeCharacter(
  18602. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18603. {
  18604. front: {
  18605. height: math.unit(6 + 1 / 12, "feet"),
  18606. weight: math.unit(210, "lb"),
  18607. name: "Front",
  18608. image: {
  18609. source: "./media/characters/leonardo-lycheborne/front.svg",
  18610. extra: 390 / 365,
  18611. bottom: 0.032
  18612. }
  18613. },
  18614. side: {
  18615. height: math.unit(6 + 1 / 12, "feet"),
  18616. weight: math.unit(210, "lb"),
  18617. name: "Side",
  18618. image: {
  18619. source: "./media/characters/leonardo-lycheborne/side.svg",
  18620. extra: 390 / 365,
  18621. bottom: 0.005
  18622. }
  18623. },
  18624. back: {
  18625. height: math.unit(6 + 1 / 12, "feet"),
  18626. weight: math.unit(210, "lb"),
  18627. name: "Back",
  18628. image: {
  18629. source: "./media/characters/leonardo-lycheborne/back.svg",
  18630. extra: 392 / 366,
  18631. bottom: 0.01
  18632. }
  18633. },
  18634. hand: {
  18635. height: math.unit(1.08, "feet"),
  18636. name: "Hand",
  18637. image: {
  18638. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18639. }
  18640. },
  18641. foot: {
  18642. height: math.unit(1.32, "feet"),
  18643. name: "Foot",
  18644. image: {
  18645. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18646. }
  18647. },
  18648. were: {
  18649. height: math.unit(20, "feet"),
  18650. weight: math.unit(7800, "lb"),
  18651. name: "Were",
  18652. image: {
  18653. source: "./media/characters/leonardo-lycheborne/were.svg",
  18654. extra: 308 / 294,
  18655. bottom: 0.048
  18656. }
  18657. },
  18658. feral: {
  18659. height: math.unit(7.5, "feet"),
  18660. weight: math.unit(600, "lb"),
  18661. name: "Feral",
  18662. image: {
  18663. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18664. extra: 210 / 186,
  18665. bottom: 0.108
  18666. }
  18667. },
  18668. taur: {
  18669. height: math.unit(11, "feet"),
  18670. weight: math.unit(3300, "lb"),
  18671. name: "Taur",
  18672. image: {
  18673. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18674. extra: 320 / 303,
  18675. bottom: 0.025
  18676. }
  18677. },
  18678. barghest: {
  18679. height: math.unit(11, "feet"),
  18680. weight: math.unit(1300, "lb"),
  18681. name: "Barghest",
  18682. image: {
  18683. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18684. extra: 323 / 302,
  18685. bottom: 0.027
  18686. }
  18687. },
  18688. dick: {
  18689. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18690. name: "Dick",
  18691. image: {
  18692. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18693. }
  18694. },
  18695. dickWere: {
  18696. height: math.unit((20) / 3.8, "feet"),
  18697. name: "Dick (Were)",
  18698. image: {
  18699. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18700. }
  18701. },
  18702. },
  18703. [
  18704. {
  18705. name: "Normal",
  18706. height: math.unit(6 + 1 / 12, "feet"),
  18707. default: true
  18708. },
  18709. ]
  18710. ))
  18711. characterMakers.push(() => makeCharacter(
  18712. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18713. {
  18714. front: {
  18715. height: math.unit(10, "feet"),
  18716. weight: math.unit(350, "lb"),
  18717. name: "Front",
  18718. image: {
  18719. source: "./media/characters/jet/front.svg",
  18720. extra: 2050 / 1980,
  18721. bottom: 0.013
  18722. }
  18723. },
  18724. back: {
  18725. height: math.unit(10, "feet"),
  18726. weight: math.unit(350, "lb"),
  18727. name: "Back",
  18728. image: {
  18729. source: "./media/characters/jet/back.svg",
  18730. extra: 2050 / 1980,
  18731. bottom: 0.013
  18732. }
  18733. },
  18734. },
  18735. [
  18736. {
  18737. name: "Micro",
  18738. height: math.unit(6, "inches")
  18739. },
  18740. {
  18741. name: "Normal",
  18742. height: math.unit(10, "feet"),
  18743. default: true
  18744. },
  18745. {
  18746. name: "Macro",
  18747. height: math.unit(100, "feet")
  18748. },
  18749. ]
  18750. ))
  18751. characterMakers.push(() => makeCharacter(
  18752. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18753. {
  18754. front: {
  18755. height: math.unit(15, "feet"),
  18756. weight: math.unit(2800, "lb"),
  18757. name: "Front",
  18758. image: {
  18759. source: "./media/characters/tanarath/front.svg",
  18760. extra: 2392 / 2220,
  18761. bottom: 0.03
  18762. }
  18763. },
  18764. back: {
  18765. height: math.unit(15, "feet"),
  18766. weight: math.unit(2800, "lb"),
  18767. name: "Back",
  18768. image: {
  18769. source: "./media/characters/tanarath/back.svg",
  18770. extra: 2392 / 2220,
  18771. bottom: 0.03
  18772. }
  18773. },
  18774. },
  18775. [
  18776. {
  18777. name: "Normal",
  18778. height: math.unit(15, "feet"),
  18779. default: true
  18780. },
  18781. ]
  18782. ))
  18783. characterMakers.push(() => makeCharacter(
  18784. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18785. {
  18786. front: {
  18787. height: math.unit(7 + 1 / 12, "feet"),
  18788. weight: math.unit(175, "lb"),
  18789. name: "Front",
  18790. image: {
  18791. source: "./media/characters/patty-cattybatty/front.svg",
  18792. extra: 908 / 874,
  18793. bottom: 0.025
  18794. }
  18795. },
  18796. },
  18797. [
  18798. {
  18799. name: "Micro",
  18800. height: math.unit(1, "inch")
  18801. },
  18802. {
  18803. name: "Normal",
  18804. height: math.unit(7 + 1 / 12, "feet")
  18805. },
  18806. {
  18807. name: "Mini Macro",
  18808. height: math.unit(155, "feet")
  18809. },
  18810. {
  18811. name: "Macro",
  18812. height: math.unit(1077, "feet")
  18813. },
  18814. {
  18815. name: "Mega Macro",
  18816. height: math.unit(47650, "feet"),
  18817. default: true
  18818. },
  18819. {
  18820. name: "Giga Macro",
  18821. height: math.unit(440, "miles")
  18822. },
  18823. {
  18824. name: "Tera Macro",
  18825. height: math.unit(8700, "miles")
  18826. },
  18827. {
  18828. name: "Planetary Macro",
  18829. height: math.unit(32700, "miles")
  18830. },
  18831. {
  18832. name: "Solar Macro",
  18833. height: math.unit(550000, "miles")
  18834. },
  18835. {
  18836. name: "Celestial Macro",
  18837. height: math.unit(2.5, "AU")
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18843. {
  18844. front: {
  18845. height: math.unit(4 + 5 / 12, "feet"),
  18846. weight: math.unit(90, "lb"),
  18847. name: "Front",
  18848. image: {
  18849. source: "./media/characters/cappu/front.svg",
  18850. extra: 1247 / 1152,
  18851. bottom: 0.012
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Normal",
  18858. height: math.unit(4 + 5 / 12, "feet"),
  18859. default: true
  18860. },
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18865. {
  18866. frontDressed: {
  18867. height: math.unit(70, "cm"),
  18868. weight: math.unit(6, "kg"),
  18869. name: "Front (Dressed)",
  18870. image: {
  18871. source: "./media/characters/sebi/front-dressed.svg",
  18872. extra: 713.5 / 686.5,
  18873. bottom: 0.003
  18874. }
  18875. },
  18876. front: {
  18877. height: math.unit(70, "cm"),
  18878. weight: math.unit(5, "kg"),
  18879. name: "Front",
  18880. image: {
  18881. source: "./media/characters/sebi/front.svg",
  18882. extra: 713.5 / 686.5,
  18883. bottom: 0.003
  18884. }
  18885. }
  18886. },
  18887. [
  18888. {
  18889. name: "Normal",
  18890. height: math.unit(70, "cm"),
  18891. default: true
  18892. },
  18893. {
  18894. name: "Macro",
  18895. height: math.unit(8, "meters")
  18896. },
  18897. ]
  18898. ))
  18899. characterMakers.push(() => makeCharacter(
  18900. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18901. {
  18902. front: {
  18903. height: math.unit(6, "feet"),
  18904. weight: math.unit(150, "lb"),
  18905. name: "Front",
  18906. image: {
  18907. source: "./media/characters/typhek/front.svg",
  18908. extra: 1948 / 1929,
  18909. bottom: 0.025
  18910. }
  18911. },
  18912. side: {
  18913. height: math.unit(6, "feet"),
  18914. weight: math.unit(150, "lb"),
  18915. name: "Side",
  18916. image: {
  18917. source: "./media/characters/typhek/side.svg",
  18918. extra: 2034 / 2010,
  18919. bottom: 0.003
  18920. }
  18921. },
  18922. back: {
  18923. height: math.unit(6, "feet"),
  18924. weight: math.unit(150, "lb"),
  18925. name: "Back",
  18926. image: {
  18927. source: "./media/characters/typhek/back.svg",
  18928. extra: 2005 / 1978,
  18929. bottom: 0.004
  18930. }
  18931. },
  18932. palm: {
  18933. height: math.unit(1.2, "feet"),
  18934. name: "Palm",
  18935. image: {
  18936. source: "./media/characters/typhek/palm.svg"
  18937. }
  18938. },
  18939. fist: {
  18940. height: math.unit(1.1, "feet"),
  18941. name: "Fist",
  18942. image: {
  18943. source: "./media/characters/typhek/fist.svg"
  18944. }
  18945. },
  18946. foot: {
  18947. height: math.unit(1.57, "feet"),
  18948. name: "Foot",
  18949. image: {
  18950. source: "./media/characters/typhek/foot.svg"
  18951. }
  18952. },
  18953. sole: {
  18954. height: math.unit(2.05, "feet"),
  18955. name: "Sole",
  18956. image: {
  18957. source: "./media/characters/typhek/sole.svg"
  18958. }
  18959. },
  18960. },
  18961. [
  18962. {
  18963. name: "Macro",
  18964. height: math.unit(40, "stories"),
  18965. default: true
  18966. },
  18967. {
  18968. name: "Megamacro",
  18969. height: math.unit(1, "mile")
  18970. },
  18971. {
  18972. name: "Gigamacro",
  18973. height: math.unit(4000, "solarradii")
  18974. },
  18975. {
  18976. name: "Universal",
  18977. height: math.unit(1.1, "universes")
  18978. }
  18979. ]
  18980. ))
  18981. characterMakers.push(() => makeCharacter(
  18982. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18983. {
  18984. side: {
  18985. height: math.unit(5 + 7 / 12, "feet"),
  18986. weight: math.unit(150, "lb"),
  18987. name: "Side",
  18988. image: {
  18989. source: "./media/characters/kassy/side.svg",
  18990. extra: 1280 / 1225,
  18991. bottom: 0.002
  18992. }
  18993. },
  18994. front: {
  18995. height: math.unit(5 + 7 / 12, "feet"),
  18996. weight: math.unit(150, "lb"),
  18997. name: "Front",
  18998. image: {
  18999. source: "./media/characters/kassy/front.svg",
  19000. extra: 1280 / 1225,
  19001. bottom: 0.025
  19002. }
  19003. },
  19004. back: {
  19005. height: math.unit(5 + 7 / 12, "feet"),
  19006. weight: math.unit(150, "lb"),
  19007. name: "Back",
  19008. image: {
  19009. source: "./media/characters/kassy/back.svg",
  19010. extra: 1280 / 1225,
  19011. bottom: 0.002
  19012. }
  19013. },
  19014. foot: {
  19015. height: math.unit(1.266, "feet"),
  19016. name: "Foot",
  19017. image: {
  19018. source: "./media/characters/kassy/foot.svg"
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(5 + 7 / 12, "feet")
  19026. },
  19027. {
  19028. name: "Macro",
  19029. height: math.unit(137, "feet"),
  19030. default: true
  19031. },
  19032. {
  19033. name: "Megamacro",
  19034. height: math.unit(1, "mile")
  19035. },
  19036. ]
  19037. ))
  19038. characterMakers.push(() => makeCharacter(
  19039. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19040. {
  19041. front: {
  19042. height: math.unit(6 + 1 / 12, "feet"),
  19043. weight: math.unit(200, "lb"),
  19044. name: "Front",
  19045. image: {
  19046. source: "./media/characters/neil/front.svg",
  19047. extra: 1326 / 1250,
  19048. bottom: 0.023
  19049. }
  19050. },
  19051. },
  19052. [
  19053. {
  19054. name: "Normal",
  19055. height: math.unit(6 + 1 / 12, "feet"),
  19056. default: true
  19057. },
  19058. {
  19059. name: "Macro",
  19060. height: math.unit(200, "feet")
  19061. },
  19062. ]
  19063. ))
  19064. characterMakers.push(() => makeCharacter(
  19065. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19066. {
  19067. front: {
  19068. height: math.unit(5 + 9 / 12, "feet"),
  19069. weight: math.unit(190, "lb"),
  19070. name: "Front",
  19071. image: {
  19072. source: "./media/characters/atticus/front.svg",
  19073. extra: 2934 / 2785,
  19074. bottom: 0.025
  19075. }
  19076. },
  19077. },
  19078. [
  19079. {
  19080. name: "Normal",
  19081. height: math.unit(5 + 9 / 12, "feet"),
  19082. default: true
  19083. },
  19084. {
  19085. name: "Macro",
  19086. height: math.unit(180, "feet")
  19087. },
  19088. ]
  19089. ))
  19090. characterMakers.push(() => makeCharacter(
  19091. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19092. {
  19093. side: {
  19094. height: math.unit(9, "feet"),
  19095. weight: math.unit(650, "lb"),
  19096. name: "Side",
  19097. image: {
  19098. source: "./media/characters/milo/side.svg",
  19099. extra: 2644 / 2310,
  19100. bottom: 0.032
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Normal",
  19107. height: math.unit(9, "feet"),
  19108. default: true
  19109. },
  19110. {
  19111. name: "Macro",
  19112. height: math.unit(300, "feet")
  19113. },
  19114. ]
  19115. ))
  19116. characterMakers.push(() => makeCharacter(
  19117. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19118. {
  19119. side: {
  19120. height: math.unit(8, "meters"),
  19121. weight: math.unit(90000, "kg"),
  19122. name: "Side",
  19123. image: {
  19124. source: "./media/characters/ijzer/side.svg",
  19125. extra: 2756 / 1600,
  19126. bottom: 0.01
  19127. }
  19128. },
  19129. },
  19130. [
  19131. {
  19132. name: "Small",
  19133. height: math.unit(3, "meters")
  19134. },
  19135. {
  19136. name: "Normal",
  19137. height: math.unit(8, "meters"),
  19138. default: true
  19139. },
  19140. {
  19141. name: "Normal+",
  19142. height: math.unit(10, "meters")
  19143. },
  19144. {
  19145. name: "Bigger",
  19146. height: math.unit(24, "meters")
  19147. },
  19148. {
  19149. name: "Huge",
  19150. height: math.unit(80, "meters")
  19151. },
  19152. ]
  19153. ))
  19154. characterMakers.push(() => makeCharacter(
  19155. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19156. {
  19157. front: {
  19158. height: math.unit(6 + 2 / 12, "feet"),
  19159. weight: math.unit(153, "lb"),
  19160. name: "Front",
  19161. image: {
  19162. source: "./media/characters/luca-cervicum/front.svg",
  19163. extra: 370 / 327,
  19164. bottom: 0.015
  19165. }
  19166. },
  19167. back: {
  19168. height: math.unit(6 + 2 / 12, "feet"),
  19169. weight: math.unit(153, "lb"),
  19170. name: "Back",
  19171. image: {
  19172. source: "./media/characters/luca-cervicum/back.svg",
  19173. extra: 367 / 333,
  19174. bottom: 0.005
  19175. }
  19176. },
  19177. frontGear: {
  19178. height: math.unit(6 + 2 / 12, "feet"),
  19179. weight: math.unit(173, "lb"),
  19180. name: "Front (Gear)",
  19181. image: {
  19182. source: "./media/characters/luca-cervicum/front-gear.svg",
  19183. extra: 377 / 333,
  19184. bottom: 0.006
  19185. }
  19186. },
  19187. },
  19188. [
  19189. {
  19190. name: "Normal",
  19191. height: math.unit(6 + 2 / 12, "feet"),
  19192. default: true
  19193. },
  19194. ]
  19195. ))
  19196. characterMakers.push(() => makeCharacter(
  19197. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19198. {
  19199. front: {
  19200. height: math.unit(6 + 1 / 12, "feet"),
  19201. weight: math.unit(304, "lb"),
  19202. name: "Front",
  19203. image: {
  19204. source: "./media/characters/oliver/front.svg",
  19205. extra: 157 / 143,
  19206. bottom: 0.08
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Normal",
  19213. height: math.unit(6 + 1 / 12, "feet"),
  19214. default: true
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19220. {
  19221. front: {
  19222. height: math.unit(5 + 7 / 12, "feet"),
  19223. weight: math.unit(140, "lb"),
  19224. name: "Front",
  19225. image: {
  19226. source: "./media/characters/shane/front.svg",
  19227. extra: 304 / 289,
  19228. bottom: 0.005
  19229. }
  19230. },
  19231. },
  19232. [
  19233. {
  19234. name: "Normal",
  19235. height: math.unit(5 + 7 / 12, "feet"),
  19236. default: true
  19237. },
  19238. ]
  19239. ))
  19240. characterMakers.push(() => makeCharacter(
  19241. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19242. {
  19243. front: {
  19244. height: math.unit(5 + 9 / 12, "feet"),
  19245. weight: math.unit(178, "lb"),
  19246. name: "Front",
  19247. image: {
  19248. source: "./media/characters/shin/front.svg",
  19249. extra: 159 / 151,
  19250. bottom: 0.015
  19251. }
  19252. },
  19253. },
  19254. [
  19255. {
  19256. name: "Normal",
  19257. height: math.unit(5 + 9 / 12, "feet"),
  19258. default: true
  19259. },
  19260. ]
  19261. ))
  19262. characterMakers.push(() => makeCharacter(
  19263. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19264. {
  19265. front: {
  19266. height: math.unit(5 + 10 / 12, "feet"),
  19267. weight: math.unit(168, "lb"),
  19268. name: "Front",
  19269. image: {
  19270. source: "./media/characters/xerxes/front.svg",
  19271. extra: 282 / 260,
  19272. bottom: 0.045
  19273. }
  19274. },
  19275. },
  19276. [
  19277. {
  19278. name: "Normal",
  19279. height: math.unit(5 + 10 / 12, "feet"),
  19280. default: true
  19281. },
  19282. ]
  19283. ))
  19284. characterMakers.push(() => makeCharacter(
  19285. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19286. {
  19287. front: {
  19288. height: math.unit(6 + 7 / 12, "feet"),
  19289. weight: math.unit(208, "lb"),
  19290. name: "Front",
  19291. image: {
  19292. source: "./media/characters/chaska/front.svg",
  19293. extra: 332 / 319,
  19294. bottom: 0.015
  19295. }
  19296. },
  19297. },
  19298. [
  19299. {
  19300. name: "Normal",
  19301. height: math.unit(6 + 7 / 12, "feet"),
  19302. default: true
  19303. },
  19304. ]
  19305. ))
  19306. characterMakers.push(() => makeCharacter(
  19307. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19308. {
  19309. front: {
  19310. height: math.unit(5 + 8 / 12, "feet"),
  19311. weight: math.unit(208, "lb"),
  19312. name: "Front",
  19313. image: {
  19314. source: "./media/characters/enuk/front.svg",
  19315. extra: 437 / 406,
  19316. bottom: 0.02
  19317. }
  19318. },
  19319. },
  19320. [
  19321. {
  19322. name: "Normal",
  19323. height: math.unit(5 + 8 / 12, "feet"),
  19324. default: true
  19325. },
  19326. ]
  19327. ))
  19328. characterMakers.push(() => makeCharacter(
  19329. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19330. {
  19331. front: {
  19332. height: math.unit(5 + 10 / 12, "feet"),
  19333. weight: math.unit(252, "lb"),
  19334. name: "Front",
  19335. image: {
  19336. source: "./media/characters/bruun/front.svg",
  19337. extra: 197 / 187,
  19338. bottom: 0.012
  19339. }
  19340. },
  19341. },
  19342. [
  19343. {
  19344. name: "Normal",
  19345. height: math.unit(5 + 10 / 12, "feet"),
  19346. default: true
  19347. },
  19348. ]
  19349. ))
  19350. characterMakers.push(() => makeCharacter(
  19351. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19352. {
  19353. front: {
  19354. height: math.unit(6 + 10 / 12, "feet"),
  19355. weight: math.unit(255, "lb"),
  19356. name: "Front",
  19357. image: {
  19358. source: "./media/characters/alexeev/front.svg",
  19359. extra: 213 / 200,
  19360. bottom: 0.05
  19361. }
  19362. },
  19363. },
  19364. [
  19365. {
  19366. name: "Normal",
  19367. height: math.unit(6 + 10 / 12, "feet"),
  19368. default: true
  19369. },
  19370. ]
  19371. ))
  19372. characterMakers.push(() => makeCharacter(
  19373. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19374. {
  19375. front: {
  19376. height: math.unit(2 + 8 / 12, "feet"),
  19377. weight: math.unit(22, "lb"),
  19378. name: "Front",
  19379. image: {
  19380. source: "./media/characters/evelyn/front.svg",
  19381. extra: 208 / 180
  19382. }
  19383. },
  19384. },
  19385. [
  19386. {
  19387. name: "Normal",
  19388. height: math.unit(2 + 8 / 12, "feet"),
  19389. default: true
  19390. },
  19391. ]
  19392. ))
  19393. characterMakers.push(() => makeCharacter(
  19394. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19395. {
  19396. front: {
  19397. height: math.unit(5 + 9 / 12, "feet"),
  19398. weight: math.unit(139, "lb"),
  19399. name: "Front",
  19400. image: {
  19401. source: "./media/characters/inca/front.svg",
  19402. extra: 294 / 291,
  19403. bottom: 0.03
  19404. }
  19405. },
  19406. },
  19407. [
  19408. {
  19409. name: "Normal",
  19410. height: math.unit(5 + 9 / 12, "feet"),
  19411. default: true
  19412. },
  19413. ]
  19414. ))
  19415. characterMakers.push(() => makeCharacter(
  19416. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19417. {
  19418. front: {
  19419. height: math.unit(5 + 1 / 12, "feet"),
  19420. weight: math.unit(84, "lb"),
  19421. name: "Front",
  19422. image: {
  19423. source: "./media/characters/magdalene/front.svg",
  19424. extra: 293 / 273
  19425. }
  19426. },
  19427. },
  19428. [
  19429. {
  19430. name: "Normal",
  19431. height: math.unit(5 + 1 / 12, "feet"),
  19432. default: true
  19433. },
  19434. ]
  19435. ))
  19436. characterMakers.push(() => makeCharacter(
  19437. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19438. {
  19439. front: {
  19440. height: math.unit(6 + 3 / 12, "feet"),
  19441. weight: math.unit(185, "lb"),
  19442. name: "Front",
  19443. image: {
  19444. source: "./media/characters/mera/front.svg",
  19445. extra: 291 / 277,
  19446. bottom: 0.03
  19447. }
  19448. },
  19449. },
  19450. [
  19451. {
  19452. name: "Normal",
  19453. height: math.unit(6 + 3 / 12, "feet"),
  19454. default: true
  19455. },
  19456. ]
  19457. ))
  19458. characterMakers.push(() => makeCharacter(
  19459. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19460. {
  19461. front: {
  19462. height: math.unit(6 + 7 / 12, "feet"),
  19463. weight: math.unit(160, "lb"),
  19464. name: "Front",
  19465. image: {
  19466. source: "./media/characters/ceres/front.svg",
  19467. extra: 1023 / 950,
  19468. bottom: 0.027
  19469. }
  19470. },
  19471. back: {
  19472. height: math.unit(6 + 7 / 12, "feet"),
  19473. weight: math.unit(160, "lb"),
  19474. name: "Back",
  19475. image: {
  19476. source: "./media/characters/ceres/back.svg",
  19477. extra: 1023 / 950
  19478. }
  19479. },
  19480. },
  19481. [
  19482. {
  19483. name: "Normal",
  19484. height: math.unit(6 + 7 / 12, "feet"),
  19485. default: true
  19486. },
  19487. ]
  19488. ))
  19489. characterMakers.push(() => makeCharacter(
  19490. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19491. {
  19492. front: {
  19493. height: math.unit(5 + 10 / 12, "feet"),
  19494. weight: math.unit(150, "lb"),
  19495. name: "Front",
  19496. image: {
  19497. source: "./media/characters/kris/front.svg",
  19498. extra: 885 / 803,
  19499. bottom: 0.03
  19500. }
  19501. },
  19502. },
  19503. [
  19504. {
  19505. name: "Normal",
  19506. height: math.unit(5 + 10 / 12, "feet"),
  19507. default: true
  19508. },
  19509. ]
  19510. ))
  19511. characterMakers.push(() => makeCharacter(
  19512. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19513. {
  19514. front: {
  19515. height: math.unit(7, "feet"),
  19516. weight: math.unit(120, "kg"),
  19517. name: "Front",
  19518. image: {
  19519. source: "./media/characters/taluthus/front.svg",
  19520. extra: 903 / 833,
  19521. bottom: 0.015
  19522. }
  19523. },
  19524. },
  19525. [
  19526. {
  19527. name: "Normal",
  19528. height: math.unit(7, "feet"),
  19529. default: true
  19530. },
  19531. {
  19532. name: "Macro",
  19533. height: math.unit(300, "feet")
  19534. },
  19535. ]
  19536. ))
  19537. characterMakers.push(() => makeCharacter(
  19538. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19539. {
  19540. front: {
  19541. height: math.unit(5 + 9 / 12, "feet"),
  19542. weight: math.unit(145, "lb"),
  19543. name: "Front",
  19544. image: {
  19545. source: "./media/characters/dawn/front.svg",
  19546. extra: 2094 / 2016,
  19547. bottom: 0.025
  19548. }
  19549. },
  19550. back: {
  19551. height: math.unit(5 + 9 / 12, "feet"),
  19552. weight: math.unit(160, "lb"),
  19553. name: "Back",
  19554. image: {
  19555. source: "./media/characters/dawn/back.svg",
  19556. extra: 2112 / 2080,
  19557. bottom: 0.005
  19558. }
  19559. },
  19560. },
  19561. [
  19562. {
  19563. name: "Normal",
  19564. height: math.unit(6 + 7 / 12, "feet"),
  19565. default: true
  19566. },
  19567. ]
  19568. ))
  19569. characterMakers.push(() => makeCharacter(
  19570. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19571. {
  19572. anthro: {
  19573. height: math.unit(8 + 3 / 12, "feet"),
  19574. weight: math.unit(450, "lb"),
  19575. name: "Anthro",
  19576. image: {
  19577. source: "./media/characters/arador/anthro.svg",
  19578. extra: 1835 / 1718,
  19579. bottom: 0.025
  19580. }
  19581. },
  19582. feral: {
  19583. height: math.unit(4, "feet"),
  19584. weight: math.unit(200, "lb"),
  19585. name: "Feral",
  19586. image: {
  19587. source: "./media/characters/arador/feral.svg",
  19588. extra: 1683 / 1514,
  19589. bottom: 0.07
  19590. }
  19591. },
  19592. },
  19593. [
  19594. {
  19595. name: "Normal",
  19596. height: math.unit(8 + 3 / 12, "feet")
  19597. },
  19598. {
  19599. name: "Macro",
  19600. height: math.unit(82.5, "feet"),
  19601. default: true
  19602. },
  19603. ]
  19604. ))
  19605. characterMakers.push(() => makeCharacter(
  19606. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19607. {
  19608. front: {
  19609. height: math.unit(5 + 10 / 12, "feet"),
  19610. weight: math.unit(125, "lb"),
  19611. name: "Front",
  19612. image: {
  19613. source: "./media/characters/dharsi/front.svg",
  19614. extra: 716 / 630,
  19615. bottom: 0.035
  19616. }
  19617. },
  19618. },
  19619. [
  19620. {
  19621. name: "Nano",
  19622. height: math.unit(100, "nm")
  19623. },
  19624. {
  19625. name: "Micro",
  19626. height: math.unit(2, "inches")
  19627. },
  19628. {
  19629. name: "Normal",
  19630. height: math.unit(5 + 10 / 12, "feet"),
  19631. default: true
  19632. },
  19633. {
  19634. name: "Macro",
  19635. height: math.unit(1000, "feet")
  19636. },
  19637. {
  19638. name: "Megamacro",
  19639. height: math.unit(10, "miles")
  19640. },
  19641. {
  19642. name: "Gigamacro",
  19643. height: math.unit(3000, "miles")
  19644. },
  19645. {
  19646. name: "Teramacro",
  19647. height: math.unit(500000, "miles")
  19648. },
  19649. {
  19650. name: "Teramacro+",
  19651. height: math.unit(30, "galaxies")
  19652. },
  19653. ]
  19654. ))
  19655. characterMakers.push(() => makeCharacter(
  19656. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19657. {
  19658. front: {
  19659. height: math.unit(6, "feet"),
  19660. weight: math.unit(150, "lb"),
  19661. name: "Front",
  19662. image: {
  19663. source: "./media/characters/deathy/front.svg",
  19664. extra: 1552 / 1463,
  19665. bottom: 0.025
  19666. }
  19667. },
  19668. side: {
  19669. height: math.unit(6, "feet"),
  19670. weight: math.unit(150, "lb"),
  19671. name: "Side",
  19672. image: {
  19673. source: "./media/characters/deathy/side.svg",
  19674. extra: 1604 / 1455,
  19675. bottom: 0.025
  19676. }
  19677. },
  19678. back: {
  19679. height: math.unit(6, "feet"),
  19680. weight: math.unit(150, "lb"),
  19681. name: "Back",
  19682. image: {
  19683. source: "./media/characters/deathy/back.svg",
  19684. extra: 1580 / 1463,
  19685. bottom: 0.005
  19686. }
  19687. },
  19688. },
  19689. [
  19690. {
  19691. name: "Micro",
  19692. height: math.unit(5, "millimeters")
  19693. },
  19694. {
  19695. name: "Normal",
  19696. height: math.unit(6 + 5 / 12, "feet"),
  19697. default: true
  19698. },
  19699. ]
  19700. ))
  19701. characterMakers.push(() => makeCharacter(
  19702. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19703. {
  19704. front: {
  19705. height: math.unit(16, "feet"),
  19706. weight: math.unit(4000, "lb"),
  19707. name: "Front",
  19708. image: {
  19709. source: "./media/characters/juniper/front.svg",
  19710. bottom: 0.04
  19711. }
  19712. },
  19713. },
  19714. [
  19715. {
  19716. name: "Normal",
  19717. height: math.unit(16, "feet"),
  19718. default: true
  19719. },
  19720. ]
  19721. ))
  19722. characterMakers.push(() => makeCharacter(
  19723. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19724. {
  19725. front: {
  19726. height: math.unit(6, "feet"),
  19727. weight: math.unit(150, "lb"),
  19728. name: "Front",
  19729. image: {
  19730. source: "./media/characters/hipster/front.svg",
  19731. extra: 1312 / 1209,
  19732. bottom: 0.025
  19733. }
  19734. },
  19735. back: {
  19736. height: math.unit(6, "feet"),
  19737. weight: math.unit(150, "lb"),
  19738. name: "Back",
  19739. image: {
  19740. source: "./media/characters/hipster/back.svg",
  19741. extra: 1281 / 1196,
  19742. bottom: 0.01
  19743. }
  19744. },
  19745. },
  19746. [
  19747. {
  19748. name: "Micro",
  19749. height: math.unit(1, "mm")
  19750. },
  19751. {
  19752. name: "Normal",
  19753. height: math.unit(4, "inches"),
  19754. default: true
  19755. },
  19756. {
  19757. name: "Macro",
  19758. height: math.unit(500, "feet")
  19759. },
  19760. {
  19761. name: "Megamacro",
  19762. height: math.unit(1000, "miles")
  19763. },
  19764. ]
  19765. ))
  19766. characterMakers.push(() => makeCharacter(
  19767. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19768. {
  19769. front: {
  19770. height: math.unit(6, "feet"),
  19771. weight: math.unit(150, "lb"),
  19772. name: "Front",
  19773. image: {
  19774. source: "./media/characters/tendirmuldr/front.svg",
  19775. extra: 1878 / 1772,
  19776. bottom: 0.015
  19777. }
  19778. },
  19779. },
  19780. [
  19781. {
  19782. name: "Megamacro",
  19783. height: math.unit(1500, "miles"),
  19784. default: true
  19785. },
  19786. ]
  19787. ))
  19788. characterMakers.push(() => makeCharacter(
  19789. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19790. {
  19791. front: {
  19792. height: math.unit(14, "feet"),
  19793. weight: math.unit(12000, "lb"),
  19794. name: "Front",
  19795. image: {
  19796. source: "./media/characters/mort/front.svg",
  19797. extra: 365 / 318,
  19798. bottom: 0.01
  19799. }
  19800. },
  19801. side: {
  19802. height: math.unit(14, "feet"),
  19803. weight: math.unit(12000, "lb"),
  19804. name: "Side",
  19805. image: {
  19806. source: "./media/characters/mort/side.svg",
  19807. extra: 365 / 318,
  19808. bottom: 0.052
  19809. },
  19810. default: true
  19811. },
  19812. back: {
  19813. height: math.unit(14, "feet"),
  19814. weight: math.unit(12000, "lb"),
  19815. name: "Back",
  19816. image: {
  19817. source: "./media/characters/mort/back.svg",
  19818. extra: 371 / 332,
  19819. bottom: 0.18
  19820. }
  19821. },
  19822. },
  19823. [
  19824. {
  19825. name: "Normal",
  19826. height: math.unit(14, "feet"),
  19827. default: true
  19828. },
  19829. ]
  19830. ))
  19831. characterMakers.push(() => makeCharacter(
  19832. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19833. {
  19834. front: {
  19835. height: math.unit(8, "feet"),
  19836. weight: math.unit(1, "ton"),
  19837. name: "Front",
  19838. image: {
  19839. source: "./media/characters/lycoa/front.svg",
  19840. extra: 1875 / 1789,
  19841. bottom: 0.022
  19842. }
  19843. },
  19844. back: {
  19845. height: math.unit(8, "feet"),
  19846. weight: math.unit(1, "ton"),
  19847. name: "Back",
  19848. image: {
  19849. source: "./media/characters/lycoa/back.svg",
  19850. extra: 1835 / 1781,
  19851. bottom: 0.03
  19852. }
  19853. },
  19854. head: {
  19855. height: math.unit(2.1, "feet"),
  19856. name: "Head",
  19857. image: {
  19858. source: "./media/characters/lycoa/head.svg"
  19859. }
  19860. },
  19861. tailmaw: {
  19862. height: math.unit(1.9, "feet"),
  19863. name: "Tailmaw",
  19864. image: {
  19865. source: "./media/characters/lycoa/tailmaw.svg"
  19866. }
  19867. },
  19868. tentacles: {
  19869. height: math.unit(2.1, "feet"),
  19870. name: "Tentacles",
  19871. image: {
  19872. source: "./media/characters/lycoa/tentacles.svg"
  19873. }
  19874. },
  19875. dick: {
  19876. height: math.unit(1.73, "feet"),
  19877. name: "Dick",
  19878. image: {
  19879. source: "./media/characters/lycoa/dick.svg"
  19880. }
  19881. },
  19882. },
  19883. [
  19884. {
  19885. name: "Normal",
  19886. height: math.unit(8, "feet"),
  19887. default: true
  19888. },
  19889. {
  19890. name: "Macro",
  19891. height: math.unit(30, "feet")
  19892. },
  19893. ]
  19894. ))
  19895. characterMakers.push(() => makeCharacter(
  19896. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19897. {
  19898. front: {
  19899. height: math.unit(4 + 2 / 12, "feet"),
  19900. weight: math.unit(70, "lb"),
  19901. name: "Front",
  19902. image: {
  19903. source: "./media/characters/naldara/front.svg",
  19904. extra: 841 / 720,
  19905. bottom: 0.04
  19906. }
  19907. },
  19908. naga: {
  19909. height: math.unit(23, "feet"),
  19910. weight: math.unit(15000, "kg"),
  19911. name: "Naga",
  19912. image: {
  19913. source: "./media/characters/naldara/naga.svg",
  19914. extra: 3290 / 2959,
  19915. bottom: 124 / 3432
  19916. }
  19917. },
  19918. },
  19919. [
  19920. {
  19921. name: "Normal",
  19922. height: math.unit(4 + 2 / 12, "feet"),
  19923. default: true
  19924. },
  19925. ]
  19926. ))
  19927. characterMakers.push(() => makeCharacter(
  19928. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19929. {
  19930. front: {
  19931. height: math.unit(13 + 7 / 12, "feet"),
  19932. weight: math.unit(1500, "lb"),
  19933. name: "Front",
  19934. image: {
  19935. source: "./media/characters/briar/front.svg",
  19936. extra: 626 / 596,
  19937. bottom: 0.08
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Normal",
  19944. height: math.unit(13 + 7 / 12, "feet"),
  19945. default: true
  19946. },
  19947. ]
  19948. ))
  19949. characterMakers.push(() => makeCharacter(
  19950. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19951. {
  19952. side: {
  19953. height: math.unit(10, "feet"),
  19954. weight: math.unit(500, "lb"),
  19955. name: "Side",
  19956. image: {
  19957. source: "./media/characters/vanguard/side.svg",
  19958. extra: 502 / 425,
  19959. bottom: 0.087
  19960. }
  19961. },
  19962. },
  19963. [
  19964. {
  19965. name: "Normal",
  19966. height: math.unit(10, "feet"),
  19967. default: true
  19968. },
  19969. ]
  19970. ))
  19971. characterMakers.push(() => makeCharacter(
  19972. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19973. {
  19974. front: {
  19975. height: math.unit(7.5, "feet"),
  19976. weight: math.unit(2, "lb"),
  19977. name: "Front",
  19978. image: {
  19979. source: "./media/characters/artemis/front.svg",
  19980. extra: 1192 / 1075,
  19981. bottom: 0.07
  19982. }
  19983. },
  19984. frontNsfw: {
  19985. height: math.unit(7.5, "feet"),
  19986. weight: math.unit(2, "lb"),
  19987. name: "Front (NSFW)",
  19988. image: {
  19989. source: "./media/characters/artemis/front-nsfw.svg",
  19990. extra: 1192 / 1075,
  19991. bottom: 0.07
  19992. }
  19993. },
  19994. frontNsfwer: {
  19995. height: math.unit(7.5, "feet"),
  19996. weight: math.unit(2, "lb"),
  19997. name: "Front (NSFW-er)",
  19998. image: {
  19999. source: "./media/characters/artemis/front-nsfwer.svg",
  20000. extra: 1192 / 1075,
  20001. bottom: 0.07
  20002. }
  20003. },
  20004. side: {
  20005. height: math.unit(7.5, "feet"),
  20006. weight: math.unit(2, "lb"),
  20007. name: "Side",
  20008. image: {
  20009. source: "./media/characters/artemis/side.svg",
  20010. extra: 1192 / 1075,
  20011. bottom: 0.07
  20012. }
  20013. },
  20014. sideNsfw: {
  20015. height: math.unit(7.5, "feet"),
  20016. weight: math.unit(2, "lb"),
  20017. name: "Side (NSFW)",
  20018. image: {
  20019. source: "./media/characters/artemis/side-nsfw.svg",
  20020. extra: 1192 / 1075,
  20021. bottom: 0.07
  20022. }
  20023. },
  20024. sideNsfwer: {
  20025. height: math.unit(7.5, "feet"),
  20026. weight: math.unit(2, "lb"),
  20027. name: "Side (NSFW-er)",
  20028. image: {
  20029. source: "./media/characters/artemis/side-nsfwer.svg",
  20030. extra: 1192 / 1075,
  20031. bottom: 0.07
  20032. }
  20033. },
  20034. maw: {
  20035. height: math.unit(1.1, "feet"),
  20036. name: "Maw",
  20037. image: {
  20038. source: "./media/characters/artemis/maw.svg"
  20039. }
  20040. },
  20041. stomach: {
  20042. height: math.unit(0.95, "feet"),
  20043. name: "Stomach",
  20044. image: {
  20045. source: "./media/characters/artemis/stomach.svg"
  20046. }
  20047. },
  20048. dickCanine: {
  20049. height: math.unit(1, "feet"),
  20050. name: "Dick (Canine)",
  20051. image: {
  20052. source: "./media/characters/artemis/dick-canine.svg"
  20053. }
  20054. },
  20055. dickEquine: {
  20056. height: math.unit(0.85, "feet"),
  20057. name: "Dick (Equine)",
  20058. image: {
  20059. source: "./media/characters/artemis/dick-equine.svg"
  20060. }
  20061. },
  20062. dickExotic: {
  20063. height: math.unit(0.85, "feet"),
  20064. name: "Dick (Exotic)",
  20065. image: {
  20066. source: "./media/characters/artemis/dick-exotic.svg"
  20067. }
  20068. },
  20069. },
  20070. [
  20071. {
  20072. name: "Normal",
  20073. height: math.unit(7.5, "feet"),
  20074. default: true
  20075. },
  20076. {
  20077. name: "Enlarged",
  20078. height: math.unit(12, "feet")
  20079. },
  20080. ]
  20081. ))
  20082. characterMakers.push(() => makeCharacter(
  20083. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20084. {
  20085. front: {
  20086. height: math.unit(5 + 3 / 12, "feet"),
  20087. weight: math.unit(160, "lb"),
  20088. name: "Front",
  20089. image: {
  20090. source: "./media/characters/kira/front.svg",
  20091. extra: 906 / 786,
  20092. bottom: 0.01
  20093. }
  20094. },
  20095. back: {
  20096. height: math.unit(5 + 3 / 12, "feet"),
  20097. weight: math.unit(160, "lb"),
  20098. name: "Back",
  20099. image: {
  20100. source: "./media/characters/kira/back.svg",
  20101. extra: 882 / 757,
  20102. bottom: 0.005
  20103. }
  20104. },
  20105. frontDressed: {
  20106. height: math.unit(5 + 3 / 12, "feet"),
  20107. weight: math.unit(160, "lb"),
  20108. name: "Front (Dressed)",
  20109. image: {
  20110. source: "./media/characters/kira/front-dressed.svg",
  20111. extra: 906 / 786,
  20112. bottom: 0.01
  20113. }
  20114. },
  20115. beans: {
  20116. height: math.unit(0.92, "feet"),
  20117. name: "Beans",
  20118. image: {
  20119. source: "./media/characters/kira/beans.svg"
  20120. }
  20121. },
  20122. },
  20123. [
  20124. {
  20125. name: "Normal",
  20126. height: math.unit(5 + 3 / 12, "feet"),
  20127. default: true
  20128. },
  20129. ]
  20130. ))
  20131. characterMakers.push(() => makeCharacter(
  20132. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20133. {
  20134. front: {
  20135. height: math.unit(5 + 4 / 12, "feet"),
  20136. weight: math.unit(145, "lb"),
  20137. name: "Front",
  20138. image: {
  20139. source: "./media/characters/scramble/front.svg",
  20140. extra: 763 / 727,
  20141. bottom: 0.05
  20142. }
  20143. },
  20144. back: {
  20145. height: math.unit(5 + 4 / 12, "feet"),
  20146. weight: math.unit(145, "lb"),
  20147. name: "Back",
  20148. image: {
  20149. source: "./media/characters/scramble/back.svg",
  20150. extra: 826 / 737,
  20151. bottom: 0.002
  20152. }
  20153. },
  20154. },
  20155. [
  20156. {
  20157. name: "Normal",
  20158. height: math.unit(5 + 4 / 12, "feet"),
  20159. default: true
  20160. },
  20161. ]
  20162. ))
  20163. characterMakers.push(() => makeCharacter(
  20164. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20165. {
  20166. side: {
  20167. height: math.unit(6 + 2 / 12, "feet"),
  20168. weight: math.unit(190, "lb"),
  20169. name: "Side",
  20170. image: {
  20171. source: "./media/characters/biscuit/side.svg",
  20172. extra: 858 / 791,
  20173. bottom: 0.044
  20174. }
  20175. },
  20176. },
  20177. [
  20178. {
  20179. name: "Normal",
  20180. height: math.unit(6 + 2 / 12, "feet"),
  20181. default: true
  20182. },
  20183. ]
  20184. ))
  20185. characterMakers.push(() => makeCharacter(
  20186. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20187. {
  20188. front: {
  20189. height: math.unit(5 + 2 / 12, "feet"),
  20190. weight: math.unit(120, "lb"),
  20191. name: "Front",
  20192. image: {
  20193. source: "./media/characters/poffin/front.svg",
  20194. extra: 786 / 680,
  20195. bottom: 0.005
  20196. }
  20197. },
  20198. },
  20199. [
  20200. {
  20201. name: "Normal",
  20202. height: math.unit(5 + 2 / 12, "feet"),
  20203. default: true
  20204. },
  20205. ]
  20206. ))
  20207. characterMakers.push(() => makeCharacter(
  20208. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20209. {
  20210. front: {
  20211. height: math.unit(6 + 3 / 12, "feet"),
  20212. weight: math.unit(519, "lb"),
  20213. name: "Front",
  20214. image: {
  20215. source: "./media/characters/dhari/front.svg",
  20216. extra: 1048 / 946,
  20217. bottom: 0.015
  20218. }
  20219. },
  20220. back: {
  20221. height: math.unit(6 + 3 / 12, "feet"),
  20222. weight: math.unit(519, "lb"),
  20223. name: "Back",
  20224. image: {
  20225. source: "./media/characters/dhari/back.svg",
  20226. extra: 1048 / 931,
  20227. bottom: 0.005
  20228. }
  20229. },
  20230. frontDressed: {
  20231. height: math.unit(6 + 3 / 12, "feet"),
  20232. weight: math.unit(519, "lb"),
  20233. name: "Front (Dressed)",
  20234. image: {
  20235. source: "./media/characters/dhari/front-dressed.svg",
  20236. extra: 1713 / 1546,
  20237. bottom: 0.02
  20238. }
  20239. },
  20240. backDressed: {
  20241. height: math.unit(6 + 3 / 12, "feet"),
  20242. weight: math.unit(519, "lb"),
  20243. name: "Back (Dressed)",
  20244. image: {
  20245. source: "./media/characters/dhari/back-dressed.svg",
  20246. extra: 1699 / 1537,
  20247. bottom: 0.01
  20248. }
  20249. },
  20250. maw: {
  20251. height: math.unit(0.95, "feet"),
  20252. name: "Maw",
  20253. image: {
  20254. source: "./media/characters/dhari/maw.svg"
  20255. }
  20256. },
  20257. wereFront: {
  20258. height: math.unit(12 + 8 / 12, "feet"),
  20259. weight: math.unit(4000, "lb"),
  20260. name: "Front (Were)",
  20261. image: {
  20262. source: "./media/characters/dhari/were-front.svg",
  20263. extra: 1065 / 969,
  20264. bottom: 0.015
  20265. }
  20266. },
  20267. wereBack: {
  20268. height: math.unit(12 + 8 / 12, "feet"),
  20269. weight: math.unit(4000, "lb"),
  20270. name: "Back (Were)",
  20271. image: {
  20272. source: "./media/characters/dhari/were-back.svg",
  20273. extra: 1065 / 969,
  20274. bottom: 0.012
  20275. }
  20276. },
  20277. wereMaw: {
  20278. height: math.unit(0.625, "meters"),
  20279. name: "Maw (Were)",
  20280. image: {
  20281. source: "./media/characters/dhari/were-maw.svg"
  20282. }
  20283. },
  20284. },
  20285. [
  20286. {
  20287. name: "Normal",
  20288. height: math.unit(6 + 3 / 12, "feet"),
  20289. default: true
  20290. },
  20291. ]
  20292. ))
  20293. characterMakers.push(() => makeCharacter(
  20294. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20295. {
  20296. anthro: {
  20297. height: math.unit(5 + 7 / 12, "feet"),
  20298. weight: math.unit(175, "lb"),
  20299. name: "Anthro",
  20300. image: {
  20301. source: "./media/characters/rena-dyne/anthro.svg",
  20302. extra: 1849 / 1785,
  20303. bottom: 0.005
  20304. }
  20305. },
  20306. taur: {
  20307. height: math.unit(15 + 6 / 12, "feet"),
  20308. weight: math.unit(8000, "lb"),
  20309. name: "Taur",
  20310. image: {
  20311. source: "./media/characters/rena-dyne/taur.svg",
  20312. extra: 2315 / 2234,
  20313. bottom: 0.033
  20314. }
  20315. },
  20316. },
  20317. [
  20318. {
  20319. name: "Normal",
  20320. height: math.unit(5 + 7 / 12, "feet"),
  20321. default: true
  20322. },
  20323. ]
  20324. ))
  20325. characterMakers.push(() => makeCharacter(
  20326. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20327. {
  20328. front: {
  20329. height: math.unit(8, "feet"),
  20330. weight: math.unit(600, "lb"),
  20331. name: "Front",
  20332. image: {
  20333. source: "./media/characters/weremeep/front.svg",
  20334. extra: 967 / 862,
  20335. bottom: 0.01
  20336. }
  20337. },
  20338. },
  20339. [
  20340. {
  20341. name: "Normal",
  20342. height: math.unit(8, "feet"),
  20343. default: true
  20344. },
  20345. {
  20346. name: "Lorg",
  20347. height: math.unit(12, "feet")
  20348. },
  20349. {
  20350. name: "Oh Lawd She Comin'",
  20351. height: math.unit(20, "feet")
  20352. },
  20353. ]
  20354. ))
  20355. characterMakers.push(() => makeCharacter(
  20356. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20357. {
  20358. front: {
  20359. height: math.unit(4, "feet"),
  20360. weight: math.unit(90, "lb"),
  20361. name: "Front",
  20362. image: {
  20363. source: "./media/characters/reza/front.svg",
  20364. extra: 1183 / 1111,
  20365. bottom: 0.017
  20366. }
  20367. },
  20368. back: {
  20369. height: math.unit(4, "feet"),
  20370. weight: math.unit(90, "lb"),
  20371. name: "Back",
  20372. image: {
  20373. source: "./media/characters/reza/back.svg",
  20374. extra: 1183 / 1111,
  20375. bottom: 0.01
  20376. }
  20377. },
  20378. drake: {
  20379. height: math.unit(30, "feet"),
  20380. weight: math.unit(246960, "lb"),
  20381. name: "Drake",
  20382. image: {
  20383. source: "./media/characters/reza/drake.svg",
  20384. extra: 2350 / 2024,
  20385. bottom: 60.7 / 2403
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(4, "feet"),
  20393. default: true
  20394. },
  20395. ]
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20399. {
  20400. side: {
  20401. height: math.unit(15, "feet"),
  20402. weight: math.unit(14, "tons"),
  20403. name: "Side",
  20404. image: {
  20405. source: "./media/characters/athea/side.svg",
  20406. extra: 960 / 540,
  20407. bottom: 0.003
  20408. }
  20409. },
  20410. sitting: {
  20411. height: math.unit(6 * 2.85, "feet"),
  20412. weight: math.unit(14, "tons"),
  20413. name: "Sitting",
  20414. image: {
  20415. source: "./media/characters/athea/sitting.svg",
  20416. extra: 621 / 581,
  20417. bottom: 0.075
  20418. }
  20419. },
  20420. maw: {
  20421. height: math.unit(7.59498031496063, "feet"),
  20422. name: "Maw",
  20423. image: {
  20424. source: "./media/characters/athea/maw.svg"
  20425. }
  20426. },
  20427. },
  20428. [
  20429. {
  20430. name: "Lap Cat",
  20431. height: math.unit(2.5, "feet")
  20432. },
  20433. {
  20434. name: "Minimacro",
  20435. height: math.unit(15, "feet"),
  20436. default: true
  20437. },
  20438. {
  20439. name: "Macro",
  20440. height: math.unit(120, "feet")
  20441. },
  20442. {
  20443. name: "Macro+",
  20444. height: math.unit(640, "feet")
  20445. },
  20446. {
  20447. name: "Colossus",
  20448. height: math.unit(2.2, "miles")
  20449. },
  20450. ]
  20451. ))
  20452. characterMakers.push(() => makeCharacter(
  20453. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20454. {
  20455. front: {
  20456. height: math.unit(8 + 8 / 12, "feet"),
  20457. weight: math.unit(130, "kg"),
  20458. name: "Front",
  20459. image: {
  20460. source: "./media/characters/seroko/front.svg",
  20461. extra: 1385 / 1280,
  20462. bottom: 0.025
  20463. }
  20464. },
  20465. back: {
  20466. height: math.unit(8 + 8 / 12, "feet"),
  20467. weight: math.unit(130, "kg"),
  20468. name: "Back",
  20469. image: {
  20470. source: "./media/characters/seroko/back.svg",
  20471. extra: 1369 / 1238,
  20472. bottom: 0.018
  20473. }
  20474. },
  20475. frontDressed: {
  20476. height: math.unit(8 + 8 / 12, "feet"),
  20477. weight: math.unit(130, "kg"),
  20478. name: "Front (Dressed)",
  20479. image: {
  20480. source: "./media/characters/seroko/front-dressed.svg",
  20481. extra: 1366 / 1275,
  20482. bottom: 0.03
  20483. }
  20484. },
  20485. },
  20486. [
  20487. {
  20488. name: "Normal",
  20489. height: math.unit(8 + 8 / 12, "feet"),
  20490. default: true
  20491. },
  20492. ]
  20493. ))
  20494. characterMakers.push(() => makeCharacter(
  20495. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20496. {
  20497. front: {
  20498. height: math.unit(5.5, "feet"),
  20499. weight: math.unit(160, "lb"),
  20500. name: "Front",
  20501. image: {
  20502. source: "./media/characters/quatzi/front.svg",
  20503. extra: 2346 / 2242,
  20504. bottom: 0.015
  20505. }
  20506. },
  20507. },
  20508. [
  20509. {
  20510. name: "Normal",
  20511. height: math.unit(5.5, "feet"),
  20512. default: true
  20513. },
  20514. {
  20515. name: "Big",
  20516. height: math.unit(7.7, "feet")
  20517. },
  20518. ]
  20519. ))
  20520. characterMakers.push(() => makeCharacter(
  20521. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20522. {
  20523. front: {
  20524. height: math.unit(5 + 11 / 12, "feet"),
  20525. weight: math.unit(180, "lb"),
  20526. name: "Front",
  20527. image: {
  20528. source: "./media/characters/sen/front.svg",
  20529. extra: 1321 / 1254,
  20530. bottom: 0.015
  20531. }
  20532. },
  20533. side: {
  20534. height: math.unit(5 + 11 / 12, "feet"),
  20535. weight: math.unit(180, "lb"),
  20536. name: "Side",
  20537. image: {
  20538. source: "./media/characters/sen/side.svg",
  20539. extra: 1321 / 1254,
  20540. bottom: 0.007
  20541. }
  20542. },
  20543. back: {
  20544. height: math.unit(5 + 11 / 12, "feet"),
  20545. weight: math.unit(180, "lb"),
  20546. name: "Back",
  20547. image: {
  20548. source: "./media/characters/sen/back.svg",
  20549. extra: 1321 / 1254
  20550. }
  20551. },
  20552. },
  20553. [
  20554. {
  20555. name: "Normal",
  20556. height: math.unit(5 + 11 / 12, "feet"),
  20557. default: true
  20558. },
  20559. ]
  20560. ))
  20561. characterMakers.push(() => makeCharacter(
  20562. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20563. {
  20564. front: {
  20565. height: math.unit(166.6, "cm"),
  20566. weight: math.unit(66.6, "kg"),
  20567. name: "Front",
  20568. image: {
  20569. source: "./media/characters/fruity/front.svg",
  20570. extra: 1510 / 1386,
  20571. bottom: 0.04
  20572. }
  20573. },
  20574. back: {
  20575. height: math.unit(166.6, "cm"),
  20576. weight: math.unit(66.6, "lb"),
  20577. name: "Back",
  20578. image: {
  20579. source: "./media/characters/fruity/back.svg",
  20580. extra: 1563 / 1435,
  20581. bottom: 0.005
  20582. }
  20583. },
  20584. },
  20585. [
  20586. {
  20587. name: "Normal",
  20588. height: math.unit(166.6, "cm"),
  20589. default: true
  20590. },
  20591. {
  20592. name: "Demonic",
  20593. height: math.unit(166.6, "feet")
  20594. },
  20595. ]
  20596. ))
  20597. characterMakers.push(() => makeCharacter(
  20598. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20599. {
  20600. side: {
  20601. height: math.unit(10, "feet"),
  20602. weight: math.unit(500, "lb"),
  20603. name: "Side",
  20604. image: {
  20605. source: "./media/characters/zost/side.svg",
  20606. extra: 966 / 880,
  20607. bottom: 0.075
  20608. }
  20609. },
  20610. mawFront: {
  20611. height: math.unit(1.08, "meters"),
  20612. name: "Maw (Front)",
  20613. image: {
  20614. source: "./media/characters/zost/maw-front.svg"
  20615. }
  20616. },
  20617. mawSide: {
  20618. height: math.unit(2.66, "feet"),
  20619. name: "Maw (Side)",
  20620. image: {
  20621. source: "./media/characters/zost/maw-side.svg"
  20622. }
  20623. },
  20624. },
  20625. [
  20626. {
  20627. name: "Normal",
  20628. height: math.unit(10, "feet"),
  20629. default: true
  20630. },
  20631. ]
  20632. ))
  20633. characterMakers.push(() => makeCharacter(
  20634. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20635. {
  20636. front: {
  20637. height: math.unit(5 + 4 / 12, "feet"),
  20638. weight: math.unit(120, "lb"),
  20639. name: "Front",
  20640. image: {
  20641. source: "./media/characters/luci/front.svg",
  20642. extra: 1985 / 1884,
  20643. bottom: 0.04
  20644. }
  20645. },
  20646. back: {
  20647. height: math.unit(5 + 4 / 12, "feet"),
  20648. weight: math.unit(120, "lb"),
  20649. name: "Back",
  20650. image: {
  20651. source: "./media/characters/luci/back.svg",
  20652. extra: 1892 / 1791,
  20653. bottom: 0.002
  20654. }
  20655. },
  20656. },
  20657. [
  20658. {
  20659. name: "Normal",
  20660. height: math.unit(5 + 4 / 12, "feet"),
  20661. default: true
  20662. },
  20663. ]
  20664. ))
  20665. characterMakers.push(() => makeCharacter(
  20666. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20667. {
  20668. front: {
  20669. height: math.unit(1500, "feet"),
  20670. weight: math.unit(3.8e6, "tons"),
  20671. name: "Front",
  20672. image: {
  20673. source: "./media/characters/2th/front.svg",
  20674. extra: 3489 / 3350,
  20675. bottom: 0.1
  20676. }
  20677. },
  20678. foot: {
  20679. height: math.unit(461, "feet"),
  20680. name: "Foot",
  20681. image: {
  20682. source: "./media/characters/2th/foot.svg"
  20683. }
  20684. },
  20685. },
  20686. [
  20687. {
  20688. name: "\"Micro\"",
  20689. height: math.unit(15 + 7 / 12, "feet")
  20690. },
  20691. {
  20692. name: "Normal",
  20693. height: math.unit(1500, "feet"),
  20694. default: true
  20695. },
  20696. {
  20697. name: "Macro",
  20698. height: math.unit(5000, "feet")
  20699. },
  20700. {
  20701. name: "Megamacro",
  20702. height: math.unit(15, "miles")
  20703. },
  20704. {
  20705. name: "Gigamacro",
  20706. height: math.unit(4000, "miles")
  20707. },
  20708. {
  20709. name: "Galactic",
  20710. height: math.unit(50, "AU")
  20711. },
  20712. ]
  20713. ))
  20714. characterMakers.push(() => makeCharacter(
  20715. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20716. {
  20717. front: {
  20718. height: math.unit(5 + 6 / 12, "feet"),
  20719. weight: math.unit(220, "lb"),
  20720. name: "Front",
  20721. image: {
  20722. source: "./media/characters/amethyst/front.svg",
  20723. extra: 2078 / 2040,
  20724. bottom: 0.045
  20725. }
  20726. },
  20727. back: {
  20728. height: math.unit(5 + 6 / 12, "feet"),
  20729. weight: math.unit(220, "lb"),
  20730. name: "Back",
  20731. image: {
  20732. source: "./media/characters/amethyst/back.svg",
  20733. extra: 2021 / 1989,
  20734. bottom: 0.02
  20735. }
  20736. },
  20737. },
  20738. [
  20739. {
  20740. name: "Normal",
  20741. height: math.unit(5 + 6 / 12, "feet"),
  20742. default: true
  20743. },
  20744. ]
  20745. ))
  20746. characterMakers.push(() => makeCharacter(
  20747. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20748. {
  20749. front: {
  20750. height: math.unit(4 + 11 / 12, "feet"),
  20751. weight: math.unit(120, "lb"),
  20752. name: "Front",
  20753. image: {
  20754. source: "./media/characters/yumi-akiyama/front.svg",
  20755. extra: 1327 / 1235,
  20756. bottom: 0.02
  20757. }
  20758. },
  20759. back: {
  20760. height: math.unit(4 + 11 / 12, "feet"),
  20761. weight: math.unit(120, "lb"),
  20762. name: "Back",
  20763. image: {
  20764. source: "./media/characters/yumi-akiyama/back.svg",
  20765. extra: 1287 / 1245,
  20766. bottom: 0.002
  20767. }
  20768. },
  20769. },
  20770. [
  20771. {
  20772. name: "Galactic",
  20773. height: math.unit(50, "galaxies"),
  20774. default: true
  20775. },
  20776. {
  20777. name: "Universal",
  20778. height: math.unit(100, "universes")
  20779. },
  20780. ]
  20781. ))
  20782. characterMakers.push(() => makeCharacter(
  20783. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20784. {
  20785. front: {
  20786. height: math.unit(8, "feet"),
  20787. weight: math.unit(500, "lb"),
  20788. name: "Front",
  20789. image: {
  20790. source: "./media/characters/rifter-yrmori/front.svg",
  20791. extra: 1180 / 1125,
  20792. bottom: 0.02
  20793. }
  20794. },
  20795. back: {
  20796. height: math.unit(8, "feet"),
  20797. weight: math.unit(500, "lb"),
  20798. name: "Back",
  20799. image: {
  20800. source: "./media/characters/rifter-yrmori/back.svg",
  20801. extra: 1190 / 1145,
  20802. bottom: 0.001
  20803. }
  20804. },
  20805. wings: {
  20806. height: math.unit(7.75, "feet"),
  20807. weight: math.unit(500, "lb"),
  20808. name: "Wings",
  20809. image: {
  20810. source: "./media/characters/rifter-yrmori/wings.svg",
  20811. extra: 1357 / 1285
  20812. }
  20813. },
  20814. maw: {
  20815. height: math.unit(0.8, "feet"),
  20816. name: "Maw",
  20817. image: {
  20818. source: "./media/characters/rifter-yrmori/maw.svg"
  20819. }
  20820. },
  20821. mawfront: {
  20822. height: math.unit(1.45, "feet"),
  20823. name: "Maw (Front)",
  20824. image: {
  20825. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20826. }
  20827. },
  20828. },
  20829. [
  20830. {
  20831. name: "Normal",
  20832. height: math.unit(8, "feet"),
  20833. default: true
  20834. },
  20835. {
  20836. name: "Macro",
  20837. height: math.unit(42, "meters")
  20838. },
  20839. ]
  20840. ))
  20841. characterMakers.push(() => makeCharacter(
  20842. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  20843. {
  20844. were: {
  20845. height: math.unit(25 + 6 / 12, "feet"),
  20846. weight: math.unit(10000, "lb"),
  20847. name: "Were",
  20848. image: {
  20849. source: "./media/characters/tahajin/were.svg",
  20850. extra: 801 / 770,
  20851. bottom: 0.042
  20852. }
  20853. },
  20854. aquatic: {
  20855. height: math.unit(6 + 4 / 12, "feet"),
  20856. weight: math.unit(160, "lb"),
  20857. name: "Aquatic",
  20858. image: {
  20859. source: "./media/characters/tahajin/aquatic.svg",
  20860. extra: 572 / 542,
  20861. bottom: 0.04
  20862. }
  20863. },
  20864. chow: {
  20865. height: math.unit(8 + 11 / 12, "feet"),
  20866. weight: math.unit(450, "lb"),
  20867. name: "Chow",
  20868. image: {
  20869. source: "./media/characters/tahajin/chow.svg",
  20870. extra: 660 / 640,
  20871. bottom: 0.015
  20872. }
  20873. },
  20874. demiNaga: {
  20875. height: math.unit(6 + 8 / 12, "feet"),
  20876. weight: math.unit(300, "lb"),
  20877. name: "Demi Naga",
  20878. image: {
  20879. source: "./media/characters/tahajin/demi-naga.svg",
  20880. extra: 643 / 615,
  20881. bottom: 0.1
  20882. }
  20883. },
  20884. data: {
  20885. height: math.unit(5, "inches"),
  20886. weight: math.unit(0.1, "lb"),
  20887. name: "Data",
  20888. image: {
  20889. source: "./media/characters/tahajin/data.svg"
  20890. }
  20891. },
  20892. fluu: {
  20893. height: math.unit(5 + 7 / 12, "feet"),
  20894. weight: math.unit(140, "lb"),
  20895. name: "Fluu",
  20896. image: {
  20897. source: "./media/characters/tahajin/fluu.svg",
  20898. extra: 628 / 592,
  20899. bottom: 0.02
  20900. }
  20901. },
  20902. starWarrior: {
  20903. height: math.unit(4 + 5 / 12, "feet"),
  20904. weight: math.unit(50, "lb"),
  20905. name: "Star Warrior",
  20906. image: {
  20907. source: "./media/characters/tahajin/star-warrior.svg"
  20908. }
  20909. },
  20910. },
  20911. [
  20912. {
  20913. name: "Normal",
  20914. height: math.unit(25 + 6 / 12, "feet"),
  20915. default: true
  20916. },
  20917. ]
  20918. ))
  20919. characterMakers.push(() => makeCharacter(
  20920. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20921. {
  20922. front: {
  20923. height: math.unit(8, "feet"),
  20924. weight: math.unit(350, "lb"),
  20925. name: "Front",
  20926. image: {
  20927. source: "./media/characters/gabira/front.svg",
  20928. extra: 608 / 580,
  20929. bottom: 0.03
  20930. }
  20931. },
  20932. back: {
  20933. height: math.unit(8, "feet"),
  20934. weight: math.unit(350, "lb"),
  20935. name: "Back",
  20936. image: {
  20937. source: "./media/characters/gabira/back.svg",
  20938. extra: 608 / 580,
  20939. bottom: 0.03
  20940. }
  20941. },
  20942. },
  20943. [
  20944. {
  20945. name: "Normal",
  20946. height: math.unit(8, "feet"),
  20947. default: true
  20948. },
  20949. ]
  20950. ))
  20951. characterMakers.push(() => makeCharacter(
  20952. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20953. {
  20954. front: {
  20955. height: math.unit(5 + 3 / 12, "feet"),
  20956. weight: math.unit(137, "lb"),
  20957. name: "Front",
  20958. image: {
  20959. source: "./media/characters/sasha-katraine/front.svg",
  20960. bottom: 0.045
  20961. }
  20962. },
  20963. },
  20964. [
  20965. {
  20966. name: "Micro",
  20967. height: math.unit(5, "inches")
  20968. },
  20969. {
  20970. name: "Normal",
  20971. height: math.unit(5 + 3 / 12, "feet"),
  20972. default: true
  20973. },
  20974. ]
  20975. ))
  20976. characterMakers.push(() => makeCharacter(
  20977. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20978. {
  20979. side: {
  20980. height: math.unit(4, "inches"),
  20981. weight: math.unit(200, "grams"),
  20982. name: "Side",
  20983. image: {
  20984. source: "./media/characters/der/side.svg",
  20985. extra: 719 / 400,
  20986. bottom: 30.6 / 749.9187
  20987. }
  20988. },
  20989. },
  20990. [
  20991. {
  20992. name: "Micro",
  20993. height: math.unit(4, "inches"),
  20994. default: true
  20995. },
  20996. ]
  20997. ))
  20998. characterMakers.push(() => makeCharacter(
  20999. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21000. {
  21001. side: {
  21002. height: math.unit(30, "meters"),
  21003. weight: math.unit(700, "tonnes"),
  21004. name: "Side",
  21005. image: {
  21006. source: "./media/characters/fixerdragon/side.svg",
  21007. extra: (1293.0514 - 116.03) / 1106.86,
  21008. bottom: 116.03 / 1293.0514
  21009. }
  21010. },
  21011. },
  21012. [
  21013. {
  21014. name: "Planck",
  21015. height: math.unit(1.6e-35, "meters")
  21016. },
  21017. {
  21018. name: "Micro",
  21019. height: math.unit(0.4, "meters")
  21020. },
  21021. {
  21022. name: "Normal",
  21023. height: math.unit(30, "meters"),
  21024. default: true
  21025. },
  21026. {
  21027. name: "Megamacro",
  21028. height: math.unit(1.2, "megameters")
  21029. },
  21030. {
  21031. name: "Teramacro",
  21032. height: math.unit(130, "terameters")
  21033. },
  21034. {
  21035. name: "Yottamacro",
  21036. height: math.unit(6200, "yottameters")
  21037. },
  21038. ]
  21039. ));
  21040. characterMakers.push(() => makeCharacter(
  21041. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21042. {
  21043. front: {
  21044. height: math.unit(8, "feet"),
  21045. weight: math.unit(250, "lb"),
  21046. name: "Front",
  21047. image: {
  21048. source: "./media/characters/kite/front.svg",
  21049. extra: 2796 / 2659,
  21050. bottom: 0.002
  21051. }
  21052. },
  21053. },
  21054. [
  21055. {
  21056. name: "Normal",
  21057. height: math.unit(8, "feet"),
  21058. default: true
  21059. },
  21060. {
  21061. name: "Macro",
  21062. height: math.unit(360, "feet")
  21063. },
  21064. {
  21065. name: "Megamacro",
  21066. height: math.unit(1500, "feet")
  21067. },
  21068. ]
  21069. ))
  21070. characterMakers.push(() => makeCharacter(
  21071. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21072. {
  21073. front: {
  21074. height: math.unit(5 + 10 / 12, "feet"),
  21075. weight: math.unit(150, "lb"),
  21076. name: "Front",
  21077. image: {
  21078. source: "./media/characters/poojawa-vynar/front.svg",
  21079. extra: (1506.1547 - 55) / 1356.6,
  21080. bottom: 55 / 1506.1547
  21081. }
  21082. },
  21083. frontTailless: {
  21084. height: math.unit(5 + 10 / 12, "feet"),
  21085. weight: math.unit(150, "lb"),
  21086. name: "Front (Tailless)",
  21087. image: {
  21088. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21089. extra: (1506.1547 - 55) / 1356.6,
  21090. bottom: 55 / 1506.1547
  21091. }
  21092. },
  21093. },
  21094. [
  21095. {
  21096. name: "Normal",
  21097. height: math.unit(5 + 10 / 12, "feet"),
  21098. default: true
  21099. },
  21100. ]
  21101. ))
  21102. characterMakers.push(() => makeCharacter(
  21103. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21104. {
  21105. front: {
  21106. height: math.unit(293, "meters"),
  21107. weight: math.unit(70400, "tons"),
  21108. name: "Front",
  21109. image: {
  21110. source: "./media/characters/violette/front.svg",
  21111. extra: 1227 / 1180,
  21112. bottom: 0.005
  21113. }
  21114. },
  21115. back: {
  21116. height: math.unit(293, "meters"),
  21117. weight: math.unit(70400, "tons"),
  21118. name: "Back",
  21119. image: {
  21120. source: "./media/characters/violette/back.svg",
  21121. extra: 1227 / 1180,
  21122. bottom: 0.005
  21123. }
  21124. },
  21125. },
  21126. [
  21127. {
  21128. name: "Macro",
  21129. height: math.unit(293, "meters"),
  21130. default: true
  21131. },
  21132. ]
  21133. ))
  21134. characterMakers.push(() => makeCharacter(
  21135. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21136. {
  21137. front: {
  21138. height: math.unit(1050, "feet"),
  21139. weight: math.unit(200000, "tons"),
  21140. name: "Front",
  21141. image: {
  21142. source: "./media/characters/alessandra/front.svg",
  21143. extra: 960 / 912,
  21144. bottom: 0.06
  21145. }
  21146. },
  21147. },
  21148. [
  21149. {
  21150. name: "Macro",
  21151. height: math.unit(1050, "feet")
  21152. },
  21153. {
  21154. name: "Macro+",
  21155. height: math.unit(900, "meters"),
  21156. default: true
  21157. },
  21158. ]
  21159. ))
  21160. characterMakers.push(() => makeCharacter(
  21161. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21162. {
  21163. front: {
  21164. height: math.unit(5, "feet"),
  21165. weight: math.unit(187, "lb"),
  21166. name: "Front",
  21167. image: {
  21168. source: "./media/characters/person/front.svg",
  21169. extra: 3087 / 2945,
  21170. bottom: 91 / 3181
  21171. }
  21172. },
  21173. },
  21174. [
  21175. {
  21176. name: "Micro",
  21177. height: math.unit(3, "inches")
  21178. },
  21179. {
  21180. name: "Normal",
  21181. height: math.unit(5, "feet"),
  21182. default: true
  21183. },
  21184. {
  21185. name: "Macro",
  21186. height: math.unit(90, "feet")
  21187. },
  21188. {
  21189. name: "Max Size",
  21190. height: math.unit(280, "feet")
  21191. },
  21192. ]
  21193. ))
  21194. characterMakers.push(() => makeCharacter(
  21195. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21196. {
  21197. front: {
  21198. height: math.unit(4.5, "meters"),
  21199. weight: math.unit(3200, "lb"),
  21200. name: "Front",
  21201. image: {
  21202. source: "./media/characters/ty/front.svg",
  21203. extra: 1038 / 960,
  21204. bottom: 31.156 / 1068
  21205. }
  21206. },
  21207. back: {
  21208. height: math.unit(4.5, "meters"),
  21209. weight: math.unit(3200, "lb"),
  21210. name: "Back",
  21211. image: {
  21212. source: "./media/characters/ty/back.svg",
  21213. extra: 1044 / 966,
  21214. bottom: 7.48 / 1049
  21215. }
  21216. },
  21217. },
  21218. [
  21219. {
  21220. name: "Normal",
  21221. height: math.unit(4.5, "meters"),
  21222. default: true
  21223. },
  21224. ]
  21225. ))
  21226. characterMakers.push(() => makeCharacter(
  21227. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21228. {
  21229. front: {
  21230. height: math.unit(5 + 4 / 12, "feet"),
  21231. weight: math.unit(115, "lb"),
  21232. name: "Front",
  21233. image: {
  21234. source: "./media/characters/rocky/front.svg",
  21235. extra: 1012 / 975,
  21236. bottom: 54 / 1066
  21237. }
  21238. },
  21239. },
  21240. [
  21241. {
  21242. name: "Normal",
  21243. height: math.unit(5 + 4 / 12, "feet"),
  21244. default: true
  21245. },
  21246. ]
  21247. ))
  21248. characterMakers.push(() => makeCharacter(
  21249. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21250. {
  21251. upright: {
  21252. height: math.unit(6, "meters"),
  21253. weight: math.unit(4000, "kg"),
  21254. name: "Upright",
  21255. image: {
  21256. source: "./media/characters/ruin/upright.svg",
  21257. extra: 668 / 661,
  21258. bottom: 42 / 799.8396
  21259. }
  21260. },
  21261. },
  21262. [
  21263. {
  21264. name: "Normal",
  21265. height: math.unit(6, "meters"),
  21266. default: true
  21267. },
  21268. ]
  21269. ))
  21270. characterMakers.push(() => makeCharacter(
  21271. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21272. {
  21273. front: {
  21274. height: math.unit(5, "feet"),
  21275. weight: math.unit(106, "lb"),
  21276. name: "Front",
  21277. image: {
  21278. source: "./media/characters/robin/front.svg",
  21279. extra: 862 / 799,
  21280. bottom: 42.4 / 914.8856
  21281. }
  21282. },
  21283. },
  21284. [
  21285. {
  21286. name: "Normal",
  21287. height: math.unit(5, "feet"),
  21288. default: true
  21289. },
  21290. ]
  21291. ))
  21292. characterMakers.push(() => makeCharacter(
  21293. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21294. {
  21295. side: {
  21296. height: math.unit(3, "feet"),
  21297. weight: math.unit(225, "lb"),
  21298. name: "Side",
  21299. image: {
  21300. source: "./media/characters/saian/side.svg",
  21301. extra: 566 / 356,
  21302. bottom: 79.7 / 643
  21303. }
  21304. },
  21305. maw: {
  21306. height: math.unit(2.85, "feet"),
  21307. name: "Maw",
  21308. image: {
  21309. source: "./media/characters/saian/maw.svg"
  21310. }
  21311. },
  21312. },
  21313. [
  21314. {
  21315. name: "Normal",
  21316. height: math.unit(3, "feet"),
  21317. default: true
  21318. },
  21319. ]
  21320. ))
  21321. characterMakers.push(() => makeCharacter(
  21322. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21323. {
  21324. side: {
  21325. height: math.unit(8, "feet"),
  21326. weight: math.unit(300, "lb"),
  21327. name: "Side",
  21328. image: {
  21329. source: "./media/characters/equus-silvermane/side.svg",
  21330. extra: 2176 / 2050,
  21331. bottom: 65.7 / 2245
  21332. }
  21333. },
  21334. front: {
  21335. height: math.unit(8, "feet"),
  21336. weight: math.unit(300, "lb"),
  21337. name: "Front",
  21338. image: {
  21339. source: "./media/characters/equus-silvermane/front.svg",
  21340. extra: 4633 / 4400,
  21341. bottom: 71.3 / 4706.915
  21342. }
  21343. },
  21344. sideStepping: {
  21345. height: math.unit(8, "feet"),
  21346. weight: math.unit(300, "lb"),
  21347. name: "Side (Stepping)",
  21348. image: {
  21349. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21350. extra: 1968 / 1860,
  21351. bottom: 16.4 / 1989
  21352. }
  21353. },
  21354. },
  21355. [
  21356. {
  21357. name: "Normal",
  21358. height: math.unit(8, "feet")
  21359. },
  21360. {
  21361. name: "Minimacro",
  21362. height: math.unit(75, "feet"),
  21363. default: true
  21364. },
  21365. {
  21366. name: "Macro",
  21367. height: math.unit(150, "feet")
  21368. },
  21369. {
  21370. name: "Macro+",
  21371. height: math.unit(1000, "feet")
  21372. },
  21373. {
  21374. name: "Megamacro",
  21375. height: math.unit(1, "mile")
  21376. },
  21377. ]
  21378. ))
  21379. characterMakers.push(() => makeCharacter(
  21380. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21381. {
  21382. side: {
  21383. height: math.unit(20, "feet"),
  21384. weight: math.unit(30000, "kg"),
  21385. name: "Side",
  21386. image: {
  21387. source: "./media/characters/windar/side.svg",
  21388. extra: 1491 / 1248,
  21389. bottom: 82.56 / 1568
  21390. }
  21391. },
  21392. },
  21393. [
  21394. {
  21395. name: "Normal",
  21396. height: math.unit(20, "feet"),
  21397. default: true
  21398. },
  21399. ]
  21400. ))
  21401. characterMakers.push(() => makeCharacter(
  21402. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21403. {
  21404. side: {
  21405. height: math.unit(15.66, "feet"),
  21406. weight: math.unit(150, "lb"),
  21407. name: "Side",
  21408. image: {
  21409. source: "./media/characters/melody/side.svg",
  21410. extra: 1097 / 944,
  21411. bottom: 11.8 / 1109
  21412. }
  21413. },
  21414. sideOutfit: {
  21415. height: math.unit(15.66, "feet"),
  21416. weight: math.unit(150, "lb"),
  21417. name: "Side (Outfit)",
  21418. image: {
  21419. source: "./media/characters/melody/side-outfit.svg",
  21420. extra: 1097 / 944,
  21421. bottom: 11.8 / 1109
  21422. }
  21423. },
  21424. },
  21425. [
  21426. {
  21427. name: "Normal",
  21428. height: math.unit(15.66, "feet"),
  21429. default: true
  21430. },
  21431. ]
  21432. ))
  21433. characterMakers.push(() => makeCharacter(
  21434. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21435. {
  21436. front: {
  21437. height: math.unit(8, "feet"),
  21438. weight: math.unit(325, "lb"),
  21439. name: "Front",
  21440. image: {
  21441. source: "./media/characters/windera/front.svg",
  21442. extra: 3180 / 2845,
  21443. bottom: 178 / 3365
  21444. }
  21445. },
  21446. },
  21447. [
  21448. {
  21449. name: "Normal",
  21450. height: math.unit(8, "feet"),
  21451. default: true
  21452. },
  21453. ]
  21454. ))
  21455. characterMakers.push(() => makeCharacter(
  21456. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21457. {
  21458. front: {
  21459. height: math.unit(28.75, "feet"),
  21460. weight: math.unit(2000, "kg"),
  21461. name: "Front",
  21462. image: {
  21463. source: "./media/characters/sonear/front.svg",
  21464. extra: 1041.1 / 964.9,
  21465. bottom: 53.7 / 1096.6
  21466. }
  21467. },
  21468. },
  21469. [
  21470. {
  21471. name: "Normal",
  21472. height: math.unit(28.75, "feet"),
  21473. default: true
  21474. },
  21475. ]
  21476. ))
  21477. characterMakers.push(() => makeCharacter(
  21478. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21479. {
  21480. side: {
  21481. height: math.unit(25.5, "feet"),
  21482. weight: math.unit(23000, "kg"),
  21483. name: "Side",
  21484. image: {
  21485. source: "./media/characters/kanara/side.svg"
  21486. }
  21487. },
  21488. },
  21489. [
  21490. {
  21491. name: "Normal",
  21492. height: math.unit(25.5, "feet"),
  21493. default: true
  21494. },
  21495. ]
  21496. ))
  21497. characterMakers.push(() => makeCharacter(
  21498. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21499. {
  21500. side: {
  21501. height: math.unit(10, "feet"),
  21502. weight: math.unit(1000, "kg"),
  21503. name: "Side",
  21504. image: {
  21505. source: "./media/characters/ereus/side.svg",
  21506. extra: 1157 / 959,
  21507. bottom: 153 / 1312.5
  21508. }
  21509. },
  21510. },
  21511. [
  21512. {
  21513. name: "Normal",
  21514. height: math.unit(10, "feet"),
  21515. default: true
  21516. },
  21517. ]
  21518. ))
  21519. characterMakers.push(() => makeCharacter(
  21520. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21521. {
  21522. side: {
  21523. height: math.unit(4.5, "feet"),
  21524. weight: math.unit(500, "lb"),
  21525. name: "Side",
  21526. image: {
  21527. source: "./media/characters/e-ter/side.svg",
  21528. extra: 1550 / 1248,
  21529. bottom: 146 / 1694
  21530. }
  21531. },
  21532. },
  21533. [
  21534. {
  21535. name: "Normal",
  21536. height: math.unit(4.5, "feet"),
  21537. default: true
  21538. },
  21539. ]
  21540. ))
  21541. characterMakers.push(() => makeCharacter(
  21542. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21543. {
  21544. side: {
  21545. height: math.unit(9.7, "feet"),
  21546. weight: math.unit(4000, "kg"),
  21547. name: "Side",
  21548. image: {
  21549. source: "./media/characters/yamie/side.svg"
  21550. }
  21551. },
  21552. },
  21553. [
  21554. {
  21555. name: "Normal",
  21556. height: math.unit(9.7, "feet"),
  21557. default: true
  21558. },
  21559. ]
  21560. ))
  21561. characterMakers.push(() => makeCharacter(
  21562. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21563. {
  21564. front: {
  21565. height: math.unit(50, "feet"),
  21566. weight: math.unit(50000, "kg"),
  21567. name: "Front",
  21568. image: {
  21569. source: "./media/characters/anders/front.svg",
  21570. extra: 570 / 539,
  21571. bottom: 14.7 / 586.7
  21572. }
  21573. },
  21574. },
  21575. [
  21576. {
  21577. name: "Large",
  21578. height: math.unit(50, "feet")
  21579. },
  21580. {
  21581. name: "Macro",
  21582. height: math.unit(2000, "feet"),
  21583. default: true
  21584. },
  21585. {
  21586. name: "Megamacro",
  21587. height: math.unit(12, "miles")
  21588. },
  21589. ]
  21590. ))
  21591. characterMakers.push(() => makeCharacter(
  21592. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21593. {
  21594. front: {
  21595. height: math.unit(7 + 2 / 12, "feet"),
  21596. weight: math.unit(300, "lb"),
  21597. name: "Front",
  21598. image: {
  21599. source: "./media/characters/reban/front.svg",
  21600. extra: 516 / 487,
  21601. bottom: 42.82 / 558.356
  21602. }
  21603. },
  21604. dick: {
  21605. height: math.unit(7 / 5, "feet"),
  21606. name: "Dick",
  21607. image: {
  21608. source: "./media/characters/reban/dick.svg"
  21609. }
  21610. },
  21611. },
  21612. [
  21613. {
  21614. name: "Natural Height",
  21615. height: math.unit(7 + 2 / 12, "feet")
  21616. },
  21617. {
  21618. name: "Macro",
  21619. height: math.unit(500, "feet"),
  21620. default: true
  21621. },
  21622. {
  21623. name: "Canon Height",
  21624. height: math.unit(50, "AU")
  21625. },
  21626. ]
  21627. ))
  21628. characterMakers.push(() => makeCharacter(
  21629. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21630. {
  21631. front: {
  21632. height: math.unit(6, "feet"),
  21633. weight: math.unit(150, "lb"),
  21634. name: "Front",
  21635. image: {
  21636. source: "./media/characters/terrance-keayes/front.svg",
  21637. extra: 1.005,
  21638. bottom: 151 / 1615
  21639. }
  21640. },
  21641. side: {
  21642. height: math.unit(6, "feet"),
  21643. weight: math.unit(150, "lb"),
  21644. name: "Side",
  21645. image: {
  21646. source: "./media/characters/terrance-keayes/side.svg",
  21647. extra: 1.005,
  21648. bottom: 129.4 / 1544
  21649. }
  21650. },
  21651. back: {
  21652. height: math.unit(6, "feet"),
  21653. weight: math.unit(150, "lb"),
  21654. name: "Back",
  21655. image: {
  21656. source: "./media/characters/terrance-keayes/back.svg",
  21657. extra: 1.005,
  21658. bottom: 58.4 / 1557.3
  21659. }
  21660. },
  21661. dick: {
  21662. height: math.unit(6 * 0.208, "feet"),
  21663. name: "Dick",
  21664. image: {
  21665. source: "./media/characters/terrance-keayes/dick.svg"
  21666. }
  21667. },
  21668. },
  21669. [
  21670. {
  21671. name: "Canon Height",
  21672. height: math.unit(35, "miles"),
  21673. default: true
  21674. },
  21675. ]
  21676. ))
  21677. characterMakers.push(() => makeCharacter(
  21678. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21679. {
  21680. front: {
  21681. height: math.unit(6, "feet"),
  21682. weight: math.unit(150, "lb"),
  21683. name: "Front",
  21684. image: {
  21685. source: "./media/characters/ofelia/front.svg",
  21686. extra: 546 / 541,
  21687. bottom: 39 / 583
  21688. }
  21689. },
  21690. back: {
  21691. height: math.unit(6, "feet"),
  21692. weight: math.unit(150, "lb"),
  21693. name: "Back",
  21694. image: {
  21695. source: "./media/characters/ofelia/back.svg",
  21696. extra: 564 / 559.5,
  21697. bottom: 8.69 / 573.02
  21698. }
  21699. },
  21700. maw: {
  21701. height: math.unit(1, "feet"),
  21702. name: "Maw",
  21703. image: {
  21704. source: "./media/characters/ofelia/maw.svg"
  21705. }
  21706. },
  21707. foot: {
  21708. height: math.unit(1.949, "feet"),
  21709. name: "Foot",
  21710. image: {
  21711. source: "./media/characters/ofelia/foot.svg"
  21712. }
  21713. },
  21714. },
  21715. [
  21716. {
  21717. name: "Canon Height",
  21718. height: math.unit(2000, "miles"),
  21719. default: true
  21720. },
  21721. ]
  21722. ))
  21723. characterMakers.push(() => makeCharacter(
  21724. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21725. {
  21726. front: {
  21727. height: math.unit(6, "feet"),
  21728. weight: math.unit(150, "lb"),
  21729. name: "Front",
  21730. image: {
  21731. source: "./media/characters/samuel/front.svg",
  21732. extra: 265 / 258,
  21733. bottom: 2 / 266.1566
  21734. }
  21735. },
  21736. },
  21737. [
  21738. {
  21739. name: "Macro",
  21740. height: math.unit(100, "feet"),
  21741. default: true
  21742. },
  21743. {
  21744. name: "Full Size",
  21745. height: math.unit(1000, "miles")
  21746. },
  21747. ]
  21748. ))
  21749. characterMakers.push(() => makeCharacter(
  21750. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21751. {
  21752. front: {
  21753. height: math.unit(6, "feet"),
  21754. weight: math.unit(300, "lb"),
  21755. name: "Front",
  21756. image: {
  21757. source: "./media/characters/beishir-kiel/front.svg",
  21758. extra: 569 / 547,
  21759. bottom: 41.9 / 609
  21760. }
  21761. },
  21762. maw: {
  21763. height: math.unit(6 * 0.202, "feet"),
  21764. name: "Maw",
  21765. image: {
  21766. source: "./media/characters/beishir-kiel/maw.svg"
  21767. }
  21768. },
  21769. },
  21770. [
  21771. {
  21772. name: "Macro",
  21773. height: math.unit(300, "feet"),
  21774. default: true
  21775. },
  21776. ]
  21777. ))
  21778. characterMakers.push(() => makeCharacter(
  21779. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21780. {
  21781. front: {
  21782. height: math.unit(5 + 8 / 12, "feet"),
  21783. weight: math.unit(120, "lb"),
  21784. name: "Front",
  21785. image: {
  21786. source: "./media/characters/logan-grey/front.svg",
  21787. extra: 2539 / 2393,
  21788. bottom: 97.6 / 2636.37
  21789. }
  21790. },
  21791. frontAlt: {
  21792. height: math.unit(5 + 8 / 12, "feet"),
  21793. weight: math.unit(120, "lb"),
  21794. name: "Front (Alt)",
  21795. image: {
  21796. source: "./media/characters/logan-grey/front-alt.svg",
  21797. extra: 958 / 893,
  21798. bottom: 15 / 970.768
  21799. }
  21800. },
  21801. back: {
  21802. height: math.unit(5 + 8 / 12, "feet"),
  21803. weight: math.unit(120, "lb"),
  21804. name: "Back",
  21805. image: {
  21806. source: "./media/characters/logan-grey/back.svg",
  21807. extra: 958 / 893,
  21808. bottom: 2.1881 / 970.9788
  21809. }
  21810. },
  21811. dick: {
  21812. height: math.unit(1.437, "feet"),
  21813. name: "Dick",
  21814. image: {
  21815. source: "./media/characters/logan-grey/dick.svg"
  21816. }
  21817. },
  21818. },
  21819. [
  21820. {
  21821. name: "Normal",
  21822. height: math.unit(5 + 8 / 12, "feet")
  21823. },
  21824. {
  21825. name: "The 500 Foot Femboy",
  21826. height: math.unit(500, "feet"),
  21827. default: true
  21828. },
  21829. {
  21830. name: "Megmacro",
  21831. height: math.unit(20, "miles")
  21832. },
  21833. ]
  21834. ))
  21835. characterMakers.push(() => makeCharacter(
  21836. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21837. {
  21838. front: {
  21839. height: math.unit(8 + 2 / 12, "feet"),
  21840. weight: math.unit(275, "lb"),
  21841. name: "Front",
  21842. image: {
  21843. source: "./media/characters/draganta/front.svg",
  21844. extra: 1177 / 1135,
  21845. bottom: 33.46 / 1212.1
  21846. }
  21847. },
  21848. },
  21849. [
  21850. {
  21851. name: "Normal",
  21852. height: math.unit(8 + 6 / 12, "feet"),
  21853. default: true
  21854. },
  21855. {
  21856. name: "Macro",
  21857. height: math.unit(150, "feet")
  21858. },
  21859. {
  21860. name: "Megamacro",
  21861. height: math.unit(1000, "miles")
  21862. },
  21863. ]
  21864. ))
  21865. characterMakers.push(() => makeCharacter(
  21866. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21867. {
  21868. front: {
  21869. height: math.unit(1.72, "m"),
  21870. weight: math.unit(80, "lb"),
  21871. name: "Front",
  21872. image: {
  21873. source: "./media/characters/voski/front.svg",
  21874. extra: 2076.22 / 2022.4,
  21875. bottom: 102.7 / 2177.3866
  21876. }
  21877. },
  21878. frontNsfw: {
  21879. height: math.unit(1.72, "m"),
  21880. weight: math.unit(80, "lb"),
  21881. name: "Front (NSFW)",
  21882. image: {
  21883. source: "./media/characters/voski/front-nsfw.svg",
  21884. extra: 2076.22 / 2022.4,
  21885. bottom: 102.7 / 2177.3866
  21886. }
  21887. },
  21888. back: {
  21889. height: math.unit(1.72, "m"),
  21890. weight: math.unit(80, "lb"),
  21891. name: "Back",
  21892. image: {
  21893. source: "./media/characters/voski/back.svg",
  21894. extra: 2104 / 2051,
  21895. bottom: 10.45 / 2113.63
  21896. }
  21897. },
  21898. },
  21899. [
  21900. {
  21901. name: "Normal",
  21902. height: math.unit(1.72, "m")
  21903. },
  21904. {
  21905. name: "Macro",
  21906. height: math.unit(55, "m"),
  21907. default: true
  21908. },
  21909. {
  21910. name: "Macro+",
  21911. height: math.unit(300, "m")
  21912. },
  21913. {
  21914. name: "Macro++",
  21915. height: math.unit(700, "m")
  21916. },
  21917. {
  21918. name: "Macro+++",
  21919. height: math.unit(4500, "m")
  21920. },
  21921. {
  21922. name: "Macro++++",
  21923. height: math.unit(45, "km")
  21924. },
  21925. {
  21926. name: "Macro+++++",
  21927. height: math.unit(1220, "km")
  21928. },
  21929. ]
  21930. ))
  21931. characterMakers.push(() => makeCharacter(
  21932. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21933. {
  21934. front: {
  21935. height: math.unit(2.3, "m"),
  21936. weight: math.unit(304, "kg"),
  21937. name: "Front",
  21938. image: {
  21939. source: "./media/characters/icowom-lee/front.svg",
  21940. extra: 985 / 955,
  21941. bottom: 25.4 / 1012
  21942. }
  21943. },
  21944. fronttentacles: {
  21945. height: math.unit(2.3, "m"),
  21946. weight: math.unit(304, "kg"),
  21947. name: "Front-tentacles",
  21948. image: {
  21949. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21950. extra: 985 / 955,
  21951. bottom: 25.4 / 1012
  21952. }
  21953. },
  21954. back: {
  21955. height: math.unit(2.3, "m"),
  21956. weight: math.unit(304, "kg"),
  21957. name: "Back",
  21958. image: {
  21959. source: "./media/characters/icowom-lee/back.svg",
  21960. extra: 975 / 954,
  21961. bottom: 9.5 / 985
  21962. }
  21963. },
  21964. backtentacles: {
  21965. height: math.unit(2.3, "m"),
  21966. weight: math.unit(304, "kg"),
  21967. name: "Back-tentacles",
  21968. image: {
  21969. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21970. extra: 975 / 954,
  21971. bottom: 9.5 / 985
  21972. }
  21973. },
  21974. frontDressed: {
  21975. height: math.unit(2.3, "m"),
  21976. weight: math.unit(304, "kg"),
  21977. name: "Front (Dressed)",
  21978. image: {
  21979. source: "./media/characters/icowom-lee/front-dressed.svg",
  21980. extra: 3076 / 2933,
  21981. bottom: 51.4 / 3125.1889
  21982. }
  21983. },
  21984. rump: {
  21985. height: math.unit(0.776, "meters"),
  21986. name: "Rump",
  21987. image: {
  21988. source: "./media/characters/icowom-lee/rump.svg"
  21989. }
  21990. },
  21991. genitals: {
  21992. height: math.unit(0.78, "meters"),
  21993. name: "Genitals",
  21994. image: {
  21995. source: "./media/characters/icowom-lee/genitals.svg"
  21996. }
  21997. },
  21998. },
  21999. [
  22000. {
  22001. name: "Normal",
  22002. height: math.unit(2.3, "meters"),
  22003. default: true
  22004. },
  22005. {
  22006. name: "Macro",
  22007. height: math.unit(94, "meters"),
  22008. default: true
  22009. },
  22010. ]
  22011. ))
  22012. characterMakers.push(() => makeCharacter(
  22013. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22014. {
  22015. front: {
  22016. height: math.unit(22, "meters"),
  22017. weight: math.unit(21000, "kg"),
  22018. name: "Front",
  22019. image: {
  22020. source: "./media/characters/shock-diamond/front.svg",
  22021. extra: 2204 / 2053,
  22022. bottom: 65 / 2239.47
  22023. }
  22024. },
  22025. frontNude: {
  22026. height: math.unit(22, "meters"),
  22027. weight: math.unit(21000, "kg"),
  22028. name: "Front (Nude)",
  22029. image: {
  22030. source: "./media/characters/shock-diamond/front-nude.svg",
  22031. extra: 2514 / 2285,
  22032. bottom: 13 / 2527.56
  22033. }
  22034. },
  22035. },
  22036. [
  22037. {
  22038. name: "Normal",
  22039. height: math.unit(3, "meters")
  22040. },
  22041. {
  22042. name: "Macro",
  22043. height: math.unit(22, "meters"),
  22044. default: true
  22045. },
  22046. ]
  22047. ))
  22048. characterMakers.push(() => makeCharacter(
  22049. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22050. {
  22051. front: {
  22052. height: math.unit(5 + 4 / 12, "feet"),
  22053. weight: math.unit(120, "lb"),
  22054. name: "Front",
  22055. image: {
  22056. source: "./media/characters/rory/front.svg",
  22057. extra: 589 / 556,
  22058. bottom: 45.7 / 635.76
  22059. }
  22060. },
  22061. frontNude: {
  22062. height: math.unit(5 + 4 / 12, "feet"),
  22063. weight: math.unit(120, "lb"),
  22064. name: "Front (Nude)",
  22065. image: {
  22066. source: "./media/characters/rory/front-nude.svg",
  22067. extra: 589 / 556,
  22068. bottom: 45.7 / 635.76
  22069. }
  22070. },
  22071. side: {
  22072. height: math.unit(5 + 4 / 12, "feet"),
  22073. weight: math.unit(120, "lb"),
  22074. name: "Side",
  22075. image: {
  22076. source: "./media/characters/rory/side.svg",
  22077. extra: 597 / 564,
  22078. bottom: 55 / 653
  22079. }
  22080. },
  22081. back: {
  22082. height: math.unit(5 + 4 / 12, "feet"),
  22083. weight: math.unit(120, "lb"),
  22084. name: "Back",
  22085. image: {
  22086. source: "./media/characters/rory/back.svg",
  22087. extra: 620 / 585,
  22088. bottom: 8.86 / 630.43
  22089. }
  22090. },
  22091. dick: {
  22092. height: math.unit(0.86, "feet"),
  22093. name: "Dick",
  22094. image: {
  22095. source: "./media/characters/rory/dick.svg"
  22096. }
  22097. },
  22098. },
  22099. [
  22100. {
  22101. name: "Normal",
  22102. height: math.unit(5 + 4 / 12, "feet"),
  22103. default: true
  22104. },
  22105. {
  22106. name: "Macro",
  22107. height: math.unit(100, "feet")
  22108. },
  22109. {
  22110. name: "Macro+",
  22111. height: math.unit(140, "feet")
  22112. },
  22113. {
  22114. name: "Macro++",
  22115. height: math.unit(300, "feet")
  22116. },
  22117. ]
  22118. ))
  22119. characterMakers.push(() => makeCharacter(
  22120. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22121. {
  22122. front: {
  22123. height: math.unit(5 + 9 / 12, "feet"),
  22124. weight: math.unit(190, "lb"),
  22125. name: "Front",
  22126. image: {
  22127. source: "./media/characters/sprisk/front.svg",
  22128. extra: 1225 / 1180,
  22129. bottom: 42.7 / 1266.4
  22130. }
  22131. },
  22132. frontNsfw: {
  22133. height: math.unit(5 + 9 / 12, "feet"),
  22134. weight: math.unit(190, "lb"),
  22135. name: "Front (NSFW)",
  22136. image: {
  22137. source: "./media/characters/sprisk/front-nsfw.svg",
  22138. extra: 1225 / 1180,
  22139. bottom: 42.7 / 1266.4
  22140. }
  22141. },
  22142. back: {
  22143. height: math.unit(5 + 9 / 12, "feet"),
  22144. weight: math.unit(190, "lb"),
  22145. name: "Back",
  22146. image: {
  22147. source: "./media/characters/sprisk/back.svg",
  22148. extra: 1247 / 1200,
  22149. bottom: 5.6 / 1253.04
  22150. }
  22151. },
  22152. },
  22153. [
  22154. {
  22155. name: "Tiny",
  22156. height: math.unit(2, "inches")
  22157. },
  22158. {
  22159. name: "Normal",
  22160. height: math.unit(5 + 9 / 12, "feet"),
  22161. default: true
  22162. },
  22163. {
  22164. name: "Mini Macro",
  22165. height: math.unit(18, "feet")
  22166. },
  22167. {
  22168. name: "Macro",
  22169. height: math.unit(100, "feet")
  22170. },
  22171. {
  22172. name: "MACRO",
  22173. height: math.unit(50, "miles")
  22174. },
  22175. {
  22176. name: "M A C R O",
  22177. height: math.unit(300, "miles")
  22178. },
  22179. ]
  22180. ))
  22181. characterMakers.push(() => makeCharacter(
  22182. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22183. {
  22184. side: {
  22185. height: math.unit(15.6, "meters"),
  22186. weight: math.unit(700000, "kg"),
  22187. name: "Side",
  22188. image: {
  22189. source: "./media/characters/bunsen/side.svg",
  22190. extra: 1644 / 358
  22191. }
  22192. },
  22193. foot: {
  22194. height: math.unit(1.611 * 1644 / 358, "meter"),
  22195. name: "Foot",
  22196. image: {
  22197. source: "./media/characters/bunsen/foot.svg"
  22198. }
  22199. },
  22200. },
  22201. [
  22202. {
  22203. name: "Small",
  22204. height: math.unit(10, "feet")
  22205. },
  22206. {
  22207. name: "Normal",
  22208. height: math.unit(15.6, "meters"),
  22209. default: true
  22210. },
  22211. ]
  22212. ))
  22213. characterMakers.push(() => makeCharacter(
  22214. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22215. {
  22216. front: {
  22217. height: math.unit(4 + 11 / 12, "feet"),
  22218. weight: math.unit(140, "lb"),
  22219. name: "Front",
  22220. image: {
  22221. source: "./media/characters/sesh/front.svg",
  22222. extra: 3420 / 3231,
  22223. bottom: 72 / 3949.5
  22224. }
  22225. },
  22226. },
  22227. [
  22228. {
  22229. name: "Normal",
  22230. height: math.unit(4 + 11 / 12, "feet")
  22231. },
  22232. {
  22233. name: "Grown",
  22234. height: math.unit(15, "feet"),
  22235. default: true
  22236. },
  22237. {
  22238. name: "Macro",
  22239. height: math.unit(1500, "feet")
  22240. },
  22241. {
  22242. name: "Megamacro",
  22243. height: math.unit(30, "miles")
  22244. },
  22245. {
  22246. name: "Continental",
  22247. height: math.unit(3000, "miles")
  22248. },
  22249. {
  22250. name: "Gravity Mass",
  22251. height: math.unit(300000, "miles")
  22252. },
  22253. {
  22254. name: "Planet Buster",
  22255. height: math.unit(30000000, "miles")
  22256. },
  22257. {
  22258. name: "Big",
  22259. height: math.unit(3000000000, "miles")
  22260. },
  22261. ]
  22262. ))
  22263. characterMakers.push(() => makeCharacter(
  22264. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22265. {
  22266. front: {
  22267. height: math.unit(9, "feet"),
  22268. weight: math.unit(350, "lb"),
  22269. name: "Front",
  22270. image: {
  22271. source: "./media/characters/pepper/front.svg",
  22272. extra: 1448 / 1312,
  22273. bottom: 9.4 / 1457.88
  22274. }
  22275. },
  22276. back: {
  22277. height: math.unit(9, "feet"),
  22278. weight: math.unit(350, "lb"),
  22279. name: "Back",
  22280. image: {
  22281. source: "./media/characters/pepper/back.svg",
  22282. extra: 1423 / 1300,
  22283. bottom: 4.6 / 1429
  22284. }
  22285. },
  22286. maw: {
  22287. height: math.unit(0.932, "feet"),
  22288. name: "Maw",
  22289. image: {
  22290. source: "./media/characters/pepper/maw.svg"
  22291. }
  22292. },
  22293. },
  22294. [
  22295. {
  22296. name: "Normal",
  22297. height: math.unit(9, "feet"),
  22298. default: true
  22299. },
  22300. ]
  22301. ))
  22302. characterMakers.push(() => makeCharacter(
  22303. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22304. {
  22305. front: {
  22306. height: math.unit(6, "feet"),
  22307. weight: math.unit(150, "lb"),
  22308. name: "Front",
  22309. image: {
  22310. source: "./media/characters/maelstrom/front.svg",
  22311. extra: 2100 / 1883,
  22312. bottom: 94 / 2196.7
  22313. }
  22314. },
  22315. },
  22316. [
  22317. {
  22318. name: "Less Kaiju",
  22319. height: math.unit(200, "feet")
  22320. },
  22321. {
  22322. name: "Kaiju",
  22323. height: math.unit(400, "feet"),
  22324. default: true
  22325. },
  22326. {
  22327. name: "Kaiju-er",
  22328. height: math.unit(600, "feet")
  22329. },
  22330. ]
  22331. ))
  22332. characterMakers.push(() => makeCharacter(
  22333. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22334. {
  22335. front: {
  22336. height: math.unit(6 + 5 / 12, "feet"),
  22337. weight: math.unit(180, "lb"),
  22338. name: "Front",
  22339. image: {
  22340. source: "./media/characters/lexir/front.svg",
  22341. extra: 180 / 172,
  22342. bottom: 12 / 192
  22343. }
  22344. },
  22345. back: {
  22346. height: math.unit(6 + 5 / 12, "feet"),
  22347. weight: math.unit(180, "lb"),
  22348. name: "Back",
  22349. image: {
  22350. source: "./media/characters/lexir/back.svg",
  22351. extra: 183.84 / 175.5,
  22352. bottom: 3.1 / 187
  22353. }
  22354. },
  22355. },
  22356. [
  22357. {
  22358. name: "Very Smal",
  22359. height: math.unit(1, "nm")
  22360. },
  22361. {
  22362. name: "Normal",
  22363. height: math.unit(6 + 5 / 12, "feet"),
  22364. default: true
  22365. },
  22366. {
  22367. name: "Macro",
  22368. height: math.unit(1, "mile")
  22369. },
  22370. {
  22371. name: "Megamacro",
  22372. height: math.unit(50, "miles")
  22373. },
  22374. ]
  22375. ))
  22376. characterMakers.push(() => makeCharacter(
  22377. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22378. {
  22379. front: {
  22380. height: math.unit(1.5, "meters"),
  22381. weight: math.unit(100, "lb"),
  22382. name: "Front",
  22383. image: {
  22384. source: "./media/characters/maksio/front.svg",
  22385. extra: 1549 / 1531,
  22386. bottom: 123.7 / 1674.5429
  22387. }
  22388. },
  22389. back: {
  22390. height: math.unit(1.5, "meters"),
  22391. weight: math.unit(100, "lb"),
  22392. name: "Back",
  22393. image: {
  22394. source: "./media/characters/maksio/back.svg",
  22395. extra: 1541 / 1509,
  22396. bottom: 97 / 1639
  22397. }
  22398. },
  22399. hand: {
  22400. height: math.unit(0.621, "feet"),
  22401. name: "Hand",
  22402. image: {
  22403. source: "./media/characters/maksio/hand.svg"
  22404. }
  22405. },
  22406. foot: {
  22407. height: math.unit(1.611, "feet"),
  22408. name: "Foot",
  22409. image: {
  22410. source: "./media/characters/maksio/foot.svg"
  22411. }
  22412. },
  22413. },
  22414. [
  22415. {
  22416. name: "Shrunken",
  22417. height: math.unit(10, "cm")
  22418. },
  22419. {
  22420. name: "Normal",
  22421. height: math.unit(150, "cm"),
  22422. default: true
  22423. },
  22424. ]
  22425. ))
  22426. characterMakers.push(() => makeCharacter(
  22427. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22428. {
  22429. front: {
  22430. height: math.unit(100, "feet"),
  22431. name: "Front",
  22432. image: {
  22433. source: "./media/characters/erza-bear/front.svg",
  22434. extra: 2449 / 2390,
  22435. bottom: 46 / 2494
  22436. }
  22437. },
  22438. back: {
  22439. height: math.unit(100, "feet"),
  22440. name: "Back",
  22441. image: {
  22442. source: "./media/characters/erza-bear/back.svg",
  22443. extra: 2489 / 2430,
  22444. bottom: 85.4 / 2480
  22445. }
  22446. },
  22447. tail: {
  22448. height: math.unit(42, "feet"),
  22449. name: "Tail",
  22450. image: {
  22451. source: "./media/characters/erza-bear/tail.svg"
  22452. }
  22453. },
  22454. tongue: {
  22455. height: math.unit(8, "feet"),
  22456. name: "Tongue",
  22457. image: {
  22458. source: "./media/characters/erza-bear/tongue.svg"
  22459. }
  22460. },
  22461. dick: {
  22462. height: math.unit(10.5, "feet"),
  22463. name: "Dick",
  22464. image: {
  22465. source: "./media/characters/erza-bear/dick.svg"
  22466. }
  22467. },
  22468. dickVertical: {
  22469. height: math.unit(16.9, "feet"),
  22470. name: "Dick (Vertical)",
  22471. image: {
  22472. source: "./media/characters/erza-bear/dick-vertical.svg"
  22473. }
  22474. },
  22475. },
  22476. [
  22477. {
  22478. name: "Macro",
  22479. height: math.unit(100, "feet"),
  22480. default: true
  22481. },
  22482. ]
  22483. ))
  22484. characterMakers.push(() => makeCharacter(
  22485. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22486. {
  22487. front: {
  22488. height: math.unit(172, "cm"),
  22489. weight: math.unit(73, "kg"),
  22490. name: "Front",
  22491. image: {
  22492. source: "./media/characters/violet-flor/front.svg",
  22493. extra: 1530 / 1442,
  22494. bottom: 61.9 / 1588.8
  22495. }
  22496. },
  22497. back: {
  22498. height: math.unit(180, "cm"),
  22499. weight: math.unit(73, "kg"),
  22500. name: "Back",
  22501. image: {
  22502. source: "./media/characters/violet-flor/back.svg",
  22503. extra: 1692 / 1630,
  22504. bottom: 20 / 1712
  22505. }
  22506. },
  22507. },
  22508. [
  22509. {
  22510. name: "Normal",
  22511. height: math.unit(172, "cm"),
  22512. default: true
  22513. },
  22514. ]
  22515. ))
  22516. characterMakers.push(() => makeCharacter(
  22517. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22518. {
  22519. front: {
  22520. height: math.unit(6, "feet"),
  22521. weight: math.unit(220, "lb"),
  22522. name: "Front",
  22523. image: {
  22524. source: "./media/characters/lynn-rhea/front.svg",
  22525. extra: 310 / 273
  22526. }
  22527. },
  22528. back: {
  22529. height: math.unit(6, "feet"),
  22530. weight: math.unit(220, "lb"),
  22531. name: "Back",
  22532. image: {
  22533. source: "./media/characters/lynn-rhea/back.svg",
  22534. extra: 310 / 273
  22535. }
  22536. },
  22537. dicks: {
  22538. height: math.unit(0.9, "feet"),
  22539. name: "Dicks",
  22540. image: {
  22541. source: "./media/characters/lynn-rhea/dicks.svg"
  22542. }
  22543. },
  22544. slit: {
  22545. height: math.unit(0.4, "feet"),
  22546. name: "Slit",
  22547. image: {
  22548. source: "./media/characters/lynn-rhea/slit.svg"
  22549. }
  22550. },
  22551. },
  22552. [
  22553. {
  22554. name: "Micro",
  22555. height: math.unit(1, "inch")
  22556. },
  22557. {
  22558. name: "Macro",
  22559. height: math.unit(60, "feet"),
  22560. default: true
  22561. },
  22562. {
  22563. name: "Megamacro",
  22564. height: math.unit(2, "miles")
  22565. },
  22566. {
  22567. name: "Gigamacro",
  22568. height: math.unit(3, "earths")
  22569. },
  22570. {
  22571. name: "Galactic",
  22572. height: math.unit(0.8, "galaxies")
  22573. },
  22574. ]
  22575. ))
  22576. characterMakers.push(() => makeCharacter(
  22577. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22578. {
  22579. front: {
  22580. height: math.unit(1600, "feet"),
  22581. weight: math.unit(85758785169, "kg"),
  22582. name: "Front",
  22583. image: {
  22584. source: "./media/characters/valathos/front.svg",
  22585. extra: 1451 / 1339
  22586. }
  22587. },
  22588. },
  22589. [
  22590. {
  22591. name: "Macro",
  22592. height: math.unit(1600, "feet"),
  22593. default: true
  22594. },
  22595. ]
  22596. ))
  22597. characterMakers.push(() => makeCharacter(
  22598. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22599. {
  22600. front: {
  22601. height: math.unit(7 + 5 / 12, "feet"),
  22602. weight: math.unit(300, "lb"),
  22603. name: "Front",
  22604. image: {
  22605. source: "./media/characters/azula/front.svg",
  22606. extra: 3208 / 2880,
  22607. bottom: 80.2 / 3277
  22608. }
  22609. },
  22610. back: {
  22611. height: math.unit(7 + 5 / 12, "feet"),
  22612. weight: math.unit(300, "lb"),
  22613. name: "Back",
  22614. image: {
  22615. source: "./media/characters/azula/back.svg",
  22616. extra: 3169 / 2822,
  22617. bottom: 150.6 / 3321
  22618. }
  22619. },
  22620. },
  22621. [
  22622. {
  22623. name: "Normal",
  22624. height: math.unit(7 + 5 / 12, "feet"),
  22625. default: true
  22626. },
  22627. {
  22628. name: "Big",
  22629. height: math.unit(20, "feet")
  22630. },
  22631. ]
  22632. ))
  22633. characterMakers.push(() => makeCharacter(
  22634. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22635. {
  22636. front: {
  22637. height: math.unit(5 + 1 / 12, "feet"),
  22638. weight: math.unit(110, "lb"),
  22639. name: "Front",
  22640. image: {
  22641. source: "./media/characters/rupert/front.svg",
  22642. extra: 1549 / 1495,
  22643. bottom: 54.2 / 1604.4
  22644. }
  22645. },
  22646. },
  22647. [
  22648. {
  22649. name: "Normal",
  22650. height: math.unit(5 + 1 / 12, "feet"),
  22651. default: true
  22652. },
  22653. ]
  22654. ))
  22655. characterMakers.push(() => makeCharacter(
  22656. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22657. {
  22658. front: {
  22659. height: math.unit(8 + 4 / 12, "feet"),
  22660. weight: math.unit(350, "lb"),
  22661. name: "Front",
  22662. image: {
  22663. source: "./media/characters/sheera-castellar/front.svg",
  22664. extra: 1957 / 1894,
  22665. bottom: 26.97 / 1975.017
  22666. }
  22667. },
  22668. side: {
  22669. height: math.unit(8 + 4 / 12, "feet"),
  22670. weight: math.unit(350, "lb"),
  22671. name: "Side",
  22672. image: {
  22673. source: "./media/characters/sheera-castellar/side.svg",
  22674. extra: 1957 / 1894
  22675. }
  22676. },
  22677. back: {
  22678. height: math.unit(8 + 4 / 12, "feet"),
  22679. weight: math.unit(350, "lb"),
  22680. name: "Back",
  22681. image: {
  22682. source: "./media/characters/sheera-castellar/back.svg",
  22683. extra: 1957 / 1894
  22684. }
  22685. },
  22686. angled: {
  22687. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22688. weight: math.unit(350, "lb"),
  22689. name: "Angled",
  22690. image: {
  22691. source: "./media/characters/sheera-castellar/angled.svg",
  22692. extra: 1807 / 1707,
  22693. bottom: 68 / 1875
  22694. }
  22695. },
  22696. genitals: {
  22697. height: math.unit(2.2, "feet"),
  22698. name: "Genitals",
  22699. image: {
  22700. source: "./media/characters/sheera-castellar/genitals.svg"
  22701. }
  22702. },
  22703. taur: {
  22704. height: math.unit(10 + 6/12, "feet"),
  22705. name: "Taur",
  22706. image: {
  22707. source: "./media/characters/sheera-castellar/taur.svg",
  22708. extra: 2017/1909,
  22709. bottom: 185/2202
  22710. }
  22711. },
  22712. },
  22713. [
  22714. {
  22715. name: "Normal",
  22716. height: math.unit(8 + 4 / 12, "feet")
  22717. },
  22718. {
  22719. name: "Macro",
  22720. height: math.unit(150, "feet"),
  22721. default: true
  22722. },
  22723. {
  22724. name: "Macro+",
  22725. height: math.unit(800, "feet")
  22726. },
  22727. ]
  22728. ))
  22729. characterMakers.push(() => makeCharacter(
  22730. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22731. {
  22732. front: {
  22733. height: math.unit(6, "feet"),
  22734. weight: math.unit(150, "lb"),
  22735. name: "Front",
  22736. image: {
  22737. source: "./media/characters/jaipur/front.svg",
  22738. extra: 3860 / 3731,
  22739. bottom: 287 / 4140
  22740. }
  22741. },
  22742. back: {
  22743. height: math.unit(6, "feet"),
  22744. weight: math.unit(150, "lb"),
  22745. name: "Back",
  22746. image: {
  22747. source: "./media/characters/jaipur/back.svg",
  22748. extra: 4060 / 3930,
  22749. bottom: 151 / 4200
  22750. }
  22751. },
  22752. },
  22753. [
  22754. {
  22755. name: "Normal",
  22756. height: math.unit(1.85, "meters"),
  22757. default: true
  22758. },
  22759. {
  22760. name: "Macro",
  22761. height: math.unit(150, "meters")
  22762. },
  22763. {
  22764. name: "Macro+",
  22765. height: math.unit(0.5, "miles")
  22766. },
  22767. {
  22768. name: "Macro++",
  22769. height: math.unit(2.5, "miles")
  22770. },
  22771. {
  22772. name: "Macro+++",
  22773. height: math.unit(12, "miles")
  22774. },
  22775. {
  22776. name: "Macro++++",
  22777. height: math.unit(120, "miles")
  22778. },
  22779. {
  22780. name: "Macro+++++",
  22781. height: math.unit(1200, "miles")
  22782. },
  22783. ]
  22784. ))
  22785. characterMakers.push(() => makeCharacter(
  22786. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22787. {
  22788. front: {
  22789. height: math.unit(6, "feet"),
  22790. weight: math.unit(150, "lb"),
  22791. name: "Front",
  22792. image: {
  22793. source: "./media/characters/sheila-wolf/front.svg",
  22794. extra: 1931 / 1808,
  22795. bottom: 29.5 / 1960
  22796. }
  22797. },
  22798. dick: {
  22799. height: math.unit(1.464, "feet"),
  22800. name: "Dick",
  22801. image: {
  22802. source: "./media/characters/sheila-wolf/dick.svg"
  22803. }
  22804. },
  22805. muzzle: {
  22806. height: math.unit(0.513, "feet"),
  22807. name: "Muzzle",
  22808. image: {
  22809. source: "./media/characters/sheila-wolf/muzzle.svg"
  22810. }
  22811. },
  22812. },
  22813. [
  22814. {
  22815. name: "Macro",
  22816. height: math.unit(70, "feet"),
  22817. default: true
  22818. },
  22819. ]
  22820. ))
  22821. characterMakers.push(() => makeCharacter(
  22822. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22823. {
  22824. front: {
  22825. height: math.unit(32, "meters"),
  22826. weight: math.unit(300000, "kg"),
  22827. name: "Front",
  22828. image: {
  22829. source: "./media/characters/almor/front.svg",
  22830. extra: 1408 / 1322,
  22831. bottom: 94.6 / 1506.5
  22832. }
  22833. },
  22834. },
  22835. [
  22836. {
  22837. name: "Macro",
  22838. height: math.unit(32, "meters"),
  22839. default: true
  22840. },
  22841. ]
  22842. ))
  22843. characterMakers.push(() => makeCharacter(
  22844. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22845. {
  22846. front: {
  22847. height: math.unit(7, "feet"),
  22848. weight: math.unit(200, "lb"),
  22849. name: "Front",
  22850. image: {
  22851. source: "./media/characters/silver/front.svg",
  22852. extra: 472.1 / 450.5,
  22853. bottom: 26.5 / 499.424
  22854. }
  22855. },
  22856. },
  22857. [
  22858. {
  22859. name: "Normal",
  22860. height: math.unit(7, "feet"),
  22861. default: true
  22862. },
  22863. {
  22864. name: "Macro",
  22865. height: math.unit(800, "feet")
  22866. },
  22867. {
  22868. name: "Megamacro",
  22869. height: math.unit(250, "miles")
  22870. },
  22871. ]
  22872. ))
  22873. characterMakers.push(() => makeCharacter(
  22874. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22875. {
  22876. front: {
  22877. height: math.unit(6, "feet"),
  22878. weight: math.unit(150, "lb"),
  22879. name: "Front",
  22880. image: {
  22881. source: "./media/characters/pliskin/front.svg",
  22882. extra: 1469 / 1359,
  22883. bottom: 70 / 1540
  22884. }
  22885. },
  22886. },
  22887. [
  22888. {
  22889. name: "Micro",
  22890. height: math.unit(3, "inches")
  22891. },
  22892. {
  22893. name: "Normal",
  22894. height: math.unit(5 + 11 / 12, "feet"),
  22895. default: true
  22896. },
  22897. {
  22898. name: "Macro",
  22899. height: math.unit(120, "feet")
  22900. },
  22901. ]
  22902. ))
  22903. characterMakers.push(() => makeCharacter(
  22904. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22905. {
  22906. front: {
  22907. height: math.unit(6, "feet"),
  22908. weight: math.unit(150, "lb"),
  22909. name: "Front",
  22910. image: {
  22911. source: "./media/characters/sammy/front.svg",
  22912. extra: 1193 / 1089,
  22913. bottom: 30.5 / 1226
  22914. }
  22915. },
  22916. },
  22917. [
  22918. {
  22919. name: "Macro",
  22920. height: math.unit(1700, "feet"),
  22921. default: true
  22922. },
  22923. {
  22924. name: "Examacro",
  22925. height: math.unit(2.5e9, "lightyears")
  22926. },
  22927. ]
  22928. ))
  22929. characterMakers.push(() => makeCharacter(
  22930. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22931. {
  22932. front: {
  22933. height: math.unit(21, "meters"),
  22934. weight: math.unit(12, "tonnes"),
  22935. name: "Front",
  22936. image: {
  22937. source: "./media/characters/kuru/front.svg",
  22938. extra: 4301 / 3785,
  22939. bottom: 371.3 / 4691
  22940. }
  22941. },
  22942. },
  22943. [
  22944. {
  22945. name: "Macro",
  22946. height: math.unit(21, "meters"),
  22947. default: true
  22948. },
  22949. ]
  22950. ))
  22951. characterMakers.push(() => makeCharacter(
  22952. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22953. {
  22954. front: {
  22955. height: math.unit(23, "meters"),
  22956. weight: math.unit(12.2, "tonnes"),
  22957. name: "Front",
  22958. image: {
  22959. source: "./media/characters/rakka/front.svg",
  22960. extra: 4670 / 4169,
  22961. bottom: 301 / 4968.7
  22962. }
  22963. },
  22964. },
  22965. [
  22966. {
  22967. name: "Macro",
  22968. height: math.unit(23, "meters"),
  22969. default: true
  22970. },
  22971. ]
  22972. ))
  22973. characterMakers.push(() => makeCharacter(
  22974. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22975. {
  22976. front: {
  22977. height: math.unit(6, "feet"),
  22978. weight: math.unit(150, "lb"),
  22979. name: "Front",
  22980. image: {
  22981. source: "./media/characters/rhys-feline/front.svg",
  22982. extra: 2488 / 2308,
  22983. bottom: 35.67 / 2519.19
  22984. }
  22985. },
  22986. },
  22987. [
  22988. {
  22989. name: "Really Small",
  22990. height: math.unit(1, "nm")
  22991. },
  22992. {
  22993. name: "Micro",
  22994. height: math.unit(4, "inches")
  22995. },
  22996. {
  22997. name: "Normal",
  22998. height: math.unit(4 + 10 / 12, "feet"),
  22999. default: true
  23000. },
  23001. {
  23002. name: "Macro",
  23003. height: math.unit(100, "feet")
  23004. },
  23005. {
  23006. name: "Megamacto",
  23007. height: math.unit(50, "miles")
  23008. },
  23009. ]
  23010. ))
  23011. characterMakers.push(() => makeCharacter(
  23012. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23013. {
  23014. side: {
  23015. height: math.unit(30, "feet"),
  23016. weight: math.unit(35000, "kg"),
  23017. name: "Side",
  23018. image: {
  23019. source: "./media/characters/alydar/side.svg",
  23020. extra: 234 / 222,
  23021. bottom: 6.5 / 241
  23022. }
  23023. },
  23024. front: {
  23025. height: math.unit(30, "feet"),
  23026. weight: math.unit(35000, "kg"),
  23027. name: "Front",
  23028. image: {
  23029. source: "./media/characters/alydar/front.svg",
  23030. extra: 223.37 / 210.2,
  23031. bottom: 22.3 / 246.76
  23032. }
  23033. },
  23034. top: {
  23035. height: math.unit(64.54, "feet"),
  23036. weight: math.unit(35000, "kg"),
  23037. name: "Top",
  23038. image: {
  23039. source: "./media/characters/alydar/top.svg"
  23040. }
  23041. },
  23042. anthro: {
  23043. height: math.unit(30, "feet"),
  23044. weight: math.unit(9000, "kg"),
  23045. name: "Anthro",
  23046. image: {
  23047. source: "./media/characters/alydar/anthro.svg",
  23048. extra: 432 / 421,
  23049. bottom: 7.18 / 440
  23050. }
  23051. },
  23052. maw: {
  23053. height: math.unit(11.693, "feet"),
  23054. name: "Maw",
  23055. image: {
  23056. source: "./media/characters/alydar/maw.svg"
  23057. }
  23058. },
  23059. head: {
  23060. height: math.unit(11.693, "feet"),
  23061. name: "Head",
  23062. image: {
  23063. source: "./media/characters/alydar/head.svg"
  23064. }
  23065. },
  23066. headAlt: {
  23067. height: math.unit(12.861, "feet"),
  23068. name: "Head (Alt)",
  23069. image: {
  23070. source: "./media/characters/alydar/head-alt.svg"
  23071. }
  23072. },
  23073. wing: {
  23074. height: math.unit(20.712, "feet"),
  23075. name: "Wing",
  23076. image: {
  23077. source: "./media/characters/alydar/wing.svg"
  23078. }
  23079. },
  23080. wingFeather: {
  23081. height: math.unit(9.662, "feet"),
  23082. name: "Wing Feather",
  23083. image: {
  23084. source: "./media/characters/alydar/wing-feather.svg"
  23085. }
  23086. },
  23087. countourFeather: {
  23088. height: math.unit(4.154, "feet"),
  23089. name: "Contour Feather",
  23090. image: {
  23091. source: "./media/characters/alydar/contour-feather.svg"
  23092. }
  23093. },
  23094. },
  23095. [
  23096. {
  23097. name: "Diplomatic",
  23098. height: math.unit(13, "feet"),
  23099. default: true
  23100. },
  23101. {
  23102. name: "Small",
  23103. height: math.unit(30, "feet")
  23104. },
  23105. {
  23106. name: "Normal",
  23107. height: math.unit(95, "feet"),
  23108. default: true
  23109. },
  23110. {
  23111. name: "Large",
  23112. height: math.unit(285, "feet")
  23113. },
  23114. {
  23115. name: "Incomprehensible",
  23116. height: math.unit(450, "megameters")
  23117. },
  23118. ]
  23119. ))
  23120. characterMakers.push(() => makeCharacter(
  23121. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23122. {
  23123. side: {
  23124. height: math.unit(11, "feet"),
  23125. weight: math.unit(1750, "kg"),
  23126. name: "Side",
  23127. image: {
  23128. source: "./media/characters/selicia/side.svg",
  23129. extra: 440 / 396,
  23130. bottom: 24.8 / 465.979
  23131. }
  23132. },
  23133. maw: {
  23134. height: math.unit(4.665, "feet"),
  23135. name: "Maw",
  23136. image: {
  23137. source: "./media/characters/selicia/maw.svg"
  23138. }
  23139. },
  23140. },
  23141. [
  23142. {
  23143. name: "Normal",
  23144. height: math.unit(11, "feet"),
  23145. default: true
  23146. },
  23147. ]
  23148. ))
  23149. characterMakers.push(() => makeCharacter(
  23150. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23151. {
  23152. side: {
  23153. height: math.unit(2 + 6 / 12, "feet"),
  23154. weight: math.unit(30, "lb"),
  23155. name: "Side",
  23156. image: {
  23157. source: "./media/characters/layla/side.svg",
  23158. extra: 244 / 188,
  23159. bottom: 18.2 / 262.1
  23160. }
  23161. },
  23162. back: {
  23163. height: math.unit(2 + 6 / 12, "feet"),
  23164. weight: math.unit(30, "lb"),
  23165. name: "Back",
  23166. image: {
  23167. source: "./media/characters/layla/back.svg",
  23168. extra: 308 / 241.5,
  23169. bottom: 8.9 / 316.8
  23170. }
  23171. },
  23172. cumming: {
  23173. height: math.unit(2 + 6 / 12, "feet"),
  23174. weight: math.unit(30, "lb"),
  23175. name: "Cumming",
  23176. image: {
  23177. source: "./media/characters/layla/cumming.svg",
  23178. extra: 342 / 279,
  23179. bottom: 595 / 938
  23180. }
  23181. },
  23182. dickFlaccid: {
  23183. height: math.unit(2.595, "feet"),
  23184. name: "Flaccid Genitals",
  23185. image: {
  23186. source: "./media/characters/layla/dick-flaccid.svg"
  23187. }
  23188. },
  23189. dickErect: {
  23190. height: math.unit(2.359, "feet"),
  23191. name: "Erect Genitals",
  23192. image: {
  23193. source: "./media/characters/layla/dick-erect.svg"
  23194. }
  23195. },
  23196. dragon: {
  23197. height: math.unit(40, "feet"),
  23198. name: "Dragon",
  23199. image: {
  23200. source: "./media/characters/layla/dragon.svg",
  23201. extra: 610/535,
  23202. bottom: 367/977
  23203. }
  23204. },
  23205. taur: {
  23206. height: math.unit(30, "feet"),
  23207. name: "Taur",
  23208. image: {
  23209. source: "./media/characters/layla/taur.svg",
  23210. extra: 1268/1199,
  23211. bottom: 112/1380
  23212. }
  23213. },
  23214. },
  23215. [
  23216. {
  23217. name: "Micro",
  23218. height: math.unit(1, "inch")
  23219. },
  23220. {
  23221. name: "Small",
  23222. height: math.unit(1, "foot")
  23223. },
  23224. {
  23225. name: "Normal",
  23226. height: math.unit(2 + 6 / 12, "feet"),
  23227. default: true
  23228. },
  23229. {
  23230. name: "Macro",
  23231. height: math.unit(200, "feet")
  23232. },
  23233. {
  23234. name: "Megamacro",
  23235. height: math.unit(1000, "miles")
  23236. },
  23237. {
  23238. name: "Planetary",
  23239. height: math.unit(8000, "miles")
  23240. },
  23241. {
  23242. name: "True Layla",
  23243. height: math.unit(200000 * 7, "multiverses")
  23244. },
  23245. ]
  23246. ))
  23247. characterMakers.push(() => makeCharacter(
  23248. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23249. {
  23250. back: {
  23251. height: math.unit(10.5, "feet"),
  23252. weight: math.unit(800, "lb"),
  23253. name: "Back",
  23254. image: {
  23255. source: "./media/characters/knox/back.svg",
  23256. extra: 1486 / 1089,
  23257. bottom: 107 / 1601.4
  23258. }
  23259. },
  23260. side: {
  23261. height: math.unit(10.5, "feet"),
  23262. weight: math.unit(800, "lb"),
  23263. name: "Side",
  23264. image: {
  23265. source: "./media/characters/knox/side.svg",
  23266. extra: 244 / 218,
  23267. bottom: 14 / 260
  23268. }
  23269. },
  23270. },
  23271. [
  23272. {
  23273. name: "Compact",
  23274. height: math.unit(10.5, "feet"),
  23275. default: true
  23276. },
  23277. {
  23278. name: "Dynamax",
  23279. height: math.unit(210, "feet")
  23280. },
  23281. {
  23282. name: "Full Macro",
  23283. height: math.unit(850, "feet")
  23284. },
  23285. ]
  23286. ))
  23287. characterMakers.push(() => makeCharacter(
  23288. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23289. {
  23290. front: {
  23291. height: math.unit(6, "feet"),
  23292. weight: math.unit(152, "lb"),
  23293. name: "Front",
  23294. image: {
  23295. source: "./media/characters/shin-pikachu/front.svg",
  23296. extra: 1574 / 1480,
  23297. bottom: 53.3 / 1626
  23298. }
  23299. },
  23300. hand: {
  23301. height: math.unit(1.055, "feet"),
  23302. name: "Hand",
  23303. image: {
  23304. source: "./media/characters/shin-pikachu/hand.svg"
  23305. }
  23306. },
  23307. foot: {
  23308. height: math.unit(1.1, "feet"),
  23309. name: "Foot",
  23310. image: {
  23311. source: "./media/characters/shin-pikachu/foot.svg"
  23312. }
  23313. },
  23314. collar: {
  23315. height: math.unit(0.386, "feet"),
  23316. name: "Collar",
  23317. image: {
  23318. source: "./media/characters/shin-pikachu/collar.svg"
  23319. }
  23320. },
  23321. },
  23322. [
  23323. {
  23324. name: "Smallest",
  23325. height: math.unit(0.5, "inches")
  23326. },
  23327. {
  23328. name: "Micro",
  23329. height: math.unit(6, "inches")
  23330. },
  23331. {
  23332. name: "Normal",
  23333. height: math.unit(6, "feet"),
  23334. default: true
  23335. },
  23336. {
  23337. name: "Macro",
  23338. height: math.unit(150, "feet")
  23339. },
  23340. ]
  23341. ))
  23342. characterMakers.push(() => makeCharacter(
  23343. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23344. {
  23345. front: {
  23346. height: math.unit(28, "feet"),
  23347. weight: math.unit(10500, "lb"),
  23348. name: "Front",
  23349. image: {
  23350. source: "./media/characters/kayda/front.svg",
  23351. extra: 1536 / 1428,
  23352. bottom: 68.7 / 1603
  23353. }
  23354. },
  23355. back: {
  23356. height: math.unit(28, "feet"),
  23357. weight: math.unit(10500, "lb"),
  23358. name: "Back",
  23359. image: {
  23360. source: "./media/characters/kayda/back.svg",
  23361. extra: 1557 / 1464,
  23362. bottom: 39.5 / 1597.49
  23363. }
  23364. },
  23365. dick: {
  23366. height: math.unit(3.858, "feet"),
  23367. name: "Dick",
  23368. image: {
  23369. source: "./media/characters/kayda/dick.svg"
  23370. }
  23371. },
  23372. },
  23373. [
  23374. {
  23375. name: "Macro",
  23376. height: math.unit(28, "feet"),
  23377. default: true
  23378. },
  23379. ]
  23380. ))
  23381. characterMakers.push(() => makeCharacter(
  23382. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23383. {
  23384. front: {
  23385. height: math.unit(10 + 11 / 12, "feet"),
  23386. weight: math.unit(1400, "lb"),
  23387. name: "Front",
  23388. image: {
  23389. source: "./media/characters/brian/front.svg",
  23390. extra: 737 / 692,
  23391. bottom: 55.4 / 785
  23392. }
  23393. },
  23394. },
  23395. [
  23396. {
  23397. name: "Normal",
  23398. height: math.unit(10 + 11 / 12, "feet"),
  23399. default: true
  23400. },
  23401. ]
  23402. ))
  23403. characterMakers.push(() => makeCharacter(
  23404. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23405. {
  23406. front: {
  23407. height: math.unit(5 + 8 / 12, "feet"),
  23408. weight: math.unit(140, "lb"),
  23409. name: "Front",
  23410. image: {
  23411. source: "./media/characters/khemri/front.svg",
  23412. extra: 4780 / 4059,
  23413. bottom: 80.1 / 4859.25
  23414. }
  23415. },
  23416. },
  23417. [
  23418. {
  23419. name: "Micro",
  23420. height: math.unit(6, "inches")
  23421. },
  23422. {
  23423. name: "Normal",
  23424. height: math.unit(5 + 8 / 12, "feet"),
  23425. default: true
  23426. },
  23427. ]
  23428. ))
  23429. characterMakers.push(() => makeCharacter(
  23430. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23431. {
  23432. front: {
  23433. height: math.unit(13, "feet"),
  23434. weight: math.unit(1700, "lb"),
  23435. name: "Front",
  23436. image: {
  23437. source: "./media/characters/felix-braveheart/front.svg",
  23438. extra: 1222 / 1157,
  23439. bottom: 53.2 / 1280
  23440. }
  23441. },
  23442. back: {
  23443. height: math.unit(13, "feet"),
  23444. weight: math.unit(1700, "lb"),
  23445. name: "Back",
  23446. image: {
  23447. source: "./media/characters/felix-braveheart/back.svg",
  23448. extra: 1277 / 1203,
  23449. bottom: 50.2 / 1327
  23450. }
  23451. },
  23452. feral: {
  23453. height: math.unit(6, "feet"),
  23454. weight: math.unit(400, "lb"),
  23455. name: "Feral",
  23456. image: {
  23457. source: "./media/characters/felix-braveheart/feral.svg",
  23458. extra: 682 / 625,
  23459. bottom: 6.9 / 688
  23460. }
  23461. },
  23462. },
  23463. [
  23464. {
  23465. name: "Normal",
  23466. height: math.unit(13, "feet"),
  23467. default: true
  23468. },
  23469. ]
  23470. ))
  23471. characterMakers.push(() => makeCharacter(
  23472. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23473. {
  23474. side: {
  23475. height: math.unit(5 + 11 / 12, "feet"),
  23476. weight: math.unit(1400, "lb"),
  23477. name: "Side",
  23478. image: {
  23479. source: "./media/characters/shadow-blade/side.svg",
  23480. extra: 1726 / 1267,
  23481. bottom: 58.4 / 1785
  23482. }
  23483. },
  23484. },
  23485. [
  23486. {
  23487. name: "Normal",
  23488. height: math.unit(5 + 11 / 12, "feet"),
  23489. default: true
  23490. },
  23491. ]
  23492. ))
  23493. characterMakers.push(() => makeCharacter(
  23494. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23495. {
  23496. front: {
  23497. height: math.unit(1 + 6 / 12, "feet"),
  23498. weight: math.unit(25, "lb"),
  23499. name: "Front",
  23500. image: {
  23501. source: "./media/characters/karla-halldor/front.svg",
  23502. extra: 1459 / 1383,
  23503. bottom: 12 / 1472
  23504. }
  23505. },
  23506. },
  23507. [
  23508. {
  23509. name: "Normal",
  23510. height: math.unit(1 + 6 / 12, "feet"),
  23511. default: true
  23512. },
  23513. ]
  23514. ))
  23515. characterMakers.push(() => makeCharacter(
  23516. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23517. {
  23518. front: {
  23519. height: math.unit(6 + 2 / 12, "feet"),
  23520. weight: math.unit(160, "lb"),
  23521. name: "Front",
  23522. image: {
  23523. source: "./media/characters/ariam/front.svg",
  23524. extra: 714 / 617,
  23525. bottom: 23.4 / 737,
  23526. }
  23527. },
  23528. squatting: {
  23529. height: math.unit(4.1, "feet"),
  23530. weight: math.unit(160, "lb"),
  23531. name: "Squatting",
  23532. image: {
  23533. source: "./media/characters/ariam/squatting.svg",
  23534. extra: 2617 / 2112,
  23535. bottom: 61.2 / 2681,
  23536. }
  23537. },
  23538. },
  23539. [
  23540. {
  23541. name: "Normal",
  23542. height: math.unit(6 + 2 / 12, "feet"),
  23543. default: true
  23544. },
  23545. {
  23546. name: "Normal+",
  23547. height: math.unit(4, "meters")
  23548. },
  23549. {
  23550. name: "Macro",
  23551. height: math.unit(50, "meters")
  23552. },
  23553. {
  23554. name: "Macro+",
  23555. height: math.unit(100, "meters")
  23556. },
  23557. {
  23558. name: "Megamacro",
  23559. height: math.unit(20, "km")
  23560. },
  23561. ]
  23562. ))
  23563. characterMakers.push(() => makeCharacter(
  23564. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23565. {
  23566. front: {
  23567. height: math.unit(1.67, "meters"),
  23568. weight: math.unit(140, "lb"),
  23569. name: "Front",
  23570. image: {
  23571. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23572. extra: 438 / 410,
  23573. bottom: 0.75 / 439
  23574. }
  23575. },
  23576. },
  23577. [
  23578. {
  23579. name: "Shrunken",
  23580. height: math.unit(7.6, "cm")
  23581. },
  23582. {
  23583. name: "Human Scale",
  23584. height: math.unit(1.67, "meters")
  23585. },
  23586. {
  23587. name: "Wolxi Scale",
  23588. height: math.unit(36.7, "meters"),
  23589. default: true
  23590. },
  23591. ]
  23592. ))
  23593. characterMakers.push(() => makeCharacter(
  23594. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23595. {
  23596. front: {
  23597. height: math.unit(1.73, "meters"),
  23598. weight: math.unit(240, "lb"),
  23599. name: "Front",
  23600. image: {
  23601. source: "./media/characters/izue-two-mothers/front.svg",
  23602. extra: 469 / 437,
  23603. bottom: 1.24 / 470.6
  23604. }
  23605. },
  23606. },
  23607. [
  23608. {
  23609. name: "Shrunken",
  23610. height: math.unit(7.86, "cm")
  23611. },
  23612. {
  23613. name: "Human Scale",
  23614. height: math.unit(1.73, "meters")
  23615. },
  23616. {
  23617. name: "Wolxi Scale",
  23618. height: math.unit(38, "meters"),
  23619. default: true
  23620. },
  23621. ]
  23622. ))
  23623. characterMakers.push(() => makeCharacter(
  23624. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23625. {
  23626. front: {
  23627. height: math.unit(1.55, "meters"),
  23628. weight: math.unit(120, "lb"),
  23629. name: "Front",
  23630. image: {
  23631. source: "./media/characters/teeku-love-shack/front.svg",
  23632. extra: 387 / 362,
  23633. bottom: 1.51 / 388
  23634. }
  23635. },
  23636. },
  23637. [
  23638. {
  23639. name: "Shrunken",
  23640. height: math.unit(7, "cm")
  23641. },
  23642. {
  23643. name: "Human Scale",
  23644. height: math.unit(1.55, "meters")
  23645. },
  23646. {
  23647. name: "Wolxi Scale",
  23648. height: math.unit(34.1, "meters"),
  23649. default: true
  23650. },
  23651. ]
  23652. ))
  23653. characterMakers.push(() => makeCharacter(
  23654. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23655. {
  23656. front: {
  23657. height: math.unit(1.83, "meters"),
  23658. weight: math.unit(135, "lb"),
  23659. name: "Front",
  23660. image: {
  23661. source: "./media/characters/dejma-the-red/front.svg",
  23662. extra: 480 / 458,
  23663. bottom: 1.8 / 482
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Shrunken",
  23670. height: math.unit(8.3, "cm")
  23671. },
  23672. {
  23673. name: "Human Scale",
  23674. height: math.unit(1.83, "meters")
  23675. },
  23676. {
  23677. name: "Wolxi Scale",
  23678. height: math.unit(40, "meters"),
  23679. default: true
  23680. },
  23681. ]
  23682. ))
  23683. characterMakers.push(() => makeCharacter(
  23684. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23685. {
  23686. front: {
  23687. height: math.unit(1.78, "meters"),
  23688. weight: math.unit(65, "kg"),
  23689. name: "Front",
  23690. image: {
  23691. source: "./media/characters/aki/front.svg",
  23692. extra: 452 / 415
  23693. }
  23694. },
  23695. frontNsfw: {
  23696. height: math.unit(1.78, "meters"),
  23697. weight: math.unit(65, "kg"),
  23698. name: "Front (NSFW)",
  23699. image: {
  23700. source: "./media/characters/aki/front-nsfw.svg",
  23701. extra: 452 / 415
  23702. }
  23703. },
  23704. back: {
  23705. height: math.unit(1.78, "meters"),
  23706. weight: math.unit(65, "kg"),
  23707. name: "Back",
  23708. image: {
  23709. source: "./media/characters/aki/back.svg",
  23710. extra: 452 / 415
  23711. }
  23712. },
  23713. rump: {
  23714. height: math.unit(2.05, "feet"),
  23715. name: "Rump",
  23716. image: {
  23717. source: "./media/characters/aki/rump.svg"
  23718. }
  23719. },
  23720. dick: {
  23721. height: math.unit(0.95, "feet"),
  23722. name: "Dick",
  23723. image: {
  23724. source: "./media/characters/aki/dick.svg"
  23725. }
  23726. },
  23727. },
  23728. [
  23729. {
  23730. name: "Micro",
  23731. height: math.unit(15, "cm")
  23732. },
  23733. {
  23734. name: "Normal",
  23735. height: math.unit(178, "cm"),
  23736. default: true
  23737. },
  23738. {
  23739. name: "Macro",
  23740. height: math.unit(214, "m")
  23741. },
  23742. {
  23743. name: "Macro+",
  23744. height: math.unit(534, "m")
  23745. },
  23746. ]
  23747. ))
  23748. characterMakers.push(() => makeCharacter(
  23749. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23750. {
  23751. front: {
  23752. height: math.unit(5 + 5 / 12, "feet"),
  23753. weight: math.unit(120, "lb"),
  23754. name: "Front",
  23755. image: {
  23756. source: "./media/characters/ari/front.svg",
  23757. extra: 714.5 / 682,
  23758. bottom: 8 / 722.5
  23759. }
  23760. },
  23761. },
  23762. [
  23763. {
  23764. name: "Normal",
  23765. height: math.unit(5 + 5 / 12, "feet")
  23766. },
  23767. {
  23768. name: "Macro",
  23769. height: math.unit(100, "feet"),
  23770. default: true
  23771. },
  23772. {
  23773. name: "Megamacro",
  23774. height: math.unit(100, "miles")
  23775. },
  23776. {
  23777. name: "Gigamacro",
  23778. height: math.unit(80000, "miles")
  23779. },
  23780. ]
  23781. ))
  23782. characterMakers.push(() => makeCharacter(
  23783. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23784. {
  23785. side: {
  23786. height: math.unit(9, "feet"),
  23787. weight: math.unit(400, "kg"),
  23788. name: "Side",
  23789. image: {
  23790. source: "./media/characters/bolt/side.svg",
  23791. extra: 1126 / 896,
  23792. bottom: 60 / 1187.3,
  23793. }
  23794. },
  23795. },
  23796. [
  23797. {
  23798. name: "Micro",
  23799. height: math.unit(5, "inches")
  23800. },
  23801. {
  23802. name: "Normal",
  23803. height: math.unit(9, "feet"),
  23804. default: true
  23805. },
  23806. {
  23807. name: "Macro",
  23808. height: math.unit(700, "feet")
  23809. },
  23810. {
  23811. name: "Max Size",
  23812. height: math.unit(1.52e22, "yottameters")
  23813. },
  23814. ]
  23815. ))
  23816. characterMakers.push(() => makeCharacter(
  23817. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23818. {
  23819. front: {
  23820. height: math.unit(4.53, "meters"),
  23821. weight: math.unit(3, "tons"),
  23822. name: "Front",
  23823. image: {
  23824. source: "./media/characters/draekon-sylviar/front.svg",
  23825. extra: 1228 / 1068,
  23826. bottom: 41 / 1270
  23827. }
  23828. },
  23829. tail: {
  23830. height: math.unit(1.772, "meter"),
  23831. name: "Tail",
  23832. image: {
  23833. source: "./media/characters/draekon-sylviar/tail.svg"
  23834. }
  23835. },
  23836. head: {
  23837. height: math.unit(1.331, "meter"),
  23838. name: "Head",
  23839. image: {
  23840. source: "./media/characters/draekon-sylviar/head.svg"
  23841. }
  23842. },
  23843. hand: {
  23844. height: math.unit(0.564, "meter"),
  23845. name: "Hand",
  23846. image: {
  23847. source: "./media/characters/draekon-sylviar/hand.svg"
  23848. }
  23849. },
  23850. foot: {
  23851. height: math.unit(0.621, "meter"),
  23852. name: "Foot",
  23853. image: {
  23854. source: "./media/characters/draekon-sylviar/foot.svg",
  23855. bottom: 32 / 324
  23856. }
  23857. },
  23858. dick: {
  23859. height: math.unit(61, "cm"),
  23860. name: "Dick",
  23861. image: {
  23862. source: "./media/characters/draekon-sylviar/dick.svg"
  23863. }
  23864. },
  23865. dickseparated: {
  23866. height: math.unit(61, "cm"),
  23867. name: "Dick-separated",
  23868. image: {
  23869. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23870. }
  23871. },
  23872. },
  23873. [
  23874. {
  23875. name: "Small",
  23876. height: math.unit(4.53 / 2, "meters"),
  23877. default: true
  23878. },
  23879. {
  23880. name: "Normal",
  23881. height: math.unit(4.53, "meters"),
  23882. default: true
  23883. },
  23884. {
  23885. name: "Large",
  23886. height: math.unit(4.53 * 2, "meters"),
  23887. },
  23888. ]
  23889. ))
  23890. characterMakers.push(() => makeCharacter(
  23891. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23892. {
  23893. front: {
  23894. height: math.unit(6 + 2 / 12, "feet"),
  23895. weight: math.unit(180, "lb"),
  23896. name: "Front",
  23897. image: {
  23898. source: "./media/characters/brawler/front.svg",
  23899. extra: 3301 / 3027,
  23900. bottom: 138 / 3439
  23901. }
  23902. },
  23903. },
  23904. [
  23905. {
  23906. name: "Normal",
  23907. height: math.unit(6 + 2 / 12, "feet"),
  23908. default: true
  23909. },
  23910. ]
  23911. ))
  23912. characterMakers.push(() => makeCharacter(
  23913. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23914. {
  23915. front: {
  23916. height: math.unit(11, "feet"),
  23917. weight: math.unit(1000, "lb"),
  23918. name: "Front",
  23919. image: {
  23920. source: "./media/characters/alex/front.svg",
  23921. bottom: 44.5 / 620
  23922. }
  23923. },
  23924. },
  23925. [
  23926. {
  23927. name: "Micro",
  23928. height: math.unit(5, "inches")
  23929. },
  23930. {
  23931. name: "Normal",
  23932. height: math.unit(11, "feet"),
  23933. default: true
  23934. },
  23935. {
  23936. name: "Macro",
  23937. height: math.unit(9.5e9, "feet")
  23938. },
  23939. {
  23940. name: "Max Size",
  23941. height: math.unit(1.4e283, "yottameters")
  23942. },
  23943. ]
  23944. ))
  23945. characterMakers.push(() => makeCharacter(
  23946. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23947. {
  23948. female: {
  23949. height: math.unit(29.9, "m"),
  23950. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23951. name: "Female",
  23952. image: {
  23953. source: "./media/characters/zenari/female.svg",
  23954. extra: 3281.6 / 3217,
  23955. bottom: 72.2 / 3353
  23956. }
  23957. },
  23958. male: {
  23959. height: math.unit(27.7, "m"),
  23960. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23961. name: "Male",
  23962. image: {
  23963. source: "./media/characters/zenari/male.svg",
  23964. extra: 3008 / 2991,
  23965. bottom: 54.6 / 3069
  23966. }
  23967. },
  23968. },
  23969. [
  23970. {
  23971. name: "Macro",
  23972. height: math.unit(29.7, "meters"),
  23973. default: true
  23974. },
  23975. ]
  23976. ))
  23977. characterMakers.push(() => makeCharacter(
  23978. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23979. {
  23980. female: {
  23981. height: math.unit(23.8, "m"),
  23982. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23983. name: "Female",
  23984. image: {
  23985. source: "./media/characters/mactarian/female.svg",
  23986. extra: 2662 / 2569,
  23987. bottom: 73 / 2736
  23988. }
  23989. },
  23990. male: {
  23991. height: math.unit(23.8, "m"),
  23992. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23993. name: "Male",
  23994. image: {
  23995. source: "./media/characters/mactarian/male.svg",
  23996. extra: 2673 / 2600,
  23997. bottom: 76 / 2750
  23998. }
  23999. },
  24000. },
  24001. [
  24002. {
  24003. name: "Macro",
  24004. height: math.unit(23.8, "meters"),
  24005. default: true
  24006. },
  24007. ]
  24008. ))
  24009. characterMakers.push(() => makeCharacter(
  24010. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24011. {
  24012. female: {
  24013. height: math.unit(19.3, "m"),
  24014. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24015. name: "Female",
  24016. image: {
  24017. source: "./media/characters/umok/female.svg",
  24018. extra: 2186 / 2078,
  24019. bottom: 87 / 2277
  24020. }
  24021. },
  24022. male: {
  24023. height: math.unit(19.5, "m"),
  24024. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24025. name: "Male",
  24026. image: {
  24027. source: "./media/characters/umok/male.svg",
  24028. extra: 2233 / 2140,
  24029. bottom: 24.4 / 2258
  24030. }
  24031. },
  24032. },
  24033. [
  24034. {
  24035. name: "Macro",
  24036. height: math.unit(19.3, "meters"),
  24037. default: true
  24038. },
  24039. ]
  24040. ))
  24041. characterMakers.push(() => makeCharacter(
  24042. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24043. {
  24044. female: {
  24045. height: math.unit(26.15, "m"),
  24046. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24047. name: "Female",
  24048. image: {
  24049. source: "./media/characters/joraxian/female.svg",
  24050. extra: 2912 / 2824,
  24051. bottom: 36 / 2956
  24052. }
  24053. },
  24054. male: {
  24055. height: math.unit(25.4, "m"),
  24056. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24057. name: "Male",
  24058. image: {
  24059. source: "./media/characters/joraxian/male.svg",
  24060. extra: 2877 / 2721,
  24061. bottom: 82 / 2967
  24062. }
  24063. },
  24064. },
  24065. [
  24066. {
  24067. name: "Macro",
  24068. height: math.unit(26.15, "meters"),
  24069. default: true
  24070. },
  24071. ]
  24072. ))
  24073. characterMakers.push(() => makeCharacter(
  24074. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24075. {
  24076. female: {
  24077. height: math.unit(21.6, "m"),
  24078. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24079. name: "Female",
  24080. image: {
  24081. source: "./media/characters/sthara/female.svg",
  24082. extra: 2516 / 2347,
  24083. bottom: 21.5 / 2537
  24084. }
  24085. },
  24086. male: {
  24087. height: math.unit(24, "m"),
  24088. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24089. name: "Male",
  24090. image: {
  24091. source: "./media/characters/sthara/male.svg",
  24092. extra: 2732 / 2607,
  24093. bottom: 23 / 2732
  24094. }
  24095. },
  24096. },
  24097. [
  24098. {
  24099. name: "Macro",
  24100. height: math.unit(21.6, "meters"),
  24101. default: true
  24102. },
  24103. ]
  24104. ))
  24105. characterMakers.push(() => makeCharacter(
  24106. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24107. {
  24108. front: {
  24109. height: math.unit(6 + 4 / 12, "feet"),
  24110. weight: math.unit(175, "lb"),
  24111. name: "Front",
  24112. image: {
  24113. source: "./media/characters/luka-bryzant/front.svg",
  24114. extra: 311 / 289,
  24115. bottom: 4 / 315
  24116. }
  24117. },
  24118. back: {
  24119. height: math.unit(6 + 4 / 12, "feet"),
  24120. weight: math.unit(175, "lb"),
  24121. name: "Back",
  24122. image: {
  24123. source: "./media/characters/luka-bryzant/back.svg",
  24124. extra: 311 / 289,
  24125. bottom: 3.8 / 313.7
  24126. }
  24127. },
  24128. },
  24129. [
  24130. {
  24131. name: "Micro",
  24132. height: math.unit(10, "inches")
  24133. },
  24134. {
  24135. name: "Normal",
  24136. height: math.unit(6 + 4 / 12, "feet"),
  24137. default: true
  24138. },
  24139. {
  24140. name: "Large",
  24141. height: math.unit(12, "feet")
  24142. },
  24143. ]
  24144. ))
  24145. characterMakers.push(() => makeCharacter(
  24146. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24147. {
  24148. front: {
  24149. height: math.unit(5 + 7 / 12, "feet"),
  24150. weight: math.unit(185, "lb"),
  24151. name: "Front",
  24152. image: {
  24153. source: "./media/characters/aman-aquila/front.svg",
  24154. extra: 1013 / 976,
  24155. bottom: 45.6 / 1057
  24156. }
  24157. },
  24158. side: {
  24159. height: math.unit(5 + 7 / 12, "feet"),
  24160. weight: math.unit(185, "lb"),
  24161. name: "Side",
  24162. image: {
  24163. source: "./media/characters/aman-aquila/side.svg",
  24164. extra: 1054 / 1011,
  24165. bottom: 15 / 1070
  24166. }
  24167. },
  24168. back: {
  24169. height: math.unit(5 + 7 / 12, "feet"),
  24170. weight: math.unit(185, "lb"),
  24171. name: "Back",
  24172. image: {
  24173. source: "./media/characters/aman-aquila/back.svg",
  24174. extra: 1026 / 970,
  24175. bottom: 12 / 1039
  24176. }
  24177. },
  24178. head: {
  24179. height: math.unit(1.211, "feet"),
  24180. name: "Head",
  24181. image: {
  24182. source: "./media/characters/aman-aquila/head.svg",
  24183. }
  24184. },
  24185. },
  24186. [
  24187. {
  24188. name: "Minimicro",
  24189. height: math.unit(0.057, "inches")
  24190. },
  24191. {
  24192. name: "Micro",
  24193. height: math.unit(7, "inches")
  24194. },
  24195. {
  24196. name: "Mini",
  24197. height: math.unit(3 + 7 / 12, "feet")
  24198. },
  24199. {
  24200. name: "Normal",
  24201. height: math.unit(5 + 7 / 12, "feet"),
  24202. default: true
  24203. },
  24204. {
  24205. name: "Macro",
  24206. height: math.unit(157 + 7 / 12, "feet")
  24207. },
  24208. {
  24209. name: "Megamacro",
  24210. height: math.unit(1557 + 7 / 12, "feet")
  24211. },
  24212. {
  24213. name: "Gigamacro",
  24214. height: math.unit(15557 + 7 / 12, "feet")
  24215. },
  24216. ]
  24217. ))
  24218. characterMakers.push(() => makeCharacter(
  24219. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24220. {
  24221. front: {
  24222. height: math.unit(3 + 2 / 12, "inches"),
  24223. weight: math.unit(0.3, "ounces"),
  24224. name: "Front",
  24225. image: {
  24226. source: "./media/characters/hiphae/front.svg",
  24227. extra: 1931 / 1683,
  24228. bottom: 24 / 1955
  24229. }
  24230. },
  24231. },
  24232. [
  24233. {
  24234. name: "Normal",
  24235. height: math.unit(3 + 1 / 2, "inches"),
  24236. default: true
  24237. },
  24238. ]
  24239. ))
  24240. characterMakers.push(() => makeCharacter(
  24241. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24242. {
  24243. front: {
  24244. height: math.unit(5 + 10 / 12, "feet"),
  24245. weight: math.unit(165, "lb"),
  24246. name: "Front",
  24247. image: {
  24248. source: "./media/characters/nicky/front.svg",
  24249. extra: 3144 / 2886,
  24250. bottom: 45.6 / 3192
  24251. }
  24252. },
  24253. back: {
  24254. height: math.unit(5 + 10 / 12, "feet"),
  24255. weight: math.unit(165, "lb"),
  24256. name: "Back",
  24257. image: {
  24258. source: "./media/characters/nicky/back.svg",
  24259. extra: 3055 / 2804,
  24260. bottom: 28.4 / 3087
  24261. }
  24262. },
  24263. frontclothed: {
  24264. height: math.unit(5 + 10 / 12, "feet"),
  24265. weight: math.unit(165, "lb"),
  24266. name: "Front-clothed",
  24267. image: {
  24268. source: "./media/characters/nicky/front-clothed.svg",
  24269. extra: 3184.9 / 2926.9,
  24270. bottom: 86.5 / 3239.9
  24271. }
  24272. },
  24273. foot: {
  24274. height: math.unit(1.16, "feet"),
  24275. name: "Foot",
  24276. image: {
  24277. source: "./media/characters/nicky/foot.svg"
  24278. }
  24279. },
  24280. feet: {
  24281. height: math.unit(1.34, "feet"),
  24282. name: "Feet",
  24283. image: {
  24284. source: "./media/characters/nicky/feet.svg"
  24285. }
  24286. },
  24287. maw: {
  24288. height: math.unit(0.9, "feet"),
  24289. name: "Maw",
  24290. image: {
  24291. source: "./media/characters/nicky/maw.svg"
  24292. }
  24293. },
  24294. },
  24295. [
  24296. {
  24297. name: "Normal",
  24298. height: math.unit(5 + 10 / 12, "feet"),
  24299. default: true
  24300. },
  24301. {
  24302. name: "Macro",
  24303. height: math.unit(60, "feet")
  24304. },
  24305. {
  24306. name: "Megamacro",
  24307. height: math.unit(1, "mile")
  24308. },
  24309. ]
  24310. ))
  24311. characterMakers.push(() => makeCharacter(
  24312. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24313. {
  24314. side: {
  24315. height: math.unit(10, "feet"),
  24316. weight: math.unit(600, "lb"),
  24317. name: "Side",
  24318. image: {
  24319. source: "./media/characters/blair/side.svg",
  24320. bottom: 16.6 / 475,
  24321. extra: 458 / 431
  24322. }
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Micro",
  24328. height: math.unit(8, "inches")
  24329. },
  24330. {
  24331. name: "Normal",
  24332. height: math.unit(10, "feet"),
  24333. default: true
  24334. },
  24335. {
  24336. name: "Macro",
  24337. height: math.unit(180, "feet")
  24338. },
  24339. ]
  24340. ))
  24341. characterMakers.push(() => makeCharacter(
  24342. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24343. {
  24344. front: {
  24345. height: math.unit(5 + 4 / 12, "feet"),
  24346. weight: math.unit(125, "lb"),
  24347. name: "Front",
  24348. image: {
  24349. source: "./media/characters/fisher/front.svg",
  24350. extra: 444 / 390,
  24351. bottom: 2 / 444.8
  24352. }
  24353. },
  24354. },
  24355. [
  24356. {
  24357. name: "Micro",
  24358. height: math.unit(4, "inches")
  24359. },
  24360. {
  24361. name: "Normal",
  24362. height: math.unit(5 + 4 / 12, "feet"),
  24363. default: true
  24364. },
  24365. {
  24366. name: "Macro",
  24367. height: math.unit(100, "feet")
  24368. },
  24369. ]
  24370. ))
  24371. characterMakers.push(() => makeCharacter(
  24372. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24373. {
  24374. front: {
  24375. height: math.unit(6.71, "feet"),
  24376. weight: math.unit(200, "lb"),
  24377. capacity: math.unit(1000000, "people"),
  24378. name: "Front",
  24379. image: {
  24380. source: "./media/characters/gliss/front.svg",
  24381. extra: 2347 / 2231,
  24382. bottom: 113 / 2462
  24383. }
  24384. },
  24385. hammerspaceSize: {
  24386. height: math.unit(6.71 * 717, "feet"),
  24387. weight: math.unit(200, "lb"),
  24388. capacity: math.unit(1000000, "people"),
  24389. name: "Hammerspace Size",
  24390. image: {
  24391. source: "./media/characters/gliss/front.svg",
  24392. extra: 2347 / 2231,
  24393. bottom: 113 / 2462
  24394. }
  24395. },
  24396. },
  24397. [
  24398. {
  24399. name: "Normal",
  24400. height: math.unit(6.71, "feet"),
  24401. default: true
  24402. },
  24403. ]
  24404. ))
  24405. characterMakers.push(() => makeCharacter(
  24406. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24407. {
  24408. side: {
  24409. height: math.unit(1.44, "m"),
  24410. weight: math.unit(80, "kg"),
  24411. name: "Side",
  24412. image: {
  24413. source: "./media/characters/dune-anderson/side.svg",
  24414. bottom: 49 / 1426
  24415. }
  24416. },
  24417. },
  24418. [
  24419. {
  24420. name: "Wolf-sized",
  24421. height: math.unit(1.44, "meters")
  24422. },
  24423. {
  24424. name: "Normal",
  24425. height: math.unit(5.05, "meters"),
  24426. default: true
  24427. },
  24428. {
  24429. name: "Big",
  24430. height: math.unit(14.4, "meters")
  24431. },
  24432. {
  24433. name: "Huge",
  24434. height: math.unit(144, "meters")
  24435. },
  24436. ]
  24437. ))
  24438. characterMakers.push(() => makeCharacter(
  24439. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24440. {
  24441. front: {
  24442. height: math.unit(7, "feet"),
  24443. weight: math.unit(425, "lb"),
  24444. name: "Front",
  24445. image: {
  24446. source: "./media/characters/hind/front.svg",
  24447. extra: 2091 / 1860,
  24448. bottom: 129 / 2220
  24449. }
  24450. },
  24451. back: {
  24452. height: math.unit(7, "feet"),
  24453. weight: math.unit(425, "lb"),
  24454. name: "Back",
  24455. image: {
  24456. source: "./media/characters/hind/back.svg",
  24457. extra: 2091 / 1860,
  24458. bottom: 24.6 / 2309
  24459. }
  24460. },
  24461. tail: {
  24462. height: math.unit(2.8, "feet"),
  24463. name: "Tail",
  24464. image: {
  24465. source: "./media/characters/hind/tail.svg"
  24466. }
  24467. },
  24468. head: {
  24469. height: math.unit(2.55, "feet"),
  24470. name: "Head",
  24471. image: {
  24472. source: "./media/characters/hind/head.svg"
  24473. }
  24474. },
  24475. },
  24476. [
  24477. {
  24478. name: "XS",
  24479. height: math.unit(0.7, "feet")
  24480. },
  24481. {
  24482. name: "Normal",
  24483. height: math.unit(7, "feet"),
  24484. default: true
  24485. },
  24486. {
  24487. name: "XL",
  24488. height: math.unit(70, "feet")
  24489. },
  24490. ]
  24491. ))
  24492. characterMakers.push(() => makeCharacter(
  24493. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24494. {
  24495. front: {
  24496. height: math.unit(6, "feet"),
  24497. weight: math.unit(150, "lb"),
  24498. name: "Front",
  24499. image: {
  24500. source: "./media/characters/dylan-skaven/front.svg",
  24501. extra: 2318 / 2063,
  24502. bottom: 93.4 / 2410
  24503. }
  24504. },
  24505. },
  24506. [
  24507. {
  24508. name: "Nano",
  24509. height: math.unit(1, "mm")
  24510. },
  24511. {
  24512. name: "Micro",
  24513. height: math.unit(1, "cm")
  24514. },
  24515. {
  24516. name: "Normal",
  24517. height: math.unit(2.1, "meters"),
  24518. default: true
  24519. },
  24520. ]
  24521. ))
  24522. characterMakers.push(() => makeCharacter(
  24523. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24524. {
  24525. front: {
  24526. height: math.unit(7 + 5 / 12, "feet"),
  24527. weight: math.unit(357, "lb"),
  24528. name: "Front",
  24529. image: {
  24530. source: "./media/characters/solex-draconov/front.svg",
  24531. extra: 1993 / 1865,
  24532. bottom: 117 / 2111
  24533. }
  24534. },
  24535. },
  24536. [
  24537. {
  24538. name: "Natural Height",
  24539. height: math.unit(7 + 5 / 12, "feet"),
  24540. default: true
  24541. },
  24542. {
  24543. name: "Macro",
  24544. height: math.unit(350, "feet")
  24545. },
  24546. {
  24547. name: "Macro+",
  24548. height: math.unit(1000, "feet")
  24549. },
  24550. {
  24551. name: "Megamacro",
  24552. height: math.unit(20, "km")
  24553. },
  24554. {
  24555. name: "Megamacro+",
  24556. height: math.unit(1000, "km")
  24557. },
  24558. {
  24559. name: "Gigamacro",
  24560. height: math.unit(2.5, "Gm")
  24561. },
  24562. {
  24563. name: "Teramacro",
  24564. height: math.unit(15, "Tm")
  24565. },
  24566. {
  24567. name: "Galactic",
  24568. height: math.unit(30, "Zm")
  24569. },
  24570. {
  24571. name: "Universal",
  24572. height: math.unit(21000, "Ym")
  24573. },
  24574. {
  24575. name: "Omniversal",
  24576. height: math.unit(9.861e50, "Ym")
  24577. },
  24578. {
  24579. name: "Existential",
  24580. height: math.unit(1e300, "meters")
  24581. },
  24582. ]
  24583. ))
  24584. characterMakers.push(() => makeCharacter(
  24585. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24586. {
  24587. side: {
  24588. height: math.unit(25, "feet"),
  24589. weight: math.unit(90000, "lb"),
  24590. name: "Side",
  24591. image: {
  24592. source: "./media/characters/mandarax/side.svg",
  24593. extra: 614 / 332,
  24594. bottom: 55 / 630
  24595. }
  24596. },
  24597. head: {
  24598. height: math.unit(11.4, "feet"),
  24599. name: "Head",
  24600. image: {
  24601. source: "./media/characters/mandarax/head.svg"
  24602. }
  24603. },
  24604. belly: {
  24605. height: math.unit(33, "feet"),
  24606. name: "Belly",
  24607. capacity: math.unit(500, "people"),
  24608. image: {
  24609. source: "./media/characters/mandarax/belly.svg"
  24610. }
  24611. },
  24612. dick: {
  24613. height: math.unit(8.46, "feet"),
  24614. name: "Dick",
  24615. image: {
  24616. source: "./media/characters/mandarax/dick.svg"
  24617. }
  24618. },
  24619. top: {
  24620. height: math.unit(28, "meters"),
  24621. name: "Top",
  24622. image: {
  24623. source: "./media/characters/mandarax/top.svg"
  24624. }
  24625. },
  24626. },
  24627. [
  24628. {
  24629. name: "Normal",
  24630. height: math.unit(25, "feet"),
  24631. default: true
  24632. },
  24633. ]
  24634. ))
  24635. characterMakers.push(() => makeCharacter(
  24636. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24637. {
  24638. front: {
  24639. height: math.unit(5, "feet"),
  24640. weight: math.unit(90, "lb"),
  24641. name: "Front",
  24642. image: {
  24643. source: "./media/characters/pixil/front.svg",
  24644. extra: 2000 / 1618,
  24645. bottom: 12.3 / 2011
  24646. }
  24647. },
  24648. },
  24649. [
  24650. {
  24651. name: "Normal",
  24652. height: math.unit(5, "feet"),
  24653. default: true
  24654. },
  24655. {
  24656. name: "Megamacro",
  24657. height: math.unit(10, "miles"),
  24658. },
  24659. ]
  24660. ))
  24661. characterMakers.push(() => makeCharacter(
  24662. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24663. {
  24664. front: {
  24665. height: math.unit(7 + 2 / 12, "feet"),
  24666. weight: math.unit(200, "lb"),
  24667. name: "Front",
  24668. image: {
  24669. source: "./media/characters/angel/front.svg",
  24670. extra: 1830 / 1737,
  24671. bottom: 22.6 / 1854,
  24672. }
  24673. },
  24674. },
  24675. [
  24676. {
  24677. name: "Normal",
  24678. height: math.unit(7 + 2 / 12, "feet"),
  24679. default: true
  24680. },
  24681. {
  24682. name: "Macro",
  24683. height: math.unit(1000, "feet")
  24684. },
  24685. {
  24686. name: "Megamacro",
  24687. height: math.unit(2, "miles")
  24688. },
  24689. {
  24690. name: "Gigamacro",
  24691. height: math.unit(20, "earths")
  24692. },
  24693. ]
  24694. ))
  24695. characterMakers.push(() => makeCharacter(
  24696. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24697. {
  24698. front: {
  24699. height: math.unit(5, "feet"),
  24700. weight: math.unit(180, "lb"),
  24701. name: "Front",
  24702. image: {
  24703. source: "./media/characters/mekana/front.svg",
  24704. extra: 1671 / 1605,
  24705. bottom: 3.5 / 1691
  24706. }
  24707. },
  24708. side: {
  24709. height: math.unit(5, "feet"),
  24710. weight: math.unit(180, "lb"),
  24711. name: "Side",
  24712. image: {
  24713. source: "./media/characters/mekana/side.svg",
  24714. extra: 1671 / 1605,
  24715. bottom: 3.5 / 1691
  24716. }
  24717. },
  24718. back: {
  24719. height: math.unit(5, "feet"),
  24720. weight: math.unit(180, "lb"),
  24721. name: "Back",
  24722. image: {
  24723. source: "./media/characters/mekana/back.svg",
  24724. extra: 1671 / 1605,
  24725. bottom: 3.5 / 1691
  24726. }
  24727. },
  24728. },
  24729. [
  24730. {
  24731. name: "Normal",
  24732. height: math.unit(5, "feet"),
  24733. default: true
  24734. },
  24735. ]
  24736. ))
  24737. characterMakers.push(() => makeCharacter(
  24738. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24739. {
  24740. front: {
  24741. height: math.unit(4 + 6 / 12, "feet"),
  24742. weight: math.unit(80, "lb"),
  24743. name: "Front",
  24744. image: {
  24745. source: "./media/characters/pixie/front.svg",
  24746. extra: 1924 / 1825,
  24747. bottom: 22.4 / 1946
  24748. }
  24749. },
  24750. },
  24751. [
  24752. {
  24753. name: "Normal",
  24754. height: math.unit(4 + 6 / 12, "feet"),
  24755. default: true
  24756. },
  24757. {
  24758. name: "Macro",
  24759. height: math.unit(40, "feet")
  24760. },
  24761. ]
  24762. ))
  24763. characterMakers.push(() => makeCharacter(
  24764. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24765. {
  24766. front: {
  24767. height: math.unit(2.1, "meters"),
  24768. weight: math.unit(200, "lb"),
  24769. name: "Front",
  24770. image: {
  24771. source: "./media/characters/the-lascivious/front.svg",
  24772. extra: 1 / 0.893,
  24773. bottom: 3.5 / 573.7
  24774. }
  24775. },
  24776. },
  24777. [
  24778. {
  24779. name: "Human Scale",
  24780. height: math.unit(2.1, "meters")
  24781. },
  24782. {
  24783. name: "Wolxi Scale",
  24784. height: math.unit(46.2, "m"),
  24785. default: true
  24786. },
  24787. {
  24788. name: "Boinker of Buildings",
  24789. height: math.unit(10, "km")
  24790. },
  24791. {
  24792. name: "Shagger of Skyscrapers",
  24793. height: math.unit(40, "km")
  24794. },
  24795. {
  24796. name: "Banger of Boroughs",
  24797. height: math.unit(4000, "km")
  24798. },
  24799. {
  24800. name: "Screwer of States",
  24801. height: math.unit(100000, "km")
  24802. },
  24803. {
  24804. name: "Pounder of Planets",
  24805. height: math.unit(2000000, "km")
  24806. },
  24807. ]
  24808. ))
  24809. characterMakers.push(() => makeCharacter(
  24810. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24811. {
  24812. front: {
  24813. height: math.unit(6, "feet"),
  24814. weight: math.unit(150, "lb"),
  24815. name: "Front",
  24816. image: {
  24817. source: "./media/characters/aj/front.svg",
  24818. extra: 2039 / 1562,
  24819. bottom: 40 / 2079
  24820. }
  24821. },
  24822. },
  24823. [
  24824. {
  24825. name: "Normal",
  24826. height: math.unit(11 + 6 / 12, "feet"),
  24827. default: true
  24828. },
  24829. {
  24830. name: "Megamacro",
  24831. height: math.unit(60, "megameters")
  24832. },
  24833. ]
  24834. ))
  24835. characterMakers.push(() => makeCharacter(
  24836. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24837. {
  24838. side: {
  24839. height: math.unit(31 + 8 / 12, "feet"),
  24840. weight: math.unit(75000, "kg"),
  24841. name: "Side",
  24842. image: {
  24843. source: "./media/characters/koros/side.svg",
  24844. extra: 1442 / 1297,
  24845. bottom: 122.7 / 1562
  24846. }
  24847. },
  24848. dicksKingsCrown: {
  24849. height: math.unit(6, "feet"),
  24850. name: "Dicks (King's Crown)",
  24851. image: {
  24852. source: "./media/characters/koros/dicks-kings-crown.svg"
  24853. }
  24854. },
  24855. dicksTailSet: {
  24856. height: math.unit(3, "feet"),
  24857. name: "Dicks (Tail Set)",
  24858. image: {
  24859. source: "./media/characters/koros/dicks-tail-set.svg"
  24860. }
  24861. },
  24862. dickCumming: {
  24863. height: math.unit(7.98, "feet"),
  24864. name: "Dick (Cumming)",
  24865. image: {
  24866. source: "./media/characters/koros/dick-cumming.svg"
  24867. }
  24868. },
  24869. dicksBack: {
  24870. height: math.unit(5.9, "feet"),
  24871. name: "Dicks (Back)",
  24872. image: {
  24873. source: "./media/characters/koros/dicks-back.svg"
  24874. }
  24875. },
  24876. dicksFront: {
  24877. height: math.unit(3.72, "feet"),
  24878. name: "Dicks (Front)",
  24879. image: {
  24880. source: "./media/characters/koros/dicks-front.svg"
  24881. }
  24882. },
  24883. dicksPeeking: {
  24884. height: math.unit(3.0, "feet"),
  24885. name: "Dicks (Peeking)",
  24886. image: {
  24887. source: "./media/characters/koros/dicks-peeking.svg"
  24888. }
  24889. },
  24890. eye: {
  24891. height: math.unit(1.7, "feet"),
  24892. name: "Eye",
  24893. image: {
  24894. source: "./media/characters/koros/eye.svg"
  24895. }
  24896. },
  24897. headFront: {
  24898. height: math.unit(11.69, "feet"),
  24899. name: "Head (Front)",
  24900. image: {
  24901. source: "./media/characters/koros/head-front.svg"
  24902. }
  24903. },
  24904. headSide: {
  24905. height: math.unit(14, "feet"),
  24906. name: "Head (Side)",
  24907. image: {
  24908. source: "./media/characters/koros/head-side.svg"
  24909. }
  24910. },
  24911. leg: {
  24912. height: math.unit(17, "feet"),
  24913. name: "Leg",
  24914. image: {
  24915. source: "./media/characters/koros/leg.svg"
  24916. }
  24917. },
  24918. mawSide: {
  24919. height: math.unit(12.8, "feet"),
  24920. name: "Maw (Side)",
  24921. image: {
  24922. source: "./media/characters/koros/maw-side.svg"
  24923. }
  24924. },
  24925. mawSpitting: {
  24926. height: math.unit(17, "feet"),
  24927. name: "Maw (Spitting)",
  24928. image: {
  24929. source: "./media/characters/koros/maw-spitting.svg"
  24930. }
  24931. },
  24932. slit: {
  24933. height: math.unit(2.8, "feet"),
  24934. name: "Slit",
  24935. image: {
  24936. source: "./media/characters/koros/slit.svg"
  24937. }
  24938. },
  24939. stomach: {
  24940. height: math.unit(6.8, "feet"),
  24941. capacity: math.unit(20, "people"),
  24942. name: "Stomach",
  24943. image: {
  24944. source: "./media/characters/koros/stomach.svg"
  24945. }
  24946. },
  24947. wingspanBottom: {
  24948. height: math.unit(114, "feet"),
  24949. name: "Wingspan (Bottom)",
  24950. image: {
  24951. source: "./media/characters/koros/wingspan-bottom.svg"
  24952. }
  24953. },
  24954. wingspanTop: {
  24955. height: math.unit(104, "feet"),
  24956. name: "Wingspan (Top)",
  24957. image: {
  24958. source: "./media/characters/koros/wingspan-top.svg"
  24959. }
  24960. },
  24961. },
  24962. [
  24963. {
  24964. name: "Normal",
  24965. height: math.unit(31 + 8 / 12, "feet"),
  24966. default: true
  24967. },
  24968. ]
  24969. ))
  24970. characterMakers.push(() => makeCharacter(
  24971. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24972. {
  24973. front: {
  24974. height: math.unit(18 + 5 / 12, "feet"),
  24975. weight: math.unit(3750, "kg"),
  24976. name: "Front",
  24977. image: {
  24978. source: "./media/characters/vexx/front.svg",
  24979. extra: 426 / 396,
  24980. bottom: 31.5 / 458
  24981. }
  24982. },
  24983. maw: {
  24984. height: math.unit(6, "feet"),
  24985. name: "Maw",
  24986. image: {
  24987. source: "./media/characters/vexx/maw.svg"
  24988. }
  24989. },
  24990. },
  24991. [
  24992. {
  24993. name: "Normal",
  24994. height: math.unit(18 + 5 / 12, "feet"),
  24995. default: true
  24996. },
  24997. ]
  24998. ))
  24999. characterMakers.push(() => makeCharacter(
  25000. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25001. {
  25002. front: {
  25003. height: math.unit(17 + 6 / 12, "feet"),
  25004. weight: math.unit(150, "lb"),
  25005. name: "Front",
  25006. image: {
  25007. source: "./media/characters/baadra/front.svg",
  25008. extra: 3137 / 2890,
  25009. bottom: 168.4 / 3305
  25010. }
  25011. },
  25012. back: {
  25013. height: math.unit(17 + 6 / 12, "feet"),
  25014. weight: math.unit(150, "lb"),
  25015. name: "Back",
  25016. image: {
  25017. source: "./media/characters/baadra/back.svg",
  25018. extra: 3142 / 2890,
  25019. bottom: 220 / 3371
  25020. }
  25021. },
  25022. head: {
  25023. height: math.unit(5.45, "feet"),
  25024. name: "Head",
  25025. image: {
  25026. source: "./media/characters/baadra/head.svg"
  25027. }
  25028. },
  25029. headAngry: {
  25030. height: math.unit(4.95, "feet"),
  25031. name: "Head (Angry)",
  25032. image: {
  25033. source: "./media/characters/baadra/head-angry.svg"
  25034. }
  25035. },
  25036. headOpen: {
  25037. height: math.unit(6, "feet"),
  25038. name: "Head (Open)",
  25039. image: {
  25040. source: "./media/characters/baadra/head-open.svg"
  25041. }
  25042. },
  25043. },
  25044. [
  25045. {
  25046. name: "Normal",
  25047. height: math.unit(17 + 6 / 12, "feet"),
  25048. default: true
  25049. },
  25050. ]
  25051. ))
  25052. characterMakers.push(() => makeCharacter(
  25053. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25054. {
  25055. front: {
  25056. height: math.unit(7 + 3 / 12, "feet"),
  25057. weight: math.unit(180, "lb"),
  25058. name: "Front",
  25059. image: {
  25060. source: "./media/characters/juri/front.svg",
  25061. extra: 1401 / 1237,
  25062. bottom: 18.5 / 1418
  25063. }
  25064. },
  25065. side: {
  25066. height: math.unit(7 + 3 / 12, "feet"),
  25067. weight: math.unit(180, "lb"),
  25068. name: "Side",
  25069. image: {
  25070. source: "./media/characters/juri/side.svg",
  25071. extra: 1424 / 1242,
  25072. bottom: 18.5 / 1447
  25073. }
  25074. },
  25075. sitting: {
  25076. height: math.unit(6, "feet"),
  25077. weight: math.unit(180, "lb"),
  25078. name: "Sitting",
  25079. image: {
  25080. source: "./media/characters/juri/sitting.svg",
  25081. extra: 1270 / 1143,
  25082. bottom: 100 / 1343
  25083. }
  25084. },
  25085. back: {
  25086. height: math.unit(7 + 3 / 12, "feet"),
  25087. weight: math.unit(180, "lb"),
  25088. name: "Back",
  25089. image: {
  25090. source: "./media/characters/juri/back.svg",
  25091. extra: 1377 / 1240,
  25092. bottom: 23.7 / 1405
  25093. }
  25094. },
  25095. maw: {
  25096. height: math.unit(2.8, "feet"),
  25097. name: "Maw",
  25098. image: {
  25099. source: "./media/characters/juri/maw.svg"
  25100. }
  25101. },
  25102. stomach: {
  25103. height: math.unit(0.89, "feet"),
  25104. capacity: math.unit(4, "liters"),
  25105. name: "Stomach",
  25106. image: {
  25107. source: "./media/characters/juri/stomach.svg"
  25108. }
  25109. },
  25110. },
  25111. [
  25112. {
  25113. name: "Normal",
  25114. height: math.unit(7 + 3 / 12, "feet"),
  25115. default: true
  25116. },
  25117. ]
  25118. ))
  25119. characterMakers.push(() => makeCharacter(
  25120. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25121. {
  25122. fox: {
  25123. height: math.unit(5 + 6 / 12, "feet"),
  25124. weight: math.unit(140, "lb"),
  25125. name: "Fox",
  25126. image: {
  25127. source: "./media/characters/maxene-sita/fox.svg",
  25128. extra: 146 / 138,
  25129. bottom: 2.1 / 148.19
  25130. }
  25131. },
  25132. foxLaying: {
  25133. height: math.unit(1.70, "feet"),
  25134. weight: math.unit(140, "lb"),
  25135. name: "Fox (Laying)",
  25136. image: {
  25137. source: "./media/characters/maxene-sita/fox-laying.svg",
  25138. extra: 910 / 572,
  25139. bottom: 71 / 981
  25140. }
  25141. },
  25142. kitsune: {
  25143. height: math.unit(10, "feet"),
  25144. weight: math.unit(800, "lb"),
  25145. name: "Kitsune",
  25146. image: {
  25147. source: "./media/characters/maxene-sita/kitsune.svg",
  25148. extra: 185 / 176,
  25149. bottom: 4.7 / 189.9
  25150. }
  25151. },
  25152. hellhound: {
  25153. height: math.unit(10, "feet"),
  25154. weight: math.unit(700, "lb"),
  25155. name: "Hellhound",
  25156. image: {
  25157. source: "./media/characters/maxene-sita/hellhound.svg",
  25158. extra: 1600 / 1545,
  25159. bottom: 81 / 1681
  25160. }
  25161. },
  25162. },
  25163. [
  25164. {
  25165. name: "Normal",
  25166. height: math.unit(5 + 6 / 12, "feet"),
  25167. default: true
  25168. },
  25169. ]
  25170. ))
  25171. characterMakers.push(() => makeCharacter(
  25172. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25173. {
  25174. front: {
  25175. height: math.unit(3 + 4 / 12, "feet"),
  25176. weight: math.unit(70, "lb"),
  25177. name: "Front",
  25178. image: {
  25179. source: "./media/characters/maia/front.svg",
  25180. extra: 227 / 219.5,
  25181. bottom: 40 / 267
  25182. }
  25183. },
  25184. back: {
  25185. height: math.unit(3 + 4 / 12, "feet"),
  25186. weight: math.unit(70, "lb"),
  25187. name: "Back",
  25188. image: {
  25189. source: "./media/characters/maia/back.svg",
  25190. extra: 237 / 225
  25191. }
  25192. },
  25193. },
  25194. [
  25195. {
  25196. name: "Normal",
  25197. height: math.unit(3 + 4 / 12, "feet"),
  25198. default: true
  25199. },
  25200. ]
  25201. ))
  25202. characterMakers.push(() => makeCharacter(
  25203. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25204. {
  25205. front: {
  25206. height: math.unit(5 + 10 / 12, "feet"),
  25207. weight: math.unit(197, "lb"),
  25208. name: "Front",
  25209. image: {
  25210. source: "./media/characters/jabaro/front.svg",
  25211. extra: 225 / 216,
  25212. bottom: 5.06 / 230
  25213. }
  25214. },
  25215. back: {
  25216. height: math.unit(5 + 10 / 12, "feet"),
  25217. weight: math.unit(197, "lb"),
  25218. name: "Back",
  25219. image: {
  25220. source: "./media/characters/jabaro/back.svg",
  25221. extra: 225 / 219,
  25222. bottom: 1.9 / 227
  25223. }
  25224. },
  25225. },
  25226. [
  25227. {
  25228. name: "Normal",
  25229. height: math.unit(5 + 10 / 12, "feet"),
  25230. default: true
  25231. },
  25232. ]
  25233. ))
  25234. characterMakers.push(() => makeCharacter(
  25235. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25236. {
  25237. front: {
  25238. height: math.unit(5 + 8 / 12, "feet"),
  25239. weight: math.unit(139, "lb"),
  25240. name: "Front",
  25241. image: {
  25242. source: "./media/characters/risa/front.svg",
  25243. extra: 270 / 260,
  25244. bottom: 11.2 / 282
  25245. }
  25246. },
  25247. back: {
  25248. height: math.unit(5 + 8 / 12, "feet"),
  25249. weight: math.unit(139, "lb"),
  25250. name: "Back",
  25251. image: {
  25252. source: "./media/characters/risa/back.svg",
  25253. extra: 264 / 255,
  25254. bottom: 4 / 268
  25255. }
  25256. },
  25257. },
  25258. [
  25259. {
  25260. name: "Normal",
  25261. height: math.unit(5 + 8 / 12, "feet"),
  25262. default: true
  25263. },
  25264. ]
  25265. ))
  25266. characterMakers.push(() => makeCharacter(
  25267. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25268. {
  25269. front: {
  25270. height: math.unit(2 + 11 / 12, "feet"),
  25271. weight: math.unit(30, "lb"),
  25272. name: "Front",
  25273. image: {
  25274. source: "./media/characters/weatley/front.svg",
  25275. bottom: 10.7 / 414,
  25276. extra: 403.5 / 362
  25277. }
  25278. },
  25279. back: {
  25280. height: math.unit(2 + 11 / 12, "feet"),
  25281. weight: math.unit(30, "lb"),
  25282. name: "Back",
  25283. image: {
  25284. source: "./media/characters/weatley/back.svg",
  25285. bottom: 10.7 / 414,
  25286. extra: 403.5 / 362
  25287. }
  25288. },
  25289. },
  25290. [
  25291. {
  25292. name: "Normal",
  25293. height: math.unit(2 + 11 / 12, "feet"),
  25294. default: true
  25295. },
  25296. ]
  25297. ))
  25298. characterMakers.push(() => makeCharacter(
  25299. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25300. {
  25301. front: {
  25302. height: math.unit(5 + 2 / 12, "feet"),
  25303. weight: math.unit(50, "kg"),
  25304. name: "Front",
  25305. image: {
  25306. source: "./media/characters/mercury-crescent/front.svg",
  25307. extra: 1088 / 1033,
  25308. bottom: 18.9 / 1109
  25309. }
  25310. },
  25311. },
  25312. [
  25313. {
  25314. name: "Normal",
  25315. height: math.unit(5 + 2 / 12, "feet"),
  25316. default: true
  25317. },
  25318. ]
  25319. ))
  25320. characterMakers.push(() => makeCharacter(
  25321. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25322. {
  25323. front: {
  25324. height: math.unit(2, "feet"),
  25325. weight: math.unit(15, "kg"),
  25326. name: "Front",
  25327. image: {
  25328. source: "./media/characters/diamond-jones/front.svg",
  25329. bottom: 16 / 568
  25330. }
  25331. },
  25332. },
  25333. [
  25334. {
  25335. name: "Normal",
  25336. height: math.unit(2, "feet"),
  25337. default: true
  25338. },
  25339. ]
  25340. ))
  25341. characterMakers.push(() => makeCharacter(
  25342. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25343. {
  25344. front: {
  25345. height: math.unit(3, "feet"),
  25346. weight: math.unit(30, "kg"),
  25347. name: "Front",
  25348. image: {
  25349. source: "./media/characters/sweet-bit/front.svg",
  25350. extra: 675 / 567,
  25351. bottom: 27.7 / 703
  25352. }
  25353. },
  25354. },
  25355. [
  25356. {
  25357. name: "Normal",
  25358. height: math.unit(3, "feet"),
  25359. default: true
  25360. },
  25361. ]
  25362. ))
  25363. characterMakers.push(() => makeCharacter(
  25364. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25365. {
  25366. side: {
  25367. height: math.unit(9.178, "feet"),
  25368. weight: math.unit(500, "lb"),
  25369. name: "Side",
  25370. image: {
  25371. source: "./media/characters/umbrazen/side.svg",
  25372. extra: 1730 / 1473,
  25373. bottom: 34.6 / 1765
  25374. }
  25375. },
  25376. },
  25377. [
  25378. {
  25379. name: "Normal",
  25380. height: math.unit(9.178, "feet"),
  25381. default: true
  25382. },
  25383. ]
  25384. ))
  25385. characterMakers.push(() => makeCharacter(
  25386. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25387. {
  25388. front: {
  25389. height: math.unit(10, "feet"),
  25390. weight: math.unit(750, "lb"),
  25391. name: "Front",
  25392. image: {
  25393. source: "./media/characters/arlist/front.svg",
  25394. extra: 961 / 778,
  25395. bottom: 6.2 / 986
  25396. }
  25397. },
  25398. },
  25399. [
  25400. {
  25401. name: "Normal",
  25402. height: math.unit(10, "feet"),
  25403. default: true
  25404. },
  25405. ]
  25406. ))
  25407. characterMakers.push(() => makeCharacter(
  25408. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25409. {
  25410. front: {
  25411. height: math.unit(5 + 1 / 12, "feet"),
  25412. weight: math.unit(110, "lb"),
  25413. name: "Front",
  25414. image: {
  25415. source: "./media/characters/aradel/front.svg",
  25416. extra: 324 / 303,
  25417. bottom: 3.6 / 329.4
  25418. }
  25419. },
  25420. },
  25421. [
  25422. {
  25423. name: "Normal",
  25424. height: math.unit(5 + 1 / 12, "feet"),
  25425. default: true
  25426. },
  25427. ]
  25428. ))
  25429. characterMakers.push(() => makeCharacter(
  25430. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25431. {
  25432. front: {
  25433. height: math.unit(3 + 8 / 12, "feet"),
  25434. weight: math.unit(50, "lb"),
  25435. name: "Front",
  25436. image: {
  25437. source: "./media/characters/serryn/front.svg",
  25438. extra: 1792 / 1656,
  25439. bottom: 43.5 / 1840
  25440. }
  25441. },
  25442. },
  25443. [
  25444. {
  25445. name: "Normal",
  25446. height: math.unit(3 + 8 / 12, "feet"),
  25447. default: true
  25448. },
  25449. ]
  25450. ))
  25451. characterMakers.push(() => makeCharacter(
  25452. { name: "Xavier Thyme" },
  25453. {
  25454. front: {
  25455. height: math.unit(7 + 10 / 12, "feet"),
  25456. weight: math.unit(255, "lb"),
  25457. name: "Front",
  25458. image: {
  25459. source: "./media/characters/xavier-thyme/front.svg",
  25460. extra: 3733 / 3642,
  25461. bottom: 131 / 3869
  25462. }
  25463. },
  25464. frontRaven: {
  25465. height: math.unit(7 + 10 / 12, "feet"),
  25466. weight: math.unit(255, "lb"),
  25467. name: "Front (Raven)",
  25468. image: {
  25469. source: "./media/characters/xavier-thyme/front-raven.svg",
  25470. extra: 4385 / 3642,
  25471. bottom: 131 / 4517
  25472. }
  25473. },
  25474. },
  25475. [
  25476. {
  25477. name: "Normal",
  25478. height: math.unit(7 + 10 / 12, "feet"),
  25479. default: true
  25480. },
  25481. ]
  25482. ))
  25483. characterMakers.push(() => makeCharacter(
  25484. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25485. {
  25486. front: {
  25487. height: math.unit(1.6, "m"),
  25488. weight: math.unit(50, "kg"),
  25489. name: "Front",
  25490. image: {
  25491. source: "./media/characters/kiki/front.svg",
  25492. extra: 4682 / 3610,
  25493. bottom: 115 / 4777
  25494. }
  25495. },
  25496. },
  25497. [
  25498. {
  25499. name: "Normal",
  25500. height: math.unit(1.6, "meters"),
  25501. default: true
  25502. },
  25503. ]
  25504. ))
  25505. characterMakers.push(() => makeCharacter(
  25506. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25507. {
  25508. front: {
  25509. height: math.unit(50, "m"),
  25510. weight: math.unit(500, "tonnes"),
  25511. name: "Front",
  25512. image: {
  25513. source: "./media/characters/ryoko/front.svg",
  25514. extra: 4632 / 3926,
  25515. bottom: 193 / 4823
  25516. }
  25517. },
  25518. },
  25519. [
  25520. {
  25521. name: "Normal",
  25522. height: math.unit(50, "meters"),
  25523. default: true
  25524. },
  25525. ]
  25526. ))
  25527. characterMakers.push(() => makeCharacter(
  25528. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25529. {
  25530. front: {
  25531. height: math.unit(30, "m"),
  25532. weight: math.unit(22, "tonnes"),
  25533. name: "Front",
  25534. image: {
  25535. source: "./media/characters/elio/front.svg",
  25536. extra: 4582 / 3720,
  25537. bottom: 236 / 4828
  25538. }
  25539. },
  25540. },
  25541. [
  25542. {
  25543. name: "Normal",
  25544. height: math.unit(30, "meters"),
  25545. default: true
  25546. },
  25547. ]
  25548. ))
  25549. characterMakers.push(() => makeCharacter(
  25550. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25551. {
  25552. front: {
  25553. height: math.unit(6 + 3 / 12, "feet"),
  25554. weight: math.unit(120, "lb"),
  25555. name: "Front",
  25556. image: {
  25557. source: "./media/characters/azura/front.svg",
  25558. extra: 1149 / 1135,
  25559. bottom: 45 / 1194
  25560. }
  25561. },
  25562. frontClothed: {
  25563. height: math.unit(6 + 3 / 12, "feet"),
  25564. weight: math.unit(120, "lb"),
  25565. name: "Front (Clothed)",
  25566. image: {
  25567. source: "./media/characters/azura/front-clothed.svg",
  25568. extra: 1149 / 1135,
  25569. bottom: 45 / 1194
  25570. }
  25571. },
  25572. },
  25573. [
  25574. {
  25575. name: "Normal",
  25576. height: math.unit(6 + 3 / 12, "feet"),
  25577. default: true
  25578. },
  25579. {
  25580. name: "Macro",
  25581. height: math.unit(20 + 6 / 12, "feet")
  25582. },
  25583. {
  25584. name: "Megamacro",
  25585. height: math.unit(12, "miles")
  25586. },
  25587. {
  25588. name: "Gigamacro",
  25589. height: math.unit(10000, "miles")
  25590. },
  25591. {
  25592. name: "Teramacro",
  25593. height: math.unit(900000, "miles")
  25594. },
  25595. ]
  25596. ))
  25597. characterMakers.push(() => makeCharacter(
  25598. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25599. {
  25600. front: {
  25601. height: math.unit(12, "feet"),
  25602. weight: math.unit(1, "ton"),
  25603. capacity: math.unit(660000, "gallons"),
  25604. name: "Front",
  25605. image: {
  25606. source: "./media/characters/zeus/front.svg",
  25607. extra: 5005 / 4717,
  25608. bottom: 363 / 5388
  25609. }
  25610. },
  25611. },
  25612. [
  25613. {
  25614. name: "Normal",
  25615. height: math.unit(12, "feet")
  25616. },
  25617. {
  25618. name: "Preferred Size",
  25619. height: math.unit(0.5, "miles"),
  25620. default: true
  25621. },
  25622. {
  25623. name: "Giga Horse",
  25624. height: math.unit(300, "miles")
  25625. },
  25626. {
  25627. name: "Riding Planets",
  25628. height: math.unit(30, "megameters")
  25629. },
  25630. {
  25631. name: "Cosmic Giant",
  25632. height: math.unit(3, "zettameters")
  25633. },
  25634. {
  25635. name: "Breeding God",
  25636. height: math.unit(9.92e22, "yottameters")
  25637. },
  25638. ]
  25639. ))
  25640. characterMakers.push(() => makeCharacter(
  25641. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25642. {
  25643. side: {
  25644. height: math.unit(9, "feet"),
  25645. weight: math.unit(1500, "kg"),
  25646. name: "Side",
  25647. image: {
  25648. source: "./media/characters/fang/side.svg",
  25649. extra: 924 / 866,
  25650. bottom: 47.5 / 972.3
  25651. }
  25652. },
  25653. },
  25654. [
  25655. {
  25656. name: "Normal",
  25657. height: math.unit(9, "feet"),
  25658. default: true
  25659. },
  25660. {
  25661. name: "Macro",
  25662. height: math.unit(75 + 6 / 12, "feet")
  25663. },
  25664. {
  25665. name: "Teramacro",
  25666. height: math.unit(50000, "miles")
  25667. },
  25668. ]
  25669. ))
  25670. characterMakers.push(() => makeCharacter(
  25671. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25672. {
  25673. front: {
  25674. height: math.unit(10, "feet"),
  25675. weight: math.unit(2, "tons"),
  25676. name: "Front",
  25677. image: {
  25678. source: "./media/characters/rekhit/front.svg",
  25679. extra: 2796 / 2590,
  25680. bottom: 225 / 3022
  25681. }
  25682. },
  25683. },
  25684. [
  25685. {
  25686. name: "Normal",
  25687. height: math.unit(10, "feet"),
  25688. default: true
  25689. },
  25690. {
  25691. name: "Macro",
  25692. height: math.unit(500, "feet")
  25693. },
  25694. ]
  25695. ))
  25696. characterMakers.push(() => makeCharacter(
  25697. { name: "Dahlia Verrick" },
  25698. {
  25699. front: {
  25700. height: math.unit(7 + 6.451 / 12, "feet"),
  25701. weight: math.unit(310, "lb"),
  25702. name: "Front",
  25703. image: {
  25704. source: "./media/characters/dahlia-verrick/front.svg",
  25705. extra: 1488 / 1365,
  25706. bottom: 6.2 / 1495
  25707. }
  25708. },
  25709. back: {
  25710. height: math.unit(7 + 6.451 / 12, "feet"),
  25711. weight: math.unit(310, "lb"),
  25712. name: "Back",
  25713. image: {
  25714. source: "./media/characters/dahlia-verrick/back.svg",
  25715. extra: 1472 / 1351,
  25716. bottom: 5.28 / 1477
  25717. }
  25718. },
  25719. frontBusiness: {
  25720. height: math.unit(7 + 6.451 / 12, "feet"),
  25721. weight: math.unit(200, "lb"),
  25722. name: "Front (Business)",
  25723. image: {
  25724. source: "./media/characters/dahlia-verrick/front-business.svg",
  25725. extra: 1478 / 1381,
  25726. bottom: 5.5 / 1484
  25727. }
  25728. },
  25729. frontCasual: {
  25730. height: math.unit(7 + 6.451 / 12, "feet"),
  25731. weight: math.unit(200, "lb"),
  25732. name: "Front (Casual)",
  25733. image: {
  25734. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25735. extra: 1478 / 1381,
  25736. bottom: 5.5 / 1484
  25737. }
  25738. },
  25739. },
  25740. [
  25741. {
  25742. name: "Travel-Sized",
  25743. height: math.unit(7.45, "inches")
  25744. },
  25745. {
  25746. name: "Normal",
  25747. height: math.unit(7 + 6.451 / 12, "feet"),
  25748. default: true
  25749. },
  25750. {
  25751. name: "Hitting the Town",
  25752. height: math.unit(37 + 8 / 12, "feet")
  25753. },
  25754. {
  25755. name: "Stomp in the Suburbs",
  25756. height: math.unit(964 + 9.728 / 12, "feet")
  25757. },
  25758. {
  25759. name: "Sit on the City",
  25760. height: math.unit(61747 + 10.592 / 12, "feet")
  25761. },
  25762. {
  25763. name: "Glomp the Globe",
  25764. height: math.unit(252919327 + 4.832 / 12, "feet")
  25765. },
  25766. ]
  25767. ))
  25768. characterMakers.push(() => makeCharacter(
  25769. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25770. {
  25771. front: {
  25772. height: math.unit(6 + 4 / 12, "feet"),
  25773. weight: math.unit(320, "lb"),
  25774. name: "Front",
  25775. image: {
  25776. source: "./media/characters/balina-mahigan/front.svg",
  25777. extra: 447 / 428,
  25778. bottom: 18 / 466
  25779. }
  25780. },
  25781. back: {
  25782. height: math.unit(6 + 4 / 12, "feet"),
  25783. weight: math.unit(320, "lb"),
  25784. name: "Back",
  25785. image: {
  25786. source: "./media/characters/balina-mahigan/back.svg",
  25787. extra: 445 / 428,
  25788. bottom: 4.07 / 448
  25789. }
  25790. },
  25791. arm: {
  25792. height: math.unit(1.88, "feet"),
  25793. name: "Arm",
  25794. image: {
  25795. source: "./media/characters/balina-mahigan/arm.svg"
  25796. }
  25797. },
  25798. backPort: {
  25799. height: math.unit(0.685, "feet"),
  25800. name: "Back Port",
  25801. image: {
  25802. source: "./media/characters/balina-mahigan/back-port.svg"
  25803. }
  25804. },
  25805. hoofpaw: {
  25806. height: math.unit(1.41, "feet"),
  25807. name: "Hoofpaw",
  25808. image: {
  25809. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25810. }
  25811. },
  25812. leftHandBack: {
  25813. height: math.unit(0.938, "feet"),
  25814. name: "Left Hand (Back)",
  25815. image: {
  25816. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25817. }
  25818. },
  25819. leftHandFront: {
  25820. height: math.unit(0.938, "feet"),
  25821. name: "Left Hand (Front)",
  25822. image: {
  25823. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25824. }
  25825. },
  25826. rightHandBack: {
  25827. height: math.unit(0.95, "feet"),
  25828. name: "Right Hand (Back)",
  25829. image: {
  25830. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25831. }
  25832. },
  25833. rightHandFront: {
  25834. height: math.unit(0.95, "feet"),
  25835. name: "Right Hand (Front)",
  25836. image: {
  25837. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25838. }
  25839. },
  25840. },
  25841. [
  25842. {
  25843. name: "Normal",
  25844. height: math.unit(6 + 4 / 12, "feet"),
  25845. default: true
  25846. },
  25847. ]
  25848. ))
  25849. characterMakers.push(() => makeCharacter(
  25850. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25851. {
  25852. front: {
  25853. height: math.unit(6, "feet"),
  25854. weight: math.unit(320, "lb"),
  25855. name: "Front",
  25856. image: {
  25857. source: "./media/characters/balina-mejeri/front.svg",
  25858. extra: 517 / 488,
  25859. bottom: 44.2 / 561
  25860. }
  25861. },
  25862. },
  25863. [
  25864. {
  25865. name: "Normal",
  25866. height: math.unit(6 + 4 / 12, "feet")
  25867. },
  25868. {
  25869. name: "Business",
  25870. height: math.unit(155, "feet"),
  25871. default: true
  25872. },
  25873. ]
  25874. ))
  25875. characterMakers.push(() => makeCharacter(
  25876. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25877. {
  25878. kneeling: {
  25879. height: math.unit(6 + 4 / 12, "feet"),
  25880. weight: math.unit(300 * 20, "lb"),
  25881. name: "Kneeling",
  25882. image: {
  25883. source: "./media/characters/balbarian/kneeling.svg",
  25884. extra: 922 / 862,
  25885. bottom: 42.4 / 965
  25886. }
  25887. },
  25888. },
  25889. [
  25890. {
  25891. name: "Normal",
  25892. height: math.unit(6 + 4 / 12, "feet")
  25893. },
  25894. {
  25895. name: "Treasured",
  25896. height: math.unit(18 + 9 / 12, "feet"),
  25897. default: true
  25898. },
  25899. {
  25900. name: "Macro",
  25901. height: math.unit(900, "feet")
  25902. },
  25903. ]
  25904. ))
  25905. characterMakers.push(() => makeCharacter(
  25906. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25907. {
  25908. front: {
  25909. height: math.unit(6 + 4 / 12, "feet"),
  25910. weight: math.unit(325, "lb"),
  25911. name: "Front",
  25912. image: {
  25913. source: "./media/characters/balina-amarini/front.svg",
  25914. extra: 415 / 403,
  25915. bottom: 19 / 433.4
  25916. }
  25917. },
  25918. back: {
  25919. height: math.unit(6 + 4 / 12, "feet"),
  25920. weight: math.unit(325, "lb"),
  25921. name: "Back",
  25922. image: {
  25923. source: "./media/characters/balina-amarini/back.svg",
  25924. extra: 415 / 403,
  25925. bottom: 13.5 / 432
  25926. }
  25927. },
  25928. overdrive: {
  25929. height: math.unit(6 + 4 / 12, "feet"),
  25930. weight: math.unit(400, "lb"),
  25931. name: "Overdrive",
  25932. image: {
  25933. source: "./media/characters/balina-amarini/overdrive.svg",
  25934. extra: 269 / 259,
  25935. bottom: 12 / 282
  25936. }
  25937. },
  25938. },
  25939. [
  25940. {
  25941. name: "Boom",
  25942. height: math.unit(9 + 10 / 12, "feet"),
  25943. default: true
  25944. },
  25945. {
  25946. name: "Macro",
  25947. height: math.unit(280, "feet")
  25948. },
  25949. ]
  25950. ))
  25951. characterMakers.push(() => makeCharacter(
  25952. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25953. {
  25954. goddess: {
  25955. height: math.unit(600, "feet"),
  25956. weight: math.unit(2000000, "tons"),
  25957. name: "Goddess",
  25958. image: {
  25959. source: "./media/characters/lady-kubwa/goddess.svg",
  25960. extra: 1240.5 / 1223,
  25961. bottom: 22 / 1263
  25962. }
  25963. },
  25964. goddesser: {
  25965. height: math.unit(900, "feet"),
  25966. weight: math.unit(20000000, "lb"),
  25967. name: "Goddess-er",
  25968. image: {
  25969. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25970. extra: 899 / 888,
  25971. bottom: 12.6 / 912
  25972. }
  25973. },
  25974. },
  25975. [
  25976. {
  25977. name: "Macro",
  25978. height: math.unit(600, "feet"),
  25979. default: true
  25980. },
  25981. {
  25982. name: "Megamacro",
  25983. height: math.unit(250, "miles")
  25984. },
  25985. ]
  25986. ))
  25987. characterMakers.push(() => makeCharacter(
  25988. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25989. {
  25990. front: {
  25991. height: math.unit(7 + 7 / 12, "feet"),
  25992. weight: math.unit(250, "lb"),
  25993. name: "Front",
  25994. image: {
  25995. source: "./media/characters/tala-grovehorn/front.svg",
  25996. extra: 2636 / 2525,
  25997. bottom: 147 / 2781
  25998. }
  25999. },
  26000. back: {
  26001. height: math.unit(7 + 7 / 12, "feet"),
  26002. weight: math.unit(250, "lb"),
  26003. name: "Back",
  26004. image: {
  26005. source: "./media/characters/tala-grovehorn/back.svg",
  26006. extra: 2635 / 2539,
  26007. bottom: 100 / 2732.8
  26008. }
  26009. },
  26010. mouth: {
  26011. height: math.unit(1.15, "feet"),
  26012. name: "Mouth",
  26013. image: {
  26014. source: "./media/characters/tala-grovehorn/mouth.svg"
  26015. }
  26016. },
  26017. dick: {
  26018. height: math.unit(2.36, "feet"),
  26019. name: "Dick",
  26020. image: {
  26021. source: "./media/characters/tala-grovehorn/dick.svg"
  26022. }
  26023. },
  26024. slit: {
  26025. height: math.unit(0.61, "feet"),
  26026. name: "Slit",
  26027. image: {
  26028. source: "./media/characters/tala-grovehorn/slit.svg"
  26029. }
  26030. },
  26031. },
  26032. [
  26033. ]
  26034. ))
  26035. characterMakers.push(() => makeCharacter(
  26036. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26037. {
  26038. front: {
  26039. height: math.unit(7 + 7 / 12, "feet"),
  26040. weight: math.unit(225, "lb"),
  26041. name: "Front",
  26042. image: {
  26043. source: "./media/characters/epona/front.svg",
  26044. extra: 2445 / 2290,
  26045. bottom: 251 / 2696
  26046. }
  26047. },
  26048. back: {
  26049. height: math.unit(7 + 7 / 12, "feet"),
  26050. weight: math.unit(225, "lb"),
  26051. name: "Back",
  26052. image: {
  26053. source: "./media/characters/epona/back.svg",
  26054. extra: 2546 / 2408,
  26055. bottom: 44 / 2589
  26056. }
  26057. },
  26058. genitals: {
  26059. height: math.unit(1.5, "feet"),
  26060. name: "Genitals",
  26061. image: {
  26062. source: "./media/characters/epona/genitals.svg"
  26063. }
  26064. },
  26065. },
  26066. [
  26067. {
  26068. name: "Normal",
  26069. height: math.unit(7 + 7 / 12, "feet"),
  26070. default: true
  26071. },
  26072. ]
  26073. ))
  26074. characterMakers.push(() => makeCharacter(
  26075. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26076. {
  26077. front: {
  26078. height: math.unit(7, "feet"),
  26079. weight: math.unit(518, "lb"),
  26080. name: "Front",
  26081. image: {
  26082. source: "./media/characters/avia-bloodbourn/front.svg",
  26083. extra: 1466 / 1350,
  26084. bottom: 65 / 1527
  26085. }
  26086. },
  26087. },
  26088. [
  26089. ]
  26090. ))
  26091. characterMakers.push(() => makeCharacter(
  26092. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26093. {
  26094. front: {
  26095. height: math.unit(9.35, "feet"),
  26096. weight: math.unit(600, "lb"),
  26097. name: "Front",
  26098. image: {
  26099. source: "./media/characters/amera/front.svg",
  26100. extra: 891 / 818,
  26101. bottom: 30 / 922.7
  26102. }
  26103. },
  26104. back: {
  26105. height: math.unit(9.35, "feet"),
  26106. weight: math.unit(600, "lb"),
  26107. name: "Back",
  26108. image: {
  26109. source: "./media/characters/amera/back.svg",
  26110. extra: 876 / 824,
  26111. bottom: 6.8 / 884
  26112. }
  26113. },
  26114. dick: {
  26115. height: math.unit(2.14, "feet"),
  26116. name: "Dick",
  26117. image: {
  26118. source: "./media/characters/amera/dick.svg"
  26119. }
  26120. },
  26121. },
  26122. [
  26123. {
  26124. name: "Normal",
  26125. height: math.unit(9.35, "feet"),
  26126. default: true
  26127. },
  26128. ]
  26129. ))
  26130. characterMakers.push(() => makeCharacter(
  26131. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26132. {
  26133. kneeling: {
  26134. height: math.unit(3 + 4 / 12, "feet"),
  26135. weight: math.unit(90, "lb"),
  26136. name: "Kneeling",
  26137. image: {
  26138. source: "./media/characters/rosewen/kneeling.svg",
  26139. extra: 1835 / 1571,
  26140. bottom: 27.7 / 1862
  26141. }
  26142. },
  26143. },
  26144. [
  26145. {
  26146. name: "Normal",
  26147. height: math.unit(3 + 4 / 12, "feet"),
  26148. default: true
  26149. },
  26150. ]
  26151. ))
  26152. characterMakers.push(() => makeCharacter(
  26153. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26154. {
  26155. front: {
  26156. height: math.unit(5 + 10 / 12, "feet"),
  26157. weight: math.unit(200, "lb"),
  26158. name: "Front",
  26159. image: {
  26160. source: "./media/characters/sabah/front.svg",
  26161. extra: 849 / 763,
  26162. bottom: 33.9 / 881
  26163. }
  26164. },
  26165. },
  26166. [
  26167. {
  26168. name: "Normal",
  26169. height: math.unit(5 + 10 / 12, "feet"),
  26170. default: true
  26171. },
  26172. ]
  26173. ))
  26174. characterMakers.push(() => makeCharacter(
  26175. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26176. {
  26177. front: {
  26178. height: math.unit(3 + 5 / 12, "feet"),
  26179. weight: math.unit(40, "kg"),
  26180. name: "Front",
  26181. image: {
  26182. source: "./media/characters/purple-flame/front.svg",
  26183. extra: 1577 / 1412,
  26184. bottom: 97 / 1694
  26185. }
  26186. },
  26187. frontDressed: {
  26188. height: math.unit(3 + 5 / 12, "feet"),
  26189. weight: math.unit(40, "kg"),
  26190. name: "Front (Dressed)",
  26191. image: {
  26192. source: "./media/characters/purple-flame/front-dressed.svg",
  26193. extra: 1577 / 1412,
  26194. bottom: 97 / 1694
  26195. }
  26196. },
  26197. headphones: {
  26198. height: math.unit(0.85, "feet"),
  26199. name: "Headphones",
  26200. image: {
  26201. source: "./media/characters/purple-flame/headphones.svg"
  26202. }
  26203. },
  26204. },
  26205. [
  26206. {
  26207. name: "Really Small",
  26208. height: math.unit(5, "cm")
  26209. },
  26210. {
  26211. name: "Micro",
  26212. height: math.unit(1 + 5 / 12, "feet")
  26213. },
  26214. {
  26215. name: "Normal",
  26216. height: math.unit(3 + 5 / 12, "feet"),
  26217. default: true
  26218. },
  26219. {
  26220. name: "Minimacro",
  26221. height: math.unit(125, "feet")
  26222. },
  26223. {
  26224. name: "Macro",
  26225. height: math.unit(0.5, "miles")
  26226. },
  26227. {
  26228. name: "Megamacro",
  26229. height: math.unit(50, "miles")
  26230. },
  26231. {
  26232. name: "Gigantic",
  26233. height: math.unit(750, "miles")
  26234. },
  26235. {
  26236. name: "Planetary",
  26237. height: math.unit(15000, "miles")
  26238. },
  26239. ]
  26240. ))
  26241. characterMakers.push(() => makeCharacter(
  26242. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26243. {
  26244. front: {
  26245. height: math.unit(14, "feet"),
  26246. weight: math.unit(959, "lb"),
  26247. name: "Front",
  26248. image: {
  26249. source: "./media/characters/arsenal/front.svg",
  26250. extra: 2357 / 2157,
  26251. bottom: 93 / 2458
  26252. }
  26253. },
  26254. },
  26255. [
  26256. {
  26257. name: "Normal",
  26258. height: math.unit(14, "feet"),
  26259. default: true
  26260. },
  26261. ]
  26262. ))
  26263. characterMakers.push(() => makeCharacter(
  26264. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26265. {
  26266. front: {
  26267. height: math.unit(6, "feet"),
  26268. weight: math.unit(150, "lb"),
  26269. name: "Front",
  26270. image: {
  26271. source: "./media/characters/adira/front.svg",
  26272. extra: 1078 / 1029,
  26273. bottom: 87 / 1166
  26274. }
  26275. },
  26276. },
  26277. [
  26278. {
  26279. name: "Micro",
  26280. height: math.unit(4, "inches"),
  26281. default: true
  26282. },
  26283. {
  26284. name: "Macro",
  26285. height: math.unit(50, "feet")
  26286. },
  26287. ]
  26288. ))
  26289. characterMakers.push(() => makeCharacter(
  26290. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26291. {
  26292. front: {
  26293. height: math.unit(16, "feet"),
  26294. weight: math.unit(1000, "lb"),
  26295. name: "Front",
  26296. image: {
  26297. source: "./media/characters/grim/front.svg",
  26298. extra: 622 / 614,
  26299. bottom: 18.1 / 642
  26300. }
  26301. },
  26302. back: {
  26303. height: math.unit(16, "feet"),
  26304. weight: math.unit(1000, "lb"),
  26305. name: "Back",
  26306. image: {
  26307. source: "./media/characters/grim/back.svg",
  26308. extra: 610.6 / 602,
  26309. bottom: 40.8 / 652
  26310. }
  26311. },
  26312. hunched: {
  26313. height: math.unit(9.75, "feet"),
  26314. weight: math.unit(1000, "lb"),
  26315. name: "Hunched",
  26316. image: {
  26317. source: "./media/characters/grim/hunched.svg",
  26318. extra: 304 / 297,
  26319. bottom: 35.4 / 394
  26320. }
  26321. },
  26322. },
  26323. [
  26324. {
  26325. name: "Normal",
  26326. height: math.unit(16, "feet"),
  26327. default: true
  26328. },
  26329. ]
  26330. ))
  26331. characterMakers.push(() => makeCharacter(
  26332. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26333. {
  26334. front: {
  26335. height: math.unit(2.3, "meters"),
  26336. weight: math.unit(300, "lb"),
  26337. name: "Front",
  26338. image: {
  26339. source: "./media/characters/sinja/front-sfw.svg",
  26340. extra: 1393 / 1294,
  26341. bottom: 70 / 1463
  26342. }
  26343. },
  26344. frontNsfw: {
  26345. height: math.unit(2.3, "meters"),
  26346. weight: math.unit(300, "lb"),
  26347. name: "Front (NSFW)",
  26348. image: {
  26349. source: "./media/characters/sinja/front-nsfw.svg",
  26350. extra: 1393 / 1294,
  26351. bottom: 70 / 1463
  26352. }
  26353. },
  26354. back: {
  26355. height: math.unit(2.3, "meters"),
  26356. weight: math.unit(300, "lb"),
  26357. name: "Back",
  26358. image: {
  26359. source: "./media/characters/sinja/back.svg",
  26360. extra: 1393 / 1294,
  26361. bottom: 70 / 1463
  26362. }
  26363. },
  26364. head: {
  26365. height: math.unit(1.771, "feet"),
  26366. name: "Head",
  26367. image: {
  26368. source: "./media/characters/sinja/head.svg"
  26369. }
  26370. },
  26371. slit: {
  26372. height: math.unit(0.8, "feet"),
  26373. name: "Slit",
  26374. image: {
  26375. source: "./media/characters/sinja/slit.svg"
  26376. }
  26377. },
  26378. },
  26379. [
  26380. {
  26381. name: "Normal",
  26382. height: math.unit(2.3, "meters")
  26383. },
  26384. {
  26385. name: "Macro",
  26386. height: math.unit(91, "meters"),
  26387. default: true
  26388. },
  26389. {
  26390. name: "Megamacro",
  26391. height: math.unit(91440, "meters")
  26392. },
  26393. {
  26394. name: "Gigamacro",
  26395. height: math.unit(60960000, "meters")
  26396. },
  26397. {
  26398. name: "Teramacro",
  26399. height: math.unit(9144000000, "meters")
  26400. },
  26401. ]
  26402. ))
  26403. characterMakers.push(() => makeCharacter(
  26404. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26405. {
  26406. front: {
  26407. height: math.unit(1.7, "meters"),
  26408. weight: math.unit(130, "lb"),
  26409. name: "Front",
  26410. image: {
  26411. source: "./media/characters/kyu/front.svg",
  26412. extra: 415 / 395,
  26413. bottom: 5 / 420
  26414. }
  26415. },
  26416. head: {
  26417. height: math.unit(1.75, "feet"),
  26418. name: "Head",
  26419. image: {
  26420. source: "./media/characters/kyu/head.svg"
  26421. }
  26422. },
  26423. foot: {
  26424. height: math.unit(0.81, "feet"),
  26425. name: "Foot",
  26426. image: {
  26427. source: "./media/characters/kyu/foot.svg"
  26428. }
  26429. },
  26430. },
  26431. [
  26432. {
  26433. name: "Normal",
  26434. height: math.unit(1.7, "meters")
  26435. },
  26436. {
  26437. name: "Macro",
  26438. height: math.unit(131, "feet"),
  26439. default: true
  26440. },
  26441. {
  26442. name: "Megamacro",
  26443. height: math.unit(91440, "meters")
  26444. },
  26445. {
  26446. name: "Gigamacro",
  26447. height: math.unit(60960000, "meters")
  26448. },
  26449. {
  26450. name: "Teramacro",
  26451. height: math.unit(9144000000, "meters")
  26452. },
  26453. ]
  26454. ))
  26455. characterMakers.push(() => makeCharacter(
  26456. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26457. {
  26458. front: {
  26459. height: math.unit(7 + 1 / 12, "feet"),
  26460. weight: math.unit(250, "lb"),
  26461. name: "Front",
  26462. image: {
  26463. source: "./media/characters/joey/front.svg",
  26464. extra: 1791 / 1537,
  26465. bottom: 28 / 1816
  26466. }
  26467. },
  26468. },
  26469. [
  26470. {
  26471. name: "Micro",
  26472. height: math.unit(3, "inches")
  26473. },
  26474. {
  26475. name: "Normal",
  26476. height: math.unit(7 + 1 / 12, "feet"),
  26477. default: true
  26478. },
  26479. ]
  26480. ))
  26481. characterMakers.push(() => makeCharacter(
  26482. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26483. {
  26484. front: {
  26485. height: math.unit(165, "cm"),
  26486. weight: math.unit(140, "lb"),
  26487. name: "Front",
  26488. image: {
  26489. source: "./media/characters/sam-evans/front.svg",
  26490. extra: 3417 / 3230,
  26491. bottom: 41.3 / 3417
  26492. }
  26493. },
  26494. frontSixTails: {
  26495. height: math.unit(165, "cm"),
  26496. weight: math.unit(140, "lb"),
  26497. name: "Front-six-tails",
  26498. image: {
  26499. source: "./media/characters/sam-evans/front-six-tails.svg",
  26500. extra: 3417 / 3230,
  26501. bottom: 41.3 / 3417
  26502. }
  26503. },
  26504. back: {
  26505. height: math.unit(165, "cm"),
  26506. weight: math.unit(140, "lb"),
  26507. name: "Back",
  26508. image: {
  26509. source: "./media/characters/sam-evans/back.svg",
  26510. extra: 3227 / 3032,
  26511. bottom: 6.8 / 3234
  26512. }
  26513. },
  26514. face: {
  26515. height: math.unit(0.68, "feet"),
  26516. name: "Face",
  26517. image: {
  26518. source: "./media/characters/sam-evans/face.svg"
  26519. }
  26520. },
  26521. },
  26522. [
  26523. {
  26524. name: "Normal",
  26525. height: math.unit(165, "cm"),
  26526. default: true
  26527. },
  26528. {
  26529. name: "Macro",
  26530. height: math.unit(100, "meters")
  26531. },
  26532. {
  26533. name: "Macro+",
  26534. height: math.unit(800, "meters")
  26535. },
  26536. {
  26537. name: "Macro++",
  26538. height: math.unit(3, "km")
  26539. },
  26540. {
  26541. name: "Macro+++",
  26542. height: math.unit(30, "km")
  26543. },
  26544. ]
  26545. ))
  26546. characterMakers.push(() => makeCharacter(
  26547. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26548. {
  26549. front: {
  26550. height: math.unit(10, "feet"),
  26551. weight: math.unit(750, "lb"),
  26552. name: "Front",
  26553. image: {
  26554. source: "./media/characters/juliet-a/front.svg",
  26555. extra: 1766 / 1720,
  26556. bottom: 43 / 1809
  26557. }
  26558. },
  26559. back: {
  26560. height: math.unit(10, "feet"),
  26561. weight: math.unit(750, "lb"),
  26562. name: "Back",
  26563. image: {
  26564. source: "./media/characters/juliet-a/back.svg",
  26565. extra: 1781 / 1734,
  26566. bottom: 35 / 1810,
  26567. }
  26568. },
  26569. },
  26570. [
  26571. {
  26572. name: "Normal",
  26573. height: math.unit(10, "feet"),
  26574. default: true
  26575. },
  26576. {
  26577. name: "Dragon Form",
  26578. height: math.unit(250, "feet")
  26579. },
  26580. {
  26581. name: "Macro",
  26582. height: math.unit(1000, "feet")
  26583. },
  26584. {
  26585. name: "Megamacro",
  26586. height: math.unit(10000, "feet")
  26587. }
  26588. ]
  26589. ))
  26590. characterMakers.push(() => makeCharacter(
  26591. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26592. {
  26593. regular: {
  26594. height: math.unit(7 + 3 / 12, "feet"),
  26595. weight: math.unit(260, "lb"),
  26596. name: "Regular",
  26597. image: {
  26598. source: "./media/characters/wild/regular.svg",
  26599. extra: 97.45 / 92,
  26600. bottom: 6.8 / 104.3
  26601. }
  26602. },
  26603. biggums: {
  26604. height: math.unit(8 + 6 / 12, "feet"),
  26605. weight: math.unit(425, "lb"),
  26606. name: "Biggums",
  26607. image: {
  26608. source: "./media/characters/wild/biggums.svg",
  26609. extra: 97.45 / 92,
  26610. bottom: 7.5 / 132.34
  26611. }
  26612. },
  26613. mawRegular: {
  26614. height: math.unit(1.24, "feet"),
  26615. name: "Maw (Regular)",
  26616. image: {
  26617. source: "./media/characters/wild/maw.svg"
  26618. }
  26619. },
  26620. mawBiggums: {
  26621. height: math.unit(1.47, "feet"),
  26622. name: "Maw (Biggums)",
  26623. image: {
  26624. source: "./media/characters/wild/maw.svg"
  26625. }
  26626. },
  26627. },
  26628. [
  26629. {
  26630. name: "Normal",
  26631. height: math.unit(7 + 3 / 12, "feet"),
  26632. default: true
  26633. },
  26634. ]
  26635. ))
  26636. characterMakers.push(() => makeCharacter(
  26637. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26638. {
  26639. front: {
  26640. height: math.unit(2.5, "meters"),
  26641. weight: math.unit(200, "kg"),
  26642. name: "Front",
  26643. image: {
  26644. source: "./media/characters/vidar/front.svg",
  26645. extra: 2994 / 2795,
  26646. bottom: 56 / 3061
  26647. }
  26648. },
  26649. back: {
  26650. height: math.unit(2.5, "meters"),
  26651. weight: math.unit(200, "kg"),
  26652. name: "Back",
  26653. image: {
  26654. source: "./media/characters/vidar/back.svg",
  26655. extra: 3131 / 2928,
  26656. bottom: 13.5 / 3141.5
  26657. }
  26658. },
  26659. feral: {
  26660. height: math.unit(2.5, "meters"),
  26661. weight: math.unit(2000, "kg"),
  26662. name: "Feral",
  26663. image: {
  26664. source: "./media/characters/vidar/feral.svg",
  26665. extra: 2790 / 1765,
  26666. bottom: 6 / 2796
  26667. }
  26668. },
  26669. },
  26670. [
  26671. {
  26672. name: "Normal",
  26673. height: math.unit(2.5, "meters"),
  26674. default: true
  26675. },
  26676. {
  26677. name: "Macro",
  26678. height: math.unit(100, "meters")
  26679. },
  26680. ]
  26681. ))
  26682. characterMakers.push(() => makeCharacter(
  26683. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26684. {
  26685. front: {
  26686. height: math.unit(5 + 9 / 12, "feet"),
  26687. weight: math.unit(120, "lb"),
  26688. name: "Front",
  26689. image: {
  26690. source: "./media/characters/ash/front.svg",
  26691. extra: 2189 / 1961,
  26692. bottom: 5.2 / 2194
  26693. }
  26694. },
  26695. },
  26696. [
  26697. {
  26698. name: "Normal",
  26699. height: math.unit(5 + 9 / 12, "feet"),
  26700. default: true
  26701. },
  26702. ]
  26703. ))
  26704. characterMakers.push(() => makeCharacter(
  26705. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26706. {
  26707. front: {
  26708. height: math.unit(9, "feet"),
  26709. weight: math.unit(10000, "lb"),
  26710. name: "Front",
  26711. image: {
  26712. source: "./media/characters/gygabite/front.svg",
  26713. bottom: 31.7 / 537.8,
  26714. extra: 505 / 370
  26715. }
  26716. },
  26717. },
  26718. [
  26719. {
  26720. name: "Normal",
  26721. height: math.unit(9, "feet"),
  26722. default: true
  26723. },
  26724. ]
  26725. ))
  26726. characterMakers.push(() => makeCharacter(
  26727. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26728. {
  26729. front: {
  26730. height: math.unit(12, "feet"),
  26731. weight: math.unit(35000, "lb"),
  26732. name: "Front",
  26733. image: {
  26734. source: "./media/characters/p0tat0/front.svg",
  26735. extra: 1065 / 921,
  26736. bottom: 55.7 / 1121.25
  26737. }
  26738. },
  26739. },
  26740. [
  26741. {
  26742. name: "Normal",
  26743. height: math.unit(12, "feet"),
  26744. default: true
  26745. },
  26746. ]
  26747. ))
  26748. characterMakers.push(() => makeCharacter(
  26749. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26750. {
  26751. side: {
  26752. height: math.unit(6.5, "feet"),
  26753. weight: math.unit(800, "lb"),
  26754. name: "Side",
  26755. image: {
  26756. source: "./media/characters/dusk/side.svg",
  26757. extra: 615 / 373,
  26758. bottom: 53 / 664
  26759. }
  26760. },
  26761. sitting: {
  26762. height: math.unit(7, "feet"),
  26763. weight: math.unit(800, "lb"),
  26764. name: "Sitting",
  26765. image: {
  26766. source: "./media/characters/dusk/sitting.svg",
  26767. extra: 753 / 425,
  26768. bottom: 33 / 774
  26769. }
  26770. },
  26771. head: {
  26772. height: math.unit(6.1, "feet"),
  26773. name: "Head",
  26774. image: {
  26775. source: "./media/characters/dusk/head.svg"
  26776. }
  26777. },
  26778. },
  26779. [
  26780. {
  26781. name: "Normal",
  26782. height: math.unit(7, "feet"),
  26783. default: true
  26784. },
  26785. ]
  26786. ))
  26787. characterMakers.push(() => makeCharacter(
  26788. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26789. {
  26790. front: {
  26791. height: math.unit(15, "feet"),
  26792. weight: math.unit(7000, "lb"),
  26793. name: "Front",
  26794. image: {
  26795. source: "./media/characters/jay-direwolf/front.svg",
  26796. extra: 1810 / 1732,
  26797. bottom: 66 / 1892
  26798. }
  26799. },
  26800. },
  26801. [
  26802. {
  26803. name: "Normal",
  26804. height: math.unit(15, "feet"),
  26805. default: true
  26806. },
  26807. ]
  26808. ))
  26809. characterMakers.push(() => makeCharacter(
  26810. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26811. {
  26812. front: {
  26813. height: math.unit(4 + 9 / 12, "feet"),
  26814. weight: math.unit(130, "lb"),
  26815. name: "Front",
  26816. image: {
  26817. source: "./media/characters/anchovie/front.svg",
  26818. extra: 382 / 350,
  26819. bottom: 25 / 409
  26820. }
  26821. },
  26822. back: {
  26823. height: math.unit(4 + 9 / 12, "feet"),
  26824. weight: math.unit(130, "lb"),
  26825. name: "Back",
  26826. image: {
  26827. source: "./media/characters/anchovie/back.svg",
  26828. extra: 385 / 352,
  26829. bottom: 16.6 / 402
  26830. }
  26831. },
  26832. frontDressed: {
  26833. height: math.unit(4 + 9 / 12, "feet"),
  26834. weight: math.unit(130, "lb"),
  26835. name: "Front (Dressed)",
  26836. image: {
  26837. source: "./media/characters/anchovie/front-dressed.svg",
  26838. extra: 382 / 350,
  26839. bottom: 25 / 409
  26840. }
  26841. },
  26842. backDressed: {
  26843. height: math.unit(4 + 9 / 12, "feet"),
  26844. weight: math.unit(130, "lb"),
  26845. name: "Back (Dressed)",
  26846. image: {
  26847. source: "./media/characters/anchovie/back-dressed.svg",
  26848. extra: 385 / 352,
  26849. bottom: 16.6 / 402
  26850. }
  26851. },
  26852. },
  26853. [
  26854. {
  26855. name: "Micro",
  26856. height: math.unit(6.4, "inches")
  26857. },
  26858. {
  26859. name: "Normal",
  26860. height: math.unit(4 + 9 / 12, "feet"),
  26861. default: true
  26862. },
  26863. ]
  26864. ))
  26865. characterMakers.push(() => makeCharacter(
  26866. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26867. {
  26868. front: {
  26869. height: math.unit(2, "meters"),
  26870. weight: math.unit(180, "lb"),
  26871. name: "Front",
  26872. image: {
  26873. source: "./media/characters/acidrenamon/front.svg",
  26874. extra: 987 / 890,
  26875. bottom: 22.8 / 1009
  26876. }
  26877. },
  26878. back: {
  26879. height: math.unit(2, "meters"),
  26880. weight: math.unit(180, "lb"),
  26881. name: "Back",
  26882. image: {
  26883. source: "./media/characters/acidrenamon/back.svg",
  26884. extra: 983 / 891,
  26885. bottom: 8.4 / 992
  26886. }
  26887. },
  26888. head: {
  26889. height: math.unit(1.92, "feet"),
  26890. name: "Head",
  26891. image: {
  26892. source: "./media/characters/acidrenamon/head.svg"
  26893. }
  26894. },
  26895. rump: {
  26896. height: math.unit(1.72, "feet"),
  26897. name: "Rump",
  26898. image: {
  26899. source: "./media/characters/acidrenamon/rump.svg"
  26900. }
  26901. },
  26902. tail: {
  26903. height: math.unit(4.2, "feet"),
  26904. name: "Tail",
  26905. image: {
  26906. source: "./media/characters/acidrenamon/tail.svg"
  26907. }
  26908. },
  26909. },
  26910. [
  26911. {
  26912. name: "Normal",
  26913. height: math.unit(2, "meters"),
  26914. default: true
  26915. },
  26916. {
  26917. name: "Minimacro",
  26918. height: math.unit(7, "meters")
  26919. },
  26920. {
  26921. name: "Macro",
  26922. height: math.unit(200, "meters")
  26923. },
  26924. {
  26925. name: "Gigamacro",
  26926. height: math.unit(0.2, "earths")
  26927. },
  26928. ]
  26929. ))
  26930. characterMakers.push(() => makeCharacter(
  26931. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26932. {
  26933. front: {
  26934. height: math.unit(6, "feet"),
  26935. weight: math.unit(150, "lb"),
  26936. name: "Front",
  26937. image: {
  26938. source: "./media/characters/kenzie-lee/front.svg",
  26939. extra: 1525 / 1465,
  26940. bottom: 45 / 1570
  26941. }
  26942. },
  26943. side: {
  26944. height: math.unit(6, "feet"),
  26945. weight: math.unit(150, "lb"),
  26946. name: "Side",
  26947. image: {
  26948. source: "./media/characters/kenzie-lee/side.svg",
  26949. extra: 5505 / 5383,
  26950. bottom: 60 / 5573
  26951. }
  26952. },
  26953. paw: {
  26954. height: math.unit(0.57, "feet"),
  26955. name: "Paw",
  26956. image: {
  26957. source: "./media/characters/kenzie-lee/paw.svg"
  26958. }
  26959. },
  26960. },
  26961. [
  26962. {
  26963. name: "Normal",
  26964. height: math.unit(152, "feet"),
  26965. default: true
  26966. },
  26967. {
  26968. name: "Megamacro",
  26969. height: math.unit(7, "miles")
  26970. },
  26971. {
  26972. name: "Gigamacro",
  26973. height: math.unit(8000, "miles")
  26974. },
  26975. ]
  26976. ))
  26977. characterMakers.push(() => makeCharacter(
  26978. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26979. {
  26980. side: {
  26981. height: math.unit(6, "feet"),
  26982. weight: math.unit(150, "lb"),
  26983. name: "Side",
  26984. image: {
  26985. source: "./media/characters/withers/side.svg",
  26986. extra: 1830 / 1728,
  26987. bottom: 96 / 1927
  26988. }
  26989. },
  26990. front: {
  26991. height: math.unit(6, "feet"),
  26992. weight: math.unit(150, "lb"),
  26993. name: "Front",
  26994. image: {
  26995. source: "./media/characters/withers/front.svg",
  26996. extra: 1514 / 1438,
  26997. bottom: 118 / 1632
  26998. }
  26999. },
  27000. },
  27001. [
  27002. {
  27003. name: "Macro",
  27004. height: math.unit(168, "feet"),
  27005. default: true
  27006. },
  27007. {
  27008. name: "Megamacro",
  27009. height: math.unit(15, "miles")
  27010. }
  27011. ]
  27012. ))
  27013. characterMakers.push(() => makeCharacter(
  27014. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27015. {
  27016. front: {
  27017. height: math.unit(6 + 7 / 12, "feet"),
  27018. weight: math.unit(250, "lb"),
  27019. name: "Front",
  27020. image: {
  27021. source: "./media/characters/nemoskii/front.svg",
  27022. extra: 2270 / 1734,
  27023. bottom: 86 / 2354
  27024. }
  27025. },
  27026. back: {
  27027. height: math.unit(6 + 7 / 12, "feet"),
  27028. weight: math.unit(250, "lb"),
  27029. name: "Back",
  27030. image: {
  27031. source: "./media/characters/nemoskii/back.svg",
  27032. extra: 1845 / 1788,
  27033. bottom: 10.5 / 1852
  27034. }
  27035. },
  27036. head: {
  27037. height: math.unit(1.31, "feet"),
  27038. name: "Head",
  27039. image: {
  27040. source: "./media/characters/nemoskii/head.svg"
  27041. }
  27042. },
  27043. },
  27044. [
  27045. {
  27046. name: "Micro",
  27047. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27048. },
  27049. {
  27050. name: "Normal",
  27051. height: math.unit(6 + 7 / 12, "feet"),
  27052. default: true
  27053. },
  27054. {
  27055. name: "Macro",
  27056. height: math.unit((6 + 7 / 12) * 150, "feet")
  27057. },
  27058. {
  27059. name: "Macro+",
  27060. height: math.unit((6 + 7 / 12) * 500, "feet")
  27061. },
  27062. {
  27063. name: "Megamacro",
  27064. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27065. },
  27066. ]
  27067. ))
  27068. characterMakers.push(() => makeCharacter(
  27069. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27070. {
  27071. front: {
  27072. height: math.unit(1, "mile"),
  27073. weight: math.unit(265261.9, "lb"),
  27074. name: "Front",
  27075. image: {
  27076. source: "./media/characters/shui/front.svg",
  27077. extra: 1633 / 1564,
  27078. bottom: 91.5 / 1726
  27079. }
  27080. },
  27081. },
  27082. [
  27083. {
  27084. name: "Macro",
  27085. height: math.unit(1, "mile"),
  27086. default: true
  27087. },
  27088. ]
  27089. ))
  27090. characterMakers.push(() => makeCharacter(
  27091. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27092. {
  27093. front: {
  27094. height: math.unit(12 + 6 / 12, "feet"),
  27095. weight: math.unit(1342, "lb"),
  27096. name: "Front",
  27097. image: {
  27098. source: "./media/characters/arokh-takakura/front.svg",
  27099. extra: 1089 / 1043,
  27100. bottom: 77.4 / 1176.7
  27101. }
  27102. },
  27103. back: {
  27104. height: math.unit(12 + 6 / 12, "feet"),
  27105. weight: math.unit(1342, "lb"),
  27106. name: "Back",
  27107. image: {
  27108. source: "./media/characters/arokh-takakura/back.svg",
  27109. extra: 1046 / 1019,
  27110. bottom: 102 / 1150
  27111. }
  27112. },
  27113. },
  27114. [
  27115. {
  27116. name: "Big",
  27117. height: math.unit(12 + 6 / 12, "feet"),
  27118. default: true
  27119. },
  27120. ]
  27121. ))
  27122. characterMakers.push(() => makeCharacter(
  27123. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27124. {
  27125. front: {
  27126. height: math.unit(5 + 6 / 12, "feet"),
  27127. weight: math.unit(150, "lb"),
  27128. name: "Front",
  27129. image: {
  27130. source: "./media/characters/theo/front.svg",
  27131. extra: 1184 / 1131,
  27132. bottom: 7.4 / 1191
  27133. }
  27134. },
  27135. },
  27136. [
  27137. {
  27138. name: "Micro",
  27139. height: math.unit(5, "inches")
  27140. },
  27141. {
  27142. name: "Normal",
  27143. height: math.unit(5 + 6 / 12, "feet"),
  27144. default: true
  27145. },
  27146. ]
  27147. ))
  27148. characterMakers.push(() => makeCharacter(
  27149. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27150. {
  27151. front: {
  27152. height: math.unit(5 + 9 / 12, "feet"),
  27153. weight: math.unit(130, "lb"),
  27154. name: "Front",
  27155. image: {
  27156. source: "./media/characters/cecelia-swift/front.svg",
  27157. extra: 502 / 484,
  27158. bottom: 23 / 523
  27159. }
  27160. },
  27161. back: {
  27162. height: math.unit(5 + 9 / 12, "feet"),
  27163. weight: math.unit(130, "lb"),
  27164. name: "Back",
  27165. image: {
  27166. source: "./media/characters/cecelia-swift/back.svg",
  27167. extra: 499 / 485,
  27168. bottom: 12 / 511
  27169. }
  27170. },
  27171. head: {
  27172. height: math.unit(0.90, "feet"),
  27173. name: "Head",
  27174. image: {
  27175. source: "./media/characters/cecelia-swift/head.svg"
  27176. }
  27177. },
  27178. rump: {
  27179. height: math.unit(1.75, "feet"),
  27180. name: "Rump",
  27181. image: {
  27182. source: "./media/characters/cecelia-swift/rump.svg"
  27183. }
  27184. },
  27185. },
  27186. [
  27187. {
  27188. name: "Normal",
  27189. height: math.unit(5 + 9 / 12, "feet"),
  27190. default: true
  27191. },
  27192. {
  27193. name: "Big",
  27194. height: math.unit(50, "feet")
  27195. },
  27196. {
  27197. name: "Macro",
  27198. height: math.unit(100, "feet")
  27199. },
  27200. {
  27201. name: "Macro+",
  27202. height: math.unit(500, "feet")
  27203. },
  27204. {
  27205. name: "Macro++",
  27206. height: math.unit(1000, "feet")
  27207. },
  27208. ]
  27209. ))
  27210. characterMakers.push(() => makeCharacter(
  27211. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27212. {
  27213. front: {
  27214. height: math.unit(6, "feet"),
  27215. weight: math.unit(150, "lb"),
  27216. name: "Front",
  27217. image: {
  27218. source: "./media/characters/kaunan/front.svg",
  27219. extra: 2890 / 2523,
  27220. bottom: 49 / 2939
  27221. }
  27222. },
  27223. },
  27224. [
  27225. {
  27226. name: "Macro",
  27227. height: math.unit(150, "feet"),
  27228. default: true
  27229. },
  27230. ]
  27231. ))
  27232. characterMakers.push(() => makeCharacter(
  27233. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27234. {
  27235. front: {
  27236. height: math.unit(175, "cm"),
  27237. weight: math.unit(60, "kg"),
  27238. name: "Front",
  27239. image: {
  27240. source: "./media/characters/fei/front.svg",
  27241. extra: 2581 / 2400,
  27242. bottom: 82.2 / 2663
  27243. }
  27244. },
  27245. },
  27246. [
  27247. {
  27248. name: "Mortal",
  27249. height: math.unit(175, "cm")
  27250. },
  27251. {
  27252. name: "Normal",
  27253. height: math.unit(3500, "m"),
  27254. default: true
  27255. },
  27256. {
  27257. name: "Stroll",
  27258. height: math.unit(17.5, "km")
  27259. },
  27260. {
  27261. name: "Showoff",
  27262. height: math.unit(175, "km")
  27263. },
  27264. ]
  27265. ))
  27266. characterMakers.push(() => makeCharacter(
  27267. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27268. {
  27269. front: {
  27270. height: math.unit(7, "feet"),
  27271. weight: math.unit(1000, "kg"),
  27272. name: "Front",
  27273. image: {
  27274. source: "./media/characters/edrax/front.svg",
  27275. extra: 2838 / 2550,
  27276. bottom: 130 / 2968
  27277. }
  27278. },
  27279. },
  27280. [
  27281. {
  27282. name: "Small",
  27283. height: math.unit(7, "feet")
  27284. },
  27285. {
  27286. name: "Normal",
  27287. height: math.unit(1500, "meters")
  27288. },
  27289. {
  27290. name: "Mega",
  27291. height: math.unit(12000000, "km"),
  27292. default: true
  27293. },
  27294. {
  27295. name: "Megamacro",
  27296. height: math.unit(10600000, "lightyears")
  27297. },
  27298. {
  27299. name: "Hypermacro",
  27300. height: math.unit(256, "yottameters")
  27301. },
  27302. ]
  27303. ))
  27304. characterMakers.push(() => makeCharacter(
  27305. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27306. {
  27307. front: {
  27308. height: math.unit(10, "feet"),
  27309. weight: math.unit(750, "lb"),
  27310. name: "Front",
  27311. image: {
  27312. source: "./media/characters/clove/front.svg",
  27313. extra: 2031 / 1860,
  27314. bottom: 47.8 / 2080
  27315. }
  27316. },
  27317. back: {
  27318. height: math.unit(10, "feet"),
  27319. weight: math.unit(750, "lb"),
  27320. name: "Back",
  27321. image: {
  27322. source: "./media/characters/clove/back.svg",
  27323. extra: 2025 / 1859,
  27324. bottom: 46 / 2071
  27325. }
  27326. },
  27327. },
  27328. [
  27329. {
  27330. name: "Normal",
  27331. height: math.unit(10, "feet"),
  27332. default: true
  27333. },
  27334. ]
  27335. ))
  27336. characterMakers.push(() => makeCharacter(
  27337. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27338. {
  27339. front: {
  27340. height: math.unit(4, "feet"),
  27341. weight: math.unit(50, "lb"),
  27342. name: "Front",
  27343. image: {
  27344. source: "./media/characters/alex-rabbit/front.svg",
  27345. extra: 507 / 458,
  27346. bottom: 18.5 / 527
  27347. }
  27348. },
  27349. back: {
  27350. height: math.unit(4, "feet"),
  27351. weight: math.unit(50, "lb"),
  27352. name: "Back",
  27353. image: {
  27354. source: "./media/characters/alex-rabbit/back.svg",
  27355. extra: 502 / 460,
  27356. bottom: 18.9 / 521
  27357. }
  27358. },
  27359. },
  27360. [
  27361. {
  27362. name: "Normal",
  27363. height: math.unit(4, "feet"),
  27364. default: true
  27365. },
  27366. ]
  27367. ))
  27368. characterMakers.push(() => makeCharacter(
  27369. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27370. {
  27371. front: {
  27372. height: math.unit(1 + 3 / 12, "feet"),
  27373. weight: math.unit(80, "lb"),
  27374. name: "Front",
  27375. image: {
  27376. source: "./media/characters/zander-rose/front.svg",
  27377. extra: 916 / 797,
  27378. bottom: 17 / 933
  27379. }
  27380. },
  27381. back: {
  27382. height: math.unit(1 + 3 / 12, "feet"),
  27383. weight: math.unit(80, "lb"),
  27384. name: "Back",
  27385. image: {
  27386. source: "./media/characters/zander-rose/back.svg",
  27387. extra: 903 / 779,
  27388. bottom: 31 / 934
  27389. }
  27390. },
  27391. },
  27392. [
  27393. {
  27394. name: "Normal",
  27395. height: math.unit(1 + 3 / 12, "feet"),
  27396. default: true
  27397. },
  27398. ]
  27399. ))
  27400. characterMakers.push(() => makeCharacter(
  27401. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27402. {
  27403. anthro: {
  27404. height: math.unit(6, "feet"),
  27405. weight: math.unit(150, "lb"),
  27406. name: "Anthro",
  27407. image: {
  27408. source: "./media/characters/razz/anthro.svg",
  27409. extra: 1437 / 1343,
  27410. bottom: 48 / 1485
  27411. }
  27412. },
  27413. feral: {
  27414. height: math.unit(6, "feet"),
  27415. weight: math.unit(150, "lb"),
  27416. name: "Feral",
  27417. image: {
  27418. source: "./media/characters/razz/feral.svg",
  27419. extra: 2569 / 1385,
  27420. bottom: 95 / 2664
  27421. }
  27422. },
  27423. },
  27424. [
  27425. {
  27426. name: "Normal",
  27427. height: math.unit(6, "feet"),
  27428. default: true
  27429. },
  27430. ]
  27431. ))
  27432. characterMakers.push(() => makeCharacter(
  27433. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27434. {
  27435. front: {
  27436. height: math.unit(9 + 4 / 12, "feet"),
  27437. weight: math.unit(500, "lb"),
  27438. name: "Front",
  27439. image: {
  27440. source: "./media/characters/morrigan/front.svg",
  27441. extra: 2707 / 2579,
  27442. bottom: 156 / 2863
  27443. }
  27444. },
  27445. },
  27446. [
  27447. {
  27448. name: "Normal",
  27449. height: math.unit(9 + 4 / 12, "feet"),
  27450. default: true
  27451. },
  27452. ]
  27453. ))
  27454. characterMakers.push(() => makeCharacter(
  27455. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27456. {
  27457. front: {
  27458. height: math.unit(5, "stories"),
  27459. weight: math.unit(4000, "lb"),
  27460. name: "Front",
  27461. image: {
  27462. source: "./media/characters/jenene/front.svg",
  27463. extra: 1780 / 1710,
  27464. bottom: 57 / 1837
  27465. }
  27466. },
  27467. },
  27468. [
  27469. {
  27470. name: "Normal",
  27471. height: math.unit(5, "stories"),
  27472. default: true
  27473. },
  27474. ]
  27475. ))
  27476. characterMakers.push(() => makeCharacter(
  27477. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27478. {
  27479. front: {
  27480. height: math.unit(6, "feet"),
  27481. weight: math.unit(150, "lb"),
  27482. name: "Front",
  27483. image: {
  27484. source: "./media/characters/vix-archaser/front.svg",
  27485. extra: 2767 / 2562,
  27486. bottom: 36 / 2803
  27487. }
  27488. },
  27489. },
  27490. [
  27491. {
  27492. name: "Micro",
  27493. height: math.unit(1, "foot")
  27494. },
  27495. {
  27496. name: "Normal",
  27497. height: math.unit(6 + 5 / 12, "feet")
  27498. },
  27499. {
  27500. name: "Minimacro",
  27501. height: math.unit(500, "feet")
  27502. },
  27503. {
  27504. name: "Macro",
  27505. height: math.unit(4, "miles")
  27506. },
  27507. {
  27508. name: "Megamacro",
  27509. height: math.unit(250, "miles"),
  27510. default: true
  27511. },
  27512. {
  27513. name: "Gigamacro",
  27514. height: math.unit(1, "universe")
  27515. },
  27516. {
  27517. name: "Endgame",
  27518. height: math.unit(100, "multiverses")
  27519. }
  27520. ]
  27521. ))
  27522. characterMakers.push(() => makeCharacter(
  27523. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27524. {
  27525. taurSfw: {
  27526. height: math.unit(10, "meters"),
  27527. weight: math.unit(17500, "kg"),
  27528. name: "Taur",
  27529. image: {
  27530. source: "./media/characters/faey/taur-sfw.svg",
  27531. extra: 1200 / 968,
  27532. bottom: 41 / 1241
  27533. }
  27534. },
  27535. chestmaw: {
  27536. height: math.unit(2.01, "meters"),
  27537. name: "Chestmaw",
  27538. image: {
  27539. source: "./media/characters/faey/chestmaw.svg"
  27540. }
  27541. },
  27542. foot: {
  27543. height: math.unit(2.43, "meters"),
  27544. name: "Foot",
  27545. image: {
  27546. source: "./media/characters/faey/foot.svg"
  27547. }
  27548. },
  27549. jaws: {
  27550. height: math.unit(1.66, "meters"),
  27551. name: "Jaws",
  27552. image: {
  27553. source: "./media/characters/faey/jaws.svg"
  27554. }
  27555. },
  27556. tongues: {
  27557. height: math.unit(2.01, "meters"),
  27558. name: "Tongues",
  27559. image: {
  27560. source: "./media/characters/faey/tongues.svg"
  27561. }
  27562. },
  27563. },
  27564. [
  27565. {
  27566. name: "Small",
  27567. height: math.unit(10, "meters"),
  27568. default: true
  27569. },
  27570. {
  27571. name: "Big",
  27572. height: math.unit(500000, "km")
  27573. },
  27574. ]
  27575. ))
  27576. characterMakers.push(() => makeCharacter(
  27577. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27578. {
  27579. front: {
  27580. height: math.unit(7, "feet"),
  27581. weight: math.unit(275, "lb"),
  27582. name: "Front",
  27583. image: {
  27584. source: "./media/characters/roku/front.svg",
  27585. extra: 903 / 878,
  27586. bottom: 37 / 940
  27587. }
  27588. },
  27589. },
  27590. [
  27591. {
  27592. name: "Normal",
  27593. height: math.unit(7, "feet"),
  27594. default: true
  27595. },
  27596. {
  27597. name: "Macro",
  27598. height: math.unit(500, "feet")
  27599. },
  27600. {
  27601. name: "Megamacro",
  27602. height: math.unit(200, "miles")
  27603. },
  27604. ]
  27605. ))
  27606. characterMakers.push(() => makeCharacter(
  27607. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27608. {
  27609. front: {
  27610. height: math.unit(6 + 2 / 12, "feet"),
  27611. weight: math.unit(150, "lb"),
  27612. name: "Front",
  27613. image: {
  27614. source: "./media/characters/lira/front.svg",
  27615. extra: 1727 / 1605,
  27616. bottom: 26 / 1753
  27617. }
  27618. },
  27619. back: {
  27620. height: math.unit(6 + 2 / 12, "feet"),
  27621. weight: math.unit(150, "lb"),
  27622. name: "Back",
  27623. image: {
  27624. source: "./media/characters/lira/back.svg",
  27625. extra: 1713/1621,
  27626. bottom: 20/1733
  27627. }
  27628. },
  27629. hand: {
  27630. height: math.unit(0.75, "feet"),
  27631. name: "Hand",
  27632. image: {
  27633. source: "./media/characters/lira/hand.svg"
  27634. }
  27635. },
  27636. maw: {
  27637. height: math.unit(0.65, "feet"),
  27638. name: "Maw",
  27639. image: {
  27640. source: "./media/characters/lira/maw.svg"
  27641. }
  27642. },
  27643. pawDigi: {
  27644. height: math.unit(1.6, "feet"),
  27645. name: "Paw Digi",
  27646. image: {
  27647. source: "./media/characters/lira/paw-digi.svg"
  27648. }
  27649. },
  27650. pawPlanti: {
  27651. height: math.unit(1.4, "feet"),
  27652. name: "Paw Planti",
  27653. image: {
  27654. source: "./media/characters/lira/paw-planti.svg"
  27655. }
  27656. },
  27657. },
  27658. [
  27659. {
  27660. name: "Normal",
  27661. height: math.unit(6 + 2 / 12, "feet"),
  27662. default: true
  27663. },
  27664. {
  27665. name: "Macro",
  27666. height: math.unit(100, "feet")
  27667. },
  27668. {
  27669. name: "Macro²",
  27670. height: math.unit(1600, "feet")
  27671. },
  27672. {
  27673. name: "Planetary",
  27674. height: math.unit(20, "earths")
  27675. },
  27676. ]
  27677. ))
  27678. characterMakers.push(() => makeCharacter(
  27679. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27680. {
  27681. front: {
  27682. height: math.unit(6, "feet"),
  27683. weight: math.unit(150, "lb"),
  27684. name: "Front",
  27685. image: {
  27686. source: "./media/characters/hadjet/front.svg",
  27687. extra: 1480 / 1346,
  27688. bottom: 26 / 1506
  27689. }
  27690. },
  27691. frontNsfw: {
  27692. height: math.unit(6, "feet"),
  27693. weight: math.unit(150, "lb"),
  27694. name: "Front (NSFW)",
  27695. image: {
  27696. source: "./media/characters/hadjet/front-nsfw.svg",
  27697. extra: 1440 / 1358,
  27698. bottom: 52 / 1492
  27699. }
  27700. },
  27701. },
  27702. [
  27703. {
  27704. name: "Macro",
  27705. height: math.unit(10, "stories"),
  27706. default: true
  27707. },
  27708. {
  27709. name: "Megamacro",
  27710. height: math.unit(1.5, "miles")
  27711. },
  27712. {
  27713. name: "Megamacro+",
  27714. height: math.unit(5, "miles")
  27715. },
  27716. ]
  27717. ))
  27718. characterMakers.push(() => makeCharacter(
  27719. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27720. {
  27721. side: {
  27722. height: math.unit(106, "feet"),
  27723. weight: math.unit(500, "tonnes"),
  27724. name: "Side",
  27725. image: {
  27726. source: "./media/characters/kodran/side.svg",
  27727. extra: 553 / 480,
  27728. bottom: 33 / 586
  27729. }
  27730. },
  27731. front: {
  27732. height: math.unit(132, "feet"),
  27733. weight: math.unit(500, "tonnes"),
  27734. name: "Front",
  27735. image: {
  27736. source: "./media/characters/kodran/front.svg",
  27737. extra: 667 / 643,
  27738. bottom: 42 / 709
  27739. }
  27740. },
  27741. flying: {
  27742. height: math.unit(350, "feet"),
  27743. weight: math.unit(500, "tonnes"),
  27744. name: "Flying",
  27745. image: {
  27746. source: "./media/characters/kodran/flying.svg"
  27747. }
  27748. },
  27749. foot: {
  27750. height: math.unit(33, "feet"),
  27751. name: "Foot",
  27752. image: {
  27753. source: "./media/characters/kodran/foot.svg"
  27754. }
  27755. },
  27756. footFront: {
  27757. height: math.unit(19, "feet"),
  27758. name: "Foot (Front)",
  27759. image: {
  27760. source: "./media/characters/kodran/foot-front.svg",
  27761. extra: 261 / 261,
  27762. bottom: 91 / 352
  27763. }
  27764. },
  27765. headFront: {
  27766. height: math.unit(53, "feet"),
  27767. name: "Head (Front)",
  27768. image: {
  27769. source: "./media/characters/kodran/head-front.svg"
  27770. }
  27771. },
  27772. headSide: {
  27773. height: math.unit(65, "feet"),
  27774. name: "Head (Side)",
  27775. image: {
  27776. source: "./media/characters/kodran/head-side.svg"
  27777. }
  27778. },
  27779. throat: {
  27780. height: math.unit(79, "feet"),
  27781. name: "Throat",
  27782. image: {
  27783. source: "./media/characters/kodran/throat.svg"
  27784. }
  27785. },
  27786. },
  27787. [
  27788. {
  27789. name: "Large",
  27790. height: math.unit(106, "feet"),
  27791. default: true
  27792. },
  27793. ]
  27794. ))
  27795. characterMakers.push(() => makeCharacter(
  27796. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27797. {
  27798. side: {
  27799. height: math.unit(11, "feet"),
  27800. weight: math.unit(150, "lb"),
  27801. name: "Side",
  27802. image: {
  27803. source: "./media/characters/pyxaron/side.svg",
  27804. extra: 305 / 195,
  27805. bottom: 17 / 322
  27806. }
  27807. },
  27808. },
  27809. [
  27810. {
  27811. name: "Normal",
  27812. height: math.unit(11, "feet"),
  27813. default: true
  27814. },
  27815. ]
  27816. ))
  27817. characterMakers.push(() => makeCharacter(
  27818. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27819. {
  27820. front: {
  27821. height: math.unit(6, "feet"),
  27822. weight: math.unit(150, "lb"),
  27823. name: "Front",
  27824. image: {
  27825. source: "./media/characters/meep/front.svg",
  27826. extra: 88 / 80,
  27827. bottom: 6 / 94
  27828. }
  27829. },
  27830. },
  27831. [
  27832. {
  27833. name: "Fun Sized",
  27834. height: math.unit(2, "inches"),
  27835. default: true
  27836. },
  27837. {
  27838. name: "Friend Sized",
  27839. height: math.unit(8, "inches")
  27840. },
  27841. ]
  27842. ))
  27843. characterMakers.push(() => makeCharacter(
  27844. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27845. {
  27846. front: {
  27847. height: math.unit(15, "feet"),
  27848. weight: math.unit(2500, "lb"),
  27849. name: "Front",
  27850. image: {
  27851. source: "./media/characters/holly-rabbit/front.svg",
  27852. extra: 1433 / 1233,
  27853. bottom: 125 / 1558
  27854. }
  27855. },
  27856. dick: {
  27857. height: math.unit(4.6, "feet"),
  27858. name: "Dick",
  27859. image: {
  27860. source: "./media/characters/holly-rabbit/dick.svg"
  27861. }
  27862. },
  27863. },
  27864. [
  27865. {
  27866. name: "Normal",
  27867. height: math.unit(15, "feet"),
  27868. default: true
  27869. },
  27870. {
  27871. name: "Macro",
  27872. height: math.unit(250, "feet")
  27873. },
  27874. {
  27875. name: "Macro+",
  27876. height: math.unit(2500, "feet")
  27877. },
  27878. ]
  27879. ))
  27880. characterMakers.push(() => makeCharacter(
  27881. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27882. {
  27883. front: {
  27884. height: math.unit(3.02, "meters"),
  27885. weight: math.unit(500, "kg"),
  27886. name: "Front",
  27887. image: {
  27888. source: "./media/characters/drena/front.svg",
  27889. extra: 282 / 243,
  27890. bottom: 8 / 290
  27891. }
  27892. },
  27893. side: {
  27894. height: math.unit(3.02, "meters"),
  27895. weight: math.unit(500, "kg"),
  27896. name: "Side",
  27897. image: {
  27898. source: "./media/characters/drena/side.svg",
  27899. extra: 280 / 245,
  27900. bottom: 10 / 290
  27901. }
  27902. },
  27903. back: {
  27904. height: math.unit(3.02, "meters"),
  27905. weight: math.unit(500, "kg"),
  27906. name: "Back",
  27907. image: {
  27908. source: "./media/characters/drena/back.svg",
  27909. extra: 278 / 243,
  27910. bottom: 2 / 280
  27911. }
  27912. },
  27913. foot: {
  27914. height: math.unit(0.75, "meters"),
  27915. name: "Foot",
  27916. image: {
  27917. source: "./media/characters/drena/foot.svg"
  27918. }
  27919. },
  27920. maw: {
  27921. height: math.unit(0.82, "meters"),
  27922. name: "Maw",
  27923. image: {
  27924. source: "./media/characters/drena/maw.svg"
  27925. }
  27926. },
  27927. rump: {
  27928. height: math.unit(0.93, "meters"),
  27929. name: "Rump",
  27930. image: {
  27931. source: "./media/characters/drena/rump.svg"
  27932. }
  27933. },
  27934. },
  27935. [
  27936. {
  27937. name: "Normal",
  27938. height: math.unit(3.02, "meters"),
  27939. default: true
  27940. },
  27941. ]
  27942. ))
  27943. characterMakers.push(() => makeCharacter(
  27944. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27945. {
  27946. front: {
  27947. height: math.unit(6 + 4 / 12, "feet"),
  27948. weight: math.unit(250, "lb"),
  27949. name: "Front",
  27950. image: {
  27951. source: "./media/characters/remmyzilla/front.svg",
  27952. extra: 4033 / 3588,
  27953. bottom: 123 / 4156
  27954. }
  27955. },
  27956. back: {
  27957. height: math.unit(6 + 4 / 12, "feet"),
  27958. weight: math.unit(250, "lb"),
  27959. name: "Back",
  27960. image: {
  27961. source: "./media/characters/remmyzilla/back.svg",
  27962. extra: 2687 / 2555,
  27963. bottom: 48 / 2735
  27964. }
  27965. },
  27966. frontFancy: {
  27967. height: math.unit(6 + 4 / 12, "feet"),
  27968. weight: math.unit(250, "lb"),
  27969. name: "Front (Fancy)",
  27970. image: {
  27971. source: "./media/characters/remmyzilla/front-fancy.svg",
  27972. extra: 4119 / 3419,
  27973. bottom: 237 / 4356
  27974. }
  27975. },
  27976. paw: {
  27977. height: math.unit(1.73, "feet"),
  27978. name: "Paw",
  27979. image: {
  27980. source: "./media/characters/remmyzilla/paw.svg"
  27981. }
  27982. },
  27983. maw: {
  27984. height: math.unit(1.73, "feet"),
  27985. name: "Maw",
  27986. image: {
  27987. source: "./media/characters/remmyzilla/maw.svg"
  27988. }
  27989. },
  27990. },
  27991. [
  27992. {
  27993. name: "Normal",
  27994. height: math.unit(6 + 4 / 12, "feet")
  27995. },
  27996. {
  27997. name: "Minimacro",
  27998. height: math.unit(12 + 8 / 12, "feet")
  27999. },
  28000. {
  28001. name: "Normal",
  28002. height: math.unit(640, "feet"),
  28003. default: true
  28004. },
  28005. {
  28006. name: "Megamacro",
  28007. height: math.unit(6400, "feet")
  28008. },
  28009. {
  28010. name: "Gigamacro",
  28011. height: math.unit(64000, "miles")
  28012. },
  28013. ]
  28014. ))
  28015. characterMakers.push(() => makeCharacter(
  28016. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28017. {
  28018. front: {
  28019. height: math.unit(2.5, "meters"),
  28020. weight: math.unit(300, "lb"),
  28021. name: "Front",
  28022. image: {
  28023. source: "./media/characters/lawrence/front.svg",
  28024. extra: 357 / 335,
  28025. bottom: 30 / 387
  28026. }
  28027. },
  28028. back: {
  28029. height: math.unit(2.5, "meters"),
  28030. weight: math.unit(300, "lb"),
  28031. name: "Back",
  28032. image: {
  28033. source: "./media/characters/lawrence/back.svg",
  28034. extra: 357 / 338,
  28035. bottom: 16 / 373
  28036. }
  28037. },
  28038. head: {
  28039. height: math.unit(0.9, "meter"),
  28040. name: "Head",
  28041. image: {
  28042. source: "./media/characters/lawrence/head.svg"
  28043. }
  28044. },
  28045. maw: {
  28046. height: math.unit(0.7, "meter"),
  28047. name: "Maw",
  28048. image: {
  28049. source: "./media/characters/lawrence/maw.svg"
  28050. }
  28051. },
  28052. footBottom: {
  28053. height: math.unit(0.5, "meter"),
  28054. name: "Foot (Bottom)",
  28055. image: {
  28056. source: "./media/characters/lawrence/foot-bottom.svg"
  28057. }
  28058. },
  28059. footTop: {
  28060. height: math.unit(0.5, "meter"),
  28061. name: "Foot (Top)",
  28062. image: {
  28063. source: "./media/characters/lawrence/foot-top.svg"
  28064. }
  28065. },
  28066. },
  28067. [
  28068. {
  28069. name: "Normal",
  28070. height: math.unit(2.5, "meters"),
  28071. default: true
  28072. },
  28073. {
  28074. name: "Macro",
  28075. height: math.unit(95, "meters")
  28076. },
  28077. {
  28078. name: "Megamacro",
  28079. height: math.unit(150, "km")
  28080. },
  28081. ]
  28082. ))
  28083. characterMakers.push(() => makeCharacter(
  28084. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28085. {
  28086. front: {
  28087. height: math.unit(4.2, "meters"),
  28088. name: "Front",
  28089. image: {
  28090. source: "./media/characters/sydney/front.svg",
  28091. extra: 1323 / 1277,
  28092. bottom: 111 / 1434
  28093. }
  28094. },
  28095. },
  28096. [
  28097. {
  28098. name: "Normal",
  28099. height: math.unit(4.2, "meters"),
  28100. default: true
  28101. },
  28102. ]
  28103. ))
  28104. characterMakers.push(() => makeCharacter(
  28105. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28106. {
  28107. back: {
  28108. height: math.unit(201, "feet"),
  28109. name: "Back",
  28110. image: {
  28111. source: "./media/characters/jessica/back.svg",
  28112. extra: 273 / 259,
  28113. bottom: 7 / 280
  28114. }
  28115. },
  28116. },
  28117. [
  28118. {
  28119. name: "Normal",
  28120. height: math.unit(201, "feet"),
  28121. default: true
  28122. },
  28123. {
  28124. name: "Megamacro",
  28125. height: math.unit(8, "miles")
  28126. },
  28127. ]
  28128. ))
  28129. characterMakers.push(() => makeCharacter(
  28130. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28131. {
  28132. side: {
  28133. height: math.unit(320, "cm"),
  28134. name: "Side",
  28135. image: {
  28136. source: "./media/characters/victoria/side.svg",
  28137. extra: 778 / 346,
  28138. bottom: 56 / 834
  28139. }
  28140. },
  28141. maw: {
  28142. height: math.unit(5.9, "feet"),
  28143. name: "Maw",
  28144. image: {
  28145. source: "./media/characters/victoria/maw.svg"
  28146. }
  28147. },
  28148. },
  28149. [
  28150. {
  28151. name: "Normal",
  28152. height: math.unit(320, "cm"),
  28153. default: true
  28154. },
  28155. ]
  28156. ))
  28157. characterMakers.push(() => makeCharacter(
  28158. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28159. {
  28160. front: {
  28161. height: math.unit(5 + 6 / 12, "feet"),
  28162. name: "Front",
  28163. image: {
  28164. source: "./media/characters/cat/front.svg",
  28165. extra: 1374 / 1257,
  28166. bottom: 59 / 1433
  28167. }
  28168. },
  28169. back: {
  28170. height: math.unit(5 + 6 / 12, "feet"),
  28171. name: "Back",
  28172. image: {
  28173. source: "./media/characters/cat/back.svg",
  28174. extra: 1337 / 1226,
  28175. bottom: 34 / 1371
  28176. }
  28177. },
  28178. taur: {
  28179. height: math.unit(7, "feet"),
  28180. name: "Taur",
  28181. image: {
  28182. source: "./media/characters/cat/taur.svg",
  28183. extra: 1345 / 1231,
  28184. bottom: 66 / 1411
  28185. }
  28186. },
  28187. lucario: {
  28188. height: math.unit(4, "feet"),
  28189. name: "Lucario",
  28190. image: {
  28191. source: "./media/characters/cat/lucario.svg",
  28192. extra: 1470 / 1318,
  28193. bottom: 65 / 1535
  28194. }
  28195. },
  28196. megaLucario: {
  28197. height: math.unit(4, "feet"),
  28198. name: "Mega Lucario",
  28199. image: {
  28200. source: "./media/characters/cat/mega-lucario.svg",
  28201. extra: 1515 / 1319,
  28202. bottom: 63 / 1578
  28203. }
  28204. },
  28205. nickit: {
  28206. height: math.unit(2, "feet"),
  28207. name: "Nickit",
  28208. image: {
  28209. source: "./media/characters/cat/nickit.svg",
  28210. extra: 1980 / 1585,
  28211. bottom: 102 / 2082
  28212. }
  28213. },
  28214. lopunnyFront: {
  28215. height: math.unit(5, "feet"),
  28216. name: "Lopunny (Front)",
  28217. image: {
  28218. source: "./media/characters/cat/lopunny-front.svg",
  28219. extra: 1782 / 1469,
  28220. bottom: 38 / 1820
  28221. }
  28222. },
  28223. lopunnyBack: {
  28224. height: math.unit(5, "feet"),
  28225. name: "Lopunny (Back)",
  28226. image: {
  28227. source: "./media/characters/cat/lopunny-back.svg",
  28228. extra: 1660 / 1490,
  28229. bottom: 25 / 1685
  28230. }
  28231. },
  28232. },
  28233. [
  28234. {
  28235. name: "Really small",
  28236. height: math.unit(1, "nm")
  28237. },
  28238. {
  28239. name: "Micro",
  28240. height: math.unit(5, "inches")
  28241. },
  28242. {
  28243. name: "Normal",
  28244. height: math.unit(5 + 6 / 12, "feet"),
  28245. default: true
  28246. },
  28247. {
  28248. name: "Macro",
  28249. height: math.unit(50, "feet")
  28250. },
  28251. {
  28252. name: "Macro+",
  28253. height: math.unit(150, "feet")
  28254. },
  28255. {
  28256. name: "Megamacro",
  28257. height: math.unit(100, "miles")
  28258. },
  28259. ]
  28260. ))
  28261. characterMakers.push(() => makeCharacter(
  28262. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28263. {
  28264. front: {
  28265. height: math.unit(63.4, "meters"),
  28266. weight: math.unit(3.28349e+6, "kilograms"),
  28267. name: "Front",
  28268. image: {
  28269. source: "./media/characters/kirina-violet/front.svg",
  28270. extra: 2812 / 2725,
  28271. bottom: 0 / 2812
  28272. }
  28273. },
  28274. back: {
  28275. height: math.unit(63.4, "meters"),
  28276. weight: math.unit(3.28349e+6, "kilograms"),
  28277. name: "Back",
  28278. image: {
  28279. source: "./media/characters/kirina-violet/back.svg",
  28280. extra: 2812 / 2725,
  28281. bottom: 0 / 2812
  28282. }
  28283. },
  28284. mouth: {
  28285. height: math.unit(4.35, "meters"),
  28286. name: "Mouth",
  28287. image: {
  28288. source: "./media/characters/kirina-violet/mouth.svg"
  28289. }
  28290. },
  28291. paw: {
  28292. height: math.unit(5.6, "meters"),
  28293. name: "Paw",
  28294. image: {
  28295. source: "./media/characters/kirina-violet/paw.svg"
  28296. }
  28297. },
  28298. tail: {
  28299. height: math.unit(18, "meters"),
  28300. name: "Tail",
  28301. image: {
  28302. source: "./media/characters/kirina-violet/tail.svg"
  28303. }
  28304. },
  28305. },
  28306. [
  28307. {
  28308. name: "Macro",
  28309. height: math.unit(63.4, "meters"),
  28310. default: true
  28311. },
  28312. ]
  28313. ))
  28314. characterMakers.push(() => makeCharacter(
  28315. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28316. {
  28317. front: {
  28318. height: math.unit(60, "feet"),
  28319. name: "Front",
  28320. image: {
  28321. source: "./media/characters/cat-gigachu/front.svg",
  28322. extra: 1024 / 780,
  28323. bottom: 23 / 1047
  28324. }
  28325. },
  28326. back: {
  28327. height: math.unit(60, "feet"),
  28328. name: "Back",
  28329. image: {
  28330. source: "./media/characters/cat-gigachu/back.svg",
  28331. extra: 1024 / 780,
  28332. bottom: 23 / 1047
  28333. }
  28334. },
  28335. },
  28336. [
  28337. {
  28338. name: "Dynamax",
  28339. height: math.unit(60, "feet"),
  28340. default: true
  28341. },
  28342. ]
  28343. ))
  28344. characterMakers.push(() => makeCharacter(
  28345. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28346. {
  28347. front: {
  28348. height: math.unit(6, "feet"),
  28349. weight: math.unit(150, "lb"),
  28350. name: "Front",
  28351. image: {
  28352. source: "./media/characters/sfaiyan/front.svg",
  28353. extra: 999 / 978,
  28354. bottom: 5 / 1004
  28355. }
  28356. },
  28357. },
  28358. [
  28359. {
  28360. name: "Normal",
  28361. height: math.unit(1.82, "meters")
  28362. },
  28363. {
  28364. name: "Giant",
  28365. height: math.unit(2.27, "km"),
  28366. default: true
  28367. },
  28368. ]
  28369. ))
  28370. characterMakers.push(() => makeCharacter(
  28371. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28372. {
  28373. front: {
  28374. height: math.unit(179, "cm"),
  28375. weight: math.unit(100, "kg"),
  28376. name: "Front",
  28377. image: {
  28378. source: "./media/characters/raunehkeli/front.svg",
  28379. extra: 1934 / 1926,
  28380. bottom: 0 / 1934
  28381. }
  28382. },
  28383. },
  28384. [
  28385. {
  28386. name: "Normal",
  28387. height: math.unit(179, "cm")
  28388. },
  28389. {
  28390. name: "Maximum",
  28391. height: math.unit(575, "meters"),
  28392. default: true
  28393. },
  28394. ]
  28395. ))
  28396. characterMakers.push(() => makeCharacter(
  28397. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28398. {
  28399. front: {
  28400. height: math.unit(6, "feet"),
  28401. weight: math.unit(150, "lb"),
  28402. name: "Front",
  28403. image: {
  28404. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28405. extra: 2625 / 2518,
  28406. bottom: 60 / 2685
  28407. }
  28408. },
  28409. },
  28410. [
  28411. {
  28412. name: "Normal",
  28413. height: math.unit(6 + 2 / 12, "feet")
  28414. },
  28415. {
  28416. name: "Macro",
  28417. height: math.unit(1180, "feet"),
  28418. default: true
  28419. },
  28420. ]
  28421. ))
  28422. characterMakers.push(() => makeCharacter(
  28423. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28424. {
  28425. front: {
  28426. height: math.unit(5 + 6 / 12, "feet"),
  28427. weight: math.unit(108, "lb"),
  28428. name: "Front",
  28429. image: {
  28430. source: "./media/characters/lilith-zott/front.svg",
  28431. extra: 2510 / 2238,
  28432. bottom: 100 / 2610
  28433. }
  28434. },
  28435. frontDressed: {
  28436. height: math.unit(5 + 6 / 12, "feet"),
  28437. weight: math.unit(108, "lb"),
  28438. name: "Front (Dressed)",
  28439. image: {
  28440. source: "./media/characters/lilith-zott/front-dressed.svg",
  28441. extra: 2510 / 2238,
  28442. bottom: 100 / 2610
  28443. }
  28444. },
  28445. },
  28446. [
  28447. {
  28448. name: "Normal",
  28449. height: math.unit(5 + 6 / 12, "feet")
  28450. },
  28451. {
  28452. name: "Macro",
  28453. height: math.unit(1030, "feet"),
  28454. default: true
  28455. },
  28456. ]
  28457. ))
  28458. characterMakers.push(() => makeCharacter(
  28459. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28460. {
  28461. front: {
  28462. height: math.unit(6, "feet"),
  28463. weight: math.unit(150, "lb"),
  28464. name: "Front",
  28465. image: {
  28466. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28467. extra: 2567 / 2435,
  28468. bottom: 39 / 2606
  28469. }
  28470. },
  28471. frontSuper: {
  28472. height: math.unit(6, "feet"),
  28473. name: "Front (Super)",
  28474. image: {
  28475. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28476. extra: 2567 / 2435,
  28477. bottom: 39 / 2606
  28478. }
  28479. },
  28480. },
  28481. [
  28482. {
  28483. name: "Normal",
  28484. height: math.unit(5 + 10 / 12, "feet")
  28485. },
  28486. {
  28487. name: "Macro",
  28488. height: math.unit(1100, "feet"),
  28489. default: true
  28490. },
  28491. ]
  28492. ))
  28493. characterMakers.push(() => makeCharacter(
  28494. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28495. {
  28496. front: {
  28497. height: math.unit(100, "miles"),
  28498. name: "Front",
  28499. image: {
  28500. source: "./media/characters/sona/front.svg",
  28501. extra: 2433 / 2201,
  28502. bottom: 53 / 2486
  28503. }
  28504. },
  28505. foot: {
  28506. height: math.unit(16.1, "miles"),
  28507. name: "Foot",
  28508. image: {
  28509. source: "./media/characters/sona/foot.svg"
  28510. }
  28511. },
  28512. },
  28513. [
  28514. {
  28515. name: "Macro",
  28516. height: math.unit(100, "miles"),
  28517. default: true
  28518. },
  28519. ]
  28520. ))
  28521. characterMakers.push(() => makeCharacter(
  28522. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28523. {
  28524. front: {
  28525. height: math.unit(6, "feet"),
  28526. weight: math.unit(150, "lb"),
  28527. name: "Front",
  28528. image: {
  28529. source: "./media/characters/bailey/front.svg",
  28530. extra: 1778 / 1724,
  28531. bottom: 30 / 1808
  28532. }
  28533. },
  28534. },
  28535. [
  28536. {
  28537. name: "Micro",
  28538. height: math.unit(4, "inches")
  28539. },
  28540. {
  28541. name: "Normal",
  28542. height: math.unit(5 + 5 / 12, "feet"),
  28543. default: true
  28544. },
  28545. {
  28546. name: "Macro",
  28547. height: math.unit(250, "feet")
  28548. },
  28549. {
  28550. name: "Megamacro",
  28551. height: math.unit(100, "miles")
  28552. },
  28553. ]
  28554. ))
  28555. characterMakers.push(() => makeCharacter(
  28556. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28557. {
  28558. front: {
  28559. height: math.unit(5 + 2 / 12, "feet"),
  28560. weight: math.unit(120, "lb"),
  28561. name: "Front",
  28562. image: {
  28563. source: "./media/characters/snaps/front.svg",
  28564. extra: 2370 / 2177,
  28565. bottom: 48 / 2418
  28566. }
  28567. },
  28568. back: {
  28569. height: math.unit(5 + 2 / 12, "feet"),
  28570. weight: math.unit(120, "lb"),
  28571. name: "Back",
  28572. image: {
  28573. source: "./media/characters/snaps/back.svg",
  28574. extra: 2408 / 2258,
  28575. bottom: 15 / 2423
  28576. }
  28577. },
  28578. },
  28579. [
  28580. {
  28581. name: "Micro",
  28582. height: math.unit(9, "inches")
  28583. },
  28584. {
  28585. name: "Normal",
  28586. height: math.unit(5 + 2 / 12, "feet"),
  28587. default: true
  28588. },
  28589. {
  28590. name: "Mini Macro",
  28591. height: math.unit(10, "feet")
  28592. },
  28593. ]
  28594. ))
  28595. characterMakers.push(() => makeCharacter(
  28596. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28597. {
  28598. front: {
  28599. height: math.unit(1.8, "meters"),
  28600. weight: math.unit(85, "kg"),
  28601. name: "Front",
  28602. image: {
  28603. source: "./media/characters/azteck/front.svg",
  28604. extra: 2815 / 2625,
  28605. bottom: 89 / 2904
  28606. }
  28607. },
  28608. back: {
  28609. height: math.unit(1.8, "meters"),
  28610. weight: math.unit(85, "kg"),
  28611. name: "Back",
  28612. image: {
  28613. source: "./media/characters/azteck/back.svg",
  28614. extra: 2856 / 2648,
  28615. bottom: 85 / 2941
  28616. }
  28617. },
  28618. frontDressed: {
  28619. height: math.unit(1.8, "meters"),
  28620. weight: math.unit(85, "kg"),
  28621. name: "Front (Dressed)",
  28622. image: {
  28623. source: "./media/characters/azteck/front-dressed.svg",
  28624. extra: 2147 / 2003,
  28625. bottom: 68 / 2215
  28626. }
  28627. },
  28628. head: {
  28629. height: math.unit(0.47, "meters"),
  28630. weight: math.unit(85, "kg"),
  28631. name: "Head",
  28632. image: {
  28633. source: "./media/characters/azteck/head.svg"
  28634. }
  28635. },
  28636. },
  28637. [
  28638. {
  28639. name: "Bite sized",
  28640. height: math.unit(16, "cm")
  28641. },
  28642. {
  28643. name: "Normal",
  28644. height: math.unit(1.8, "meters"),
  28645. default: true
  28646. },
  28647. ]
  28648. ))
  28649. characterMakers.push(() => makeCharacter(
  28650. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28651. {
  28652. front: {
  28653. height: math.unit(6, "feet"),
  28654. weight: math.unit(150, "lb"),
  28655. name: "Front",
  28656. image: {
  28657. source: "./media/characters/pidge/front.svg",
  28658. extra: 620 / 588,
  28659. bottom: 9 / 629
  28660. }
  28661. },
  28662. back: {
  28663. height: math.unit(6, "feet"),
  28664. weight: math.unit(150, "lb"),
  28665. name: "Back",
  28666. image: {
  28667. source: "./media/characters/pidge/back.svg",
  28668. extra: 620 / 588,
  28669. bottom: 9 / 629
  28670. }
  28671. },
  28672. },
  28673. [
  28674. {
  28675. name: "Macro",
  28676. height: math.unit(1, "mile"),
  28677. default: true
  28678. },
  28679. ]
  28680. ))
  28681. characterMakers.push(() => makeCharacter(
  28682. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28683. {
  28684. front: {
  28685. height: math.unit(6, "feet"),
  28686. weight: math.unit(150, "lb"),
  28687. name: "Front",
  28688. image: {
  28689. source: "./media/characters/en/front.svg",
  28690. extra: 1697 / 1563,
  28691. bottom: 103 / 1800
  28692. }
  28693. },
  28694. back: {
  28695. height: math.unit(6, "feet"),
  28696. weight: math.unit(150, "lb"),
  28697. name: "Back",
  28698. image: {
  28699. source: "./media/characters/en/back.svg",
  28700. extra: 1700 / 1570,
  28701. bottom: 51 / 1751
  28702. }
  28703. },
  28704. frontDressed: {
  28705. height: math.unit(6, "feet"),
  28706. weight: math.unit(150, "lb"),
  28707. name: "Front (Dressed)",
  28708. image: {
  28709. source: "./media/characters/en/front-dressed.svg",
  28710. extra: 1697 / 1563,
  28711. bottom: 103 / 1800
  28712. }
  28713. },
  28714. backDressed: {
  28715. height: math.unit(6, "feet"),
  28716. weight: math.unit(150, "lb"),
  28717. name: "Back (Dressed)",
  28718. image: {
  28719. source: "./media/characters/en/back-dressed.svg",
  28720. extra: 1700 / 1570,
  28721. bottom: 51 / 1751
  28722. }
  28723. },
  28724. },
  28725. [
  28726. {
  28727. name: "Macro",
  28728. height: math.unit(210, "feet"),
  28729. default: true
  28730. },
  28731. ]
  28732. ))
  28733. characterMakers.push(() => makeCharacter(
  28734. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28735. {
  28736. front: {
  28737. height: math.unit(6, "feet"),
  28738. weight: math.unit(150, "lb"),
  28739. name: "Front",
  28740. image: {
  28741. source: "./media/characters/haze-orris/front.svg",
  28742. extra: 3975 / 3525,
  28743. bottom: 137 / 4112
  28744. }
  28745. },
  28746. },
  28747. [
  28748. {
  28749. name: "Micro",
  28750. height: math.unit(150, "mm"),
  28751. default: true
  28752. },
  28753. ]
  28754. ))
  28755. characterMakers.push(() => makeCharacter(
  28756. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28757. {
  28758. front: {
  28759. height: math.unit(6, "feet"),
  28760. weight: math.unit(150, "lb"),
  28761. name: "Front",
  28762. image: {
  28763. source: "./media/characters/casselene-yaro/front.svg",
  28764. extra: 4721 / 4541,
  28765. bottom: 82 / 4803
  28766. }
  28767. },
  28768. back: {
  28769. height: math.unit(6, "feet"),
  28770. weight: math.unit(150, "lb"),
  28771. name: "Back",
  28772. image: {
  28773. source: "./media/characters/casselene-yaro/back.svg",
  28774. extra: 4569 / 4377,
  28775. bottom: 69 / 4638
  28776. }
  28777. },
  28778. frontDressed: {
  28779. height: math.unit(6, "feet"),
  28780. weight: math.unit(150, "lb"),
  28781. name: "Front-dressed",
  28782. image: {
  28783. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28784. extra: 4721 / 4541,
  28785. bottom: 82 / 4803
  28786. }
  28787. },
  28788. },
  28789. [
  28790. {
  28791. name: "Macro",
  28792. height: math.unit(190, "feet"),
  28793. default: true
  28794. },
  28795. ]
  28796. ))
  28797. characterMakers.push(() => makeCharacter(
  28798. { name: "Myra Rue Delore", species: ["monster"], 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/myra-rue-delore/front.svg",
  28806. extra: 1340 / 1308,
  28807. bottom: 67 / 1407
  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/myra-rue-delore/back.svg",
  28816. extra: 1341 / 1310,
  28817. bottom: 40 / 1381
  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/myra-rue-delore/front-dressed.svg",
  28826. extra: 1340 / 1308,
  28827. bottom: 67 / 1407
  28828. }
  28829. },
  28830. },
  28831. [
  28832. {
  28833. name: "Macro",
  28834. height: math.unit(150, "feet"),
  28835. default: true
  28836. },
  28837. ]
  28838. ))
  28839. characterMakers.push(() => makeCharacter(
  28840. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28841. {
  28842. front: {
  28843. height: math.unit(10, "feet"),
  28844. weight: math.unit(15015, "lb"),
  28845. name: "Front",
  28846. image: {
  28847. source: "./media/characters/fem!plat/front.svg",
  28848. extra: 2799 / 2604,
  28849. bottom: 149 / 2948
  28850. }
  28851. },
  28852. },
  28853. [
  28854. {
  28855. name: "Normal",
  28856. height: math.unit(10, "feet"),
  28857. default: true
  28858. },
  28859. {
  28860. name: "Macro",
  28861. height: math.unit(100, "feet")
  28862. },
  28863. {
  28864. name: "Megamacro",
  28865. height: math.unit(1000, "feet")
  28866. },
  28867. ]
  28868. ))
  28869. characterMakers.push(() => makeCharacter(
  28870. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28871. {
  28872. front: {
  28873. height: math.unit(15 + 5 / 12, "feet"),
  28874. weight: math.unit(4600, "lb"),
  28875. name: "Front",
  28876. image: {
  28877. source: "./media/characters/neapolitan-ananassa/front.svg",
  28878. extra: 2903 / 2736,
  28879. bottom: 0 / 2903
  28880. }
  28881. },
  28882. side: {
  28883. height: math.unit(15 + 5 / 12, "feet"),
  28884. weight: math.unit(4600, "lb"),
  28885. name: "Side",
  28886. image: {
  28887. source: "./media/characters/neapolitan-ananassa/side.svg",
  28888. extra: 2925 / 2719,
  28889. bottom: 0 / 2925
  28890. }
  28891. },
  28892. back: {
  28893. height: math.unit(15 + 5 / 12, "feet"),
  28894. weight: math.unit(4600, "lb"),
  28895. name: "Back",
  28896. image: {
  28897. source: "./media/characters/neapolitan-ananassa/back.svg",
  28898. extra: 2903 / 2736,
  28899. bottom: 0 / 2903
  28900. }
  28901. },
  28902. },
  28903. [
  28904. {
  28905. name: "Normal",
  28906. height: math.unit(15 + 5 / 12, "feet"),
  28907. default: true
  28908. },
  28909. {
  28910. name: "Post-Millenium",
  28911. height: math.unit(35 + 5 / 12, "feet")
  28912. },
  28913. {
  28914. name: "Post-Era",
  28915. height: math.unit(450 + 5 / 12, "feet")
  28916. },
  28917. ]
  28918. ))
  28919. characterMakers.push(() => makeCharacter(
  28920. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28921. {
  28922. front: {
  28923. height: math.unit(300, "meters"),
  28924. weight: math.unit(125000, "tonnes"),
  28925. name: "Front",
  28926. image: {
  28927. source: "./media/characters/pazuzu/front.svg",
  28928. extra: 877 / 794,
  28929. bottom: 47 / 924
  28930. }
  28931. },
  28932. },
  28933. [
  28934. {
  28935. name: "Macro",
  28936. height: math.unit(300, "meters"),
  28937. default: true
  28938. },
  28939. ]
  28940. ))
  28941. characterMakers.push(() => makeCharacter(
  28942. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28943. {
  28944. side: {
  28945. height: math.unit(10 + 7 / 12, "feet"),
  28946. weight: math.unit(2.5, "tons"),
  28947. name: "Side",
  28948. image: {
  28949. source: "./media/characters/aasha/side.svg",
  28950. extra: 1345 / 1245,
  28951. bottom: 111 / 1456
  28952. }
  28953. },
  28954. back: {
  28955. height: math.unit(10 + 7 / 12, "feet"),
  28956. weight: math.unit(2.5, "tons"),
  28957. name: "Back",
  28958. image: {
  28959. source: "./media/characters/aasha/back.svg",
  28960. extra: 1133 / 1057,
  28961. bottom: 257 / 1390
  28962. }
  28963. },
  28964. },
  28965. [
  28966. {
  28967. name: "Normal",
  28968. height: math.unit(10 + 7 / 12, "feet"),
  28969. default: true
  28970. },
  28971. ]
  28972. ))
  28973. characterMakers.push(() => makeCharacter(
  28974. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28975. {
  28976. front: {
  28977. height: math.unit(6 + 3 / 12, "feet"),
  28978. name: "Front",
  28979. image: {
  28980. source: "./media/characters/nevan/front.svg",
  28981. extra: 704 / 704,
  28982. bottom: 28 / 732
  28983. }
  28984. },
  28985. back: {
  28986. height: math.unit(6 + 3 / 12, "feet"),
  28987. name: "Back",
  28988. image: {
  28989. source: "./media/characters/nevan/back.svg",
  28990. extra: 714 / 714,
  28991. bottom: 21 / 735
  28992. }
  28993. },
  28994. frontFlaccid: {
  28995. height: math.unit(6 + 3 / 12, "feet"),
  28996. name: "Front (Flaccid)",
  28997. image: {
  28998. source: "./media/characters/nevan/front-flaccid.svg",
  28999. extra: 704 / 704,
  29000. bottom: 28 / 732
  29001. }
  29002. },
  29003. frontErect: {
  29004. height: math.unit(6 + 3 / 12, "feet"),
  29005. name: "Front (Erect)",
  29006. image: {
  29007. source: "./media/characters/nevan/front-erect.svg",
  29008. extra: 704 / 704,
  29009. bottom: 28 / 732
  29010. }
  29011. },
  29012. backFlaccid: {
  29013. height: math.unit(6 + 3 / 12, "feet"),
  29014. name: "Back (Flaccid)",
  29015. image: {
  29016. source: "./media/characters/nevan/back-flaccid.svg",
  29017. extra: 714 / 714,
  29018. bottom: 21 / 735
  29019. }
  29020. },
  29021. },
  29022. [
  29023. {
  29024. name: "Normal",
  29025. height: math.unit(6 + 3 / 12, "feet"),
  29026. default: true
  29027. },
  29028. ]
  29029. ))
  29030. characterMakers.push(() => makeCharacter(
  29031. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29032. {
  29033. front: {
  29034. height: math.unit(4, "feet"),
  29035. name: "Front",
  29036. image: {
  29037. source: "./media/characters/arhan/front.svg",
  29038. extra: 3368 / 3133,
  29039. bottom: 0 / 3368
  29040. }
  29041. },
  29042. side: {
  29043. height: math.unit(4, "feet"),
  29044. name: "Side",
  29045. image: {
  29046. source: "./media/characters/arhan/side.svg",
  29047. extra: 3347 / 3105,
  29048. bottom: 0 / 3347
  29049. }
  29050. },
  29051. tongue: {
  29052. height: math.unit(1.42, "feet"),
  29053. name: "Tongue",
  29054. image: {
  29055. source: "./media/characters/arhan/tongue.svg"
  29056. }
  29057. },
  29058. head: {
  29059. height: math.unit(0.85, "feet"),
  29060. name: "Head",
  29061. image: {
  29062. source: "./media/characters/arhan/head.svg"
  29063. }
  29064. },
  29065. },
  29066. [
  29067. {
  29068. name: "Normal",
  29069. height: math.unit(4, "feet"),
  29070. default: true
  29071. },
  29072. ]
  29073. ))
  29074. characterMakers.push(() => makeCharacter(
  29075. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29076. {
  29077. front: {
  29078. height: math.unit(5 + 7.5 / 12, "feet"),
  29079. weight: math.unit(120, "lb"),
  29080. name: "Front",
  29081. image: {
  29082. source: "./media/characters/digi-duncan/front.svg",
  29083. extra: 330 / 326,
  29084. bottom: 16 / 346
  29085. }
  29086. },
  29087. side: {
  29088. height: math.unit(5 + 7.5 / 12, "feet"),
  29089. weight: math.unit(120, "lb"),
  29090. name: "Side",
  29091. image: {
  29092. source: "./media/characters/digi-duncan/side.svg",
  29093. extra: 341 / 337,
  29094. bottom: 1 / 342
  29095. }
  29096. },
  29097. back: {
  29098. height: math.unit(5 + 7.5 / 12, "feet"),
  29099. weight: math.unit(120, "lb"),
  29100. name: "Back",
  29101. image: {
  29102. source: "./media/characters/digi-duncan/back.svg",
  29103. extra: 330 / 326,
  29104. bottom: 12 / 342
  29105. }
  29106. },
  29107. },
  29108. [
  29109. {
  29110. name: "Speck",
  29111. height: math.unit(0.25, "mm")
  29112. },
  29113. {
  29114. name: "Micro",
  29115. height: math.unit(5, "mm")
  29116. },
  29117. {
  29118. name: "Tiny",
  29119. height: math.unit(0.5, "inches"),
  29120. default: true
  29121. },
  29122. {
  29123. name: "Human",
  29124. height: math.unit(5 + 7.5 / 12, "feet")
  29125. },
  29126. {
  29127. name: "Minigiant",
  29128. height: math.unit(8 + 5.25, "feet")
  29129. },
  29130. {
  29131. name: "Giant",
  29132. height: math.unit(2000, "feet")
  29133. },
  29134. {
  29135. name: "Mega",
  29136. height: math.unit(371.1, "miles")
  29137. },
  29138. ]
  29139. ))
  29140. characterMakers.push(() => makeCharacter(
  29141. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29142. {
  29143. front: {
  29144. height: math.unit(2, "meters"),
  29145. weight: math.unit(350, "kg"),
  29146. name: "Front",
  29147. image: {
  29148. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29149. extra: 898 / 838,
  29150. bottom: 9 / 907
  29151. }
  29152. },
  29153. },
  29154. [
  29155. {
  29156. name: "Micro",
  29157. height: math.unit(8, "meters")
  29158. },
  29159. {
  29160. name: "Normal",
  29161. height: math.unit(50, "meters"),
  29162. default: true
  29163. },
  29164. {
  29165. name: "Macro",
  29166. height: math.unit(500, "meters")
  29167. },
  29168. ]
  29169. ))
  29170. characterMakers.push(() => makeCharacter(
  29171. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29172. {
  29173. front: {
  29174. height: math.unit(6 + 6 / 12, "feet"),
  29175. name: "Front",
  29176. image: {
  29177. source: "./media/characters/khardesh/front.svg",
  29178. extra: 888 / 797,
  29179. bottom: 25 / 913
  29180. }
  29181. },
  29182. },
  29183. [
  29184. {
  29185. name: "Normal",
  29186. height: math.unit(6 + 6 / 12, "feet"),
  29187. default: true
  29188. },
  29189. {
  29190. name: "Normal+",
  29191. height: math.unit(4, "meters")
  29192. },
  29193. {
  29194. name: "Macro",
  29195. height: math.unit(50, "meters")
  29196. },
  29197. {
  29198. name: "Macro+",
  29199. height: math.unit(100, "meters")
  29200. },
  29201. {
  29202. name: "Megamacro",
  29203. height: math.unit(20, "km")
  29204. },
  29205. ]
  29206. ))
  29207. characterMakers.push(() => makeCharacter(
  29208. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29209. {
  29210. front: {
  29211. height: math.unit(6, "feet"),
  29212. weight: math.unit(150, "lb"),
  29213. name: "Front",
  29214. image: {
  29215. source: "./media/characters/kosho/front.svg",
  29216. extra: 1847 / 1847,
  29217. bottom: 86 / 1933
  29218. }
  29219. },
  29220. },
  29221. [
  29222. {
  29223. name: "Second-stage micro",
  29224. height: math.unit(0.5, "inches")
  29225. },
  29226. {
  29227. name: "First-stage micro",
  29228. height: math.unit(6, "inches")
  29229. },
  29230. {
  29231. name: "Normal",
  29232. height: math.unit(6, "feet"),
  29233. default: true
  29234. },
  29235. {
  29236. name: "First-stage macro",
  29237. height: math.unit(72, "feet")
  29238. },
  29239. {
  29240. name: "Second-stage macro",
  29241. height: math.unit(864, "feet")
  29242. },
  29243. ]
  29244. ))
  29245. characterMakers.push(() => makeCharacter(
  29246. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29247. {
  29248. normal: {
  29249. height: math.unit(4 + 6 / 12, "feet"),
  29250. name: "Normal",
  29251. image: {
  29252. source: "./media/characters/hydra/normal.svg",
  29253. extra: 2833 / 2634,
  29254. bottom: 68 / 2901
  29255. }
  29256. },
  29257. smol: {
  29258. height: math.unit(0.705, "inches"),
  29259. name: "Smol",
  29260. image: {
  29261. source: "./media/characters/hydra/smol.svg",
  29262. extra: 2715 / 2540,
  29263. bottom: 0 / 2715
  29264. }
  29265. },
  29266. },
  29267. [
  29268. {
  29269. name: "Normal",
  29270. height: math.unit(4 + 6 / 12, "feet"),
  29271. default: true
  29272. }
  29273. ]
  29274. ))
  29275. characterMakers.push(() => makeCharacter(
  29276. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29277. {
  29278. front: {
  29279. height: math.unit(0.6, "cm"),
  29280. name: "Front",
  29281. image: {
  29282. source: "./media/characters/daz/front.svg",
  29283. extra: 1682 / 1164,
  29284. bottom: 42 / 1724
  29285. }
  29286. },
  29287. },
  29288. [
  29289. {
  29290. name: "Normal",
  29291. height: math.unit(0.6, "cm"),
  29292. default: true
  29293. },
  29294. ]
  29295. ))
  29296. characterMakers.push(() => makeCharacter(
  29297. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29298. {
  29299. front: {
  29300. height: math.unit(6, "feet"),
  29301. weight: math.unit(235, "lb"),
  29302. name: "Front",
  29303. image: {
  29304. source: "./media/characters/theo-pangolin/front.svg",
  29305. extra: 1996 / 1969,
  29306. bottom: 115 / 2111
  29307. }
  29308. },
  29309. back: {
  29310. height: math.unit(6, "feet"),
  29311. weight: math.unit(235, "lb"),
  29312. name: "Back",
  29313. image: {
  29314. source: "./media/characters/theo-pangolin/back.svg",
  29315. extra: 1979 / 1979,
  29316. bottom: 40 / 2019
  29317. }
  29318. },
  29319. feral: {
  29320. height: math.unit(2, "feet"),
  29321. weight: math.unit(30, "lb"),
  29322. name: "Feral",
  29323. image: {
  29324. source: "./media/characters/theo-pangolin/feral.svg",
  29325. extra: 803 / 791,
  29326. bottom: 181 / 984
  29327. }
  29328. },
  29329. footFive: {
  29330. height: math.unit(1.43, "feet"),
  29331. name: "Foot (Five Toes)",
  29332. image: {
  29333. source: "./media/characters/theo-pangolin/foot-five.svg"
  29334. }
  29335. },
  29336. footFour: {
  29337. height: math.unit(1.43, "feet"),
  29338. name: "Foot (Four Toes)",
  29339. image: {
  29340. source: "./media/characters/theo-pangolin/foot-four.svg"
  29341. }
  29342. },
  29343. handFour: {
  29344. height: math.unit(0.81, "feet"),
  29345. name: "Hand (Four Fingers)",
  29346. image: {
  29347. source: "./media/characters/theo-pangolin/hand-four.svg"
  29348. }
  29349. },
  29350. handThree: {
  29351. height: math.unit(0.81, "feet"),
  29352. name: "Hand (Three Fingers)",
  29353. image: {
  29354. source: "./media/characters/theo-pangolin/hand-three.svg"
  29355. }
  29356. },
  29357. headFront: {
  29358. height: math.unit(1.37, "feet"),
  29359. name: "Head (Front)",
  29360. image: {
  29361. source: "./media/characters/theo-pangolin/head-front.svg"
  29362. }
  29363. },
  29364. headSide: {
  29365. height: math.unit(1.43, "feet"),
  29366. name: "Head (Side)",
  29367. image: {
  29368. source: "./media/characters/theo-pangolin/head-side.svg"
  29369. }
  29370. },
  29371. tongue: {
  29372. height: math.unit(2.29, "feet"),
  29373. name: "Tongue",
  29374. image: {
  29375. source: "./media/characters/theo-pangolin/tongue.svg"
  29376. }
  29377. },
  29378. },
  29379. [
  29380. {
  29381. name: "Normal",
  29382. height: math.unit(6, "feet")
  29383. },
  29384. {
  29385. name: "Macro",
  29386. height: math.unit(400, "feet"),
  29387. default: true
  29388. },
  29389. ]
  29390. ))
  29391. characterMakers.push(() => makeCharacter(
  29392. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29393. {
  29394. front: {
  29395. height: math.unit(6, "inches"),
  29396. weight: math.unit(0.036, "kg"),
  29397. name: "Front",
  29398. image: {
  29399. source: "./media/characters/renée/front.svg",
  29400. extra: 900 / 886,
  29401. bottom: 8 / 908
  29402. }
  29403. },
  29404. },
  29405. [
  29406. {
  29407. name: "Nano",
  29408. height: math.unit(1, "nm")
  29409. },
  29410. {
  29411. name: "Micro",
  29412. height: math.unit(1, "mm")
  29413. },
  29414. {
  29415. name: "Normal",
  29416. height: math.unit(6, "inches")
  29417. },
  29418. {
  29419. name: "Macro",
  29420. height: math.unit(2000, "feet"),
  29421. default: true
  29422. },
  29423. {
  29424. name: "Megamacro",
  29425. height: math.unit(2, "km")
  29426. },
  29427. {
  29428. name: "Gigamacro",
  29429. height: math.unit(2000, "km")
  29430. },
  29431. {
  29432. name: "Teramacro",
  29433. height: math.unit(250000, "km")
  29434. },
  29435. ]
  29436. ))
  29437. characterMakers.push(() => makeCharacter(
  29438. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29439. {
  29440. front: {
  29441. height: math.unit(4, "meters"),
  29442. weight: math.unit(150, "kg"),
  29443. name: "Front",
  29444. image: {
  29445. source: "./media/characters/caledvwlch/front.svg",
  29446. extra: 1760 / 1551,
  29447. bottom: 28 / 1788
  29448. }
  29449. },
  29450. side: {
  29451. height: math.unit(4, "meters"),
  29452. weight: math.unit(150, "kg"),
  29453. name: "Side",
  29454. image: {
  29455. source: "./media/characters/caledvwlch/side.svg",
  29456. extra: 1605 / 1536,
  29457. bottom: 31 / 1636
  29458. }
  29459. },
  29460. back: {
  29461. height: math.unit(4, "meters"),
  29462. weight: math.unit(150, "kg"),
  29463. name: "Back",
  29464. image: {
  29465. source: "./media/characters/caledvwlch/back.svg",
  29466. extra: 1635 / 1565,
  29467. bottom: 27 / 1662
  29468. }
  29469. },
  29470. },
  29471. [
  29472. {
  29473. name: "\"Incognito\"",
  29474. height: math.unit(4, "meters")
  29475. },
  29476. {
  29477. name: "Small rampage",
  29478. height: math.unit(600, "meters")
  29479. },
  29480. {
  29481. name: "Mega",
  29482. height: math.unit(30, "km")
  29483. },
  29484. {
  29485. name: "Home-size",
  29486. height: math.unit(50, "km"),
  29487. default: true
  29488. },
  29489. {
  29490. name: "Giga",
  29491. height: math.unit(300, "km")
  29492. },
  29493. {
  29494. name: "Lounging",
  29495. height: math.unit(11000, "km")
  29496. },
  29497. {
  29498. name: "Planet snacking",
  29499. height: math.unit(2000000, "km")
  29500. },
  29501. ]
  29502. ))
  29503. characterMakers.push(() => makeCharacter(
  29504. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29505. {
  29506. front: {
  29507. height: math.unit(6, "feet"),
  29508. weight: math.unit(215, "lb"),
  29509. name: "Front",
  29510. image: {
  29511. source: "./media/characters/sapphire-svell/front.svg",
  29512. extra: 495 / 455,
  29513. bottom: 20 / 515
  29514. }
  29515. },
  29516. back: {
  29517. height: math.unit(6, "feet"),
  29518. weight: math.unit(216, "lb"),
  29519. name: "Back",
  29520. image: {
  29521. source: "./media/characters/sapphire-svell/back.svg",
  29522. extra: 497 / 477,
  29523. bottom: 7 / 504
  29524. }
  29525. },
  29526. maw: {
  29527. height: math.unit(1.57, "feet"),
  29528. name: "Maw",
  29529. image: {
  29530. source: "./media/characters/sapphire-svell/maw.svg"
  29531. }
  29532. },
  29533. foot: {
  29534. height: math.unit(1.07, "feet"),
  29535. name: "Foot",
  29536. image: {
  29537. source: "./media/characters/sapphire-svell/foot.svg"
  29538. }
  29539. },
  29540. toering: {
  29541. height: math.unit(1.7, "inch"),
  29542. name: "Toering",
  29543. image: {
  29544. source: "./media/characters/sapphire-svell/toering.svg"
  29545. }
  29546. },
  29547. },
  29548. [
  29549. {
  29550. name: "Normal",
  29551. height: math.unit(300, "feet"),
  29552. default: true
  29553. },
  29554. {
  29555. name: "Augmented",
  29556. height: math.unit(1250, "feet")
  29557. },
  29558. {
  29559. name: "Unleashed",
  29560. height: math.unit(3000, "feet")
  29561. },
  29562. ]
  29563. ))
  29564. characterMakers.push(() => makeCharacter(
  29565. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29566. {
  29567. side: {
  29568. height: math.unit(2 + 3 / 12, "feet"),
  29569. weight: math.unit(110, "lb"),
  29570. name: "Side",
  29571. image: {
  29572. source: "./media/characters/glitch-flux/side.svg",
  29573. extra: 997 / 805,
  29574. bottom: 20 / 1017
  29575. }
  29576. },
  29577. },
  29578. [
  29579. {
  29580. name: "Normal",
  29581. height: math.unit(2 + 3 / 12, "feet"),
  29582. default: true
  29583. },
  29584. ]
  29585. ))
  29586. characterMakers.push(() => makeCharacter(
  29587. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29588. {
  29589. front: {
  29590. height: math.unit(4, "meters"),
  29591. name: "Front",
  29592. image: {
  29593. source: "./media/characters/mid/front.svg",
  29594. extra: 507 / 476,
  29595. bottom: 17 / 524
  29596. }
  29597. },
  29598. back: {
  29599. height: math.unit(4, "meters"),
  29600. name: "Back",
  29601. image: {
  29602. source: "./media/characters/mid/back.svg",
  29603. extra: 519 / 487,
  29604. bottom: 7 / 526
  29605. }
  29606. },
  29607. stuck: {
  29608. height: math.unit(2.2, "meters"),
  29609. name: "Stuck",
  29610. image: {
  29611. source: "./media/characters/mid/stuck.svg",
  29612. extra: 1951 / 1869,
  29613. bottom: 88 / 2039
  29614. }
  29615. }
  29616. },
  29617. [
  29618. {
  29619. name: "Normal",
  29620. height: math.unit(4, "meters"),
  29621. default: true
  29622. },
  29623. {
  29624. name: "Big",
  29625. height: math.unit(10, "meters")
  29626. },
  29627. {
  29628. name: "Macro",
  29629. height: math.unit(800, "meters")
  29630. },
  29631. {
  29632. name: "Megamacro",
  29633. height: math.unit(100, "km")
  29634. },
  29635. {
  29636. name: "Overgrown",
  29637. height: math.unit(1, "parsec")
  29638. },
  29639. ]
  29640. ))
  29641. characterMakers.push(() => makeCharacter(
  29642. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29643. {
  29644. front: {
  29645. height: math.unit(2.5, "meters"),
  29646. weight: math.unit(225, "kg"),
  29647. name: "Front",
  29648. image: {
  29649. source: "./media/characters/iris/front.svg",
  29650. extra: 3348 / 3251,
  29651. bottom: 205 / 3553
  29652. }
  29653. },
  29654. maw: {
  29655. height: math.unit(0.56, "meter"),
  29656. name: "Maw",
  29657. image: {
  29658. source: "./media/characters/iris/maw.svg"
  29659. }
  29660. },
  29661. },
  29662. [
  29663. {
  29664. name: "Mewter cat",
  29665. height: math.unit(1.2, "meters")
  29666. },
  29667. {
  29668. name: "Minimacro",
  29669. height: math.unit(2.5, "meters"),
  29670. default: true
  29671. },
  29672. {
  29673. name: "Macro",
  29674. height: math.unit(180, "meters")
  29675. },
  29676. {
  29677. name: "Megamacro",
  29678. height: math.unit(2746, "meters")
  29679. },
  29680. ]
  29681. ))
  29682. characterMakers.push(() => makeCharacter(
  29683. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29684. {
  29685. front: {
  29686. height: math.unit(6, "feet"),
  29687. weight: math.unit(135, "lb"),
  29688. name: "Front",
  29689. image: {
  29690. source: "./media/characters/axel/front.svg",
  29691. extra: 908 / 908,
  29692. bottom: 58 / 966
  29693. }
  29694. },
  29695. side: {
  29696. height: math.unit(6, "feet"),
  29697. weight: math.unit(135, "lb"),
  29698. name: "Side",
  29699. image: {
  29700. source: "./media/characters/axel/side.svg",
  29701. extra: 958 / 958,
  29702. bottom: 11 / 969
  29703. }
  29704. },
  29705. back: {
  29706. height: math.unit(6, "feet"),
  29707. weight: math.unit(135, "lb"),
  29708. name: "Back",
  29709. image: {
  29710. source: "./media/characters/axel/back.svg",
  29711. extra: 887 / 887,
  29712. bottom: 34 / 921
  29713. }
  29714. },
  29715. head: {
  29716. height: math.unit(1.07, "feet"),
  29717. name: "Head",
  29718. image: {
  29719. source: "./media/characters/axel/head.svg"
  29720. }
  29721. },
  29722. beak: {
  29723. height: math.unit(1.4, "feet"),
  29724. name: "Beak",
  29725. image: {
  29726. source: "./media/characters/axel/beak.svg"
  29727. }
  29728. },
  29729. beakSide: {
  29730. height: math.unit(1.4, "feet"),
  29731. name: "Beak Side",
  29732. image: {
  29733. source: "./media/characters/axel/beak-side.svg"
  29734. }
  29735. },
  29736. sheath: {
  29737. height: math.unit(0.5, "feet"),
  29738. name: "Sheath",
  29739. image: {
  29740. source: "./media/characters/axel/sheath.svg"
  29741. }
  29742. },
  29743. dick: {
  29744. height: math.unit(0.98, "feet"),
  29745. name: "Dick",
  29746. image: {
  29747. source: "./media/characters/axel/dick.svg"
  29748. }
  29749. },
  29750. },
  29751. [
  29752. {
  29753. name: "Macro",
  29754. height: math.unit(68, "meters"),
  29755. default: true
  29756. },
  29757. ]
  29758. ))
  29759. characterMakers.push(() => makeCharacter(
  29760. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29761. {
  29762. front: {
  29763. height: math.unit(3.5, "meters"),
  29764. weight: math.unit(1200, "kg"),
  29765. name: "Front",
  29766. image: {
  29767. source: "./media/characters/joanna/front.svg",
  29768. extra: 1596 / 1488,
  29769. bottom: 29 / 1625
  29770. }
  29771. },
  29772. back: {
  29773. height: math.unit(3.5, "meters"),
  29774. weight: math.unit(1200, "kg"),
  29775. name: "Back",
  29776. image: {
  29777. source: "./media/characters/joanna/back.svg",
  29778. extra: 1594 / 1495,
  29779. bottom: 26 / 1620
  29780. }
  29781. },
  29782. frontShorts: {
  29783. height: math.unit(3.5, "meters"),
  29784. weight: math.unit(1200, "kg"),
  29785. name: "Front (Shorts)",
  29786. image: {
  29787. source: "./media/characters/joanna/front-shorts.svg",
  29788. extra: 1596 / 1488,
  29789. bottom: 29 / 1625
  29790. }
  29791. },
  29792. frontBiker: {
  29793. height: math.unit(3.5, "meters"),
  29794. weight: math.unit(1200, "kg"),
  29795. name: "Front (Biker)",
  29796. image: {
  29797. source: "./media/characters/joanna/front-biker.svg",
  29798. extra: 1596 / 1488,
  29799. bottom: 29 / 1625
  29800. }
  29801. },
  29802. backBiker: {
  29803. height: math.unit(3.5, "meters"),
  29804. weight: math.unit(1200, "kg"),
  29805. name: "Back (Biker)",
  29806. image: {
  29807. source: "./media/characters/joanna/back-biker.svg",
  29808. extra: 1594 / 1495,
  29809. bottom: 88 / 1682
  29810. }
  29811. },
  29812. bikeLeft: {
  29813. height: math.unit(2.4, "meters"),
  29814. weight: math.unit(1600, "kg"),
  29815. name: "Bike (Left)",
  29816. image: {
  29817. source: "./media/characters/joanna/bike-left.svg",
  29818. extra: 720 / 720,
  29819. bottom: 8 / 728
  29820. }
  29821. },
  29822. bikeRight: {
  29823. height: math.unit(2.4, "meters"),
  29824. weight: math.unit(1600, "kg"),
  29825. name: "Bike (Right)",
  29826. image: {
  29827. source: "./media/characters/joanna/bike-right.svg",
  29828. extra: 720 / 720,
  29829. bottom: 8 / 728
  29830. }
  29831. },
  29832. },
  29833. [
  29834. {
  29835. name: "Incognito",
  29836. height: math.unit(3.5, "meters")
  29837. },
  29838. {
  29839. name: "Casual Big",
  29840. height: math.unit(200, "meters")
  29841. },
  29842. {
  29843. name: "Macro",
  29844. height: math.unit(600, "meters")
  29845. },
  29846. {
  29847. name: "Original",
  29848. height: math.unit(20, "km"),
  29849. default: true
  29850. },
  29851. {
  29852. name: "Giga",
  29853. height: math.unit(400, "km")
  29854. },
  29855. {
  29856. name: "Lounging",
  29857. height: math.unit(1500, "km")
  29858. },
  29859. {
  29860. name: "Planetary",
  29861. height: math.unit(200000, "km")
  29862. },
  29863. ]
  29864. ))
  29865. characterMakers.push(() => makeCharacter(
  29866. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29867. {
  29868. front: {
  29869. height: math.unit(6, "feet"),
  29870. weight: math.unit(150, "lb"),
  29871. name: "Front",
  29872. image: {
  29873. source: "./media/characters/hugo-sigil/front.svg",
  29874. extra: 522 / 500,
  29875. bottom: 2 / 524
  29876. }
  29877. },
  29878. back: {
  29879. height: math.unit(6, "feet"),
  29880. weight: math.unit(150, "lb"),
  29881. name: "Back",
  29882. image: {
  29883. source: "./media/characters/hugo-sigil/back.svg",
  29884. extra: 519 / 495,
  29885. bottom: 5 / 524
  29886. }
  29887. },
  29888. maw: {
  29889. height: math.unit(1.4, "feet"),
  29890. weight: math.unit(150, "lb"),
  29891. name: "Maw",
  29892. image: {
  29893. source: "./media/characters/hugo-sigil/maw.svg"
  29894. }
  29895. },
  29896. feet: {
  29897. height: math.unit(1.56, "feet"),
  29898. weight: math.unit(150, "lb"),
  29899. name: "Feet",
  29900. image: {
  29901. source: "./media/characters/hugo-sigil/feet.svg",
  29902. extra: 177 / 177,
  29903. bottom: 12 / 189
  29904. }
  29905. },
  29906. },
  29907. [
  29908. {
  29909. name: "Normal",
  29910. height: math.unit(6, "feet")
  29911. },
  29912. {
  29913. name: "Macro",
  29914. height: math.unit(200, "feet"),
  29915. default: true
  29916. },
  29917. ]
  29918. ))
  29919. characterMakers.push(() => makeCharacter(
  29920. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29921. {
  29922. front: {
  29923. height: math.unit(6, "feet"),
  29924. weight: math.unit(150, "lb"),
  29925. name: "Front",
  29926. image: {
  29927. source: "./media/characters/peri/front.svg",
  29928. extra: 2354 / 2233,
  29929. bottom: 49 / 2403
  29930. }
  29931. },
  29932. },
  29933. [
  29934. {
  29935. name: "Really Small",
  29936. height: math.unit(1, "nm")
  29937. },
  29938. {
  29939. name: "Micro",
  29940. height: math.unit(4, "inches")
  29941. },
  29942. {
  29943. name: "Normal",
  29944. height: math.unit(7, "inches"),
  29945. default: true
  29946. },
  29947. {
  29948. name: "Macro",
  29949. height: math.unit(400, "feet")
  29950. },
  29951. {
  29952. name: "Megamacro",
  29953. height: math.unit(100, "miles")
  29954. },
  29955. ]
  29956. ))
  29957. characterMakers.push(() => makeCharacter(
  29958. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29959. {
  29960. frontSlim: {
  29961. height: math.unit(7, "feet"),
  29962. name: "Front (Slim)",
  29963. image: {
  29964. source: "./media/characters/issilora/front-slim.svg",
  29965. extra: 529 / 449,
  29966. bottom: 53 / 582
  29967. }
  29968. },
  29969. sideSlim: {
  29970. height: math.unit(7, "feet"),
  29971. name: "Side (Slim)",
  29972. image: {
  29973. source: "./media/characters/issilora/side-slim.svg",
  29974. extra: 570 / 480,
  29975. bottom: 30 / 600
  29976. }
  29977. },
  29978. backSlim: {
  29979. height: math.unit(7, "feet"),
  29980. name: "Back (Slim)",
  29981. image: {
  29982. source: "./media/characters/issilora/back-slim.svg",
  29983. extra: 537 / 455,
  29984. bottom: 46 / 583
  29985. }
  29986. },
  29987. frontBuff: {
  29988. height: math.unit(7, "feet"),
  29989. name: "Front (Buff)",
  29990. image: {
  29991. source: "./media/characters/issilora/front-buff.svg",
  29992. extra: 2310 / 2035,
  29993. bottom: 335 / 2645
  29994. }
  29995. },
  29996. head: {
  29997. height: math.unit(1.94, "feet"),
  29998. name: "Head",
  29999. image: {
  30000. source: "./media/characters/issilora/head.svg"
  30001. }
  30002. },
  30003. },
  30004. [
  30005. {
  30006. name: "Minimum",
  30007. height: math.unit(7, "feet")
  30008. },
  30009. {
  30010. name: "Comfortable",
  30011. height: math.unit(17, "feet")
  30012. },
  30013. {
  30014. name: "Fun Size",
  30015. height: math.unit(47, "feet")
  30016. },
  30017. {
  30018. name: "Natural Macro",
  30019. height: math.unit(137, "feet"),
  30020. default: true
  30021. },
  30022. {
  30023. name: "Maximum Kaiju",
  30024. height: math.unit(397, "feet")
  30025. },
  30026. ]
  30027. ))
  30028. characterMakers.push(() => makeCharacter(
  30029. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30030. {
  30031. front: {
  30032. height: math.unit(50 + 9/12, "feet"),
  30033. weight: math.unit(32.8, "tons"),
  30034. name: "Front",
  30035. image: {
  30036. source: "./media/characters/irb'iiritaahn/front.svg",
  30037. extra: 1878/1826,
  30038. bottom: 326/2204
  30039. }
  30040. },
  30041. back: {
  30042. height: math.unit(50 + 9/12, "feet"),
  30043. weight: math.unit(32.8, "tons"),
  30044. name: "Back",
  30045. image: {
  30046. source: "./media/characters/irb'iiritaahn/back.svg",
  30047. extra: 2052/2018,
  30048. bottom: 152/2204
  30049. }
  30050. },
  30051. head: {
  30052. height: math.unit(12.86, "feet"),
  30053. name: "Head",
  30054. image: {
  30055. source: "./media/characters/irb'iiritaahn/head.svg"
  30056. }
  30057. },
  30058. maw: {
  30059. height: math.unit(9.66, "feet"),
  30060. name: "Maw",
  30061. image: {
  30062. source: "./media/characters/irb'iiritaahn/maw.svg"
  30063. }
  30064. },
  30065. frontDick: {
  30066. height: math.unit(8.78461, "feet"),
  30067. name: "Front Dick",
  30068. image: {
  30069. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30070. }
  30071. },
  30072. rearDick: {
  30073. height: math.unit(8.78461, "feet"),
  30074. name: "Rear Dick",
  30075. image: {
  30076. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30077. }
  30078. },
  30079. rearDickUnfolded: {
  30080. height: math.unit(8.78, "feet"),
  30081. name: "Rear Dick (Unfolded)",
  30082. image: {
  30083. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30084. }
  30085. },
  30086. wings: {
  30087. height: math.unit(43, "feet"),
  30088. name: "Wings",
  30089. image: {
  30090. source: "./media/characters/irb'iiritaahn/wings.svg"
  30091. }
  30092. },
  30093. },
  30094. [
  30095. {
  30096. name: "Macro",
  30097. height: math.unit(50 + 9/12, "feet"),
  30098. default: true
  30099. },
  30100. ]
  30101. ))
  30102. characterMakers.push(() => makeCharacter(
  30103. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30104. {
  30105. front: {
  30106. height: math.unit(205, "cm"),
  30107. weight: math.unit(102, "kg"),
  30108. name: "Front",
  30109. image: {
  30110. source: "./media/characters/irbisgreif/front.svg",
  30111. extra: 785/706,
  30112. bottom: 13/798
  30113. }
  30114. },
  30115. back: {
  30116. height: math.unit(205, "cm"),
  30117. weight: math.unit(102, "kg"),
  30118. name: "Back",
  30119. image: {
  30120. source: "./media/characters/irbisgreif/back.svg",
  30121. extra: 713/701,
  30122. bottom: 26/739
  30123. }
  30124. },
  30125. frontDressed: {
  30126. height: math.unit(216, "cm"),
  30127. weight: math.unit(102, "kg"),
  30128. name: "Front-dressed",
  30129. image: {
  30130. source: "./media/characters/irbisgreif/front-dressed.svg",
  30131. extra: 902/776,
  30132. bottom: 14/916
  30133. }
  30134. },
  30135. sideDressed: {
  30136. height: math.unit(195, "cm"),
  30137. weight: math.unit(102, "kg"),
  30138. name: "Side-dressed",
  30139. image: {
  30140. source: "./media/characters/irbisgreif/side-dressed.svg",
  30141. extra: 788/688,
  30142. bottom: 21/809
  30143. }
  30144. },
  30145. backDressed: {
  30146. height: math.unit(216, "cm"),
  30147. weight: math.unit(102, "kg"),
  30148. name: "Back-dressed",
  30149. image: {
  30150. source: "./media/characters/irbisgreif/back-dressed.svg",
  30151. extra: 901/783,
  30152. bottom: 10/911
  30153. }
  30154. },
  30155. dick: {
  30156. height: math.unit(0.49, "feet"),
  30157. name: "Dick",
  30158. image: {
  30159. source: "./media/characters/irbisgreif/dick.svg"
  30160. }
  30161. },
  30162. wingTop: {
  30163. height: math.unit(1.93 , "feet"),
  30164. name: "Wing-top",
  30165. image: {
  30166. source: "./media/characters/irbisgreif/wing-top.svg"
  30167. }
  30168. },
  30169. wingBottom: {
  30170. height: math.unit(1.93 , "feet"),
  30171. name: "Wing-bottom",
  30172. image: {
  30173. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30174. }
  30175. },
  30176. },
  30177. [
  30178. {
  30179. name: "Normal",
  30180. height: math.unit(216, "cm"),
  30181. default: true
  30182. },
  30183. ]
  30184. ))
  30185. characterMakers.push(() => makeCharacter(
  30186. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30187. {
  30188. front: {
  30189. height: math.unit(6, "feet"),
  30190. weight: math.unit(150, "lb"),
  30191. name: "Front",
  30192. image: {
  30193. source: "./media/characters/pride/front.svg",
  30194. extra: 1299/1230,
  30195. bottom: 18/1317
  30196. }
  30197. },
  30198. },
  30199. [
  30200. {
  30201. name: "Normal",
  30202. height: math.unit(7, "feet")
  30203. },
  30204. {
  30205. name: "Mini-macro",
  30206. height: math.unit(11, "feet")
  30207. },
  30208. {
  30209. name: "Macro",
  30210. height: math.unit(15, "meters"),
  30211. default: true
  30212. },
  30213. {
  30214. name: "Macro+",
  30215. height: math.unit(40, "meters")
  30216. },
  30217. ]
  30218. ))
  30219. characterMakers.push(() => makeCharacter(
  30220. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30221. {
  30222. front: {
  30223. height: math.unit(4 + 2 / 12, "feet"),
  30224. weight: math.unit(95, "lb"),
  30225. name: "Front",
  30226. image: {
  30227. source: "./media/characters/vaelophis-nyx/front.svg",
  30228. extra: 2532/2330,
  30229. bottom: 0/2532
  30230. }
  30231. },
  30232. back: {
  30233. height: math.unit(4 + 2 / 12, "feet"),
  30234. weight: math.unit(95, "lb"),
  30235. name: "Back",
  30236. image: {
  30237. source: "./media/characters/vaelophis-nyx/back.svg",
  30238. extra: 2484/2361,
  30239. bottom: 0/2484
  30240. }
  30241. },
  30242. feralSide: {
  30243. height: math.unit(2 + 1/12, "feet"),
  30244. weight: math.unit(20, "lb"),
  30245. name: "Feral (Side)",
  30246. image: {
  30247. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30248. extra: 1721/1581,
  30249. bottom: 70/1791
  30250. }
  30251. },
  30252. feralLazing: {
  30253. height: math.unit(1.08, "feet"),
  30254. weight: math.unit(20, "lb"),
  30255. name: "Feral (Lazing)",
  30256. image: {
  30257. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30258. extra: 822/822,
  30259. bottom: 248/1070
  30260. }
  30261. },
  30262. ear: {
  30263. height: math.unit(0.416, "feet"),
  30264. name: "Ear",
  30265. image: {
  30266. source: "./media/characters/vaelophis-nyx/ear.svg"
  30267. }
  30268. },
  30269. eye: {
  30270. height: math.unit(0.0748, "feet"),
  30271. name: "Eye",
  30272. image: {
  30273. source: "./media/characters/vaelophis-nyx/eye.svg"
  30274. }
  30275. },
  30276. mouth: {
  30277. height: math.unit(0.378, "feet"),
  30278. name: "Mouth",
  30279. image: {
  30280. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30281. }
  30282. },
  30283. spade: {
  30284. height: math.unit(0.55, "feet"),
  30285. name: "Spade",
  30286. image: {
  30287. source: "./media/characters/vaelophis-nyx/spade.svg"
  30288. }
  30289. },
  30290. },
  30291. [
  30292. {
  30293. name: "Normal",
  30294. height: math.unit(4 + 2/12, "feet"),
  30295. default: true
  30296. },
  30297. ]
  30298. ))
  30299. characterMakers.push(() => makeCharacter(
  30300. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30301. {
  30302. front: {
  30303. height: math.unit(7, "feet"),
  30304. weight: math.unit(231, "lb"),
  30305. name: "Front",
  30306. image: {
  30307. source: "./media/characters/flux/front.svg",
  30308. extra: 919/871,
  30309. bottom: 0/919
  30310. }
  30311. },
  30312. back: {
  30313. height: math.unit(7, "feet"),
  30314. weight: math.unit(231, "lb"),
  30315. name: "Back",
  30316. image: {
  30317. source: "./media/characters/flux/back.svg",
  30318. extra: 1040/992,
  30319. bottom: 0/1040
  30320. }
  30321. },
  30322. frontDressed: {
  30323. height: math.unit(7, "feet"),
  30324. weight: math.unit(231, "lb"),
  30325. name: "Front (Dressed)",
  30326. image: {
  30327. source: "./media/characters/flux/front-dressed.svg",
  30328. extra: 919/871,
  30329. bottom: 0/919
  30330. }
  30331. },
  30332. feralSide: {
  30333. height: math.unit(5, "feet"),
  30334. weight: math.unit(150, "lb"),
  30335. name: "Feral (Side)",
  30336. image: {
  30337. source: "./media/characters/flux/feral-side.svg",
  30338. extra: 598/528,
  30339. bottom: 28/626
  30340. }
  30341. },
  30342. head: {
  30343. height: math.unit(1.585, "feet"),
  30344. name: "Head",
  30345. image: {
  30346. source: "./media/characters/flux/head.svg"
  30347. }
  30348. },
  30349. headSide: {
  30350. height: math.unit(1.74, "feet"),
  30351. name: "Head (Side)",
  30352. image: {
  30353. source: "./media/characters/flux/head-side.svg"
  30354. }
  30355. },
  30356. headSideFire: {
  30357. height: math.unit(1.76, "feet"),
  30358. name: "Head (Side, Fire)",
  30359. image: {
  30360. source: "./media/characters/flux/head-side-fire.svg"
  30361. }
  30362. },
  30363. },
  30364. [
  30365. {
  30366. name: "Normal",
  30367. height: math.unit(7, "feet"),
  30368. default: true
  30369. },
  30370. ]
  30371. ))
  30372. characterMakers.push(() => makeCharacter(
  30373. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30374. {
  30375. front: {
  30376. height: math.unit(9, "feet"),
  30377. weight: math.unit(1012, "lb"),
  30378. name: "Front",
  30379. image: {
  30380. source: "./media/characters/ulfra-lupae/front.svg",
  30381. extra: 1083/1011,
  30382. bottom: 67/1150
  30383. }
  30384. },
  30385. },
  30386. [
  30387. {
  30388. name: "Micro",
  30389. height: math.unit(6, "inches")
  30390. },
  30391. {
  30392. name: "Socializing",
  30393. height: math.unit(6 + 5/12, "feet")
  30394. },
  30395. {
  30396. name: "Normal",
  30397. height: math.unit(9, "feet"),
  30398. default: true
  30399. },
  30400. {
  30401. name: "Macro",
  30402. height: math.unit(150, "feet")
  30403. },
  30404. ]
  30405. ))
  30406. characterMakers.push(() => makeCharacter(
  30407. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30408. {
  30409. front: {
  30410. height: math.unit(5 + 2/12, "feet"),
  30411. weight: math.unit(120, "lb"),
  30412. name: "Front",
  30413. image: {
  30414. source: "./media/characters/timber/front.svg",
  30415. extra: 2814/2705,
  30416. bottom: 181/2995
  30417. }
  30418. },
  30419. },
  30420. [
  30421. {
  30422. name: "Normal",
  30423. height: math.unit(5 + 2/12, "feet"),
  30424. default: true
  30425. },
  30426. ]
  30427. ))
  30428. characterMakers.push(() => makeCharacter(
  30429. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30430. {
  30431. front: {
  30432. height: math.unit(5 + 7/12, "feet"),
  30433. weight: math.unit(220, "lb"),
  30434. name: "Front",
  30435. image: {
  30436. source: "./media/characters/nicki/front.svg",
  30437. extra: 453/419,
  30438. bottom: 7/460
  30439. }
  30440. },
  30441. frontAlt: {
  30442. height: math.unit(5 + 7/12, "feet"),
  30443. weight: math.unit(220, "lb"),
  30444. name: "Front-alt",
  30445. image: {
  30446. source: "./media/characters/nicki/front-alt.svg",
  30447. extra: 435/411,
  30448. bottom: 12/447
  30449. }
  30450. },
  30451. back: {
  30452. height: math.unit(5 + 7/12, "feet"),
  30453. weight: math.unit(220, "lb"),
  30454. name: "Back",
  30455. image: {
  30456. source: "./media/characters/nicki/back.svg",
  30457. extra: 440/413,
  30458. bottom: 19/459
  30459. }
  30460. },
  30461. taur: {
  30462. height: math.unit(7 + 6/12, "feet"),
  30463. weight: math.unit(700, "lb"),
  30464. name: "Taur",
  30465. image: {
  30466. source: "./media/characters/nicki/taur.svg",
  30467. extra: 975/773,
  30468. bottom: 0/975
  30469. }
  30470. },
  30471. frontNsfw: {
  30472. height: math.unit(5 + 7/12, "feet"),
  30473. weight: math.unit(220, "lb"),
  30474. name: "Front (NSFW)",
  30475. image: {
  30476. source: "./media/characters/nicki/front-nsfw.svg",
  30477. extra: 453/419,
  30478. bottom: 7/460
  30479. }
  30480. },
  30481. frontNsfwAlt: {
  30482. height: math.unit(5 + 7/12, "feet"),
  30483. weight: math.unit(220, "lb"),
  30484. name: "Front (Alt, NSFW)",
  30485. image: {
  30486. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30487. extra: 435/411,
  30488. bottom: 12/447
  30489. }
  30490. },
  30491. backNsfw: {
  30492. height: math.unit(5 + 7/12, "feet"),
  30493. weight: math.unit(220, "lb"),
  30494. name: "Back (NSFW)",
  30495. image: {
  30496. source: "./media/characters/nicki/back-nsfw.svg",
  30497. extra: 440/413,
  30498. bottom: 19/459
  30499. }
  30500. },
  30501. head: {
  30502. height: math.unit(2.1, "feet"),
  30503. name: "Head",
  30504. image: {
  30505. source: "./media/characters/nicki/head.svg"
  30506. }
  30507. },
  30508. paw: {
  30509. height: math.unit(1.88, "feet"),
  30510. name: "Paw",
  30511. image: {
  30512. source: "./media/characters/nicki/paw.svg"
  30513. }
  30514. },
  30515. },
  30516. [
  30517. {
  30518. name: "Normal",
  30519. height: math.unit(5 + 7/12, "feet"),
  30520. default: true
  30521. },
  30522. ]
  30523. ))
  30524. characterMakers.push(() => makeCharacter(
  30525. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30526. {
  30527. front: {
  30528. height: math.unit(7 + 10/12, "feet"),
  30529. weight: math.unit(3.5, "tons"),
  30530. name: "Front",
  30531. image: {
  30532. source: "./media/characters/lee/front.svg",
  30533. extra: 1773/1615,
  30534. bottom: 86/1859
  30535. }
  30536. },
  30537. hand: {
  30538. height: math.unit(1.78, "feet"),
  30539. name: "Hand",
  30540. image: {
  30541. source: "./media/characters/lee/hand.svg"
  30542. }
  30543. },
  30544. maw: {
  30545. height: math.unit(1.18, "feet"),
  30546. name: "Maw",
  30547. image: {
  30548. source: "./media/characters/lee/maw.svg"
  30549. }
  30550. },
  30551. },
  30552. [
  30553. {
  30554. name: "Normal",
  30555. height: math.unit(7 + 10/12, "feet"),
  30556. default: true
  30557. },
  30558. ]
  30559. ))
  30560. characterMakers.push(() => makeCharacter(
  30561. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30562. {
  30563. front: {
  30564. height: math.unit(9, "feet"),
  30565. name: "Front",
  30566. image: {
  30567. source: "./media/characters/guti/front.svg",
  30568. extra: 4551/4355,
  30569. bottom: 123/4674
  30570. }
  30571. },
  30572. tongue: {
  30573. height: math.unit(1, "feet"),
  30574. name: "Tongue",
  30575. image: {
  30576. source: "./media/characters/guti/tongue.svg"
  30577. }
  30578. },
  30579. paw: {
  30580. height: math.unit(1.18, "feet"),
  30581. name: "Paw",
  30582. image: {
  30583. source: "./media/characters/guti/paw.svg"
  30584. }
  30585. },
  30586. },
  30587. [
  30588. {
  30589. name: "Normal",
  30590. height: math.unit(9, "feet"),
  30591. default: true
  30592. },
  30593. ]
  30594. ))
  30595. characterMakers.push(() => makeCharacter(
  30596. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30597. {
  30598. side: {
  30599. height: math.unit(5, "meters"),
  30600. name: "Side",
  30601. image: {
  30602. source: "./media/characters/vesper/side.svg",
  30603. extra: 1605/1518,
  30604. bottom: 0/1605
  30605. }
  30606. },
  30607. },
  30608. [
  30609. {
  30610. name: "Small",
  30611. height: math.unit(5, "meters")
  30612. },
  30613. {
  30614. name: "Sage",
  30615. height: math.unit(100, "meters"),
  30616. default: true
  30617. },
  30618. {
  30619. name: "Fun Size",
  30620. height: math.unit(600, "meters")
  30621. },
  30622. {
  30623. name: "Goddess",
  30624. height: math.unit(20000, "km")
  30625. },
  30626. {
  30627. name: "Maximum",
  30628. height: math.unit(5, "galaxies")
  30629. },
  30630. ]
  30631. ))
  30632. characterMakers.push(() => makeCharacter(
  30633. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30634. {
  30635. front: {
  30636. height: math.unit(6 + 3/12, "feet"),
  30637. weight: math.unit(190, "lb"),
  30638. name: "Front",
  30639. image: {
  30640. source: "./media/characters/gawain/front.svg",
  30641. extra: 2222/2139,
  30642. bottom: 90/2312
  30643. }
  30644. },
  30645. back: {
  30646. height: math.unit(6 + 3/12, "feet"),
  30647. weight: math.unit(190, "lb"),
  30648. name: "Back",
  30649. image: {
  30650. source: "./media/characters/gawain/back.svg",
  30651. extra: 2199/2111,
  30652. bottom: 73/2272
  30653. }
  30654. },
  30655. },
  30656. [
  30657. {
  30658. name: "Normal",
  30659. height: math.unit(6 + 3/12, "feet"),
  30660. default: true
  30661. },
  30662. ]
  30663. ))
  30664. characterMakers.push(() => makeCharacter(
  30665. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30666. {
  30667. side: {
  30668. height: math.unit(3.5, "meters"),
  30669. weight: math.unit(16000, "lb"),
  30670. name: "Side",
  30671. image: {
  30672. source: "./media/characters/dascalti/side.svg",
  30673. extra: 392/273,
  30674. bottom: 47/439
  30675. }
  30676. },
  30677. breath: {
  30678. height: math.unit(7.4, "feet"),
  30679. name: "Breath",
  30680. image: {
  30681. source: "./media/characters/dascalti/breath.svg"
  30682. }
  30683. },
  30684. fed: {
  30685. height: math.unit(3.6, "meters"),
  30686. weight: math.unit(16000, "lb"),
  30687. name: "Fed",
  30688. image: {
  30689. source: "./media/characters/dascalti/fed.svg",
  30690. extra: 1419/820,
  30691. bottom: 95/1514
  30692. }
  30693. },
  30694. },
  30695. [
  30696. {
  30697. name: "Normal",
  30698. height: math.unit(3.5, "meters"),
  30699. default: true
  30700. },
  30701. ]
  30702. ))
  30703. characterMakers.push(() => makeCharacter(
  30704. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30705. {
  30706. front: {
  30707. height: math.unit(3 + 5/12, "feet"),
  30708. name: "Front",
  30709. image: {
  30710. source: "./media/characters/mauve/front.svg",
  30711. extra: 1126/1033,
  30712. bottom: 65/1191
  30713. }
  30714. },
  30715. side: {
  30716. height: math.unit(3 + 5/12, "feet"),
  30717. name: "Side",
  30718. image: {
  30719. source: "./media/characters/mauve/side.svg",
  30720. extra: 1089/1001,
  30721. bottom: 29/1118
  30722. }
  30723. },
  30724. back: {
  30725. height: math.unit(3 + 5/12, "feet"),
  30726. name: "Back",
  30727. image: {
  30728. source: "./media/characters/mauve/back.svg",
  30729. extra: 1173/1053,
  30730. bottom: 109/1282
  30731. }
  30732. },
  30733. },
  30734. [
  30735. {
  30736. name: "Normal",
  30737. height: math.unit(3 + 5/12, "feet"),
  30738. default: true
  30739. },
  30740. ]
  30741. ))
  30742. characterMakers.push(() => makeCharacter(
  30743. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30744. {
  30745. front: {
  30746. height: math.unit(6 + 3/12, "feet"),
  30747. weight: math.unit(430, "lb"),
  30748. name: "Front",
  30749. image: {
  30750. source: "./media/characters/carlos/front.svg",
  30751. extra: 1964/1913,
  30752. bottom: 70/2034
  30753. }
  30754. },
  30755. },
  30756. [
  30757. {
  30758. name: "Normal",
  30759. height: math.unit(6 + 3/12, "feet"),
  30760. default: true
  30761. },
  30762. ]
  30763. ))
  30764. characterMakers.push(() => makeCharacter(
  30765. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30766. {
  30767. back: {
  30768. height: math.unit(5 + 10/12, "feet"),
  30769. weight: math.unit(200, "lb"),
  30770. name: "Back",
  30771. image: {
  30772. source: "./media/characters/jax/back.svg",
  30773. extra: 764/739,
  30774. bottom: 25/789
  30775. }
  30776. },
  30777. },
  30778. [
  30779. {
  30780. name: "Normal",
  30781. height: math.unit(5 + 10/12, "feet"),
  30782. default: true
  30783. },
  30784. ]
  30785. ))
  30786. characterMakers.push(() => makeCharacter(
  30787. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30788. {
  30789. front: {
  30790. height: math.unit(8, "feet"),
  30791. weight: math.unit(250, "lb"),
  30792. name: "Front",
  30793. image: {
  30794. source: "./media/characters/eikthynir/front.svg",
  30795. extra: 1332/1166,
  30796. bottom: 82/1414
  30797. }
  30798. },
  30799. back: {
  30800. height: math.unit(8, "feet"),
  30801. weight: math.unit(250, "lb"),
  30802. name: "Back",
  30803. image: {
  30804. source: "./media/characters/eikthynir/back.svg",
  30805. extra: 1342/1190,
  30806. bottom: 19/1361
  30807. }
  30808. },
  30809. dick: {
  30810. height: math.unit(2.35, "feet"),
  30811. name: "Dick",
  30812. image: {
  30813. source: "./media/characters/eikthynir/dick.svg"
  30814. }
  30815. },
  30816. },
  30817. [
  30818. {
  30819. name: "Normal",
  30820. height: math.unit(8, "feet"),
  30821. default: true
  30822. },
  30823. ]
  30824. ))
  30825. characterMakers.push(() => makeCharacter(
  30826. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30827. {
  30828. front: {
  30829. height: math.unit(99, "meters"),
  30830. weight: math.unit(13000, "tons"),
  30831. name: "Front",
  30832. image: {
  30833. source: "./media/characters/zlmos/front.svg",
  30834. extra: 2202/1992,
  30835. bottom: 315/2517
  30836. }
  30837. },
  30838. },
  30839. [
  30840. {
  30841. name: "Macro",
  30842. height: math.unit(99, "meters"),
  30843. default: true
  30844. },
  30845. ]
  30846. ))
  30847. characterMakers.push(() => makeCharacter(
  30848. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30849. {
  30850. front: {
  30851. height: math.unit(6 + 5/12, "feet"),
  30852. name: "Front",
  30853. image: {
  30854. source: "./media/characters/purri/front.svg",
  30855. extra: 1698/1610,
  30856. bottom: 32/1730
  30857. }
  30858. },
  30859. frontAlt: {
  30860. height: math.unit(6 + 5/12, "feet"),
  30861. name: "Front (Alt)",
  30862. image: {
  30863. source: "./media/characters/purri/front-alt.svg",
  30864. extra: 450/420,
  30865. bottom: 26/476
  30866. }
  30867. },
  30868. boots: {
  30869. height: math.unit(5.5, "feet"),
  30870. name: "Boots",
  30871. image: {
  30872. source: "./media/characters/purri/boots.svg",
  30873. extra: 905/853,
  30874. bottom: 18/923
  30875. }
  30876. },
  30877. lying: {
  30878. height: math.unit(2, "feet"),
  30879. name: "Lying",
  30880. image: {
  30881. source: "./media/characters/purri/lying.svg",
  30882. extra: 940/843,
  30883. bottom: 146/1086
  30884. }
  30885. },
  30886. devious: {
  30887. height: math.unit(1.77, "feet"),
  30888. name: "Devious",
  30889. image: {
  30890. source: "./media/characters/purri/devious.svg",
  30891. extra: 1440/1155,
  30892. bottom: 147/1587
  30893. }
  30894. },
  30895. bean: {
  30896. height: math.unit(1.94, "feet"),
  30897. name: "Bean",
  30898. image: {
  30899. source: "./media/characters/purri/bean.svg"
  30900. }
  30901. },
  30902. },
  30903. [
  30904. {
  30905. name: "Micro",
  30906. height: math.unit(1, "mm")
  30907. },
  30908. {
  30909. name: "Normal",
  30910. height: math.unit(6 + 5/12, "feet"),
  30911. default: true
  30912. },
  30913. {
  30914. name: "Macro :3c",
  30915. height: math.unit(2, "miles")
  30916. },
  30917. ]
  30918. ))
  30919. characterMakers.push(() => makeCharacter(
  30920. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30921. {
  30922. front: {
  30923. height: math.unit(6 + 2/12, "feet"),
  30924. weight: math.unit(250, "lb"),
  30925. name: "Front",
  30926. image: {
  30927. source: "./media/characters/moonlight/front.svg",
  30928. extra: 1044/908,
  30929. bottom: 56/1100
  30930. }
  30931. },
  30932. feral: {
  30933. height: math.unit(3 + 1/12, "feet"),
  30934. weight: math.unit(50, "kg"),
  30935. name: "Feral",
  30936. image: {
  30937. source: "./media/characters/moonlight/feral.svg",
  30938. extra: 3705/2791,
  30939. bottom: 145/3850
  30940. }
  30941. },
  30942. paw: {
  30943. height: math.unit(1, "feet"),
  30944. name: "Paw",
  30945. image: {
  30946. source: "./media/characters/moonlight/paw.svg"
  30947. }
  30948. },
  30949. paws: {
  30950. height: math.unit(0.98, "feet"),
  30951. name: "Paws",
  30952. image: {
  30953. source: "./media/characters/moonlight/paws.svg",
  30954. extra: 939/939,
  30955. bottom: 50/989
  30956. }
  30957. },
  30958. mouth: {
  30959. height: math.unit(0.48, "feet"),
  30960. name: "Mouth",
  30961. image: {
  30962. source: "./media/characters/moonlight/mouth.svg"
  30963. }
  30964. },
  30965. dick: {
  30966. height: math.unit(1.46, "feet"),
  30967. name: "Dick",
  30968. image: {
  30969. source: "./media/characters/moonlight/dick.svg"
  30970. }
  30971. },
  30972. },
  30973. [
  30974. {
  30975. name: "Normal",
  30976. height: math.unit(6 + 2/12, "feet"),
  30977. default: true
  30978. },
  30979. {
  30980. name: "Macro",
  30981. height: math.unit(300, "feet")
  30982. },
  30983. {
  30984. name: "Macro+",
  30985. height: math.unit(1, "mile")
  30986. },
  30987. {
  30988. name: "Mt. Moon",
  30989. height: math.unit(5, "miles")
  30990. },
  30991. {
  30992. name: "Megamacro",
  30993. height: math.unit(15, "miles")
  30994. },
  30995. ]
  30996. ))
  30997. characterMakers.push(() => makeCharacter(
  30998. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30999. {
  31000. back: {
  31001. height: math.unit(6, "feet"),
  31002. weight: math.unit(150, "lb"),
  31003. name: "Back",
  31004. image: {
  31005. source: "./media/characters/sylen/back.svg",
  31006. extra: 1335/1273,
  31007. bottom: 107/1442
  31008. }
  31009. },
  31010. },
  31011. [
  31012. {
  31013. name: "Normal",
  31014. height: math.unit(5 + 5/12, "feet")
  31015. },
  31016. {
  31017. name: "Megamacro",
  31018. height: math.unit(3, "miles"),
  31019. default: true
  31020. },
  31021. ]
  31022. ))
  31023. characterMakers.push(() => makeCharacter(
  31024. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31025. {
  31026. front: {
  31027. height: math.unit(6, "feet"),
  31028. weight: math.unit(190, "lb"),
  31029. name: "Front",
  31030. image: {
  31031. source: "./media/characters/huttser/front.svg",
  31032. extra: 1152/1058,
  31033. bottom: 23/1175
  31034. }
  31035. },
  31036. side: {
  31037. height: math.unit(6, "feet"),
  31038. weight: math.unit(190, "lb"),
  31039. name: "Side",
  31040. image: {
  31041. source: "./media/characters/huttser/side.svg",
  31042. extra: 1174/1065,
  31043. bottom: 18/1192
  31044. }
  31045. },
  31046. back: {
  31047. height: math.unit(6, "feet"),
  31048. weight: math.unit(190, "lb"),
  31049. name: "Back",
  31050. image: {
  31051. source: "./media/characters/huttser/back.svg",
  31052. extra: 1158/1056,
  31053. bottom: 12/1170
  31054. }
  31055. },
  31056. },
  31057. [
  31058. ]
  31059. ))
  31060. characterMakers.push(() => makeCharacter(
  31061. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31062. {
  31063. side: {
  31064. height: math.unit(12 + 9/12, "feet"),
  31065. weight: math.unit(15000, "lb"),
  31066. name: "Side",
  31067. image: {
  31068. source: "./media/characters/faan/side.svg",
  31069. extra: 2747/2697,
  31070. bottom: 0/2747
  31071. }
  31072. },
  31073. front: {
  31074. height: math.unit(12 + 9/12, "feet"),
  31075. weight: math.unit(15000, "lb"),
  31076. name: "Front",
  31077. image: {
  31078. source: "./media/characters/faan/front.svg",
  31079. extra: 607/571,
  31080. bottom: 24/631
  31081. }
  31082. },
  31083. head: {
  31084. height: math.unit(2.85, "feet"),
  31085. name: "Head",
  31086. image: {
  31087. source: "./media/characters/faan/head.svg"
  31088. }
  31089. },
  31090. headAlt: {
  31091. height: math.unit(3.13, "feet"),
  31092. name: "Head-alt",
  31093. image: {
  31094. source: "./media/characters/faan/head-alt.svg"
  31095. }
  31096. },
  31097. },
  31098. [
  31099. {
  31100. name: "Normal",
  31101. height: math.unit(12 + 9/12, "feet"),
  31102. default: true
  31103. },
  31104. ]
  31105. ))
  31106. characterMakers.push(() => makeCharacter(
  31107. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31108. {
  31109. front: {
  31110. height: math.unit(6, "feet"),
  31111. weight: math.unit(300, "lb"),
  31112. name: "Front",
  31113. image: {
  31114. source: "./media/characters/tanio/front.svg",
  31115. extra: 711/673,
  31116. bottom: 25/736
  31117. }
  31118. },
  31119. },
  31120. [
  31121. {
  31122. name: "Normal",
  31123. height: math.unit(6, "feet"),
  31124. default: true
  31125. },
  31126. ]
  31127. ))
  31128. characterMakers.push(() => makeCharacter(
  31129. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31130. {
  31131. front: {
  31132. height: math.unit(3, "inches"),
  31133. name: "Front",
  31134. image: {
  31135. source: "./media/characters/noboru/front.svg",
  31136. extra: 1039/932,
  31137. bottom: 18/1057
  31138. }
  31139. },
  31140. },
  31141. [
  31142. {
  31143. name: "Micro",
  31144. height: math.unit(3, "inches"),
  31145. default: true
  31146. },
  31147. ]
  31148. ))
  31149. characterMakers.push(() => makeCharacter(
  31150. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31151. {
  31152. front: {
  31153. height: math.unit(1.85, "meters"),
  31154. weight: math.unit(80, "kg"),
  31155. name: "Front",
  31156. image: {
  31157. source: "./media/characters/daniel-barrett/front.svg",
  31158. extra: 355/337,
  31159. bottom: 9/364
  31160. }
  31161. },
  31162. },
  31163. [
  31164. {
  31165. name: "Pico",
  31166. height: math.unit(0.0433, "mm")
  31167. },
  31168. {
  31169. name: "Nano",
  31170. height: math.unit(1.5, "mm")
  31171. },
  31172. {
  31173. name: "Micro",
  31174. height: math.unit(5.3, "cm"),
  31175. default: true
  31176. },
  31177. {
  31178. name: "Normal",
  31179. height: math.unit(1.85, "meters")
  31180. },
  31181. {
  31182. name: "Macro",
  31183. height: math.unit(64.7, "meters")
  31184. },
  31185. {
  31186. name: "Megamacro",
  31187. height: math.unit(2.26, "km")
  31188. },
  31189. {
  31190. name: "Gigamacro",
  31191. height: math.unit(79, "km")
  31192. },
  31193. {
  31194. name: "Teramacro",
  31195. height: math.unit(2765, "km")
  31196. },
  31197. {
  31198. name: "Petamacro",
  31199. height: math.unit(96678, "km")
  31200. },
  31201. ]
  31202. ))
  31203. characterMakers.push(() => makeCharacter(
  31204. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31205. {
  31206. front: {
  31207. height: math.unit(30, "meters"),
  31208. weight: math.unit(400, "tons"),
  31209. name: "Front",
  31210. image: {
  31211. source: "./media/characters/zeel/front.svg",
  31212. extra: 2599/2599,
  31213. bottom: 226/2825
  31214. }
  31215. },
  31216. },
  31217. [
  31218. {
  31219. name: "Macro",
  31220. height: math.unit(30, "meters"),
  31221. default: true
  31222. },
  31223. ]
  31224. ))
  31225. characterMakers.push(() => makeCharacter(
  31226. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31227. {
  31228. front: {
  31229. height: math.unit(6 + 7/12, "feet"),
  31230. weight: math.unit(210, "lb"),
  31231. name: "Front",
  31232. image: {
  31233. source: "./media/characters/tarn/front.svg",
  31234. extra: 3517/3220,
  31235. bottom: 91/3608
  31236. }
  31237. },
  31238. back: {
  31239. height: math.unit(6 + 7/12, "feet"),
  31240. weight: math.unit(210, "lb"),
  31241. name: "Back",
  31242. image: {
  31243. source: "./media/characters/tarn/back.svg",
  31244. extra: 3566/3241,
  31245. bottom: 34/3600
  31246. }
  31247. },
  31248. dick: {
  31249. height: math.unit(1.65, "feet"),
  31250. name: "Dick",
  31251. image: {
  31252. source: "./media/characters/tarn/dick.svg"
  31253. }
  31254. },
  31255. paw: {
  31256. height: math.unit(1.80, "feet"),
  31257. name: "Paw",
  31258. image: {
  31259. source: "./media/characters/tarn/paw.svg"
  31260. }
  31261. },
  31262. tongue: {
  31263. height: math.unit(0.97, "feet"),
  31264. name: "Tongue",
  31265. image: {
  31266. source: "./media/characters/tarn/tongue.svg"
  31267. }
  31268. },
  31269. },
  31270. [
  31271. {
  31272. name: "Micro",
  31273. height: math.unit(4, "inches")
  31274. },
  31275. {
  31276. name: "Normal",
  31277. height: math.unit(6 + 7/12, "feet"),
  31278. default: true
  31279. },
  31280. {
  31281. name: "Macro",
  31282. height: math.unit(300, "feet")
  31283. },
  31284. ]
  31285. ))
  31286. characterMakers.push(() => makeCharacter(
  31287. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31288. {
  31289. front: {
  31290. height: math.unit(5 + 7/12, "feet"),
  31291. weight: math.unit(80, "kg"),
  31292. name: "Front",
  31293. image: {
  31294. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31295. extra: 3023/2865,
  31296. bottom: 33/3056
  31297. }
  31298. },
  31299. back: {
  31300. height: math.unit(5 + 7/12, "feet"),
  31301. weight: math.unit(80, "kg"),
  31302. name: "Back",
  31303. image: {
  31304. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31305. extra: 3020/2886,
  31306. bottom: 30/3050
  31307. }
  31308. },
  31309. dick: {
  31310. height: math.unit(0.98, "feet"),
  31311. name: "Dick",
  31312. image: {
  31313. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31314. }
  31315. },
  31316. anatomy: {
  31317. height: math.unit(2.86, "feet"),
  31318. name: "Anatomy",
  31319. image: {
  31320. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31321. }
  31322. },
  31323. },
  31324. [
  31325. {
  31326. name: "Really Small",
  31327. height: math.unit(2, "inches")
  31328. },
  31329. {
  31330. name: "Micro",
  31331. height: math.unit(5.583, "inches")
  31332. },
  31333. {
  31334. name: "Normal",
  31335. height: math.unit(5 + 7/12, "feet"),
  31336. default: true
  31337. },
  31338. {
  31339. name: "Macro",
  31340. height: math.unit(67, "feet")
  31341. },
  31342. {
  31343. name: "Megamacro",
  31344. height: math.unit(134, "feet")
  31345. },
  31346. ]
  31347. ))
  31348. characterMakers.push(() => makeCharacter(
  31349. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31350. {
  31351. front: {
  31352. height: math.unit(9, "feet"),
  31353. weight: math.unit(120, "lb"),
  31354. name: "Front",
  31355. image: {
  31356. source: "./media/characters/sally/front.svg",
  31357. extra: 1506/1349,
  31358. bottom: 66/1572
  31359. }
  31360. },
  31361. },
  31362. [
  31363. {
  31364. name: "Normal",
  31365. height: math.unit(9, "feet"),
  31366. default: true
  31367. },
  31368. ]
  31369. ))
  31370. characterMakers.push(() => makeCharacter(
  31371. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31372. {
  31373. front: {
  31374. height: math.unit(8, "feet"),
  31375. weight: math.unit(900, "lb"),
  31376. name: "Front",
  31377. image: {
  31378. source: "./media/characters/owen/front.svg",
  31379. extra: 1761/1657,
  31380. bottom: 74/1835
  31381. }
  31382. },
  31383. side: {
  31384. height: math.unit(8, "feet"),
  31385. weight: math.unit(900, "lb"),
  31386. name: "Side",
  31387. image: {
  31388. source: "./media/characters/owen/side.svg",
  31389. extra: 1797/1734,
  31390. bottom: 30/1827
  31391. }
  31392. },
  31393. back: {
  31394. height: math.unit(8, "feet"),
  31395. weight: math.unit(900, "lb"),
  31396. name: "Back",
  31397. image: {
  31398. source: "./media/characters/owen/back.svg",
  31399. extra: 1796/1706,
  31400. bottom: 59/1855
  31401. }
  31402. },
  31403. maw: {
  31404. height: math.unit(1.76, "feet"),
  31405. name: "Maw",
  31406. image: {
  31407. source: "./media/characters/owen/maw.svg"
  31408. }
  31409. },
  31410. },
  31411. [
  31412. {
  31413. name: "Normal",
  31414. height: math.unit(8, "feet"),
  31415. default: true
  31416. },
  31417. ]
  31418. ))
  31419. characterMakers.push(() => makeCharacter(
  31420. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31421. {
  31422. front: {
  31423. height: math.unit(4, "feet"),
  31424. weight: math.unit(400, "lb"),
  31425. name: "Front",
  31426. image: {
  31427. source: "./media/characters/ryth/front.svg",
  31428. extra: 876/691,
  31429. bottom: 25/901
  31430. }
  31431. },
  31432. goia: {
  31433. height: math.unit(12, "feet"),
  31434. weight: math.unit(10800, "lb"),
  31435. name: "Goia",
  31436. image: {
  31437. source: "./media/characters/ryth/goia.svg",
  31438. extra: 3450/3198,
  31439. bottom: 61/3511
  31440. }
  31441. },
  31442. },
  31443. [
  31444. {
  31445. name: "Normal",
  31446. height: math.unit(4, "feet"),
  31447. default: true
  31448. },
  31449. ]
  31450. ))
  31451. characterMakers.push(() => makeCharacter(
  31452. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31453. {
  31454. front: {
  31455. height: math.unit(7, "feet"),
  31456. weight: math.unit(180, "lb"),
  31457. name: "Front",
  31458. image: {
  31459. source: "./media/characters/necrolance/front.svg",
  31460. extra: 1062/947,
  31461. bottom: 41/1103
  31462. }
  31463. },
  31464. back: {
  31465. height: math.unit(7, "feet"),
  31466. weight: math.unit(180, "lb"),
  31467. name: "Back",
  31468. image: {
  31469. source: "./media/characters/necrolance/back.svg",
  31470. extra: 1045/984,
  31471. bottom: 14/1059
  31472. }
  31473. },
  31474. wing: {
  31475. height: math.unit(2.67, "feet"),
  31476. name: "Wing",
  31477. image: {
  31478. source: "./media/characters/necrolance/wing.svg"
  31479. }
  31480. },
  31481. },
  31482. [
  31483. {
  31484. name: "Normal",
  31485. height: math.unit(7, "feet"),
  31486. default: true
  31487. },
  31488. ]
  31489. ))
  31490. characterMakers.push(() => makeCharacter(
  31491. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31492. {
  31493. front: {
  31494. height: math.unit(76, "meters"),
  31495. weight: math.unit(30000, "tons"),
  31496. name: "Front",
  31497. image: {
  31498. source: "./media/characters/tyler/front.svg",
  31499. extra: 1640/1640,
  31500. bottom: 114/1754
  31501. }
  31502. },
  31503. },
  31504. [
  31505. {
  31506. name: "Macro",
  31507. height: math.unit(76, "meters"),
  31508. default: true
  31509. },
  31510. ]
  31511. ))
  31512. characterMakers.push(() => makeCharacter(
  31513. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31514. {
  31515. front: {
  31516. height: math.unit(4 + 11/12, "feet"),
  31517. weight: math.unit(132, "lb"),
  31518. name: "Front",
  31519. image: {
  31520. source: "./media/characters/icey/front.svg",
  31521. extra: 2750/2550,
  31522. bottom: 33/2783
  31523. }
  31524. },
  31525. back: {
  31526. height: math.unit(4 + 11/12, "feet"),
  31527. weight: math.unit(132, "lb"),
  31528. name: "Back",
  31529. image: {
  31530. source: "./media/characters/icey/back.svg",
  31531. extra: 2624/2481,
  31532. bottom: 35/2659
  31533. }
  31534. },
  31535. },
  31536. [
  31537. {
  31538. name: "Normal",
  31539. height: math.unit(4 + 11/12, "feet"),
  31540. default: true
  31541. },
  31542. ]
  31543. ))
  31544. characterMakers.push(() => makeCharacter(
  31545. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31546. {
  31547. front: {
  31548. height: math.unit(100, "feet"),
  31549. weight: math.unit(0, "lb"),
  31550. name: "Front",
  31551. image: {
  31552. source: "./media/characters/smile/front.svg",
  31553. extra: 2983/2912,
  31554. bottom: 162/3145
  31555. }
  31556. },
  31557. back: {
  31558. height: math.unit(100, "feet"),
  31559. weight: math.unit(0, "lb"),
  31560. name: "Back",
  31561. image: {
  31562. source: "./media/characters/smile/back.svg",
  31563. extra: 3143/3031,
  31564. bottom: 91/3234
  31565. }
  31566. },
  31567. head: {
  31568. height: math.unit(26.3, "feet"),
  31569. weight: math.unit(0, "lb"),
  31570. name: "Head",
  31571. image: {
  31572. source: "./media/characters/smile/head.svg"
  31573. }
  31574. },
  31575. collar: {
  31576. height: math.unit(5.3, "feet"),
  31577. weight: math.unit(0, "lb"),
  31578. name: "Collar",
  31579. image: {
  31580. source: "./media/characters/smile/collar.svg"
  31581. }
  31582. },
  31583. },
  31584. [
  31585. {
  31586. name: "Macro",
  31587. height: math.unit(100, "feet"),
  31588. default: true
  31589. },
  31590. ]
  31591. ))
  31592. characterMakers.push(() => makeCharacter(
  31593. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31594. {
  31595. dragon: {
  31596. height: math.unit(26, "feet"),
  31597. weight: math.unit(36, "tons"),
  31598. name: "Dragon",
  31599. image: {
  31600. source: "./media/characters/arimphae/dragon.svg",
  31601. extra: 1574/983,
  31602. bottom: 357/1931
  31603. }
  31604. },
  31605. drake: {
  31606. height: math.unit(9, "feet"),
  31607. weight: math.unit(1.5, "tons"),
  31608. name: "Drake",
  31609. image: {
  31610. source: "./media/characters/arimphae/drake.svg",
  31611. extra: 1120/925,
  31612. bottom: 435/1555
  31613. }
  31614. },
  31615. },
  31616. [
  31617. {
  31618. name: "Small",
  31619. height: math.unit(26*5/9, "feet")
  31620. },
  31621. {
  31622. name: "Normal",
  31623. height: math.unit(26, "feet"),
  31624. default: true
  31625. },
  31626. ]
  31627. ))
  31628. characterMakers.push(() => makeCharacter(
  31629. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31630. {
  31631. front: {
  31632. height: math.unit(8 + 9/12, "feet"),
  31633. name: "Front",
  31634. image: {
  31635. source: "./media/characters/xander/front.svg",
  31636. extra: 848/673,
  31637. bottom: 62/910
  31638. }
  31639. },
  31640. },
  31641. [
  31642. {
  31643. name: "Normal",
  31644. height: math.unit(8 + 9/12, "feet"),
  31645. default: true
  31646. },
  31647. {
  31648. name: "Gaze Grabber",
  31649. height: math.unit(13 + 8/12, "feet")
  31650. },
  31651. {
  31652. name: "Jaw Dropper",
  31653. height: math.unit(27, "feet")
  31654. },
  31655. {
  31656. name: "Show Stopper",
  31657. height: math.unit(136, "feet")
  31658. },
  31659. {
  31660. name: "Superstar",
  31661. height: math.unit(1.9e6, "miles")
  31662. },
  31663. ]
  31664. ))
  31665. characterMakers.push(() => makeCharacter(
  31666. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31667. {
  31668. side: {
  31669. height: math.unit(2100, "feet"),
  31670. name: "Side",
  31671. image: {
  31672. source: "./media/characters/osiris/side.svg",
  31673. extra: 1105/939,
  31674. bottom: 167/1272
  31675. }
  31676. },
  31677. },
  31678. [
  31679. {
  31680. name: "Macro",
  31681. height: math.unit(2100, "feet"),
  31682. default: true
  31683. },
  31684. ]
  31685. ))
  31686. characterMakers.push(() => makeCharacter(
  31687. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31688. {
  31689. front: {
  31690. height: math.unit(6 + 8/12, "feet"),
  31691. weight: math.unit(225, "lb"),
  31692. name: "Front",
  31693. image: {
  31694. source: "./media/characters/rhys-londe/front.svg",
  31695. extra: 2258/2141,
  31696. bottom: 188/2446
  31697. }
  31698. },
  31699. back: {
  31700. height: math.unit(6 + 8/12, "feet"),
  31701. weight: math.unit(225, "lb"),
  31702. name: "Back",
  31703. image: {
  31704. source: "./media/characters/rhys-londe/back.svg",
  31705. extra: 2237/2137,
  31706. bottom: 63/2300
  31707. }
  31708. },
  31709. frontNsfw: {
  31710. height: math.unit(6 + 8/12, "feet"),
  31711. weight: math.unit(225, "lb"),
  31712. name: "Front (NSFW)",
  31713. image: {
  31714. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31715. extra: 2258/2141,
  31716. bottom: 188/2446
  31717. }
  31718. },
  31719. backNsfw: {
  31720. height: math.unit(6 + 8/12, "feet"),
  31721. weight: math.unit(225, "lb"),
  31722. name: "Back (NSFW)",
  31723. image: {
  31724. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31725. extra: 2237/2137,
  31726. bottom: 63/2300
  31727. }
  31728. },
  31729. dick: {
  31730. height: math.unit(30, "inches"),
  31731. name: "Dick",
  31732. image: {
  31733. source: "./media/characters/rhys-londe/dick.svg"
  31734. }
  31735. },
  31736. maw: {
  31737. height: math.unit(1.6, "feet"),
  31738. name: "Maw",
  31739. image: {
  31740. source: "./media/characters/rhys-londe/maw.svg"
  31741. }
  31742. },
  31743. },
  31744. [
  31745. {
  31746. name: "Normal",
  31747. height: math.unit(6 + 8/12, "feet"),
  31748. default: true
  31749. },
  31750. ]
  31751. ))
  31752. characterMakers.push(() => makeCharacter(
  31753. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31754. {
  31755. front: {
  31756. height: math.unit(3 + 10/12, "feet"),
  31757. weight: math.unit(90, "lb"),
  31758. name: "Front",
  31759. image: {
  31760. source: "./media/characters/taivas-ensim/front.svg",
  31761. extra: 1327/1216,
  31762. bottom: 96/1423
  31763. }
  31764. },
  31765. back: {
  31766. height: math.unit(3 + 10/12, "feet"),
  31767. weight: math.unit(90, "lb"),
  31768. name: "Back",
  31769. image: {
  31770. source: "./media/characters/taivas-ensim/back.svg",
  31771. extra: 1355/1247,
  31772. bottom: 11/1366
  31773. }
  31774. },
  31775. frontNsfw: {
  31776. height: math.unit(3 + 10/12, "feet"),
  31777. weight: math.unit(90, "lb"),
  31778. name: "Front (NSFW)",
  31779. image: {
  31780. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31781. extra: 1327/1216,
  31782. bottom: 96/1423
  31783. }
  31784. },
  31785. backNsfw: {
  31786. height: math.unit(3 + 10/12, "feet"),
  31787. weight: math.unit(90, "lb"),
  31788. name: "Back (NSFW)",
  31789. image: {
  31790. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31791. extra: 1355/1247,
  31792. bottom: 11/1366
  31793. }
  31794. },
  31795. },
  31796. [
  31797. {
  31798. name: "Normal",
  31799. height: math.unit(3 + 10/12, "feet"),
  31800. default: true
  31801. },
  31802. ]
  31803. ))
  31804. characterMakers.push(() => makeCharacter(
  31805. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31806. {
  31807. front: {
  31808. height: math.unit(9 + 6/12, "feet"),
  31809. weight: math.unit(940, "lb"),
  31810. name: "Front",
  31811. image: {
  31812. source: "./media/characters/byliss/front.svg",
  31813. extra: 1327/1290,
  31814. bottom: 82/1409
  31815. }
  31816. },
  31817. back: {
  31818. height: math.unit(9 + 6/12, "feet"),
  31819. weight: math.unit(940, "lb"),
  31820. name: "Back",
  31821. image: {
  31822. source: "./media/characters/byliss/back.svg",
  31823. extra: 1376/1349,
  31824. bottom: 9/1385
  31825. }
  31826. },
  31827. frontNsfw: {
  31828. height: math.unit(9 + 6/12, "feet"),
  31829. weight: math.unit(940, "lb"),
  31830. name: "Front (NSFW)",
  31831. image: {
  31832. source: "./media/characters/byliss/front-nsfw.svg",
  31833. extra: 1327/1290,
  31834. bottom: 82/1409
  31835. }
  31836. },
  31837. backNsfw: {
  31838. height: math.unit(9 + 6/12, "feet"),
  31839. weight: math.unit(940, "lb"),
  31840. name: "Back (NSFW)",
  31841. image: {
  31842. source: "./media/characters/byliss/back-nsfw.svg",
  31843. extra: 1376/1349,
  31844. bottom: 9/1385
  31845. }
  31846. },
  31847. },
  31848. [
  31849. {
  31850. name: "Normal",
  31851. height: math.unit(9 + 6/12, "feet"),
  31852. default: true
  31853. },
  31854. ]
  31855. ))
  31856. characterMakers.push(() => makeCharacter(
  31857. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31858. {
  31859. front: {
  31860. height: math.unit(5 + 2/12, "feet"),
  31861. weight: math.unit(200, "lb"),
  31862. name: "Front",
  31863. image: {
  31864. source: "./media/characters/noraly/front.svg",
  31865. extra: 4985/4773,
  31866. bottom: 150/5135
  31867. }
  31868. },
  31869. full: {
  31870. height: math.unit(5 + 2/12, "feet"),
  31871. weight: math.unit(164, "lb"),
  31872. name: "Full",
  31873. image: {
  31874. source: "./media/characters/noraly/full.svg",
  31875. extra: 1114/1059,
  31876. bottom: 35/1149
  31877. }
  31878. },
  31879. fuller: {
  31880. height: math.unit(5 + 2/12, "feet"),
  31881. weight: math.unit(230, "lb"),
  31882. name: "Fuller",
  31883. image: {
  31884. source: "./media/characters/noraly/fuller.svg",
  31885. extra: 1114/1059,
  31886. bottom: 35/1149
  31887. }
  31888. },
  31889. fullest: {
  31890. height: math.unit(5 + 2/12, "feet"),
  31891. weight: math.unit(300, "lb"),
  31892. name: "Fullest",
  31893. image: {
  31894. source: "./media/characters/noraly/fullest.svg",
  31895. extra: 1114/1059,
  31896. bottom: 35/1149
  31897. }
  31898. },
  31899. },
  31900. [
  31901. {
  31902. name: "Normal",
  31903. height: math.unit(5 + 2/12, "feet"),
  31904. default: true
  31905. },
  31906. ]
  31907. ))
  31908. characterMakers.push(() => makeCharacter(
  31909. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31910. {
  31911. front: {
  31912. height: math.unit(5 + 2/12, "feet"),
  31913. weight: math.unit(210, "lb"),
  31914. name: "Front",
  31915. image: {
  31916. source: "./media/characters/pera/front.svg",
  31917. extra: 1560/1531,
  31918. bottom: 165/1725
  31919. }
  31920. },
  31921. back: {
  31922. height: math.unit(5 + 2/12, "feet"),
  31923. weight: math.unit(210, "lb"),
  31924. name: "Back",
  31925. image: {
  31926. source: "./media/characters/pera/back.svg",
  31927. extra: 1523/1493,
  31928. bottom: 152/1675
  31929. }
  31930. },
  31931. dick: {
  31932. height: math.unit(2.4, "feet"),
  31933. name: "Dick",
  31934. image: {
  31935. source: "./media/characters/pera/dick.svg"
  31936. }
  31937. },
  31938. },
  31939. [
  31940. {
  31941. name: "Normal",
  31942. height: math.unit(5 + 2/12, "feet"),
  31943. default: true
  31944. },
  31945. ]
  31946. ))
  31947. characterMakers.push(() => makeCharacter(
  31948. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31949. {
  31950. front: {
  31951. height: math.unit(12, "feet"),
  31952. weight: math.unit(3200, "lb"),
  31953. name: "Front",
  31954. image: {
  31955. source: "./media/characters/julian/front.svg",
  31956. extra: 2962/2701,
  31957. bottom: 184/3146
  31958. }
  31959. },
  31960. maw: {
  31961. height: math.unit(5.35, "feet"),
  31962. name: "Maw",
  31963. image: {
  31964. source: "./media/characters/julian/maw.svg"
  31965. }
  31966. },
  31967. paw: {
  31968. height: math.unit(3.07, "feet"),
  31969. name: "Paw",
  31970. image: {
  31971. source: "./media/characters/julian/paw.svg"
  31972. }
  31973. },
  31974. },
  31975. [
  31976. {
  31977. name: "Default",
  31978. height: math.unit(12, "feet"),
  31979. default: true
  31980. },
  31981. {
  31982. name: "Big",
  31983. height: math.unit(50, "feet")
  31984. },
  31985. {
  31986. name: "Really Big",
  31987. height: math.unit(1, "mile")
  31988. },
  31989. {
  31990. name: "Extremely Big",
  31991. height: math.unit(100, "miles")
  31992. },
  31993. {
  31994. name: "Planet Hugger",
  31995. height: math.unit(200, "megameters")
  31996. },
  31997. {
  31998. name: "Unreasonably Big",
  31999. height: math.unit(1e300, "meters")
  32000. },
  32001. ]
  32002. ))
  32003. characterMakers.push(() => makeCharacter(
  32004. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32005. {
  32006. solgooleo: {
  32007. height: math.unit(4, "meters"),
  32008. weight: math.unit(6000*1.5, "kg"),
  32009. volume: math.unit(6000, "liters"),
  32010. name: "Solgooleo",
  32011. image: {
  32012. source: "./media/characters/pi/solgooleo.svg",
  32013. extra: 388/331,
  32014. bottom: 29/417
  32015. }
  32016. },
  32017. },
  32018. [
  32019. {
  32020. name: "Normal",
  32021. height: math.unit(4, "meters"),
  32022. default: true
  32023. },
  32024. ]
  32025. ))
  32026. characterMakers.push(() => makeCharacter(
  32027. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32028. {
  32029. front: {
  32030. height: math.unit(8 + 2/12, "feet"),
  32031. weight: math.unit(4, "tons"),
  32032. name: "Front",
  32033. image: {
  32034. source: "./media/characters/shaun/front.svg",
  32035. extra: 1550/1505,
  32036. bottom: 353/1903
  32037. }
  32038. },
  32039. },
  32040. [
  32041. {
  32042. name: "Lorg",
  32043. height: math.unit(8 + 2/12, "feet"),
  32044. default: true
  32045. },
  32046. ]
  32047. ))
  32048. characterMakers.push(() => makeCharacter(
  32049. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32050. {
  32051. front: {
  32052. height: math.unit(7, "feet"),
  32053. name: "Front",
  32054. image: {
  32055. source: "./media/characters/sini/front.svg",
  32056. extra: 726/678,
  32057. bottom: 35/761
  32058. }
  32059. },
  32060. back: {
  32061. height: math.unit(7, "feet"),
  32062. name: "Back",
  32063. image: {
  32064. source: "./media/characters/sini/back.svg",
  32065. extra: 743/701,
  32066. bottom: 12/755
  32067. }
  32068. },
  32069. mawAnthro: {
  32070. height: math.unit(2.14, "feet"),
  32071. name: "Maw (Anthro)",
  32072. image: {
  32073. source: "./media/characters/sini/maw-anthro.svg"
  32074. }
  32075. },
  32076. dick: {
  32077. height: math.unit(1.45, "feet"),
  32078. name: "Dick (Anthro)",
  32079. image: {
  32080. source: "./media/characters/sini/dick-anthro.svg"
  32081. }
  32082. },
  32083. feral: {
  32084. height: math.unit(13, "feet"),
  32085. name: "Feral",
  32086. image: {
  32087. source: "./media/characters/sini/feral.svg",
  32088. extra: 814/605,
  32089. bottom: 11/825
  32090. }
  32091. },
  32092. mawFeral: {
  32093. height: math.unit(4.6, "feet"),
  32094. name: "Maw-feral",
  32095. image: {
  32096. source: "./media/characters/sini/maw-feral.svg"
  32097. }
  32098. },
  32099. footFeral: {
  32100. height: math.unit(4.2, "feet"),
  32101. name: "Foot-feral",
  32102. image: {
  32103. source: "./media/characters/sini/foot-feral.svg"
  32104. }
  32105. },
  32106. },
  32107. [
  32108. {
  32109. name: "Normal",
  32110. height: math.unit(7, "feet"),
  32111. default: true
  32112. },
  32113. ]
  32114. ))
  32115. characterMakers.push(() => makeCharacter(
  32116. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32117. {
  32118. side: {
  32119. height: math.unit(13, "meters"),
  32120. weight: math.unit(9072, "kg"),
  32121. name: "Side",
  32122. image: {
  32123. source: "./media/characters/raylldo/side.svg",
  32124. extra: 403/344,
  32125. bottom: 42/445
  32126. }
  32127. },
  32128. leaping: {
  32129. height: math.unit(12.3, "meters"),
  32130. weight: math.unit(9072, "kg"),
  32131. name: "Leaping",
  32132. image: {
  32133. source: "./media/characters/raylldo/leaping.svg",
  32134. extra: 470/249,
  32135. bottom: 13/483
  32136. }
  32137. },
  32138. flying: {
  32139. height: math.unit(18, "meters"),
  32140. weight: math.unit(9072, "kg"),
  32141. name: "Flying",
  32142. image: {
  32143. source: "./media/characters/raylldo/flying.svg"
  32144. }
  32145. },
  32146. head: {
  32147. height: math.unit(5.85, "meters"),
  32148. name: "Head",
  32149. image: {
  32150. source: "./media/characters/raylldo/head.svg"
  32151. }
  32152. },
  32153. maw: {
  32154. height: math.unit(5.32, "meters"),
  32155. name: "Maw",
  32156. image: {
  32157. source: "./media/characters/raylldo/maw.svg"
  32158. }
  32159. },
  32160. eye: {
  32161. height: math.unit(0.54, "meters"),
  32162. name: "Eye",
  32163. image: {
  32164. source: "./media/characters/raylldo/eye.svg"
  32165. }
  32166. },
  32167. },
  32168. [
  32169. {
  32170. name: "Normal",
  32171. height: math.unit(13, "meters"),
  32172. default: true
  32173. },
  32174. ]
  32175. ))
  32176. characterMakers.push(() => makeCharacter(
  32177. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32178. {
  32179. anthroFront: {
  32180. height: math.unit(9, "feet"),
  32181. weight: math.unit(600, "lb"),
  32182. name: "Anthro (Front)",
  32183. image: {
  32184. source: "./media/characters/glint/anthro-front.svg",
  32185. extra: 1097/1018,
  32186. bottom: 28/1125
  32187. }
  32188. },
  32189. anthroBack: {
  32190. height: math.unit(9, "feet"),
  32191. weight: math.unit(600, "lb"),
  32192. name: "Anthro (Back)",
  32193. image: {
  32194. source: "./media/characters/glint/anthro-back.svg",
  32195. extra: 1154/997,
  32196. bottom: 36/1190
  32197. }
  32198. },
  32199. feral: {
  32200. height: math.unit(11, "feet"),
  32201. weight: math.unit(50000, "lb"),
  32202. name: "Feral",
  32203. image: {
  32204. source: "./media/characters/glint/feral.svg",
  32205. extra: 3035/1585,
  32206. bottom: 1169/4204
  32207. }
  32208. },
  32209. dickAnthro: {
  32210. height: math.unit(0.7, "meters"),
  32211. name: "Dick (Anthro)",
  32212. image: {
  32213. source: "./media/characters/glint/dick-anthro.svg"
  32214. }
  32215. },
  32216. dickFeral: {
  32217. height: math.unit(2.65, "meters"),
  32218. name: "Dick (Feral)",
  32219. image: {
  32220. source: "./media/characters/glint/dick-feral.svg"
  32221. }
  32222. },
  32223. slitHidden: {
  32224. height: math.unit(5.85, "meters"),
  32225. name: "Slit (Hidden)",
  32226. image: {
  32227. source: "./media/characters/glint/slit-hidden.svg"
  32228. }
  32229. },
  32230. slitErect: {
  32231. height: math.unit(5.85, "meters"),
  32232. name: "Slit (Erect)",
  32233. image: {
  32234. source: "./media/characters/glint/slit-erect.svg"
  32235. }
  32236. },
  32237. mawAnthro: {
  32238. height: math.unit(0.63, "meters"),
  32239. name: "Maw (Anthro)",
  32240. image: {
  32241. source: "./media/characters/glint/maw.svg"
  32242. }
  32243. },
  32244. mawFeral: {
  32245. height: math.unit(2.89, "meters"),
  32246. name: "Maw (Feral)",
  32247. image: {
  32248. source: "./media/characters/glint/maw.svg"
  32249. }
  32250. },
  32251. },
  32252. [
  32253. {
  32254. name: "Normal",
  32255. height: math.unit(9, "feet"),
  32256. default: true
  32257. },
  32258. ]
  32259. ))
  32260. characterMakers.push(() => makeCharacter(
  32261. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32262. {
  32263. side: {
  32264. height: math.unit(15, "feet"),
  32265. weight: math.unit(5000, "kg"),
  32266. name: "Side",
  32267. image: {
  32268. source: "./media/characters/kairne/side.svg",
  32269. extra: 979/811,
  32270. bottom: 13/992
  32271. }
  32272. },
  32273. front: {
  32274. height: math.unit(15, "feet"),
  32275. weight: math.unit(5000, "kg"),
  32276. name: "Front",
  32277. image: {
  32278. source: "./media/characters/kairne/front.svg",
  32279. extra: 908/814,
  32280. bottom: 26/934
  32281. }
  32282. },
  32283. sideNsfw: {
  32284. height: math.unit(15, "feet"),
  32285. weight: math.unit(5000, "kg"),
  32286. name: "Side (NSFW)",
  32287. image: {
  32288. source: "./media/characters/kairne/side-nsfw.svg",
  32289. extra: 979/811,
  32290. bottom: 13/992
  32291. }
  32292. },
  32293. frontNsfw: {
  32294. height: math.unit(15, "feet"),
  32295. weight: math.unit(5000, "kg"),
  32296. name: "Front (NSFW)",
  32297. image: {
  32298. source: "./media/characters/kairne/front-nsfw.svg",
  32299. extra: 908/814,
  32300. bottom: 26/934
  32301. }
  32302. },
  32303. dickCaged: {
  32304. height: math.unit(0.65, "meters"),
  32305. name: "Dick-caged",
  32306. image: {
  32307. source: "./media/characters/kairne/dick-caged.svg"
  32308. }
  32309. },
  32310. dick: {
  32311. height: math.unit(0.79, "meters"),
  32312. name: "Dick",
  32313. image: {
  32314. source: "./media/characters/kairne/dick.svg"
  32315. }
  32316. },
  32317. genitals: {
  32318. height: math.unit(1.29, "meters"),
  32319. name: "Genitals",
  32320. image: {
  32321. source: "./media/characters/kairne/genitals.svg"
  32322. }
  32323. },
  32324. maw: {
  32325. height: math.unit(1.73, "meters"),
  32326. name: "Maw",
  32327. image: {
  32328. source: "./media/characters/kairne/maw.svg"
  32329. }
  32330. },
  32331. },
  32332. [
  32333. {
  32334. name: "Normal",
  32335. height: math.unit(15, "feet"),
  32336. default: true
  32337. },
  32338. ]
  32339. ))
  32340. characterMakers.push(() => makeCharacter(
  32341. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32342. {
  32343. front: {
  32344. height: math.unit(5 + 8/12, "feet"),
  32345. weight: math.unit(139, "lb"),
  32346. name: "Front",
  32347. image: {
  32348. source: "./media/characters/biscuit-jackal/front.svg",
  32349. extra: 2106/1961,
  32350. bottom: 58/2164
  32351. }
  32352. },
  32353. back: {
  32354. height: math.unit(5 + 8/12, "feet"),
  32355. weight: math.unit(139, "lb"),
  32356. name: "Back",
  32357. image: {
  32358. source: "./media/characters/biscuit-jackal/back.svg",
  32359. extra: 2132/1976,
  32360. bottom: 57/2189
  32361. }
  32362. },
  32363. werejackal: {
  32364. height: math.unit(6 + 3/12, "feet"),
  32365. weight: math.unit(188, "lb"),
  32366. name: "Werejackal",
  32367. image: {
  32368. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32369. extra: 2373/2178,
  32370. bottom: 53/2426
  32371. }
  32372. },
  32373. },
  32374. [
  32375. {
  32376. name: "Normal",
  32377. height: math.unit(5 + 8/12, "feet"),
  32378. default: true
  32379. },
  32380. ]
  32381. ))
  32382. characterMakers.push(() => makeCharacter(
  32383. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32384. {
  32385. front: {
  32386. height: math.unit(140, "cm"),
  32387. weight: math.unit(45, "kg"),
  32388. name: "Front",
  32389. image: {
  32390. source: "./media/characters/tayra-white/front.svg",
  32391. extra: 2229/2192,
  32392. bottom: 75/2304
  32393. }
  32394. },
  32395. },
  32396. [
  32397. {
  32398. name: "Normal",
  32399. height: math.unit(140, "cm"),
  32400. default: true
  32401. },
  32402. ]
  32403. ))
  32404. characterMakers.push(() => makeCharacter(
  32405. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32406. {
  32407. front: {
  32408. height: math.unit(4 + 5/12, "feet"),
  32409. name: "Front",
  32410. image: {
  32411. source: "./media/characters/scoop/front.svg",
  32412. extra: 1257/1136,
  32413. bottom: 69/1326
  32414. }
  32415. },
  32416. back: {
  32417. height: math.unit(4 + 5/12, "feet"),
  32418. name: "Back",
  32419. image: {
  32420. source: "./media/characters/scoop/back.svg",
  32421. extra: 1321/1152,
  32422. bottom: 32/1353
  32423. }
  32424. },
  32425. maw: {
  32426. height: math.unit(0.68, "feet"),
  32427. name: "Maw",
  32428. image: {
  32429. source: "./media/characters/scoop/maw.svg"
  32430. }
  32431. },
  32432. },
  32433. [
  32434. {
  32435. name: "Really Small",
  32436. height: math.unit(1, "mm")
  32437. },
  32438. {
  32439. name: "Micro",
  32440. height: math.unit(1, "inch")
  32441. },
  32442. {
  32443. name: "Normal",
  32444. height: math.unit(4 + 5/12, "feet"),
  32445. default: true
  32446. },
  32447. {
  32448. name: "Macro",
  32449. height: math.unit(200, "feet")
  32450. },
  32451. {
  32452. name: "Megamacro",
  32453. height: math.unit(3240, "feet")
  32454. },
  32455. {
  32456. name: "Teramacro",
  32457. height: math.unit(2500, "miles")
  32458. },
  32459. ]
  32460. ))
  32461. characterMakers.push(() => makeCharacter(
  32462. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32463. {
  32464. front: {
  32465. height: math.unit(15 + 7/12, "feet"),
  32466. name: "Front",
  32467. image: {
  32468. source: "./media/characters/saphinara/front.svg",
  32469. extra: 604/546,
  32470. bottom: 19/623
  32471. }
  32472. },
  32473. side: {
  32474. height: math.unit(15 + 7/12, "feet"),
  32475. name: "Side",
  32476. image: {
  32477. source: "./media/characters/saphinara/side.svg",
  32478. extra: 605/547,
  32479. bottom: 6/611
  32480. }
  32481. },
  32482. back: {
  32483. height: math.unit(15 + 7/12, "feet"),
  32484. name: "Back",
  32485. image: {
  32486. source: "./media/characters/saphinara/back.svg",
  32487. extra: 591/531,
  32488. bottom: 13/604
  32489. }
  32490. },
  32491. frontTail: {
  32492. height: math.unit(15 + 7/12, "feet"),
  32493. name: "Front (Full Tail)",
  32494. image: {
  32495. source: "./media/characters/saphinara/front-tail.svg",
  32496. extra: 748/547,
  32497. bottom: 66/814
  32498. }
  32499. },
  32500. },
  32501. [
  32502. {
  32503. name: "Normal",
  32504. height: math.unit(15 + 7/12, "feet"),
  32505. default: true
  32506. },
  32507. {
  32508. name: "Angry",
  32509. height: math.unit(30 + 6/12, "feet")
  32510. },
  32511. {
  32512. name: "Enraged",
  32513. height: math.unit(102 + 1/12, "feet")
  32514. },
  32515. ]
  32516. ))
  32517. characterMakers.push(() => makeCharacter(
  32518. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32519. {
  32520. front: {
  32521. height: math.unit(6 + 8/12, "feet"),
  32522. weight: math.unit(300, "lb"),
  32523. name: "Front",
  32524. image: {
  32525. source: "./media/characters/jrain/front.svg",
  32526. extra: 3039/2865,
  32527. bottom: 399/3438
  32528. }
  32529. },
  32530. back: {
  32531. height: math.unit(6 + 8/12, "feet"),
  32532. weight: math.unit(300, "lb"),
  32533. name: "Back",
  32534. image: {
  32535. source: "./media/characters/jrain/back.svg",
  32536. extra: 3089/2938,
  32537. bottom: 172/3261
  32538. }
  32539. },
  32540. head: {
  32541. height: math.unit(2.14, "feet"),
  32542. name: "Head",
  32543. image: {
  32544. source: "./media/characters/jrain/head.svg"
  32545. }
  32546. },
  32547. maw: {
  32548. height: math.unit(1.77, "feet"),
  32549. name: "Maw",
  32550. image: {
  32551. source: "./media/characters/jrain/maw.svg"
  32552. }
  32553. },
  32554. leftHand: {
  32555. height: math.unit(1.1, "feet"),
  32556. name: "Left Hand",
  32557. image: {
  32558. source: "./media/characters/jrain/left-hand.svg"
  32559. }
  32560. },
  32561. rightHand: {
  32562. height: math.unit(1.1, "feet"),
  32563. name: "Right Hand",
  32564. image: {
  32565. source: "./media/characters/jrain/right-hand.svg"
  32566. }
  32567. },
  32568. eye: {
  32569. height: math.unit(0.35, "feet"),
  32570. name: "Eye",
  32571. image: {
  32572. source: "./media/characters/jrain/eye.svg"
  32573. }
  32574. },
  32575. },
  32576. [
  32577. {
  32578. name: "Normal",
  32579. height: math.unit(6 + 8/12, "feet"),
  32580. default: true
  32581. },
  32582. {
  32583. name: "Casually Large",
  32584. height: math.unit(25, "feet")
  32585. },
  32586. {
  32587. name: "Giant",
  32588. height: math.unit(100, "feet")
  32589. },
  32590. {
  32591. name: "Kaiju",
  32592. height: math.unit(300, "feet")
  32593. },
  32594. ]
  32595. ))
  32596. characterMakers.push(() => makeCharacter(
  32597. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32598. {
  32599. dragon: {
  32600. height: math.unit(5, "meters"),
  32601. name: "Dragon",
  32602. image: {
  32603. source: "./media/characters/sabrina/dragon.svg",
  32604. extra: 3670 / 2365,
  32605. bottom: 333 / 4003
  32606. }
  32607. },
  32608. gryphon: {
  32609. height: math.unit(3, "meters"),
  32610. name: "Gryphon",
  32611. image: {
  32612. source: "./media/characters/sabrina/gryphon.svg",
  32613. extra: 1576 / 945,
  32614. bottom: 71 / 1647
  32615. }
  32616. },
  32617. snake: {
  32618. height: math.unit(12, "meters"),
  32619. name: "Snake",
  32620. image: {
  32621. source: "./media/characters/sabrina/snake.svg",
  32622. extra: 1758 / 1320,
  32623. bottom: 186 / 1944
  32624. }
  32625. },
  32626. collar: {
  32627. height: math.unit(1.86, "meters"),
  32628. name: "Collar",
  32629. image: {
  32630. source: "./media/characters/sabrina/collar.svg"
  32631. }
  32632. },
  32633. eye: {
  32634. height: math.unit(0.53, "meters"),
  32635. name: "Eye",
  32636. image: {
  32637. source: "./media/characters/sabrina/eye.svg"
  32638. }
  32639. },
  32640. foot: {
  32641. height: math.unit(1.86, "meters"),
  32642. name: "Foot",
  32643. image: {
  32644. source: "./media/characters/sabrina/foot.svg"
  32645. }
  32646. },
  32647. hand: {
  32648. height: math.unit(1.32, "meters"),
  32649. name: "Hand",
  32650. image: {
  32651. source: "./media/characters/sabrina/hand.svg"
  32652. }
  32653. },
  32654. head: {
  32655. height: math.unit(2.44, "meters"),
  32656. name: "Head",
  32657. image: {
  32658. source: "./media/characters/sabrina/head.svg"
  32659. }
  32660. },
  32661. headAngry: {
  32662. height: math.unit(2.44, "meters"),
  32663. name: "Head (Angry))",
  32664. image: {
  32665. source: "./media/characters/sabrina/head-angry.svg"
  32666. }
  32667. },
  32668. maw: {
  32669. height: math.unit(1.65, "meters"),
  32670. name: "Maw",
  32671. image: {
  32672. source: "./media/characters/sabrina/maw.svg"
  32673. }
  32674. },
  32675. spikes: {
  32676. height: math.unit(1.69, "meters"),
  32677. name: "Spikes",
  32678. image: {
  32679. source: "./media/characters/sabrina/spikes.svg"
  32680. }
  32681. },
  32682. stomach: {
  32683. height: math.unit(1.15, "meters"),
  32684. name: "Stomach",
  32685. image: {
  32686. source: "./media/characters/sabrina/stomach.svg"
  32687. }
  32688. },
  32689. tongue: {
  32690. height: math.unit(1.27, "meters"),
  32691. name: "Tongue",
  32692. image: {
  32693. source: "./media/characters/sabrina/tongue.svg"
  32694. }
  32695. },
  32696. wingDorsal: {
  32697. height: math.unit(4.85, "meters"),
  32698. name: "Wing (Dorsal)",
  32699. image: {
  32700. source: "./media/characters/sabrina/wing-dorsal.svg"
  32701. }
  32702. },
  32703. wingVentral: {
  32704. height: math.unit(4.85, "meters"),
  32705. name: "Wing (Ventral)",
  32706. image: {
  32707. source: "./media/characters/sabrina/wing-ventral.svg"
  32708. }
  32709. },
  32710. },
  32711. [
  32712. {
  32713. name: "Normal",
  32714. height: math.unit(5, "meters"),
  32715. default: true
  32716. },
  32717. ]
  32718. ))
  32719. characterMakers.push(() => makeCharacter(
  32720. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32721. {
  32722. frontMaid: {
  32723. height: math.unit(5 + 5/12, "feet"),
  32724. weight: math.unit(130, "lb"),
  32725. name: "Front (Maid)",
  32726. image: {
  32727. source: "./media/characters/midnight-tales/front-maid.svg",
  32728. extra: 489/454,
  32729. bottom: 61/550
  32730. }
  32731. },
  32732. frontFormal: {
  32733. height: math.unit(5 + 5/12, "feet"),
  32734. weight: math.unit(130, "lb"),
  32735. name: "Front (Formal)",
  32736. image: {
  32737. source: "./media/characters/midnight-tales/front-formal.svg",
  32738. extra: 489/454,
  32739. bottom: 61/550
  32740. }
  32741. },
  32742. back: {
  32743. height: math.unit(5 + 5/12, "feet"),
  32744. weight: math.unit(130, "lb"),
  32745. name: "Back",
  32746. image: {
  32747. source: "./media/characters/midnight-tales/back.svg",
  32748. extra: 498/456,
  32749. bottom: 33/531
  32750. }
  32751. },
  32752. frontBeast: {
  32753. height: math.unit(40, "feet"),
  32754. weight: math.unit(64000, "lb"),
  32755. name: "Front (Beast)",
  32756. image: {
  32757. source: "./media/characters/midnight-tales/front-beast.svg",
  32758. extra: 927/860,
  32759. bottom: 53/980
  32760. }
  32761. },
  32762. backBeast: {
  32763. height: math.unit(40, "feet"),
  32764. weight: math.unit(64000, "lb"),
  32765. name: "Back (Beast)",
  32766. image: {
  32767. source: "./media/characters/midnight-tales/back-beast.svg",
  32768. extra: 929/855,
  32769. bottom: 16/945
  32770. }
  32771. },
  32772. footBeast: {
  32773. height: math.unit(6.7, "feet"),
  32774. name: "Foot (Beast)",
  32775. image: {
  32776. source: "./media/characters/midnight-tales/foot-beast.svg"
  32777. }
  32778. },
  32779. headBeast: {
  32780. height: math.unit(8, "feet"),
  32781. name: "Head (Beast)",
  32782. image: {
  32783. source: "./media/characters/midnight-tales/head-beast.svg"
  32784. }
  32785. },
  32786. },
  32787. [
  32788. {
  32789. name: "Normal",
  32790. height: math.unit(5 + 5 / 12, "feet"),
  32791. default: true
  32792. },
  32793. {
  32794. name: "Macro",
  32795. height: math.unit(25, "feet")
  32796. },
  32797. ]
  32798. ))
  32799. characterMakers.push(() => makeCharacter(
  32800. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32801. {
  32802. front: {
  32803. height: math.unit(5 + 10/12, "feet"),
  32804. name: "Front",
  32805. image: {
  32806. source: "./media/characters/argon/front.svg",
  32807. extra: 2009/1935,
  32808. bottom: 118/2127
  32809. }
  32810. },
  32811. back: {
  32812. height: math.unit(5 + 10/12, "feet"),
  32813. name: "Back",
  32814. image: {
  32815. source: "./media/characters/argon/back.svg",
  32816. extra: 2047/1992,
  32817. bottom: 20/2067
  32818. }
  32819. },
  32820. frontDressed: {
  32821. height: math.unit(5 + 10/12, "feet"),
  32822. name: "Front (Dressed)",
  32823. image: {
  32824. source: "./media/characters/argon/front-dressed.svg",
  32825. extra: 2009/1935,
  32826. bottom: 118/2127
  32827. }
  32828. },
  32829. },
  32830. [
  32831. {
  32832. name: "Normal",
  32833. height: math.unit(5 + 10/12, "feet"),
  32834. default: true
  32835. },
  32836. ]
  32837. ))
  32838. characterMakers.push(() => makeCharacter(
  32839. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32840. {
  32841. front: {
  32842. height: math.unit(8 + 6/12, "feet"),
  32843. weight: math.unit(1150, "lb"),
  32844. name: "Front",
  32845. image: {
  32846. source: "./media/characters/kichi/front.svg",
  32847. extra: 1267/1164,
  32848. bottom: 61/1328
  32849. }
  32850. },
  32851. back: {
  32852. height: math.unit(8 + 6/12, "feet"),
  32853. weight: math.unit(1150, "lb"),
  32854. name: "Back",
  32855. image: {
  32856. source: "./media/characters/kichi/back.svg",
  32857. extra: 1273/1166,
  32858. bottom: 33/1306
  32859. }
  32860. },
  32861. },
  32862. [
  32863. {
  32864. name: "Normal",
  32865. height: math.unit(8 + 6/12, "feet"),
  32866. default: true
  32867. },
  32868. ]
  32869. ))
  32870. characterMakers.push(() => makeCharacter(
  32871. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32872. {
  32873. front: {
  32874. height: math.unit(6, "feet"),
  32875. weight: math.unit(210, "lb"),
  32876. name: "Front",
  32877. image: {
  32878. source: "./media/characters/manetel-greyscale/front.svg",
  32879. extra: 350/312,
  32880. bottom: 8/358
  32881. }
  32882. },
  32883. },
  32884. [
  32885. {
  32886. name: "Micro",
  32887. height: math.unit(2, "inches")
  32888. },
  32889. {
  32890. name: "Normal",
  32891. height: math.unit(6, "feet"),
  32892. default: true
  32893. },
  32894. {
  32895. name: "Minimacro",
  32896. height: math.unit(17, "feet")
  32897. },
  32898. {
  32899. name: "Macro",
  32900. height: math.unit(117, "feet")
  32901. },
  32902. ]
  32903. ))
  32904. characterMakers.push(() => makeCharacter(
  32905. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32906. {
  32907. side: {
  32908. height: math.unit(5 + 1/12, "feet"),
  32909. weight: math.unit(418, "lb"),
  32910. name: "Side",
  32911. image: {
  32912. source: "./media/characters/softpurr/side.svg",
  32913. extra: 1993/1945,
  32914. bottom: 134/2127
  32915. }
  32916. },
  32917. front: {
  32918. height: math.unit(5 + 1/12, "feet"),
  32919. weight: math.unit(418, "lb"),
  32920. name: "Front",
  32921. image: {
  32922. source: "./media/characters/softpurr/front.svg",
  32923. extra: 1950/1856,
  32924. bottom: 174/2124
  32925. }
  32926. },
  32927. paw: {
  32928. height: math.unit(1, "feet"),
  32929. name: "Paw",
  32930. image: {
  32931. source: "./media/characters/softpurr/paw.svg"
  32932. }
  32933. },
  32934. },
  32935. [
  32936. {
  32937. name: "Normal",
  32938. height: math.unit(5 + 1/12, "feet"),
  32939. default: true
  32940. },
  32941. ]
  32942. ))
  32943. characterMakers.push(() => makeCharacter(
  32944. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32945. {
  32946. front: {
  32947. height: math.unit(260, "meters"),
  32948. name: "Front",
  32949. image: {
  32950. source: "./media/characters/anahita/front.svg",
  32951. extra: 665/635,
  32952. bottom: 89/754
  32953. }
  32954. },
  32955. },
  32956. [
  32957. {
  32958. name: "Macro",
  32959. height: math.unit(260, "meters"),
  32960. default: true
  32961. },
  32962. ]
  32963. ))
  32964. characterMakers.push(() => makeCharacter(
  32965. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32966. {
  32967. front: {
  32968. height: math.unit(4 + 10/12, "feet"),
  32969. weight: math.unit(160, "lb"),
  32970. name: "Front",
  32971. image: {
  32972. source: "./media/characters/chip-mouse/front.svg",
  32973. extra: 3528/3408,
  32974. bottom: 0/3528
  32975. }
  32976. },
  32977. frontNsfw: {
  32978. height: math.unit(4 + 10/12, "feet"),
  32979. weight: math.unit(160, "lb"),
  32980. name: "Front (NSFW)",
  32981. image: {
  32982. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32983. extra: 3528/3408,
  32984. bottom: 0/3528
  32985. }
  32986. },
  32987. },
  32988. [
  32989. {
  32990. name: "Normal",
  32991. height: math.unit(4 + 10/12, "feet"),
  32992. default: true
  32993. },
  32994. ]
  32995. ))
  32996. characterMakers.push(() => makeCharacter(
  32997. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32998. {
  32999. side: {
  33000. height: math.unit(10, "feet"),
  33001. weight: math.unit(14000, "lb"),
  33002. name: "Side",
  33003. image: {
  33004. source: "./media/characters/kremm/side.svg",
  33005. extra: 1390/1053,
  33006. bottom: 90/1480
  33007. }
  33008. },
  33009. gut: {
  33010. height: math.unit(5.8, "feet"),
  33011. name: "Gut",
  33012. image: {
  33013. source: "./media/characters/kremm/gut.svg"
  33014. }
  33015. },
  33016. ass: {
  33017. height: math.unit(6.1, "feet"),
  33018. name: "Ass",
  33019. image: {
  33020. source: "./media/characters/kremm/ass.svg"
  33021. }
  33022. },
  33023. jaws: {
  33024. height: math.unit(2.2, "feet"),
  33025. name: "Jaws",
  33026. image: {
  33027. source: "./media/characters/kremm/jaws.svg"
  33028. }
  33029. },
  33030. dick: {
  33031. height: math.unit(4.26, "feet"),
  33032. name: "Dick",
  33033. image: {
  33034. source: "./media/characters/kremm/dick.svg"
  33035. }
  33036. },
  33037. },
  33038. [
  33039. {
  33040. name: "Normal",
  33041. height: math.unit(10, "feet"),
  33042. default: true
  33043. },
  33044. ]
  33045. ))
  33046. characterMakers.push(() => makeCharacter(
  33047. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33048. {
  33049. front: {
  33050. height: math.unit(30, "stories"),
  33051. name: "Front",
  33052. image: {
  33053. source: "./media/characters/kai/front.svg",
  33054. extra: 1892/1718,
  33055. bottom: 162/2054
  33056. }
  33057. },
  33058. },
  33059. [
  33060. {
  33061. name: "Macro",
  33062. height: math.unit(30, "stories"),
  33063. default: true
  33064. },
  33065. ]
  33066. ))
  33067. characterMakers.push(() => makeCharacter(
  33068. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33069. {
  33070. front: {
  33071. height: math.unit(6 + 4/12, "feet"),
  33072. weight: math.unit(145, "lb"),
  33073. name: "Front",
  33074. image: {
  33075. source: "./media/characters/sykes/front.svg",
  33076. extra: 1321 / 1187,
  33077. bottom: 66 / 1387
  33078. }
  33079. },
  33080. back: {
  33081. height: math.unit(6 + 4/12, "feet"),
  33082. weight: math.unit(145, "lb"),
  33083. name: "Back",
  33084. image: {
  33085. source: "./media/characters/sykes/back.svg",
  33086. extra: 1326/1181,
  33087. bottom: 31/1357
  33088. }
  33089. },
  33090. handBack: {
  33091. height: math.unit(0.9, "feet"),
  33092. name: "Hand (Back)",
  33093. image: {
  33094. source: "./media/characters/sykes/hand-back.svg"
  33095. }
  33096. },
  33097. handFront: {
  33098. height: math.unit(0.839, "feet"),
  33099. name: "Hand (Front)",
  33100. image: {
  33101. source: "./media/characters/sykes/hand-front.svg"
  33102. }
  33103. },
  33104. leftFoot: {
  33105. height: math.unit(1.2, "feet"),
  33106. name: "Foot (Left)",
  33107. image: {
  33108. source: "./media/characters/sykes/foot-left.svg"
  33109. }
  33110. },
  33111. rightFoot: {
  33112. height: math.unit(1.2, "feet"),
  33113. name: "Foot (Right)",
  33114. image: {
  33115. source: "./media/characters/sykes/foot-right.svg"
  33116. }
  33117. },
  33118. maw: {
  33119. height: math.unit(1.93, "feet"),
  33120. name: "Maw",
  33121. image: {
  33122. source: "./media/characters/sykes/maw.svg"
  33123. }
  33124. },
  33125. teeth: {
  33126. height: math.unit(0.51, "feet"),
  33127. name: "Teeth",
  33128. image: {
  33129. source: "./media/characters/sykes/teeth.svg"
  33130. }
  33131. },
  33132. tongue: {
  33133. height: math.unit(2.13, "feet"),
  33134. name: "Tongue",
  33135. image: {
  33136. source: "./media/characters/sykes/tongue.svg"
  33137. }
  33138. },
  33139. uvula: {
  33140. height: math.unit(0.16, "feet"),
  33141. name: "Uvula",
  33142. image: {
  33143. source: "./media/characters/sykes/uvula.svg"
  33144. }
  33145. },
  33146. collar: {
  33147. height: math.unit(0.287, "feet"),
  33148. name: "Collar",
  33149. image: {
  33150. source: "./media/characters/sykes/collar.svg"
  33151. }
  33152. },
  33153. },
  33154. [
  33155. {
  33156. name: "Shrunken",
  33157. height: math.unit(5, "inches")
  33158. },
  33159. {
  33160. name: "Normal",
  33161. height: math.unit(6 + 4 / 12, "feet"),
  33162. default: true
  33163. },
  33164. {
  33165. name: "Big",
  33166. height: math.unit(15, "feet")
  33167. },
  33168. ]
  33169. ))
  33170. characterMakers.push(() => makeCharacter(
  33171. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33172. {
  33173. front: {
  33174. height: math.unit(5 + 8/12, "feet"),
  33175. weight: math.unit(190, "lb"),
  33176. name: "Front",
  33177. image: {
  33178. source: "./media/characters/oven-otter/front.svg",
  33179. extra: 1809/1740,
  33180. bottom: 181/1990
  33181. }
  33182. },
  33183. back: {
  33184. height: math.unit(5 + 8/12, "feet"),
  33185. weight: math.unit(190, "lb"),
  33186. name: "Back",
  33187. image: {
  33188. source: "./media/characters/oven-otter/back.svg",
  33189. extra: 1709/1635,
  33190. bottom: 118/1827
  33191. }
  33192. },
  33193. hand: {
  33194. height: math.unit(1.07, "feet"),
  33195. name: "Hand",
  33196. image: {
  33197. source: "./media/characters/oven-otter/hand.svg"
  33198. }
  33199. },
  33200. beans: {
  33201. height: math.unit(1.74, "feet"),
  33202. name: "Beans",
  33203. image: {
  33204. source: "./media/characters/oven-otter/beans.svg"
  33205. }
  33206. },
  33207. },
  33208. [
  33209. {
  33210. name: "Micro",
  33211. height: math.unit(0.5, "inches")
  33212. },
  33213. {
  33214. name: "Normal",
  33215. height: math.unit(5 + 8/12, "feet"),
  33216. default: true
  33217. },
  33218. {
  33219. name: "Macro",
  33220. height: math.unit(250, "feet")
  33221. },
  33222. {
  33223. name: "Really High",
  33224. height: math.unit(420, "feet")
  33225. },
  33226. ]
  33227. ))
  33228. characterMakers.push(() => makeCharacter(
  33229. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33230. {
  33231. front: {
  33232. height: math.unit(5, "meters"),
  33233. weight: math.unit(292000000000000, "kg"),
  33234. name: "Front",
  33235. image: {
  33236. source: "./media/characters/devourer/front.svg",
  33237. extra: 1800/1733,
  33238. bottom: 211/2011
  33239. }
  33240. },
  33241. maw: {
  33242. height: math.unit(1.1, "meter"),
  33243. name: "Maw",
  33244. image: {
  33245. source: "./media/characters/devourer/maw.svg"
  33246. }
  33247. },
  33248. },
  33249. [
  33250. {
  33251. name: "Small",
  33252. height: math.unit(3, "meters")
  33253. },
  33254. {
  33255. name: "Large",
  33256. height: math.unit(5, "meters"),
  33257. default: true
  33258. },
  33259. ]
  33260. ))
  33261. characterMakers.push(() => makeCharacter(
  33262. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33263. {
  33264. front: {
  33265. height: math.unit(6, "feet"),
  33266. weight: math.unit(400, "lb"),
  33267. name: "Front",
  33268. image: {
  33269. source: "./media/characters/ellarby/front.svg",
  33270. extra: 1909/1763,
  33271. bottom: 80/1989
  33272. }
  33273. },
  33274. back: {
  33275. height: math.unit(6, "feet"),
  33276. weight: math.unit(400, "lb"),
  33277. name: "Back",
  33278. image: {
  33279. source: "./media/characters/ellarby/back.svg",
  33280. extra: 1914/1784,
  33281. bottom: 172/2086
  33282. }
  33283. },
  33284. },
  33285. [
  33286. {
  33287. name: "Mischief",
  33288. height: math.unit(18, "inches")
  33289. },
  33290. {
  33291. name: "Trouble",
  33292. height: math.unit(12, "feet")
  33293. },
  33294. {
  33295. name: "Havoc",
  33296. height: math.unit(200, "feet"),
  33297. default: true
  33298. },
  33299. {
  33300. name: "Pandemonium",
  33301. height: math.unit(1, "mile")
  33302. },
  33303. {
  33304. name: "Catastrophe",
  33305. height: math.unit(100, "miles")
  33306. },
  33307. ]
  33308. ))
  33309. characterMakers.push(() => makeCharacter(
  33310. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33311. {
  33312. front: {
  33313. height: math.unit(4.7, "meters"),
  33314. weight: math.unit(6500, "kg"),
  33315. name: "Front",
  33316. image: {
  33317. source: "./media/characters/vex/front.svg",
  33318. extra: 1288/1140,
  33319. bottom: 100/1388
  33320. }
  33321. },
  33322. },
  33323. [
  33324. {
  33325. name: "Normal",
  33326. height: math.unit(4.7, "meters"),
  33327. default: true
  33328. },
  33329. ]
  33330. ))
  33331. characterMakers.push(() => makeCharacter(
  33332. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33333. {
  33334. normal: {
  33335. height: math.unit(6, "feet"),
  33336. weight: math.unit(350, "lb"),
  33337. name: "Normal",
  33338. image: {
  33339. source: "./media/characters/teshy/normal.svg",
  33340. extra: 1795/1735,
  33341. bottom: 16/1811
  33342. }
  33343. },
  33344. monsterFront: {
  33345. height: math.unit(12, "feet"),
  33346. weight: math.unit(4700, "lb"),
  33347. name: "Monster (Front)",
  33348. image: {
  33349. source: "./media/characters/teshy/monster-front.svg",
  33350. extra: 2042/2034,
  33351. bottom: 128/2170
  33352. }
  33353. },
  33354. monsterSide: {
  33355. height: math.unit(12, "feet"),
  33356. weight: math.unit(4700, "lb"),
  33357. name: "Monster (Side)",
  33358. image: {
  33359. source: "./media/characters/teshy/monster-side.svg",
  33360. extra: 2067/2056,
  33361. bottom: 70/2137
  33362. }
  33363. },
  33364. monsterBack: {
  33365. height: math.unit(12, "feet"),
  33366. weight: math.unit(4700, "lb"),
  33367. name: "Monster (Back)",
  33368. image: {
  33369. source: "./media/characters/teshy/monster-back.svg",
  33370. extra: 1921/1914,
  33371. bottom: 171/2092
  33372. }
  33373. },
  33374. },
  33375. [
  33376. {
  33377. name: "Normal",
  33378. height: math.unit(6, "feet"),
  33379. default: true
  33380. },
  33381. ]
  33382. ))
  33383. characterMakers.push(() => makeCharacter(
  33384. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33385. {
  33386. front: {
  33387. height: math.unit(6, "feet"),
  33388. name: "Front",
  33389. image: {
  33390. source: "./media/characters/ramey/front.svg",
  33391. extra: 790/787,
  33392. bottom: 27/817
  33393. }
  33394. },
  33395. },
  33396. [
  33397. {
  33398. name: "Normal",
  33399. height: math.unit(6, "feet"),
  33400. default: true
  33401. },
  33402. ]
  33403. ))
  33404. characterMakers.push(() => makeCharacter(
  33405. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33406. {
  33407. front: {
  33408. height: math.unit(5 + 5/12, "feet"),
  33409. weight: math.unit(120, "lb"),
  33410. name: "Front",
  33411. image: {
  33412. source: "./media/characters/phirae/front.svg",
  33413. extra: 2491/2436,
  33414. bottom: 38/2529
  33415. }
  33416. },
  33417. },
  33418. [
  33419. {
  33420. name: "Normal",
  33421. height: math.unit(5 + 5/12, "feet"),
  33422. default: true
  33423. },
  33424. ]
  33425. ))
  33426. characterMakers.push(() => makeCharacter(
  33427. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33428. {
  33429. front: {
  33430. height: math.unit(6, "feet"),
  33431. weight: math.unit(150, "lb"),
  33432. name: "Front",
  33433. image: {
  33434. source: "./media/characters/stagglas/front.svg",
  33435. extra: 962/882,
  33436. bottom: 53/1015
  33437. }
  33438. },
  33439. },
  33440. [
  33441. {
  33442. name: "Normal",
  33443. height: math.unit(5 + 3/12, "feet"),
  33444. default: true
  33445. },
  33446. ]
  33447. ))
  33448. characterMakers.push(() => makeCharacter(
  33449. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33450. {
  33451. front: {
  33452. height: math.unit(5 + 4/12, "feet"),
  33453. weight: math.unit(145, "lb"),
  33454. name: "Front",
  33455. image: {
  33456. source: "./media/characters/starra/front.svg",
  33457. extra: 1790/1691,
  33458. bottom: 91/1881
  33459. }
  33460. },
  33461. },
  33462. [
  33463. {
  33464. name: "Normal",
  33465. height: math.unit(5 + 4/12, "feet"),
  33466. default: true
  33467. },
  33468. ]
  33469. ))
  33470. characterMakers.push(() => makeCharacter(
  33471. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33472. {
  33473. front: {
  33474. height: math.unit(2.2, "meters"),
  33475. name: "Front",
  33476. image: {
  33477. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33478. extra: 1194/1005,
  33479. bottom: 25/1219
  33480. }
  33481. },
  33482. },
  33483. [
  33484. {
  33485. name: "Normal",
  33486. height: math.unit(2.2, "meters"),
  33487. default: true
  33488. },
  33489. ]
  33490. ))
  33491. characterMakers.push(() => makeCharacter(
  33492. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33493. {
  33494. side: {
  33495. height: math.unit(8 + 2/12, "feet"),
  33496. weight: math.unit(1240, "lb"),
  33497. name: "Side",
  33498. image: {
  33499. source: "./media/characters/mika-valentine/side.svg",
  33500. extra: 2670/2501,
  33501. bottom: 250/2920
  33502. }
  33503. },
  33504. },
  33505. [
  33506. {
  33507. name: "Normal",
  33508. height: math.unit(8 + 2/12, "feet"),
  33509. default: true
  33510. },
  33511. ]
  33512. ))
  33513. characterMakers.push(() => makeCharacter(
  33514. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33515. {
  33516. front: {
  33517. height: math.unit(7 + 2/12, "feet"),
  33518. name: "Front",
  33519. image: {
  33520. source: "./media/characters/xoltol/front.svg",
  33521. extra: 2212/2124,
  33522. bottom: 84/2296
  33523. }
  33524. },
  33525. side: {
  33526. height: math.unit(7 + 2/12, "feet"),
  33527. name: "Side",
  33528. image: {
  33529. source: "./media/characters/xoltol/side.svg",
  33530. extra: 2273/2197,
  33531. bottom: 26/2299
  33532. }
  33533. },
  33534. hand: {
  33535. height: math.unit(2.5, "feet"),
  33536. name: "Hand",
  33537. image: {
  33538. source: "./media/characters/xoltol/hand.svg"
  33539. }
  33540. },
  33541. },
  33542. [
  33543. {
  33544. name: "Small-ish",
  33545. height: math.unit(5 + 11/12, "feet")
  33546. },
  33547. {
  33548. name: "Normal",
  33549. height: math.unit(7 + 2/12, "feet")
  33550. },
  33551. {
  33552. name: "\"Macro\"",
  33553. height: math.unit(14 + 9/12, "feet"),
  33554. default: true
  33555. },
  33556. {
  33557. name: "Alternate Height",
  33558. height: math.unit(20, "feet")
  33559. },
  33560. {
  33561. name: "Actually Macro",
  33562. height: math.unit(100, "feet")
  33563. },
  33564. ]
  33565. ))
  33566. characterMakers.push(() => makeCharacter(
  33567. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33568. {
  33569. front: {
  33570. height: math.unit(5 + 2/12, "feet"),
  33571. name: "Front",
  33572. image: {
  33573. source: "./media/characters/kotetsu-redwood/front.svg",
  33574. extra: 1053/942,
  33575. bottom: 60/1113
  33576. }
  33577. },
  33578. },
  33579. [
  33580. {
  33581. name: "Normal",
  33582. height: math.unit(5 + 2/12, "feet"),
  33583. default: true
  33584. },
  33585. ]
  33586. ))
  33587. characterMakers.push(() => makeCharacter(
  33588. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33589. {
  33590. front: {
  33591. height: math.unit(2.4, "meters"),
  33592. weight: math.unit(125, "kg"),
  33593. name: "Front",
  33594. image: {
  33595. source: "./media/characters/lilith/front.svg",
  33596. extra: 1590/1513,
  33597. bottom: 203/1793
  33598. }
  33599. },
  33600. },
  33601. [
  33602. {
  33603. name: "Humanoid",
  33604. height: math.unit(2.4, "meters")
  33605. },
  33606. {
  33607. name: "Normal",
  33608. height: math.unit(6, "meters"),
  33609. default: true
  33610. },
  33611. {
  33612. name: "Largest",
  33613. height: math.unit(55, "meters")
  33614. },
  33615. ]
  33616. ))
  33617. characterMakers.push(() => makeCharacter(
  33618. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33619. {
  33620. front: {
  33621. height: math.unit(8 + 4/12, "feet"),
  33622. weight: math.unit(535, "lb"),
  33623. name: "Front",
  33624. image: {
  33625. source: "./media/characters/beh'kah-bolger/front.svg",
  33626. extra: 1660/1603,
  33627. bottom: 37/1697
  33628. }
  33629. },
  33630. },
  33631. [
  33632. {
  33633. name: "Normal",
  33634. height: math.unit(8 + 4/12, "feet"),
  33635. default: true
  33636. },
  33637. {
  33638. name: "Kaiju",
  33639. height: math.unit(250, "feet")
  33640. },
  33641. {
  33642. name: "Still Growing",
  33643. height: math.unit(10, "miles")
  33644. },
  33645. {
  33646. name: "Continental",
  33647. height: math.unit(5000, "miles")
  33648. },
  33649. {
  33650. name: "Final Form",
  33651. height: math.unit(2500000, "miles")
  33652. },
  33653. ]
  33654. ))
  33655. characterMakers.push(() => makeCharacter(
  33656. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33657. {
  33658. front: {
  33659. height: math.unit(7 + 2/12, "feet"),
  33660. weight: math.unit(230, "kg"),
  33661. name: "Front",
  33662. image: {
  33663. source: "./media/characters/tatyana-milewska/front.svg",
  33664. extra: 1199/1150,
  33665. bottom: 86/1285
  33666. }
  33667. },
  33668. },
  33669. [
  33670. {
  33671. name: "Normal",
  33672. height: math.unit(7 + 2/12, "feet"),
  33673. default: true
  33674. },
  33675. {
  33676. name: "Big",
  33677. height: math.unit(12, "feet")
  33678. },
  33679. {
  33680. name: "Minimacro",
  33681. height: math.unit(20, "feet")
  33682. },
  33683. {
  33684. name: "Macro",
  33685. height: math.unit(120, "feet")
  33686. },
  33687. ]
  33688. ))
  33689. characterMakers.push(() => makeCharacter(
  33690. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33691. {
  33692. front: {
  33693. height: math.unit(7 + 8/12, "feet"),
  33694. weight: math.unit(152, "kg"),
  33695. name: "Front",
  33696. image: {
  33697. source: "./media/characters/helen-arri/front.svg",
  33698. extra: 440/423,
  33699. bottom: 14/454
  33700. }
  33701. },
  33702. back: {
  33703. height: math.unit(7 + 8/12, "feet"),
  33704. weight: math.unit(152, "kg"),
  33705. name: "Back",
  33706. image: {
  33707. source: "./media/characters/helen-arri/back.svg",
  33708. extra: 443/426,
  33709. bottom: 8/451
  33710. }
  33711. },
  33712. },
  33713. [
  33714. {
  33715. name: "Normal",
  33716. height: math.unit(7 + 8/12, "feet"),
  33717. default: true
  33718. },
  33719. {
  33720. name: "Big",
  33721. height: math.unit(14, "feet")
  33722. },
  33723. {
  33724. name: "Minimacro",
  33725. height: math.unit(24, "feet")
  33726. },
  33727. {
  33728. name: "Macro",
  33729. height: math.unit(140, "feet")
  33730. },
  33731. ]
  33732. ))
  33733. characterMakers.push(() => makeCharacter(
  33734. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33735. {
  33736. front: {
  33737. height: math.unit(6, "meters"),
  33738. name: "Front",
  33739. image: {
  33740. source: "./media/characters/ehanu-rehu/front.svg",
  33741. extra: 1800/1800,
  33742. bottom: 59/1859
  33743. }
  33744. },
  33745. },
  33746. [
  33747. {
  33748. name: "Normal",
  33749. height: math.unit(6, "meters"),
  33750. default: true
  33751. },
  33752. ]
  33753. ))
  33754. characterMakers.push(() => makeCharacter(
  33755. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33756. {
  33757. front: {
  33758. height: math.unit(7 + 3/12, "feet"),
  33759. name: "Front",
  33760. image: {
  33761. source: "./media/characters/renholder/front.svg",
  33762. extra: 3096/2960,
  33763. bottom: 250/3346
  33764. }
  33765. },
  33766. },
  33767. [
  33768. {
  33769. name: "Normal Bat",
  33770. height: math.unit(7 + 3/12, "feet"),
  33771. default: true
  33772. },
  33773. {
  33774. name: "Slightly Tall Bat",
  33775. height: math.unit(100, "feet")
  33776. },
  33777. {
  33778. name: "Big Bat",
  33779. height: math.unit(1000, "feet")
  33780. },
  33781. {
  33782. name: "City-Sized Bat",
  33783. height: math.unit(200000, "feet")
  33784. },
  33785. {
  33786. name: "Bigger Bat",
  33787. height: math.unit(10000, "miles")
  33788. },
  33789. {
  33790. name: "Solar Sized Bat",
  33791. height: math.unit(100, "AU")
  33792. },
  33793. {
  33794. name: "Galactic Bat",
  33795. height: math.unit(200000, "lightyears")
  33796. },
  33797. {
  33798. name: "Universally Known Bat",
  33799. height: math.unit(1, "universe")
  33800. },
  33801. ]
  33802. ))
  33803. characterMakers.push(() => makeCharacter(
  33804. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33805. {
  33806. front: {
  33807. height: math.unit(6 + 11/12, "feet"),
  33808. weight: math.unit(250, "lb"),
  33809. name: "Front",
  33810. image: {
  33811. source: "./media/characters/cookiecat/front.svg",
  33812. extra: 893/827,
  33813. bottom: 14/907
  33814. }
  33815. },
  33816. },
  33817. [
  33818. {
  33819. name: "Micro",
  33820. height: math.unit(3, "inches")
  33821. },
  33822. {
  33823. name: "Normal",
  33824. height: math.unit(6 + 11/12, "feet"),
  33825. default: true
  33826. },
  33827. {
  33828. name: "Macro",
  33829. height: math.unit(100, "feet")
  33830. },
  33831. {
  33832. name: "Macro+",
  33833. height: math.unit(404, "feet")
  33834. },
  33835. {
  33836. name: "Megamacro",
  33837. height: math.unit(165, "miles")
  33838. },
  33839. {
  33840. name: "Planetary",
  33841. height: math.unit(4600, "miles")
  33842. },
  33843. ]
  33844. ))
  33845. characterMakers.push(() => makeCharacter(
  33846. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33847. {
  33848. front: {
  33849. height: math.unit(10 + 3/12, "feet"),
  33850. weight: math.unit(1500, "lb"),
  33851. name: "Front",
  33852. image: {
  33853. source: "./media/characters/tux-kusanagi/front.svg",
  33854. extra: 944/840,
  33855. bottom: 39/983
  33856. }
  33857. },
  33858. back: {
  33859. height: math.unit(10 + 3/12, "feet"),
  33860. weight: math.unit(1500, "lb"),
  33861. name: "Back",
  33862. image: {
  33863. source: "./media/characters/tux-kusanagi/back.svg",
  33864. extra: 941/842,
  33865. bottom: 28/969
  33866. }
  33867. },
  33868. rump: {
  33869. height: math.unit(5.25, "feet"),
  33870. name: "Rump",
  33871. image: {
  33872. source: "./media/characters/tux-kusanagi/rump.svg"
  33873. }
  33874. },
  33875. beak: {
  33876. height: math.unit(1.54, "feet"),
  33877. name: "Beak",
  33878. image: {
  33879. source: "./media/characters/tux-kusanagi/beak.svg"
  33880. }
  33881. },
  33882. },
  33883. [
  33884. {
  33885. name: "Normal",
  33886. height: math.unit(10 + 3/12, "feet"),
  33887. default: true
  33888. },
  33889. ]
  33890. ))
  33891. characterMakers.push(() => makeCharacter(
  33892. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33893. {
  33894. front: {
  33895. height: math.unit(58, "feet"),
  33896. weight: math.unit(200, "tons"),
  33897. name: "Front",
  33898. image: {
  33899. source: "./media/characters/uzarmazari/front.svg",
  33900. extra: 1575/1455,
  33901. bottom: 152/1727
  33902. }
  33903. },
  33904. back: {
  33905. height: math.unit(58, "feet"),
  33906. weight: math.unit(200, "tons"),
  33907. name: "Back",
  33908. image: {
  33909. source: "./media/characters/uzarmazari/back.svg",
  33910. extra: 1585/1510,
  33911. bottom: 157/1742
  33912. }
  33913. },
  33914. head: {
  33915. height: math.unit(26, "feet"),
  33916. name: "Head",
  33917. image: {
  33918. source: "./media/characters/uzarmazari/head.svg"
  33919. }
  33920. },
  33921. },
  33922. [
  33923. {
  33924. name: "Normal",
  33925. height: math.unit(58, "feet"),
  33926. default: true
  33927. },
  33928. ]
  33929. ))
  33930. characterMakers.push(() => makeCharacter(
  33931. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33932. {
  33933. side: {
  33934. height: math.unit(15, "feet"),
  33935. name: "Side",
  33936. image: {
  33937. source: "./media/characters/akitu/side.svg",
  33938. extra: 1421/1321,
  33939. bottom: 157/1578
  33940. }
  33941. },
  33942. front: {
  33943. height: math.unit(15, "feet"),
  33944. name: "Front",
  33945. image: {
  33946. source: "./media/characters/akitu/front.svg",
  33947. extra: 1435/1326,
  33948. bottom: 232/1667
  33949. }
  33950. },
  33951. },
  33952. [
  33953. {
  33954. name: "Normal",
  33955. height: math.unit(15, "feet"),
  33956. default: true
  33957. },
  33958. ]
  33959. ))
  33960. characterMakers.push(() => makeCharacter(
  33961. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33962. {
  33963. front: {
  33964. height: math.unit(10 + 8/12, "feet"),
  33965. name: "Front",
  33966. image: {
  33967. source: "./media/characters/azalie-croixland/front.svg",
  33968. extra: 1972/1856,
  33969. bottom: 31/2003
  33970. }
  33971. },
  33972. },
  33973. [
  33974. {
  33975. name: "Original Height",
  33976. height: math.unit(5 + 4/12, "feet")
  33977. },
  33978. {
  33979. name: "Normal Height",
  33980. height: math.unit(10 + 8/12, "feet"),
  33981. default: true
  33982. },
  33983. ]
  33984. ))
  33985. characterMakers.push(() => makeCharacter(
  33986. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  33987. {
  33988. side: {
  33989. height: math.unit(7 + 1/12, "feet"),
  33990. weight: math.unit(245, "lb"),
  33991. name: "Side",
  33992. image: {
  33993. source: "./media/characters/kavus-kazian/side.svg",
  33994. extra: 349/342,
  33995. bottom: 15/364
  33996. }
  33997. },
  33998. },
  33999. [
  34000. {
  34001. name: "Normal",
  34002. height: math.unit(7 + 1/12, "feet"),
  34003. default: true
  34004. },
  34005. ]
  34006. ))
  34007. characterMakers.push(() => makeCharacter(
  34008. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34009. {
  34010. normal: {
  34011. height: math.unit(5 + 11/12, "feet"),
  34012. name: "Normal",
  34013. image: {
  34014. source: "./media/characters/moonlight-rose/normal.svg",
  34015. extra: 1979/1835,
  34016. bottom: 14/1993
  34017. }
  34018. },
  34019. demon: {
  34020. height: math.unit(5, "km"),
  34021. name: "Demon",
  34022. image: {
  34023. source: "./media/characters/moonlight-rose/demon.svg",
  34024. extra: 986/916,
  34025. bottom: 28/1014
  34026. }
  34027. },
  34028. },
  34029. [
  34030. {
  34031. name: "\"Natural\" height",
  34032. height: math.unit(5 + 11/12, "feet")
  34033. },
  34034. {
  34035. name: "Comfortable Size",
  34036. height: math.unit(40, "meters")
  34037. },
  34038. {
  34039. name: "Common Size",
  34040. height: math.unit(50, "km"),
  34041. default: true
  34042. },
  34043. {
  34044. name: "Demonic",
  34045. height: math.unit(1.24415e+21, "meters")
  34046. },
  34047. ]
  34048. ))
  34049. characterMakers.push(() => makeCharacter(
  34050. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34051. {
  34052. front: {
  34053. height: math.unit(16, "feet"),
  34054. weight: math.unit(610, "kg"),
  34055. name: "Front",
  34056. image: {
  34057. source: "./media/characters/huckle/front.svg",
  34058. extra: 1731/1625,
  34059. bottom: 33/1764
  34060. }
  34061. },
  34062. back: {
  34063. height: math.unit(16, "feet"),
  34064. weight: math.unit(610, "kg"),
  34065. name: "Back",
  34066. image: {
  34067. source: "./media/characters/huckle/back.svg",
  34068. extra: 1738/1651,
  34069. bottom: 37/1775
  34070. }
  34071. },
  34072. laughing: {
  34073. height: math.unit(3.75, "feet"),
  34074. name: "Laughing",
  34075. image: {
  34076. source: "./media/characters/huckle/laughing.svg"
  34077. }
  34078. },
  34079. angry: {
  34080. height: math.unit(4.15, "feet"),
  34081. name: "Angry",
  34082. image: {
  34083. source: "./media/characters/huckle/angry.svg"
  34084. }
  34085. },
  34086. },
  34087. [
  34088. {
  34089. name: "Normal",
  34090. height: math.unit(16, "feet"),
  34091. default: true
  34092. },
  34093. {
  34094. name: "Mini Macro",
  34095. height: math.unit(463, "feet")
  34096. },
  34097. {
  34098. name: "Macro",
  34099. height: math.unit(1680, "meters")
  34100. },
  34101. {
  34102. name: "Mega Macro",
  34103. height: math.unit(175, "km")
  34104. },
  34105. {
  34106. name: "Terra Macro",
  34107. height: math.unit(32, "gigameters")
  34108. },
  34109. {
  34110. name: "Multiverse+",
  34111. height: math.unit(2.56e23, "yottameters")
  34112. },
  34113. ]
  34114. ))
  34115. characterMakers.push(() => makeCharacter(
  34116. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34117. {
  34118. front: {
  34119. height: math.unit(6 + 9/12, "feet"),
  34120. weight: math.unit(280, "lb"),
  34121. name: "Front",
  34122. image: {
  34123. source: "./media/characters/candy/front.svg",
  34124. extra: 234/217,
  34125. bottom: 11/245
  34126. }
  34127. },
  34128. },
  34129. [
  34130. {
  34131. name: "Really Small",
  34132. height: math.unit(0.1, "nm")
  34133. },
  34134. {
  34135. name: "Micro",
  34136. height: math.unit(2, "inches")
  34137. },
  34138. {
  34139. name: "Normal",
  34140. height: math.unit(6 + 9/12, "feet"),
  34141. default: true
  34142. },
  34143. {
  34144. name: "Small Macro",
  34145. height: math.unit(69, "feet")
  34146. },
  34147. {
  34148. name: "Macro",
  34149. height: math.unit(160, "feet")
  34150. },
  34151. {
  34152. name: "Megamacro",
  34153. height: math.unit(22000, "miles")
  34154. },
  34155. {
  34156. name: "Gigamacro",
  34157. height: math.unit(50000, "miles")
  34158. },
  34159. ]
  34160. ))
  34161. characterMakers.push(() => makeCharacter(
  34162. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34163. {
  34164. front: {
  34165. height: math.unit(4, "feet"),
  34166. weight: math.unit(90, "lb"),
  34167. name: "Front",
  34168. image: {
  34169. source: "./media/characters/joey-mcdonald/front.svg",
  34170. extra: 1059/852,
  34171. bottom: 33/1092
  34172. }
  34173. },
  34174. back: {
  34175. height: math.unit(4, "feet"),
  34176. weight: math.unit(90, "lb"),
  34177. name: "Back",
  34178. image: {
  34179. source: "./media/characters/joey-mcdonald/back.svg",
  34180. extra: 1077/879,
  34181. bottom: 5/1082
  34182. }
  34183. },
  34184. },
  34185. [
  34186. {
  34187. name: "Normal",
  34188. height: math.unit(4, "feet"),
  34189. default: true
  34190. },
  34191. ]
  34192. ))
  34193. characterMakers.push(() => makeCharacter(
  34194. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34195. {
  34196. front: {
  34197. height: math.unit(12 + 6/12, "feet"),
  34198. name: "Front",
  34199. image: {
  34200. source: "./media/characters/kass-lockheed/front.svg",
  34201. extra: 354/343,
  34202. bottom: 9/363
  34203. }
  34204. },
  34205. back: {
  34206. height: math.unit(12 + 6/12, "feet"),
  34207. name: "Back",
  34208. image: {
  34209. source: "./media/characters/kass-lockheed/back.svg",
  34210. extra: 364/352,
  34211. bottom: 3/367
  34212. }
  34213. },
  34214. dick: {
  34215. height: math.unit(3.12, "feet"),
  34216. name: "Dick",
  34217. image: {
  34218. source: "./media/characters/kass-lockheed/dick.svg"
  34219. }
  34220. },
  34221. head: {
  34222. height: math.unit(2.6, "feet"),
  34223. name: "Head",
  34224. image: {
  34225. source: "./media/characters/kass-lockheed/head.svg"
  34226. }
  34227. },
  34228. bleh: {
  34229. height: math.unit(2.85, "feet"),
  34230. name: "Bleh",
  34231. image: {
  34232. source: "./media/characters/kass-lockheed/bleh.svg"
  34233. }
  34234. },
  34235. smug: {
  34236. height: math.unit(2.85, "feet"),
  34237. name: "Smug",
  34238. image: {
  34239. source: "./media/characters/kass-lockheed/smug.svg"
  34240. }
  34241. },
  34242. },
  34243. [
  34244. {
  34245. name: "Normal",
  34246. height: math.unit(12 + 6/12, "feet"),
  34247. default: true
  34248. },
  34249. ]
  34250. ))
  34251. characterMakers.push(() => makeCharacter(
  34252. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34253. {
  34254. front: {
  34255. height: math.unit(6 + 2/12, "feet"),
  34256. name: "Front",
  34257. image: {
  34258. source: "./media/characters/taylor/front.svg",
  34259. extra: 639/495,
  34260. bottom: 12/651
  34261. }
  34262. },
  34263. },
  34264. [
  34265. {
  34266. name: "Normal",
  34267. height: math.unit(6 + 2/12, "feet"),
  34268. default: true
  34269. },
  34270. {
  34271. name: "Big",
  34272. height: math.unit(15, "feet")
  34273. },
  34274. {
  34275. name: "Lorg",
  34276. height: math.unit(80, "feet")
  34277. },
  34278. {
  34279. name: "Too Lorg",
  34280. height: math.unit(120, "feet")
  34281. },
  34282. ]
  34283. ))
  34284. characterMakers.push(() => makeCharacter(
  34285. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34286. {
  34287. front: {
  34288. height: math.unit(15, "feet"),
  34289. name: "Front",
  34290. image: {
  34291. source: "./media/characters/kaizer/front.svg",
  34292. extra: 1612/1436,
  34293. bottom: 43/1655
  34294. }
  34295. },
  34296. },
  34297. [
  34298. {
  34299. name: "Normal",
  34300. height: math.unit(15, "feet"),
  34301. default: true
  34302. },
  34303. ]
  34304. ))
  34305. characterMakers.push(() => makeCharacter(
  34306. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34307. {
  34308. front: {
  34309. height: math.unit(2, "feet"),
  34310. weight: math.unit(30, "lb"),
  34311. name: "Front",
  34312. image: {
  34313. source: "./media/characters/sandy/front.svg",
  34314. extra: 1439/1307,
  34315. bottom: 194/1633
  34316. }
  34317. },
  34318. },
  34319. [
  34320. {
  34321. name: "Normal",
  34322. height: math.unit(2, "feet"),
  34323. default: true
  34324. },
  34325. ]
  34326. ))
  34327. characterMakers.push(() => makeCharacter(
  34328. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34329. {
  34330. front: {
  34331. height: math.unit(3, "feet"),
  34332. name: "Front",
  34333. image: {
  34334. source: "./media/characters/mellvi/front.svg",
  34335. extra: 1831/1630,
  34336. bottom: 58/1889
  34337. }
  34338. },
  34339. },
  34340. [
  34341. {
  34342. name: "Normal",
  34343. height: math.unit(3, "feet"),
  34344. default: true
  34345. },
  34346. ]
  34347. ))
  34348. characterMakers.push(() => makeCharacter(
  34349. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34350. {
  34351. front: {
  34352. height: math.unit(5 + 11/12, "feet"),
  34353. weight: math.unit(200, "lb"),
  34354. name: "Front",
  34355. image: {
  34356. source: "./media/characters/shirou/front.svg",
  34357. extra: 2491/2383,
  34358. bottom: 189/2680
  34359. }
  34360. },
  34361. back: {
  34362. height: math.unit(5 + 11/12, "feet"),
  34363. weight: math.unit(200, "lb"),
  34364. name: "Back",
  34365. image: {
  34366. source: "./media/characters/shirou/back.svg",
  34367. extra: 2554/2450,
  34368. bottom: 76/2630
  34369. }
  34370. },
  34371. },
  34372. [
  34373. {
  34374. name: "Normal",
  34375. height: math.unit(5 + 11/12, "feet"),
  34376. default: true
  34377. },
  34378. ]
  34379. ))
  34380. characterMakers.push(() => makeCharacter(
  34381. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34382. {
  34383. front: {
  34384. height: math.unit(6 + 3/12, "feet"),
  34385. weight: math.unit(177, "lb"),
  34386. name: "Front",
  34387. image: {
  34388. source: "./media/characters/noryu/front.svg",
  34389. extra: 973/885,
  34390. bottom: 10/983
  34391. }
  34392. },
  34393. },
  34394. [
  34395. {
  34396. name: "Normal",
  34397. height: math.unit(6 + 3/12, "feet"),
  34398. default: true
  34399. },
  34400. ]
  34401. ))
  34402. characterMakers.push(() => makeCharacter(
  34403. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34404. {
  34405. front: {
  34406. height: math.unit(5 + 6/12, "feet"),
  34407. weight: math.unit(170, "lb"),
  34408. name: "Front",
  34409. image: {
  34410. source: "./media/characters/mevolas-rubenido/front.svg",
  34411. extra: 2109/1901,
  34412. bottom: 96/2205
  34413. }
  34414. },
  34415. },
  34416. [
  34417. {
  34418. name: "Normal",
  34419. height: math.unit(5 + 6/12, "feet"),
  34420. default: true
  34421. },
  34422. ]
  34423. ))
  34424. characterMakers.push(() => makeCharacter(
  34425. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34426. {
  34427. front: {
  34428. height: math.unit(100, "feet"),
  34429. name: "Front",
  34430. image: {
  34431. source: "./media/characters/dee/front.svg",
  34432. extra: 2153/2036,
  34433. bottom: 59/2212
  34434. }
  34435. },
  34436. back: {
  34437. height: math.unit(100, "feet"),
  34438. name: "Back",
  34439. image: {
  34440. source: "./media/characters/dee/back.svg",
  34441. extra: 2183/2058,
  34442. bottom: 75/2258
  34443. }
  34444. },
  34445. foot: {
  34446. height: math.unit(19.43, "feet"),
  34447. name: "Foot",
  34448. image: {
  34449. source: "./media/characters/dee/foot.svg"
  34450. }
  34451. },
  34452. hoof: {
  34453. height: math.unit(20.6, "feet"),
  34454. name: "Hoof",
  34455. image: {
  34456. source: "./media/characters/dee/hoof.svg"
  34457. }
  34458. },
  34459. },
  34460. [
  34461. {
  34462. name: "Macro",
  34463. height: math.unit(100, "feet"),
  34464. default: true
  34465. },
  34466. ]
  34467. ))
  34468. characterMakers.push(() => makeCharacter(
  34469. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34470. {
  34471. front: {
  34472. height: math.unit(5 + 6/12, "feet"),
  34473. name: "Front",
  34474. image: {
  34475. source: "./media/characters/teh/front.svg",
  34476. extra: 1002/847,
  34477. bottom: 62/1064
  34478. }
  34479. },
  34480. },
  34481. [
  34482. {
  34483. name: "Normal",
  34484. height: math.unit(5 + 6/12, "feet"),
  34485. default: true
  34486. },
  34487. ]
  34488. ))
  34489. characterMakers.push(() => makeCharacter(
  34490. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34491. {
  34492. side: {
  34493. height: math.unit(6 + 1/12, "feet"),
  34494. weight: math.unit(204, "lb"),
  34495. name: "Side",
  34496. image: {
  34497. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34498. extra: 974/775,
  34499. bottom: 169/1143
  34500. }
  34501. },
  34502. sitting: {
  34503. height: math.unit(6 + 2/12, "feet"),
  34504. weight: math.unit(204, "lb"),
  34505. name: "Sitting",
  34506. image: {
  34507. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34508. extra: 1175/964,
  34509. bottom: 378/1553
  34510. }
  34511. },
  34512. },
  34513. [
  34514. {
  34515. name: "Normal",
  34516. height: math.unit(6 + 1/12, "feet"),
  34517. default: true
  34518. },
  34519. ]
  34520. ))
  34521. characterMakers.push(() => makeCharacter(
  34522. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34523. {
  34524. front: {
  34525. height: math.unit(6, "inches"),
  34526. name: "Front",
  34527. image: {
  34528. source: "./media/characters/tululi/front.svg",
  34529. extra: 1997/1876,
  34530. bottom: 20/2017
  34531. }
  34532. },
  34533. },
  34534. [
  34535. {
  34536. name: "Normal",
  34537. height: math.unit(6, "inches"),
  34538. default: true
  34539. },
  34540. ]
  34541. ))
  34542. characterMakers.push(() => makeCharacter(
  34543. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34544. {
  34545. front: {
  34546. height: math.unit(4 + 1/12, "feet"),
  34547. name: "Front",
  34548. image: {
  34549. source: "./media/characters/star/front.svg",
  34550. extra: 1493/1189,
  34551. bottom: 48/1541
  34552. }
  34553. },
  34554. },
  34555. [
  34556. {
  34557. name: "Normal",
  34558. height: math.unit(4 + 1/12, "feet"),
  34559. default: true
  34560. },
  34561. ]
  34562. ))
  34563. characterMakers.push(() => makeCharacter(
  34564. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34565. {
  34566. front: {
  34567. height: math.unit(6 + 3/12, "feet"),
  34568. name: "Front",
  34569. image: {
  34570. source: "./media/characters/comet/front.svg",
  34571. extra: 1681/1462,
  34572. bottom: 26/1707
  34573. }
  34574. },
  34575. },
  34576. [
  34577. {
  34578. name: "Normal",
  34579. height: math.unit(6 + 3/12, "feet"),
  34580. default: true
  34581. },
  34582. ]
  34583. ))
  34584. characterMakers.push(() => makeCharacter(
  34585. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34586. {
  34587. front: {
  34588. height: math.unit(950, "feet"),
  34589. name: "Front",
  34590. image: {
  34591. source: "./media/characters/vortex/front.svg",
  34592. extra: 1497/1434,
  34593. bottom: 56/1553
  34594. }
  34595. },
  34596. maw: {
  34597. height: math.unit(285, "feet"),
  34598. name: "Maw",
  34599. image: {
  34600. source: "./media/characters/vortex/maw.svg"
  34601. }
  34602. },
  34603. },
  34604. [
  34605. {
  34606. name: "Macro",
  34607. height: math.unit(950, "feet"),
  34608. default: true
  34609. },
  34610. ]
  34611. ))
  34612. characterMakers.push(() => makeCharacter(
  34613. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34614. {
  34615. front: {
  34616. height: math.unit(600, "feet"),
  34617. weight: math.unit(0.02, "grams"),
  34618. name: "Front",
  34619. image: {
  34620. source: "./media/characters/doodle/front.svg",
  34621. extra: 1578/1413,
  34622. bottom: 37/1615
  34623. }
  34624. },
  34625. },
  34626. [
  34627. {
  34628. name: "Macro",
  34629. height: math.unit(600, "feet"),
  34630. default: true
  34631. },
  34632. ]
  34633. ))
  34634. characterMakers.push(() => makeCharacter(
  34635. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34636. {
  34637. front: {
  34638. height: math.unit(6 + 6/12, "feet"),
  34639. name: "Front",
  34640. image: {
  34641. source: "./media/characters/jai/front.svg",
  34642. extra: 1645/1534,
  34643. bottom: 115/1760
  34644. }
  34645. },
  34646. },
  34647. [
  34648. {
  34649. name: "Normal",
  34650. height: math.unit(6 + 6/12, "feet"),
  34651. default: true
  34652. },
  34653. ]
  34654. ))
  34655. characterMakers.push(() => makeCharacter(
  34656. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34657. {
  34658. front: {
  34659. height: math.unit(6 + 8/12, "feet"),
  34660. name: "Front",
  34661. image: {
  34662. source: "./media/characters/pixel/front.svg",
  34663. extra: 1900/1735,
  34664. bottom: 63/1963
  34665. }
  34666. },
  34667. },
  34668. [
  34669. {
  34670. name: "Normal",
  34671. height: math.unit(6 + 8/12, "feet"),
  34672. default: true
  34673. },
  34674. ]
  34675. ))
  34676. characterMakers.push(() => makeCharacter(
  34677. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34678. {
  34679. front: {
  34680. height: math.unit(4 + 11/12, "feet"),
  34681. weight: math.unit(111, "lb"),
  34682. name: "Front",
  34683. image: {
  34684. source: "./media/characters/rhett/front.svg",
  34685. extra: 1682/1586,
  34686. bottom: 92/1774
  34687. }
  34688. },
  34689. },
  34690. [
  34691. {
  34692. name: "Mini",
  34693. height: math.unit(1 + 1/12, "feet")
  34694. },
  34695. {
  34696. name: "Normal",
  34697. height: math.unit(4 + 11/12, "feet"),
  34698. default: true
  34699. },
  34700. ]
  34701. ))
  34702. characterMakers.push(() => makeCharacter(
  34703. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34704. {
  34705. front: {
  34706. height: math.unit(3 + 3/12, "feet"),
  34707. name: "Front",
  34708. image: {
  34709. source: "./media/characters/penny/front.svg",
  34710. extra: 1406/1311,
  34711. bottom: 26/1432
  34712. }
  34713. },
  34714. },
  34715. [
  34716. {
  34717. name: "Normal",
  34718. height: math.unit(3 + 3/12, "feet"),
  34719. default: true
  34720. },
  34721. ]
  34722. ))
  34723. characterMakers.push(() => makeCharacter(
  34724. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34725. {
  34726. front: {
  34727. height: math.unit(4 + 11/12, "feet"),
  34728. name: "Front",
  34729. image: {
  34730. source: "./media/characters/monty/front.svg",
  34731. extra: 1479/1209,
  34732. bottom: 0/1479
  34733. }
  34734. },
  34735. },
  34736. [
  34737. {
  34738. name: "Normal",
  34739. height: math.unit(4 + 11/12, "feet"),
  34740. default: true
  34741. },
  34742. ]
  34743. ))
  34744. characterMakers.push(() => makeCharacter(
  34745. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34746. {
  34747. front: {
  34748. height: math.unit(8 + 4/12, "feet"),
  34749. name: "Front",
  34750. image: {
  34751. source: "./media/characters/sterling/front.svg",
  34752. extra: 1420/1236,
  34753. bottom: 27/1447
  34754. }
  34755. },
  34756. },
  34757. [
  34758. {
  34759. name: "Normal",
  34760. height: math.unit(8 + 4/12, "feet"),
  34761. default: true
  34762. },
  34763. ]
  34764. ))
  34765. characterMakers.push(() => makeCharacter(
  34766. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34767. {
  34768. front: {
  34769. height: math.unit(15, "feet"),
  34770. name: "Front",
  34771. image: {
  34772. source: "./media/characters/marble/front.svg",
  34773. extra: 973/937,
  34774. bottom: 32/1005
  34775. }
  34776. },
  34777. },
  34778. [
  34779. {
  34780. name: "Normal",
  34781. height: math.unit(15, "feet"),
  34782. default: true
  34783. },
  34784. ]
  34785. ))
  34786. characterMakers.push(() => makeCharacter(
  34787. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34788. {
  34789. front: {
  34790. height: math.unit(3, "inches"),
  34791. name: "Front",
  34792. image: {
  34793. source: "./media/characters/powder/front.svg",
  34794. extra: 1504/1334,
  34795. bottom: 518/2022
  34796. }
  34797. },
  34798. },
  34799. [
  34800. {
  34801. name: "Normal",
  34802. height: math.unit(3, "inches"),
  34803. default: true
  34804. },
  34805. ]
  34806. ))
  34807. characterMakers.push(() => makeCharacter(
  34808. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34809. {
  34810. front: {
  34811. height: math.unit(4 + 5/12, "feet"),
  34812. name: "Front",
  34813. image: {
  34814. source: "./media/characters/joey-raccoon/front.svg",
  34815. extra: 1273/1197,
  34816. bottom: 0/1273
  34817. }
  34818. },
  34819. },
  34820. [
  34821. {
  34822. name: "Normal",
  34823. height: math.unit(4 + 5/12, "feet"),
  34824. default: true
  34825. },
  34826. ]
  34827. ))
  34828. characterMakers.push(() => makeCharacter(
  34829. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34830. {
  34831. front: {
  34832. height: math.unit(8 + 4/12, "feet"),
  34833. name: "Front",
  34834. image: {
  34835. source: "./media/characters/vick/front.svg",
  34836. extra: 2187/2118,
  34837. bottom: 47/2234
  34838. }
  34839. },
  34840. },
  34841. [
  34842. {
  34843. name: "Normal",
  34844. height: math.unit(8 + 4/12, "feet"),
  34845. default: true
  34846. },
  34847. ]
  34848. ))
  34849. characterMakers.push(() => makeCharacter(
  34850. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34851. {
  34852. front: {
  34853. height: math.unit(5 + 5/12, "feet"),
  34854. name: "Front",
  34855. image: {
  34856. source: "./media/characters/mitsy/front.svg",
  34857. extra: 1842/1695,
  34858. bottom: 0/1842
  34859. }
  34860. },
  34861. },
  34862. [
  34863. {
  34864. name: "Normal",
  34865. height: math.unit(5 + 5/12, "feet"),
  34866. default: true
  34867. },
  34868. ]
  34869. ))
  34870. characterMakers.push(() => makeCharacter(
  34871. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34872. {
  34873. front: {
  34874. height: math.unit(6 + 3/12, "feet"),
  34875. name: "Front",
  34876. image: {
  34877. source: "./media/characters/silvy/front.svg",
  34878. extra: 1995/1836,
  34879. bottom: 225/2220
  34880. }
  34881. },
  34882. },
  34883. [
  34884. {
  34885. name: "Normal",
  34886. height: math.unit(6 + 3/12, "feet"),
  34887. default: true
  34888. },
  34889. ]
  34890. ))
  34891. characterMakers.push(() => makeCharacter(
  34892. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34893. {
  34894. front: {
  34895. height: math.unit(3 + 8/12, "feet"),
  34896. name: "Front",
  34897. image: {
  34898. source: "./media/characters/rodney/front.svg",
  34899. extra: 1956/1747,
  34900. bottom: 31/1987
  34901. }
  34902. },
  34903. frontDressed: {
  34904. height: math.unit(2.9, "feet"),
  34905. name: "Front (Dressed)",
  34906. image: {
  34907. source: "./media/characters/rodney/front-dressed.svg",
  34908. extra: 1382/1241,
  34909. bottom: 385/1767
  34910. }
  34911. },
  34912. },
  34913. [
  34914. {
  34915. name: "Normal",
  34916. height: math.unit(3 + 8/12, "feet"),
  34917. default: true
  34918. },
  34919. ]
  34920. ))
  34921. characterMakers.push(() => makeCharacter(
  34922. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34923. {
  34924. front: {
  34925. height: math.unit(5 + 9/12, "feet"),
  34926. weight: math.unit(194, "lbs"),
  34927. name: "Front",
  34928. image: {
  34929. source: "./media/characters/zakail-sudekai/front.svg",
  34930. extra: 2696/2533,
  34931. bottom: 248/2944
  34932. }
  34933. },
  34934. maw: {
  34935. height: math.unit(1.35, "feet"),
  34936. name: "Maw",
  34937. image: {
  34938. source: "./media/characters/zakail-sudekai/maw.svg"
  34939. }
  34940. },
  34941. },
  34942. [
  34943. {
  34944. name: "Normal",
  34945. height: math.unit(5 + 9/12, "feet"),
  34946. default: true
  34947. },
  34948. ]
  34949. ))
  34950. characterMakers.push(() => makeCharacter(
  34951. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  34952. {
  34953. front: {
  34954. height: math.unit(8 + 4/12, "feet"),
  34955. weight: math.unit(1200, "lb"),
  34956. name: "Front",
  34957. image: {
  34958. source: "./media/characters/eleanor/front.svg",
  34959. extra: 1226/1192,
  34960. bottom: 52/1278
  34961. }
  34962. },
  34963. back: {
  34964. height: math.unit(8 + 4/12, "feet"),
  34965. weight: math.unit(1200, "lb"),
  34966. name: "Back",
  34967. image: {
  34968. source: "./media/characters/eleanor/back.svg",
  34969. extra: 1242/1184,
  34970. bottom: 60/1302
  34971. }
  34972. },
  34973. head: {
  34974. height: math.unit(2.62, "feet"),
  34975. name: "Head",
  34976. image: {
  34977. source: "./media/characters/eleanor/head.svg"
  34978. }
  34979. },
  34980. },
  34981. [
  34982. {
  34983. name: "Normal",
  34984. height: math.unit(8 + 4/12, "feet"),
  34985. default: true
  34986. },
  34987. ]
  34988. ))
  34989. characterMakers.push(() => makeCharacter(
  34990. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  34991. {
  34992. front: {
  34993. height: math.unit(8 + 4/12, "feet"),
  34994. weight: math.unit(750, "lb"),
  34995. name: "Front",
  34996. image: {
  34997. source: "./media/characters/tanya/front.svg",
  34998. extra: 1749/1615,
  34999. bottom: 33/1782
  35000. }
  35001. },
  35002. },
  35003. [
  35004. {
  35005. name: "Normal",
  35006. height: math.unit(8 + 4/12, "feet"),
  35007. default: true
  35008. },
  35009. ]
  35010. ))
  35011. characterMakers.push(() => makeCharacter(
  35012. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35013. {
  35014. front: {
  35015. height: math.unit(5, "feet"),
  35016. weight: math.unit(225, "lb"),
  35017. name: "Front",
  35018. image: {
  35019. source: "./media/characters/cindy/front.svg",
  35020. extra: 1320/1250,
  35021. bottom: 42/1362
  35022. }
  35023. },
  35024. frontDressed: {
  35025. height: math.unit(5, "feet"),
  35026. weight: math.unit(225, "lb"),
  35027. name: "Front (Dressed)",
  35028. image: {
  35029. source: "./media/characters/cindy/front-dressed.svg",
  35030. extra: 1320/1250,
  35031. bottom: 42/1362
  35032. }
  35033. },
  35034. back: {
  35035. height: math.unit(5, "feet"),
  35036. weight: math.unit(225, "lb"),
  35037. name: "Back",
  35038. image: {
  35039. source: "./media/characters/cindy/back.svg",
  35040. extra: 1384/1346,
  35041. bottom: 14/1398
  35042. }
  35043. },
  35044. },
  35045. [
  35046. {
  35047. name: "Normal",
  35048. height: math.unit(5, "feet"),
  35049. default: true
  35050. },
  35051. ]
  35052. ))
  35053. characterMakers.push(() => makeCharacter(
  35054. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35055. {
  35056. front: {
  35057. height: math.unit(6 + 9/12, "feet"),
  35058. weight: math.unit(440, "lb"),
  35059. name: "Front",
  35060. image: {
  35061. source: "./media/characters/wilbur-owen/front.svg",
  35062. extra: 1575/1448,
  35063. bottom: 72/1647
  35064. }
  35065. },
  35066. back: {
  35067. height: math.unit(6 + 9/12, "feet"),
  35068. weight: math.unit(440, "lb"),
  35069. name: "Back",
  35070. image: {
  35071. source: "./media/characters/wilbur-owen/back.svg",
  35072. extra: 1578/1445,
  35073. bottom: 36/1614
  35074. }
  35075. },
  35076. },
  35077. [
  35078. {
  35079. name: "Normal",
  35080. height: math.unit(6 + 9/12, "feet"),
  35081. default: true
  35082. },
  35083. ]
  35084. ))
  35085. characterMakers.push(() => makeCharacter(
  35086. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35087. {
  35088. front: {
  35089. height: math.unit(6 + 5/12, "feet"),
  35090. weight: math.unit(650, "lb"),
  35091. name: "Front",
  35092. image: {
  35093. source: "./media/characters/keegan/front.svg",
  35094. extra: 2387/2198,
  35095. bottom: 33/2420
  35096. }
  35097. },
  35098. side: {
  35099. height: math.unit(6 + 5/12, "feet"),
  35100. weight: math.unit(650, "lb"),
  35101. name: "Side",
  35102. image: {
  35103. source: "./media/characters/keegan/side.svg",
  35104. extra: 2390/2202,
  35105. bottom: 47/2437
  35106. }
  35107. },
  35108. back: {
  35109. height: math.unit(6 + 5/12, "feet"),
  35110. weight: math.unit(650, "lb"),
  35111. name: "Back",
  35112. image: {
  35113. source: "./media/characters/keegan/back.svg",
  35114. extra: 2418/2268,
  35115. bottom: 15/2433
  35116. }
  35117. },
  35118. frontSfw: {
  35119. height: math.unit(6 + 5/12, "feet"),
  35120. weight: math.unit(650, "lb"),
  35121. name: "Front (SFW)",
  35122. image: {
  35123. source: "./media/characters/keegan/front-sfw.svg",
  35124. extra: 2387/2198,
  35125. bottom: 33/2420
  35126. }
  35127. },
  35128. beans: {
  35129. height: math.unit(1.85, "feet"),
  35130. name: "Beans",
  35131. image: {
  35132. source: "./media/characters/keegan/beans.svg"
  35133. }
  35134. },
  35135. },
  35136. [
  35137. {
  35138. name: "Normal",
  35139. height: math.unit(6 + 5/12, "feet"),
  35140. default: true
  35141. },
  35142. ]
  35143. ))
  35144. characterMakers.push(() => makeCharacter(
  35145. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35146. {
  35147. front: {
  35148. height: math.unit(9, "feet"),
  35149. name: "Front",
  35150. image: {
  35151. source: "./media/characters/colton/front.svg",
  35152. extra: 1589/1326,
  35153. bottom: 139/1728
  35154. }
  35155. },
  35156. },
  35157. [
  35158. {
  35159. name: "Normal",
  35160. height: math.unit(9, "feet"),
  35161. default: true
  35162. },
  35163. ]
  35164. ))
  35165. characterMakers.push(() => makeCharacter(
  35166. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35167. {
  35168. front: {
  35169. height: math.unit(2 + 9/12, "feet"),
  35170. name: "Front",
  35171. image: {
  35172. source: "./media/characters/bora/front.svg",
  35173. extra: 1265/1250,
  35174. bottom: 24/1289
  35175. }
  35176. },
  35177. },
  35178. [
  35179. {
  35180. name: "Normal",
  35181. height: math.unit(2 + 9/12, "feet"),
  35182. default: true
  35183. },
  35184. ]
  35185. ))
  35186. characterMakers.push(() => makeCharacter(
  35187. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35188. {
  35189. front: {
  35190. height: math.unit(8, "feet"),
  35191. name: "Front",
  35192. image: {
  35193. source: "./media/characters/myu-myu/front.svg",
  35194. extra: 1949/1857,
  35195. bottom: 90/2039
  35196. }
  35197. },
  35198. },
  35199. [
  35200. {
  35201. name: "Normal",
  35202. height: math.unit(8, "feet"),
  35203. default: true
  35204. },
  35205. {
  35206. name: "Big",
  35207. height: math.unit(15, "feet")
  35208. },
  35209. {
  35210. name: "BIG",
  35211. height: math.unit(25, "feet")
  35212. },
  35213. ]
  35214. ))
  35215. characterMakers.push(() => makeCharacter(
  35216. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35217. {
  35218. side: {
  35219. height: math.unit(7 + 5/12, "feet"),
  35220. weight: math.unit(2800, "lb"),
  35221. name: "Side",
  35222. image: {
  35223. source: "./media/characters/haloren/side.svg",
  35224. extra: 1793/409,
  35225. bottom: 59/1852
  35226. }
  35227. },
  35228. frontPaw: {
  35229. height: math.unit(2.36, "feet"),
  35230. name: "Front paw",
  35231. image: {
  35232. source: "./media/characters/haloren/front-paw.svg"
  35233. }
  35234. },
  35235. hindPaw: {
  35236. height: math.unit(3.18, "feet"),
  35237. name: "Hind paw",
  35238. image: {
  35239. source: "./media/characters/haloren/hind-paw.svg"
  35240. }
  35241. },
  35242. maw: {
  35243. height: math.unit(5.05, "feet"),
  35244. name: "Maw",
  35245. image: {
  35246. source: "./media/characters/haloren/maw.svg"
  35247. }
  35248. },
  35249. dick: {
  35250. height: math.unit(2.90, "feet"),
  35251. name: "Dick",
  35252. image: {
  35253. source: "./media/characters/haloren/dick.svg"
  35254. }
  35255. },
  35256. },
  35257. [
  35258. {
  35259. name: "Normal",
  35260. height: math.unit(7 + 5/12, "feet"),
  35261. default: true
  35262. },
  35263. {
  35264. name: "Enhanced",
  35265. height: math.unit(14 + 3/12, "feet")
  35266. },
  35267. ]
  35268. ))
  35269. characterMakers.push(() => makeCharacter(
  35270. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35271. {
  35272. front: {
  35273. height: math.unit(171, "cm"),
  35274. name: "Front",
  35275. image: {
  35276. source: "./media/characters/kimmy/front.svg",
  35277. extra: 1491/1435,
  35278. bottom: 53/1544
  35279. }
  35280. },
  35281. },
  35282. [
  35283. {
  35284. name: "Small",
  35285. height: math.unit(9, "cm")
  35286. },
  35287. {
  35288. name: "Normal",
  35289. height: math.unit(171, "cm"),
  35290. default: true
  35291. },
  35292. ]
  35293. ))
  35294. characterMakers.push(() => makeCharacter(
  35295. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35296. {
  35297. front: {
  35298. height: math.unit(8, "feet"),
  35299. weight: math.unit(300, "lb"),
  35300. name: "Front",
  35301. image: {
  35302. source: "./media/characters/galeboomer/front.svg",
  35303. extra: 4651/4415,
  35304. bottom: 162/4813
  35305. }
  35306. },
  35307. back: {
  35308. height: math.unit(8, "feet"),
  35309. weight: math.unit(300, "lb"),
  35310. name: "Back",
  35311. image: {
  35312. source: "./media/characters/galeboomer/back.svg",
  35313. extra: 4544/4314,
  35314. bottom: 16/4560
  35315. }
  35316. },
  35317. frontAlt: {
  35318. height: math.unit(8, "feet"),
  35319. weight: math.unit(300, "lb"),
  35320. name: "Front (Alt)",
  35321. image: {
  35322. source: "./media/characters/galeboomer/front-alt.svg",
  35323. extra: 4458/4228,
  35324. bottom: 68/4526
  35325. }
  35326. },
  35327. maw: {
  35328. height: math.unit(1.2, "feet"),
  35329. name: "Maw",
  35330. image: {
  35331. source: "./media/characters/galeboomer/maw.svg"
  35332. }
  35333. },
  35334. },
  35335. [
  35336. {
  35337. name: "Normal",
  35338. height: math.unit(8, "feet"),
  35339. default: true
  35340. },
  35341. ]
  35342. ))
  35343. characterMakers.push(() => makeCharacter(
  35344. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35345. {
  35346. front: {
  35347. height: math.unit(5 + 9/12, "feet"),
  35348. weight: math.unit(120, "lb"),
  35349. name: "Front",
  35350. image: {
  35351. source: "./media/characters/chyr/front.svg",
  35352. extra: 1323/1254,
  35353. bottom: 63/1386
  35354. }
  35355. },
  35356. back: {
  35357. height: math.unit(5 + 9/12, "feet"),
  35358. weight: math.unit(120, "lb"),
  35359. name: "Back",
  35360. image: {
  35361. source: "./media/characters/chyr/back.svg",
  35362. extra: 1323/1252,
  35363. bottom: 48/1371
  35364. }
  35365. },
  35366. },
  35367. [
  35368. {
  35369. name: "Normal",
  35370. height: math.unit(5 + 9/12, "feet"),
  35371. default: true
  35372. },
  35373. ]
  35374. ))
  35375. characterMakers.push(() => makeCharacter(
  35376. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35377. {
  35378. front: {
  35379. height: math.unit(7, "feet"),
  35380. weight: math.unit(310, "lb"),
  35381. name: "Front",
  35382. image: {
  35383. source: "./media/characters/solarus/front.svg",
  35384. extra: 2415/2021,
  35385. bottom: 103/2518
  35386. }
  35387. },
  35388. back: {
  35389. height: math.unit(7, "feet"),
  35390. weight: math.unit(310, "lb"),
  35391. name: "Back",
  35392. image: {
  35393. source: "./media/characters/solarus/back.svg",
  35394. extra: 2463/2089,
  35395. bottom: 79/2542
  35396. }
  35397. },
  35398. },
  35399. [
  35400. {
  35401. name: "Normal",
  35402. height: math.unit(7, "feet"),
  35403. default: true
  35404. },
  35405. ]
  35406. ))
  35407. characterMakers.push(() => makeCharacter(
  35408. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35409. {
  35410. front: {
  35411. height: math.unit(16, "feet"),
  35412. name: "Front",
  35413. image: {
  35414. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35415. extra: 1844/1780,
  35416. bottom: 58/1902
  35417. }
  35418. },
  35419. },
  35420. [
  35421. {
  35422. name: "Normal",
  35423. height: math.unit(16, "feet"),
  35424. default: true
  35425. },
  35426. ]
  35427. ))
  35428. characterMakers.push(() => makeCharacter(
  35429. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35430. {
  35431. front: {
  35432. height: math.unit(11 + 6/12, "feet"),
  35433. weight: math.unit(1366, "lb"),
  35434. name: "Front",
  35435. image: {
  35436. source: "./media/characters/lexor/front.svg",
  35437. extra: 1560/1481,
  35438. bottom: 211/1771
  35439. }
  35440. },
  35441. back: {
  35442. height: math.unit(11 + 6/12, "feet"),
  35443. weight: math.unit(1366, "lb"),
  35444. name: "Back",
  35445. image: {
  35446. source: "./media/characters/lexor/back.svg",
  35447. extra: 1614/1533,
  35448. bottom: 76/1690
  35449. }
  35450. },
  35451. maw: {
  35452. height: math.unit(3, "feet"),
  35453. name: "Maw",
  35454. image: {
  35455. source: "./media/characters/lexor/maw.svg"
  35456. }
  35457. },
  35458. dick: {
  35459. height: math.unit(2.59, "feet"),
  35460. name: "Dick",
  35461. image: {
  35462. source: "./media/characters/lexor/dick.svg"
  35463. }
  35464. },
  35465. },
  35466. [
  35467. {
  35468. name: "Normal",
  35469. height: math.unit(11 + 6/12, "feet"),
  35470. default: true
  35471. },
  35472. ]
  35473. ))
  35474. characterMakers.push(() => makeCharacter(
  35475. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  35476. {
  35477. front: {
  35478. height: math.unit(5 + 8/12, "feet"),
  35479. name: "Front",
  35480. image: {
  35481. source: "./media/characters/magnum/front.svg",
  35482. extra: 942/855,
  35483. bottom: 26/968
  35484. }
  35485. },
  35486. },
  35487. [
  35488. {
  35489. name: "Normal",
  35490. height: math.unit(5 + 8/12, "feet"),
  35491. default: true
  35492. },
  35493. ]
  35494. ))
  35495. characterMakers.push(() => makeCharacter(
  35496. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  35497. {
  35498. front: {
  35499. height: math.unit(18 + 4/12, "feet"),
  35500. weight: math.unit(1500, "kg"),
  35501. name: "Front",
  35502. image: {
  35503. source: "./media/characters/solas-sharpsman/front.svg",
  35504. extra: 1698/1589,
  35505. bottom: 0/1698
  35506. }
  35507. },
  35508. },
  35509. [
  35510. {
  35511. name: "Normal",
  35512. height: math.unit(18 + 4/12, "feet"),
  35513. default: true
  35514. },
  35515. ]
  35516. ))
  35517. characterMakers.push(() => makeCharacter(
  35518. { name: "October", species: ["tiger"], tags: ["anthro"] },
  35519. {
  35520. front: {
  35521. height: math.unit(5 + 5/12, "feet"),
  35522. weight: math.unit(180, "lb"),
  35523. name: "Front",
  35524. image: {
  35525. source: "./media/characters/october/front.svg",
  35526. extra: 1800/1650,
  35527. bottom: 0/1800
  35528. }
  35529. },
  35530. frontNsfw: {
  35531. height: math.unit(5 + 5/12, "feet"),
  35532. weight: math.unit(180, "lb"),
  35533. name: "Front (NSFW)",
  35534. image: {
  35535. source: "./media/characters/october/front-nsfw.svg",
  35536. extra: 1392/1307,
  35537. bottom: 42/1434
  35538. }
  35539. },
  35540. },
  35541. [
  35542. {
  35543. name: "Normal",
  35544. height: math.unit(5 + 5/12, "feet"),
  35545. default: true
  35546. },
  35547. ]
  35548. ))
  35549. characterMakers.push(() => makeCharacter(
  35550. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  35551. {
  35552. front: {
  35553. height: math.unit(8 + 6/12, "feet"),
  35554. name: "Front",
  35555. image: {
  35556. source: "./media/characters/essynkardi/front.svg",
  35557. extra: 1914/1846,
  35558. bottom: 22/1936
  35559. }
  35560. },
  35561. },
  35562. [
  35563. {
  35564. name: "Normal",
  35565. height: math.unit(8 + 6/12, "feet"),
  35566. default: true
  35567. },
  35568. ]
  35569. ))
  35570. characterMakers.push(() => makeCharacter(
  35571. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  35572. {
  35573. front: {
  35574. height: math.unit(6 + 6/12, "feet"),
  35575. weight: math.unit(7, "lb"),
  35576. name: "Front",
  35577. image: {
  35578. source: "./media/characters/icky/front.svg",
  35579. extra: 813/782,
  35580. bottom: 66/879
  35581. }
  35582. },
  35583. back: {
  35584. height: math.unit(6 + 6/12, "feet"),
  35585. weight: math.unit(7, "lb"),
  35586. name: "Back",
  35587. image: {
  35588. source: "./media/characters/icky/back.svg",
  35589. extra: 754/735,
  35590. bottom: 56/810
  35591. }
  35592. },
  35593. },
  35594. [
  35595. {
  35596. name: "Normal",
  35597. height: math.unit(6 + 6/12, "feet"),
  35598. default: true
  35599. },
  35600. ]
  35601. ))
  35602. characterMakers.push(() => makeCharacter(
  35603. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  35604. {
  35605. front: {
  35606. height: math.unit(15, "feet"),
  35607. name: "Front",
  35608. image: {
  35609. source: "./media/characters/rojas/front.svg",
  35610. extra: 1462/1408,
  35611. bottom: 95/1557
  35612. }
  35613. },
  35614. back: {
  35615. height: math.unit(15, "feet"),
  35616. name: "Back",
  35617. image: {
  35618. source: "./media/characters/rojas/back.svg",
  35619. extra: 1023/954,
  35620. bottom: 28/1051
  35621. }
  35622. },
  35623. },
  35624. [
  35625. {
  35626. name: "Normal",
  35627. height: math.unit(15, "feet"),
  35628. default: true
  35629. },
  35630. ]
  35631. ))
  35632. characterMakers.push(() => makeCharacter(
  35633. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  35634. {
  35635. frontHuman: {
  35636. height: math.unit(5 + 7/12, "feet"),
  35637. name: "Front (Human)",
  35638. image: {
  35639. source: "./media/characters/alek-dryagan/front-human.svg",
  35640. extra: 1687/1667,
  35641. bottom: 69/1756
  35642. }
  35643. },
  35644. backHuman: {
  35645. height: math.unit(5 + 7/12, "feet"),
  35646. name: "Back (Human)",
  35647. image: {
  35648. source: "./media/characters/alek-dryagan/back-human.svg",
  35649. extra: 1670/1649,
  35650. bottom: 65/1735
  35651. }
  35652. },
  35653. frontDemi: {
  35654. height: math.unit(65, "feet"),
  35655. name: "Front (Demi)",
  35656. image: {
  35657. source: "./media/characters/alek-dryagan/front-demi.svg",
  35658. extra: 1669/1642,
  35659. bottom: 49/1718
  35660. }
  35661. },
  35662. backDemi: {
  35663. height: math.unit(65, "feet"),
  35664. name: "Back (Demi)",
  35665. image: {
  35666. source: "./media/characters/alek-dryagan/back-demi.svg",
  35667. extra: 1658/1637,
  35668. bottom: 40/1698
  35669. }
  35670. },
  35671. mawHuman: {
  35672. height: math.unit(0.3, "feet"),
  35673. name: "Maw (Human)",
  35674. image: {
  35675. source: "./media/characters/alek-dryagan/maw-human.svg"
  35676. }
  35677. },
  35678. mawDemi: {
  35679. height: math.unit(3.8, "feet"),
  35680. name: "Maw (Demi)",
  35681. image: {
  35682. source: "./media/characters/alek-dryagan/maw-demi.svg"
  35683. }
  35684. },
  35685. },
  35686. [
  35687. {
  35688. name: "Normal",
  35689. height: math.unit(5 + 7/12, "feet"),
  35690. default: true
  35691. },
  35692. ]
  35693. ))
  35694. characterMakers.push(() => makeCharacter(
  35695. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  35696. {
  35697. frontHuman: {
  35698. height: math.unit(5 + 2/12, "feet"),
  35699. name: "Front (Human)",
  35700. image: {
  35701. source: "./media/characters/gen/front-human.svg",
  35702. extra: 1627/1538,
  35703. bottom: 71/1698
  35704. }
  35705. },
  35706. backHuman: {
  35707. height: math.unit(5 + 2/12, "feet"),
  35708. name: "Back (Human)",
  35709. image: {
  35710. source: "./media/characters/gen/back-human.svg",
  35711. extra: 1638/1548,
  35712. bottom: 69/1707
  35713. }
  35714. },
  35715. frontDemi: {
  35716. height: math.unit(5 + 2/12, "feet"),
  35717. name: "Front (Demi)",
  35718. image: {
  35719. source: "./media/characters/gen/front-demi.svg",
  35720. extra: 1627/1538,
  35721. bottom: 71/1698
  35722. }
  35723. },
  35724. backDemi: {
  35725. height: math.unit(5 + 2/12, "feet"),
  35726. name: "Back (Demi)",
  35727. image: {
  35728. source: "./media/characters/gen/back-demi.svg",
  35729. extra: 1638/1548,
  35730. bottom: 69/1707
  35731. }
  35732. },
  35733. },
  35734. [
  35735. {
  35736. name: "Normal",
  35737. height: math.unit(5 + 2/12, "feet"),
  35738. default: true
  35739. },
  35740. ]
  35741. ))
  35742. characterMakers.push(() => makeCharacter(
  35743. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  35744. {
  35745. frontImp: {
  35746. height: math.unit(1 + 11/12, "feet"),
  35747. name: "Front (Imp)",
  35748. image: {
  35749. source: "./media/characters/max-kobold/front-imp.svg",
  35750. extra: 1238/1134,
  35751. bottom: 81/1319
  35752. }
  35753. },
  35754. backImp: {
  35755. height: math.unit(1 + 11/12, "feet"),
  35756. name: "Back (Imp)",
  35757. image: {
  35758. source: "./media/characters/max-kobold/back-imp.svg",
  35759. extra: 1334/1175,
  35760. bottom: 34/1368
  35761. }
  35762. },
  35763. frontDemi: {
  35764. height: math.unit(5 + 9/12, "feet"),
  35765. name: "Front (Demi)",
  35766. image: {
  35767. source: "./media/characters/max-kobold/front-demi.svg",
  35768. extra: 1715/1685,
  35769. bottom: 54/1769
  35770. }
  35771. },
  35772. backDemi: {
  35773. height: math.unit(5 + 9/12, "feet"),
  35774. name: "Back (Demi)",
  35775. image: {
  35776. source: "./media/characters/max-kobold/back-demi.svg",
  35777. extra: 1752/1729,
  35778. bottom: 41/1793
  35779. }
  35780. },
  35781. handImp: {
  35782. height: math.unit(0.45, "feet"),
  35783. name: "Hand (Imp)",
  35784. image: {
  35785. source: "./media/characters/max-kobold/hand.svg"
  35786. }
  35787. },
  35788. pawImp: {
  35789. height: math.unit(0.46, "feet"),
  35790. name: "Paw (Imp)",
  35791. image: {
  35792. source: "./media/characters/max-kobold/paw.svg"
  35793. }
  35794. },
  35795. handDemi: {
  35796. height: math.unit(0.80, "feet"),
  35797. name: "Hand (Demi)",
  35798. image: {
  35799. source: "./media/characters/max-kobold/hand.svg"
  35800. }
  35801. },
  35802. pawDemi: {
  35803. height: math.unit(1.1, "feet"),
  35804. name: "Paw (Demi)",
  35805. image: {
  35806. source: "./media/characters/max-kobold/paw.svg"
  35807. }
  35808. },
  35809. headImp: {
  35810. height: math.unit(1.33, "feet"),
  35811. name: "Head (Imp)",
  35812. image: {
  35813. source: "./media/characters/max-kobold/head-imp.svg"
  35814. }
  35815. },
  35816. mawImp: {
  35817. height: math.unit(0.75, "feet"),
  35818. name: "Maw (Imp)",
  35819. image: {
  35820. source: "./media/characters/max-kobold/maw-imp.svg"
  35821. }
  35822. },
  35823. mawDemi: {
  35824. height: math.unit(0.42, "feet"),
  35825. name: "Maw (Demi)",
  35826. image: {
  35827. source: "./media/characters/max-kobold/maw-demi.svg"
  35828. }
  35829. },
  35830. },
  35831. [
  35832. {
  35833. name: "Normal",
  35834. height: math.unit(1 + 11/12, "feet"),
  35835. default: true
  35836. },
  35837. ]
  35838. ))
  35839. characterMakers.push(() => makeCharacter(
  35840. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  35841. {
  35842. front: {
  35843. height: math.unit(7 + 5/12, "feet"),
  35844. name: "Front",
  35845. image: {
  35846. source: "./media/characters/carbon/front.svg",
  35847. extra: 1754/1689,
  35848. bottom: 65/1819
  35849. }
  35850. },
  35851. back: {
  35852. height: math.unit(7 + 5/12, "feet"),
  35853. name: "Back",
  35854. image: {
  35855. source: "./media/characters/carbon/back.svg",
  35856. extra: 1762/1695,
  35857. bottom: 24/1786
  35858. }
  35859. },
  35860. frontGigantamax: {
  35861. height: math.unit(150, "feet"),
  35862. name: "Front (Gigantamax)",
  35863. image: {
  35864. source: "./media/characters/carbon/front-gigantamax.svg",
  35865. extra: 1826/1669,
  35866. bottom: 59/1885
  35867. }
  35868. },
  35869. backGigantamax: {
  35870. height: math.unit(150, "feet"),
  35871. name: "Back (Gigantamax)",
  35872. image: {
  35873. source: "./media/characters/carbon/back-gigantamax.svg",
  35874. extra: 1796/1653,
  35875. bottom: 53/1849
  35876. }
  35877. },
  35878. maw: {
  35879. height: math.unit(0.48, "feet"),
  35880. name: "Maw",
  35881. image: {
  35882. source: "./media/characters/carbon/maw.svg"
  35883. }
  35884. },
  35885. mawGigantamax: {
  35886. height: math.unit(7.5, "feet"),
  35887. name: "Maw (Gigantamax)",
  35888. image: {
  35889. source: "./media/characters/carbon/maw-gigantamax.svg"
  35890. }
  35891. },
  35892. },
  35893. [
  35894. {
  35895. name: "Normal",
  35896. height: math.unit(7 + 5/12, "feet"),
  35897. default: true
  35898. },
  35899. ]
  35900. ))
  35901. characterMakers.push(() => makeCharacter(
  35902. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  35903. {
  35904. front: {
  35905. height: math.unit(6, "feet"),
  35906. name: "Front",
  35907. image: {
  35908. source: "./media/characters/maverick/front.svg",
  35909. extra: 1672/1661,
  35910. bottom: 85/1757
  35911. }
  35912. },
  35913. back: {
  35914. height: math.unit(6, "feet"),
  35915. name: "Back",
  35916. image: {
  35917. source: "./media/characters/maverick/back.svg",
  35918. extra: 1642/1631,
  35919. bottom: 38/1680
  35920. }
  35921. },
  35922. },
  35923. [
  35924. {
  35925. name: "Normal",
  35926. height: math.unit(6, "feet"),
  35927. default: true
  35928. },
  35929. ]
  35930. ))
  35931. characterMakers.push(() => makeCharacter(
  35932. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  35933. {
  35934. front: {
  35935. height: math.unit(15, "feet"),
  35936. weight: math.unit(615, "lb"),
  35937. name: "Front",
  35938. image: {
  35939. source: "./media/characters/grockle/front.svg",
  35940. extra: 1535/1427,
  35941. bottom: 56/1591
  35942. }
  35943. },
  35944. },
  35945. [
  35946. {
  35947. name: "Normal",
  35948. height: math.unit(15, "feet"),
  35949. default: true
  35950. },
  35951. {
  35952. name: "Macro",
  35953. height: math.unit(1876, "feet")
  35954. },
  35955. {
  35956. name: "Mega Macro",
  35957. height: math.unit(121940, "feet")
  35958. },
  35959. {
  35960. name: "Giga Macro",
  35961. height: math.unit(750, "km")
  35962. },
  35963. {
  35964. name: "Tera Macro",
  35965. height: math.unit(750000, "km")
  35966. },
  35967. {
  35968. name: "Galactic",
  35969. height: math.unit(1.4e5, "km")
  35970. },
  35971. ]
  35972. ))
  35973. //characters
  35974. function makeCharacters() {
  35975. const results = [];
  35976. characterMakers.forEach(character => {
  35977. results.push(character());
  35978. });
  35979. return results;
  35980. }