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

30590 строки
766 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.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon", "candy"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. "drenath": {
  1332. name: "Drenath",
  1333. parents: ["dragon", "snake", "rabbit"]
  1334. },
  1335. "coyju": {
  1336. name: "Coyju",
  1337. parents: ["coyote", "kaiju"]
  1338. },
  1339. "kaiju": {
  1340. name: "Kaiju",
  1341. parents: ["monster"]
  1342. },
  1343. "nickit": {
  1344. name: "Nickit",
  1345. parents: ["pokemon", "cat"]
  1346. },
  1347. "lopunny": {
  1348. name: "Lopunny",
  1349. parents: ["pokemon", "rabbit"]
  1350. },
  1351. "korean-jindo-dog": {
  1352. name: "Korean Jindo Dog",
  1353. parents: ["dog"]
  1354. },
  1355. "naga": {
  1356. name: "Naga",
  1357. parents: ["snake", "monster"]
  1358. },
  1359. "undead": {
  1360. name: "Undead",
  1361. parents: ["monster"]
  1362. },
  1363. "whale": {
  1364. name: "Whale",
  1365. parents: ["fish"]
  1366. },
  1367. "gelato-bee": {
  1368. name: "Gelato Bee",
  1369. parents: ["bee"]
  1370. },
  1371. "bee": {
  1372. name: "Bee",
  1373. parents: ["insect"]
  1374. },
  1375. "gardevoir": {
  1376. name: "Gardevoir",
  1377. parents: ["pokemon"]
  1378. },
  1379. "ant": {
  1380. name: "Ant",
  1381. parents: ["insect"]
  1382. },
  1383. "frog": {
  1384. name: "Frog",
  1385. parents: ["amphibian"]
  1386. },
  1387. "amphibian": {
  1388. name: "Amphibian",
  1389. parents: ["animal"]
  1390. },
  1391. "pangolin": {
  1392. name: "Pangolin",
  1393. parents: ["mammal"]
  1394. },
  1395. "uragi'viidorn": {
  1396. name: "Uragi'viidorn",
  1397. parents: ["avian", "bear"]
  1398. },
  1399. }
  1400. //species
  1401. function getSpeciesInfo(speciesList) {
  1402. let result = new Set();
  1403. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1404. result.add(entry)
  1405. });
  1406. return Array.from(result);
  1407. };
  1408. function getSpeciesInfoHelper(species) {
  1409. if (!speciesData[species]) {
  1410. console.warn(species + " doesn't exist");
  1411. return [];
  1412. }
  1413. if (speciesData[species].parents) {
  1414. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1415. } else {
  1416. return [species];
  1417. }
  1418. }
  1419. characterMakers.push(() => makeCharacter(
  1420. {
  1421. name: "Fen",
  1422. species: ["crux"],
  1423. description: {
  1424. title: "Bio",
  1425. text: "Very furry. Sheds on everything."
  1426. },
  1427. tags: [
  1428. "anthro",
  1429. "goo"
  1430. ]
  1431. },
  1432. {
  1433. back: {
  1434. height: math.unit(2.2428, "meter"),
  1435. weight: math.unit(124.738, "kg"),
  1436. name: "Back",
  1437. image: {
  1438. source: "./media/characters/fen/back.svg",
  1439. extra: 2024 / 1867,
  1440. bottom: 13 / 2037
  1441. },
  1442. info: {
  1443. description: {
  1444. mode: "append",
  1445. text: "\n\nHe is not currently looking at you."
  1446. }
  1447. }
  1448. },
  1449. full: {
  1450. height: math.unit(1.34, "meter"),
  1451. weight: math.unit(225, "kg"),
  1452. name: "Full",
  1453. image: {
  1454. source: "./media/characters/fen/full.svg"
  1455. },
  1456. info: {
  1457. description: {
  1458. mode: "append",
  1459. text: "\n\nMunch."
  1460. }
  1461. }
  1462. },
  1463. kneeling: {
  1464. height: math.unit(5.4, "feet"),
  1465. weight: math.unit(124.738, "kg"),
  1466. name: "Kneeling",
  1467. image: {
  1468. source: "./media/characters/fen/kneeling.svg",
  1469. extra: 563 / 507
  1470. }
  1471. },
  1472. goo: {
  1473. height: math.unit(2.8, "feet"),
  1474. weight: math.unit(125, "kg"),
  1475. capacity: math.unit(1, "people"),
  1476. name: "Goo",
  1477. image: {
  1478. source: "./media/characters/fen/goo.svg",
  1479. bottom: 116 / 613
  1480. }
  1481. },
  1482. lounging: {
  1483. height: math.unit(6.5, "feet"),
  1484. weight: math.unit(125, "kg"),
  1485. name: "Lounging",
  1486. image: {
  1487. source: "./media/characters/fen/lounging.svg"
  1488. }
  1489. },
  1490. },
  1491. [
  1492. {
  1493. name: "Normal",
  1494. height: math.unit(2.2428, "meter")
  1495. },
  1496. {
  1497. name: "Big",
  1498. height: math.unit(12, "feet")
  1499. },
  1500. {
  1501. name: "Minimacro",
  1502. height: math.unit(40, "feet"),
  1503. default: true,
  1504. info: {
  1505. description: {
  1506. mode: "append",
  1507. text: "\n\nTOO DAMN BIG"
  1508. }
  1509. }
  1510. },
  1511. {
  1512. name: "Macro",
  1513. height: math.unit(100, "feet"),
  1514. info: {
  1515. description: {
  1516. mode: "append",
  1517. text: "\n\nTOO DAMN BIG"
  1518. }
  1519. }
  1520. },
  1521. {
  1522. name: "Macro+",
  1523. height: math.unit(300, "feet")
  1524. },
  1525. {
  1526. name: "Megamacro",
  1527. height: math.unit(2, "miles")
  1528. }
  1529. ]
  1530. ))
  1531. characterMakers.push(() => makeCharacter(
  1532. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1533. {
  1534. front: {
  1535. height: math.unit(183, "cm"),
  1536. weight: math.unit(80, "kg"),
  1537. name: "Front",
  1538. image: {
  1539. source: "./media/characters/sofia-fluttertail/front.svg",
  1540. bottom: 0.01,
  1541. extra: 2154 / 2081
  1542. }
  1543. },
  1544. frontAlt: {
  1545. height: math.unit(183, "cm"),
  1546. weight: math.unit(80, "kg"),
  1547. name: "Front (alt)",
  1548. image: {
  1549. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1550. }
  1551. },
  1552. back: {
  1553. height: math.unit(183, "cm"),
  1554. weight: math.unit(80, "kg"),
  1555. name: "Back",
  1556. image: {
  1557. source: "./media/characters/sofia-fluttertail/back.svg"
  1558. }
  1559. },
  1560. kneeling: {
  1561. height: math.unit(125, "cm"),
  1562. weight: math.unit(80, "kg"),
  1563. name: "Kneeling",
  1564. image: {
  1565. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1566. extra: 1033 / 977,
  1567. bottom: 23.7 / 1057
  1568. }
  1569. },
  1570. maw: {
  1571. height: math.unit(183 / 5, "cm"),
  1572. name: "Maw",
  1573. image: {
  1574. source: "./media/characters/sofia-fluttertail/maw.svg"
  1575. }
  1576. },
  1577. mawcloseup: {
  1578. height: math.unit(183 / 5 * 0.41, "cm"),
  1579. name: "Maw (Closeup)",
  1580. image: {
  1581. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1582. }
  1583. },
  1584. paws: {
  1585. height: math.unit(1.17, "feet"),
  1586. name: "Paws",
  1587. image: {
  1588. source: "./media/characters/sofia-fluttertail/paws.svg",
  1589. extra: 851 / 851,
  1590. bottom: 17 / 868
  1591. }
  1592. },
  1593. },
  1594. [
  1595. {
  1596. name: "Normal",
  1597. height: math.unit(1.83, "meter")
  1598. },
  1599. {
  1600. name: "Size Thief",
  1601. height: math.unit(18, "feet")
  1602. },
  1603. {
  1604. name: "50 Foot Collie",
  1605. height: math.unit(50, "feet")
  1606. },
  1607. {
  1608. name: "Macro",
  1609. height: math.unit(96, "feet"),
  1610. default: true
  1611. },
  1612. {
  1613. name: "Megamerger",
  1614. height: math.unit(650, "feet")
  1615. },
  1616. ]
  1617. ))
  1618. characterMakers.push(() => makeCharacter(
  1619. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1620. {
  1621. front: {
  1622. height: math.unit(7, "feet"),
  1623. weight: math.unit(100, "kg"),
  1624. name: "Front",
  1625. image: {
  1626. source: "./media/characters/march/front.svg",
  1627. extra: 1,
  1628. bottom: 0.015
  1629. }
  1630. },
  1631. foot: {
  1632. height: math.unit(0.9, "feet"),
  1633. name: "Foot",
  1634. image: {
  1635. source: "./media/characters/march/foot.svg"
  1636. }
  1637. },
  1638. },
  1639. [
  1640. {
  1641. name: "Normal",
  1642. height: math.unit(7.9, "feet")
  1643. },
  1644. {
  1645. name: "Macro",
  1646. height: math.unit(220, "meters")
  1647. },
  1648. {
  1649. name: "Megamacro",
  1650. height: math.unit(2.98, "km"),
  1651. default: true
  1652. },
  1653. {
  1654. name: "Gigamacro",
  1655. height: math.unit(15963, "km")
  1656. },
  1657. {
  1658. name: "Teramacro",
  1659. height: math.unit(2980000000, "km")
  1660. },
  1661. {
  1662. name: "Examacro",
  1663. height: math.unit(250, "parsecs")
  1664. },
  1665. ]
  1666. ))
  1667. characterMakers.push(() => makeCharacter(
  1668. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1669. {
  1670. front: {
  1671. height: math.unit(6, "feet"),
  1672. weight: math.unit(60, "kg"),
  1673. name: "Front",
  1674. image: {
  1675. source: "./media/characters/noir/front.svg",
  1676. extra: 1,
  1677. bottom: 0.032
  1678. }
  1679. },
  1680. },
  1681. [
  1682. {
  1683. name: "Normal",
  1684. height: math.unit(6.6, "feet")
  1685. },
  1686. {
  1687. name: "Macro",
  1688. height: math.unit(500, "feet")
  1689. },
  1690. {
  1691. name: "Megamacro",
  1692. height: math.unit(2.5, "km"),
  1693. default: true
  1694. },
  1695. {
  1696. name: "Gigamacro",
  1697. height: math.unit(22500, "km")
  1698. },
  1699. {
  1700. name: "Teramacro",
  1701. height: math.unit(2500000000, "km")
  1702. },
  1703. {
  1704. name: "Examacro",
  1705. height: math.unit(200, "parsecs")
  1706. },
  1707. ]
  1708. ))
  1709. characterMakers.push(() => makeCharacter(
  1710. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1711. {
  1712. front: {
  1713. height: math.unit(7, "feet"),
  1714. weight: math.unit(100, "kg"),
  1715. name: "Front",
  1716. image: {
  1717. source: "./media/characters/okuri/front.svg",
  1718. extra: 1,
  1719. bottom: 0.037
  1720. }
  1721. },
  1722. back: {
  1723. height: math.unit(7, "feet"),
  1724. weight: math.unit(100, "kg"),
  1725. name: "Back",
  1726. image: {
  1727. source: "./media/characters/okuri/back.svg",
  1728. extra: 1,
  1729. bottom: 0.007
  1730. }
  1731. },
  1732. },
  1733. [
  1734. {
  1735. name: "Megamacro",
  1736. height: math.unit(100, "miles"),
  1737. default: true
  1738. },
  1739. ]
  1740. ))
  1741. characterMakers.push(() => makeCharacter(
  1742. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1743. {
  1744. front: {
  1745. height: math.unit(7, "feet"),
  1746. weight: math.unit(100, "kg"),
  1747. name: "Front",
  1748. image: {
  1749. source: "./media/characters/manny/front.svg",
  1750. extra: 1,
  1751. bottom: 0.06
  1752. }
  1753. },
  1754. back: {
  1755. height: math.unit(7, "feet"),
  1756. weight: math.unit(100, "kg"),
  1757. name: "Back",
  1758. image: {
  1759. source: "./media/characters/manny/back.svg",
  1760. extra: 1,
  1761. bottom: 0.014
  1762. }
  1763. },
  1764. },
  1765. [
  1766. {
  1767. name: "Normal",
  1768. height: math.unit(7, "feet"),
  1769. },
  1770. {
  1771. name: "Macro",
  1772. height: math.unit(78, "feet"),
  1773. default: true
  1774. },
  1775. {
  1776. name: "Macro+",
  1777. height: math.unit(300, "meters")
  1778. },
  1779. {
  1780. name: "Macro++",
  1781. height: math.unit(2400, "meters")
  1782. },
  1783. {
  1784. name: "Megamacro",
  1785. height: math.unit(5167, "meters")
  1786. },
  1787. {
  1788. name: "Gigamacro",
  1789. height: math.unit(41769, "miles")
  1790. },
  1791. ]
  1792. ))
  1793. characterMakers.push(() => makeCharacter(
  1794. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1795. {
  1796. front: {
  1797. height: math.unit(7, "feet"),
  1798. weight: math.unit(100, "kg"),
  1799. name: "Front",
  1800. image: {
  1801. source: "./media/characters/adake/front-1.svg"
  1802. }
  1803. },
  1804. frontAlt: {
  1805. height: math.unit(7, "feet"),
  1806. weight: math.unit(100, "kg"),
  1807. name: "Front (Alt)",
  1808. image: {
  1809. source: "./media/characters/adake/front-2.svg",
  1810. extra: 1,
  1811. bottom: 0.01
  1812. }
  1813. },
  1814. back: {
  1815. height: math.unit(7, "feet"),
  1816. weight: math.unit(100, "kg"),
  1817. name: "Back",
  1818. image: {
  1819. source: "./media/characters/adake/back.svg",
  1820. }
  1821. },
  1822. kneel: {
  1823. height: math.unit(5.385, "feet"),
  1824. weight: math.unit(100, "kg"),
  1825. name: "Kneeling",
  1826. image: {
  1827. source: "./media/characters/adake/kneel.svg",
  1828. bottom: 0.052
  1829. }
  1830. },
  1831. },
  1832. [
  1833. {
  1834. name: "Normal",
  1835. height: math.unit(7, "feet"),
  1836. },
  1837. {
  1838. name: "Macro",
  1839. height: math.unit(78, "feet"),
  1840. default: true
  1841. },
  1842. {
  1843. name: "Macro+",
  1844. height: math.unit(300, "meters")
  1845. },
  1846. {
  1847. name: "Macro++",
  1848. height: math.unit(2400, "meters")
  1849. },
  1850. {
  1851. name: "Megamacro",
  1852. height: math.unit(5167, "meters")
  1853. },
  1854. {
  1855. name: "Gigamacro",
  1856. height: math.unit(41769, "miles")
  1857. },
  1858. ]
  1859. ))
  1860. characterMakers.push(() => makeCharacter(
  1861. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1862. {
  1863. front: {
  1864. height: math.unit(1.65, "meters"),
  1865. weight: math.unit(50, "kg"),
  1866. name: "Front",
  1867. image: {
  1868. source: "./media/characters/elijah/front.svg",
  1869. extra: 858 / 830,
  1870. bottom: 95.5 / 953.8559
  1871. }
  1872. },
  1873. back: {
  1874. height: math.unit(1.65, "meters"),
  1875. weight: math.unit(50, "kg"),
  1876. name: "Back",
  1877. image: {
  1878. source: "./media/characters/elijah/back.svg",
  1879. extra: 895 / 850,
  1880. bottom: 5.3 / 897.956
  1881. }
  1882. },
  1883. frontNsfw: {
  1884. height: math.unit(1.65, "meters"),
  1885. weight: math.unit(50, "kg"),
  1886. name: "Front (NSFW)",
  1887. image: {
  1888. source: "./media/characters/elijah/front-nsfw.svg",
  1889. extra: 858 / 830,
  1890. bottom: 95.5 / 953.8559
  1891. }
  1892. },
  1893. backNsfw: {
  1894. height: math.unit(1.65, "meters"),
  1895. weight: math.unit(50, "kg"),
  1896. name: "Back (NSFW)",
  1897. image: {
  1898. source: "./media/characters/elijah/back-nsfw.svg",
  1899. extra: 895 / 850,
  1900. bottom: 5.3 / 897.956
  1901. }
  1902. },
  1903. dick: {
  1904. height: math.unit(1, "feet"),
  1905. name: "Dick",
  1906. image: {
  1907. source: "./media/characters/elijah/dick.svg"
  1908. }
  1909. },
  1910. beakOpen: {
  1911. height: math.unit(1.25, "feet"),
  1912. name: "Beak (Open)",
  1913. image: {
  1914. source: "./media/characters/elijah/beak-open.svg"
  1915. }
  1916. },
  1917. beakShut: {
  1918. height: math.unit(1.25, "feet"),
  1919. name: "Beak (Shut)",
  1920. image: {
  1921. source: "./media/characters/elijah/beak-shut.svg"
  1922. }
  1923. },
  1924. footFlexing: {
  1925. height: math.unit(1.61, "feet"),
  1926. name: "Foot (Flexing)",
  1927. image: {
  1928. source: "./media/characters/elijah/foot-flexing.svg"
  1929. }
  1930. },
  1931. footStepping: {
  1932. height: math.unit(1.44, "feet"),
  1933. name: "Foot (Stepping)",
  1934. image: {
  1935. source: "./media/characters/elijah/foot-stepping.svg"
  1936. }
  1937. },
  1938. plantigradeLeg: {
  1939. height: math.unit(2.34, "feet"),
  1940. name: "Plantigrade Leg",
  1941. image: {
  1942. source: "./media/characters/elijah/plantigrade-leg.svg"
  1943. }
  1944. },
  1945. plantigradeFootLeft: {
  1946. height: math.unit(0.9, "feet"),
  1947. name: "Plantigrade Foot (Left)",
  1948. image: {
  1949. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1950. }
  1951. },
  1952. plantigradeFootRight: {
  1953. height: math.unit(0.9, "feet"),
  1954. name: "Plantigrade Foot (Right)",
  1955. image: {
  1956. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1957. }
  1958. },
  1959. },
  1960. [
  1961. {
  1962. name: "Normal",
  1963. height: math.unit(1.65, "meters")
  1964. },
  1965. {
  1966. name: "Macro",
  1967. height: math.unit(55, "meters"),
  1968. default: true
  1969. },
  1970. {
  1971. name: "Macro+",
  1972. height: math.unit(105, "meters")
  1973. },
  1974. ]
  1975. ))
  1976. characterMakers.push(() => makeCharacter(
  1977. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1978. {
  1979. front: {
  1980. height: math.unit(11, "feet"),
  1981. weight: math.unit(80, "kg"),
  1982. name: "Front",
  1983. image: {
  1984. source: "./media/characters/rai/front.svg",
  1985. extra: 1,
  1986. bottom: 0.03
  1987. }
  1988. },
  1989. side: {
  1990. height: math.unit(11, "feet"),
  1991. weight: math.unit(80, "kg"),
  1992. name: "Side",
  1993. image: {
  1994. source: "./media/characters/rai/side.svg"
  1995. }
  1996. },
  1997. back: {
  1998. height: math.unit(11, "feet"),
  1999. weight: math.unit(80, "lb"),
  2000. name: "Back",
  2001. image: {
  2002. source: "./media/characters/rai/back.svg",
  2003. extra: 1,
  2004. bottom: 0.01
  2005. }
  2006. },
  2007. feral: {
  2008. height: math.unit(11, "feet"),
  2009. weight: math.unit(800, "lb"),
  2010. name: "Feral",
  2011. image: {
  2012. source: "./media/characters/rai/feral.svg",
  2013. extra: 1050 / 659,
  2014. bottom: 0.07
  2015. }
  2016. },
  2017. dragon: {
  2018. height: math.unit(23, "feet"),
  2019. weight: math.unit(50000, "lb"),
  2020. name: "Dragon",
  2021. image: {
  2022. source: "./media/characters/rai/dragon.svg",
  2023. extra: 2498 / 2030,
  2024. bottom: 85.2 / 2584
  2025. }
  2026. },
  2027. maw: {
  2028. height: math.unit(6 / 3.81416, "feet"),
  2029. name: "Maw",
  2030. image: {
  2031. source: "./media/characters/rai/maw.svg"
  2032. }
  2033. },
  2034. },
  2035. [
  2036. {
  2037. name: "Normal",
  2038. height: math.unit(11, "feet")
  2039. },
  2040. {
  2041. name: "Macro",
  2042. height: math.unit(302, "feet"),
  2043. default: true
  2044. },
  2045. ]
  2046. ))
  2047. characterMakers.push(() => makeCharacter(
  2048. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2049. {
  2050. frontDressed: {
  2051. height: math.unit(216, "feet"),
  2052. weight: math.unit(7000000, "lb"),
  2053. name: "Front (Dressed)",
  2054. image: {
  2055. source: "./media/characters/jazzy/front-dressed.svg",
  2056. extra: 2738 / 2651,
  2057. bottom: 41.8 / 2786
  2058. }
  2059. },
  2060. backDressed: {
  2061. height: math.unit(216, "feet"),
  2062. weight: math.unit(7000000, "lb"),
  2063. name: "Back (Dressed)",
  2064. image: {
  2065. source: "./media/characters/jazzy/back-dressed.svg",
  2066. extra: 2775 / 2673,
  2067. bottom: 36.8 / 2817
  2068. }
  2069. },
  2070. front: {
  2071. height: math.unit(216, "feet"),
  2072. weight: math.unit(7000000, "lb"),
  2073. name: "Front",
  2074. image: {
  2075. source: "./media/characters/jazzy/front.svg",
  2076. extra: 2738 / 2651,
  2077. bottom: 41.8 / 2786
  2078. }
  2079. },
  2080. back: {
  2081. height: math.unit(216, "feet"),
  2082. weight: math.unit(7000000, "lb"),
  2083. name: "Back",
  2084. image: {
  2085. source: "./media/characters/jazzy/back.svg",
  2086. extra: 2775 / 2673,
  2087. bottom: 36.8 / 2817
  2088. }
  2089. },
  2090. maw: {
  2091. height: math.unit(20, "feet"),
  2092. name: "Maw",
  2093. image: {
  2094. source: "./media/characters/jazzy/maw.svg"
  2095. }
  2096. },
  2097. paws: {
  2098. height: math.unit(27.5, "feet"),
  2099. name: "Paws",
  2100. image: {
  2101. source: "./media/characters/jazzy/paws.svg"
  2102. }
  2103. },
  2104. eye: {
  2105. height: math.unit(4.4, "feet"),
  2106. name: "Eye",
  2107. image: {
  2108. source: "./media/characters/jazzy/eye.svg"
  2109. }
  2110. },
  2111. droneOffense: {
  2112. height: math.unit(9.5, "inches"),
  2113. name: "Drone (Offense)",
  2114. image: {
  2115. source: "./media/characters/jazzy/drone-offense.svg"
  2116. }
  2117. },
  2118. droneRecon: {
  2119. height: math.unit(9.5, "inches"),
  2120. name: "Drone (Recon)",
  2121. image: {
  2122. source: "./media/characters/jazzy/drone-recon.svg"
  2123. }
  2124. },
  2125. droneDefense: {
  2126. height: math.unit(9.5, "inches"),
  2127. name: "Drone (Defense)",
  2128. image: {
  2129. source: "./media/characters/jazzy/drone-defense.svg"
  2130. }
  2131. },
  2132. },
  2133. [
  2134. {
  2135. name: "Macro",
  2136. height: math.unit(216, "feet"),
  2137. default: true
  2138. },
  2139. ]
  2140. ))
  2141. characterMakers.push(() => makeCharacter(
  2142. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2143. {
  2144. front: {
  2145. height: math.unit(7, "feet"),
  2146. weight: math.unit(80, "kg"),
  2147. name: "Front",
  2148. image: {
  2149. source: "./media/characters/flamm/front.svg",
  2150. extra: 1794 / 1677,
  2151. bottom: 31.7 / 1828.5
  2152. }
  2153. },
  2154. },
  2155. [
  2156. {
  2157. name: "Normal",
  2158. height: math.unit(9.5, "feet")
  2159. },
  2160. {
  2161. name: "Macro",
  2162. height: math.unit(200, "feet"),
  2163. default: true
  2164. },
  2165. ]
  2166. ))
  2167. characterMakers.push(() => makeCharacter(
  2168. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2169. {
  2170. front: {
  2171. height: math.unit(7, "feet"),
  2172. weight: math.unit(80, "kg"),
  2173. name: "Front",
  2174. image: {
  2175. source: "./media/characters/zephiro/front.svg",
  2176. extra: 2309 / 2162,
  2177. bottom: 0.069
  2178. }
  2179. },
  2180. side: {
  2181. height: math.unit(7, "feet"),
  2182. weight: math.unit(80, "kg"),
  2183. name: "Side",
  2184. image: {
  2185. source: "./media/characters/zephiro/side.svg",
  2186. extra: 2403 / 2279,
  2187. bottom: 0.015
  2188. }
  2189. },
  2190. back: {
  2191. height: math.unit(7, "feet"),
  2192. weight: math.unit(80, "kg"),
  2193. name: "Back",
  2194. image: {
  2195. source: "./media/characters/zephiro/back.svg",
  2196. extra: 2373 / 2244,
  2197. bottom: 0.013
  2198. }
  2199. },
  2200. },
  2201. [
  2202. {
  2203. name: "Micro",
  2204. height: math.unit(3, "inches")
  2205. },
  2206. {
  2207. name: "Normal",
  2208. height: math.unit(5 + 3 / 12, "feet"),
  2209. default: true
  2210. },
  2211. {
  2212. name: "Macro",
  2213. height: math.unit(118, "feet")
  2214. },
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2219. {
  2220. front: {
  2221. height: math.unit(5, "feet"),
  2222. weight: math.unit(90, "kg"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/fory/front.svg",
  2226. extra: 2862 / 2674,
  2227. bottom: 180 / 3043.8
  2228. }
  2229. },
  2230. back: {
  2231. height: math.unit(5, "feet"),
  2232. weight: math.unit(90, "kg"),
  2233. name: "Back",
  2234. image: {
  2235. source: "./media/characters/fory/back.svg",
  2236. extra: 2962 / 2791,
  2237. bottom: 106 / 3071.8
  2238. }
  2239. },
  2240. foot: {
  2241. height: math.unit(2.14, "feet"),
  2242. name: "Foot",
  2243. image: {
  2244. source: "./media/characters/fory/foot.svg"
  2245. }
  2246. },
  2247. },
  2248. [
  2249. {
  2250. name: "Normal",
  2251. height: math.unit(5, "feet")
  2252. },
  2253. {
  2254. name: "Macro",
  2255. height: math.unit(50, "feet"),
  2256. default: true
  2257. },
  2258. {
  2259. name: "Megamacro",
  2260. height: math.unit(10, "miles")
  2261. },
  2262. {
  2263. name: "Gigamacro",
  2264. height: math.unit(5, "earths")
  2265. },
  2266. ]
  2267. ))
  2268. characterMakers.push(() => makeCharacter(
  2269. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2270. {
  2271. front: {
  2272. height: math.unit(7, "feet"),
  2273. weight: math.unit(90, "kg"),
  2274. name: "Front",
  2275. image: {
  2276. source: "./media/characters/kurrikage/front.svg",
  2277. extra: 1,
  2278. bottom: 0.035
  2279. }
  2280. },
  2281. back: {
  2282. height: math.unit(7, "feet"),
  2283. weight: math.unit(90, "lb"),
  2284. name: "Back",
  2285. image: {
  2286. source: "./media/characters/kurrikage/back.svg"
  2287. }
  2288. },
  2289. paw: {
  2290. height: math.unit(1.5, "feet"),
  2291. name: "Paw",
  2292. image: {
  2293. source: "./media/characters/kurrikage/paw.svg"
  2294. }
  2295. },
  2296. staff: {
  2297. height: math.unit(6.7, "feet"),
  2298. name: "Staff",
  2299. image: {
  2300. source: "./media/characters/kurrikage/staff.svg"
  2301. }
  2302. },
  2303. peek: {
  2304. height: math.unit(1.05, "feet"),
  2305. name: "Peeking",
  2306. image: {
  2307. source: "./media/characters/kurrikage/peek.svg",
  2308. bottom: 0.08
  2309. }
  2310. },
  2311. },
  2312. [
  2313. {
  2314. name: "Normal",
  2315. height: math.unit(12, "feet"),
  2316. default: true
  2317. },
  2318. {
  2319. name: "Big",
  2320. height: math.unit(20, "feet")
  2321. },
  2322. {
  2323. name: "Macro",
  2324. height: math.unit(500, "feet")
  2325. },
  2326. {
  2327. name: "Megamacro",
  2328. height: math.unit(20, "miles")
  2329. },
  2330. ]
  2331. ))
  2332. characterMakers.push(() => makeCharacter(
  2333. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2334. {
  2335. front: {
  2336. height: math.unit(6, "feet"),
  2337. weight: math.unit(75, "kg"),
  2338. name: "Front",
  2339. image: {
  2340. source: "./media/characters/shingo/front.svg",
  2341. extra: 3511 / 3338,
  2342. bottom: 0.005
  2343. }
  2344. },
  2345. paw: {
  2346. height: math.unit(1, "feet"),
  2347. name: "Paw",
  2348. image: {
  2349. source: "./media/characters/shingo/paw.svg"
  2350. }
  2351. },
  2352. },
  2353. [
  2354. {
  2355. name: "Micro",
  2356. height: math.unit(4, "inches")
  2357. },
  2358. {
  2359. name: "Normal",
  2360. height: math.unit(6, "feet"),
  2361. default: true
  2362. },
  2363. {
  2364. name: "Macro",
  2365. height: math.unit(108, "feet")
  2366. }
  2367. ]
  2368. ))
  2369. characterMakers.push(() => makeCharacter(
  2370. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2371. {
  2372. side: {
  2373. height: math.unit(6, "feet"),
  2374. weight: math.unit(75, "kg"),
  2375. name: "Side",
  2376. image: {
  2377. source: "./media/characters/aigey/side.svg"
  2378. }
  2379. },
  2380. },
  2381. [
  2382. {
  2383. name: "Macro",
  2384. height: math.unit(200, "feet"),
  2385. default: true
  2386. },
  2387. {
  2388. name: "Megamacro",
  2389. height: math.unit(100, "miles")
  2390. },
  2391. ]
  2392. )
  2393. )
  2394. characterMakers.push(() => makeCharacter(
  2395. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2396. {
  2397. front: {
  2398. height: math.unit(5 + 5 / 12, "feet"),
  2399. weight: math.unit(75, "kg"),
  2400. name: "Front",
  2401. image: {
  2402. source: "./media/characters/natasha/front.svg",
  2403. extra: 859 / 824,
  2404. bottom: 23 / 879.6
  2405. }
  2406. },
  2407. frontNsfw: {
  2408. height: math.unit(5 + 5 / 12, "feet"),
  2409. weight: math.unit(75, "kg"),
  2410. name: "Front (NSFW)",
  2411. image: {
  2412. source: "./media/characters/natasha/front-nsfw.svg",
  2413. extra: 859 / 824,
  2414. bottom: 23 / 879.6
  2415. }
  2416. },
  2417. frontErect: {
  2418. height: math.unit(5 + 5 / 12, "feet"),
  2419. weight: math.unit(75, "kg"),
  2420. name: "Front (Erect)",
  2421. image: {
  2422. source: "./media/characters/natasha/front-erect.svg",
  2423. extra: 859 / 824,
  2424. bottom: 23 / 879.6
  2425. }
  2426. },
  2427. back: {
  2428. height: math.unit(5 + 5 / 12, "feet"),
  2429. weight: math.unit(75, "kg"),
  2430. name: "Back",
  2431. image: {
  2432. source: "./media/characters/natasha/back.svg",
  2433. extra: 887.9 / 852.6,
  2434. bottom: 9.7 / 896.4
  2435. }
  2436. },
  2437. backAlt: {
  2438. height: math.unit(5 + 5 / 12, "feet"),
  2439. weight: math.unit(75, "kg"),
  2440. name: "Back (Alt)",
  2441. image: {
  2442. source: "./media/characters/natasha/back-alt.svg",
  2443. extra: 1236.7 / 1192,
  2444. bottom: 22.3 / 1258.2
  2445. }
  2446. },
  2447. dick: {
  2448. height: math.unit(1.772, "feet"),
  2449. name: "Dick",
  2450. image: {
  2451. source: "./media/characters/natasha/dick.svg"
  2452. }
  2453. },
  2454. paw: {
  2455. height: math.unit(0.250, "meters"),
  2456. name: "Paw",
  2457. image: {
  2458. source: "./media/characters/natasha/paw.svg"
  2459. }
  2460. },
  2461. },
  2462. [
  2463. {
  2464. name: "Normal",
  2465. height: math.unit(5 + 5 / 12, "feet")
  2466. },
  2467. {
  2468. name: "Large",
  2469. height: math.unit(12, "feet")
  2470. },
  2471. {
  2472. name: "Macro",
  2473. height: math.unit(100, "feet"),
  2474. default: true
  2475. },
  2476. {
  2477. name: "Macro+",
  2478. height: math.unit(260, "feet")
  2479. },
  2480. {
  2481. name: "Macro++",
  2482. height: math.unit(1, "mile")
  2483. },
  2484. ]
  2485. ))
  2486. characterMakers.push(() => makeCharacter(
  2487. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2488. {
  2489. front: {
  2490. height: math.unit(6, "feet"),
  2491. weight: math.unit(75, "kg"),
  2492. name: "Front",
  2493. image: {
  2494. source: "./media/characters/malik/front.svg"
  2495. }
  2496. },
  2497. side: {
  2498. height: math.unit(6, "feet"),
  2499. weight: math.unit(75, "kg"),
  2500. name: "Side",
  2501. image: {
  2502. source: "./media/characters/malik/side.svg",
  2503. extra: 1.1539
  2504. }
  2505. },
  2506. back: {
  2507. height: math.unit(6, "feet"),
  2508. weight: math.unit(75, "kg"),
  2509. name: "Back",
  2510. image: {
  2511. source: "./media/characters/malik/back.svg"
  2512. }
  2513. },
  2514. },
  2515. [
  2516. {
  2517. name: "Macro",
  2518. height: math.unit(156, "feet"),
  2519. default: true
  2520. },
  2521. {
  2522. name: "Macro+",
  2523. height: math.unit(1188, "feet")
  2524. },
  2525. ]
  2526. ))
  2527. characterMakers.push(() => makeCharacter(
  2528. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2529. {
  2530. front: {
  2531. height: math.unit(6, "feet"),
  2532. weight: math.unit(75, "kg"),
  2533. name: "Front",
  2534. image: {
  2535. source: "./media/characters/sefer/front.svg",
  2536. extra: 848 / 659,
  2537. bottom: 28.3 / 876.442
  2538. }
  2539. },
  2540. back: {
  2541. height: math.unit(6, "feet"),
  2542. weight: math.unit(75, "kg"),
  2543. name: "Back",
  2544. image: {
  2545. source: "./media/characters/sefer/back.svg",
  2546. extra: 864 / 695,
  2547. bottom: 10 / 871
  2548. }
  2549. },
  2550. frontDressed: {
  2551. height: math.unit(6, "feet"),
  2552. weight: math.unit(75, "kg"),
  2553. name: "Front (Dressed)",
  2554. image: {
  2555. source: "./media/characters/sefer/front-dressed.svg",
  2556. extra: 839 / 653,
  2557. bottom: 37.6 / 878
  2558. }
  2559. },
  2560. },
  2561. [
  2562. {
  2563. name: "Normal",
  2564. height: math.unit(6, "feet"),
  2565. default: true
  2566. },
  2567. ]
  2568. ))
  2569. characterMakers.push(() => makeCharacter(
  2570. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2571. {
  2572. body: {
  2573. height: math.unit(2.2428, "meter"),
  2574. weight: math.unit(124.738, "kg"),
  2575. name: "Body",
  2576. image: {
  2577. extra: 1225 / 1050,
  2578. source: "./media/characters/north/front.svg"
  2579. }
  2580. }
  2581. },
  2582. [
  2583. {
  2584. name: "Micro",
  2585. height: math.unit(4, "inches")
  2586. },
  2587. {
  2588. name: "Macro",
  2589. height: math.unit(63, "meters")
  2590. },
  2591. {
  2592. name: "Megamacro",
  2593. height: math.unit(101, "miles"),
  2594. default: true
  2595. }
  2596. ]
  2597. ))
  2598. characterMakers.push(() => makeCharacter(
  2599. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2600. {
  2601. angled: {
  2602. height: math.unit(4, "meter"),
  2603. weight: math.unit(150, "kg"),
  2604. name: "Angled",
  2605. image: {
  2606. source: "./media/characters/talan/angled-sfw.svg",
  2607. bottom: 29 / 3734
  2608. }
  2609. },
  2610. angledNsfw: {
  2611. height: math.unit(4, "meter"),
  2612. weight: math.unit(150, "kg"),
  2613. name: "Angled (NSFW)",
  2614. image: {
  2615. source: "./media/characters/talan/angled-nsfw.svg",
  2616. bottom: 29 / 3734
  2617. }
  2618. },
  2619. frontNsfw: {
  2620. height: math.unit(4, "meter"),
  2621. weight: math.unit(150, "kg"),
  2622. name: "Front (NSFW)",
  2623. image: {
  2624. source: "./media/characters/talan/front-nsfw.svg",
  2625. bottom: 29 / 3734
  2626. }
  2627. },
  2628. sideNsfw: {
  2629. height: math.unit(4, "meter"),
  2630. weight: math.unit(150, "kg"),
  2631. name: "Side (NSFW)",
  2632. image: {
  2633. source: "./media/characters/talan/side-nsfw.svg",
  2634. bottom: 29 / 3734
  2635. }
  2636. },
  2637. back: {
  2638. height: math.unit(4, "meter"),
  2639. weight: math.unit(150, "kg"),
  2640. name: "Back",
  2641. image: {
  2642. source: "./media/characters/talan/back.svg"
  2643. }
  2644. },
  2645. dickBottom: {
  2646. height: math.unit(0.621, "meter"),
  2647. name: "Dick (Bottom)",
  2648. image: {
  2649. source: "./media/characters/talan/dick-bottom.svg"
  2650. }
  2651. },
  2652. dickTop: {
  2653. height: math.unit(0.621, "meter"),
  2654. name: "Dick (Top)",
  2655. image: {
  2656. source: "./media/characters/talan/dick-top.svg"
  2657. }
  2658. },
  2659. dickSide: {
  2660. height: math.unit(0.305, "meter"),
  2661. name: "Dick (Side)",
  2662. image: {
  2663. source: "./media/characters/talan/dick-side.svg"
  2664. }
  2665. },
  2666. dickFront: {
  2667. height: math.unit(0.305, "meter"),
  2668. name: "Dick (Front)",
  2669. image: {
  2670. source: "./media/characters/talan/dick-front.svg"
  2671. }
  2672. },
  2673. },
  2674. [
  2675. {
  2676. name: "Normal",
  2677. height: math.unit(4, "meters")
  2678. },
  2679. {
  2680. name: "Macro",
  2681. height: math.unit(100, "meters")
  2682. },
  2683. {
  2684. name: "Megamacro",
  2685. height: math.unit(2, "miles"),
  2686. default: true
  2687. },
  2688. {
  2689. name: "Gigamacro",
  2690. height: math.unit(5000, "miles")
  2691. },
  2692. {
  2693. name: "Teramacro",
  2694. height: math.unit(100, "parsecs")
  2695. }
  2696. ]
  2697. ))
  2698. characterMakers.push(() => makeCharacter(
  2699. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2700. {
  2701. front: {
  2702. height: math.unit(2, "meter"),
  2703. weight: math.unit(90, "kg"),
  2704. name: "Front",
  2705. image: {
  2706. source: "./media/characters/gael'rathus/front.svg"
  2707. }
  2708. },
  2709. frontAlt: {
  2710. height: math.unit(2, "meter"),
  2711. weight: math.unit(90, "kg"),
  2712. name: "Front (alt)",
  2713. image: {
  2714. source: "./media/characters/gael'rathus/front-alt.svg"
  2715. }
  2716. },
  2717. frontAlt2: {
  2718. height: math.unit(2, "meter"),
  2719. weight: math.unit(90, "kg"),
  2720. name: "Front (alt 2)",
  2721. image: {
  2722. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2723. }
  2724. }
  2725. },
  2726. [
  2727. {
  2728. name: "Normal",
  2729. height: math.unit(9, "feet"),
  2730. default: true
  2731. },
  2732. {
  2733. name: "Large",
  2734. height: math.unit(25, "feet")
  2735. },
  2736. {
  2737. name: "Macro",
  2738. height: math.unit(0.25, "miles")
  2739. },
  2740. {
  2741. name: "Megamacro",
  2742. height: math.unit(10, "miles")
  2743. }
  2744. ]
  2745. ))
  2746. characterMakers.push(() => makeCharacter(
  2747. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2748. {
  2749. side: {
  2750. height: math.unit(2, "meter"),
  2751. weight: math.unit(140, "kg"),
  2752. name: "Side",
  2753. image: {
  2754. source: "./media/characters/sosha/side.svg",
  2755. bottom: 0.042
  2756. }
  2757. },
  2758. },
  2759. [
  2760. {
  2761. name: "Normal",
  2762. height: math.unit(12, "feet"),
  2763. default: true
  2764. }
  2765. ]
  2766. ))
  2767. characterMakers.push(() => makeCharacter(
  2768. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2769. {
  2770. side: {
  2771. height: math.unit(5 + 5 / 12, "feet"),
  2772. weight: math.unit(170, "kg"),
  2773. name: "Side",
  2774. image: {
  2775. source: "./media/characters/runnola/side.svg",
  2776. extra: 741 / 448,
  2777. bottom: 0.05
  2778. }
  2779. },
  2780. },
  2781. [
  2782. {
  2783. name: "Small",
  2784. height: math.unit(3, "feet")
  2785. },
  2786. {
  2787. name: "Normal",
  2788. height: math.unit(5 + 5 / 12, "feet"),
  2789. default: true
  2790. },
  2791. {
  2792. name: "Big",
  2793. height: math.unit(10, "feet")
  2794. },
  2795. ]
  2796. ))
  2797. characterMakers.push(() => makeCharacter(
  2798. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2799. {
  2800. front: {
  2801. height: math.unit(2, "meter"),
  2802. weight: math.unit(50, "kg"),
  2803. name: "Front",
  2804. image: {
  2805. source: "./media/characters/kurribird/front.svg",
  2806. bottom: 0.015
  2807. }
  2808. },
  2809. frontAlt: {
  2810. height: math.unit(1.5, "meter"),
  2811. weight: math.unit(50, "kg"),
  2812. name: "Front (Alt)",
  2813. image: {
  2814. source: "./media/characters/kurribird/front-alt.svg",
  2815. extra: 1.45
  2816. }
  2817. },
  2818. },
  2819. [
  2820. {
  2821. name: "Normal",
  2822. height: math.unit(7, "feet")
  2823. },
  2824. {
  2825. name: "Big",
  2826. height: math.unit(12, "feet"),
  2827. default: true
  2828. },
  2829. {
  2830. name: "Macro",
  2831. height: math.unit(1500, "feet")
  2832. },
  2833. {
  2834. name: "Megamacro",
  2835. height: math.unit(2, "miles")
  2836. }
  2837. ]
  2838. ))
  2839. characterMakers.push(() => makeCharacter(
  2840. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2841. {
  2842. front: {
  2843. height: math.unit(2, "meter"),
  2844. weight: math.unit(80, "kg"),
  2845. name: "Front",
  2846. image: {
  2847. source: "./media/characters/elbial/front.svg",
  2848. extra: 1643 / 1556,
  2849. bottom: 60.2 / 1696
  2850. }
  2851. },
  2852. side: {
  2853. height: math.unit(2, "meter"),
  2854. weight: math.unit(80, "kg"),
  2855. name: "Side",
  2856. image: {
  2857. source: "./media/characters/elbial/side.svg",
  2858. extra: 1630 / 1565,
  2859. bottom: 71.5 / 1697
  2860. }
  2861. },
  2862. back: {
  2863. height: math.unit(2, "meter"),
  2864. weight: math.unit(80, "kg"),
  2865. name: "Back",
  2866. image: {
  2867. source: "./media/characters/elbial/back.svg",
  2868. extra: 1668 / 1595,
  2869. bottom: 5.6 / 1672
  2870. }
  2871. },
  2872. frontDressed: {
  2873. height: math.unit(2, "meter"),
  2874. weight: math.unit(80, "kg"),
  2875. name: "Front (Dressed)",
  2876. image: {
  2877. source: "./media/characters/elbial/front-dressed.svg",
  2878. extra: 1653 / 1584,
  2879. bottom: 57 / 1708
  2880. }
  2881. },
  2882. genitals: {
  2883. height: math.unit(2 / 3.367, "meter"),
  2884. name: "Genitals",
  2885. image: {
  2886. source: "./media/characters/elbial/genitals.svg"
  2887. }
  2888. },
  2889. },
  2890. [
  2891. {
  2892. name: "Large",
  2893. height: math.unit(100, "feet")
  2894. },
  2895. {
  2896. name: "Macro",
  2897. height: math.unit(500, "feet"),
  2898. default: true
  2899. },
  2900. {
  2901. name: "Megamacro",
  2902. height: math.unit(10, "miles")
  2903. },
  2904. {
  2905. name: "Gigamacro",
  2906. height: math.unit(25000, "miles")
  2907. },
  2908. {
  2909. name: "Full-Size",
  2910. height: math.unit(8000000, "gigaparsecs")
  2911. }
  2912. ]
  2913. ))
  2914. characterMakers.push(() => makeCharacter(
  2915. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2916. {
  2917. front: {
  2918. height: math.unit(2, "meter"),
  2919. weight: math.unit(60, "kg"),
  2920. name: "Front",
  2921. image: {
  2922. source: "./media/characters/noah/front.svg"
  2923. }
  2924. },
  2925. talons: {
  2926. height: math.unit(0.315, "meter"),
  2927. name: "Talons",
  2928. image: {
  2929. source: "./media/characters/noah/talons.svg"
  2930. }
  2931. }
  2932. },
  2933. [
  2934. {
  2935. name: "Large",
  2936. height: math.unit(50, "feet")
  2937. },
  2938. {
  2939. name: "Macro",
  2940. height: math.unit(750, "feet"),
  2941. default: true
  2942. },
  2943. {
  2944. name: "Megamacro",
  2945. height: math.unit(50, "miles")
  2946. },
  2947. {
  2948. name: "Gigamacro",
  2949. height: math.unit(100000, "miles")
  2950. },
  2951. {
  2952. name: "Full-Size",
  2953. height: math.unit(3000000000, "miles")
  2954. }
  2955. ]
  2956. ))
  2957. characterMakers.push(() => makeCharacter(
  2958. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2959. {
  2960. front: {
  2961. height: math.unit(2, "meter"),
  2962. weight: math.unit(80, "kg"),
  2963. name: "Front",
  2964. image: {
  2965. source: "./media/characters/natalya/front.svg"
  2966. }
  2967. },
  2968. back: {
  2969. height: math.unit(2, "meter"),
  2970. weight: math.unit(80, "kg"),
  2971. name: "Back",
  2972. image: {
  2973. source: "./media/characters/natalya/back.svg"
  2974. }
  2975. }
  2976. },
  2977. [
  2978. {
  2979. name: "Normal",
  2980. height: math.unit(150, "feet"),
  2981. default: true
  2982. },
  2983. {
  2984. name: "Megamacro",
  2985. height: math.unit(5, "miles")
  2986. },
  2987. {
  2988. name: "Full-Size",
  2989. height: math.unit(600, "kiloparsecs")
  2990. }
  2991. ]
  2992. ))
  2993. characterMakers.push(() => makeCharacter(
  2994. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2995. {
  2996. front: {
  2997. height: math.unit(2, "meter"),
  2998. weight: math.unit(50, "kg"),
  2999. name: "Front",
  3000. image: {
  3001. source: "./media/characters/erestrebah/front.svg",
  3002. extra: 208 / 193,
  3003. bottom: 0.055
  3004. }
  3005. },
  3006. back: {
  3007. height: math.unit(2, "meter"),
  3008. weight: math.unit(50, "kg"),
  3009. name: "Back",
  3010. image: {
  3011. source: "./media/characters/erestrebah/back.svg",
  3012. extra: 1.3
  3013. }
  3014. }
  3015. },
  3016. [
  3017. {
  3018. name: "Normal",
  3019. height: math.unit(10, "feet")
  3020. },
  3021. {
  3022. name: "Large",
  3023. height: math.unit(50, "feet"),
  3024. default: true
  3025. },
  3026. {
  3027. name: "Macro",
  3028. height: math.unit(300, "feet")
  3029. },
  3030. {
  3031. name: "Macro+",
  3032. height: math.unit(750, "feet")
  3033. },
  3034. {
  3035. name: "Megamacro",
  3036. height: math.unit(3, "miles")
  3037. }
  3038. ]
  3039. ))
  3040. characterMakers.push(() => makeCharacter(
  3041. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3042. {
  3043. front: {
  3044. height: math.unit(2, "meter"),
  3045. weight: math.unit(80, "kg"),
  3046. name: "Front",
  3047. image: {
  3048. source: "./media/characters/jennifer/front.svg",
  3049. bottom: 0.11,
  3050. extra: 1.16
  3051. }
  3052. },
  3053. frontAlt: {
  3054. height: math.unit(2, "meter"),
  3055. weight: math.unit(80, "kg"),
  3056. name: "Front (Alt)",
  3057. image: {
  3058. source: "./media/characters/jennifer/front-alt.svg"
  3059. }
  3060. }
  3061. },
  3062. [
  3063. {
  3064. name: "Canon Height",
  3065. height: math.unit(120, "feet"),
  3066. default: true
  3067. },
  3068. {
  3069. name: "Macro+",
  3070. height: math.unit(300, "feet")
  3071. },
  3072. {
  3073. name: "Megamacro",
  3074. height: math.unit(20000, "feet")
  3075. }
  3076. ]
  3077. ))
  3078. characterMakers.push(() => makeCharacter(
  3079. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3080. {
  3081. front: {
  3082. height: math.unit(2, "meter"),
  3083. weight: math.unit(50, "kg"),
  3084. name: "Front",
  3085. image: {
  3086. source: "./media/characters/kalista/front.svg",
  3087. extra: 1947 / 1700,
  3088. bottom: 76.6 / 1412.98
  3089. }
  3090. },
  3091. back: {
  3092. height: math.unit(2, "meter"),
  3093. weight: math.unit(50, "kg"),
  3094. name: "Back",
  3095. image: {
  3096. source: "./media/characters/kalista/back.svg",
  3097. extra: 1366 / 1156,
  3098. bottom: 33.9 / 1362.78
  3099. }
  3100. }
  3101. },
  3102. [
  3103. {
  3104. name: "Uncomfortably Small",
  3105. height: math.unit(10, "feet")
  3106. },
  3107. {
  3108. name: "Small",
  3109. height: math.unit(30, "feet")
  3110. },
  3111. {
  3112. name: "Macro",
  3113. height: math.unit(100, "feet"),
  3114. default: true
  3115. },
  3116. {
  3117. name: "Macro+",
  3118. height: math.unit(2000, "feet")
  3119. },
  3120. {
  3121. name: "True Form",
  3122. height: math.unit(8924, "miles")
  3123. }
  3124. ]
  3125. ))
  3126. characterMakers.push(() => makeCharacter(
  3127. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3128. {
  3129. front: {
  3130. height: math.unit(2, "meter"),
  3131. weight: math.unit(120, "kg"),
  3132. name: "Front",
  3133. image: {
  3134. source: "./media/characters/ggv/front.svg"
  3135. }
  3136. },
  3137. side: {
  3138. height: math.unit(2, "meter"),
  3139. weight: math.unit(120, "kg"),
  3140. name: "Side",
  3141. image: {
  3142. source: "./media/characters/ggv/side.svg"
  3143. }
  3144. }
  3145. },
  3146. [
  3147. {
  3148. name: "Extremely Puny",
  3149. height: math.unit(9 + 5 / 12, "feet")
  3150. },
  3151. {
  3152. name: "Horribly Small",
  3153. height: math.unit(47.7, "miles"),
  3154. default: true
  3155. },
  3156. {
  3157. name: "Reasonably Sized",
  3158. height: math.unit(25000, "parsecs")
  3159. },
  3160. {
  3161. name: "Slightly Uncompressed",
  3162. height: math.unit(7.77e31, "parsecs")
  3163. },
  3164. {
  3165. name: "Omniversal",
  3166. height: math.unit(1e300, "meters")
  3167. },
  3168. ]
  3169. ))
  3170. characterMakers.push(() => makeCharacter(
  3171. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3172. {
  3173. front: {
  3174. height: math.unit(2, "meter"),
  3175. weight: math.unit(75, "lb"),
  3176. name: "Front",
  3177. image: {
  3178. source: "./media/characters/napalm/front.svg"
  3179. }
  3180. },
  3181. back: {
  3182. height: math.unit(2, "meter"),
  3183. weight: math.unit(75, "lb"),
  3184. name: "Back",
  3185. image: {
  3186. source: "./media/characters/napalm/back.svg"
  3187. }
  3188. }
  3189. },
  3190. [
  3191. {
  3192. name: "Standard",
  3193. height: math.unit(55, "feet"),
  3194. default: true
  3195. }
  3196. ]
  3197. ))
  3198. characterMakers.push(() => makeCharacter(
  3199. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3200. {
  3201. front: {
  3202. height: math.unit(7 + 5 / 6, "feet"),
  3203. weight: math.unit(325, "lb"),
  3204. name: "Front",
  3205. image: {
  3206. source: "./media/characters/asana/front.svg",
  3207. extra: 1133 / 1060,
  3208. bottom: 15.2 / 1148.6
  3209. }
  3210. },
  3211. back: {
  3212. height: math.unit(7 + 5 / 6, "feet"),
  3213. weight: math.unit(325, "lb"),
  3214. name: "Back",
  3215. image: {
  3216. source: "./media/characters/asana/back.svg",
  3217. extra: 1114 / 1043,
  3218. bottom: 5 / 1120
  3219. }
  3220. },
  3221. dressedDark: {
  3222. height: math.unit(7 + 5 / 6, "feet"),
  3223. weight: math.unit(325, "lb"),
  3224. name: "Dressed (Dark)",
  3225. image: {
  3226. source: "./media/characters/asana/dressed-dark.svg",
  3227. extra: 1133 / 1060,
  3228. bottom: 15.2 / 1148.6
  3229. }
  3230. },
  3231. dressedLight: {
  3232. height: math.unit(7 + 5 / 6, "feet"),
  3233. weight: math.unit(325, "lb"),
  3234. name: "Dressed (Light)",
  3235. image: {
  3236. source: "./media/characters/asana/dressed-light.svg",
  3237. extra: 1133 / 1060,
  3238. bottom: 15.2 / 1148.6
  3239. }
  3240. },
  3241. },
  3242. [
  3243. {
  3244. name: "Standard",
  3245. height: math.unit(7 + 5 / 6, "feet"),
  3246. default: true
  3247. },
  3248. {
  3249. name: "Large",
  3250. height: math.unit(10, "meters")
  3251. },
  3252. {
  3253. name: "Macro",
  3254. height: math.unit(2500, "meters")
  3255. },
  3256. {
  3257. name: "Megamacro",
  3258. height: math.unit(5e6, "meters")
  3259. },
  3260. {
  3261. name: "Examacro",
  3262. height: math.unit(5e12, "lightyears")
  3263. },
  3264. {
  3265. name: "Max Size",
  3266. height: math.unit(1e31, "lightyears")
  3267. }
  3268. ]
  3269. ))
  3270. characterMakers.push(() => makeCharacter(
  3271. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3272. {
  3273. front: {
  3274. height: math.unit(2, "meter"),
  3275. weight: math.unit(60, "kg"),
  3276. name: "Front",
  3277. image: {
  3278. source: "./media/characters/ebony/front.svg",
  3279. bottom: 0.03,
  3280. extra: 1045 / 810 + 0.03
  3281. }
  3282. },
  3283. side: {
  3284. height: math.unit(2, "meter"),
  3285. weight: math.unit(60, "kg"),
  3286. name: "Side",
  3287. image: {
  3288. source: "./media/characters/ebony/side.svg",
  3289. bottom: 0.03,
  3290. extra: 1045 / 810 + 0.03
  3291. }
  3292. },
  3293. back: {
  3294. height: math.unit(2, "meter"),
  3295. weight: math.unit(60, "kg"),
  3296. name: "Back",
  3297. image: {
  3298. source: "./media/characters/ebony/back.svg",
  3299. bottom: 0.01,
  3300. extra: 1045 / 810 + 0.01
  3301. }
  3302. },
  3303. },
  3304. [
  3305. // TODO check why I did this lol
  3306. {
  3307. name: "Standard",
  3308. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3309. default: true
  3310. },
  3311. {
  3312. name: "Macro",
  3313. height: math.unit(200, "feet")
  3314. },
  3315. {
  3316. name: "Gigamacro",
  3317. height: math.unit(13000, "km")
  3318. }
  3319. ]
  3320. ))
  3321. characterMakers.push(() => makeCharacter(
  3322. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3323. {
  3324. front: {
  3325. height: math.unit(6, "feet"),
  3326. weight: math.unit(175, "lb"),
  3327. name: "Front",
  3328. image: {
  3329. source: "./media/characters/mountain/front.svg",
  3330. extra: 972 / 955,
  3331. bottom: 64 / 1036.6
  3332. }
  3333. },
  3334. back: {
  3335. height: math.unit(6, "feet"),
  3336. weight: math.unit(175, "lb"),
  3337. name: "Back",
  3338. image: {
  3339. source: "./media/characters/mountain/back.svg",
  3340. extra: 970 / 950,
  3341. bottom: 28.25 / 999
  3342. }
  3343. },
  3344. },
  3345. [
  3346. {
  3347. name: "Large",
  3348. height: math.unit(20, "meters")
  3349. },
  3350. {
  3351. name: "Macro",
  3352. height: math.unit(300, "meters")
  3353. },
  3354. {
  3355. name: "Gigamacro",
  3356. height: math.unit(10000, "km"),
  3357. default: true
  3358. },
  3359. {
  3360. name: "Examacro",
  3361. height: math.unit(10e9, "lightyears")
  3362. }
  3363. ]
  3364. ))
  3365. characterMakers.push(() => makeCharacter(
  3366. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3367. {
  3368. front: {
  3369. height: math.unit(8, "feet"),
  3370. weight: math.unit(500, "lb"),
  3371. name: "Front",
  3372. image: {
  3373. source: "./media/characters/rick/front.svg"
  3374. }
  3375. }
  3376. },
  3377. [
  3378. {
  3379. name: "Normal",
  3380. height: math.unit(8, "feet"),
  3381. default: true
  3382. },
  3383. {
  3384. name: "Macro",
  3385. height: math.unit(5, "km")
  3386. }
  3387. ]
  3388. ))
  3389. characterMakers.push(() => makeCharacter(
  3390. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3391. {
  3392. front: {
  3393. height: math.unit(8, "feet"),
  3394. weight: math.unit(120, "lb"),
  3395. name: "Front",
  3396. image: {
  3397. source: "./media/characters/ona/front.svg"
  3398. }
  3399. },
  3400. frontAlt: {
  3401. height: math.unit(8, "feet"),
  3402. weight: math.unit(120, "lb"),
  3403. name: "Front (Alt)",
  3404. image: {
  3405. source: "./media/characters/ona/front-alt.svg"
  3406. }
  3407. },
  3408. back: {
  3409. height: math.unit(8, "feet"),
  3410. weight: math.unit(120, "lb"),
  3411. name: "Back",
  3412. image: {
  3413. source: "./media/characters/ona/back.svg"
  3414. }
  3415. },
  3416. foot: {
  3417. height: math.unit(1.1, "feet"),
  3418. name: "Foot",
  3419. image: {
  3420. source: "./media/characters/ona/foot.svg"
  3421. }
  3422. }
  3423. },
  3424. [
  3425. {
  3426. name: "Megamacro",
  3427. height: math.unit(70, "km"),
  3428. default: true
  3429. },
  3430. {
  3431. name: "Gigamacro",
  3432. height: math.unit(681818, "miles")
  3433. },
  3434. {
  3435. name: "Examacro",
  3436. height: math.unit(3800000, "lightyears")
  3437. },
  3438. ]
  3439. ))
  3440. characterMakers.push(() => makeCharacter(
  3441. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3442. {
  3443. front: {
  3444. height: math.unit(12, "feet"),
  3445. weight: math.unit(3000, "lb"),
  3446. name: "Front",
  3447. image: {
  3448. source: "./media/characters/mech/front.svg",
  3449. extra: 2900 / 2770,
  3450. bottom: 110 / 3010
  3451. }
  3452. },
  3453. back: {
  3454. height: math.unit(12, "feet"),
  3455. weight: math.unit(3000, "lb"),
  3456. name: "Back",
  3457. image: {
  3458. source: "./media/characters/mech/back.svg",
  3459. extra: 3011 / 2890,
  3460. bottom: 94 / 3105
  3461. }
  3462. },
  3463. maw: {
  3464. height: math.unit(3.07, "feet"),
  3465. name: "Maw",
  3466. image: {
  3467. source: "./media/characters/mech/maw.svg"
  3468. }
  3469. },
  3470. head: {
  3471. height: math.unit(2.82, "feet"),
  3472. name: "Head",
  3473. image: {
  3474. source: "./media/characters/mech/head.svg"
  3475. }
  3476. },
  3477. dick: {
  3478. height: math.unit(1.43, "feet"),
  3479. name: "Dick",
  3480. image: {
  3481. source: "./media/characters/mech/dick.svg"
  3482. }
  3483. },
  3484. },
  3485. [
  3486. {
  3487. name: "Normal",
  3488. height: math.unit(12, "feet")
  3489. },
  3490. {
  3491. name: "Macro",
  3492. height: math.unit(300, "feet"),
  3493. default: true
  3494. },
  3495. {
  3496. name: "Macro+",
  3497. height: math.unit(1500, "feet")
  3498. },
  3499. ]
  3500. ))
  3501. characterMakers.push(() => makeCharacter(
  3502. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3503. {
  3504. front: {
  3505. height: math.unit(1.3, "meter"),
  3506. weight: math.unit(30, "kg"),
  3507. name: "Front",
  3508. image: {
  3509. source: "./media/characters/gregory/front.svg",
  3510. }
  3511. }
  3512. },
  3513. [
  3514. {
  3515. name: "Normal",
  3516. height: math.unit(1.3, "meter"),
  3517. default: true
  3518. },
  3519. {
  3520. name: "Macro",
  3521. height: math.unit(20, "meter")
  3522. }
  3523. ]
  3524. ))
  3525. characterMakers.push(() => makeCharacter(
  3526. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3527. {
  3528. front: {
  3529. height: math.unit(2.8, "meter"),
  3530. weight: math.unit(200, "kg"),
  3531. name: "Front",
  3532. image: {
  3533. source: "./media/characters/elory/front.svg",
  3534. }
  3535. }
  3536. },
  3537. [
  3538. {
  3539. name: "Normal",
  3540. height: math.unit(2.8, "meter"),
  3541. default: true
  3542. },
  3543. {
  3544. name: "Macro",
  3545. height: math.unit(38, "meter")
  3546. }
  3547. ]
  3548. ))
  3549. characterMakers.push(() => makeCharacter(
  3550. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3551. {
  3552. front: {
  3553. height: math.unit(470, "feet"),
  3554. weight: math.unit(924, "tons"),
  3555. name: "Front",
  3556. image: {
  3557. source: "./media/characters/angelpatamon/front.svg",
  3558. }
  3559. }
  3560. },
  3561. [
  3562. {
  3563. name: "Normal",
  3564. height: math.unit(470, "feet"),
  3565. default: true
  3566. },
  3567. {
  3568. name: "Deity Size I",
  3569. height: math.unit(28651.2, "km")
  3570. },
  3571. {
  3572. name: "Deity Size II",
  3573. height: math.unit(171907.2, "km")
  3574. }
  3575. ]
  3576. ))
  3577. characterMakers.push(() => makeCharacter(
  3578. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3579. {
  3580. side: {
  3581. height: math.unit(7.2, "meter"),
  3582. weight: math.unit(8.2, "tons"),
  3583. name: "Side",
  3584. image: {
  3585. source: "./media/characters/cryae/side.svg",
  3586. extra: 3500 / 1500
  3587. }
  3588. }
  3589. },
  3590. [
  3591. {
  3592. name: "Normal",
  3593. height: math.unit(7.2, "meter"),
  3594. default: true
  3595. }
  3596. ]
  3597. ))
  3598. characterMakers.push(() => makeCharacter(
  3599. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3600. {
  3601. front: {
  3602. height: math.unit(6, "feet"),
  3603. weight: math.unit(175, "lb"),
  3604. name: "Front",
  3605. image: {
  3606. source: "./media/characters/xera/front.svg",
  3607. extra: 2377 / 1972,
  3608. bottom: 75.5 / 2452
  3609. }
  3610. },
  3611. side: {
  3612. height: math.unit(6, "feet"),
  3613. weight: math.unit(175, "lb"),
  3614. name: "Side",
  3615. image: {
  3616. source: "./media/characters/xera/side.svg",
  3617. extra: 2345 / 2019,
  3618. bottom: 39.7 / 2384
  3619. }
  3620. },
  3621. back: {
  3622. height: math.unit(6, "feet"),
  3623. weight: math.unit(175, "lb"),
  3624. name: "Back",
  3625. image: {
  3626. source: "./media/characters/xera/back.svg",
  3627. extra: 2095 / 1984,
  3628. bottom: 67 / 2166
  3629. }
  3630. },
  3631. },
  3632. [
  3633. {
  3634. name: "Small",
  3635. height: math.unit(10, "feet")
  3636. },
  3637. {
  3638. name: "Macro",
  3639. height: math.unit(500, "meters"),
  3640. default: true
  3641. },
  3642. {
  3643. name: "Macro+",
  3644. height: math.unit(10, "km")
  3645. },
  3646. {
  3647. name: "Gigamacro",
  3648. height: math.unit(25000, "km")
  3649. },
  3650. {
  3651. name: "Teramacro",
  3652. height: math.unit(3e6, "km")
  3653. }
  3654. ]
  3655. ))
  3656. characterMakers.push(() => makeCharacter(
  3657. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3658. {
  3659. front: {
  3660. height: math.unit(6, "feet"),
  3661. weight: math.unit(175, "lb"),
  3662. name: "Front",
  3663. image: {
  3664. source: "./media/characters/nebula/front.svg",
  3665. extra: 2566 / 2362,
  3666. bottom: 81 / 2644
  3667. }
  3668. }
  3669. },
  3670. [
  3671. {
  3672. name: "Small",
  3673. height: math.unit(4.5, "meters")
  3674. },
  3675. {
  3676. name: "Macro",
  3677. height: math.unit(1500, "meters"),
  3678. default: true
  3679. },
  3680. {
  3681. name: "Megamacro",
  3682. height: math.unit(150, "km")
  3683. },
  3684. {
  3685. name: "Gigamacro",
  3686. height: math.unit(27000, "km")
  3687. }
  3688. ]
  3689. ))
  3690. characterMakers.push(() => makeCharacter(
  3691. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3692. {
  3693. front: {
  3694. height: math.unit(6, "feet"),
  3695. weight: math.unit(225, "lb"),
  3696. name: "Front",
  3697. image: {
  3698. source: "./media/characters/abysgar/front.svg"
  3699. }
  3700. }
  3701. },
  3702. [
  3703. {
  3704. name: "Small",
  3705. height: math.unit(4.5, "meters")
  3706. },
  3707. {
  3708. name: "Macro",
  3709. height: math.unit(1250, "meters"),
  3710. default: true
  3711. },
  3712. {
  3713. name: "Megamacro",
  3714. height: math.unit(125, "km")
  3715. },
  3716. {
  3717. name: "Gigamacro",
  3718. height: math.unit(26000, "km")
  3719. }
  3720. ]
  3721. ))
  3722. characterMakers.push(() => makeCharacter(
  3723. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3724. {
  3725. front: {
  3726. height: math.unit(6, "feet"),
  3727. weight: math.unit(180, "lb"),
  3728. name: "Front",
  3729. image: {
  3730. source: "./media/characters/yakuz/front.svg"
  3731. }
  3732. }
  3733. },
  3734. [
  3735. {
  3736. name: "Small",
  3737. height: math.unit(5, "meters")
  3738. },
  3739. {
  3740. name: "Macro",
  3741. height: math.unit(1500, "meters"),
  3742. default: true
  3743. },
  3744. {
  3745. name: "Megamacro",
  3746. height: math.unit(200, "km")
  3747. },
  3748. {
  3749. name: "Gigamacro",
  3750. height: math.unit(100000, "km")
  3751. }
  3752. ]
  3753. ))
  3754. characterMakers.push(() => makeCharacter(
  3755. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3756. {
  3757. front: {
  3758. height: math.unit(6, "feet"),
  3759. weight: math.unit(175, "lb"),
  3760. name: "Front",
  3761. image: {
  3762. source: "./media/characters/mirova/front.svg",
  3763. extra: 3334 / 3071,
  3764. bottom: 42 / 3375.6
  3765. }
  3766. }
  3767. },
  3768. [
  3769. {
  3770. name: "Small",
  3771. height: math.unit(5, "meters")
  3772. },
  3773. {
  3774. name: "Macro",
  3775. height: math.unit(900, "meters"),
  3776. default: true
  3777. },
  3778. {
  3779. name: "Megamacro",
  3780. height: math.unit(135, "km")
  3781. },
  3782. {
  3783. name: "Gigamacro",
  3784. height: math.unit(20000, "km")
  3785. }
  3786. ]
  3787. ))
  3788. characterMakers.push(() => makeCharacter(
  3789. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3790. {
  3791. side: {
  3792. height: math.unit(28.35, "feet"),
  3793. weight: math.unit(99.75, "tons"),
  3794. name: "Side",
  3795. image: {
  3796. source: "./media/characters/asana-mech/side.svg",
  3797. extra: 923 / 699,
  3798. bottom: 50 / 975
  3799. }
  3800. },
  3801. chaingun: {
  3802. height: math.unit(7, "feet"),
  3803. weight: math.unit(2400, "lb"),
  3804. name: "Chaingun",
  3805. image: {
  3806. source: "./media/characters/asana-mech/chaingun.svg"
  3807. }
  3808. },
  3809. laser: {
  3810. height: math.unit(7.12, "feet"),
  3811. weight: math.unit(2000, "lb"),
  3812. name: "Laser",
  3813. image: {
  3814. source: "./media/characters/asana-mech/laser.svg"
  3815. }
  3816. },
  3817. },
  3818. [
  3819. {
  3820. name: "Normal",
  3821. height: math.unit(28.35, "feet"),
  3822. default: true
  3823. },
  3824. {
  3825. name: "Macro",
  3826. height: math.unit(2500, "feet")
  3827. },
  3828. {
  3829. name: "Megamacro",
  3830. height: math.unit(25, "miles")
  3831. },
  3832. {
  3833. name: "Examacro",
  3834. height: math.unit(6e8, "lightyears")
  3835. },
  3836. ]
  3837. ))
  3838. characterMakers.push(() => makeCharacter(
  3839. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3840. {
  3841. front: {
  3842. height: math.unit(5, "meters"),
  3843. weight: math.unit(1000, "kg"),
  3844. name: "Front",
  3845. image: {
  3846. source: "./media/characters/asche/front.svg",
  3847. extra: 1258 / 1190,
  3848. bottom: 47 / 1305
  3849. }
  3850. },
  3851. frontUnderwear: {
  3852. height: math.unit(5, "meters"),
  3853. weight: math.unit(1000, "kg"),
  3854. name: "Front (Underwear)",
  3855. image: {
  3856. source: "./media/characters/asche/front-underwear.svg",
  3857. extra: 1258 / 1190,
  3858. bottom: 47 / 1305
  3859. }
  3860. },
  3861. frontDressed: {
  3862. height: math.unit(5, "meters"),
  3863. weight: math.unit(1000, "kg"),
  3864. name: "Front (Dressed)",
  3865. image: {
  3866. source: "./media/characters/asche/front-dressed.svg",
  3867. extra: 1258 / 1190,
  3868. bottom: 47 / 1305
  3869. }
  3870. },
  3871. frontArmor: {
  3872. height: math.unit(5, "meters"),
  3873. weight: math.unit(1000, "kg"),
  3874. name: "Front (Armored)",
  3875. image: {
  3876. source: "./media/characters/asche/front-armored.svg",
  3877. extra: 1374 / 1308,
  3878. bottom: 23 / 1397
  3879. }
  3880. },
  3881. mp724: {
  3882. height: math.unit(0.96, "meters"),
  3883. weight: math.unit(38, "kg"),
  3884. name: "H&K MP724",
  3885. image: {
  3886. source: "./media/characters/asche/h&k-mp724.svg"
  3887. }
  3888. },
  3889. side: {
  3890. height: math.unit(5, "meters"),
  3891. weight: math.unit(1000, "kg"),
  3892. name: "Side",
  3893. image: {
  3894. source: "./media/characters/asche/side.svg",
  3895. extra: 1717 / 1609,
  3896. bottom: 0.005
  3897. }
  3898. },
  3899. back: {
  3900. height: math.unit(5, "meters"),
  3901. weight: math.unit(1000, "kg"),
  3902. name: "Back",
  3903. image: {
  3904. source: "./media/characters/asche/back.svg",
  3905. extra: 1570 / 1501
  3906. }
  3907. },
  3908. },
  3909. [
  3910. {
  3911. name: "DEFCON 5",
  3912. height: math.unit(5, "meters")
  3913. },
  3914. {
  3915. name: "DEFCON 4",
  3916. height: math.unit(500, "meters"),
  3917. default: true
  3918. },
  3919. {
  3920. name: "DEFCON 3",
  3921. height: math.unit(5, "km")
  3922. },
  3923. {
  3924. name: "DEFCON 2",
  3925. height: math.unit(500, "km")
  3926. },
  3927. {
  3928. name: "DEFCON 1",
  3929. height: math.unit(500000, "km")
  3930. },
  3931. {
  3932. name: "DEFCON 0",
  3933. height: math.unit(3, "gigaparsecs")
  3934. },
  3935. ]
  3936. ))
  3937. characterMakers.push(() => makeCharacter(
  3938. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3939. {
  3940. front: {
  3941. height: math.unit(2, "meters"),
  3942. weight: math.unit(76, "kg"),
  3943. name: "Front",
  3944. image: {
  3945. source: "./media/characters/gale/front.svg"
  3946. }
  3947. },
  3948. frontAlt1: {
  3949. height: math.unit(2, "meters"),
  3950. weight: math.unit(76, "kg"),
  3951. name: "Front (Alt 1)",
  3952. image: {
  3953. source: "./media/characters/gale/front-alt-1.svg"
  3954. }
  3955. },
  3956. frontAlt2: {
  3957. height: math.unit(2, "meters"),
  3958. weight: math.unit(76, "kg"),
  3959. name: "Front (Alt 2)",
  3960. image: {
  3961. source: "./media/characters/gale/front-alt-2.svg"
  3962. }
  3963. },
  3964. },
  3965. [
  3966. {
  3967. name: "Normal",
  3968. height: math.unit(7, "feet")
  3969. },
  3970. {
  3971. name: "Macro",
  3972. height: math.unit(150, "feet"),
  3973. default: true
  3974. },
  3975. {
  3976. name: "Macro+",
  3977. height: math.unit(300, "feet")
  3978. },
  3979. ]
  3980. ))
  3981. characterMakers.push(() => makeCharacter(
  3982. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3983. {
  3984. front: {
  3985. height: math.unit(2, "meters"),
  3986. weight: math.unit(76, "kg"),
  3987. name: "Front",
  3988. image: {
  3989. source: "./media/characters/draylen/front.svg"
  3990. }
  3991. }
  3992. },
  3993. [
  3994. {
  3995. name: "Macro",
  3996. height: math.unit(150, "feet"),
  3997. default: true
  3998. }
  3999. ]
  4000. ))
  4001. characterMakers.push(() => makeCharacter(
  4002. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4003. {
  4004. front: {
  4005. height: math.unit(7 + 9 / 12, "feet"),
  4006. weight: math.unit(379, "lbs"),
  4007. name: "Front",
  4008. image: {
  4009. source: "./media/characters/chez/front.svg"
  4010. }
  4011. },
  4012. side: {
  4013. height: math.unit(7 + 9 / 12, "feet"),
  4014. weight: math.unit(379, "lbs"),
  4015. name: "Side",
  4016. image: {
  4017. source: "./media/characters/chez/side.svg"
  4018. }
  4019. }
  4020. },
  4021. [
  4022. {
  4023. name: "Normal",
  4024. height: math.unit(7 + 9 / 12, "feet"),
  4025. default: true
  4026. },
  4027. {
  4028. name: "God King",
  4029. height: math.unit(9750000, "meters")
  4030. }
  4031. ]
  4032. ))
  4033. characterMakers.push(() => makeCharacter(
  4034. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4035. {
  4036. front: {
  4037. height: math.unit(6, "feet"),
  4038. weight: math.unit(275, "lbs"),
  4039. name: "Front",
  4040. image: {
  4041. source: "./media/characters/kaylum/front.svg",
  4042. bottom: 0.01,
  4043. extra: 1166 / 1031
  4044. }
  4045. },
  4046. frontWingless: {
  4047. height: math.unit(6, "feet"),
  4048. weight: math.unit(275, "lbs"),
  4049. name: "Front (Wingless)",
  4050. image: {
  4051. source: "./media/characters/kaylum/front-wingless.svg",
  4052. bottom: 0.01,
  4053. extra: 1117 / 1031
  4054. }
  4055. }
  4056. },
  4057. [
  4058. {
  4059. name: "Normal",
  4060. height: math.unit(3.05, "meters")
  4061. },
  4062. {
  4063. name: "Master",
  4064. height: math.unit(5.5, "meters")
  4065. },
  4066. {
  4067. name: "Rampage",
  4068. height: math.unit(19, "meters")
  4069. },
  4070. {
  4071. name: "Macro Lite",
  4072. height: math.unit(37, "meters")
  4073. },
  4074. {
  4075. name: "Hyper Predator",
  4076. height: math.unit(61, "meters")
  4077. },
  4078. {
  4079. name: "Macro",
  4080. height: math.unit(138, "meters"),
  4081. default: true
  4082. }
  4083. ]
  4084. ))
  4085. characterMakers.push(() => makeCharacter(
  4086. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4087. {
  4088. front: {
  4089. height: math.unit(6, "feet"),
  4090. weight: math.unit(150, "lbs"),
  4091. name: "Front",
  4092. image: {
  4093. source: "./media/characters/geta/front.svg"
  4094. }
  4095. }
  4096. },
  4097. [
  4098. {
  4099. name: "Micro",
  4100. height: math.unit(3, "inches"),
  4101. default: true
  4102. },
  4103. {
  4104. name: "Normal",
  4105. height: math.unit(5 + 5 / 12, "feet")
  4106. }
  4107. ]
  4108. ))
  4109. characterMakers.push(() => makeCharacter(
  4110. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4111. {
  4112. front: {
  4113. height: math.unit(6, "feet"),
  4114. weight: math.unit(300, "lbs"),
  4115. name: "Front",
  4116. image: {
  4117. source: "./media/characters/tyrnn/front.svg"
  4118. }
  4119. }
  4120. },
  4121. [
  4122. {
  4123. name: "Main Height",
  4124. height: math.unit(355, "feet"),
  4125. default: true
  4126. },
  4127. {
  4128. name: "Fave. Height",
  4129. height: math.unit(2400, "feet")
  4130. }
  4131. ]
  4132. ))
  4133. characterMakers.push(() => makeCharacter(
  4134. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4135. {
  4136. front: {
  4137. height: math.unit(6, "feet"),
  4138. weight: math.unit(300, "lbs"),
  4139. name: "Front",
  4140. image: {
  4141. source: "./media/characters/appledectomy/front.svg"
  4142. }
  4143. }
  4144. },
  4145. [
  4146. {
  4147. name: "Macro",
  4148. height: math.unit(2500, "feet")
  4149. },
  4150. {
  4151. name: "Megamacro",
  4152. height: math.unit(50, "miles"),
  4153. default: true
  4154. },
  4155. {
  4156. name: "Gigamacro",
  4157. height: math.unit(5000, "miles")
  4158. },
  4159. {
  4160. name: "Teramacro",
  4161. height: math.unit(250000, "miles")
  4162. },
  4163. ]
  4164. ))
  4165. characterMakers.push(() => makeCharacter(
  4166. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4167. {
  4168. front: {
  4169. height: math.unit(6, "feet"),
  4170. weight: math.unit(200, "lbs"),
  4171. name: "Front",
  4172. image: {
  4173. source: "./media/characters/vulpes/front.svg",
  4174. extra: 573 / 543,
  4175. bottom: 0.033
  4176. }
  4177. },
  4178. side: {
  4179. height: math.unit(6, "feet"),
  4180. weight: math.unit(200, "lbs"),
  4181. name: "Side",
  4182. image: {
  4183. source: "./media/characters/vulpes/side.svg",
  4184. extra: 577 / 549,
  4185. bottom: 11 / 588
  4186. }
  4187. },
  4188. back: {
  4189. height: math.unit(6, "feet"),
  4190. weight: math.unit(200, "lbs"),
  4191. name: "Back",
  4192. image: {
  4193. source: "./media/characters/vulpes/back.svg",
  4194. extra: 573 / 549,
  4195. bottom: 20 / 593
  4196. }
  4197. },
  4198. feet: {
  4199. height: math.unit(1.276, "feet"),
  4200. name: "Feet",
  4201. image: {
  4202. source: "./media/characters/vulpes/feet.svg"
  4203. }
  4204. },
  4205. maw: {
  4206. height: math.unit(1.18, "feet"),
  4207. name: "Maw",
  4208. image: {
  4209. source: "./media/characters/vulpes/maw.svg"
  4210. }
  4211. },
  4212. },
  4213. [
  4214. {
  4215. name: "Micro",
  4216. height: math.unit(2, "inches")
  4217. },
  4218. {
  4219. name: "Normal",
  4220. height: math.unit(6.3, "feet")
  4221. },
  4222. {
  4223. name: "Macro",
  4224. height: math.unit(850, "feet")
  4225. },
  4226. {
  4227. name: "Megamacro",
  4228. height: math.unit(7500, "feet"),
  4229. default: true
  4230. },
  4231. {
  4232. name: "Gigamacro",
  4233. height: math.unit(570000, "miles")
  4234. }
  4235. ]
  4236. ))
  4237. characterMakers.push(() => makeCharacter(
  4238. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4239. {
  4240. front: {
  4241. height: math.unit(6, "feet"),
  4242. weight: math.unit(210, "lbs"),
  4243. name: "Front",
  4244. image: {
  4245. source: "./media/characters/rain-fallen/front.svg"
  4246. }
  4247. },
  4248. side: {
  4249. height: math.unit(6, "feet"),
  4250. weight: math.unit(210, "lbs"),
  4251. name: "Side",
  4252. image: {
  4253. source: "./media/characters/rain-fallen/side.svg"
  4254. }
  4255. },
  4256. back: {
  4257. height: math.unit(6, "feet"),
  4258. weight: math.unit(210, "lbs"),
  4259. name: "Back",
  4260. image: {
  4261. source: "./media/characters/rain-fallen/back.svg"
  4262. }
  4263. },
  4264. feral: {
  4265. height: math.unit(9, "feet"),
  4266. weight: math.unit(700, "lbs"),
  4267. name: "Feral",
  4268. image: {
  4269. source: "./media/characters/rain-fallen/feral.svg"
  4270. }
  4271. },
  4272. },
  4273. [
  4274. {
  4275. name: "Normal",
  4276. height: math.unit(5, "meter")
  4277. },
  4278. {
  4279. name: "Macro",
  4280. height: math.unit(150, "meter"),
  4281. default: true
  4282. },
  4283. {
  4284. name: "Megamacro",
  4285. height: math.unit(278e6, "meter")
  4286. },
  4287. {
  4288. name: "Gigamacro",
  4289. height: math.unit(2e9, "meter")
  4290. },
  4291. {
  4292. name: "Teramacro",
  4293. height: math.unit(8e12, "meter")
  4294. },
  4295. {
  4296. name: "Devourer",
  4297. height: math.unit(14, "zettameters")
  4298. },
  4299. {
  4300. name: "Scarlet King",
  4301. height: math.unit(18, "yottameters")
  4302. },
  4303. {
  4304. name: "Void",
  4305. height: math.unit(6.66e66, "yottameters")
  4306. }
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4311. {
  4312. standing: {
  4313. height: math.unit(6, "feet"),
  4314. weight: math.unit(180, "lbs"),
  4315. name: "Standing",
  4316. image: {
  4317. source: "./media/characters/zaakira/standing.svg"
  4318. }
  4319. },
  4320. laying: {
  4321. height: math.unit(3, "feet"),
  4322. weight: math.unit(180, "lbs"),
  4323. name: "Laying",
  4324. image: {
  4325. source: "./media/characters/zaakira/laying.svg"
  4326. }
  4327. },
  4328. },
  4329. [
  4330. {
  4331. name: "Normal",
  4332. height: math.unit(12, "feet")
  4333. },
  4334. {
  4335. name: "Macro",
  4336. height: math.unit(279, "feet"),
  4337. default: true
  4338. }
  4339. ]
  4340. ))
  4341. characterMakers.push(() => makeCharacter(
  4342. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4343. {
  4344. femSfw: {
  4345. height: math.unit(8, "feet"),
  4346. weight: math.unit(350, "lb"),
  4347. name: "Fem",
  4348. image: {
  4349. source: "./media/characters/sigvald/fem-sfw.svg",
  4350. extra: 182 / 164,
  4351. bottom: 8.7 / 190.5
  4352. }
  4353. },
  4354. femNsfw: {
  4355. height: math.unit(8, "feet"),
  4356. weight: math.unit(350, "lb"),
  4357. name: "Fem (NSFW)",
  4358. image: {
  4359. source: "./media/characters/sigvald/fem-nsfw.svg",
  4360. extra: 182 / 164,
  4361. bottom: 8.7 / 190.5
  4362. }
  4363. },
  4364. maleNsfw: {
  4365. height: math.unit(8, "feet"),
  4366. weight: math.unit(350, "lb"),
  4367. name: "Male (NSFW)",
  4368. image: {
  4369. source: "./media/characters/sigvald/male-nsfw.svg",
  4370. extra: 182 / 164,
  4371. bottom: 8.7 / 190.5
  4372. }
  4373. },
  4374. hermNsfw: {
  4375. height: math.unit(8, "feet"),
  4376. weight: math.unit(350, "lb"),
  4377. name: "Herm (NSFW)",
  4378. image: {
  4379. source: "./media/characters/sigvald/herm-nsfw.svg",
  4380. extra: 182 / 164,
  4381. bottom: 8.7 / 190.5
  4382. }
  4383. },
  4384. dick: {
  4385. height: math.unit(2.36, "feet"),
  4386. name: "Dick",
  4387. image: {
  4388. source: "./media/characters/sigvald/dick.svg"
  4389. }
  4390. },
  4391. eye: {
  4392. height: math.unit(0.31, "feet"),
  4393. name: "Eye",
  4394. image: {
  4395. source: "./media/characters/sigvald/eye.svg"
  4396. }
  4397. },
  4398. mouth: {
  4399. height: math.unit(0.92, "feet"),
  4400. name: "Mouth",
  4401. image: {
  4402. source: "./media/characters/sigvald/mouth.svg"
  4403. }
  4404. },
  4405. paws: {
  4406. height: math.unit(2.2, "feet"),
  4407. name: "Paws",
  4408. image: {
  4409. source: "./media/characters/sigvald/paws.svg"
  4410. }
  4411. }
  4412. },
  4413. [
  4414. {
  4415. name: "Normal",
  4416. height: math.unit(8, "feet")
  4417. },
  4418. {
  4419. name: "Large",
  4420. height: math.unit(12, "feet")
  4421. },
  4422. {
  4423. name: "Larger",
  4424. height: math.unit(20, "feet")
  4425. },
  4426. {
  4427. name: "Macro",
  4428. height: math.unit(150, "feet")
  4429. },
  4430. {
  4431. name: "Macro+",
  4432. height: math.unit(200, "feet"),
  4433. default: true
  4434. },
  4435. ]
  4436. ))
  4437. characterMakers.push(() => makeCharacter(
  4438. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4439. {
  4440. side: {
  4441. height: math.unit(12, "feet"),
  4442. weight: math.unit(2000, "kg"),
  4443. name: "Side",
  4444. image: {
  4445. source: "./media/characters/scott/side.svg",
  4446. extra: 754 / 724,
  4447. bottom: 0.069
  4448. }
  4449. },
  4450. upright: {
  4451. height: math.unit(12, "feet"),
  4452. weight: math.unit(2000, "kg"),
  4453. name: "Upright",
  4454. image: {
  4455. source: "./media/characters/scott/upright.svg",
  4456. extra: 3881 / 3722,
  4457. bottom: 0.05
  4458. }
  4459. },
  4460. },
  4461. [
  4462. {
  4463. name: "Normal",
  4464. height: math.unit(12, "feet"),
  4465. default: true
  4466. },
  4467. ]
  4468. ))
  4469. characterMakers.push(() => makeCharacter(
  4470. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4471. {
  4472. side: {
  4473. height: math.unit(8, "meters"),
  4474. weight: math.unit(84755, "lbs"),
  4475. name: "Side",
  4476. image: {
  4477. source: "./media/characters/tobias/side.svg",
  4478. extra: 1474 / 1096,
  4479. bottom: 38.9 / 1513.1235
  4480. }
  4481. },
  4482. },
  4483. [
  4484. {
  4485. name: "Normal",
  4486. height: math.unit(8, "meters"),
  4487. default: true
  4488. },
  4489. ]
  4490. ))
  4491. characterMakers.push(() => makeCharacter(
  4492. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4493. {
  4494. front: {
  4495. height: math.unit(5.5, "feet"),
  4496. weight: math.unit(400, "lbs"),
  4497. name: "Front",
  4498. image: {
  4499. source: "./media/characters/kieran/front.svg",
  4500. extra: 2694 / 2364,
  4501. bottom: 217 / 2908
  4502. }
  4503. },
  4504. side: {
  4505. height: math.unit(5.5, "feet"),
  4506. weight: math.unit(400, "lbs"),
  4507. name: "Side",
  4508. image: {
  4509. source: "./media/characters/kieran/side.svg",
  4510. extra: 875 / 777,
  4511. bottom: 84.6 / 959
  4512. }
  4513. },
  4514. },
  4515. [
  4516. {
  4517. name: "Normal",
  4518. height: math.unit(5.5, "feet"),
  4519. default: true
  4520. },
  4521. ]
  4522. ))
  4523. characterMakers.push(() => makeCharacter(
  4524. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4525. {
  4526. side: {
  4527. height: math.unit(2, "meters"),
  4528. weight: math.unit(70, "kg"),
  4529. name: "Side",
  4530. image: {
  4531. source: "./media/characters/sanya/side.svg",
  4532. bottom: 0.02,
  4533. extra: 1.02
  4534. }
  4535. },
  4536. },
  4537. [
  4538. {
  4539. name: "Small",
  4540. height: math.unit(2, "meters")
  4541. },
  4542. {
  4543. name: "Normal",
  4544. height: math.unit(3, "meters")
  4545. },
  4546. {
  4547. name: "Macro",
  4548. height: math.unit(16, "meters"),
  4549. default: true
  4550. },
  4551. ]
  4552. ))
  4553. characterMakers.push(() => makeCharacter(
  4554. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4555. {
  4556. front: {
  4557. height: math.unit(2, "meters"),
  4558. weight: math.unit(120, "kg"),
  4559. name: "Front",
  4560. image: {
  4561. source: "./media/characters/miranda/front.svg",
  4562. extra: 195 / 185,
  4563. bottom: 10.9 / 206.5
  4564. }
  4565. },
  4566. back: {
  4567. height: math.unit(2, "meters"),
  4568. weight: math.unit(120, "kg"),
  4569. name: "Back",
  4570. image: {
  4571. source: "./media/characters/miranda/back.svg",
  4572. extra: 201 / 193,
  4573. bottom: 2.3 / 203.7
  4574. }
  4575. },
  4576. },
  4577. [
  4578. {
  4579. name: "Normal",
  4580. height: math.unit(10, "feet"),
  4581. default: true
  4582. }
  4583. ]
  4584. ))
  4585. characterMakers.push(() => makeCharacter(
  4586. { name: "James", species: ["deer"], tags: ["anthro"] },
  4587. {
  4588. side: {
  4589. height: math.unit(2, "meters"),
  4590. weight: math.unit(100, "kg"),
  4591. name: "Front",
  4592. image: {
  4593. source: "./media/characters/james/front.svg",
  4594. extra: 10 / 8.5
  4595. }
  4596. },
  4597. },
  4598. [
  4599. {
  4600. name: "Normal",
  4601. height: math.unit(8.5, "feet"),
  4602. default: true
  4603. }
  4604. ]
  4605. ))
  4606. characterMakers.push(() => makeCharacter(
  4607. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4608. {
  4609. side: {
  4610. height: math.unit(9.5, "feet"),
  4611. weight: math.unit(2500, "lbs"),
  4612. name: "Side",
  4613. image: {
  4614. source: "./media/characters/heather/side.svg"
  4615. }
  4616. },
  4617. },
  4618. [
  4619. {
  4620. name: "Normal",
  4621. height: math.unit(9.5, "feet"),
  4622. default: true
  4623. }
  4624. ]
  4625. ))
  4626. characterMakers.push(() => makeCharacter(
  4627. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4628. {
  4629. side: {
  4630. height: math.unit(6.5, "feet"),
  4631. weight: math.unit(400, "lbs"),
  4632. name: "Side",
  4633. image: {
  4634. source: "./media/characters/lukas/side.svg",
  4635. extra: 7.25 / 6.5
  4636. }
  4637. },
  4638. },
  4639. [
  4640. {
  4641. name: "Normal",
  4642. height: math.unit(6.5, "feet"),
  4643. default: true
  4644. }
  4645. ]
  4646. ))
  4647. characterMakers.push(() => makeCharacter(
  4648. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4649. {
  4650. side: {
  4651. height: math.unit(5, "feet"),
  4652. weight: math.unit(3000, "lbs"),
  4653. name: "Side",
  4654. image: {
  4655. source: "./media/characters/louise/side.svg"
  4656. }
  4657. },
  4658. },
  4659. [
  4660. {
  4661. name: "Normal",
  4662. height: math.unit(5, "feet"),
  4663. default: true
  4664. }
  4665. ]
  4666. ))
  4667. characterMakers.push(() => makeCharacter(
  4668. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4669. {
  4670. side: {
  4671. height: math.unit(6, "feet"),
  4672. weight: math.unit(150, "lbs"),
  4673. name: "Side",
  4674. image: {
  4675. source: "./media/characters/ramona/side.svg"
  4676. }
  4677. },
  4678. },
  4679. [
  4680. {
  4681. name: "Normal",
  4682. height: math.unit(5.3, "meters"),
  4683. default: true
  4684. },
  4685. {
  4686. name: "Macro",
  4687. height: math.unit(20, "stories")
  4688. },
  4689. {
  4690. name: "Macro+",
  4691. height: math.unit(50, "stories")
  4692. },
  4693. ]
  4694. ))
  4695. characterMakers.push(() => makeCharacter(
  4696. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4697. {
  4698. standing: {
  4699. height: math.unit(5.75, "feet"),
  4700. weight: math.unit(160, "lbs"),
  4701. name: "Standing",
  4702. image: {
  4703. source: "./media/characters/deerpuff/standing.svg",
  4704. extra: 682 / 624
  4705. }
  4706. },
  4707. sitting: {
  4708. height: math.unit(5.75 / 1.79, "feet"),
  4709. weight: math.unit(160, "lbs"),
  4710. name: "Sitting",
  4711. image: {
  4712. source: "./media/characters/deerpuff/sitting.svg",
  4713. bottom: 44 / 400,
  4714. extra: 1
  4715. }
  4716. },
  4717. taurLaying: {
  4718. height: math.unit(6, "feet"),
  4719. weight: math.unit(400, "lbs"),
  4720. name: "Taur (Laying)",
  4721. image: {
  4722. source: "./media/characters/deerpuff/taur-laying.svg"
  4723. }
  4724. },
  4725. },
  4726. [
  4727. {
  4728. name: "Puffball",
  4729. height: math.unit(6, "inches")
  4730. },
  4731. {
  4732. name: "Normalpuff",
  4733. height: math.unit(5.75, "feet")
  4734. },
  4735. {
  4736. name: "Macropuff",
  4737. height: math.unit(1500, "feet"),
  4738. default: true
  4739. },
  4740. {
  4741. name: "Megapuff",
  4742. height: math.unit(500, "miles")
  4743. },
  4744. {
  4745. name: "Gigapuff",
  4746. height: math.unit(250000, "miles")
  4747. },
  4748. {
  4749. name: "Omegapuff",
  4750. height: math.unit(1000, "lightyears")
  4751. },
  4752. ]
  4753. ))
  4754. characterMakers.push(() => makeCharacter(
  4755. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4756. {
  4757. stomping: {
  4758. height: math.unit(6, "feet"),
  4759. weight: math.unit(170, "lbs"),
  4760. name: "Stomping",
  4761. image: {
  4762. source: "./media/characters/vivian/stomping.svg"
  4763. }
  4764. },
  4765. sitting: {
  4766. height: math.unit(6 / 1.75, "feet"),
  4767. weight: math.unit(170, "lbs"),
  4768. name: "Sitting",
  4769. image: {
  4770. source: "./media/characters/vivian/sitting.svg",
  4771. bottom: 1 / 6.4,
  4772. extra: 1,
  4773. }
  4774. },
  4775. },
  4776. [
  4777. {
  4778. name: "Normal",
  4779. height: math.unit(7, "feet"),
  4780. default: true
  4781. },
  4782. {
  4783. name: "Macro",
  4784. height: math.unit(10, "stories")
  4785. },
  4786. {
  4787. name: "Macro+",
  4788. height: math.unit(30, "stories")
  4789. },
  4790. {
  4791. name: "Megamacro",
  4792. height: math.unit(10, "miles")
  4793. },
  4794. {
  4795. name: "Megamacro+",
  4796. height: math.unit(2750000, "meters")
  4797. },
  4798. ]
  4799. ))
  4800. characterMakers.push(() => makeCharacter(
  4801. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4802. {
  4803. front: {
  4804. height: math.unit(6, "feet"),
  4805. weight: math.unit(160, "lbs"),
  4806. name: "Front",
  4807. image: {
  4808. source: "./media/characters/prince/front.svg",
  4809. extra: 3400 / 3000
  4810. }
  4811. },
  4812. jumping: {
  4813. height: math.unit(6, "feet"),
  4814. weight: math.unit(160, "lbs"),
  4815. name: "Jumping",
  4816. image: {
  4817. source: "./media/characters/prince/jump.svg",
  4818. extra: 2555 / 2134
  4819. }
  4820. },
  4821. },
  4822. [
  4823. {
  4824. name: "Normal",
  4825. height: math.unit(7.75, "feet"),
  4826. default: true
  4827. },
  4828. {
  4829. name: "Not cute",
  4830. height: math.unit(17, "feet")
  4831. },
  4832. {
  4833. name: "I said NOT",
  4834. height: math.unit(91, "feet")
  4835. },
  4836. {
  4837. name: "Please stop",
  4838. height: math.unit(560, "feet")
  4839. },
  4840. {
  4841. name: "What have you done",
  4842. height: math.unit(2200, "feet")
  4843. },
  4844. {
  4845. name: "Deer God",
  4846. height: math.unit(3.6, "miles")
  4847. },
  4848. ]
  4849. ))
  4850. characterMakers.push(() => makeCharacter(
  4851. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4852. {
  4853. standing: {
  4854. height: math.unit(6, "feet"),
  4855. weight: math.unit(300, "lbs"),
  4856. name: "Standing",
  4857. image: {
  4858. source: "./media/characters/psymon/standing.svg",
  4859. extra: 1888 / 1810,
  4860. bottom: 0.05
  4861. }
  4862. },
  4863. slithering: {
  4864. height: math.unit(6, "feet"),
  4865. weight: math.unit(300, "lbs"),
  4866. name: "Slithering",
  4867. image: {
  4868. source: "./media/characters/psymon/slithering.svg",
  4869. extra: 1330 / 1224
  4870. }
  4871. },
  4872. slitheringAlt: {
  4873. height: math.unit(6, "feet"),
  4874. weight: math.unit(300, "lbs"),
  4875. name: "Slithering (Alt)",
  4876. image: {
  4877. source: "./media/characters/psymon/slithering-alt.svg",
  4878. extra: 1330 / 1224
  4879. }
  4880. },
  4881. },
  4882. [
  4883. {
  4884. name: "Normal",
  4885. height: math.unit(11.25, "feet"),
  4886. default: true
  4887. },
  4888. {
  4889. name: "Large",
  4890. height: math.unit(27, "feet")
  4891. },
  4892. {
  4893. name: "Giant",
  4894. height: math.unit(87, "feet")
  4895. },
  4896. {
  4897. name: "Macro",
  4898. height: math.unit(365, "feet")
  4899. },
  4900. {
  4901. name: "Megamacro",
  4902. height: math.unit(3, "miles")
  4903. },
  4904. {
  4905. name: "World Serpent",
  4906. height: math.unit(8000, "miles")
  4907. },
  4908. ]
  4909. ))
  4910. characterMakers.push(() => makeCharacter(
  4911. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4912. {
  4913. front: {
  4914. height: math.unit(6, "feet"),
  4915. weight: math.unit(180, "lbs"),
  4916. name: "Front",
  4917. image: {
  4918. source: "./media/characters/daimos/front.svg",
  4919. extra: 4160 / 3897,
  4920. bottom: 0.021
  4921. }
  4922. }
  4923. },
  4924. [
  4925. {
  4926. name: "Normal",
  4927. height: math.unit(8, "feet"),
  4928. default: true
  4929. },
  4930. {
  4931. name: "Big Dog",
  4932. height: math.unit(22, "feet")
  4933. },
  4934. {
  4935. name: "Macro",
  4936. height: math.unit(127, "feet")
  4937. },
  4938. {
  4939. name: "Megamacro",
  4940. height: math.unit(3600, "feet")
  4941. },
  4942. ]
  4943. ))
  4944. characterMakers.push(() => makeCharacter(
  4945. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4946. {
  4947. side: {
  4948. height: math.unit(6, "feet"),
  4949. weight: math.unit(180, "lbs"),
  4950. name: "Side",
  4951. image: {
  4952. source: "./media/characters/blake/side.svg",
  4953. extra: 1212 / 1120,
  4954. bottom: 0.05
  4955. }
  4956. },
  4957. crouched: {
  4958. height: math.unit(6 * 0.57, "feet"),
  4959. weight: math.unit(180, "lbs"),
  4960. name: "Crouched",
  4961. image: {
  4962. source: "./media/characters/blake/crouched.svg",
  4963. extra: 840 / 587,
  4964. bottom: 0.04
  4965. }
  4966. },
  4967. bent: {
  4968. height: math.unit(6 * 0.75, "feet"),
  4969. weight: math.unit(180, "lbs"),
  4970. name: "Bent",
  4971. image: {
  4972. source: "./media/characters/blake/bent.svg",
  4973. extra: 592 / 544,
  4974. bottom: 0.035
  4975. }
  4976. },
  4977. },
  4978. [
  4979. {
  4980. name: "Normal",
  4981. height: math.unit(8 + 1 / 6, "feet"),
  4982. default: true
  4983. },
  4984. {
  4985. name: "Big Backside",
  4986. height: math.unit(37, "feet")
  4987. },
  4988. {
  4989. name: "Subway Shredder",
  4990. height: math.unit(72, "feet")
  4991. },
  4992. {
  4993. name: "City Carver",
  4994. height: math.unit(1675, "feet")
  4995. },
  4996. {
  4997. name: "Tectonic Tweaker",
  4998. height: math.unit(2300, "miles")
  4999. },
  5000. ]
  5001. ))
  5002. characterMakers.push(() => makeCharacter(
  5003. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5004. {
  5005. front: {
  5006. height: math.unit(6, "feet"),
  5007. weight: math.unit(180, "lbs"),
  5008. name: "Front",
  5009. image: {
  5010. source: "./media/characters/guisetto/front.svg",
  5011. extra: 856 / 817,
  5012. bottom: 0.06
  5013. }
  5014. },
  5015. airborne: {
  5016. height: math.unit(6, "feet"),
  5017. weight: math.unit(180, "lbs"),
  5018. name: "Airborne",
  5019. image: {
  5020. source: "./media/characters/guisetto/airborne.svg",
  5021. extra: 584 / 525
  5022. }
  5023. },
  5024. },
  5025. [
  5026. {
  5027. name: "Normal",
  5028. height: math.unit(10 + 11 / 12, "feet"),
  5029. default: true
  5030. },
  5031. {
  5032. name: "Large",
  5033. height: math.unit(35, "feet")
  5034. },
  5035. {
  5036. name: "Macro",
  5037. height: math.unit(475, "feet")
  5038. },
  5039. ]
  5040. ))
  5041. characterMakers.push(() => makeCharacter(
  5042. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5043. {
  5044. front: {
  5045. height: math.unit(6, "feet"),
  5046. weight: math.unit(180, "lbs"),
  5047. name: "Front",
  5048. image: {
  5049. source: "./media/characters/luxor/front.svg",
  5050. extra: 2940 / 2152
  5051. }
  5052. },
  5053. back: {
  5054. height: math.unit(6, "feet"),
  5055. weight: math.unit(180, "lbs"),
  5056. name: "Back",
  5057. image: {
  5058. source: "./media/characters/luxor/back.svg",
  5059. extra: 1083 / 960
  5060. }
  5061. },
  5062. },
  5063. [
  5064. {
  5065. name: "Normal",
  5066. height: math.unit(5 + 5 / 6, "feet"),
  5067. default: true
  5068. },
  5069. {
  5070. name: "Lamp",
  5071. height: math.unit(50, "feet")
  5072. },
  5073. {
  5074. name: "Lämp",
  5075. height: math.unit(300, "feet")
  5076. },
  5077. {
  5078. name: "The sun is a lamp",
  5079. height: math.unit(250000, "miles")
  5080. },
  5081. ]
  5082. ))
  5083. characterMakers.push(() => makeCharacter(
  5084. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5085. {
  5086. front: {
  5087. height: math.unit(6, "feet"),
  5088. weight: math.unit(50, "lbs"),
  5089. name: "Front",
  5090. image: {
  5091. source: "./media/characters/huoyan/front.svg"
  5092. }
  5093. },
  5094. side: {
  5095. height: math.unit(6, "feet"),
  5096. weight: math.unit(180, "lbs"),
  5097. name: "Side",
  5098. image: {
  5099. source: "./media/characters/huoyan/side.svg"
  5100. }
  5101. },
  5102. },
  5103. [
  5104. {
  5105. name: "Chef",
  5106. height: math.unit(9, "feet")
  5107. },
  5108. {
  5109. name: "Normal",
  5110. height: math.unit(65, "feet"),
  5111. default: true
  5112. },
  5113. {
  5114. name: "Macro",
  5115. height: math.unit(780, "feet")
  5116. },
  5117. {
  5118. name: "Flaming Mountain",
  5119. height: math.unit(4.8, "miles")
  5120. },
  5121. {
  5122. name: "Celestial",
  5123. height: math.unit(765000, "miles")
  5124. },
  5125. ]
  5126. ))
  5127. characterMakers.push(() => makeCharacter(
  5128. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5129. {
  5130. front: {
  5131. height: math.unit(5 + 3 / 4, "feet"),
  5132. weight: math.unit(120, "lbs"),
  5133. name: "Front",
  5134. image: {
  5135. source: "./media/characters/tails/front.svg"
  5136. }
  5137. }
  5138. },
  5139. [
  5140. {
  5141. name: "Normal",
  5142. height: math.unit(5 + 3 / 4, "feet"),
  5143. default: true
  5144. }
  5145. ]
  5146. ))
  5147. characterMakers.push(() => makeCharacter(
  5148. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5149. {
  5150. front: {
  5151. height: math.unit(4, "feet"),
  5152. weight: math.unit(50, "lbs"),
  5153. name: "Front",
  5154. image: {
  5155. source: "./media/characters/rainy/front.svg"
  5156. }
  5157. }
  5158. },
  5159. [
  5160. {
  5161. name: "Macro",
  5162. height: math.unit(800, "feet"),
  5163. default: true
  5164. }
  5165. ]
  5166. ))
  5167. characterMakers.push(() => makeCharacter(
  5168. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5169. {
  5170. front: {
  5171. height: math.unit(6, "feet"),
  5172. weight: math.unit(150, "lbs"),
  5173. name: "Front",
  5174. image: {
  5175. source: "./media/characters/rainier/front.svg"
  5176. }
  5177. }
  5178. },
  5179. [
  5180. {
  5181. name: "Micro",
  5182. height: math.unit(2, "mm"),
  5183. default: true
  5184. }
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5189. {
  5190. front: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(180, "lbs"),
  5193. name: "Front",
  5194. image: {
  5195. source: "./media/characters/andy/front.svg"
  5196. }
  5197. }
  5198. },
  5199. [
  5200. {
  5201. name: "Normal",
  5202. height: math.unit(8, "feet"),
  5203. default: true
  5204. },
  5205. {
  5206. name: "Macro",
  5207. height: math.unit(1000, "feet")
  5208. },
  5209. {
  5210. name: "Megamacro",
  5211. height: math.unit(5, "miles")
  5212. },
  5213. {
  5214. name: "Gigamacro",
  5215. height: math.unit(5000, "miles")
  5216. },
  5217. ]
  5218. ))
  5219. characterMakers.push(() => makeCharacter(
  5220. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5221. {
  5222. front: {
  5223. height: math.unit(6, "feet"),
  5224. weight: math.unit(210, "lbs"),
  5225. name: "Front",
  5226. image: {
  5227. source: "./media/characters/cimmaron/front-sfw.svg",
  5228. extra: 701 / 676,
  5229. bottom: 0.046
  5230. }
  5231. },
  5232. back: {
  5233. height: math.unit(6, "feet"),
  5234. weight: math.unit(210, "lbs"),
  5235. name: "Back",
  5236. image: {
  5237. source: "./media/characters/cimmaron/back-sfw.svg",
  5238. extra: 701 / 676,
  5239. bottom: 0.046
  5240. }
  5241. },
  5242. frontNsfw: {
  5243. height: math.unit(6, "feet"),
  5244. weight: math.unit(210, "lbs"),
  5245. name: "Front (NSFW)",
  5246. image: {
  5247. source: "./media/characters/cimmaron/front-nsfw.svg",
  5248. extra: 701 / 676,
  5249. bottom: 0.046
  5250. }
  5251. },
  5252. backNsfw: {
  5253. height: math.unit(6, "feet"),
  5254. weight: math.unit(210, "lbs"),
  5255. name: "Back (NSFW)",
  5256. image: {
  5257. source: "./media/characters/cimmaron/back-nsfw.svg",
  5258. extra: 701 / 676,
  5259. bottom: 0.046
  5260. }
  5261. },
  5262. dick: {
  5263. height: math.unit(1.714, "feet"),
  5264. name: "Dick",
  5265. image: {
  5266. source: "./media/characters/cimmaron/dick.svg"
  5267. }
  5268. },
  5269. },
  5270. [
  5271. {
  5272. name: "Normal",
  5273. height: math.unit(6, "feet"),
  5274. default: true
  5275. },
  5276. {
  5277. name: "Macro Mayor",
  5278. height: math.unit(350, "meters")
  5279. },
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5284. {
  5285. front: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(200, "lbs"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/akari/front.svg",
  5291. extra: 962 / 901,
  5292. bottom: 0.04
  5293. }
  5294. }
  5295. },
  5296. [
  5297. {
  5298. name: "Micro",
  5299. height: math.unit(5, "inches"),
  5300. default: true
  5301. },
  5302. {
  5303. name: "Normal",
  5304. height: math.unit(7, "feet")
  5305. },
  5306. ]
  5307. ))
  5308. characterMakers.push(() => makeCharacter(
  5309. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5310. {
  5311. front: {
  5312. height: math.unit(6, "feet"),
  5313. weight: math.unit(140, "lbs"),
  5314. name: "Front",
  5315. image: {
  5316. source: "./media/characters/cynosura/front.svg",
  5317. extra: 896 / 847
  5318. }
  5319. },
  5320. back: {
  5321. height: math.unit(6, "feet"),
  5322. weight: math.unit(140, "lbs"),
  5323. name: "Back",
  5324. image: {
  5325. source: "./media/characters/cynosura/back.svg",
  5326. extra: 1365 / 1250
  5327. }
  5328. },
  5329. },
  5330. [
  5331. {
  5332. name: "Micro",
  5333. height: math.unit(4, "inches")
  5334. },
  5335. {
  5336. name: "Normal",
  5337. height: math.unit(5.75, "feet"),
  5338. default: true
  5339. },
  5340. {
  5341. name: "Tall",
  5342. height: math.unit(10, "feet")
  5343. },
  5344. {
  5345. name: "Big",
  5346. height: math.unit(20, "feet")
  5347. },
  5348. {
  5349. name: "Macro",
  5350. height: math.unit(50, "feet")
  5351. },
  5352. ]
  5353. ))
  5354. characterMakers.push(() => makeCharacter(
  5355. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5356. {
  5357. front: {
  5358. height: math.unit(6, "feet"),
  5359. weight: math.unit(170, "lbs"),
  5360. name: "Front",
  5361. image: {
  5362. source: "./media/characters/gin/front.svg",
  5363. extra: 1.053,
  5364. bottom: 0.025
  5365. }
  5366. },
  5367. foot: {
  5368. height: math.unit(6 / 4.25, "feet"),
  5369. name: "Foot",
  5370. image: {
  5371. source: "./media/characters/gin/foot.svg"
  5372. }
  5373. },
  5374. sole: {
  5375. height: math.unit(6 / 4.40, "feet"),
  5376. name: "Sole",
  5377. image: {
  5378. source: "./media/characters/gin/sole.svg"
  5379. }
  5380. },
  5381. },
  5382. [
  5383. {
  5384. name: "Normal",
  5385. height: math.unit(13 + 2 / 12, "feet")
  5386. },
  5387. {
  5388. name: "Macro",
  5389. height: math.unit(1500, "feet")
  5390. },
  5391. {
  5392. name: "Megamacro",
  5393. height: math.unit(200, "miles"),
  5394. default: true
  5395. },
  5396. {
  5397. name: "Gigamacro",
  5398. height: math.unit(500, "megameters")
  5399. },
  5400. {
  5401. name: "Teramacro",
  5402. height: math.unit(15, "lightyears")
  5403. }
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5408. {
  5409. front: {
  5410. height: math.unit(6 + 1 / 6, "feet"),
  5411. weight: math.unit(178, "lbs"),
  5412. name: "Front",
  5413. image: {
  5414. source: "./media/characters/guy/front.svg"
  5415. }
  5416. }
  5417. },
  5418. [
  5419. {
  5420. name: "Normal",
  5421. height: math.unit(6 + 1 / 6, "feet"),
  5422. default: true
  5423. },
  5424. {
  5425. name: "Large",
  5426. height: math.unit(25 + 7 / 12, "feet")
  5427. },
  5428. {
  5429. name: "Macro",
  5430. height: math.unit(60 + 9 / 12, "feet")
  5431. },
  5432. {
  5433. name: "Macro+",
  5434. height: math.unit(246, "feet")
  5435. },
  5436. {
  5437. name: "Macro++",
  5438. height: math.unit(878, "feet")
  5439. }
  5440. ]
  5441. ))
  5442. characterMakers.push(() => makeCharacter(
  5443. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5444. {
  5445. front: {
  5446. height: math.unit(9, "feet"),
  5447. weight: math.unit(800, "lbs"),
  5448. name: "Front",
  5449. image: {
  5450. source: "./media/characters/tiberius/front.svg",
  5451. extra: 2295 / 2071
  5452. }
  5453. },
  5454. back: {
  5455. height: math.unit(9, "feet"),
  5456. weight: math.unit(800, "lbs"),
  5457. name: "Back",
  5458. image: {
  5459. source: "./media/characters/tiberius/back.svg",
  5460. extra: 2373 / 2160
  5461. }
  5462. },
  5463. },
  5464. [
  5465. {
  5466. name: "Normal",
  5467. height: math.unit(9, "feet"),
  5468. default: true
  5469. }
  5470. ]
  5471. ))
  5472. characterMakers.push(() => makeCharacter(
  5473. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5474. {
  5475. front: {
  5476. height: math.unit(6, "feet"),
  5477. weight: math.unit(600, "lbs"),
  5478. name: "Front",
  5479. image: {
  5480. source: "./media/characters/surgo/front.svg",
  5481. extra: 3591 / 2227
  5482. }
  5483. },
  5484. back: {
  5485. height: math.unit(6, "feet"),
  5486. weight: math.unit(600, "lbs"),
  5487. name: "Back",
  5488. image: {
  5489. source: "./media/characters/surgo/back.svg",
  5490. extra: 3557 / 2228
  5491. }
  5492. },
  5493. laying: {
  5494. height: math.unit(6 * 0.85, "feet"),
  5495. weight: math.unit(600, "lbs"),
  5496. name: "Laying",
  5497. image: {
  5498. source: "./media/characters/surgo/laying.svg"
  5499. }
  5500. },
  5501. },
  5502. [
  5503. {
  5504. name: "Normal",
  5505. height: math.unit(6, "feet"),
  5506. default: true
  5507. }
  5508. ]
  5509. ))
  5510. characterMakers.push(() => makeCharacter(
  5511. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5512. {
  5513. side: {
  5514. height: math.unit(6, "feet"),
  5515. weight: math.unit(150, "lbs"),
  5516. name: "Side",
  5517. image: {
  5518. source: "./media/characters/cibus/side.svg",
  5519. extra: 800 / 400
  5520. }
  5521. },
  5522. },
  5523. [
  5524. {
  5525. name: "Normal",
  5526. height: math.unit(6, "feet"),
  5527. default: true
  5528. }
  5529. ]
  5530. ))
  5531. characterMakers.push(() => makeCharacter(
  5532. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5533. {
  5534. front: {
  5535. height: math.unit(6, "feet"),
  5536. weight: math.unit(240, "lbs"),
  5537. name: "Front",
  5538. image: {
  5539. source: "./media/characters/nibbles/front.svg"
  5540. }
  5541. },
  5542. side: {
  5543. height: math.unit(6, "feet"),
  5544. weight: math.unit(240, "lbs"),
  5545. name: "Side",
  5546. image: {
  5547. source: "./media/characters/nibbles/side.svg"
  5548. }
  5549. },
  5550. },
  5551. [
  5552. {
  5553. name: "Normal",
  5554. height: math.unit(9, "feet"),
  5555. default: true
  5556. }
  5557. ]
  5558. ))
  5559. characterMakers.push(() => makeCharacter(
  5560. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5561. {
  5562. side: {
  5563. height: math.unit(5 + 1 / 6, "feet"),
  5564. weight: math.unit(130, "lbs"),
  5565. name: "Side",
  5566. image: {
  5567. source: "./media/characters/rikky/side.svg",
  5568. extra: 851 / 801
  5569. }
  5570. },
  5571. },
  5572. [
  5573. {
  5574. name: "Normal",
  5575. height: math.unit(5 + 1 / 6, "feet")
  5576. },
  5577. {
  5578. name: "Macro",
  5579. height: math.unit(152, "feet"),
  5580. default: true
  5581. },
  5582. {
  5583. name: "Megamacro",
  5584. height: math.unit(7, "miles")
  5585. }
  5586. ]
  5587. ))
  5588. characterMakers.push(() => makeCharacter(
  5589. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5590. {
  5591. side: {
  5592. height: math.unit(370, "cm"),
  5593. weight: math.unit(350, "lbs"),
  5594. name: "Side",
  5595. image: {
  5596. source: "./media/characters/malfressa/side.svg"
  5597. }
  5598. },
  5599. walking: {
  5600. height: math.unit(370, "cm"),
  5601. weight: math.unit(350, "lbs"),
  5602. name: "Walking",
  5603. image: {
  5604. source: "./media/characters/malfressa/walking.svg"
  5605. }
  5606. },
  5607. feral: {
  5608. height: math.unit(2500, "cm"),
  5609. weight: math.unit(100000, "lbs"),
  5610. name: "Feral",
  5611. image: {
  5612. source: "./media/characters/malfressa/feral.svg",
  5613. extra: 2108 / 837,
  5614. bottom: 0.02
  5615. }
  5616. },
  5617. },
  5618. [
  5619. {
  5620. name: "Normal",
  5621. height: math.unit(370, "cm")
  5622. },
  5623. {
  5624. name: "Macro",
  5625. height: math.unit(300, "meters"),
  5626. default: true
  5627. }
  5628. ]
  5629. ))
  5630. characterMakers.push(() => makeCharacter(
  5631. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5632. {
  5633. front: {
  5634. height: math.unit(6, "feet"),
  5635. weight: math.unit(60, "kg"),
  5636. name: "Front",
  5637. image: {
  5638. source: "./media/characters/jaro/front.svg"
  5639. }
  5640. },
  5641. back: {
  5642. height: math.unit(6, "feet"),
  5643. weight: math.unit(60, "kg"),
  5644. name: "Back",
  5645. image: {
  5646. source: "./media/characters/jaro/back.svg"
  5647. }
  5648. },
  5649. },
  5650. [
  5651. {
  5652. name: "Micro",
  5653. height: math.unit(7, "inches")
  5654. },
  5655. {
  5656. name: "Normal",
  5657. height: math.unit(5.5, "feet"),
  5658. default: true
  5659. },
  5660. {
  5661. name: "Minimacro",
  5662. height: math.unit(20, "feet")
  5663. },
  5664. {
  5665. name: "Macro",
  5666. height: math.unit(200, "meters")
  5667. }
  5668. ]
  5669. ))
  5670. characterMakers.push(() => makeCharacter(
  5671. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5672. {
  5673. front: {
  5674. height: math.unit(6, "feet"),
  5675. weight: math.unit(195, "lb"),
  5676. name: "Front",
  5677. image: {
  5678. source: "./media/characters/rogue/front.svg"
  5679. }
  5680. },
  5681. },
  5682. [
  5683. {
  5684. name: "Macro",
  5685. height: math.unit(90, "feet"),
  5686. default: true
  5687. },
  5688. ]
  5689. ))
  5690. characterMakers.push(() => makeCharacter(
  5691. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5692. {
  5693. front: {
  5694. height: math.unit(5 + 8 / 12, "feet"),
  5695. weight: math.unit(140, "lb"),
  5696. name: "Front",
  5697. image: {
  5698. source: "./media/characters/piper/front.svg",
  5699. extra: 3928 / 3681
  5700. }
  5701. },
  5702. },
  5703. [
  5704. {
  5705. name: "Micro",
  5706. height: math.unit(2, "inches")
  5707. },
  5708. {
  5709. name: "Normal",
  5710. height: math.unit(5 + 8 / 12, "feet")
  5711. },
  5712. {
  5713. name: "Macro",
  5714. height: math.unit(250, "feet"),
  5715. default: true
  5716. },
  5717. {
  5718. name: "Megamacro",
  5719. height: math.unit(7, "miles")
  5720. },
  5721. ]
  5722. ))
  5723. characterMakers.push(() => makeCharacter(
  5724. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5725. {
  5726. front: {
  5727. height: math.unit(6, "feet"),
  5728. weight: math.unit(220, "lb"),
  5729. name: "Front",
  5730. image: {
  5731. source: "./media/characters/gemini/front.svg"
  5732. }
  5733. },
  5734. back: {
  5735. height: math.unit(6, "feet"),
  5736. weight: math.unit(220, "lb"),
  5737. name: "Back",
  5738. image: {
  5739. source: "./media/characters/gemini/back.svg"
  5740. }
  5741. },
  5742. kneeling: {
  5743. height: math.unit(6 / 1.5, "feet"),
  5744. weight: math.unit(220, "lb"),
  5745. name: "Kneeling",
  5746. image: {
  5747. source: "./media/characters/gemini/kneeling.svg",
  5748. bottom: 0.02
  5749. }
  5750. },
  5751. },
  5752. [
  5753. {
  5754. name: "Macro",
  5755. height: math.unit(300, "meters"),
  5756. default: true
  5757. },
  5758. {
  5759. name: "Megamacro",
  5760. height: math.unit(6900, "meters")
  5761. },
  5762. ]
  5763. ))
  5764. characterMakers.push(() => makeCharacter(
  5765. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5766. {
  5767. anthro: {
  5768. height: math.unit(2.35, "meters"),
  5769. weight: math.unit(73, "kg"),
  5770. name: "Anthro",
  5771. image: {
  5772. source: "./media/characters/alicia/anthro.svg",
  5773. extra: 2571 / 2385,
  5774. bottom: 75 / 2648
  5775. }
  5776. },
  5777. paw: {
  5778. height: math.unit(1.32, "feet"),
  5779. name: "Paw",
  5780. image: {
  5781. source: "./media/characters/alicia/paw.svg"
  5782. }
  5783. },
  5784. feral: {
  5785. height: math.unit(1.69, "meters"),
  5786. weight: math.unit(73, "kg"),
  5787. name: "Feral",
  5788. image: {
  5789. source: "./media/characters/alicia/feral.svg",
  5790. extra: 2123 / 1715,
  5791. bottom: 222 / 2349
  5792. }
  5793. },
  5794. },
  5795. [
  5796. {
  5797. name: "Normal",
  5798. height: math.unit(2.35, "meters")
  5799. },
  5800. {
  5801. name: "Macro",
  5802. height: math.unit(60, "meters"),
  5803. default: true
  5804. },
  5805. {
  5806. name: "Megamacro",
  5807. height: math.unit(10000, "kilometers")
  5808. },
  5809. ]
  5810. ))
  5811. characterMakers.push(() => makeCharacter(
  5812. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5813. {
  5814. front: {
  5815. height: math.unit(7, "feet"),
  5816. weight: math.unit(250, "lbs"),
  5817. name: "Front",
  5818. image: {
  5819. source: "./media/characters/archy/front.svg"
  5820. }
  5821. }
  5822. },
  5823. [
  5824. {
  5825. name: "Micro",
  5826. height: math.unit(1, "inch")
  5827. },
  5828. {
  5829. name: "Shorty",
  5830. height: math.unit(5, "feet")
  5831. },
  5832. {
  5833. name: "Normal",
  5834. height: math.unit(7, "feet")
  5835. },
  5836. {
  5837. name: "Macro",
  5838. height: math.unit(600, "meters"),
  5839. default: true
  5840. },
  5841. {
  5842. name: "Megamacro",
  5843. height: math.unit(1, "mile")
  5844. },
  5845. ]
  5846. ))
  5847. characterMakers.push(() => makeCharacter(
  5848. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5849. {
  5850. front: {
  5851. height: math.unit(1.65, "meters"),
  5852. weight: math.unit(74, "kg"),
  5853. name: "Front",
  5854. image: {
  5855. source: "./media/characters/berri/front.svg",
  5856. extra: 857 / 837,
  5857. bottom: 18 / 877
  5858. }
  5859. },
  5860. bum: {
  5861. height: math.unit(1.46, "feet"),
  5862. name: "Bum",
  5863. image: {
  5864. source: "./media/characters/berri/bum.svg"
  5865. }
  5866. },
  5867. mouth: {
  5868. height: math.unit(0.44, "feet"),
  5869. name: "Mouth",
  5870. image: {
  5871. source: "./media/characters/berri/mouth.svg"
  5872. }
  5873. },
  5874. paw: {
  5875. height: math.unit(0.826, "feet"),
  5876. name: "Paw",
  5877. image: {
  5878. source: "./media/characters/berri/paw.svg"
  5879. }
  5880. },
  5881. },
  5882. [
  5883. {
  5884. name: "Normal",
  5885. height: math.unit(1.65, "meters")
  5886. },
  5887. {
  5888. name: "Macro",
  5889. height: math.unit(60, "m"),
  5890. default: true
  5891. },
  5892. {
  5893. name: "Megamacro",
  5894. height: math.unit(9.213, "km")
  5895. },
  5896. {
  5897. name: "Planet Eater",
  5898. height: math.unit(489, "megameters")
  5899. },
  5900. {
  5901. name: "Teramacro",
  5902. height: math.unit(2471635000000, "meters")
  5903. },
  5904. {
  5905. name: "Examacro",
  5906. height: math.unit(8.0624e+26, "meters")
  5907. }
  5908. ]
  5909. ))
  5910. characterMakers.push(() => makeCharacter(
  5911. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5912. {
  5913. front: {
  5914. height: math.unit(1.72, "meters"),
  5915. weight: math.unit(68, "kg"),
  5916. name: "Front",
  5917. image: {
  5918. source: "./media/characters/lexi/front.svg"
  5919. }
  5920. }
  5921. },
  5922. [
  5923. {
  5924. name: "Very Smol",
  5925. height: math.unit(10, "mm")
  5926. },
  5927. {
  5928. name: "Micro",
  5929. height: math.unit(6.8, "cm"),
  5930. default: true
  5931. },
  5932. {
  5933. name: "Normal",
  5934. height: math.unit(1.72, "m")
  5935. }
  5936. ]
  5937. ))
  5938. characterMakers.push(() => makeCharacter(
  5939. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5940. {
  5941. front: {
  5942. height: math.unit(1.69, "meters"),
  5943. weight: math.unit(68, "kg"),
  5944. name: "Front",
  5945. image: {
  5946. source: "./media/characters/martin/front.svg",
  5947. extra: 596 / 581
  5948. }
  5949. }
  5950. },
  5951. [
  5952. {
  5953. name: "Micro",
  5954. height: math.unit(6.85, "cm"),
  5955. default: true
  5956. },
  5957. {
  5958. name: "Normal",
  5959. height: math.unit(1.69, "m")
  5960. }
  5961. ]
  5962. ))
  5963. characterMakers.push(() => makeCharacter(
  5964. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5965. {
  5966. front: {
  5967. height: math.unit(1.69, "meters"),
  5968. weight: math.unit(68, "kg"),
  5969. name: "Front",
  5970. image: {
  5971. source: "./media/characters/juno/front.svg"
  5972. }
  5973. }
  5974. },
  5975. [
  5976. {
  5977. name: "Micro",
  5978. height: math.unit(7, "cm")
  5979. },
  5980. {
  5981. name: "Normal",
  5982. height: math.unit(1.89, "m")
  5983. },
  5984. {
  5985. name: "Macro",
  5986. height: math.unit(353, "meters"),
  5987. default: true
  5988. }
  5989. ]
  5990. ))
  5991. characterMakers.push(() => makeCharacter(
  5992. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5993. {
  5994. front: {
  5995. height: math.unit(1.93, "meters"),
  5996. weight: math.unit(83, "kg"),
  5997. name: "Front",
  5998. image: {
  5999. source: "./media/characters/samantha/front.svg"
  6000. }
  6001. },
  6002. frontClothed: {
  6003. height: math.unit(1.93, "meters"),
  6004. weight: math.unit(83, "kg"),
  6005. name: "Front (Clothed)",
  6006. image: {
  6007. source: "./media/characters/samantha/front-clothed.svg"
  6008. }
  6009. },
  6010. back: {
  6011. height: math.unit(1.93, "meters"),
  6012. weight: math.unit(83, "kg"),
  6013. name: "Back",
  6014. image: {
  6015. source: "./media/characters/samantha/back.svg"
  6016. }
  6017. },
  6018. },
  6019. [
  6020. {
  6021. name: "Normal",
  6022. height: math.unit(1.93, "m")
  6023. },
  6024. {
  6025. name: "Macro",
  6026. height: math.unit(74, "meters"),
  6027. default: true
  6028. },
  6029. {
  6030. name: "Macro+",
  6031. height: math.unit(223, "meters"),
  6032. },
  6033. {
  6034. name: "Megamacro",
  6035. height: math.unit(8381, "meters"),
  6036. },
  6037. {
  6038. name: "Megamacro+",
  6039. height: math.unit(12000, "kilometers")
  6040. },
  6041. ]
  6042. ))
  6043. characterMakers.push(() => makeCharacter(
  6044. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6045. {
  6046. front: {
  6047. height: math.unit(1.92, "meters"),
  6048. weight: math.unit(80, "kg"),
  6049. name: "Front",
  6050. image: {
  6051. source: "./media/characters/dr-clay/front.svg"
  6052. }
  6053. },
  6054. frontClothed: {
  6055. height: math.unit(1.92, "meters"),
  6056. weight: math.unit(80, "kg"),
  6057. name: "Front (Clothed)",
  6058. image: {
  6059. source: "./media/characters/dr-clay/front-clothed.svg"
  6060. }
  6061. }
  6062. },
  6063. [
  6064. {
  6065. name: "Normal",
  6066. height: math.unit(1.92, "m")
  6067. },
  6068. {
  6069. name: "Macro",
  6070. height: math.unit(214, "meters"),
  6071. default: true
  6072. },
  6073. {
  6074. name: "Macro+",
  6075. height: math.unit(12.237, "meters"),
  6076. },
  6077. {
  6078. name: "Megamacro",
  6079. height: math.unit(557, "megameters"),
  6080. },
  6081. {
  6082. name: "Unimaginable",
  6083. height: math.unit(120e9, "lightyears")
  6084. },
  6085. ]
  6086. ))
  6087. characterMakers.push(() => makeCharacter(
  6088. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6089. {
  6090. front: {
  6091. height: math.unit(2, "meters"),
  6092. weight: math.unit(80, "kg"),
  6093. name: "Front",
  6094. image: {
  6095. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6096. }
  6097. }
  6098. },
  6099. [
  6100. {
  6101. name: "Teramacro",
  6102. height: math.unit(500000, "lightyears"),
  6103. default: true
  6104. },
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6109. {
  6110. front: {
  6111. height: math.unit(2, "meters"),
  6112. weight: math.unit(150, "kg"),
  6113. name: "Front",
  6114. image: {
  6115. source: "./media/characters/vemus/front.svg",
  6116. extra: 2384 / 2084,
  6117. bottom: 0.0123
  6118. }
  6119. }
  6120. },
  6121. [
  6122. {
  6123. name: "Normal",
  6124. height: math.unit(3.75, "meters"),
  6125. default: true
  6126. },
  6127. {
  6128. name: "Big",
  6129. height: math.unit(8, "meters")
  6130. },
  6131. {
  6132. name: "Macro",
  6133. height: math.unit(100, "meters")
  6134. },
  6135. {
  6136. name: "Macro+",
  6137. height: math.unit(1500, "meters")
  6138. },
  6139. {
  6140. name: "Stellar",
  6141. height: math.unit(14e8, "meters")
  6142. },
  6143. ]
  6144. ))
  6145. characterMakers.push(() => makeCharacter(
  6146. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6147. {
  6148. front: {
  6149. height: math.unit(2, "meters"),
  6150. weight: math.unit(70, "kg"),
  6151. name: "Front",
  6152. image: {
  6153. source: "./media/characters/beherit/front.svg",
  6154. extra: 1408 / 1242
  6155. }
  6156. }
  6157. },
  6158. [
  6159. {
  6160. name: "Normal",
  6161. height: math.unit(6, "feet")
  6162. },
  6163. {
  6164. name: "Lorg",
  6165. height: math.unit(25, "feet"),
  6166. default: true
  6167. },
  6168. {
  6169. name: "Lorger",
  6170. height: math.unit(75, "feet")
  6171. },
  6172. {
  6173. name: "Macro",
  6174. height: math.unit(200, "meters")
  6175. },
  6176. ]
  6177. ))
  6178. characterMakers.push(() => makeCharacter(
  6179. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6180. {
  6181. front: {
  6182. height: math.unit(2, "meters"),
  6183. weight: math.unit(150, "kg"),
  6184. name: "Front",
  6185. image: {
  6186. source: "./media/characters/everett/front.svg",
  6187. extra: 2038 / 1737,
  6188. bottom: 0.03
  6189. }
  6190. },
  6191. paw: {
  6192. height: math.unit(2 / 3.6, "meters"),
  6193. name: "Paw",
  6194. image: {
  6195. source: "./media/characters/everett/paw.svg"
  6196. }
  6197. },
  6198. },
  6199. [
  6200. {
  6201. name: "Normal",
  6202. height: math.unit(15, "feet"),
  6203. default: true
  6204. },
  6205. {
  6206. name: "Lorg",
  6207. height: math.unit(70, "feet"),
  6208. default: true
  6209. },
  6210. {
  6211. name: "Lorger",
  6212. height: math.unit(250, "feet")
  6213. },
  6214. {
  6215. name: "Macro",
  6216. height: math.unit(500, "meters")
  6217. },
  6218. ]
  6219. ))
  6220. characterMakers.push(() => makeCharacter(
  6221. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6222. {
  6223. front: {
  6224. height: math.unit(2, "meters"),
  6225. weight: math.unit(86, "kg"),
  6226. name: "Front",
  6227. image: {
  6228. source: "./media/characters/rose-lion/front.svg"
  6229. }
  6230. },
  6231. bent: {
  6232. height: math.unit(2 / 1.4288, "meters"),
  6233. weight: math.unit(86, "kg"),
  6234. name: "Bent",
  6235. image: {
  6236. source: "./media/characters/rose-lion/bent.svg"
  6237. }
  6238. }
  6239. },
  6240. [
  6241. {
  6242. name: "Mini-Micro",
  6243. height: math.unit(1, "cm")
  6244. },
  6245. {
  6246. name: "Micro",
  6247. height: math.unit(3.5, "inches"),
  6248. default: true
  6249. },
  6250. {
  6251. name: "Normal",
  6252. height: math.unit(6 + 1 / 6, "feet")
  6253. },
  6254. {
  6255. name: "Mini-Macro",
  6256. height: math.unit(9 + 10 / 12, "feet")
  6257. },
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6262. {
  6263. front: {
  6264. height: math.unit(2, "meters"),
  6265. weight: math.unit(350, "lbs"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/regal/front.svg"
  6269. }
  6270. },
  6271. back: {
  6272. height: math.unit(2, "meters"),
  6273. weight: math.unit(350, "lbs"),
  6274. name: "Back",
  6275. image: {
  6276. source: "./media/characters/regal/back.svg"
  6277. }
  6278. },
  6279. },
  6280. [
  6281. {
  6282. name: "Macro",
  6283. height: math.unit(350, "feet"),
  6284. default: true
  6285. }
  6286. ]
  6287. ))
  6288. characterMakers.push(() => makeCharacter(
  6289. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6290. {
  6291. front: {
  6292. height: math.unit(4 + 11 / 12, "feet"),
  6293. weight: math.unit(100, "lbs"),
  6294. name: "Front",
  6295. image: {
  6296. source: "./media/characters/opal/front.svg"
  6297. }
  6298. },
  6299. frontAlt: {
  6300. height: math.unit(4 + 11 / 12, "feet"),
  6301. weight: math.unit(100, "lbs"),
  6302. name: "Front (Alt)",
  6303. image: {
  6304. source: "./media/characters/opal/front-alt.svg"
  6305. }
  6306. },
  6307. },
  6308. [
  6309. {
  6310. name: "Small",
  6311. height: math.unit(4 + 11 / 12, "feet")
  6312. },
  6313. {
  6314. name: "Normal",
  6315. height: math.unit(20, "feet"),
  6316. default: true
  6317. },
  6318. {
  6319. name: "Macro",
  6320. height: math.unit(120, "feet")
  6321. },
  6322. {
  6323. name: "Megamacro",
  6324. height: math.unit(80, "miles")
  6325. },
  6326. {
  6327. name: "True Size",
  6328. height: math.unit(100000, "lightyears")
  6329. },
  6330. ]
  6331. ))
  6332. characterMakers.push(() => makeCharacter(
  6333. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6334. {
  6335. front: {
  6336. height: math.unit(6, "feet"),
  6337. weight: math.unit(200, "lbs"),
  6338. name: "Front",
  6339. image: {
  6340. source: "./media/characters/vector-wuff/front.svg"
  6341. }
  6342. }
  6343. },
  6344. [
  6345. {
  6346. name: "Normal",
  6347. height: math.unit(2.8, "meters")
  6348. },
  6349. {
  6350. name: "Macro",
  6351. height: math.unit(450, "meters"),
  6352. default: true
  6353. },
  6354. {
  6355. name: "Megamacro",
  6356. height: math.unit(15, "kilometers")
  6357. }
  6358. ]
  6359. ))
  6360. characterMakers.push(() => makeCharacter(
  6361. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6362. {
  6363. front: {
  6364. height: math.unit(6, "feet"),
  6365. weight: math.unit(256, "lbs"),
  6366. name: "Front",
  6367. image: {
  6368. source: "./media/characters/dannik/front.svg"
  6369. }
  6370. }
  6371. },
  6372. [
  6373. {
  6374. name: "Macro",
  6375. height: math.unit(69.57, "meters"),
  6376. default: true
  6377. },
  6378. ]
  6379. ))
  6380. characterMakers.push(() => makeCharacter(
  6381. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6382. {
  6383. front: {
  6384. height: math.unit(6, "feet"),
  6385. weight: math.unit(120, "lbs"),
  6386. name: "Front",
  6387. image: {
  6388. source: "./media/characters/azura-saharah/front.svg"
  6389. }
  6390. },
  6391. back: {
  6392. height: math.unit(6, "feet"),
  6393. weight: math.unit(120, "lbs"),
  6394. name: "Back",
  6395. image: {
  6396. source: "./media/characters/azura-saharah/back.svg"
  6397. }
  6398. },
  6399. },
  6400. [
  6401. {
  6402. name: "Macro",
  6403. height: math.unit(100, "feet"),
  6404. default: true
  6405. },
  6406. ]
  6407. ))
  6408. characterMakers.push(() => makeCharacter(
  6409. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6410. {
  6411. side: {
  6412. height: math.unit(5 + 4 / 12, "feet"),
  6413. weight: math.unit(163, "lbs"),
  6414. name: "Side",
  6415. image: {
  6416. source: "./media/characters/kennedy/side.svg"
  6417. }
  6418. }
  6419. },
  6420. [
  6421. {
  6422. name: "Standard Doggo",
  6423. height: math.unit(5 + 4 / 12, "feet")
  6424. },
  6425. {
  6426. name: "Big Doggo",
  6427. height: math.unit(25 + 3 / 12, "feet"),
  6428. default: true
  6429. },
  6430. ]
  6431. ))
  6432. characterMakers.push(() => makeCharacter(
  6433. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6434. {
  6435. front: {
  6436. height: math.unit(6, "feet"),
  6437. weight: math.unit(90, "lbs"),
  6438. name: "Front",
  6439. image: {
  6440. source: "./media/characters/odi-lunar/front.svg"
  6441. }
  6442. }
  6443. },
  6444. [
  6445. {
  6446. name: "Micro",
  6447. height: math.unit(3, "inches"),
  6448. default: true
  6449. },
  6450. {
  6451. name: "Normal",
  6452. height: math.unit(5.5, "feet")
  6453. }
  6454. ]
  6455. ))
  6456. characterMakers.push(() => makeCharacter(
  6457. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6458. {
  6459. back: {
  6460. height: math.unit(6, "feet"),
  6461. weight: math.unit(220, "lbs"),
  6462. name: "Back",
  6463. image: {
  6464. source: "./media/characters/mandake/back.svg"
  6465. }
  6466. }
  6467. },
  6468. [
  6469. {
  6470. name: "Normal",
  6471. height: math.unit(7, "feet"),
  6472. default: true
  6473. },
  6474. {
  6475. name: "Macro",
  6476. height: math.unit(78, "feet")
  6477. },
  6478. {
  6479. name: "Macro+",
  6480. height: math.unit(300, "meters")
  6481. },
  6482. {
  6483. name: "Macro++",
  6484. height: math.unit(2400, "feet")
  6485. },
  6486. {
  6487. name: "Megamacro",
  6488. height: math.unit(5167, "meters")
  6489. },
  6490. {
  6491. name: "Gigamacro",
  6492. height: math.unit(41769, "miles")
  6493. },
  6494. ]
  6495. ))
  6496. characterMakers.push(() => makeCharacter(
  6497. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6498. {
  6499. front: {
  6500. height: math.unit(6, "feet"),
  6501. weight: math.unit(120, "lbs"),
  6502. name: "Front",
  6503. image: {
  6504. source: "./media/characters/yozey/front.svg"
  6505. }
  6506. },
  6507. frontAlt: {
  6508. height: math.unit(6, "feet"),
  6509. weight: math.unit(120, "lbs"),
  6510. name: "Front (Alt)",
  6511. image: {
  6512. source: "./media/characters/yozey/front-alt.svg"
  6513. }
  6514. },
  6515. side: {
  6516. height: math.unit(6, "feet"),
  6517. weight: math.unit(120, "lbs"),
  6518. name: "Side",
  6519. image: {
  6520. source: "./media/characters/yozey/side.svg"
  6521. }
  6522. },
  6523. },
  6524. [
  6525. {
  6526. name: "Micro",
  6527. height: math.unit(3, "inches"),
  6528. default: true
  6529. },
  6530. {
  6531. name: "Normal",
  6532. height: math.unit(6, "feet")
  6533. }
  6534. ]
  6535. ))
  6536. characterMakers.push(() => makeCharacter(
  6537. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6538. {
  6539. front: {
  6540. height: math.unit(6, "feet"),
  6541. weight: math.unit(103, "lbs"),
  6542. name: "Front",
  6543. image: {
  6544. source: "./media/characters/valeska-voss/front.svg"
  6545. }
  6546. }
  6547. },
  6548. [
  6549. {
  6550. name: "Mini-Sized Sub",
  6551. height: math.unit(3.1, "inches")
  6552. },
  6553. {
  6554. name: "Mid-Sized Sub",
  6555. height: math.unit(6.2, "inches")
  6556. },
  6557. {
  6558. name: "Full-Sized Sub",
  6559. height: math.unit(9.3, "inches")
  6560. },
  6561. {
  6562. name: "Normal",
  6563. height: math.unit(5 + 2 / 12, "foot"),
  6564. default: true
  6565. },
  6566. ]
  6567. ))
  6568. characterMakers.push(() => makeCharacter(
  6569. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6570. {
  6571. front: {
  6572. height: math.unit(6, "feet"),
  6573. weight: math.unit(160, "lbs"),
  6574. name: "Front",
  6575. image: {
  6576. source: "./media/characters/gene-zeta/front.svg",
  6577. extra: 3006 / 2826,
  6578. bottom: 182 / 3188
  6579. }
  6580. }
  6581. },
  6582. [
  6583. {
  6584. name: "Micro",
  6585. height: math.unit(6, "inches")
  6586. },
  6587. {
  6588. name: "Normal",
  6589. height: math.unit(5 + 11 / 12, "foot"),
  6590. default: true
  6591. },
  6592. {
  6593. name: "Macro",
  6594. height: math.unit(140, "feet")
  6595. },
  6596. {
  6597. name: "Supercharged",
  6598. height: math.unit(2500, "feet")
  6599. },
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6604. {
  6605. front: {
  6606. height: math.unit(6, "feet"),
  6607. weight: math.unit(350, "lbs"),
  6608. name: "Front",
  6609. image: {
  6610. source: "./media/characters/razinox/front.svg",
  6611. extra: 1686 / 1548,
  6612. bottom: 28.2 / 1868
  6613. }
  6614. },
  6615. back: {
  6616. height: math.unit(6, "feet"),
  6617. weight: math.unit(350, "lbs"),
  6618. name: "Back",
  6619. image: {
  6620. source: "./media/characters/razinox/back.svg",
  6621. extra: 1660 / 1590,
  6622. bottom: 15 / 1665
  6623. }
  6624. },
  6625. },
  6626. [
  6627. {
  6628. name: "Normal",
  6629. height: math.unit(10 + 8 / 12, "foot")
  6630. },
  6631. {
  6632. name: "Minimacro",
  6633. height: math.unit(15, "foot")
  6634. },
  6635. {
  6636. name: "Macro",
  6637. height: math.unit(60, "foot"),
  6638. default: true
  6639. },
  6640. {
  6641. name: "Megamacro",
  6642. height: math.unit(5, "miles")
  6643. },
  6644. {
  6645. name: "Gigamacro",
  6646. height: math.unit(6000, "miles")
  6647. },
  6648. ]
  6649. ))
  6650. characterMakers.push(() => makeCharacter(
  6651. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6652. {
  6653. front: {
  6654. height: math.unit(6, "feet"),
  6655. weight: math.unit(150, "lbs"),
  6656. name: "Front",
  6657. image: {
  6658. source: "./media/characters/cobalt/front.svg"
  6659. }
  6660. }
  6661. },
  6662. [
  6663. {
  6664. name: "Normal",
  6665. height: math.unit(8 + 1 / 12, "foot")
  6666. },
  6667. {
  6668. name: "Macro",
  6669. height: math.unit(111, "foot"),
  6670. default: true
  6671. },
  6672. {
  6673. name: "Supracosmic",
  6674. height: math.unit(1e42, "feet")
  6675. },
  6676. ]
  6677. ))
  6678. characterMakers.push(() => makeCharacter(
  6679. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6680. {
  6681. front: {
  6682. height: math.unit(6, "feet"),
  6683. weight: math.unit(140, "lbs"),
  6684. name: "Front",
  6685. image: {
  6686. source: "./media/characters/amanda/front.svg"
  6687. }
  6688. }
  6689. },
  6690. [
  6691. {
  6692. name: "Micro",
  6693. height: math.unit(5, "inches"),
  6694. default: true
  6695. },
  6696. ]
  6697. ))
  6698. characterMakers.push(() => makeCharacter(
  6699. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6700. {
  6701. front: {
  6702. height: math.unit(2.75, "meters"),
  6703. weight: math.unit(1200, "lb"),
  6704. name: "Front",
  6705. image: {
  6706. source: "./media/characters/teal/front.svg",
  6707. extra: 2463 / 2320,
  6708. bottom: 166 / 2629
  6709. }
  6710. },
  6711. back: {
  6712. height: math.unit(2.75, "meters"),
  6713. weight: math.unit(1200, "lb"),
  6714. name: "Back",
  6715. image: {
  6716. source: "./media/characters/teal/back.svg",
  6717. extra: 2580 / 2489,
  6718. bottom: 151 / 2731
  6719. }
  6720. },
  6721. sitting: {
  6722. height: math.unit(1.9, "meters"),
  6723. weight: math.unit(1200, "lb"),
  6724. name: "Sitting",
  6725. image: {
  6726. source: "./media/characters/teal/sitting.svg",
  6727. extra: 623 / 590,
  6728. bottom: 121 / 744
  6729. }
  6730. },
  6731. standing: {
  6732. height: math.unit(2.75, "meters"),
  6733. weight: math.unit(1200, "lb"),
  6734. name: "Standing",
  6735. image: {
  6736. source: "./media/characters/teal/standing.svg",
  6737. extra: 923 / 893,
  6738. bottom: 60 / 983
  6739. }
  6740. },
  6741. stretching: {
  6742. height: math.unit(3.65, "meters"),
  6743. weight: math.unit(1200, "lb"),
  6744. name: "Stretching",
  6745. image: {
  6746. source: "./media/characters/teal/stretching.svg",
  6747. extra: 1276 / 1244,
  6748. bottom: 0 / 1276
  6749. }
  6750. },
  6751. legged: {
  6752. height: math.unit(1.3, "meters"),
  6753. weight: math.unit(100, "lb"),
  6754. name: "Legged",
  6755. image: {
  6756. source: "./media/characters/teal/legged.svg",
  6757. extra: 462 / 437,
  6758. bottom: 24 / 486
  6759. }
  6760. },
  6761. naga: {
  6762. height: math.unit(5.4, "meters"),
  6763. weight: math.unit(4000, "lb"),
  6764. name: "Naga",
  6765. image: {
  6766. source: "./media/characters/teal/naga.svg",
  6767. extra: 1902 / 1858,
  6768. bottom: 0 / 1902
  6769. }
  6770. },
  6771. hand: {
  6772. height: math.unit(0.52, "meters"),
  6773. name: "Hand",
  6774. image: {
  6775. source: "./media/characters/teal/hand.svg"
  6776. }
  6777. },
  6778. maw: {
  6779. height: math.unit(0.43, "meters"),
  6780. name: "Maw",
  6781. image: {
  6782. source: "./media/characters/teal/maw.svg"
  6783. }
  6784. },
  6785. slit: {
  6786. height: math.unit(0.25, "meters"),
  6787. name: "Slit",
  6788. image: {
  6789. source: "./media/characters/teal/slit.svg"
  6790. }
  6791. },
  6792. },
  6793. [
  6794. {
  6795. name: "Normal",
  6796. height: math.unit(2.75, "meters"),
  6797. default: true
  6798. },
  6799. {
  6800. name: "Macro",
  6801. height: math.unit(300, "feet")
  6802. },
  6803. {
  6804. name: "Macro+",
  6805. height: math.unit(2000, "feet")
  6806. },
  6807. ]
  6808. ))
  6809. characterMakers.push(() => makeCharacter(
  6810. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6811. {
  6812. frontCat: {
  6813. height: math.unit(6, "feet"),
  6814. weight: math.unit(180, "lbs"),
  6815. name: "Front (Cat)",
  6816. image: {
  6817. source: "./media/characters/ravin-amulet/front-cat.svg"
  6818. }
  6819. },
  6820. frontCatAlt: {
  6821. height: math.unit(6, "feet"),
  6822. weight: math.unit(180, "lbs"),
  6823. name: "Front (Alt, Cat)",
  6824. image: {
  6825. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6826. }
  6827. },
  6828. frontWerewolf: {
  6829. height: math.unit(6 * 1.2, "feet"),
  6830. weight: math.unit(225, "lbs"),
  6831. name: "Front (Werewolf)",
  6832. image: {
  6833. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6834. }
  6835. },
  6836. backWerewolf: {
  6837. height: math.unit(6 * 1.2, "feet"),
  6838. weight: math.unit(225, "lbs"),
  6839. name: "Back (Werewolf)",
  6840. image: {
  6841. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6842. }
  6843. },
  6844. },
  6845. [
  6846. {
  6847. name: "Nano",
  6848. height: math.unit(1, "micrometer")
  6849. },
  6850. {
  6851. name: "Micro",
  6852. height: math.unit(1, "inch")
  6853. },
  6854. {
  6855. name: "Normal",
  6856. height: math.unit(6, "feet"),
  6857. default: true
  6858. },
  6859. {
  6860. name: "Macro",
  6861. height: math.unit(60, "feet")
  6862. }
  6863. ]
  6864. ))
  6865. characterMakers.push(() => makeCharacter(
  6866. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6867. {
  6868. front: {
  6869. height: math.unit(6, "feet"),
  6870. weight: math.unit(165, "lbs"),
  6871. name: "Front",
  6872. image: {
  6873. source: "./media/characters/fluoresce/front.svg"
  6874. }
  6875. }
  6876. },
  6877. [
  6878. {
  6879. name: "Micro",
  6880. height: math.unit(6, "cm")
  6881. },
  6882. {
  6883. name: "Normal",
  6884. height: math.unit(5 + 7 / 12, "feet"),
  6885. default: true
  6886. },
  6887. {
  6888. name: "Macro",
  6889. height: math.unit(56, "feet")
  6890. },
  6891. {
  6892. name: "Megamacro",
  6893. height: math.unit(1.9, "miles")
  6894. },
  6895. ]
  6896. ))
  6897. characterMakers.push(() => makeCharacter(
  6898. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6899. {
  6900. front: {
  6901. height: math.unit(9 + 6 / 12, "feet"),
  6902. weight: math.unit(523, "lbs"),
  6903. name: "Side",
  6904. image: {
  6905. source: "./media/characters/aurora/side.svg"
  6906. }
  6907. }
  6908. },
  6909. [
  6910. {
  6911. name: "Normal",
  6912. height: math.unit(9 + 6 / 12, "feet")
  6913. },
  6914. {
  6915. name: "Macro",
  6916. height: math.unit(96, "feet"),
  6917. default: true
  6918. },
  6919. {
  6920. name: "Macro+",
  6921. height: math.unit(243, "feet")
  6922. },
  6923. ]
  6924. ))
  6925. characterMakers.push(() => makeCharacter(
  6926. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6927. {
  6928. front: {
  6929. height: math.unit(194, "cm"),
  6930. weight: math.unit(90, "kg"),
  6931. name: "Front",
  6932. image: {
  6933. source: "./media/characters/ranek/front.svg"
  6934. }
  6935. },
  6936. side: {
  6937. height: math.unit(194, "cm"),
  6938. weight: math.unit(90, "kg"),
  6939. name: "Side",
  6940. image: {
  6941. source: "./media/characters/ranek/side.svg"
  6942. }
  6943. },
  6944. back: {
  6945. height: math.unit(194, "cm"),
  6946. weight: math.unit(90, "kg"),
  6947. name: "Back",
  6948. image: {
  6949. source: "./media/characters/ranek/back.svg"
  6950. }
  6951. },
  6952. feral: {
  6953. height: math.unit(30, "cm"),
  6954. weight: math.unit(1.6, "lbs"),
  6955. name: "Feral",
  6956. image: {
  6957. source: "./media/characters/ranek/feral.svg"
  6958. }
  6959. },
  6960. },
  6961. [
  6962. {
  6963. name: "Normal",
  6964. height: math.unit(194, "cm"),
  6965. default: true
  6966. },
  6967. {
  6968. name: "Macro",
  6969. height: math.unit(100, "meters")
  6970. },
  6971. ]
  6972. ))
  6973. characterMakers.push(() => makeCharacter(
  6974. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6975. {
  6976. front: {
  6977. height: math.unit(5 + 6 / 12, "feet"),
  6978. weight: math.unit(153, "lbs"),
  6979. name: "Front",
  6980. image: {
  6981. source: "./media/characters/andrew-cooper/front.svg"
  6982. }
  6983. },
  6984. },
  6985. [
  6986. {
  6987. name: "Nano",
  6988. height: math.unit(1, "mm")
  6989. },
  6990. {
  6991. name: "Micro",
  6992. height: math.unit(2, "inches")
  6993. },
  6994. {
  6995. name: "Normal",
  6996. height: math.unit(5 + 6 / 12, "feet"),
  6997. default: true
  6998. }
  6999. ]
  7000. ))
  7001. characterMakers.push(() => makeCharacter(
  7002. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7003. {
  7004. front: {
  7005. height: math.unit(6, "feet"),
  7006. weight: math.unit(180, "lbs"),
  7007. name: "Front",
  7008. image: {
  7009. source: "./media/characters/akane-sato/front.svg",
  7010. extra: 1219 / 1140
  7011. }
  7012. },
  7013. back: {
  7014. height: math.unit(6, "feet"),
  7015. weight: math.unit(180, "lbs"),
  7016. name: "Back",
  7017. image: {
  7018. source: "./media/characters/akane-sato/back.svg",
  7019. extra: 1219 / 1170
  7020. }
  7021. },
  7022. },
  7023. [
  7024. {
  7025. name: "Normal",
  7026. height: math.unit(2.5, "meters")
  7027. },
  7028. {
  7029. name: "Macro",
  7030. height: math.unit(250, "meters"),
  7031. default: true
  7032. },
  7033. {
  7034. name: "Megamacro",
  7035. height: math.unit(25, "km")
  7036. },
  7037. ]
  7038. ))
  7039. characterMakers.push(() => makeCharacter(
  7040. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7041. {
  7042. front: {
  7043. height: math.unit(6, "feet"),
  7044. weight: math.unit(65, "kg"),
  7045. name: "Front",
  7046. image: {
  7047. source: "./media/characters/rook/front.svg",
  7048. extra: 960 / 950
  7049. }
  7050. }
  7051. },
  7052. [
  7053. {
  7054. name: "Normal",
  7055. height: math.unit(8.8, "feet")
  7056. },
  7057. {
  7058. name: "Macro",
  7059. height: math.unit(88, "feet"),
  7060. default: true
  7061. },
  7062. {
  7063. name: "Megamacro",
  7064. height: math.unit(8, "miles")
  7065. },
  7066. ]
  7067. ))
  7068. characterMakers.push(() => makeCharacter(
  7069. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7070. {
  7071. front: {
  7072. height: math.unit(12 + 2 / 12, "feet"),
  7073. weight: math.unit(808, "lbs"),
  7074. name: "Front",
  7075. image: {
  7076. source: "./media/characters/prodigy/front.svg"
  7077. }
  7078. }
  7079. },
  7080. [
  7081. {
  7082. name: "Normal",
  7083. height: math.unit(12 + 2 / 12, "feet"),
  7084. default: true
  7085. },
  7086. {
  7087. name: "Macro",
  7088. height: math.unit(143, "feet")
  7089. },
  7090. {
  7091. name: "Macro+",
  7092. height: math.unit(400, "feet")
  7093. },
  7094. ]
  7095. ))
  7096. characterMakers.push(() => makeCharacter(
  7097. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7098. {
  7099. front: {
  7100. height: math.unit(6, "feet"),
  7101. weight: math.unit(225, "lbs"),
  7102. name: "Front",
  7103. image: {
  7104. source: "./media/characters/daniel/front.svg"
  7105. }
  7106. },
  7107. leaning: {
  7108. height: math.unit(6, "feet"),
  7109. weight: math.unit(225, "lbs"),
  7110. name: "Leaning",
  7111. image: {
  7112. source: "./media/characters/daniel/leaning.svg"
  7113. }
  7114. },
  7115. },
  7116. [
  7117. {
  7118. name: "Macro",
  7119. height: math.unit(1000, "feet"),
  7120. default: true
  7121. },
  7122. ]
  7123. ))
  7124. characterMakers.push(() => makeCharacter(
  7125. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7126. {
  7127. front: {
  7128. height: math.unit(6, "feet"),
  7129. weight: math.unit(88, "lbs"),
  7130. name: "Front",
  7131. image: {
  7132. source: "./media/characters/chiros/front.svg",
  7133. extra: 306 / 226
  7134. }
  7135. },
  7136. side: {
  7137. height: math.unit(6, "feet"),
  7138. weight: math.unit(88, "lbs"),
  7139. name: "Side",
  7140. image: {
  7141. source: "./media/characters/chiros/side.svg",
  7142. extra: 306 / 226
  7143. }
  7144. },
  7145. },
  7146. [
  7147. {
  7148. name: "Normal",
  7149. height: math.unit(6, "cm"),
  7150. default: true
  7151. },
  7152. ]
  7153. ))
  7154. characterMakers.push(() => makeCharacter(
  7155. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7156. {
  7157. front: {
  7158. height: math.unit(6, "feet"),
  7159. weight: math.unit(100, "lbs"),
  7160. name: "Front",
  7161. image: {
  7162. source: "./media/characters/selka/front.svg",
  7163. extra: 947 / 887
  7164. }
  7165. }
  7166. },
  7167. [
  7168. {
  7169. name: "Normal",
  7170. height: math.unit(5, "cm"),
  7171. default: true
  7172. },
  7173. ]
  7174. ))
  7175. characterMakers.push(() => makeCharacter(
  7176. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7177. {
  7178. front: {
  7179. height: math.unit(8 + 3 / 12, "feet"),
  7180. weight: math.unit(424, "lbs"),
  7181. name: "Front",
  7182. image: {
  7183. source: "./media/characters/verin/front.svg",
  7184. extra: 1845 / 1550
  7185. }
  7186. },
  7187. frontArmored: {
  7188. height: math.unit(8 + 3 / 12, "feet"),
  7189. weight: math.unit(424, "lbs"),
  7190. name: "Front (Armored)",
  7191. image: {
  7192. source: "./media/characters/verin/front-armor.svg",
  7193. extra: 1845 / 1550,
  7194. bottom: 0.01
  7195. }
  7196. },
  7197. back: {
  7198. height: math.unit(8 + 3 / 12, "feet"),
  7199. weight: math.unit(424, "lbs"),
  7200. name: "Back",
  7201. image: {
  7202. source: "./media/characters/verin/back.svg",
  7203. bottom: 0.1,
  7204. extra: 1
  7205. }
  7206. },
  7207. foot: {
  7208. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7209. name: "Foot",
  7210. image: {
  7211. source: "./media/characters/verin/foot.svg"
  7212. }
  7213. },
  7214. },
  7215. [
  7216. {
  7217. name: "Normal",
  7218. height: math.unit(8 + 3 / 12, "feet")
  7219. },
  7220. {
  7221. name: "Minimacro",
  7222. height: math.unit(21, "feet"),
  7223. default: true
  7224. },
  7225. {
  7226. name: "Macro",
  7227. height: math.unit(626, "feet")
  7228. },
  7229. ]
  7230. ))
  7231. characterMakers.push(() => makeCharacter(
  7232. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7233. {
  7234. front: {
  7235. height: math.unit(2.718, "meters"),
  7236. weight: math.unit(150, "lbs"),
  7237. name: "Front",
  7238. image: {
  7239. source: "./media/characters/sovrim-terraquian/front.svg"
  7240. }
  7241. },
  7242. back: {
  7243. height: math.unit(2.718, "meters"),
  7244. weight: math.unit(150, "lbs"),
  7245. name: "Back",
  7246. image: {
  7247. source: "./media/characters/sovrim-terraquian/back.svg"
  7248. }
  7249. }
  7250. },
  7251. [
  7252. {
  7253. name: "Micro",
  7254. height: math.unit(2, "inches")
  7255. },
  7256. {
  7257. name: "Small",
  7258. height: math.unit(1, "meter")
  7259. },
  7260. {
  7261. name: "Normal",
  7262. height: math.unit(Math.E, "meters"),
  7263. default: true
  7264. },
  7265. {
  7266. name: "Macro",
  7267. height: math.unit(20, "meters")
  7268. },
  7269. {
  7270. name: "Macro+",
  7271. height: math.unit(400, "meters")
  7272. },
  7273. ]
  7274. ))
  7275. characterMakers.push(() => makeCharacter(
  7276. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7277. {
  7278. front: {
  7279. height: math.unit(7, "feet"),
  7280. weight: math.unit(489, "lbs"),
  7281. name: "Front",
  7282. image: {
  7283. source: "./media/characters/reece-silvermane/front.svg",
  7284. bottom: 0.02,
  7285. extra: 1
  7286. }
  7287. },
  7288. },
  7289. [
  7290. {
  7291. name: "Macro",
  7292. height: math.unit(1.5, "miles"),
  7293. default: true
  7294. },
  7295. ]
  7296. ))
  7297. characterMakers.push(() => makeCharacter(
  7298. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7299. {
  7300. front: {
  7301. height: math.unit(6, "feet"),
  7302. weight: math.unit(78, "kg"),
  7303. name: "Front",
  7304. image: {
  7305. source: "./media/characters/kane/front.svg",
  7306. extra: 978 / 899
  7307. }
  7308. },
  7309. },
  7310. [
  7311. {
  7312. name: "Normal",
  7313. height: math.unit(2.1, "m"),
  7314. },
  7315. {
  7316. name: "Macro",
  7317. height: math.unit(1, "km"),
  7318. default: true
  7319. },
  7320. ]
  7321. ))
  7322. characterMakers.push(() => makeCharacter(
  7323. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7324. {
  7325. front: {
  7326. height: math.unit(6, "feet"),
  7327. weight: math.unit(200, "kg"),
  7328. name: "Front",
  7329. image: {
  7330. source: "./media/characters/tegon/front.svg",
  7331. bottom: 0.01,
  7332. extra: 1
  7333. }
  7334. },
  7335. },
  7336. [
  7337. {
  7338. name: "Micro",
  7339. height: math.unit(1, "inch")
  7340. },
  7341. {
  7342. name: "Normal",
  7343. height: math.unit(6 + 3 / 12, "feet"),
  7344. default: true
  7345. },
  7346. {
  7347. name: "Macro",
  7348. height: math.unit(300, "feet")
  7349. },
  7350. {
  7351. name: "Megamacro",
  7352. height: math.unit(69, "miles")
  7353. },
  7354. ]
  7355. ))
  7356. characterMakers.push(() => makeCharacter(
  7357. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7358. {
  7359. side: {
  7360. height: math.unit(6, "feet"),
  7361. weight: math.unit(2304, "lbs"),
  7362. name: "Side",
  7363. image: {
  7364. source: "./media/characters/arcturax/side.svg",
  7365. extra: 790 / 376,
  7366. bottom: 0.01
  7367. }
  7368. },
  7369. },
  7370. [
  7371. {
  7372. name: "Micro",
  7373. height: math.unit(2, "inch")
  7374. },
  7375. {
  7376. name: "Normal",
  7377. height: math.unit(6, "feet")
  7378. },
  7379. {
  7380. name: "Macro",
  7381. height: math.unit(39, "feet"),
  7382. default: true
  7383. },
  7384. {
  7385. name: "Megamacro",
  7386. height: math.unit(7, "miles")
  7387. },
  7388. ]
  7389. ))
  7390. characterMakers.push(() => makeCharacter(
  7391. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7392. {
  7393. front: {
  7394. height: math.unit(6, "feet"),
  7395. weight: math.unit(50, "lbs"),
  7396. name: "Front",
  7397. image: {
  7398. source: "./media/characters/sentri/front.svg",
  7399. extra: 1750 / 1570,
  7400. bottom: 0.025
  7401. }
  7402. },
  7403. frontAlt: {
  7404. height: math.unit(6, "feet"),
  7405. weight: math.unit(50, "lbs"),
  7406. name: "Front (Alt)",
  7407. image: {
  7408. source: "./media/characters/sentri/front-alt.svg",
  7409. extra: 1750 / 1570,
  7410. bottom: 0.025
  7411. }
  7412. },
  7413. },
  7414. [
  7415. {
  7416. name: "Normal",
  7417. height: math.unit(15, "feet"),
  7418. default: true
  7419. },
  7420. {
  7421. name: "Macro",
  7422. height: math.unit(2500, "feet")
  7423. }
  7424. ]
  7425. ))
  7426. characterMakers.push(() => makeCharacter(
  7427. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7428. {
  7429. front: {
  7430. height: math.unit(5 + 8 / 12, "feet"),
  7431. weight: math.unit(130, "lbs"),
  7432. name: "Front",
  7433. image: {
  7434. source: "./media/characters/corvin/front.svg",
  7435. extra: 1803 / 1629
  7436. }
  7437. },
  7438. frontShirt: {
  7439. height: math.unit(5 + 8 / 12, "feet"),
  7440. weight: math.unit(130, "lbs"),
  7441. name: "Front (Shirt)",
  7442. image: {
  7443. source: "./media/characters/corvin/front-shirt.svg",
  7444. extra: 1803 / 1629
  7445. }
  7446. },
  7447. frontPoncho: {
  7448. height: math.unit(5 + 8 / 12, "feet"),
  7449. weight: math.unit(130, "lbs"),
  7450. name: "Front (Poncho)",
  7451. image: {
  7452. source: "./media/characters/corvin/front-poncho.svg",
  7453. extra: 1803 / 1629
  7454. }
  7455. },
  7456. side: {
  7457. height: math.unit(5 + 8 / 12, "feet"),
  7458. weight: math.unit(130, "lbs"),
  7459. name: "Side",
  7460. image: {
  7461. source: "./media/characters/corvin/side.svg",
  7462. extra: 1012 / 945
  7463. }
  7464. },
  7465. back: {
  7466. height: math.unit(5 + 8 / 12, "feet"),
  7467. weight: math.unit(130, "lbs"),
  7468. name: "Back",
  7469. image: {
  7470. source: "./media/characters/corvin/back.svg",
  7471. extra: 1803 / 1629
  7472. }
  7473. },
  7474. },
  7475. [
  7476. {
  7477. name: "Micro",
  7478. height: math.unit(3, "inches")
  7479. },
  7480. {
  7481. name: "Normal",
  7482. height: math.unit(5 + 8 / 12, "feet")
  7483. },
  7484. {
  7485. name: "Macro",
  7486. height: math.unit(300, "feet"),
  7487. default: true
  7488. },
  7489. {
  7490. name: "Megamacro",
  7491. height: math.unit(500, "miles")
  7492. }
  7493. ]
  7494. ))
  7495. characterMakers.push(() => makeCharacter(
  7496. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7497. {
  7498. front: {
  7499. height: math.unit(6, "feet"),
  7500. weight: math.unit(135, "lbs"),
  7501. name: "Front",
  7502. image: {
  7503. source: "./media/characters/q/front.svg",
  7504. extra: 854 / 752,
  7505. bottom: 0.005
  7506. }
  7507. },
  7508. back: {
  7509. height: math.unit(6, "feet"),
  7510. weight: math.unit(130, "lbs"),
  7511. name: "Back",
  7512. image: {
  7513. source: "./media/characters/q/back.svg",
  7514. extra: 854 / 752
  7515. }
  7516. },
  7517. },
  7518. [
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(90, "feet"),
  7522. default: true
  7523. },
  7524. {
  7525. name: "Extra Macro",
  7526. height: math.unit(300, "feet"),
  7527. },
  7528. {
  7529. name: "BIG WALF",
  7530. height: math.unit(750, "feet"),
  7531. },
  7532. ]
  7533. ))
  7534. characterMakers.push(() => makeCharacter(
  7535. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7536. {
  7537. front: {
  7538. height: math.unit(6, "feet"),
  7539. weight: math.unit(150, "lbs"),
  7540. name: "Front",
  7541. image: {
  7542. source: "./media/characters/carley/front.svg",
  7543. extra: 3927 / 3540,
  7544. bottom: 29.2 / 735
  7545. }
  7546. }
  7547. },
  7548. [
  7549. {
  7550. name: "Normal",
  7551. height: math.unit(6 + 3 / 12, "feet")
  7552. },
  7553. {
  7554. name: "Macro",
  7555. height: math.unit(185, "feet"),
  7556. default: true
  7557. },
  7558. {
  7559. name: "Megamacro",
  7560. height: math.unit(8, "miles"),
  7561. },
  7562. ]
  7563. ))
  7564. characterMakers.push(() => makeCharacter(
  7565. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7566. {
  7567. front: {
  7568. height: math.unit(3, "feet"),
  7569. weight: math.unit(28, "lbs"),
  7570. name: "Front",
  7571. image: {
  7572. source: "./media/characters/citrine/front.svg"
  7573. }
  7574. }
  7575. },
  7576. [
  7577. {
  7578. name: "Normal",
  7579. height: math.unit(3, "feet"),
  7580. default: true
  7581. }
  7582. ]
  7583. ))
  7584. characterMakers.push(() => makeCharacter(
  7585. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7586. {
  7587. front: {
  7588. height: math.unit(14, "feet"),
  7589. weight: math.unit(1450, "kg"),
  7590. capacity: math.unit(15, "people"),
  7591. name: "Front",
  7592. image: {
  7593. source: "./media/characters/aura-starwind/front.svg",
  7594. extra: 1455 / 1335
  7595. }
  7596. },
  7597. side: {
  7598. height: math.unit(14, "feet"),
  7599. weight: math.unit(1450, "kg"),
  7600. capacity: math.unit(15, "people"),
  7601. name: "Side",
  7602. image: {
  7603. source: "./media/characters/aura-starwind/side.svg",
  7604. extra: 1654 / 1497
  7605. }
  7606. },
  7607. taur: {
  7608. height: math.unit(18, "feet"),
  7609. weight: math.unit(5500, "kg"),
  7610. capacity: math.unit(50, "people"),
  7611. name: "Taur",
  7612. image: {
  7613. source: "./media/characters/aura-starwind/taur.svg",
  7614. extra: 1760 / 1650
  7615. }
  7616. },
  7617. feral: {
  7618. height: math.unit(46, "feet"),
  7619. weight: math.unit(25000, "kg"),
  7620. capacity: math.unit(120, "people"),
  7621. name: "Feral",
  7622. image: {
  7623. source: "./media/characters/aura-starwind/feral.svg"
  7624. }
  7625. },
  7626. },
  7627. [
  7628. {
  7629. name: "Normal",
  7630. height: math.unit(14, "feet"),
  7631. default: true
  7632. },
  7633. {
  7634. name: "Macro",
  7635. height: math.unit(50, "meters")
  7636. },
  7637. {
  7638. name: "Megamacro",
  7639. height: math.unit(5000, "meters")
  7640. },
  7641. {
  7642. name: "Gigamacro",
  7643. height: math.unit(100000, "kilometers")
  7644. },
  7645. ]
  7646. ))
  7647. characterMakers.push(() => makeCharacter(
  7648. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7649. {
  7650. front: {
  7651. height: math.unit(2 + 7 / 12, "feet"),
  7652. weight: math.unit(32, "lbs"),
  7653. name: "Front",
  7654. image: {
  7655. source: "./media/characters/rivet/front.svg",
  7656. extra: 1716 / 1658,
  7657. bottom: 0.03
  7658. }
  7659. },
  7660. foot: {
  7661. height: math.unit(0.551, "feet"),
  7662. name: "Rivet's Foot",
  7663. image: {
  7664. source: "./media/characters/rivet/foot.svg"
  7665. },
  7666. rename: true
  7667. }
  7668. },
  7669. [
  7670. {
  7671. name: "Micro",
  7672. height: math.unit(1.5, "inches"),
  7673. },
  7674. {
  7675. name: "Normal",
  7676. height: math.unit(2 + 7 / 12, "feet"),
  7677. default: true
  7678. },
  7679. {
  7680. name: "Macro",
  7681. height: math.unit(85, "feet")
  7682. },
  7683. {
  7684. name: "Megamacro",
  7685. height: math.unit(2.2, "km")
  7686. }
  7687. ]
  7688. ))
  7689. characterMakers.push(() => makeCharacter(
  7690. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7691. {
  7692. front: {
  7693. height: math.unit(5 + 9 / 12, "feet"),
  7694. weight: math.unit(150, "lbs"),
  7695. name: "Front",
  7696. image: {
  7697. source: "./media/characters/coffee/front.svg",
  7698. extra: 3666 / 3032,
  7699. bottom: 0.04
  7700. }
  7701. },
  7702. foot: {
  7703. height: math.unit(1.29, "feet"),
  7704. name: "Foot",
  7705. image: {
  7706. source: "./media/characters/coffee/foot.svg"
  7707. }
  7708. },
  7709. },
  7710. [
  7711. {
  7712. name: "Micro",
  7713. height: math.unit(2, "inches"),
  7714. },
  7715. {
  7716. name: "Normal",
  7717. height: math.unit(5 + 9 / 12, "feet"),
  7718. default: true
  7719. },
  7720. {
  7721. name: "Macro",
  7722. height: math.unit(800, "feet")
  7723. },
  7724. {
  7725. name: "Megamacro",
  7726. height: math.unit(25, "miles")
  7727. }
  7728. ]
  7729. ))
  7730. characterMakers.push(() => makeCharacter(
  7731. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7732. {
  7733. front: {
  7734. height: math.unit(6, "feet"),
  7735. weight: math.unit(200, "lbs"),
  7736. name: "Front",
  7737. image: {
  7738. source: "./media/characters/chari-gal/front.svg",
  7739. extra: 1568 / 1385,
  7740. bottom: 0.047
  7741. }
  7742. },
  7743. gigantamax: {
  7744. height: math.unit(6 * 16, "feet"),
  7745. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7746. name: "Gigantamax",
  7747. image: {
  7748. source: "./media/characters/chari-gal/gigantamax.svg",
  7749. extra: 1124 / 888,
  7750. bottom: 0.03
  7751. }
  7752. },
  7753. },
  7754. [
  7755. {
  7756. name: "Normal",
  7757. height: math.unit(5 + 7 / 12, "feet")
  7758. },
  7759. {
  7760. name: "Macro",
  7761. height: math.unit(200, "feet"),
  7762. default: true
  7763. }
  7764. ]
  7765. ))
  7766. characterMakers.push(() => makeCharacter(
  7767. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7768. {
  7769. front: {
  7770. height: math.unit(6, "feet"),
  7771. weight: math.unit(150, "lbs"),
  7772. name: "Front",
  7773. image: {
  7774. source: "./media/characters/nova/front.svg",
  7775. extra: 5000 / 4722,
  7776. bottom: 0.02
  7777. }
  7778. }
  7779. },
  7780. [
  7781. {
  7782. name: "Micro-",
  7783. height: math.unit(0.8, "inches")
  7784. },
  7785. {
  7786. name: "Micro",
  7787. height: math.unit(2, "inches"),
  7788. default: true
  7789. },
  7790. ]
  7791. ))
  7792. characterMakers.push(() => makeCharacter(
  7793. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7794. {
  7795. front: {
  7796. height: math.unit(3 + 1 / 12, "feet"),
  7797. weight: math.unit(21.7, "lbs"),
  7798. name: "Front",
  7799. image: {
  7800. source: "./media/characters/argent/front.svg",
  7801. extra: 1471 / 1331,
  7802. bottom: 100.8 / 1575.5
  7803. }
  7804. }
  7805. },
  7806. [
  7807. {
  7808. name: "Micro",
  7809. height: math.unit(2, "inches")
  7810. },
  7811. {
  7812. name: "Normal",
  7813. height: math.unit(3 + 1 / 12, "feet"),
  7814. default: true
  7815. },
  7816. {
  7817. name: "Macro",
  7818. height: math.unit(120, "feet")
  7819. },
  7820. ]
  7821. ))
  7822. characterMakers.push(() => makeCharacter(
  7823. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7824. {
  7825. lamp: {
  7826. height: math.unit(7 * 1559 / 989, "feet"),
  7827. name: "Magic Lamp",
  7828. image: {
  7829. source: "./media/characters/mira-al-cul/lamp.svg",
  7830. extra: 1617 / 1559
  7831. }
  7832. },
  7833. front: {
  7834. height: math.unit(7, "feet"),
  7835. name: "Front",
  7836. image: {
  7837. source: "./media/characters/mira-al-cul/front.svg",
  7838. extra: 1044 / 990
  7839. }
  7840. },
  7841. },
  7842. [
  7843. {
  7844. name: "Heavily Restricted",
  7845. height: math.unit(7 * 1559 / 989, "feet")
  7846. },
  7847. {
  7848. name: "Freshly Freed",
  7849. height: math.unit(50 * 1559 / 989, "feet")
  7850. },
  7851. {
  7852. name: "World Encompassing",
  7853. height: math.unit(10000 * 1559 / 989, "miles")
  7854. },
  7855. {
  7856. name: "Galactic",
  7857. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7858. },
  7859. {
  7860. name: "Palmed Universe",
  7861. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7862. default: true
  7863. },
  7864. {
  7865. name: "Multiversal Matriarch",
  7866. height: math.unit(8.87e10, "yottameters")
  7867. },
  7868. {
  7869. name: "Void Mother",
  7870. height: math.unit(3.14e110, "yottaparsecs")
  7871. },
  7872. {
  7873. name: "Toying with Transcendence",
  7874. height: math.unit(1e307, "meters")
  7875. },
  7876. ]
  7877. ))
  7878. characterMakers.push(() => makeCharacter(
  7879. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7880. {
  7881. front: {
  7882. height: math.unit(17 + 1 / 12, "feet"),
  7883. weight: math.unit(476.2 * 5, "lbs"),
  7884. name: "Front",
  7885. image: {
  7886. source: "./media/characters/kuro-shi-uchū/front.svg",
  7887. extra: 2329 / 1835,
  7888. bottom: 0.02
  7889. }
  7890. },
  7891. },
  7892. [
  7893. {
  7894. name: "Micro",
  7895. height: math.unit(2, "inches")
  7896. },
  7897. {
  7898. name: "Normal",
  7899. height: math.unit(12, "meters")
  7900. },
  7901. {
  7902. name: "Planetary",
  7903. height: math.unit(0.00929, "AU"),
  7904. default: true
  7905. },
  7906. {
  7907. name: "Universal",
  7908. height: math.unit(20, "gigaparsecs")
  7909. },
  7910. ]
  7911. ))
  7912. characterMakers.push(() => makeCharacter(
  7913. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7914. {
  7915. front: {
  7916. height: math.unit(5 + 2 / 12, "feet"),
  7917. weight: math.unit(120, "lbs"),
  7918. name: "Front",
  7919. image: {
  7920. source: "./media/characters/katherine/front.svg",
  7921. extra: 2075 / 1969
  7922. }
  7923. },
  7924. dress: {
  7925. height: math.unit(5 + 2 / 12, "feet"),
  7926. weight: math.unit(120, "lbs"),
  7927. name: "Dress",
  7928. image: {
  7929. source: "./media/characters/katherine/dress.svg",
  7930. extra: 2258 / 2064
  7931. }
  7932. },
  7933. },
  7934. [
  7935. {
  7936. name: "Micro",
  7937. height: math.unit(1, "inches"),
  7938. default: true
  7939. },
  7940. {
  7941. name: "Normal",
  7942. height: math.unit(5 + 2 / 12, "feet")
  7943. },
  7944. {
  7945. name: "Macro",
  7946. height: math.unit(100, "meters")
  7947. },
  7948. {
  7949. name: "Megamacro",
  7950. height: math.unit(80, "miles")
  7951. },
  7952. ]
  7953. ))
  7954. characterMakers.push(() => makeCharacter(
  7955. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7956. {
  7957. front: {
  7958. height: math.unit(7 + 8 / 12, "feet"),
  7959. weight: math.unit(250, "lbs"),
  7960. name: "Front",
  7961. image: {
  7962. source: "./media/characters/yevis/front.svg",
  7963. extra: 1938 / 1755
  7964. }
  7965. }
  7966. },
  7967. [
  7968. {
  7969. name: "Mortal",
  7970. height: math.unit(7 + 8 / 12, "feet")
  7971. },
  7972. {
  7973. name: "Battle",
  7974. height: math.unit(25 + 11 / 12, "feet")
  7975. },
  7976. {
  7977. name: "Wrath",
  7978. height: math.unit(1654 + 11 / 12, "feet")
  7979. },
  7980. {
  7981. name: "Planet Destroyer",
  7982. height: math.unit(12000, "miles")
  7983. },
  7984. {
  7985. name: "Galaxy Conqueror",
  7986. height: math.unit(1.45, "zettameters"),
  7987. default: true
  7988. },
  7989. {
  7990. name: "Universal War",
  7991. height: math.unit(184, "gigaparsecs")
  7992. },
  7993. {
  7994. name: "Eternity War",
  7995. height: math.unit(1.98e55, "yottaparsecs")
  7996. },
  7997. ]
  7998. ))
  7999. characterMakers.push(() => makeCharacter(
  8000. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8001. {
  8002. front: {
  8003. height: math.unit(5 + 8 / 12, "feet"),
  8004. weight: math.unit(63, "kg"),
  8005. name: "Front",
  8006. image: {
  8007. source: "./media/characters/xavier/front.svg",
  8008. extra: 944 / 883
  8009. }
  8010. },
  8011. frontStretch: {
  8012. height: math.unit(5 + 8 / 12, "feet"),
  8013. weight: math.unit(63, "kg"),
  8014. name: "Stretching",
  8015. image: {
  8016. source: "./media/characters/xavier/front-stretch.svg",
  8017. extra: 962 / 820
  8018. }
  8019. },
  8020. },
  8021. [
  8022. {
  8023. name: "Normal",
  8024. height: math.unit(5 + 8 / 12, "feet")
  8025. },
  8026. {
  8027. name: "Macro",
  8028. height: math.unit(100, "meters"),
  8029. default: true
  8030. },
  8031. {
  8032. name: "McLargeHuge",
  8033. height: math.unit(10, "miles")
  8034. },
  8035. ]
  8036. ))
  8037. characterMakers.push(() => makeCharacter(
  8038. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8039. {
  8040. front: {
  8041. height: math.unit(5 + 5 / 12, "feet"),
  8042. weight: math.unit(150, "lb"),
  8043. name: "Front",
  8044. image: {
  8045. source: "./media/characters/joshii/front.svg",
  8046. extra: 765 / 653,
  8047. bottom: 51 / 816
  8048. }
  8049. },
  8050. foot: {
  8051. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8052. name: "Foot",
  8053. image: {
  8054. source: "./media/characters/joshii/foot.svg"
  8055. }
  8056. },
  8057. },
  8058. [
  8059. {
  8060. name: "Micro",
  8061. height: math.unit(2, "inches"),
  8062. default: true
  8063. },
  8064. {
  8065. name: "Normal",
  8066. height: math.unit(5 + 5 / 12, "feet")
  8067. },
  8068. {
  8069. name: "Macro",
  8070. height: math.unit(785, "feet")
  8071. },
  8072. {
  8073. name: "Megamacro",
  8074. height: math.unit(24.5, "miles")
  8075. },
  8076. ]
  8077. ))
  8078. characterMakers.push(() => makeCharacter(
  8079. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8080. {
  8081. front: {
  8082. height: math.unit(6, "feet"),
  8083. weight: math.unit(150, "lb"),
  8084. name: "Front",
  8085. image: {
  8086. source: "./media/characters/goddess-elizabeth/front.svg",
  8087. extra: 1800 / 1525,
  8088. bottom: 0.005
  8089. }
  8090. },
  8091. foot: {
  8092. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8093. name: "Foot",
  8094. image: {
  8095. source: "./media/characters/goddess-elizabeth/foot.svg"
  8096. }
  8097. },
  8098. mouth: {
  8099. height: math.unit(6, "feet"),
  8100. name: "Mouth",
  8101. image: {
  8102. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8103. }
  8104. },
  8105. },
  8106. [
  8107. {
  8108. name: "Micro",
  8109. height: math.unit(12, "feet")
  8110. },
  8111. {
  8112. name: "Normal",
  8113. height: math.unit(80, "miles"),
  8114. default: true
  8115. },
  8116. {
  8117. name: "Macro",
  8118. height: math.unit(15000, "parsecs")
  8119. },
  8120. ]
  8121. ))
  8122. characterMakers.push(() => makeCharacter(
  8123. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8124. {
  8125. front: {
  8126. height: math.unit(5 + 9 / 12, "feet"),
  8127. weight: math.unit(144, "lb"),
  8128. name: "Front",
  8129. image: {
  8130. source: "./media/characters/kara/front.svg"
  8131. }
  8132. },
  8133. feet: {
  8134. height: math.unit(6 / 6.765, "feet"),
  8135. name: "Kara's Feet",
  8136. rename: true,
  8137. image: {
  8138. source: "./media/characters/kara/feet.svg"
  8139. }
  8140. },
  8141. },
  8142. [
  8143. {
  8144. name: "Normal",
  8145. height: math.unit(5 + 9 / 12, "feet")
  8146. },
  8147. {
  8148. name: "Macro",
  8149. height: math.unit(174, "feet"),
  8150. default: true
  8151. },
  8152. ]
  8153. ))
  8154. characterMakers.push(() => makeCharacter(
  8155. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8156. {
  8157. front: {
  8158. height: math.unit(18, "feet"),
  8159. weight: math.unit(4050, "lb"),
  8160. name: "Front",
  8161. image: {
  8162. source: "./media/characters/tyrone/front.svg",
  8163. extra: 2405 / 2270,
  8164. bottom: 182 / 2587
  8165. }
  8166. },
  8167. },
  8168. [
  8169. {
  8170. name: "Normal",
  8171. height: math.unit(18, "feet"),
  8172. default: true
  8173. },
  8174. {
  8175. name: "Macro",
  8176. height: math.unit(300, "feet")
  8177. },
  8178. {
  8179. name: "Megamacro",
  8180. height: math.unit(15, "km")
  8181. },
  8182. {
  8183. name: "Gigamacro",
  8184. height: math.unit(500, "km")
  8185. },
  8186. {
  8187. name: "Teramacro",
  8188. height: math.unit(0.5, "gigameters")
  8189. },
  8190. {
  8191. name: "Omnimacro",
  8192. height: math.unit(1e252, "yottauniverse")
  8193. },
  8194. ]
  8195. ))
  8196. characterMakers.push(() => makeCharacter(
  8197. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8198. {
  8199. front: {
  8200. height: math.unit(7 + 8 / 12, "feet"),
  8201. weight: math.unit(120, "lb"),
  8202. name: "Front",
  8203. image: {
  8204. source: "./media/characters/danny/front.svg",
  8205. extra: 1490 / 1350
  8206. }
  8207. },
  8208. back: {
  8209. height: math.unit(7 + 8 / 12, "feet"),
  8210. weight: math.unit(120, "lb"),
  8211. name: "Back",
  8212. image: {
  8213. source: "./media/characters/danny/back.svg",
  8214. extra: 1490 / 1350
  8215. }
  8216. },
  8217. },
  8218. [
  8219. {
  8220. name: "Normal",
  8221. height: math.unit(7 + 8 / 12, "feet"),
  8222. default: true
  8223. },
  8224. ]
  8225. ))
  8226. characterMakers.push(() => makeCharacter(
  8227. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8228. {
  8229. front: {
  8230. height: math.unit(3.5, "inches"),
  8231. weight: math.unit(19, "grams"),
  8232. name: "Front",
  8233. image: {
  8234. source: "./media/characters/mallow/front.svg",
  8235. extra: 471 / 431
  8236. }
  8237. },
  8238. back: {
  8239. height: math.unit(3.5, "inches"),
  8240. weight: math.unit(19, "grams"),
  8241. name: "Back",
  8242. image: {
  8243. source: "./media/characters/mallow/back.svg",
  8244. extra: 471 / 431
  8245. }
  8246. },
  8247. },
  8248. [
  8249. {
  8250. name: "Normal",
  8251. height: math.unit(3.5, "inches"),
  8252. default: true
  8253. },
  8254. ]
  8255. ))
  8256. characterMakers.push(() => makeCharacter(
  8257. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8258. {
  8259. front: {
  8260. height: math.unit(9, "feet"),
  8261. weight: math.unit(230, "kg"),
  8262. name: "Front",
  8263. image: {
  8264. source: "./media/characters/starry-aqua/front.svg"
  8265. }
  8266. },
  8267. back: {
  8268. height: math.unit(9, "feet"),
  8269. weight: math.unit(230, "kg"),
  8270. name: "Back",
  8271. image: {
  8272. source: "./media/characters/starry-aqua/back.svg"
  8273. }
  8274. },
  8275. hand: {
  8276. height: math.unit(9 * 0.1168, "feet"),
  8277. name: "Hand",
  8278. image: {
  8279. source: "./media/characters/starry-aqua/hand.svg"
  8280. }
  8281. },
  8282. foot: {
  8283. height: math.unit(9 * 0.18, "feet"),
  8284. name: "Foot",
  8285. image: {
  8286. source: "./media/characters/starry-aqua/foot.svg"
  8287. }
  8288. }
  8289. },
  8290. [
  8291. {
  8292. name: "Micro",
  8293. height: math.unit(3, "inches")
  8294. },
  8295. {
  8296. name: "Normal",
  8297. height: math.unit(9, "feet")
  8298. },
  8299. {
  8300. name: "Macro",
  8301. height: math.unit(300, "feet"),
  8302. default: true
  8303. },
  8304. {
  8305. name: "Megamacro",
  8306. height: math.unit(3200, "feet")
  8307. }
  8308. ]
  8309. ))
  8310. characterMakers.push(() => makeCharacter(
  8311. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8312. {
  8313. front: {
  8314. height: math.unit(6, "feet"),
  8315. weight: math.unit(230, "lb"),
  8316. name: "Front",
  8317. image: {
  8318. source: "./media/characters/luka/front.svg",
  8319. extra: 1,
  8320. bottom: 0.025
  8321. }
  8322. },
  8323. },
  8324. [
  8325. {
  8326. name: "Normal",
  8327. height: math.unit(12 + 8 / 12, "feet"),
  8328. default: true
  8329. },
  8330. {
  8331. name: "Minimacro",
  8332. height: math.unit(20, "feet")
  8333. },
  8334. {
  8335. name: "Macro",
  8336. height: math.unit(250, "feet")
  8337. },
  8338. {
  8339. name: "Megamacro",
  8340. height: math.unit(5, "miles")
  8341. },
  8342. {
  8343. name: "Gigamacro",
  8344. height: math.unit(8000, "miles")
  8345. },
  8346. ]
  8347. ))
  8348. characterMakers.push(() => makeCharacter(
  8349. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8350. {
  8351. front: {
  8352. height: math.unit(6, "feet"),
  8353. weight: math.unit(150, "lb"),
  8354. name: "Front",
  8355. image: {
  8356. source: "./media/characters/natalie-nightring/front.svg",
  8357. extra: 1,
  8358. bottom: 0.06
  8359. }
  8360. },
  8361. },
  8362. [
  8363. {
  8364. name: "Uh Oh",
  8365. height: math.unit(0.1, "mm")
  8366. },
  8367. {
  8368. name: "Small",
  8369. height: math.unit(3, "inches")
  8370. },
  8371. {
  8372. name: "Human Scale",
  8373. height: math.unit(6, "feet")
  8374. },
  8375. {
  8376. name: "Librarian",
  8377. height: math.unit(50, "feet"),
  8378. default: true
  8379. },
  8380. {
  8381. name: "Immense",
  8382. height: math.unit(200, "miles")
  8383. },
  8384. ]
  8385. ))
  8386. characterMakers.push(() => makeCharacter(
  8387. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8388. {
  8389. front: {
  8390. height: math.unit(6, "feet"),
  8391. weight: math.unit(180, "lbs"),
  8392. name: "Front",
  8393. image: {
  8394. source: "./media/characters/danni-rosie/front.svg",
  8395. extra: 1260 / 1128,
  8396. bottom: 0.022
  8397. }
  8398. },
  8399. },
  8400. [
  8401. {
  8402. name: "Micro",
  8403. height: math.unit(2, "inches"),
  8404. default: true
  8405. },
  8406. ]
  8407. ))
  8408. characterMakers.push(() => makeCharacter(
  8409. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8410. {
  8411. front: {
  8412. height: math.unit(5 + 9 / 12, "feet"),
  8413. weight: math.unit(220, "lb"),
  8414. name: "Front",
  8415. image: {
  8416. source: "./media/characters/samantha-kruse/front.svg",
  8417. extra: (985 / 935),
  8418. bottom: 0.03
  8419. }
  8420. },
  8421. frontUndressed: {
  8422. height: math.unit(5 + 9 / 12, "feet"),
  8423. weight: math.unit(220, "lb"),
  8424. name: "Front (Undressed)",
  8425. image: {
  8426. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8427. extra: (973 / 923),
  8428. bottom: 0.025
  8429. }
  8430. },
  8431. fat: {
  8432. height: math.unit(5 + 9 / 12, "feet"),
  8433. weight: math.unit(900, "lb"),
  8434. name: "Front (Fat)",
  8435. image: {
  8436. source: "./media/characters/samantha-kruse/fat.svg",
  8437. extra: 2688 / 2561
  8438. }
  8439. },
  8440. },
  8441. [
  8442. {
  8443. name: "Normal",
  8444. height: math.unit(5 + 9 / 12, "feet"),
  8445. default: true
  8446. }
  8447. ]
  8448. ))
  8449. characterMakers.push(() => makeCharacter(
  8450. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8451. {
  8452. back: {
  8453. height: math.unit(5 + 4 / 12, "feet"),
  8454. weight: math.unit(4963, "lb"),
  8455. name: "Back",
  8456. image: {
  8457. source: "./media/characters/amelia-rosie/back.svg",
  8458. extra: 1113 / 963,
  8459. bottom: 0.01
  8460. }
  8461. },
  8462. },
  8463. [
  8464. {
  8465. name: "Level 0",
  8466. height: math.unit(5 + 4 / 12, "feet")
  8467. },
  8468. {
  8469. name: "Level 1",
  8470. height: math.unit(164597, "feet"),
  8471. default: true
  8472. },
  8473. {
  8474. name: "Level 2",
  8475. height: math.unit(956243, "miles")
  8476. },
  8477. {
  8478. name: "Level 3",
  8479. height: math.unit(29421709423, "miles")
  8480. },
  8481. {
  8482. name: "Level 4",
  8483. height: math.unit(154, "lightyears")
  8484. },
  8485. {
  8486. name: "Level 5",
  8487. height: math.unit(4738272, "lightyears")
  8488. },
  8489. {
  8490. name: "Level 6",
  8491. height: math.unit(145787152896, "lightyears")
  8492. },
  8493. ]
  8494. ))
  8495. characterMakers.push(() => makeCharacter(
  8496. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8497. {
  8498. front: {
  8499. height: math.unit(5 + 11 / 12, "feet"),
  8500. weight: math.unit(65, "kg"),
  8501. name: "Front",
  8502. image: {
  8503. source: "./media/characters/rook-kitara/front.svg",
  8504. extra: 1347 / 1274,
  8505. bottom: 0.005
  8506. }
  8507. },
  8508. },
  8509. [
  8510. {
  8511. name: "Totally Unfair",
  8512. height: math.unit(1.8, "mm")
  8513. },
  8514. {
  8515. name: "Lap Rookie",
  8516. height: math.unit(1.4, "feet")
  8517. },
  8518. {
  8519. name: "Normal",
  8520. height: math.unit(5 + 11 / 12, "feet"),
  8521. default: true
  8522. },
  8523. {
  8524. name: "How Did This Happen",
  8525. height: math.unit(80, "miles")
  8526. }
  8527. ]
  8528. ))
  8529. characterMakers.push(() => makeCharacter(
  8530. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8531. {
  8532. front: {
  8533. height: math.unit(7, "feet"),
  8534. weight: math.unit(300, "lb"),
  8535. name: "Front",
  8536. image: {
  8537. source: "./media/characters/pisces/front.svg",
  8538. extra: 2255 / 2115,
  8539. bottom: 0.03
  8540. }
  8541. },
  8542. back: {
  8543. height: math.unit(7, "feet"),
  8544. weight: math.unit(300, "lb"),
  8545. name: "Back",
  8546. image: {
  8547. source: "./media/characters/pisces/back.svg",
  8548. extra: 2146 / 2055,
  8549. bottom: 0.04
  8550. }
  8551. },
  8552. },
  8553. [
  8554. {
  8555. name: "Normal",
  8556. height: math.unit(7, "feet"),
  8557. default: true
  8558. },
  8559. {
  8560. name: "Swimming Pool",
  8561. height: math.unit(12.2, "meters")
  8562. },
  8563. {
  8564. name: "Olympic Swimming Pool",
  8565. height: math.unit(56.3, "meters")
  8566. },
  8567. {
  8568. name: "Lake Superior",
  8569. height: math.unit(93900, "meters")
  8570. },
  8571. {
  8572. name: "Mediterranean Sea",
  8573. height: math.unit(644457, "meters")
  8574. },
  8575. {
  8576. name: "World's Oceans",
  8577. height: math.unit(4567491, "meters")
  8578. },
  8579. ]
  8580. ))
  8581. characterMakers.push(() => makeCharacter(
  8582. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8583. {
  8584. front: {
  8585. height: math.unit(2.3, "meters"),
  8586. weight: math.unit(120, "kg"),
  8587. name: "Front",
  8588. image: {
  8589. source: "./media/characters/zelas/front.svg"
  8590. }
  8591. },
  8592. side: {
  8593. height: math.unit(2.3, "meters"),
  8594. weight: math.unit(120, "kg"),
  8595. name: "Side",
  8596. image: {
  8597. source: "./media/characters/zelas/side.svg"
  8598. }
  8599. },
  8600. back: {
  8601. height: math.unit(2.3, "meters"),
  8602. weight: math.unit(120, "kg"),
  8603. name: "Back",
  8604. image: {
  8605. source: "./media/characters/zelas/back.svg"
  8606. }
  8607. },
  8608. foot: {
  8609. height: math.unit(1.116, "feet"),
  8610. name: "Foot",
  8611. image: {
  8612. source: "./media/characters/zelas/foot.svg"
  8613. }
  8614. },
  8615. },
  8616. [
  8617. {
  8618. name: "Normal",
  8619. height: math.unit(2.3, "meters")
  8620. },
  8621. {
  8622. name: "Macro",
  8623. height: math.unit(30, "meters"),
  8624. default: true
  8625. },
  8626. ]
  8627. ))
  8628. characterMakers.push(() => makeCharacter(
  8629. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8630. {
  8631. front: {
  8632. height: math.unit(1, "inch"),
  8633. weight: math.unit(0.21, "grams"),
  8634. name: "Front",
  8635. image: {
  8636. source: "./media/characters/talbot/front.svg",
  8637. extra: 594 / 544
  8638. }
  8639. },
  8640. },
  8641. [
  8642. {
  8643. name: "Micro",
  8644. height: math.unit(1, "inch"),
  8645. default: true
  8646. },
  8647. ]
  8648. ))
  8649. characterMakers.push(() => makeCharacter(
  8650. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8651. {
  8652. front: {
  8653. height: math.unit(3 + 3 / 12, "feet"),
  8654. weight: math.unit(51.8, "lb"),
  8655. name: "Front",
  8656. image: {
  8657. source: "./media/characters/fliss/front.svg",
  8658. extra: 840 / 640
  8659. }
  8660. },
  8661. },
  8662. [
  8663. {
  8664. name: "Teeny Tiny",
  8665. height: math.unit(1, "mm")
  8666. },
  8667. {
  8668. name: "Small",
  8669. height: math.unit(1, "inch"),
  8670. default: true
  8671. },
  8672. {
  8673. name: "Standard Sylveon",
  8674. height: math.unit(3 + 3 / 12, "feet")
  8675. },
  8676. {
  8677. name: "Large Nuisance",
  8678. height: math.unit(33, "feet")
  8679. },
  8680. {
  8681. name: "City Filler",
  8682. height: math.unit(3000, "feet")
  8683. },
  8684. {
  8685. name: "New Horizon",
  8686. height: math.unit(6000, "miles")
  8687. },
  8688. ]
  8689. ))
  8690. characterMakers.push(() => makeCharacter(
  8691. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8692. {
  8693. front: {
  8694. height: math.unit(5, "cm"),
  8695. weight: math.unit(1.94, "g"),
  8696. name: "Front",
  8697. image: {
  8698. source: "./media/characters/fleta/front.svg",
  8699. extra: 835 / 803
  8700. }
  8701. },
  8702. back: {
  8703. height: math.unit(5, "cm"),
  8704. weight: math.unit(1.94, "g"),
  8705. name: "Back",
  8706. image: {
  8707. source: "./media/characters/fleta/back.svg",
  8708. extra: 835 / 803
  8709. }
  8710. },
  8711. },
  8712. [
  8713. {
  8714. name: "Micro",
  8715. height: math.unit(5, "cm"),
  8716. default: true
  8717. },
  8718. ]
  8719. ))
  8720. characterMakers.push(() => makeCharacter(
  8721. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8722. {
  8723. front: {
  8724. height: math.unit(6, "feet"),
  8725. weight: math.unit(225, "lb"),
  8726. name: "Front",
  8727. image: {
  8728. source: "./media/characters/dominic/front.svg",
  8729. extra: 1770 / 1620,
  8730. bottom: 0.025
  8731. }
  8732. },
  8733. back: {
  8734. height: math.unit(6, "feet"),
  8735. weight: math.unit(225, "lb"),
  8736. name: "Back",
  8737. image: {
  8738. source: "./media/characters/dominic/back.svg",
  8739. extra: 1745 / 1620,
  8740. bottom: 0.065
  8741. }
  8742. },
  8743. },
  8744. [
  8745. {
  8746. name: "Nano",
  8747. height: math.unit(0.1, "mm")
  8748. },
  8749. {
  8750. name: "Micro-",
  8751. height: math.unit(1, "mm")
  8752. },
  8753. {
  8754. name: "Micro",
  8755. height: math.unit(4, "inches")
  8756. },
  8757. {
  8758. name: "Normal",
  8759. height: math.unit(6 + 4 / 12, "feet"),
  8760. default: true
  8761. },
  8762. {
  8763. name: "Macro",
  8764. height: math.unit(115, "feet")
  8765. },
  8766. {
  8767. name: "Macro+",
  8768. height: math.unit(955, "feet")
  8769. },
  8770. {
  8771. name: "Megamacro",
  8772. height: math.unit(8990, "feet")
  8773. },
  8774. {
  8775. name: "Gigmacro",
  8776. height: math.unit(9310, "miles")
  8777. },
  8778. {
  8779. name: "Teramacro",
  8780. height: math.unit(1567005010, "miles")
  8781. },
  8782. {
  8783. name: "Examacro",
  8784. height: math.unit(1425, "parsecs")
  8785. },
  8786. ]
  8787. ))
  8788. characterMakers.push(() => makeCharacter(
  8789. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8790. {
  8791. front: {
  8792. height: math.unit(400, "feet"),
  8793. weight: math.unit(44444444, "lb"),
  8794. name: "Front",
  8795. image: {
  8796. source: "./media/characters/major-colonel/front.svg"
  8797. }
  8798. },
  8799. back: {
  8800. height: math.unit(400, "feet"),
  8801. weight: math.unit(44444444, "lb"),
  8802. name: "Back",
  8803. image: {
  8804. source: "./media/characters/major-colonel/back.svg"
  8805. }
  8806. },
  8807. },
  8808. [
  8809. {
  8810. name: "Macro",
  8811. height: math.unit(400, "feet"),
  8812. default: true
  8813. },
  8814. ]
  8815. ))
  8816. characterMakers.push(() => makeCharacter(
  8817. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8818. {
  8819. catFront: {
  8820. height: math.unit(6, "feet"),
  8821. weight: math.unit(120, "lb"),
  8822. name: "Front (Cat Side)",
  8823. image: {
  8824. source: "./media/characters/axel-lycan/cat-front.svg",
  8825. extra: 430 / 402,
  8826. bottom: 43 / 472.35
  8827. }
  8828. },
  8829. catBack: {
  8830. height: math.unit(6, "feet"),
  8831. weight: math.unit(120, "lb"),
  8832. name: "Back (Cat Side)",
  8833. image: {
  8834. source: "./media/characters/axel-lycan/cat-back.svg",
  8835. extra: 447 / 419,
  8836. bottom: 23.3 / 469
  8837. }
  8838. },
  8839. wolfFront: {
  8840. height: math.unit(6, "feet"),
  8841. weight: math.unit(120, "lb"),
  8842. name: "Front (Wolf Side)",
  8843. image: {
  8844. source: "./media/characters/axel-lycan/wolf-front.svg",
  8845. extra: 485 / 456,
  8846. bottom: 19 / 504
  8847. }
  8848. },
  8849. wolfBack: {
  8850. height: math.unit(6, "feet"),
  8851. weight: math.unit(120, "lb"),
  8852. name: "Back (Wolf Side)",
  8853. image: {
  8854. source: "./media/characters/axel-lycan/wolf-back.svg",
  8855. extra: 475 / 438,
  8856. bottom: 39.2 / 514
  8857. }
  8858. },
  8859. },
  8860. [
  8861. {
  8862. name: "Macro",
  8863. height: math.unit(1, "km"),
  8864. default: true
  8865. },
  8866. ]
  8867. ))
  8868. characterMakers.push(() => makeCharacter(
  8869. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8870. {
  8871. front: {
  8872. height: math.unit(5 + 9 / 12, "feet"),
  8873. weight: math.unit(175, "lb"),
  8874. name: "Front",
  8875. image: {
  8876. source: "./media/characters/vanrel-hyena/front.svg",
  8877. extra: 1086 / 1010,
  8878. bottom: 0.04
  8879. }
  8880. },
  8881. },
  8882. [
  8883. {
  8884. name: "Normal",
  8885. height: math.unit(5 + 9 / 12, "feet"),
  8886. default: true
  8887. },
  8888. ]
  8889. ))
  8890. characterMakers.push(() => makeCharacter(
  8891. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8892. {
  8893. front: {
  8894. height: math.unit(6, "feet"),
  8895. weight: math.unit(103, "lb"),
  8896. name: "Front",
  8897. image: {
  8898. source: "./media/characters/abbott-absol/front.svg",
  8899. extra: 2010 / 1842
  8900. }
  8901. },
  8902. },
  8903. [
  8904. {
  8905. name: "Megamicro",
  8906. height: math.unit(0.1, "mm")
  8907. },
  8908. {
  8909. name: "Micro",
  8910. height: math.unit(1, "inch")
  8911. },
  8912. {
  8913. name: "Normal",
  8914. height: math.unit(6, "feet"),
  8915. default: true
  8916. },
  8917. ]
  8918. ))
  8919. characterMakers.push(() => makeCharacter(
  8920. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8921. {
  8922. front: {
  8923. height: math.unit(6, "feet"),
  8924. weight: math.unit(264, "lb"),
  8925. name: "Front",
  8926. image: {
  8927. source: "./media/characters/hector/front.svg",
  8928. extra: 2280 / 2130,
  8929. bottom: 0.07
  8930. }
  8931. },
  8932. },
  8933. [
  8934. {
  8935. name: "Normal",
  8936. height: math.unit(12.25, "foot"),
  8937. default: true
  8938. },
  8939. {
  8940. name: "Macro",
  8941. height: math.unit(160, "feet")
  8942. },
  8943. ]
  8944. ))
  8945. characterMakers.push(() => makeCharacter(
  8946. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8947. {
  8948. front: {
  8949. height: math.unit(6, "feet"),
  8950. weight: math.unit(150, "lb"),
  8951. name: "Front",
  8952. image: {
  8953. source: "./media/characters/sal/front.svg",
  8954. extra: 1846 / 1699,
  8955. bottom: 0.04
  8956. }
  8957. },
  8958. },
  8959. [
  8960. {
  8961. name: "Megamacro",
  8962. height: math.unit(10, "miles"),
  8963. default: true
  8964. },
  8965. ]
  8966. ))
  8967. characterMakers.push(() => makeCharacter(
  8968. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8969. {
  8970. front: {
  8971. height: math.unit(3, "meters"),
  8972. weight: math.unit(450, "kg"),
  8973. name: "front",
  8974. image: {
  8975. source: "./media/characters/ranger/front.svg",
  8976. extra: 2401 / 2243,
  8977. bottom: 0.05
  8978. }
  8979. },
  8980. },
  8981. [
  8982. {
  8983. name: "Normal",
  8984. height: math.unit(3, "meters"),
  8985. default: true
  8986. },
  8987. ]
  8988. ))
  8989. characterMakers.push(() => makeCharacter(
  8990. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8991. {
  8992. front: {
  8993. height: math.unit(14, "feet"),
  8994. weight: math.unit(800, "kg"),
  8995. name: "Front",
  8996. image: {
  8997. source: "./media/characters/theresa/front.svg",
  8998. extra: 3575 / 3346,
  8999. bottom: 0.03
  9000. }
  9001. },
  9002. },
  9003. [
  9004. {
  9005. name: "Normal",
  9006. height: math.unit(14, "feet"),
  9007. default: true
  9008. },
  9009. ]
  9010. ))
  9011. characterMakers.push(() => makeCharacter(
  9012. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9013. {
  9014. front: {
  9015. height: math.unit(6, "feet"),
  9016. weight: math.unit(3, "kg"),
  9017. name: "Front",
  9018. image: {
  9019. source: "./media/characters/ine/front.svg",
  9020. extra: 678 / 539,
  9021. bottom: 0.023
  9022. }
  9023. },
  9024. },
  9025. [
  9026. {
  9027. name: "Normal",
  9028. height: math.unit(2.265, "feet"),
  9029. default: true
  9030. },
  9031. ]
  9032. ))
  9033. characterMakers.push(() => makeCharacter(
  9034. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9035. {
  9036. front: {
  9037. height: math.unit(5, "feet"),
  9038. weight: math.unit(30, "kg"),
  9039. name: "Front",
  9040. image: {
  9041. source: "./media/characters/vial/front.svg",
  9042. extra: 1365 / 1277,
  9043. bottom: 0.04
  9044. }
  9045. },
  9046. },
  9047. [
  9048. {
  9049. name: "Normal",
  9050. height: math.unit(5, "feet"),
  9051. default: true
  9052. },
  9053. ]
  9054. ))
  9055. characterMakers.push(() => makeCharacter(
  9056. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9057. {
  9058. side: {
  9059. height: math.unit(3.4, "meters"),
  9060. weight: math.unit(1000, "lb"),
  9061. name: "Side",
  9062. image: {
  9063. source: "./media/characters/rovoska/side.svg",
  9064. extra: 4403 / 1515
  9065. }
  9066. },
  9067. },
  9068. [
  9069. {
  9070. name: "Normal",
  9071. height: math.unit(3.4, "meters"),
  9072. default: true
  9073. },
  9074. ]
  9075. ))
  9076. characterMakers.push(() => makeCharacter(
  9077. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9078. {
  9079. front: {
  9080. height: math.unit(8, "feet"),
  9081. weight: math.unit(315, "lb"),
  9082. name: "Front",
  9083. image: {
  9084. source: "./media/characters/gunner-rotthbauer/front.svg"
  9085. }
  9086. },
  9087. back: {
  9088. height: math.unit(8, "feet"),
  9089. weight: math.unit(315, "lb"),
  9090. name: "Back",
  9091. image: {
  9092. source: "./media/characters/gunner-rotthbauer/back.svg"
  9093. }
  9094. },
  9095. },
  9096. [
  9097. {
  9098. name: "Micro",
  9099. height: math.unit(3.5, "inches")
  9100. },
  9101. {
  9102. name: "Normal",
  9103. height: math.unit(8, "feet"),
  9104. default: true
  9105. },
  9106. {
  9107. name: "Macro",
  9108. height: math.unit(250, "feet")
  9109. },
  9110. {
  9111. name: "Megamacro",
  9112. height: math.unit(1, "AU")
  9113. },
  9114. ]
  9115. ))
  9116. characterMakers.push(() => makeCharacter(
  9117. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9118. {
  9119. front: {
  9120. height: math.unit(5 + 5 / 12, "feet"),
  9121. weight: math.unit(140, "lb"),
  9122. name: "Front",
  9123. image: {
  9124. source: "./media/characters/allatia/front.svg",
  9125. extra: 1227 / 1180,
  9126. bottom: 0.027
  9127. }
  9128. },
  9129. },
  9130. [
  9131. {
  9132. name: "Normal",
  9133. height: math.unit(5 + 5 / 12, "feet")
  9134. },
  9135. {
  9136. name: "Macro",
  9137. height: math.unit(250, "feet"),
  9138. default: true
  9139. },
  9140. {
  9141. name: "Megamacro",
  9142. height: math.unit(8, "miles")
  9143. }
  9144. ]
  9145. ))
  9146. characterMakers.push(() => makeCharacter(
  9147. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9148. {
  9149. front: {
  9150. height: math.unit(6, "feet"),
  9151. weight: math.unit(120, "lb"),
  9152. name: "Front",
  9153. image: {
  9154. source: "./media/characters/tene/front.svg",
  9155. extra: 1728 / 1578,
  9156. bottom: 0.022
  9157. }
  9158. },
  9159. stomping: {
  9160. height: math.unit(2.025, "meters"),
  9161. weight: math.unit(120, "lb"),
  9162. name: "Stomping",
  9163. image: {
  9164. source: "./media/characters/tene/stomping.svg",
  9165. extra: 938 / 873,
  9166. bottom: 0.01
  9167. }
  9168. },
  9169. sitting: {
  9170. height: math.unit(1, "meter"),
  9171. weight: math.unit(120, "lb"),
  9172. name: "Sitting",
  9173. image: {
  9174. source: "./media/characters/tene/sitting.svg",
  9175. extra: 437 / 415,
  9176. bottom: 0.1
  9177. }
  9178. },
  9179. feral: {
  9180. height: math.unit(3.9, "feet"),
  9181. weight: math.unit(250, "lb"),
  9182. name: "Feral",
  9183. image: {
  9184. source: "./media/characters/tene/feral.svg",
  9185. extra: 717 / 458,
  9186. bottom: 0.179
  9187. }
  9188. },
  9189. },
  9190. [
  9191. {
  9192. name: "Normal",
  9193. height: math.unit(6, "feet")
  9194. },
  9195. {
  9196. name: "Macro",
  9197. height: math.unit(300, "feet"),
  9198. default: true
  9199. },
  9200. {
  9201. name: "Megamacro",
  9202. height: math.unit(5, "miles")
  9203. },
  9204. ]
  9205. ))
  9206. characterMakers.push(() => makeCharacter(
  9207. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9208. {
  9209. side: {
  9210. height: math.unit(6, "feet"),
  9211. name: "Side",
  9212. image: {
  9213. source: "./media/characters/evander/side.svg",
  9214. extra: 877 / 477
  9215. }
  9216. },
  9217. },
  9218. [
  9219. {
  9220. name: "Normal",
  9221. height: math.unit(0.83, "meters"),
  9222. default: true
  9223. },
  9224. ]
  9225. ))
  9226. characterMakers.push(() => makeCharacter(
  9227. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9228. {
  9229. front: {
  9230. height: math.unit(12, "feet"),
  9231. weight: math.unit(1000, "lb"),
  9232. name: "Front",
  9233. image: {
  9234. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9235. extra: 1762 / 1611
  9236. }
  9237. },
  9238. back: {
  9239. height: math.unit(12, "feet"),
  9240. weight: math.unit(1000, "lb"),
  9241. name: "Back",
  9242. image: {
  9243. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9244. extra: 1762 / 1611
  9245. }
  9246. },
  9247. },
  9248. [
  9249. {
  9250. name: "Normal",
  9251. height: math.unit(12, "feet"),
  9252. default: true
  9253. },
  9254. {
  9255. name: "Kaiju",
  9256. height: math.unit(150, "feet")
  9257. },
  9258. ]
  9259. ))
  9260. characterMakers.push(() => makeCharacter(
  9261. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9262. {
  9263. front: {
  9264. height: math.unit(6, "feet"),
  9265. weight: math.unit(150, "lb"),
  9266. name: "Front",
  9267. image: {
  9268. source: "./media/characters/zero-alurus/front.svg"
  9269. }
  9270. },
  9271. back: {
  9272. height: math.unit(6, "feet"),
  9273. weight: math.unit(150, "lb"),
  9274. name: "Back",
  9275. image: {
  9276. source: "./media/characters/zero-alurus/back.svg"
  9277. }
  9278. },
  9279. },
  9280. [
  9281. {
  9282. name: "Normal",
  9283. height: math.unit(5 + 10 / 12, "feet")
  9284. },
  9285. {
  9286. name: "Macro",
  9287. height: math.unit(60, "feet"),
  9288. default: true
  9289. },
  9290. {
  9291. name: "Macro+",
  9292. height: math.unit(450, "feet")
  9293. },
  9294. ]
  9295. ))
  9296. characterMakers.push(() => makeCharacter(
  9297. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9298. {
  9299. front: {
  9300. height: math.unit(6, "feet"),
  9301. weight: math.unit(200, "lb"),
  9302. name: "Front",
  9303. image: {
  9304. source: "./media/characters/mega-shi/front.svg",
  9305. extra: 1279 / 1250,
  9306. bottom: 0.02
  9307. }
  9308. },
  9309. back: {
  9310. height: math.unit(6, "feet"),
  9311. weight: math.unit(200, "lb"),
  9312. name: "Back",
  9313. image: {
  9314. source: "./media/characters/mega-shi/back.svg",
  9315. extra: 1279 / 1250,
  9316. bottom: 0.02
  9317. }
  9318. },
  9319. },
  9320. [
  9321. {
  9322. name: "Micro",
  9323. height: math.unit(16 + 6 / 12, "feet")
  9324. },
  9325. {
  9326. name: "Third Dimension",
  9327. height: math.unit(40, "meters")
  9328. },
  9329. {
  9330. name: "Normal",
  9331. height: math.unit(660, "feet"),
  9332. default: true
  9333. },
  9334. {
  9335. name: "Megamacro",
  9336. height: math.unit(10, "miles")
  9337. },
  9338. {
  9339. name: "Planetary Launch",
  9340. height: math.unit(500, "miles")
  9341. },
  9342. {
  9343. name: "Interstellar",
  9344. height: math.unit(1e9, "miles")
  9345. },
  9346. {
  9347. name: "Leaving the Universe",
  9348. height: math.unit(1, "gigaparsec")
  9349. },
  9350. {
  9351. name: "Travelling Universes",
  9352. height: math.unit(30e15, "parsecs")
  9353. },
  9354. ]
  9355. ))
  9356. characterMakers.push(() => makeCharacter(
  9357. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9358. {
  9359. front: {
  9360. height: math.unit(6, "feet"),
  9361. weight: math.unit(150, "lb"),
  9362. name: "Front",
  9363. image: {
  9364. source: "./media/characters/odyssey/front.svg",
  9365. extra: 1782 / 1582,
  9366. bottom: 0.01
  9367. }
  9368. },
  9369. side: {
  9370. height: math.unit(5.7, "feet"),
  9371. weight: math.unit(140, "lb"),
  9372. name: "Side",
  9373. image: {
  9374. source: "./media/characters/odyssey/side.svg",
  9375. extra: 6462 / 5700
  9376. }
  9377. },
  9378. },
  9379. [
  9380. {
  9381. name: "Normal",
  9382. height: math.unit(5 + 4 / 12, "feet")
  9383. },
  9384. {
  9385. name: "Macro",
  9386. height: math.unit(1, "km")
  9387. },
  9388. {
  9389. name: "Megamacro",
  9390. height: math.unit(3000, "km")
  9391. },
  9392. {
  9393. name: "Gigamacro",
  9394. height: math.unit(1, "AU"),
  9395. default: true
  9396. },
  9397. {
  9398. name: "Omniversal",
  9399. height: math.unit(100e14, "lightyears")
  9400. },
  9401. ]
  9402. ))
  9403. characterMakers.push(() => makeCharacter(
  9404. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9405. {
  9406. front: {
  9407. height: math.unit(6, "feet"),
  9408. weight: math.unit(300, "lb"),
  9409. name: "Front",
  9410. image: {
  9411. source: "./media/characters/mekuto/front.svg",
  9412. extra: 921 / 832,
  9413. bottom: 0.03
  9414. }
  9415. },
  9416. hand: {
  9417. height: math.unit(6 / 10.24, "feet"),
  9418. name: "Hand",
  9419. image: {
  9420. source: "./media/characters/mekuto/hand.svg"
  9421. }
  9422. },
  9423. foot: {
  9424. height: math.unit(6 / 5.05, "feet"),
  9425. name: "Foot",
  9426. image: {
  9427. source: "./media/characters/mekuto/foot.svg"
  9428. }
  9429. },
  9430. },
  9431. [
  9432. {
  9433. name: "Minimicro",
  9434. height: math.unit(0.2, "inches")
  9435. },
  9436. {
  9437. name: "Micro",
  9438. height: math.unit(1.5, "inches")
  9439. },
  9440. {
  9441. name: "Normal",
  9442. height: math.unit(5 + 11 / 12, "feet"),
  9443. default: true
  9444. },
  9445. {
  9446. name: "Minimacro",
  9447. height: math.unit(17 + 9 / 12, "feet")
  9448. },
  9449. {
  9450. name: "Macro",
  9451. height: math.unit(177.5, "feet")
  9452. },
  9453. {
  9454. name: "Megamacro",
  9455. height: math.unit(152, "miles")
  9456. },
  9457. ]
  9458. ))
  9459. characterMakers.push(() => makeCharacter(
  9460. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9461. {
  9462. front: {
  9463. height: math.unit(6.5, "inches"),
  9464. weight: math.unit(13, "oz"),
  9465. name: "Front",
  9466. image: {
  9467. source: "./media/characters/dafydd-tomos/front.svg",
  9468. extra: 2990 / 2603,
  9469. bottom: 0.03
  9470. }
  9471. },
  9472. },
  9473. [
  9474. {
  9475. name: "Micro",
  9476. height: math.unit(6.5, "inches"),
  9477. default: true
  9478. },
  9479. ]
  9480. ))
  9481. characterMakers.push(() => makeCharacter(
  9482. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9483. {
  9484. front: {
  9485. height: math.unit(6, "feet"),
  9486. weight: math.unit(150, "lb"),
  9487. name: "Front",
  9488. image: {
  9489. source: "./media/characters/splinter/front.svg",
  9490. extra: 2990 / 2882,
  9491. bottom: 0.04
  9492. }
  9493. },
  9494. back: {
  9495. height: math.unit(6, "feet"),
  9496. weight: math.unit(150, "lb"),
  9497. name: "Back",
  9498. image: {
  9499. source: "./media/characters/splinter/back.svg",
  9500. extra: 2990 / 2882,
  9501. bottom: 0.04
  9502. }
  9503. },
  9504. },
  9505. [
  9506. {
  9507. name: "Normal",
  9508. height: math.unit(6, "feet")
  9509. },
  9510. {
  9511. name: "Macro",
  9512. height: math.unit(230, "meters"),
  9513. default: true
  9514. },
  9515. ]
  9516. ))
  9517. characterMakers.push(() => makeCharacter(
  9518. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9519. {
  9520. front: {
  9521. height: math.unit(4 + 10 / 12, "feet"),
  9522. weight: math.unit(480, "lb"),
  9523. name: "Front",
  9524. image: {
  9525. source: "./media/characters/snow-gabumon/front.svg",
  9526. extra: 1140 / 963,
  9527. bottom: 0.058
  9528. }
  9529. },
  9530. back: {
  9531. height: math.unit(4 + 10 / 12, "feet"),
  9532. weight: math.unit(480, "lb"),
  9533. name: "Back",
  9534. image: {
  9535. source: "./media/characters/snow-gabumon/back.svg",
  9536. extra: 1115 / 962,
  9537. bottom: 0.041
  9538. }
  9539. },
  9540. frontUndresed: {
  9541. height: math.unit(4 + 10 / 12, "feet"),
  9542. weight: math.unit(480, "lb"),
  9543. name: "Front (Undressed)",
  9544. image: {
  9545. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9546. extra: 1061 / 960,
  9547. bottom: 0.045
  9548. }
  9549. },
  9550. },
  9551. [
  9552. {
  9553. name: "Micro",
  9554. height: math.unit(1, "inch")
  9555. },
  9556. {
  9557. name: "Normal",
  9558. height: math.unit(4 + 10 / 12, "feet"),
  9559. default: true
  9560. },
  9561. {
  9562. name: "Macro",
  9563. height: math.unit(200, "feet")
  9564. },
  9565. {
  9566. name: "Megamacro",
  9567. height: math.unit(120, "miles")
  9568. },
  9569. {
  9570. name: "Gigamacro",
  9571. height: math.unit(9800, "miles")
  9572. },
  9573. ]
  9574. ))
  9575. characterMakers.push(() => makeCharacter(
  9576. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9577. {
  9578. front: {
  9579. height: math.unit(1.7, "meters"),
  9580. weight: math.unit(140, "lb"),
  9581. name: "Front",
  9582. image: {
  9583. source: "./media/characters/moody/front.svg",
  9584. extra: 3226 / 3007,
  9585. bottom: 0.087
  9586. }
  9587. },
  9588. },
  9589. [
  9590. {
  9591. name: "Micro",
  9592. height: math.unit(1, "mm")
  9593. },
  9594. {
  9595. name: "Normal",
  9596. height: math.unit(1.7, "meters"),
  9597. default: true
  9598. },
  9599. {
  9600. name: "Macro",
  9601. height: math.unit(80, "meters")
  9602. },
  9603. {
  9604. name: "Macro+",
  9605. height: math.unit(500, "meters")
  9606. },
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9611. {
  9612. front: {
  9613. height: math.unit(6, "feet"),
  9614. weight: math.unit(150, "lb"),
  9615. name: "Front",
  9616. image: {
  9617. source: "./media/characters/zyas/front.svg",
  9618. extra: 1180 / 1120,
  9619. bottom: 0.045
  9620. }
  9621. },
  9622. },
  9623. [
  9624. {
  9625. name: "Normal",
  9626. height: math.unit(10, "feet"),
  9627. default: true
  9628. },
  9629. {
  9630. name: "Macro",
  9631. height: math.unit(500, "feet")
  9632. },
  9633. {
  9634. name: "Megamacro",
  9635. height: math.unit(5, "miles")
  9636. },
  9637. {
  9638. name: "Teramacro",
  9639. height: math.unit(150000, "miles")
  9640. },
  9641. ]
  9642. ))
  9643. characterMakers.push(() => makeCharacter(
  9644. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9645. {
  9646. front: {
  9647. height: math.unit(6, "feet"),
  9648. weight: math.unit(150, "lb"),
  9649. name: "Front",
  9650. image: {
  9651. source: "./media/characters/cuon/front.svg",
  9652. extra: 1390 / 1320,
  9653. bottom: 0.008
  9654. }
  9655. },
  9656. },
  9657. [
  9658. {
  9659. name: "Micro",
  9660. height: math.unit(3, "inches")
  9661. },
  9662. {
  9663. name: "Normal",
  9664. height: math.unit(18 + 9 / 12, "feet"),
  9665. default: true
  9666. },
  9667. {
  9668. name: "Macro",
  9669. height: math.unit(360, "feet")
  9670. },
  9671. {
  9672. name: "Megamacro",
  9673. height: math.unit(360, "miles")
  9674. },
  9675. ]
  9676. ))
  9677. characterMakers.push(() => makeCharacter(
  9678. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9679. {
  9680. front: {
  9681. height: math.unit(2.4, "meters"),
  9682. weight: math.unit(70, "kg"),
  9683. name: "Front",
  9684. image: {
  9685. source: "./media/characters/nyanuxk/front.svg",
  9686. extra: 1172 / 1084,
  9687. bottom: 0.065
  9688. }
  9689. },
  9690. side: {
  9691. height: math.unit(2.4, "meters"),
  9692. weight: math.unit(70, "kg"),
  9693. name: "Side",
  9694. image: {
  9695. source: "./media/characters/nyanuxk/side.svg",
  9696. extra: 1190 / 1132,
  9697. bottom: 0.007
  9698. }
  9699. },
  9700. back: {
  9701. height: math.unit(2.4, "meters"),
  9702. weight: math.unit(70, "kg"),
  9703. name: "Back",
  9704. image: {
  9705. source: "./media/characters/nyanuxk/back.svg",
  9706. extra: 1200 / 1141,
  9707. bottom: 0.015
  9708. }
  9709. },
  9710. foot: {
  9711. height: math.unit(0.52, "meters"),
  9712. name: "Foot",
  9713. image: {
  9714. source: "./media/characters/nyanuxk/foot.svg"
  9715. }
  9716. },
  9717. },
  9718. [
  9719. {
  9720. name: "Micro",
  9721. height: math.unit(2, "cm")
  9722. },
  9723. {
  9724. name: "Normal",
  9725. height: math.unit(2.4, "meters"),
  9726. default: true
  9727. },
  9728. {
  9729. name: "Smaller Macro",
  9730. height: math.unit(120, "meters")
  9731. },
  9732. {
  9733. name: "Bigger Macro",
  9734. height: math.unit(1.2, "km")
  9735. },
  9736. {
  9737. name: "Megamacro",
  9738. height: math.unit(15, "kilometers")
  9739. },
  9740. {
  9741. name: "Gigamacro",
  9742. height: math.unit(2000, "km")
  9743. },
  9744. {
  9745. name: "Teramacro",
  9746. height: math.unit(500000, "km")
  9747. },
  9748. ]
  9749. ))
  9750. characterMakers.push(() => makeCharacter(
  9751. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9752. {
  9753. side: {
  9754. height: math.unit(6, "feet"),
  9755. name: "Side",
  9756. image: {
  9757. source: "./media/characters/ailbhe/side.svg",
  9758. extra: 757 / 464,
  9759. bottom: 0.041
  9760. }
  9761. },
  9762. },
  9763. [
  9764. {
  9765. name: "Normal",
  9766. height: math.unit(1.07, "meters"),
  9767. default: true
  9768. },
  9769. ]
  9770. ))
  9771. characterMakers.push(() => makeCharacter(
  9772. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9773. {
  9774. front: {
  9775. height: math.unit(6, "feet"),
  9776. weight: math.unit(120, "kg"),
  9777. name: "Front",
  9778. image: {
  9779. source: "./media/characters/zevulfius/front.svg",
  9780. extra: 965 / 903
  9781. }
  9782. },
  9783. side: {
  9784. height: math.unit(6, "feet"),
  9785. weight: math.unit(120, "kg"),
  9786. name: "Side",
  9787. image: {
  9788. source: "./media/characters/zevulfius/side.svg",
  9789. extra: 939 / 900
  9790. }
  9791. },
  9792. back: {
  9793. height: math.unit(6, "feet"),
  9794. weight: math.unit(120, "kg"),
  9795. name: "Back",
  9796. image: {
  9797. source: "./media/characters/zevulfius/back.svg",
  9798. extra: 918 / 854,
  9799. bottom: 0.005
  9800. }
  9801. },
  9802. foot: {
  9803. height: math.unit(6 / 3.72, "feet"),
  9804. name: "Foot",
  9805. image: {
  9806. source: "./media/characters/zevulfius/foot.svg"
  9807. }
  9808. },
  9809. },
  9810. [
  9811. {
  9812. name: "Macro",
  9813. height: math.unit(750, "meters")
  9814. },
  9815. {
  9816. name: "Megamacro",
  9817. height: math.unit(20, "km"),
  9818. default: true
  9819. },
  9820. {
  9821. name: "Gigamacro",
  9822. height: math.unit(2000, "km")
  9823. },
  9824. {
  9825. name: "Teramacro",
  9826. height: math.unit(250000, "km")
  9827. },
  9828. ]
  9829. ))
  9830. characterMakers.push(() => makeCharacter(
  9831. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9832. {
  9833. front: {
  9834. height: math.unit(100, "feet"),
  9835. weight: math.unit(350, "kg"),
  9836. name: "Front",
  9837. image: {
  9838. source: "./media/characters/rikes/front.svg",
  9839. extra: 1565 / 1483,
  9840. bottom: 0.017
  9841. }
  9842. },
  9843. },
  9844. [
  9845. {
  9846. name: "Macro",
  9847. height: math.unit(100, "feet"),
  9848. default: true
  9849. },
  9850. ]
  9851. ))
  9852. characterMakers.push(() => makeCharacter(
  9853. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9854. {
  9855. anthro: {
  9856. height: math.unit(8, "feet"),
  9857. weight: math.unit(120, "kg"),
  9858. name: "Anthro",
  9859. image: {
  9860. source: "./media/characters/adam-silver-mane/anthro.svg",
  9861. extra: 5743 / 5339,
  9862. bottom: 0.07
  9863. }
  9864. },
  9865. taur: {
  9866. height: math.unit(16, "feet"),
  9867. weight: math.unit(1500, "kg"),
  9868. name: "Taur",
  9869. image: {
  9870. source: "./media/characters/adam-silver-mane/taur.svg",
  9871. extra: 1713 / 1571,
  9872. bottom: 0.01
  9873. }
  9874. },
  9875. },
  9876. [
  9877. {
  9878. name: "Normal",
  9879. height: math.unit(8, "feet")
  9880. },
  9881. {
  9882. name: "Minimacro",
  9883. height: math.unit(80, "feet")
  9884. },
  9885. {
  9886. name: "Macro",
  9887. height: math.unit(800, "feet"),
  9888. default: true
  9889. },
  9890. {
  9891. name: "Megamacro",
  9892. height: math.unit(8000, "feet")
  9893. },
  9894. {
  9895. name: "Gigamacro",
  9896. height: math.unit(800, "miles")
  9897. },
  9898. {
  9899. name: "Teramacro",
  9900. height: math.unit(80000, "miles")
  9901. },
  9902. {
  9903. name: "Celestial",
  9904. height: math.unit(8e6, "miles")
  9905. },
  9906. {
  9907. name: "Star Dragon",
  9908. height: math.unit(800000, "parsecs")
  9909. },
  9910. {
  9911. name: "Godly",
  9912. height: math.unit(800, "teraparsecs")
  9913. },
  9914. ]
  9915. ))
  9916. characterMakers.push(() => makeCharacter(
  9917. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9918. {
  9919. front: {
  9920. height: math.unit(6, "feet"),
  9921. weight: math.unit(150, "lb"),
  9922. name: "Front",
  9923. image: {
  9924. source: "./media/characters/ky'owin/front.svg",
  9925. extra: 3888 / 3068,
  9926. bottom: 0.015
  9927. }
  9928. },
  9929. },
  9930. [
  9931. {
  9932. name: "Normal",
  9933. height: math.unit(6 + 8 / 12, "feet")
  9934. },
  9935. {
  9936. name: "Large",
  9937. height: math.unit(68, "feet")
  9938. },
  9939. {
  9940. name: "Macro",
  9941. height: math.unit(132, "feet")
  9942. },
  9943. {
  9944. name: "Macro+",
  9945. height: math.unit(340, "feet")
  9946. },
  9947. {
  9948. name: "Macro++",
  9949. height: math.unit(680, "feet"),
  9950. default: true
  9951. },
  9952. {
  9953. name: "Megamacro",
  9954. height: math.unit(1, "mile")
  9955. },
  9956. {
  9957. name: "Megamacro+",
  9958. height: math.unit(10, "miles")
  9959. },
  9960. ]
  9961. ))
  9962. characterMakers.push(() => makeCharacter(
  9963. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9964. {
  9965. front: {
  9966. height: math.unit(4, "feet"),
  9967. weight: math.unit(50, "lb"),
  9968. name: "Front",
  9969. image: {
  9970. source: "./media/characters/mal/front.svg",
  9971. extra: 785 / 724,
  9972. bottom: 0.07
  9973. }
  9974. },
  9975. },
  9976. [
  9977. {
  9978. name: "Micro",
  9979. height: math.unit(4, "inches")
  9980. },
  9981. {
  9982. name: "Normal",
  9983. height: math.unit(4, "feet"),
  9984. default: true
  9985. },
  9986. {
  9987. name: "Macro",
  9988. height: math.unit(200, "feet")
  9989. },
  9990. ]
  9991. ))
  9992. characterMakers.push(() => makeCharacter(
  9993. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9994. {
  9995. front: {
  9996. height: math.unit(6, "feet"),
  9997. weight: math.unit(150, "lb"),
  9998. name: "Front",
  9999. image: {
  10000. source: "./media/characters/jordan-deware/front.svg",
  10001. extra: 1191 / 1012
  10002. }
  10003. },
  10004. },
  10005. [
  10006. {
  10007. name: "Nano",
  10008. height: math.unit(0.01, "mm")
  10009. },
  10010. {
  10011. name: "Minimicro",
  10012. height: math.unit(1, "mm")
  10013. },
  10014. {
  10015. name: "Micro",
  10016. height: math.unit(0.5, "inches")
  10017. },
  10018. {
  10019. name: "Normal",
  10020. height: math.unit(4, "feet"),
  10021. default: true
  10022. },
  10023. {
  10024. name: "Minimacro",
  10025. height: math.unit(40, "meters")
  10026. },
  10027. {
  10028. name: "Small Macro",
  10029. height: math.unit(400, "meters")
  10030. },
  10031. {
  10032. name: "Macro",
  10033. height: math.unit(4, "miles")
  10034. },
  10035. {
  10036. name: "Megamacro",
  10037. height: math.unit(40, "miles")
  10038. },
  10039. {
  10040. name: "Megamacro+",
  10041. height: math.unit(400, "miles")
  10042. },
  10043. {
  10044. name: "Gigamacro",
  10045. height: math.unit(400000, "miles")
  10046. },
  10047. ]
  10048. ))
  10049. characterMakers.push(() => makeCharacter(
  10050. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10051. {
  10052. side: {
  10053. height: math.unit(6, "feet"),
  10054. weight: math.unit(150, "lb"),
  10055. name: "Side",
  10056. image: {
  10057. source: "./media/characters/kimiko/side.svg",
  10058. extra: 600 / 358
  10059. }
  10060. },
  10061. },
  10062. [
  10063. {
  10064. name: "Normal",
  10065. height: math.unit(15, "feet"),
  10066. default: true
  10067. },
  10068. {
  10069. name: "Macro",
  10070. height: math.unit(220, "feet")
  10071. },
  10072. {
  10073. name: "Macro+",
  10074. height: math.unit(1450, "feet")
  10075. },
  10076. {
  10077. name: "Megamacro",
  10078. height: math.unit(11500, "feet")
  10079. },
  10080. {
  10081. name: "Gigamacro",
  10082. height: math.unit(9500, "miles")
  10083. },
  10084. {
  10085. name: "Teramacro",
  10086. height: math.unit(2208005005, "miles")
  10087. },
  10088. {
  10089. name: "Examacro",
  10090. height: math.unit(2750, "parsecs")
  10091. },
  10092. {
  10093. name: "Zettamacro",
  10094. height: math.unit(101500, "parsecs")
  10095. },
  10096. ]
  10097. ))
  10098. characterMakers.push(() => makeCharacter(
  10099. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10100. {
  10101. front: {
  10102. height: math.unit(6, "feet"),
  10103. weight: math.unit(70, "kg"),
  10104. name: "Front",
  10105. image: {
  10106. source: "./media/characters/andrew-sleepy/front.svg"
  10107. }
  10108. },
  10109. side: {
  10110. height: math.unit(6, "feet"),
  10111. weight: math.unit(70, "kg"),
  10112. name: "Side",
  10113. image: {
  10114. source: "./media/characters/andrew-sleepy/side.svg"
  10115. }
  10116. },
  10117. },
  10118. [
  10119. {
  10120. name: "Micro",
  10121. height: math.unit(1, "mm"),
  10122. default: true
  10123. },
  10124. ]
  10125. ))
  10126. characterMakers.push(() => makeCharacter(
  10127. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10128. {
  10129. front: {
  10130. height: math.unit(6, "feet"),
  10131. weight: math.unit(150, "lb"),
  10132. name: "Front",
  10133. image: {
  10134. source: "./media/characters/judio/front.svg",
  10135. extra: 1258 / 1110
  10136. }
  10137. },
  10138. },
  10139. [
  10140. {
  10141. name: "Normal",
  10142. height: math.unit(5 + 6 / 12, "feet")
  10143. },
  10144. {
  10145. name: "Macro",
  10146. height: math.unit(1000, "feet"),
  10147. default: true
  10148. },
  10149. {
  10150. name: "Megamacro",
  10151. height: math.unit(10, "miles")
  10152. },
  10153. ]
  10154. ))
  10155. characterMakers.push(() => makeCharacter(
  10156. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10157. {
  10158. front: {
  10159. height: math.unit(6, "feet"),
  10160. weight: math.unit(68, "kg"),
  10161. name: "Front",
  10162. image: {
  10163. source: "./media/characters/nomaxice/front.svg",
  10164. extra: 1498 / 1073,
  10165. bottom: 0.075
  10166. }
  10167. },
  10168. foot: {
  10169. height: math.unit(1.1, "feet"),
  10170. name: "Foot",
  10171. image: {
  10172. source: "./media/characters/nomaxice/foot.svg"
  10173. }
  10174. },
  10175. },
  10176. [
  10177. {
  10178. name: "Micro",
  10179. height: math.unit(8, "cm")
  10180. },
  10181. {
  10182. name: "Norm",
  10183. height: math.unit(1.82, "m")
  10184. },
  10185. {
  10186. name: "Norm+",
  10187. height: math.unit(8.8, "feet")
  10188. },
  10189. {
  10190. name: "Big",
  10191. height: math.unit(8, "meters"),
  10192. default: true
  10193. },
  10194. {
  10195. name: "Macro",
  10196. height: math.unit(18, "meters")
  10197. },
  10198. {
  10199. name: "Macro+",
  10200. height: math.unit(88, "meters")
  10201. },
  10202. ]
  10203. ))
  10204. characterMakers.push(() => makeCharacter(
  10205. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10206. {
  10207. front: {
  10208. height: math.unit(12, "feet"),
  10209. weight: math.unit(1.5, "tons"),
  10210. name: "Front",
  10211. image: {
  10212. source: "./media/characters/dydros/front.svg",
  10213. extra: 863 / 800,
  10214. bottom: 0.015
  10215. }
  10216. },
  10217. back: {
  10218. height: math.unit(12, "feet"),
  10219. weight: math.unit(1.5, "tons"),
  10220. name: "Back",
  10221. image: {
  10222. source: "./media/characters/dydros/back.svg",
  10223. extra: 900 / 843,
  10224. bottom: 0.005
  10225. }
  10226. },
  10227. },
  10228. [
  10229. {
  10230. name: "Normal",
  10231. height: math.unit(12, "feet"),
  10232. default: true
  10233. },
  10234. ]
  10235. ))
  10236. characterMakers.push(() => makeCharacter(
  10237. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10238. {
  10239. front: {
  10240. height: math.unit(6, "feet"),
  10241. weight: math.unit(100, "kg"),
  10242. name: "Front",
  10243. image: {
  10244. source: "./media/characters/riggi/front.svg",
  10245. extra: 5787 / 5303
  10246. }
  10247. },
  10248. hyper: {
  10249. height: math.unit(6 * 5 / 3, "feet"),
  10250. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10251. name: "Hyper",
  10252. image: {
  10253. source: "./media/characters/riggi/hyper.svg",
  10254. extra: 3595 / 3485
  10255. }
  10256. },
  10257. },
  10258. [
  10259. {
  10260. name: "Small Macro",
  10261. height: math.unit(50, "feet")
  10262. },
  10263. {
  10264. name: "Default",
  10265. height: math.unit(200, "feet"),
  10266. default: true
  10267. },
  10268. {
  10269. name: "Loom",
  10270. height: math.unit(10000, "feet")
  10271. },
  10272. {
  10273. name: "Cruising Altitude",
  10274. height: math.unit(30000, "feet")
  10275. },
  10276. {
  10277. name: "Megamacro",
  10278. height: math.unit(100, "miles")
  10279. },
  10280. {
  10281. name: "Continent Sized",
  10282. height: math.unit(2800, "miles")
  10283. },
  10284. {
  10285. name: "Earth Sized",
  10286. height: math.unit(8000, "miles")
  10287. },
  10288. ]
  10289. ))
  10290. characterMakers.push(() => makeCharacter(
  10291. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10292. {
  10293. front: {
  10294. height: math.unit(6, "feet"),
  10295. weight: math.unit(250, "lb"),
  10296. name: "Front",
  10297. image: {
  10298. source: "./media/characters/alexi/front.svg",
  10299. extra: 3483 / 3291,
  10300. bottom: 0.04
  10301. }
  10302. },
  10303. back: {
  10304. height: math.unit(6, "feet"),
  10305. weight: math.unit(250, "lb"),
  10306. name: "Back",
  10307. image: {
  10308. source: "./media/characters/alexi/back.svg",
  10309. extra: 3533 / 3356,
  10310. bottom: 0.021
  10311. }
  10312. },
  10313. frontTransforming: {
  10314. height: math.unit(8.58, "feet"),
  10315. weight: math.unit(1300, "lb"),
  10316. name: "Transforming",
  10317. image: {
  10318. source: "./media/characters/alexi/front-transforming.svg",
  10319. extra: 437 / 409,
  10320. bottom: 19 / 458.66
  10321. }
  10322. },
  10323. frontTransformed: {
  10324. height: math.unit(12.5, "feet"),
  10325. weight: math.unit(4000, "lb"),
  10326. name: "Transformed",
  10327. image: {
  10328. source: "./media/characters/alexi/front-transformed.svg",
  10329. extra: 639 / 614,
  10330. bottom: 30.55 / 671
  10331. }
  10332. },
  10333. },
  10334. [
  10335. {
  10336. name: "Normal",
  10337. height: math.unit(14, "feet"),
  10338. default: true
  10339. },
  10340. {
  10341. name: "Minimacro",
  10342. height: math.unit(30, "meters")
  10343. },
  10344. {
  10345. name: "Macro",
  10346. height: math.unit(500, "meters")
  10347. },
  10348. {
  10349. name: "Megamacro",
  10350. height: math.unit(9000, "km")
  10351. },
  10352. {
  10353. name: "Teramacro",
  10354. height: math.unit(384000, "km")
  10355. },
  10356. ]
  10357. ))
  10358. characterMakers.push(() => makeCharacter(
  10359. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10360. {
  10361. front: {
  10362. height: math.unit(6, "feet"),
  10363. weight: math.unit(150, "lb"),
  10364. name: "Front",
  10365. image: {
  10366. source: "./media/characters/kayroo/front.svg",
  10367. extra: 1153 / 1038,
  10368. bottom: 0.06
  10369. }
  10370. },
  10371. foot: {
  10372. height: math.unit(6, "feet"),
  10373. weight: math.unit(150, "lb"),
  10374. name: "Foot",
  10375. image: {
  10376. source: "./media/characters/kayroo/foot.svg"
  10377. }
  10378. },
  10379. },
  10380. [
  10381. {
  10382. name: "Normal",
  10383. height: math.unit(8, "feet"),
  10384. default: true
  10385. },
  10386. {
  10387. name: "Minimacro",
  10388. height: math.unit(250, "feet")
  10389. },
  10390. {
  10391. name: "Macro",
  10392. height: math.unit(2800, "feet")
  10393. },
  10394. {
  10395. name: "Megamacro",
  10396. height: math.unit(5200, "feet")
  10397. },
  10398. {
  10399. name: "Gigamacro",
  10400. height: math.unit(27000, "feet")
  10401. },
  10402. {
  10403. name: "Omega",
  10404. height: math.unit(45000, "feet")
  10405. },
  10406. ]
  10407. ))
  10408. characterMakers.push(() => makeCharacter(
  10409. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10410. {
  10411. front: {
  10412. height: math.unit(18, "feet"),
  10413. weight: math.unit(5800, "lb"),
  10414. name: "Front",
  10415. image: {
  10416. source: "./media/characters/rhys/front.svg",
  10417. extra: 3386 / 3090,
  10418. bottom: 0.07
  10419. }
  10420. },
  10421. },
  10422. [
  10423. {
  10424. name: "Normal",
  10425. height: math.unit(18, "feet"),
  10426. default: true
  10427. },
  10428. {
  10429. name: "Working Size",
  10430. height: math.unit(200, "feet")
  10431. },
  10432. {
  10433. name: "Demolition Size",
  10434. height: math.unit(2000, "feet")
  10435. },
  10436. {
  10437. name: "Maximum Licensed Size",
  10438. height: math.unit(5, "miles")
  10439. },
  10440. {
  10441. name: "Maximum Observed Size",
  10442. height: math.unit(10, "yottameters")
  10443. },
  10444. ]
  10445. ))
  10446. characterMakers.push(() => makeCharacter(
  10447. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10448. {
  10449. front: {
  10450. height: math.unit(6, "feet"),
  10451. weight: math.unit(250, "lb"),
  10452. name: "Front",
  10453. image: {
  10454. source: "./media/characters/toto/front.svg",
  10455. extra: 527 / 479,
  10456. bottom: 0.05
  10457. }
  10458. },
  10459. },
  10460. [
  10461. {
  10462. name: "Micro",
  10463. height: math.unit(3, "feet")
  10464. },
  10465. {
  10466. name: "Normal",
  10467. height: math.unit(10, "feet")
  10468. },
  10469. {
  10470. name: "Macro",
  10471. height: math.unit(150, "feet"),
  10472. default: true
  10473. },
  10474. {
  10475. name: "Megamacro",
  10476. height: math.unit(1200, "feet")
  10477. },
  10478. ]
  10479. ))
  10480. characterMakers.push(() => makeCharacter(
  10481. { name: "King", species: ["lion"], tags: ["anthro"] },
  10482. {
  10483. back: {
  10484. height: math.unit(6, "feet"),
  10485. weight: math.unit(150, "lb"),
  10486. name: "Back",
  10487. image: {
  10488. source: "./media/characters/king/back.svg"
  10489. }
  10490. },
  10491. },
  10492. [
  10493. {
  10494. name: "Micro",
  10495. height: math.unit(2, "inches")
  10496. },
  10497. {
  10498. name: "Normal",
  10499. height: math.unit(8, "feet")
  10500. },
  10501. {
  10502. name: "Macro",
  10503. height: math.unit(200, "feet"),
  10504. default: true
  10505. },
  10506. {
  10507. name: "Megamacro",
  10508. height: math.unit(50, "miles")
  10509. },
  10510. ]
  10511. ))
  10512. characterMakers.push(() => makeCharacter(
  10513. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10514. {
  10515. anthro: {
  10516. height: math.unit(6 + 5 / 12, "feet"),
  10517. weight: math.unit(280, "lb"),
  10518. name: "Anthro",
  10519. image: {
  10520. source: "./media/characters/cordite/anthro.svg",
  10521. extra: 1986 / 1905,
  10522. bottom: 0.025
  10523. }
  10524. },
  10525. feral: {
  10526. height: math.unit(2, "feet"),
  10527. weight: math.unit(90, "lb"),
  10528. name: "Feral",
  10529. image: {
  10530. source: "./media/characters/cordite/feral.svg",
  10531. extra: 1260 / 755,
  10532. bottom: 0.05
  10533. }
  10534. },
  10535. },
  10536. [
  10537. {
  10538. name: "Normal",
  10539. height: math.unit(6 + 5 / 12, "feet"),
  10540. default: true
  10541. },
  10542. ]
  10543. ))
  10544. characterMakers.push(() => makeCharacter(
  10545. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10546. {
  10547. front: {
  10548. height: math.unit(6, "feet"),
  10549. weight: math.unit(150, "lb"),
  10550. name: "Front",
  10551. image: {
  10552. source: "./media/characters/pianostrong/front.svg",
  10553. extra: 6577 / 6254,
  10554. bottom: 0.02
  10555. }
  10556. },
  10557. side: {
  10558. height: math.unit(6, "feet"),
  10559. weight: math.unit(150, "lb"),
  10560. name: "Side",
  10561. image: {
  10562. source: "./media/characters/pianostrong/side.svg",
  10563. extra: 6106 / 5730
  10564. }
  10565. },
  10566. back: {
  10567. height: math.unit(6, "feet"),
  10568. weight: math.unit(150, "lb"),
  10569. name: "Back",
  10570. image: {
  10571. source: "./media/characters/pianostrong/back.svg",
  10572. extra: 6085 / 5733,
  10573. bottom: 0.01
  10574. }
  10575. },
  10576. },
  10577. [
  10578. {
  10579. name: "Macro",
  10580. height: math.unit(100, "feet")
  10581. },
  10582. {
  10583. name: "Macro+",
  10584. height: math.unit(300, "feet"),
  10585. default: true
  10586. },
  10587. {
  10588. name: "Macro++",
  10589. height: math.unit(1000, "feet")
  10590. },
  10591. ]
  10592. ))
  10593. characterMakers.push(() => makeCharacter(
  10594. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10595. {
  10596. front: {
  10597. height: math.unit(6, "feet"),
  10598. weight: math.unit(150, "lb"),
  10599. name: "Front",
  10600. image: {
  10601. source: "./media/characters/kona/front.svg",
  10602. extra: 2960 / 2629,
  10603. bottom: 0.005
  10604. }
  10605. },
  10606. },
  10607. [
  10608. {
  10609. name: "Normal",
  10610. height: math.unit(11 + 8 / 12, "feet")
  10611. },
  10612. {
  10613. name: "Macro",
  10614. height: math.unit(850, "feet"),
  10615. default: true
  10616. },
  10617. {
  10618. name: "Macro+",
  10619. height: math.unit(1.5, "km"),
  10620. default: true
  10621. },
  10622. {
  10623. name: "Megamacro",
  10624. height: math.unit(80, "miles")
  10625. },
  10626. {
  10627. name: "Gigamacro",
  10628. height: math.unit(3500, "miles")
  10629. },
  10630. ]
  10631. ))
  10632. characterMakers.push(() => makeCharacter(
  10633. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10634. {
  10635. side: {
  10636. height: math.unit(1.9, "meters"),
  10637. weight: math.unit(326, "kg"),
  10638. name: "Side",
  10639. image: {
  10640. source: "./media/characters/levi/side.svg",
  10641. extra: 1704 / 1334,
  10642. bottom: 0.02
  10643. }
  10644. },
  10645. },
  10646. [
  10647. {
  10648. name: "Normal",
  10649. height: math.unit(1.9, "meters"),
  10650. default: true
  10651. },
  10652. {
  10653. name: "Macro",
  10654. height: math.unit(20, "meters")
  10655. },
  10656. {
  10657. name: "Macro+",
  10658. height: math.unit(200, "meters")
  10659. },
  10660. {
  10661. name: "Megamacro",
  10662. height: math.unit(2, "km")
  10663. },
  10664. {
  10665. name: "Megamacro+",
  10666. height: math.unit(20, "km")
  10667. },
  10668. {
  10669. name: "Gigamacro",
  10670. height: math.unit(2500, "km")
  10671. },
  10672. {
  10673. name: "Gigamacro+",
  10674. height: math.unit(120000, "km")
  10675. },
  10676. {
  10677. name: "Teramacro",
  10678. height: math.unit(7.77e6, "km")
  10679. },
  10680. ]
  10681. ))
  10682. characterMakers.push(() => makeCharacter(
  10683. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10684. {
  10685. front: {
  10686. height: math.unit(6 + 4 / 12, "feet"),
  10687. weight: math.unit(188, "lb"),
  10688. name: "Front",
  10689. image: {
  10690. source: "./media/characters/bmc/front.svg",
  10691. extra: 1067 / 1022,
  10692. bottom: 0.047
  10693. }
  10694. },
  10695. },
  10696. [
  10697. {
  10698. name: "Human-sized",
  10699. height: math.unit(6 + 4 / 12, "feet")
  10700. },
  10701. {
  10702. name: "Small",
  10703. height: math.unit(250, "feet")
  10704. },
  10705. {
  10706. name: "Normal",
  10707. height: math.unit(1250, "feet"),
  10708. default: true
  10709. },
  10710. {
  10711. name: "Good Day",
  10712. height: math.unit(88, "miles")
  10713. },
  10714. {
  10715. name: "Largest Measured Size",
  10716. height: math.unit(11.2e6, "lightyears")
  10717. },
  10718. ]
  10719. ))
  10720. characterMakers.push(() => makeCharacter(
  10721. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10722. {
  10723. front: {
  10724. height: math.unit(20, "feet"),
  10725. weight: math.unit(2016, "kg"),
  10726. name: "Front",
  10727. image: {
  10728. source: "./media/characters/sven-the-kaiju/front.svg",
  10729. extra: 1479 / 1449,
  10730. bottom: 0.05
  10731. }
  10732. },
  10733. },
  10734. [
  10735. {
  10736. name: "Fairy",
  10737. height: math.unit(6, "inches")
  10738. },
  10739. {
  10740. name: "Normal",
  10741. height: math.unit(20, "feet"),
  10742. default: true
  10743. },
  10744. {
  10745. name: "Rampage",
  10746. height: math.unit(200, "feet")
  10747. },
  10748. {
  10749. name: "Archfey Forest Guardian",
  10750. height: math.unit(1, "mile")
  10751. },
  10752. ]
  10753. ))
  10754. characterMakers.push(() => makeCharacter(
  10755. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10756. {
  10757. front: {
  10758. height: math.unit(4, "meters"),
  10759. weight: math.unit(2, "tons"),
  10760. name: "Front",
  10761. image: {
  10762. source: "./media/characters/marik/front.svg",
  10763. extra: 1057 / 1003,
  10764. bottom: 0.08
  10765. }
  10766. },
  10767. },
  10768. [
  10769. {
  10770. name: "Normal",
  10771. height: math.unit(4, "meters"),
  10772. default: true
  10773. },
  10774. {
  10775. name: "Macro",
  10776. height: math.unit(20, "meters")
  10777. },
  10778. {
  10779. name: "Megamacro",
  10780. height: math.unit(50, "km")
  10781. },
  10782. {
  10783. name: "Gigamacro",
  10784. height: math.unit(100, "km")
  10785. },
  10786. {
  10787. name: "Alpha Macro",
  10788. height: math.unit(7.88e7, "yottameters")
  10789. },
  10790. ]
  10791. ))
  10792. characterMakers.push(() => makeCharacter(
  10793. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10794. {
  10795. front: {
  10796. height: math.unit(6, "feet"),
  10797. weight: math.unit(110, "lb"),
  10798. name: "Front",
  10799. image: {
  10800. source: "./media/characters/mel/front.svg",
  10801. extra: 736 / 617,
  10802. bottom: 0.017
  10803. }
  10804. },
  10805. },
  10806. [
  10807. {
  10808. name: "Pico",
  10809. height: math.unit(3, "pm")
  10810. },
  10811. {
  10812. name: "Nano",
  10813. height: math.unit(3, "nm")
  10814. },
  10815. {
  10816. name: "Micro",
  10817. height: math.unit(0.3, "mm"),
  10818. default: true
  10819. },
  10820. {
  10821. name: "Micro+",
  10822. height: math.unit(3, "mm")
  10823. },
  10824. {
  10825. name: "Normal",
  10826. height: math.unit(5 + 10.5 / 12, "feet")
  10827. },
  10828. ]
  10829. ))
  10830. characterMakers.push(() => makeCharacter(
  10831. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10832. {
  10833. kaiju: {
  10834. height: math.unit(1.75, "meters"),
  10835. weight: math.unit(55, "kg"),
  10836. name: "Kaiju",
  10837. image: {
  10838. source: "./media/characters/lykonous/kaiju.svg",
  10839. extra: 1055 / 946,
  10840. bottom: 0.135
  10841. }
  10842. },
  10843. },
  10844. [
  10845. {
  10846. name: "Normal",
  10847. height: math.unit(2.5, "meters"),
  10848. default: true
  10849. },
  10850. {
  10851. name: "Kaiju Dragon",
  10852. height: math.unit(60, "meters")
  10853. },
  10854. {
  10855. name: "Mega Kaiju",
  10856. height: math.unit(120, "km")
  10857. },
  10858. {
  10859. name: "Giga Kaiju",
  10860. height: math.unit(200, "megameters")
  10861. },
  10862. {
  10863. name: "Terra Kaiju",
  10864. height: math.unit(400, "gigameters")
  10865. },
  10866. {
  10867. name: "Kaiju Dragon God",
  10868. height: math.unit(13000, "exaparsecs")
  10869. },
  10870. ]
  10871. ))
  10872. characterMakers.push(() => makeCharacter(
  10873. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10874. {
  10875. front: {
  10876. height: math.unit(6, "feet"),
  10877. weight: math.unit(150, "lb"),
  10878. name: "Front",
  10879. image: {
  10880. source: "./media/characters/blü/front.svg",
  10881. extra: 1883 / 1564,
  10882. bottom: 0.031
  10883. }
  10884. },
  10885. },
  10886. [
  10887. {
  10888. name: "Normal",
  10889. height: math.unit(13, "feet"),
  10890. default: true
  10891. },
  10892. {
  10893. name: "Big Boi",
  10894. height: math.unit(150, "meters")
  10895. },
  10896. {
  10897. name: "Mini Stomper",
  10898. height: math.unit(300, "meters")
  10899. },
  10900. {
  10901. name: "Macro",
  10902. height: math.unit(1000, "meters")
  10903. },
  10904. {
  10905. name: "Megamacro",
  10906. height: math.unit(11000, "meters")
  10907. },
  10908. {
  10909. name: "Gigamacro",
  10910. height: math.unit(11000, "km")
  10911. },
  10912. {
  10913. name: "Teramacro",
  10914. height: math.unit(420000, "km")
  10915. },
  10916. {
  10917. name: "Examacro",
  10918. height: math.unit(120, "parsecs")
  10919. },
  10920. {
  10921. name: "God Tho",
  10922. height: math.unit(98000000000, "parsecs")
  10923. },
  10924. ]
  10925. ))
  10926. characterMakers.push(() => makeCharacter(
  10927. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10928. {
  10929. taurFront: {
  10930. height: math.unit(6, "feet"),
  10931. weight: math.unit(200, "lb"),
  10932. name: "Taur (Front)",
  10933. image: {
  10934. source: "./media/characters/scales/taur-front.svg",
  10935. extra: 1,
  10936. bottom: 0.05
  10937. }
  10938. },
  10939. taurBack: {
  10940. height: math.unit(6, "feet"),
  10941. weight: math.unit(200, "lb"),
  10942. name: "Taur (Back)",
  10943. image: {
  10944. source: "./media/characters/scales/taur-back.svg",
  10945. extra: 1,
  10946. bottom: 0.08
  10947. }
  10948. },
  10949. anthro: {
  10950. height: math.unit(6 * 7 / 12, "feet"),
  10951. weight: math.unit(100, "lb"),
  10952. name: "Anthro",
  10953. image: {
  10954. source: "./media/characters/scales/anthro.svg",
  10955. extra: 1,
  10956. bottom: 0.06
  10957. }
  10958. },
  10959. },
  10960. [
  10961. {
  10962. name: "Normal",
  10963. height: math.unit(12, "feet"),
  10964. default: true
  10965. },
  10966. ]
  10967. ))
  10968. characterMakers.push(() => makeCharacter(
  10969. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10970. {
  10971. front: {
  10972. height: math.unit(6, "feet"),
  10973. weight: math.unit(150, "lb"),
  10974. name: "Front",
  10975. image: {
  10976. source: "./media/characters/koragos/front.svg",
  10977. extra: 841 / 794,
  10978. bottom: 0.035
  10979. }
  10980. },
  10981. back: {
  10982. height: math.unit(6, "feet"),
  10983. weight: math.unit(150, "lb"),
  10984. name: "Back",
  10985. image: {
  10986. source: "./media/characters/koragos/back.svg",
  10987. extra: 841 / 810,
  10988. bottom: 0.022
  10989. }
  10990. },
  10991. },
  10992. [
  10993. {
  10994. name: "Normal",
  10995. height: math.unit(6 + 11 / 12, "feet"),
  10996. default: true
  10997. },
  10998. {
  10999. name: "Macro",
  11000. height: math.unit(490, "feet")
  11001. },
  11002. {
  11003. name: "Megamacro",
  11004. height: math.unit(10, "miles")
  11005. },
  11006. {
  11007. name: "Gigamacro",
  11008. height: math.unit(50, "miles")
  11009. },
  11010. ]
  11011. ))
  11012. characterMakers.push(() => makeCharacter(
  11013. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11014. {
  11015. front: {
  11016. height: math.unit(6, "feet"),
  11017. weight: math.unit(250, "lb"),
  11018. name: "Front",
  11019. image: {
  11020. source: "./media/characters/xylrem/front.svg",
  11021. extra: 3323 / 3050,
  11022. bottom: 0.065
  11023. }
  11024. },
  11025. },
  11026. [
  11027. {
  11028. name: "Micro",
  11029. height: math.unit(4, "feet")
  11030. },
  11031. {
  11032. name: "Normal",
  11033. height: math.unit(16, "feet"),
  11034. default: true
  11035. },
  11036. {
  11037. name: "Macro",
  11038. height: math.unit(2720, "feet")
  11039. },
  11040. {
  11041. name: "Megamacro",
  11042. height: math.unit(25000, "miles")
  11043. },
  11044. ]
  11045. ))
  11046. characterMakers.push(() => makeCharacter(
  11047. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11048. {
  11049. front: {
  11050. height: math.unit(8, "feet"),
  11051. weight: math.unit(250, "kg"),
  11052. name: "Front",
  11053. image: {
  11054. source: "./media/characters/ikideru/front.svg",
  11055. extra: 930 / 870,
  11056. bottom: 0.087
  11057. }
  11058. },
  11059. back: {
  11060. height: math.unit(8, "feet"),
  11061. weight: math.unit(250, "kg"),
  11062. name: "Back",
  11063. image: {
  11064. source: "./media/characters/ikideru/back.svg",
  11065. extra: 919 / 852,
  11066. bottom: 0.055
  11067. }
  11068. },
  11069. },
  11070. [
  11071. {
  11072. name: "Rare",
  11073. height: math.unit(8, "feet"),
  11074. default: true
  11075. },
  11076. {
  11077. name: "Playful Loom",
  11078. height: math.unit(80, "feet")
  11079. },
  11080. {
  11081. name: "City Leaner",
  11082. height: math.unit(230, "feet")
  11083. },
  11084. {
  11085. name: "Megamacro",
  11086. height: math.unit(2500, "feet")
  11087. },
  11088. {
  11089. name: "Gigamacro",
  11090. height: math.unit(26400, "feet")
  11091. },
  11092. {
  11093. name: "Tectonic Shifter",
  11094. height: math.unit(1.7, "megameters")
  11095. },
  11096. {
  11097. name: "Planet Carer",
  11098. height: math.unit(21, "megameters")
  11099. },
  11100. {
  11101. name: "God",
  11102. height: math.unit(11157.22, "parsecs")
  11103. },
  11104. ]
  11105. ))
  11106. characterMakers.push(() => makeCharacter(
  11107. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11108. {
  11109. front: {
  11110. height: math.unit(6, "feet"),
  11111. weight: math.unit(120, "lb"),
  11112. name: "Front",
  11113. image: {
  11114. source: "./media/characters/neo/front.svg"
  11115. }
  11116. },
  11117. },
  11118. [
  11119. {
  11120. name: "Micro",
  11121. height: math.unit(2, "inches"),
  11122. default: true
  11123. },
  11124. {
  11125. name: "Human Size",
  11126. height: math.unit(5 + 8 / 12, "feet")
  11127. },
  11128. ]
  11129. ))
  11130. characterMakers.push(() => makeCharacter(
  11131. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11132. {
  11133. front: {
  11134. height: math.unit(13 + 10 / 12, "feet"),
  11135. weight: math.unit(5320, "lb"),
  11136. name: "Front",
  11137. image: {
  11138. source: "./media/characters/chauncey-chantz/front.svg",
  11139. extra: 1587 / 1435,
  11140. bottom: 0.02
  11141. }
  11142. },
  11143. },
  11144. [
  11145. {
  11146. name: "Normal",
  11147. height: math.unit(13 + 10 / 12, "feet"),
  11148. default: true
  11149. },
  11150. {
  11151. name: "Macro",
  11152. height: math.unit(45, "feet")
  11153. },
  11154. {
  11155. name: "Megamacro",
  11156. height: math.unit(250, "miles")
  11157. },
  11158. {
  11159. name: "Planetary",
  11160. height: math.unit(10000, "miles")
  11161. },
  11162. {
  11163. name: "Galactic",
  11164. height: math.unit(40000, "parsecs")
  11165. },
  11166. {
  11167. name: "Universal",
  11168. height: math.unit(1, "yottameter")
  11169. },
  11170. ]
  11171. ))
  11172. characterMakers.push(() => makeCharacter(
  11173. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11174. {
  11175. front: {
  11176. height: math.unit(6, "feet"),
  11177. weight: math.unit(150, "lb"),
  11178. name: "Front",
  11179. image: {
  11180. source: "./media/characters/epifox/front.svg",
  11181. extra: 1,
  11182. bottom: 0.075
  11183. }
  11184. },
  11185. },
  11186. [
  11187. {
  11188. name: "Micro",
  11189. height: math.unit(6, "inches")
  11190. },
  11191. {
  11192. name: "Normal",
  11193. height: math.unit(12, "feet"),
  11194. default: true
  11195. },
  11196. {
  11197. name: "Macro",
  11198. height: math.unit(3810, "feet")
  11199. },
  11200. {
  11201. name: "Megamacro",
  11202. height: math.unit(500, "miles")
  11203. },
  11204. ]
  11205. ))
  11206. characterMakers.push(() => makeCharacter(
  11207. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11208. {
  11209. front: {
  11210. height: math.unit(1.8796, "m"),
  11211. weight: math.unit(230, "lb"),
  11212. name: "Front",
  11213. image: {
  11214. source: "./media/characters/colin-t/front.svg",
  11215. extra: 1272 / 1193,
  11216. bottom: 0.07
  11217. }
  11218. },
  11219. },
  11220. [
  11221. {
  11222. name: "Micro",
  11223. height: math.unit(0.571, "meters")
  11224. },
  11225. {
  11226. name: "Normal",
  11227. height: math.unit(1.8796, "meters"),
  11228. default: true
  11229. },
  11230. {
  11231. name: "Tall",
  11232. height: math.unit(4, "meters")
  11233. },
  11234. {
  11235. name: "Macro",
  11236. height: math.unit(67.241, "meters")
  11237. },
  11238. {
  11239. name: "Megamacro",
  11240. height: math.unit(371.856, "meters")
  11241. },
  11242. {
  11243. name: "Planetary",
  11244. height: math.unit(12631.5689, "km")
  11245. },
  11246. ]
  11247. ))
  11248. characterMakers.push(() => makeCharacter(
  11249. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11250. {
  11251. front: {
  11252. height: math.unit(1.85, "meters"),
  11253. weight: math.unit(80, "kg"),
  11254. name: "Front",
  11255. image: {
  11256. source: "./media/characters/matvei/front.svg",
  11257. extra: 614 / 594,
  11258. bottom: 0.01
  11259. }
  11260. },
  11261. },
  11262. [
  11263. {
  11264. name: "Normal",
  11265. height: math.unit(1.85, "meters"),
  11266. default: true
  11267. },
  11268. ]
  11269. ))
  11270. characterMakers.push(() => makeCharacter(
  11271. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11272. {
  11273. front: {
  11274. height: math.unit(5 + 9 / 12, "feet"),
  11275. weight: math.unit(70, "lb"),
  11276. name: "Front",
  11277. image: {
  11278. source: "./media/characters/quincy/front.svg",
  11279. extra: 3041 / 2751
  11280. }
  11281. },
  11282. back: {
  11283. height: math.unit(5 + 9 / 12, "feet"),
  11284. weight: math.unit(70, "lb"),
  11285. name: "Back",
  11286. image: {
  11287. source: "./media/characters/quincy/back.svg",
  11288. extra: 3041 / 2751
  11289. }
  11290. },
  11291. flying: {
  11292. height: math.unit(5 + 4 / 12, "feet"),
  11293. weight: math.unit(70, "lb"),
  11294. name: "Flying",
  11295. image: {
  11296. source: "./media/characters/quincy/flying.svg",
  11297. extra: 1044 / 930
  11298. }
  11299. },
  11300. },
  11301. [
  11302. {
  11303. name: "Micro",
  11304. height: math.unit(3, "cm")
  11305. },
  11306. {
  11307. name: "Normal",
  11308. height: math.unit(5 + 9 / 12, "feet")
  11309. },
  11310. {
  11311. name: "Macro",
  11312. height: math.unit(200, "meters"),
  11313. default: true
  11314. },
  11315. {
  11316. name: "Megamacro",
  11317. height: math.unit(1000, "meters")
  11318. },
  11319. ]
  11320. ))
  11321. characterMakers.push(() => makeCharacter(
  11322. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11323. {
  11324. front: {
  11325. height: math.unit(4 + 7 / 12, "feet"),
  11326. weight: math.unit(50, "lb"),
  11327. name: "Front",
  11328. image: {
  11329. source: "./media/characters/vanrel/front.svg",
  11330. extra: 1,
  11331. bottom: 0.02
  11332. }
  11333. },
  11334. frontAlt: {
  11335. height: math.unit(4 + 7 / 12, "feet"),
  11336. weight: math.unit(50, "lb"),
  11337. name: "Front-alt",
  11338. image: {
  11339. source: "./media/characters/vanrel/front-alt.svg",
  11340. extra: 1,
  11341. bottom: 15 / 1511
  11342. }
  11343. },
  11344. elemental: {
  11345. height: math.unit(3, "feet"),
  11346. weight: math.unit(50, "lb"),
  11347. name: "Elemental",
  11348. image: {
  11349. source: "./media/characters/vanrel/elemental.svg",
  11350. extra: 192.3 / 162.8,
  11351. bottom: 1.79 / 194.17
  11352. }
  11353. },
  11354. side: {
  11355. height: math.unit(4 + 7 / 12, "feet"),
  11356. weight: math.unit(50, "lb"),
  11357. name: "Side",
  11358. image: {
  11359. source: "./media/characters/vanrel/side.svg",
  11360. extra: 1,
  11361. bottom: 0.025
  11362. }
  11363. },
  11364. tome: {
  11365. height: math.unit(1.35, "feet"),
  11366. weight: math.unit(10, "lb"),
  11367. name: "Vanrel's Tome",
  11368. rename: true,
  11369. image: {
  11370. source: "./media/characters/vanrel/tome.svg"
  11371. }
  11372. },
  11373. beans: {
  11374. height: math.unit(0.89, "feet"),
  11375. name: "Beans",
  11376. image: {
  11377. source: "./media/characters/vanrel/beans.svg"
  11378. }
  11379. },
  11380. },
  11381. [
  11382. {
  11383. name: "Normal",
  11384. height: math.unit(4 + 7 / 12, "feet"),
  11385. default: true
  11386. },
  11387. ]
  11388. ))
  11389. characterMakers.push(() => makeCharacter(
  11390. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11391. {
  11392. front: {
  11393. height: math.unit(7 + 5 / 12, "feet"),
  11394. weight: math.unit(150, "lb"),
  11395. name: "Front",
  11396. image: {
  11397. source: "./media/characters/kuiper-vanrel/front.svg",
  11398. extra: 1118 / 1068,
  11399. bottom: 0.09
  11400. }
  11401. },
  11402. foot: {
  11403. height: math.unit(0.55, "meters"),
  11404. name: "Foot",
  11405. image: {
  11406. source: "./media/characters/kuiper-vanrel/foot.svg",
  11407. }
  11408. },
  11409. battle: {
  11410. height: math.unit(6.824, "feet"),
  11411. weight: math.unit(150, "lb"),
  11412. name: "Battle",
  11413. image: {
  11414. source: "./media/characters/kuiper-vanrel/battle.svg",
  11415. extra: 1466 / 1327,
  11416. bottom: 29 / 1492.5
  11417. }
  11418. },
  11419. battleAlt: {
  11420. height: math.unit(6.824, "feet"),
  11421. weight: math.unit(150, "lb"),
  11422. name: "Battle (Alt)",
  11423. image: {
  11424. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11425. extra: 2081 / 1965,
  11426. bottom: 40 / 2121
  11427. }
  11428. },
  11429. },
  11430. [
  11431. {
  11432. name: "Normal",
  11433. height: math.unit(7 + 5 / 12, "feet"),
  11434. default: true
  11435. },
  11436. ]
  11437. ))
  11438. characterMakers.push(() => makeCharacter(
  11439. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11440. {
  11441. front: {
  11442. height: math.unit(8 + 5 / 12, "feet"),
  11443. weight: math.unit(150, "lb"),
  11444. name: "Front",
  11445. image: {
  11446. source: "./media/characters/keset-vanrel/front.svg",
  11447. extra: 1150 / 1084,
  11448. bottom: 0.05
  11449. }
  11450. },
  11451. hand: {
  11452. height: math.unit(0.6, "meters"),
  11453. name: "Hand",
  11454. image: {
  11455. source: "./media/characters/keset-vanrel/hand.svg"
  11456. }
  11457. },
  11458. foot: {
  11459. height: math.unit(0.94978, "meters"),
  11460. name: "Foot",
  11461. image: {
  11462. source: "./media/characters/keset-vanrel/foot.svg"
  11463. }
  11464. },
  11465. battle: {
  11466. height: math.unit(7.408, "feet"),
  11467. weight: math.unit(150, "lb"),
  11468. name: "Battle",
  11469. image: {
  11470. source: "./media/characters/keset-vanrel/battle.svg",
  11471. extra: 1890 / 1386,
  11472. bottom: 73.28 / 1970
  11473. }
  11474. },
  11475. },
  11476. [
  11477. {
  11478. name: "Normal",
  11479. height: math.unit(8 + 5 / 12, "feet"),
  11480. default: true
  11481. },
  11482. ]
  11483. ))
  11484. characterMakers.push(() => makeCharacter(
  11485. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11486. {
  11487. front: {
  11488. height: math.unit(6, "feet"),
  11489. weight: math.unit(150, "lb"),
  11490. name: "Front",
  11491. image: {
  11492. source: "./media/characters/neos/front.svg",
  11493. extra: 1696 / 992,
  11494. bottom: 0.14
  11495. }
  11496. },
  11497. },
  11498. [
  11499. {
  11500. name: "Normal",
  11501. height: math.unit(54, "cm"),
  11502. default: true
  11503. },
  11504. {
  11505. name: "Macro",
  11506. height: math.unit(100, "m")
  11507. },
  11508. {
  11509. name: "Megamacro",
  11510. height: math.unit(10, "km")
  11511. },
  11512. {
  11513. name: "Megamacro+",
  11514. height: math.unit(100, "km")
  11515. },
  11516. {
  11517. name: "Gigamacro",
  11518. height: math.unit(100, "Mm")
  11519. },
  11520. {
  11521. name: "Teramacro",
  11522. height: math.unit(100, "Gm")
  11523. },
  11524. {
  11525. name: "Examacro",
  11526. height: math.unit(100, "Em")
  11527. },
  11528. {
  11529. name: "Godly",
  11530. height: math.unit(10000, "Ym")
  11531. },
  11532. {
  11533. name: "Beyond Godly",
  11534. height: math.unit(25, "multiverses")
  11535. },
  11536. ]
  11537. ))
  11538. characterMakers.push(() => makeCharacter(
  11539. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11540. {
  11541. feminine: {
  11542. height: math.unit(5, "feet"),
  11543. weight: math.unit(100, "lb"),
  11544. name: "Feminine",
  11545. image: {
  11546. source: "./media/characters/sammy-mouse/feminine.svg",
  11547. extra: 2526 / 2425,
  11548. bottom: 0.123
  11549. }
  11550. },
  11551. masculine: {
  11552. height: math.unit(5, "feet"),
  11553. weight: math.unit(100, "lb"),
  11554. name: "Masculine",
  11555. image: {
  11556. source: "./media/characters/sammy-mouse/masculine.svg",
  11557. extra: 2526 / 2425,
  11558. bottom: 0.123
  11559. }
  11560. },
  11561. },
  11562. [
  11563. {
  11564. name: "Micro",
  11565. height: math.unit(5, "inches")
  11566. },
  11567. {
  11568. name: "Normal",
  11569. height: math.unit(5, "feet"),
  11570. default: true
  11571. },
  11572. {
  11573. name: "Macro",
  11574. height: math.unit(60, "feet")
  11575. },
  11576. ]
  11577. ))
  11578. characterMakers.push(() => makeCharacter(
  11579. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11580. {
  11581. front: {
  11582. height: math.unit(4, "feet"),
  11583. weight: math.unit(50, "lb"),
  11584. name: "Front",
  11585. image: {
  11586. source: "./media/characters/kole/front.svg",
  11587. extra: 1423 / 1303,
  11588. bottom: 0.025
  11589. }
  11590. },
  11591. back: {
  11592. height: math.unit(4, "feet"),
  11593. weight: math.unit(50, "lb"),
  11594. name: "Back",
  11595. image: {
  11596. source: "./media/characters/kole/back.svg",
  11597. extra: 1426 / 1280,
  11598. bottom: 0.02
  11599. }
  11600. },
  11601. },
  11602. [
  11603. {
  11604. name: "Normal",
  11605. height: math.unit(4, "feet"),
  11606. default: true
  11607. },
  11608. ]
  11609. ))
  11610. characterMakers.push(() => makeCharacter(
  11611. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11612. {
  11613. front: {
  11614. height: math.unit(2 + 6 / 12, "feet"),
  11615. weight: math.unit(20, "lb"),
  11616. name: "Front",
  11617. image: {
  11618. source: "./media/characters/rufran/front.svg",
  11619. extra: 2041 / 1839,
  11620. bottom: 0.055
  11621. }
  11622. },
  11623. back: {
  11624. height: math.unit(2 + 6 / 12, "feet"),
  11625. weight: math.unit(20, "lb"),
  11626. name: "Back",
  11627. image: {
  11628. source: "./media/characters/rufran/back.svg",
  11629. extra: 2054 / 1839,
  11630. bottom: 0.01
  11631. }
  11632. },
  11633. hand: {
  11634. height: math.unit(0.2166, "meters"),
  11635. name: "Hand",
  11636. image: {
  11637. source: "./media/characters/rufran/hand.svg"
  11638. }
  11639. },
  11640. foot: {
  11641. height: math.unit(0.185, "meters"),
  11642. name: "Foot",
  11643. image: {
  11644. source: "./media/characters/rufran/foot.svg"
  11645. }
  11646. },
  11647. },
  11648. [
  11649. {
  11650. name: "Micro",
  11651. height: math.unit(1, "inch")
  11652. },
  11653. {
  11654. name: "Normal",
  11655. height: math.unit(2 + 6 / 12, "feet"),
  11656. default: true
  11657. },
  11658. {
  11659. name: "Big",
  11660. height: math.unit(60, "feet")
  11661. },
  11662. {
  11663. name: "Macro",
  11664. height: math.unit(325, "feet")
  11665. },
  11666. ]
  11667. ))
  11668. characterMakers.push(() => makeCharacter(
  11669. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11670. {
  11671. front: {
  11672. height: math.unit(0.3, "meters"),
  11673. weight: math.unit(3.5, "kg"),
  11674. name: "Front",
  11675. image: {
  11676. source: "./media/characters/chip/front.svg",
  11677. extra: 748 / 674
  11678. }
  11679. },
  11680. },
  11681. [
  11682. {
  11683. name: "Micro",
  11684. height: math.unit(1, "inch"),
  11685. default: true
  11686. },
  11687. ]
  11688. ))
  11689. characterMakers.push(() => makeCharacter(
  11690. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11691. {
  11692. side: {
  11693. height: math.unit(2.3, "meters"),
  11694. weight: math.unit(3500, "lb"),
  11695. name: "Side",
  11696. image: {
  11697. source: "./media/characters/torvid/side.svg",
  11698. extra: 1972 / 722,
  11699. bottom: 0.035
  11700. }
  11701. },
  11702. },
  11703. [
  11704. {
  11705. name: "Normal",
  11706. height: math.unit(2.3, "meters"),
  11707. default: true
  11708. },
  11709. ]
  11710. ))
  11711. characterMakers.push(() => makeCharacter(
  11712. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11713. {
  11714. front: {
  11715. height: math.unit(2, "meters"),
  11716. weight: math.unit(150.5, "kg"),
  11717. name: "Front",
  11718. image: {
  11719. source: "./media/characters/susan/front.svg",
  11720. extra: 693 / 635,
  11721. bottom: 0.05
  11722. }
  11723. },
  11724. },
  11725. [
  11726. {
  11727. name: "Megamacro",
  11728. height: math.unit(505, "miles"),
  11729. default: true
  11730. },
  11731. ]
  11732. ))
  11733. characterMakers.push(() => makeCharacter(
  11734. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11735. {
  11736. front: {
  11737. height: math.unit(6, "feet"),
  11738. weight: math.unit(150, "lb"),
  11739. name: "Front",
  11740. image: {
  11741. source: "./media/characters/raindrops/front.svg",
  11742. extra: 2655 / 2461,
  11743. bottom: 49 / 2705
  11744. }
  11745. },
  11746. back: {
  11747. height: math.unit(6, "feet"),
  11748. weight: math.unit(150, "lb"),
  11749. name: "Back",
  11750. image: {
  11751. source: "./media/characters/raindrops/back.svg",
  11752. extra: 2574 / 2400,
  11753. bottom: 65 / 2634
  11754. }
  11755. },
  11756. },
  11757. [
  11758. {
  11759. name: "Micro",
  11760. height: math.unit(6, "inches")
  11761. },
  11762. {
  11763. name: "Normal",
  11764. height: math.unit(6 + 2 / 12, "feet")
  11765. },
  11766. {
  11767. name: "Macro",
  11768. height: math.unit(131, "feet"),
  11769. default: true
  11770. },
  11771. {
  11772. name: "Megamacro",
  11773. height: math.unit(15, "miles")
  11774. },
  11775. {
  11776. name: "Gigamacro",
  11777. height: math.unit(4000, "miles")
  11778. },
  11779. {
  11780. name: "Teramacro",
  11781. height: math.unit(315000, "miles")
  11782. },
  11783. ]
  11784. ))
  11785. characterMakers.push(() => makeCharacter(
  11786. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11787. {
  11788. front: {
  11789. height: math.unit(2.794, "meters"),
  11790. weight: math.unit(325, "kg"),
  11791. name: "Front",
  11792. image: {
  11793. source: "./media/characters/tezwa/front.svg",
  11794. extra: 2083 / 1906,
  11795. bottom: 0.031
  11796. }
  11797. },
  11798. foot: {
  11799. height: math.unit(0.687, "meters"),
  11800. name: "Foot",
  11801. image: {
  11802. source: "./media/characters/tezwa/foot.svg"
  11803. }
  11804. },
  11805. },
  11806. [
  11807. {
  11808. name: "Normal",
  11809. height: math.unit(9 + 2 / 12, "feet"),
  11810. default: true
  11811. },
  11812. ]
  11813. ))
  11814. characterMakers.push(() => makeCharacter(
  11815. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11816. {
  11817. front: {
  11818. height: math.unit(58, "feet"),
  11819. weight: math.unit(89000, "lb"),
  11820. name: "Front",
  11821. image: {
  11822. source: "./media/characters/typhus/front.svg",
  11823. extra: 816 / 800,
  11824. bottom: 0.065
  11825. }
  11826. },
  11827. },
  11828. [
  11829. {
  11830. name: "Macro",
  11831. height: math.unit(58, "feet"),
  11832. default: true
  11833. },
  11834. ]
  11835. ))
  11836. characterMakers.push(() => makeCharacter(
  11837. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11838. {
  11839. front: {
  11840. height: math.unit(12, "feet"),
  11841. weight: math.unit(6, "tonnes"),
  11842. name: "Front",
  11843. image: {
  11844. source: "./media/characters/lyra-von-wulf/front.svg",
  11845. extra: 1,
  11846. bottom: 0.10
  11847. }
  11848. },
  11849. frontMecha: {
  11850. height: math.unit(12, "feet"),
  11851. weight: math.unit(12, "tonnes"),
  11852. name: "Front (Mecha)",
  11853. image: {
  11854. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11855. extra: 1,
  11856. bottom: 0.042
  11857. }
  11858. },
  11859. maw: {
  11860. height: math.unit(2.2, "feet"),
  11861. name: "Maw",
  11862. image: {
  11863. source: "./media/characters/lyra-von-wulf/maw.svg"
  11864. }
  11865. },
  11866. },
  11867. [
  11868. {
  11869. name: "Normal",
  11870. height: math.unit(12, "feet"),
  11871. default: true
  11872. },
  11873. {
  11874. name: "Classic",
  11875. height: math.unit(50, "feet")
  11876. },
  11877. {
  11878. name: "Macro",
  11879. height: math.unit(500, "feet")
  11880. },
  11881. {
  11882. name: "Megamacro",
  11883. height: math.unit(1, "mile")
  11884. },
  11885. {
  11886. name: "Gigamacro",
  11887. height: math.unit(400, "miles")
  11888. },
  11889. {
  11890. name: "Teramacro",
  11891. height: math.unit(22000, "miles")
  11892. },
  11893. {
  11894. name: "Solarmacro",
  11895. height: math.unit(8600000, "miles")
  11896. },
  11897. {
  11898. name: "Galactic",
  11899. height: math.unit(1057000, "lightyears")
  11900. },
  11901. ]
  11902. ))
  11903. characterMakers.push(() => makeCharacter(
  11904. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11905. {
  11906. front: {
  11907. height: math.unit(6 + 10 / 12, "feet"),
  11908. weight: math.unit(150, "lb"),
  11909. name: "Front",
  11910. image: {
  11911. source: "./media/characters/dixon/front.svg",
  11912. extra: 3361 / 3209,
  11913. bottom: 0.01
  11914. }
  11915. },
  11916. },
  11917. [
  11918. {
  11919. name: "Normal",
  11920. height: math.unit(6 + 10 / 12, "feet"),
  11921. default: true
  11922. },
  11923. {
  11924. name: "Big",
  11925. height: math.unit(12, "meters")
  11926. },
  11927. {
  11928. name: "Macro",
  11929. height: math.unit(500, "meters")
  11930. },
  11931. {
  11932. name: "Megamacro",
  11933. height: math.unit(2, "km")
  11934. },
  11935. ]
  11936. ))
  11937. characterMakers.push(() => makeCharacter(
  11938. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11939. {
  11940. front: {
  11941. height: math.unit(185, "cm"),
  11942. weight: math.unit(68, "kg"),
  11943. name: "Front",
  11944. image: {
  11945. source: "./media/characters/kauko/front.svg",
  11946. extra: 1455 / 1421,
  11947. bottom: 0.03
  11948. }
  11949. },
  11950. back: {
  11951. height: math.unit(185, "cm"),
  11952. weight: math.unit(68, "kg"),
  11953. name: "Back",
  11954. image: {
  11955. source: "./media/characters/kauko/back.svg",
  11956. extra: 1455 / 1421,
  11957. bottom: 0.004
  11958. }
  11959. },
  11960. },
  11961. [
  11962. {
  11963. name: "Normal",
  11964. height: math.unit(185, "cm"),
  11965. default: true
  11966. },
  11967. ]
  11968. ))
  11969. characterMakers.push(() => makeCharacter(
  11970. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11971. {
  11972. front: {
  11973. height: math.unit(6, "feet"),
  11974. weight: math.unit(150, "kg"),
  11975. name: "Front",
  11976. image: {
  11977. source: "./media/characters/varg/front.svg",
  11978. extra: 1108 / 1018,
  11979. bottom: 0.0375
  11980. }
  11981. },
  11982. },
  11983. [
  11984. {
  11985. name: "Normal",
  11986. height: math.unit(5, "meters")
  11987. },
  11988. {
  11989. name: "Macro",
  11990. height: math.unit(200, "meters")
  11991. },
  11992. {
  11993. name: "Megamacro",
  11994. height: math.unit(20, "kilometers")
  11995. },
  11996. {
  11997. name: "True Size",
  11998. height: math.unit(211, "km"),
  11999. default: true
  12000. },
  12001. {
  12002. name: "Gigamacro",
  12003. height: math.unit(1000, "km")
  12004. },
  12005. {
  12006. name: "Gigamacro+",
  12007. height: math.unit(8000, "km")
  12008. },
  12009. {
  12010. name: "Teramacro",
  12011. height: math.unit(1000000, "km")
  12012. },
  12013. ]
  12014. ))
  12015. characterMakers.push(() => makeCharacter(
  12016. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12017. {
  12018. front: {
  12019. height: math.unit(7 + 7 / 12, "feet"),
  12020. weight: math.unit(267, "lb"),
  12021. name: "Front",
  12022. image: {
  12023. source: "./media/characters/dayza/front.svg",
  12024. extra: 1262 / 1200,
  12025. bottom: 0.035
  12026. }
  12027. },
  12028. side: {
  12029. height: math.unit(7 + 7 / 12, "feet"),
  12030. weight: math.unit(267, "lb"),
  12031. name: "Side",
  12032. image: {
  12033. source: "./media/characters/dayza/side.svg",
  12034. extra: 1295 / 1245,
  12035. bottom: 0.05
  12036. }
  12037. },
  12038. back: {
  12039. height: math.unit(7 + 7 / 12, "feet"),
  12040. weight: math.unit(267, "lb"),
  12041. name: "Back",
  12042. image: {
  12043. source: "./media/characters/dayza/back.svg",
  12044. extra: 1241 / 1170
  12045. }
  12046. },
  12047. },
  12048. [
  12049. {
  12050. name: "Normal",
  12051. height: math.unit(7 + 7 / 12, "feet"),
  12052. default: true
  12053. },
  12054. {
  12055. name: "Macro",
  12056. height: math.unit(155, "feet")
  12057. },
  12058. ]
  12059. ))
  12060. characterMakers.push(() => makeCharacter(
  12061. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12062. {
  12063. front: {
  12064. height: math.unit(6 + 5 / 12, "feet"),
  12065. weight: math.unit(160, "lb"),
  12066. name: "Front",
  12067. image: {
  12068. source: "./media/characters/xanthos/front.svg",
  12069. extra: 1,
  12070. bottom: 0.04
  12071. }
  12072. },
  12073. back: {
  12074. height: math.unit(6 + 5 / 12, "feet"),
  12075. weight: math.unit(160, "lb"),
  12076. name: "Back",
  12077. image: {
  12078. source: "./media/characters/xanthos/back.svg",
  12079. extra: 1,
  12080. bottom: 0.03
  12081. }
  12082. },
  12083. hand: {
  12084. height: math.unit(0.928, "feet"),
  12085. name: "Hand",
  12086. image: {
  12087. source: "./media/characters/xanthos/hand.svg"
  12088. }
  12089. },
  12090. foot: {
  12091. height: math.unit(1.286, "feet"),
  12092. name: "Foot",
  12093. image: {
  12094. source: "./media/characters/xanthos/foot.svg"
  12095. }
  12096. },
  12097. },
  12098. [
  12099. {
  12100. name: "Normal",
  12101. height: math.unit(6 + 5 / 12, "feet"),
  12102. default: true
  12103. },
  12104. {
  12105. name: "Normal+",
  12106. height: math.unit(6, "meters")
  12107. },
  12108. {
  12109. name: "Macro",
  12110. height: math.unit(40, "feet")
  12111. },
  12112. {
  12113. name: "Macro+",
  12114. height: math.unit(200, "meters")
  12115. },
  12116. {
  12117. name: "Megamacro",
  12118. height: math.unit(20, "km")
  12119. },
  12120. {
  12121. name: "Megamacro+",
  12122. height: math.unit(100, "km")
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(6 + 3 / 12, "feet"),
  12131. weight: math.unit(215, "lb"),
  12132. name: "Front",
  12133. image: {
  12134. source: "./media/characters/grynn/front.svg",
  12135. extra: 4627 / 4209,
  12136. bottom: 0.047
  12137. }
  12138. },
  12139. },
  12140. [
  12141. {
  12142. name: "Micro",
  12143. height: math.unit(6, "inches")
  12144. },
  12145. {
  12146. name: "Normal",
  12147. height: math.unit(6 + 3 / 12, "feet"),
  12148. default: true
  12149. },
  12150. {
  12151. name: "Big",
  12152. height: math.unit(104, "feet")
  12153. },
  12154. {
  12155. name: "Macro",
  12156. height: math.unit(944, "feet")
  12157. },
  12158. {
  12159. name: "Macro+",
  12160. height: math.unit(9480, "feet")
  12161. },
  12162. {
  12163. name: "Megamacro",
  12164. height: math.unit(78752, "feet")
  12165. },
  12166. {
  12167. name: "Megamacro+",
  12168. height: math.unit(630128, "feet")
  12169. },
  12170. {
  12171. name: "Megamacro++",
  12172. height: math.unit(3150695, "feet")
  12173. },
  12174. ]
  12175. ))
  12176. characterMakers.push(() => makeCharacter(
  12177. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12178. {
  12179. front: {
  12180. height: math.unit(7 + 5 / 12, "feet"),
  12181. weight: math.unit(450, "lb"),
  12182. name: "Front",
  12183. image: {
  12184. source: "./media/characters/mocha-aura/front.svg",
  12185. extra: 1907 / 1817,
  12186. bottom: 0.04
  12187. }
  12188. },
  12189. back: {
  12190. height: math.unit(7 + 5 / 12, "feet"),
  12191. weight: math.unit(450, "lb"),
  12192. name: "Back",
  12193. image: {
  12194. source: "./media/characters/mocha-aura/back.svg",
  12195. extra: 1900 / 1825,
  12196. bottom: 0.045
  12197. }
  12198. },
  12199. },
  12200. [
  12201. {
  12202. name: "Nano",
  12203. height: math.unit(1, "nm")
  12204. },
  12205. {
  12206. name: "Megamicro",
  12207. height: math.unit(1, "mm")
  12208. },
  12209. {
  12210. name: "Micro",
  12211. height: math.unit(3, "inches")
  12212. },
  12213. {
  12214. name: "Normal",
  12215. height: math.unit(7 + 5 / 12, "feet"),
  12216. default: true
  12217. },
  12218. {
  12219. name: "Macro",
  12220. height: math.unit(30, "feet")
  12221. },
  12222. {
  12223. name: "Megamacro",
  12224. height: math.unit(3500, "feet")
  12225. },
  12226. {
  12227. name: "Teramacro",
  12228. height: math.unit(500000, "miles")
  12229. },
  12230. {
  12231. name: "Petamacro",
  12232. height: math.unit(50000000000000000, "parsecs")
  12233. },
  12234. ]
  12235. ))
  12236. characterMakers.push(() => makeCharacter(
  12237. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12238. {
  12239. front: {
  12240. height: math.unit(6, "feet"),
  12241. weight: math.unit(150, "lb"),
  12242. name: "Front",
  12243. image: {
  12244. source: "./media/characters/ilisha-devya/front.svg",
  12245. extra: 1,
  12246. bottom: 0.175
  12247. }
  12248. },
  12249. back: {
  12250. height: math.unit(6, "feet"),
  12251. weight: math.unit(150, "lb"),
  12252. name: "Back",
  12253. image: {
  12254. source: "./media/characters/ilisha-devya/back.svg",
  12255. extra: 1,
  12256. bottom: 0.015
  12257. }
  12258. },
  12259. },
  12260. [
  12261. {
  12262. name: "Macro",
  12263. height: math.unit(500, "feet"),
  12264. default: true
  12265. },
  12266. {
  12267. name: "Megamacro",
  12268. height: math.unit(10, "miles")
  12269. },
  12270. {
  12271. name: "Gigamacro",
  12272. height: math.unit(100000, "miles")
  12273. },
  12274. {
  12275. name: "Examacro",
  12276. height: math.unit(1e9, "lightyears")
  12277. },
  12278. {
  12279. name: "Omniversal",
  12280. height: math.unit(1e33, "lightyears")
  12281. },
  12282. {
  12283. name: "Beyond Infinite",
  12284. height: math.unit(1e100, "lightyears")
  12285. },
  12286. ]
  12287. ))
  12288. characterMakers.push(() => makeCharacter(
  12289. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12290. {
  12291. Side: {
  12292. height: math.unit(6, "feet"),
  12293. weight: math.unit(150, "lb"),
  12294. name: "Side",
  12295. image: {
  12296. source: "./media/characters/mira/side.svg",
  12297. extra: 900 / 799,
  12298. bottom: 0.02
  12299. }
  12300. },
  12301. },
  12302. [
  12303. {
  12304. name: "Human Size",
  12305. height: math.unit(6, "feet")
  12306. },
  12307. {
  12308. name: "Macro",
  12309. height: math.unit(100, "feet"),
  12310. default: true
  12311. },
  12312. {
  12313. name: "Megamacro",
  12314. height: math.unit(10, "miles")
  12315. },
  12316. {
  12317. name: "Gigamacro",
  12318. height: math.unit(25000, "miles")
  12319. },
  12320. {
  12321. name: "Teramacro",
  12322. height: math.unit(300, "AU")
  12323. },
  12324. {
  12325. name: "Full Size",
  12326. height: math.unit(4.5e10, "lightyears")
  12327. },
  12328. ]
  12329. ))
  12330. characterMakers.push(() => makeCharacter(
  12331. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12332. {
  12333. front: {
  12334. height: math.unit(6, "feet"),
  12335. weight: math.unit(150, "lb"),
  12336. name: "Front",
  12337. image: {
  12338. source: "./media/characters/holly/front.svg",
  12339. extra: 639 / 606
  12340. }
  12341. },
  12342. back: {
  12343. height: math.unit(6, "feet"),
  12344. weight: math.unit(150, "lb"),
  12345. name: "Back",
  12346. image: {
  12347. source: "./media/characters/holly/back.svg",
  12348. extra: 623 / 598
  12349. }
  12350. },
  12351. frontWorking: {
  12352. height: math.unit(6, "feet"),
  12353. weight: math.unit(150, "lb"),
  12354. name: "Front (Working)",
  12355. image: {
  12356. source: "./media/characters/holly/front-working.svg",
  12357. extra: 607 / 577,
  12358. bottom: 0.048
  12359. }
  12360. },
  12361. },
  12362. [
  12363. {
  12364. name: "Normal",
  12365. height: math.unit(12 + 3 / 12, "feet"),
  12366. default: true
  12367. },
  12368. ]
  12369. ))
  12370. characterMakers.push(() => makeCharacter(
  12371. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12372. {
  12373. front: {
  12374. height: math.unit(6, "feet"),
  12375. weight: math.unit(150, "lb"),
  12376. name: "Front",
  12377. image: {
  12378. source: "./media/characters/porter/front.svg",
  12379. extra: 1,
  12380. bottom: 0.01
  12381. }
  12382. },
  12383. frontRobes: {
  12384. height: math.unit(6, "feet"),
  12385. weight: math.unit(150, "lb"),
  12386. name: "Front (Robes)",
  12387. image: {
  12388. source: "./media/characters/porter/front-robes.svg",
  12389. extra: 1.01,
  12390. bottom: 0.01
  12391. }
  12392. },
  12393. },
  12394. [
  12395. {
  12396. name: "Normal",
  12397. height: math.unit(11 + 9 / 12, "feet"),
  12398. default: true
  12399. },
  12400. ]
  12401. ))
  12402. characterMakers.push(() => makeCharacter(
  12403. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12404. {
  12405. legendary: {
  12406. height: math.unit(6, "feet"),
  12407. weight: math.unit(150, "lb"),
  12408. name: "Legendary",
  12409. image: {
  12410. source: "./media/characters/lucy/legendary.svg",
  12411. extra: 1355 / 1100,
  12412. bottom: 0.045
  12413. }
  12414. },
  12415. },
  12416. [
  12417. {
  12418. name: "Legendary",
  12419. height: math.unit(86882 * 2, "miles"),
  12420. default: true
  12421. },
  12422. ]
  12423. ))
  12424. characterMakers.push(() => makeCharacter(
  12425. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12426. {
  12427. front: {
  12428. height: math.unit(6, "feet"),
  12429. weight: math.unit(150, "lb"),
  12430. name: "Front",
  12431. image: {
  12432. source: "./media/characters/drusilla/front.svg",
  12433. extra: 678 / 635,
  12434. bottom: 0.03
  12435. }
  12436. },
  12437. back: {
  12438. height: math.unit(6, "feet"),
  12439. weight: math.unit(150, "lb"),
  12440. name: "Back",
  12441. image: {
  12442. source: "./media/characters/drusilla/back.svg",
  12443. extra: 678 / 635,
  12444. bottom: 0.005
  12445. }
  12446. },
  12447. },
  12448. [
  12449. {
  12450. name: "Macro",
  12451. height: math.unit(100, "feet")
  12452. },
  12453. {
  12454. name: "Canon Height",
  12455. height: math.unit(2000, "feet"),
  12456. default: true
  12457. },
  12458. ]
  12459. ))
  12460. characterMakers.push(() => makeCharacter(
  12461. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12462. {
  12463. front: {
  12464. height: math.unit(6, "feet"),
  12465. weight: math.unit(180, "lb"),
  12466. name: "Front",
  12467. image: {
  12468. source: "./media/characters/renard-thatch/front.svg",
  12469. extra: 2411 / 2275,
  12470. bottom: 0.01
  12471. }
  12472. },
  12473. frontPosing: {
  12474. height: math.unit(6, "feet"),
  12475. weight: math.unit(180, "lb"),
  12476. name: "Front (Posing)",
  12477. image: {
  12478. source: "./media/characters/renard-thatch/front-posing.svg",
  12479. extra: 2381 / 2261,
  12480. bottom: 0.01
  12481. }
  12482. },
  12483. back: {
  12484. height: math.unit(6, "feet"),
  12485. weight: math.unit(180, "lb"),
  12486. name: "Back",
  12487. image: {
  12488. source: "./media/characters/renard-thatch/back.svg",
  12489. extra: 2428 / 2288
  12490. }
  12491. },
  12492. },
  12493. [
  12494. {
  12495. name: "Micro",
  12496. height: math.unit(3, "inches")
  12497. },
  12498. {
  12499. name: "Default",
  12500. height: math.unit(6, "feet"),
  12501. default: true
  12502. },
  12503. {
  12504. name: "Macro",
  12505. height: math.unit(75, "feet")
  12506. },
  12507. ]
  12508. ))
  12509. characterMakers.push(() => makeCharacter(
  12510. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12511. {
  12512. front: {
  12513. height: math.unit(1450, "feet"),
  12514. weight: math.unit(1.21e6, "tons"),
  12515. name: "Front",
  12516. image: {
  12517. source: "./media/characters/sekvra/front.svg",
  12518. extra: 1,
  12519. bottom: 0.03
  12520. }
  12521. },
  12522. frontClothed: {
  12523. height: math.unit(1450, "feet"),
  12524. weight: math.unit(1.21e6, "tons"),
  12525. name: "Front (Clothed)",
  12526. image: {
  12527. source: "./media/characters/sekvra/front-clothed.svg",
  12528. extra: 1,
  12529. bottom: 0.03
  12530. }
  12531. },
  12532. side: {
  12533. height: math.unit(1450, "feet"),
  12534. weight: math.unit(1.21e6, "tons"),
  12535. name: "Side",
  12536. image: {
  12537. source: "./media/characters/sekvra/side.svg",
  12538. extra: 1,
  12539. bottom: 0.025
  12540. }
  12541. },
  12542. back: {
  12543. height: math.unit(1450, "feet"),
  12544. weight: math.unit(1.21e6, "tons"),
  12545. name: "Back",
  12546. image: {
  12547. source: "./media/characters/sekvra/back.svg",
  12548. extra: 1,
  12549. bottom: 0.005
  12550. }
  12551. },
  12552. },
  12553. [
  12554. {
  12555. name: "Macro",
  12556. height: math.unit(1450, "feet"),
  12557. default: true
  12558. },
  12559. {
  12560. name: "Megamacro",
  12561. height: math.unit(15000, "feet")
  12562. },
  12563. ]
  12564. ))
  12565. characterMakers.push(() => makeCharacter(
  12566. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12567. {
  12568. front: {
  12569. height: math.unit(6, "feet"),
  12570. weight: math.unit(150, "lb"),
  12571. name: "Front",
  12572. image: {
  12573. source: "./media/characters/carmine/front.svg",
  12574. extra: 1,
  12575. bottom: 0.035
  12576. }
  12577. },
  12578. frontArmor: {
  12579. height: math.unit(6, "feet"),
  12580. weight: math.unit(150, "lb"),
  12581. name: "Front (Armor)",
  12582. image: {
  12583. source: "./media/characters/carmine/front-armor.svg",
  12584. extra: 1,
  12585. bottom: 0.035
  12586. }
  12587. },
  12588. },
  12589. [
  12590. {
  12591. name: "Large",
  12592. height: math.unit(1, "mile")
  12593. },
  12594. {
  12595. name: "Huge",
  12596. height: math.unit(40, "miles"),
  12597. default: true
  12598. },
  12599. {
  12600. name: "Colossal",
  12601. height: math.unit(2500, "miles")
  12602. },
  12603. ]
  12604. ))
  12605. characterMakers.push(() => makeCharacter(
  12606. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12607. {
  12608. front: {
  12609. height: math.unit(6, "feet"),
  12610. weight: math.unit(150, "lb"),
  12611. name: "Front",
  12612. image: {
  12613. source: "./media/characters/elyssia/front.svg",
  12614. extra: 2201 / 2035,
  12615. bottom: 0.05
  12616. }
  12617. },
  12618. frontClothed: {
  12619. height: math.unit(6, "feet"),
  12620. weight: math.unit(150, "lb"),
  12621. name: "Front (Clothed)",
  12622. image: {
  12623. source: "./media/characters/elyssia/front-clothed.svg",
  12624. extra: 2201 / 2035,
  12625. bottom: 0.05
  12626. }
  12627. },
  12628. back: {
  12629. height: math.unit(6, "feet"),
  12630. weight: math.unit(150, "lb"),
  12631. name: "Back",
  12632. image: {
  12633. source: "./media/characters/elyssia/back.svg",
  12634. extra: 2201 / 2035,
  12635. bottom: 0.013
  12636. }
  12637. },
  12638. },
  12639. [
  12640. {
  12641. name: "Smaller",
  12642. height: math.unit(150, "feet")
  12643. },
  12644. {
  12645. name: "Standard",
  12646. height: math.unit(1400, "feet"),
  12647. default: true
  12648. },
  12649. {
  12650. name: "Distracted",
  12651. height: math.unit(15000, "feet")
  12652. },
  12653. ]
  12654. ))
  12655. characterMakers.push(() => makeCharacter(
  12656. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12657. {
  12658. front: {
  12659. height: math.unit(7 + 4 / 12, "feet"),
  12660. weight: math.unit(500, "lb"),
  12661. name: "Front",
  12662. image: {
  12663. source: "./media/characters/geno-maxwell/front.svg",
  12664. extra: 2207 / 2040,
  12665. bottom: 0.015
  12666. }
  12667. },
  12668. },
  12669. [
  12670. {
  12671. name: "Micro",
  12672. height: math.unit(3, "inches")
  12673. },
  12674. {
  12675. name: "Normal",
  12676. height: math.unit(7 + 4 / 12, "feet"),
  12677. default: true
  12678. },
  12679. {
  12680. name: "Macro",
  12681. height: math.unit(220, "feet")
  12682. },
  12683. {
  12684. name: "Megamacro",
  12685. height: math.unit(11, "miles")
  12686. },
  12687. ]
  12688. ))
  12689. characterMakers.push(() => makeCharacter(
  12690. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12691. {
  12692. front: {
  12693. height: math.unit(7 + 4 / 12, "feet"),
  12694. weight: math.unit(500, "lb"),
  12695. name: "Front",
  12696. image: {
  12697. source: "./media/characters/regena-maxwell/front.svg",
  12698. extra: 3115 / 2770,
  12699. bottom: 0.02
  12700. }
  12701. },
  12702. },
  12703. [
  12704. {
  12705. name: "Normal",
  12706. height: math.unit(7 + 4 / 12, "feet"),
  12707. default: true
  12708. },
  12709. {
  12710. name: "Macro",
  12711. height: math.unit(220, "feet")
  12712. },
  12713. {
  12714. name: "Megamacro",
  12715. height: math.unit(11, "miles")
  12716. },
  12717. ]
  12718. ))
  12719. characterMakers.push(() => makeCharacter(
  12720. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12721. {
  12722. front: {
  12723. height: math.unit(6, "feet"),
  12724. weight: math.unit(150, "lb"),
  12725. name: "Front",
  12726. image: {
  12727. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12728. extra: 860 / 690,
  12729. bottom: 0.03
  12730. }
  12731. },
  12732. },
  12733. [
  12734. {
  12735. name: "Normal",
  12736. height: math.unit(1.7, "meters"),
  12737. default: true
  12738. },
  12739. ]
  12740. ))
  12741. characterMakers.push(() => makeCharacter(
  12742. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12743. {
  12744. front: {
  12745. height: math.unit(6, "feet"),
  12746. weight: math.unit(150, "lb"),
  12747. name: "Front",
  12748. image: {
  12749. source: "./media/characters/quilly/front.svg",
  12750. extra: 890 / 776
  12751. }
  12752. },
  12753. },
  12754. [
  12755. {
  12756. name: "Gigamacro",
  12757. height: math.unit(404090, "miles"),
  12758. default: true
  12759. },
  12760. ]
  12761. ))
  12762. characterMakers.push(() => makeCharacter(
  12763. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12764. {
  12765. front: {
  12766. height: math.unit(7 + 8 / 12, "feet"),
  12767. weight: math.unit(350, "lb"),
  12768. name: "Front",
  12769. image: {
  12770. source: "./media/characters/tempest/front.svg",
  12771. extra: 1175 / 1086,
  12772. bottom: 0.02
  12773. }
  12774. },
  12775. },
  12776. [
  12777. {
  12778. name: "Normal",
  12779. height: math.unit(7 + 8 / 12, "feet"),
  12780. default: true
  12781. },
  12782. ]
  12783. ))
  12784. characterMakers.push(() => makeCharacter(
  12785. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12786. {
  12787. side: {
  12788. height: math.unit(4 + 5 / 12, "feet"),
  12789. weight: math.unit(80, "lb"),
  12790. name: "Side",
  12791. image: {
  12792. source: "./media/characters/rodger/side.svg",
  12793. extra: 1235 / 1118
  12794. }
  12795. },
  12796. },
  12797. [
  12798. {
  12799. name: "Micro",
  12800. height: math.unit(1, "inch")
  12801. },
  12802. {
  12803. name: "Normal",
  12804. height: math.unit(4 + 5 / 12, "feet"),
  12805. default: true
  12806. },
  12807. {
  12808. name: "Macro",
  12809. height: math.unit(120, "feet")
  12810. },
  12811. ]
  12812. ))
  12813. characterMakers.push(() => makeCharacter(
  12814. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12815. {
  12816. front: {
  12817. height: math.unit(6, "feet"),
  12818. weight: math.unit(150, "lb"),
  12819. name: "Front",
  12820. image: {
  12821. source: "./media/characters/danyel/front.svg",
  12822. extra: 1185 / 1123,
  12823. bottom: 0.05
  12824. }
  12825. },
  12826. },
  12827. [
  12828. {
  12829. name: "Shrunken",
  12830. height: math.unit(0.5, "mm")
  12831. },
  12832. {
  12833. name: "Micro",
  12834. height: math.unit(1, "mm"),
  12835. default: true
  12836. },
  12837. {
  12838. name: "Upsized",
  12839. height: math.unit(5 + 5 / 12, "feet")
  12840. },
  12841. ]
  12842. ))
  12843. characterMakers.push(() => makeCharacter(
  12844. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12845. {
  12846. front: {
  12847. height: math.unit(5 + 6 / 12, "feet"),
  12848. weight: math.unit(200, "lb"),
  12849. name: "Front",
  12850. image: {
  12851. source: "./media/characters/vivian-bijoux/front.svg",
  12852. extra: 1,
  12853. bottom: 0.072
  12854. }
  12855. },
  12856. },
  12857. [
  12858. {
  12859. name: "Normal",
  12860. height: math.unit(5 + 6 / 12, "feet"),
  12861. default: true
  12862. },
  12863. {
  12864. name: "Bad Dream",
  12865. height: math.unit(500, "feet")
  12866. },
  12867. {
  12868. name: "Nightmare",
  12869. height: math.unit(500, "miles")
  12870. },
  12871. ]
  12872. ))
  12873. characterMakers.push(() => makeCharacter(
  12874. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12875. {
  12876. front: {
  12877. height: math.unit(6 + 1 / 12, "feet"),
  12878. weight: math.unit(260, "lb"),
  12879. name: "Front",
  12880. image: {
  12881. source: "./media/characters/zeta/front.svg",
  12882. extra: 1968 / 1889,
  12883. bottom: 0.06
  12884. }
  12885. },
  12886. back: {
  12887. height: math.unit(6 + 1 / 12, "feet"),
  12888. weight: math.unit(260, "lb"),
  12889. name: "Back",
  12890. image: {
  12891. source: "./media/characters/zeta/back.svg",
  12892. extra: 1944 / 1858,
  12893. bottom: 0.03
  12894. }
  12895. },
  12896. hand: {
  12897. height: math.unit(1.112, "feet"),
  12898. name: "Hand",
  12899. image: {
  12900. source: "./media/characters/zeta/hand.svg"
  12901. }
  12902. },
  12903. foot: {
  12904. height: math.unit(1.48, "feet"),
  12905. name: "Foot",
  12906. image: {
  12907. source: "./media/characters/zeta/foot.svg"
  12908. }
  12909. },
  12910. },
  12911. [
  12912. {
  12913. name: "Micro",
  12914. height: math.unit(6, "inches")
  12915. },
  12916. {
  12917. name: "Normal",
  12918. height: math.unit(6 + 1 / 12, "feet"),
  12919. default: true
  12920. },
  12921. {
  12922. name: "Macro",
  12923. height: math.unit(20, "feet")
  12924. },
  12925. ]
  12926. ))
  12927. characterMakers.push(() => makeCharacter(
  12928. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12929. {
  12930. front: {
  12931. height: math.unit(6, "feet"),
  12932. weight: math.unit(150, "lb"),
  12933. name: "Front",
  12934. image: {
  12935. source: "./media/characters/jamie-larsen/front.svg",
  12936. extra: 962 / 933,
  12937. bottom: 0.02
  12938. }
  12939. },
  12940. back: {
  12941. height: math.unit(6, "feet"),
  12942. weight: math.unit(150, "lb"),
  12943. name: "Back",
  12944. image: {
  12945. source: "./media/characters/jamie-larsen/back.svg",
  12946. extra: 997 / 946
  12947. }
  12948. },
  12949. },
  12950. [
  12951. {
  12952. name: "Macro",
  12953. height: math.unit(28 + 7 / 12, "feet"),
  12954. default: true
  12955. },
  12956. {
  12957. name: "Macro+",
  12958. height: math.unit(180, "feet")
  12959. },
  12960. {
  12961. name: "Megamacro",
  12962. height: math.unit(10, "miles")
  12963. },
  12964. {
  12965. name: "Gigamacro",
  12966. height: math.unit(200000, "miles")
  12967. },
  12968. ]
  12969. ))
  12970. characterMakers.push(() => makeCharacter(
  12971. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12972. {
  12973. front: {
  12974. height: math.unit(6, "feet"),
  12975. weight: math.unit(120, "lb"),
  12976. name: "Front",
  12977. image: {
  12978. source: "./media/characters/vance/front.svg",
  12979. extra: 1980 / 1890,
  12980. bottom: 0.09
  12981. }
  12982. },
  12983. back: {
  12984. height: math.unit(6, "feet"),
  12985. weight: math.unit(120, "lb"),
  12986. name: "Back",
  12987. image: {
  12988. source: "./media/characters/vance/back.svg",
  12989. extra: 2081 / 1994,
  12990. bottom: 0.014
  12991. }
  12992. },
  12993. hand: {
  12994. height: math.unit(0.88, "feet"),
  12995. name: "Hand",
  12996. image: {
  12997. source: "./media/characters/vance/hand.svg"
  12998. }
  12999. },
  13000. foot: {
  13001. height: math.unit(0.64, "feet"),
  13002. name: "Foot",
  13003. image: {
  13004. source: "./media/characters/vance/foot.svg"
  13005. }
  13006. },
  13007. },
  13008. [
  13009. {
  13010. name: "Small",
  13011. height: math.unit(90, "feet"),
  13012. default: true
  13013. },
  13014. {
  13015. name: "Macro",
  13016. height: math.unit(100, "meters")
  13017. },
  13018. {
  13019. name: "Megamacro",
  13020. height: math.unit(15, "miles")
  13021. },
  13022. ]
  13023. ))
  13024. characterMakers.push(() => makeCharacter(
  13025. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13026. {
  13027. front: {
  13028. height: math.unit(6, "feet"),
  13029. weight: math.unit(180, "lb"),
  13030. name: "Front",
  13031. image: {
  13032. source: "./media/characters/xochitl/front.svg",
  13033. extra: 2297 / 2261,
  13034. bottom: 0.065
  13035. }
  13036. },
  13037. back: {
  13038. height: math.unit(6, "feet"),
  13039. weight: math.unit(180, "lb"),
  13040. name: "Back",
  13041. image: {
  13042. source: "./media/characters/xochitl/back.svg",
  13043. extra: 2386 / 2354,
  13044. bottom: 0.01
  13045. }
  13046. },
  13047. foot: {
  13048. height: math.unit(6 / 5 * 1.15, "feet"),
  13049. weight: math.unit(150, "lb"),
  13050. name: "Foot",
  13051. image: {
  13052. source: "./media/characters/xochitl/foot.svg"
  13053. }
  13054. },
  13055. },
  13056. [
  13057. {
  13058. name: "Macro",
  13059. height: math.unit(80, "feet")
  13060. },
  13061. {
  13062. name: "Macro+",
  13063. height: math.unit(400, "feet"),
  13064. default: true
  13065. },
  13066. {
  13067. name: "Gigamacro",
  13068. height: math.unit(80000, "miles")
  13069. },
  13070. {
  13071. name: "Gigamacro+",
  13072. height: math.unit(400000, "miles")
  13073. },
  13074. {
  13075. name: "Teramacro",
  13076. height: math.unit(300, "AU")
  13077. },
  13078. ]
  13079. ))
  13080. characterMakers.push(() => makeCharacter(
  13081. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13082. {
  13083. front: {
  13084. height: math.unit(6, "feet"),
  13085. weight: math.unit(150, "lb"),
  13086. name: "Front",
  13087. image: {
  13088. source: "./media/characters/vincent/front.svg",
  13089. extra: 1130 / 1080,
  13090. bottom: 0.055
  13091. }
  13092. },
  13093. beak: {
  13094. height: math.unit(6 * 0.1, "feet"),
  13095. name: "Beak",
  13096. image: {
  13097. source: "./media/characters/vincent/beak.svg"
  13098. }
  13099. },
  13100. hand: {
  13101. height: math.unit(6 * 0.85, "feet"),
  13102. weight: math.unit(150, "lb"),
  13103. name: "Hand",
  13104. image: {
  13105. source: "./media/characters/vincent/hand.svg"
  13106. }
  13107. },
  13108. foot: {
  13109. height: math.unit(6 * 0.19, "feet"),
  13110. weight: math.unit(150, "lb"),
  13111. name: "Foot",
  13112. image: {
  13113. source: "./media/characters/vincent/foot.svg"
  13114. }
  13115. },
  13116. },
  13117. [
  13118. {
  13119. name: "Base",
  13120. height: math.unit(6 + 5 / 12, "feet"),
  13121. default: true
  13122. },
  13123. {
  13124. name: "Macro",
  13125. height: math.unit(300, "feet")
  13126. },
  13127. {
  13128. name: "Megamacro",
  13129. height: math.unit(2, "miles")
  13130. },
  13131. {
  13132. name: "Gigamacro",
  13133. height: math.unit(1000, "miles")
  13134. },
  13135. ]
  13136. ))
  13137. characterMakers.push(() => makeCharacter(
  13138. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13139. {
  13140. front: {
  13141. height: math.unit(6 + 2 / 12, "feet"),
  13142. weight: math.unit(265, "lb"),
  13143. name: "Front",
  13144. image: {
  13145. source: "./media/characters/jay/front.svg",
  13146. extra: 1510 / 1430,
  13147. bottom: 0.042
  13148. }
  13149. },
  13150. back: {
  13151. height: math.unit(6 + 2 / 12, "feet"),
  13152. weight: math.unit(265, "lb"),
  13153. name: "Back",
  13154. image: {
  13155. source: "./media/characters/jay/back.svg",
  13156. extra: 1510 / 1430,
  13157. bottom: 0.025
  13158. }
  13159. },
  13160. clothed: {
  13161. height: math.unit(6 + 2 / 12, "feet"),
  13162. weight: math.unit(265, "lb"),
  13163. name: "Front (Clothed)",
  13164. image: {
  13165. source: "./media/characters/jay/clothed.svg",
  13166. extra: 744 / 699,
  13167. bottom: 0.043
  13168. }
  13169. },
  13170. head: {
  13171. height: math.unit(1.772, "feet"),
  13172. name: "Head",
  13173. image: {
  13174. source: "./media/characters/jay/head.svg"
  13175. }
  13176. },
  13177. sizeRay: {
  13178. height: math.unit(1.331, "feet"),
  13179. name: "Size Ray",
  13180. image: {
  13181. source: "./media/characters/jay/size-ray.svg"
  13182. }
  13183. },
  13184. },
  13185. [
  13186. {
  13187. name: "Micro",
  13188. height: math.unit(1, "inch")
  13189. },
  13190. {
  13191. name: "Normal",
  13192. height: math.unit(6 + 2 / 12, "feet"),
  13193. default: true
  13194. },
  13195. {
  13196. name: "Macro",
  13197. height: math.unit(1, "mile")
  13198. },
  13199. {
  13200. name: "Megamacro",
  13201. height: math.unit(100, "miles")
  13202. },
  13203. ]
  13204. ))
  13205. characterMakers.push(() => makeCharacter(
  13206. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13207. {
  13208. front: {
  13209. height: math.unit(2, "meters"),
  13210. weight: math.unit(500, "kg"),
  13211. name: "Front",
  13212. image: {
  13213. source: "./media/characters/coatl/front.svg",
  13214. extra: 3948 / 3500,
  13215. bottom: 0.082
  13216. }
  13217. },
  13218. },
  13219. [
  13220. {
  13221. name: "Normal",
  13222. height: math.unit(4, "meters")
  13223. },
  13224. {
  13225. name: "Macro",
  13226. height: math.unit(100, "meters"),
  13227. default: true
  13228. },
  13229. {
  13230. name: "Macro+",
  13231. height: math.unit(300, "meters")
  13232. },
  13233. {
  13234. name: "Megamacro",
  13235. height: math.unit(3, "gigameters")
  13236. },
  13237. {
  13238. name: "Megamacro+",
  13239. height: math.unit(300, "terameters")
  13240. },
  13241. {
  13242. name: "Megamacro++",
  13243. height: math.unit(3, "lightyears")
  13244. },
  13245. ]
  13246. ))
  13247. characterMakers.push(() => makeCharacter(
  13248. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13249. {
  13250. front: {
  13251. height: math.unit(6, "feet"),
  13252. weight: math.unit(50, "kg"),
  13253. name: "front",
  13254. image: {
  13255. source: "./media/characters/shiroryu/front.svg",
  13256. extra: 1990 / 1935
  13257. }
  13258. },
  13259. },
  13260. [
  13261. {
  13262. name: "Mortal Mingling",
  13263. height: math.unit(3, "meters")
  13264. },
  13265. {
  13266. name: "Kaiju-ish",
  13267. height: math.unit(250, "meters")
  13268. },
  13269. {
  13270. name: "Somewhat Godly",
  13271. height: math.unit(400, "km"),
  13272. default: true
  13273. },
  13274. {
  13275. name: "Planetary",
  13276. height: math.unit(300, "megameters")
  13277. },
  13278. {
  13279. name: "Galaxy-dwarfing",
  13280. height: math.unit(450, "kiloparsecs")
  13281. },
  13282. {
  13283. name: "Universe Eater",
  13284. height: math.unit(150, "gigaparsecs")
  13285. },
  13286. {
  13287. name: "Almost Immeasurable",
  13288. height: math.unit(1.3e266, "yottaparsecs")
  13289. },
  13290. ]
  13291. ))
  13292. characterMakers.push(() => makeCharacter(
  13293. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13294. {
  13295. front: {
  13296. height: math.unit(6, "feet"),
  13297. weight: math.unit(150, "lb"),
  13298. name: "Front",
  13299. image: {
  13300. source: "./media/characters/umeko/front.svg",
  13301. extra: 1,
  13302. bottom: 0.019
  13303. }
  13304. },
  13305. frontArmored: {
  13306. height: math.unit(6, "feet"),
  13307. weight: math.unit(150, "lb"),
  13308. name: "Front (Armored)",
  13309. image: {
  13310. source: "./media/characters/umeko/front-armored.svg",
  13311. extra: 1,
  13312. bottom: 0.021
  13313. }
  13314. },
  13315. },
  13316. [
  13317. {
  13318. name: "Macro",
  13319. height: math.unit(220, "feet"),
  13320. default: true
  13321. },
  13322. {
  13323. name: "Guardian Dragon",
  13324. height: math.unit(50, "miles")
  13325. },
  13326. {
  13327. name: "Cosmic",
  13328. height: math.unit(800000, "miles")
  13329. },
  13330. ]
  13331. ))
  13332. characterMakers.push(() => makeCharacter(
  13333. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13334. {
  13335. front: {
  13336. height: math.unit(6, "feet"),
  13337. weight: math.unit(150, "lb"),
  13338. name: "Front",
  13339. image: {
  13340. source: "./media/characters/cassidy/front.svg",
  13341. extra: 1,
  13342. bottom: 0.043
  13343. }
  13344. },
  13345. },
  13346. [
  13347. {
  13348. name: "Canon Height",
  13349. height: math.unit(120, "feet"),
  13350. default: true
  13351. },
  13352. {
  13353. name: "Macro+",
  13354. height: math.unit(400, "feet")
  13355. },
  13356. {
  13357. name: "Macro++",
  13358. height: math.unit(4000, "feet")
  13359. },
  13360. {
  13361. name: "Megamacro",
  13362. height: math.unit(3, "miles")
  13363. },
  13364. ]
  13365. ))
  13366. characterMakers.push(() => makeCharacter(
  13367. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13368. {
  13369. front: {
  13370. height: math.unit(6, "feet"),
  13371. weight: math.unit(150, "lb"),
  13372. name: "Front",
  13373. image: {
  13374. source: "./media/characters/isaac/front.svg",
  13375. extra: 896 / 815,
  13376. bottom: 0.11
  13377. }
  13378. },
  13379. },
  13380. [
  13381. {
  13382. name: "Human Size",
  13383. height: math.unit(8, "feet"),
  13384. default: true
  13385. },
  13386. {
  13387. name: "Macro",
  13388. height: math.unit(400, "feet")
  13389. },
  13390. {
  13391. name: "Megamacro",
  13392. height: math.unit(50, "miles")
  13393. },
  13394. {
  13395. name: "Canon Height",
  13396. height: math.unit(200, "AU")
  13397. },
  13398. ]
  13399. ))
  13400. characterMakers.push(() => makeCharacter(
  13401. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13402. {
  13403. front: {
  13404. height: math.unit(6, "feet"),
  13405. weight: math.unit(72, "kg"),
  13406. name: "Front",
  13407. image: {
  13408. source: "./media/characters/sleekit/front.svg",
  13409. extra: 4693 / 4487,
  13410. bottom: 0.012
  13411. }
  13412. },
  13413. },
  13414. [
  13415. {
  13416. name: "Minimum Height",
  13417. height: math.unit(10, "meters")
  13418. },
  13419. {
  13420. name: "Smaller",
  13421. height: math.unit(25, "meters")
  13422. },
  13423. {
  13424. name: "Larger",
  13425. height: math.unit(38, "meters"),
  13426. default: true
  13427. },
  13428. {
  13429. name: "Maximum height",
  13430. height: math.unit(100, "meters")
  13431. },
  13432. ]
  13433. ))
  13434. characterMakers.push(() => makeCharacter(
  13435. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13436. {
  13437. front: {
  13438. height: math.unit(6, "feet"),
  13439. weight: math.unit(150, "lb"),
  13440. name: "Front",
  13441. image: {
  13442. source: "./media/characters/nillia/front.svg",
  13443. extra: 2195 / 2037,
  13444. bottom: 0.005
  13445. }
  13446. },
  13447. back: {
  13448. height: math.unit(6, "feet"),
  13449. weight: math.unit(150, "lb"),
  13450. name: "Back",
  13451. image: {
  13452. source: "./media/characters/nillia/back.svg",
  13453. extra: 2195 / 2037,
  13454. bottom: 0.005
  13455. }
  13456. },
  13457. },
  13458. [
  13459. {
  13460. name: "Canon Height",
  13461. height: math.unit(489, "feet"),
  13462. default: true
  13463. }
  13464. ]
  13465. ))
  13466. characterMakers.push(() => makeCharacter(
  13467. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13468. {
  13469. front: {
  13470. height: math.unit(6, "feet"),
  13471. weight: math.unit(150, "lb"),
  13472. name: "Front",
  13473. image: {
  13474. source: "./media/characters/mesmyriza/front.svg",
  13475. extra: 2067 / 1784,
  13476. bottom: 0.035
  13477. }
  13478. },
  13479. foot: {
  13480. height: math.unit(6 / (250 / 35), "feet"),
  13481. name: "Foot",
  13482. image: {
  13483. source: "./media/characters/mesmyriza/foot.svg"
  13484. }
  13485. },
  13486. },
  13487. [
  13488. {
  13489. name: "Macro",
  13490. height: math.unit(457, "meters"),
  13491. default: true
  13492. },
  13493. {
  13494. name: "Megamacro",
  13495. height: math.unit(8, "megameters")
  13496. },
  13497. ]
  13498. ))
  13499. characterMakers.push(() => makeCharacter(
  13500. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13501. {
  13502. front: {
  13503. height: math.unit(6, "feet"),
  13504. weight: math.unit(250, "lb"),
  13505. name: "Front",
  13506. image: {
  13507. source: "./media/characters/saudade/front.svg",
  13508. extra: 1172 / 1139,
  13509. bottom: 0.035
  13510. }
  13511. },
  13512. },
  13513. [
  13514. {
  13515. name: "Micro",
  13516. height: math.unit(3, "inches")
  13517. },
  13518. {
  13519. name: "Normal",
  13520. height: math.unit(6, "feet"),
  13521. default: true
  13522. },
  13523. {
  13524. name: "Macro",
  13525. height: math.unit(50, "feet")
  13526. },
  13527. {
  13528. name: "Megamacro",
  13529. height: math.unit(2800, "feet")
  13530. },
  13531. ]
  13532. ))
  13533. characterMakers.push(() => makeCharacter(
  13534. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13535. {
  13536. front: {
  13537. height: math.unit(5 + 4 / 12, "feet"),
  13538. weight: math.unit(100, "lb"),
  13539. name: "Front",
  13540. image: {
  13541. source: "./media/characters/keireer/front.svg",
  13542. extra: 716 / 666,
  13543. bottom: 0.05
  13544. }
  13545. },
  13546. },
  13547. [
  13548. {
  13549. name: "Normal",
  13550. height: math.unit(5 + 4 / 12, "feet"),
  13551. default: true
  13552. },
  13553. ]
  13554. ))
  13555. characterMakers.push(() => makeCharacter(
  13556. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13557. {
  13558. front: {
  13559. height: math.unit(6, "feet"),
  13560. weight: math.unit(90, "kg"),
  13561. name: "Front",
  13562. image: {
  13563. source: "./media/characters/mirja/front.svg",
  13564. extra: 1789 / 1683,
  13565. bottom: 0.05
  13566. }
  13567. },
  13568. frontDressed: {
  13569. height: math.unit(6, "feet"),
  13570. weight: math.unit(90, "lb"),
  13571. name: "Front (Dressed)",
  13572. image: {
  13573. source: "./media/characters/mirja/front-dressed.svg",
  13574. extra: 1789 / 1683,
  13575. bottom: 0.05
  13576. }
  13577. },
  13578. back: {
  13579. height: math.unit(6, "feet"),
  13580. weight: math.unit(90, "lb"),
  13581. name: "Back",
  13582. image: {
  13583. source: "./media/characters/mirja/back.svg",
  13584. extra: 953 / 917,
  13585. bottom: 0.017
  13586. }
  13587. },
  13588. },
  13589. [
  13590. {
  13591. name: "\"Incognito\"",
  13592. height: math.unit(3, "meters")
  13593. },
  13594. {
  13595. name: "Strolling Size",
  13596. height: math.unit(15, "km")
  13597. },
  13598. {
  13599. name: "Larger Strolling Size",
  13600. height: math.unit(400, "km")
  13601. },
  13602. {
  13603. name: "Preferred Size",
  13604. height: math.unit(5000, "km")
  13605. },
  13606. {
  13607. name: "True Size",
  13608. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13609. default: true
  13610. },
  13611. ]
  13612. ))
  13613. characterMakers.push(() => makeCharacter(
  13614. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13615. {
  13616. front: {
  13617. height: math.unit(15, "feet"),
  13618. weight: math.unit(880, "kg"),
  13619. name: "Front",
  13620. image: {
  13621. source: "./media/characters/nightraver/front.svg",
  13622. extra: 2444 / 2160,
  13623. bottom: 0.027
  13624. }
  13625. },
  13626. back: {
  13627. height: math.unit(15, "feet"),
  13628. weight: math.unit(880, "kg"),
  13629. name: "Back",
  13630. image: {
  13631. source: "./media/characters/nightraver/back.svg",
  13632. extra: 2309 / 2180,
  13633. bottom: 0.005
  13634. }
  13635. },
  13636. sole: {
  13637. height: math.unit(2.878, "feet"),
  13638. name: "Sole",
  13639. image: {
  13640. source: "./media/characters/nightraver/sole.svg"
  13641. }
  13642. },
  13643. foot: {
  13644. height: math.unit(2.285, "feet"),
  13645. name: "Foot",
  13646. image: {
  13647. source: "./media/characters/nightraver/foot.svg"
  13648. }
  13649. },
  13650. maw: {
  13651. height: math.unit(2.67, "feet"),
  13652. name: "Maw",
  13653. image: {
  13654. source: "./media/characters/nightraver/maw.svg"
  13655. }
  13656. },
  13657. },
  13658. [
  13659. {
  13660. name: "Micro",
  13661. height: math.unit(1, "cm")
  13662. },
  13663. {
  13664. name: "Normal",
  13665. height: math.unit(15, "feet"),
  13666. default: true
  13667. },
  13668. {
  13669. name: "Macro",
  13670. height: math.unit(300, "feet")
  13671. },
  13672. {
  13673. name: "Megamacro",
  13674. height: math.unit(300, "miles")
  13675. },
  13676. {
  13677. name: "Gigamacro",
  13678. height: math.unit(10000, "miles")
  13679. },
  13680. ]
  13681. ))
  13682. characterMakers.push(() => makeCharacter(
  13683. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13684. {
  13685. side: {
  13686. height: math.unit(2, "inches"),
  13687. weight: math.unit(5, "grams"),
  13688. name: "Side",
  13689. image: {
  13690. source: "./media/characters/arc/side.svg"
  13691. }
  13692. },
  13693. },
  13694. [
  13695. {
  13696. name: "Micro",
  13697. height: math.unit(2, "inches"),
  13698. default: true
  13699. },
  13700. ]
  13701. ))
  13702. characterMakers.push(() => makeCharacter(
  13703. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13704. {
  13705. front: {
  13706. height: math.unit(1.1938, "meters"),
  13707. weight: math.unit(54, "kg"),
  13708. name: "Front",
  13709. image: {
  13710. source: "./media/characters/nebula-shahar/front.svg",
  13711. extra: 1642 / 1436,
  13712. bottom: 0.06
  13713. }
  13714. },
  13715. },
  13716. [
  13717. {
  13718. name: "Megamicro",
  13719. height: math.unit(0.3, "mm")
  13720. },
  13721. {
  13722. name: "Micro",
  13723. height: math.unit(3, "cm")
  13724. },
  13725. {
  13726. name: "Normal",
  13727. height: math.unit(138, "cm"),
  13728. default: true
  13729. },
  13730. {
  13731. name: "Macro",
  13732. height: math.unit(30, "m")
  13733. },
  13734. ]
  13735. ))
  13736. characterMakers.push(() => makeCharacter(
  13737. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13738. {
  13739. front: {
  13740. height: math.unit(5.24, "feet"),
  13741. weight: math.unit(150, "lb"),
  13742. name: "Front",
  13743. image: {
  13744. source: "./media/characters/shayla/front.svg",
  13745. extra: 1512 / 1414,
  13746. bottom: 0.01
  13747. }
  13748. },
  13749. back: {
  13750. height: math.unit(5.24, "feet"),
  13751. weight: math.unit(150, "lb"),
  13752. name: "Back",
  13753. image: {
  13754. source: "./media/characters/shayla/back.svg",
  13755. extra: 1512 / 1414
  13756. }
  13757. },
  13758. hand: {
  13759. height: math.unit(0.7781496062992126, "feet"),
  13760. name: "Hand",
  13761. image: {
  13762. source: "./media/characters/shayla/hand.svg"
  13763. }
  13764. },
  13765. foot: {
  13766. height: math.unit(1.4206036745406823, "feet"),
  13767. name: "Foot",
  13768. image: {
  13769. source: "./media/characters/shayla/foot.svg"
  13770. }
  13771. },
  13772. },
  13773. [
  13774. {
  13775. name: "Micro",
  13776. height: math.unit(0.32, "feet")
  13777. },
  13778. {
  13779. name: "Normal",
  13780. height: math.unit(5.24, "feet"),
  13781. default: true
  13782. },
  13783. {
  13784. name: "Macro",
  13785. height: math.unit(492.12, "feet")
  13786. },
  13787. {
  13788. name: "Megamacro",
  13789. height: math.unit(186.41, "miles")
  13790. },
  13791. ]
  13792. ))
  13793. characterMakers.push(() => makeCharacter(
  13794. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13795. {
  13796. front: {
  13797. height: math.unit(2.2, "m"),
  13798. weight: math.unit(120, "kg"),
  13799. name: "Front",
  13800. image: {
  13801. source: "./media/characters/pia-jr/front.svg",
  13802. extra: 1000 / 970,
  13803. bottom: 0.035
  13804. }
  13805. },
  13806. hand: {
  13807. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13808. name: "Hand",
  13809. image: {
  13810. source: "./media/characters/pia-jr/hand.svg"
  13811. }
  13812. },
  13813. paw: {
  13814. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13815. name: "Paw",
  13816. image: {
  13817. source: "./media/characters/pia-jr/paw.svg"
  13818. }
  13819. },
  13820. },
  13821. [
  13822. {
  13823. name: "Micro",
  13824. height: math.unit(1.2, "cm")
  13825. },
  13826. {
  13827. name: "Normal",
  13828. height: math.unit(2.2, "m"),
  13829. default: true
  13830. },
  13831. {
  13832. name: "Macro",
  13833. height: math.unit(180, "m")
  13834. },
  13835. {
  13836. name: "Megamacro",
  13837. height: math.unit(420, "km")
  13838. },
  13839. ]
  13840. ))
  13841. characterMakers.push(() => makeCharacter(
  13842. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13843. {
  13844. front: {
  13845. height: math.unit(2, "m"),
  13846. weight: math.unit(115, "kg"),
  13847. name: "Front",
  13848. image: {
  13849. source: "./media/characters/pia-sr/front.svg",
  13850. extra: 760 / 730,
  13851. bottom: 0.015
  13852. }
  13853. },
  13854. back: {
  13855. height: math.unit(2, "m"),
  13856. weight: math.unit(115, "kg"),
  13857. name: "Back",
  13858. image: {
  13859. source: "./media/characters/pia-sr/back.svg",
  13860. extra: 760 / 730,
  13861. bottom: 0.01
  13862. }
  13863. },
  13864. hand: {
  13865. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13866. name: "Hand",
  13867. image: {
  13868. source: "./media/characters/pia-sr/hand.svg"
  13869. }
  13870. },
  13871. foot: {
  13872. height: math.unit(1.83, "feet"),
  13873. name: "Foot",
  13874. image: {
  13875. source: "./media/characters/pia-sr/foot.svg"
  13876. }
  13877. },
  13878. },
  13879. [
  13880. {
  13881. name: "Micro",
  13882. height: math.unit(88, "mm")
  13883. },
  13884. {
  13885. name: "Normal",
  13886. height: math.unit(2, "m"),
  13887. default: true
  13888. },
  13889. {
  13890. name: "Macro",
  13891. height: math.unit(200, "m")
  13892. },
  13893. {
  13894. name: "Megamacro",
  13895. height: math.unit(420, "km")
  13896. },
  13897. ]
  13898. ))
  13899. characterMakers.push(() => makeCharacter(
  13900. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13901. {
  13902. front: {
  13903. height: math.unit(8 + 2 / 12, "feet"),
  13904. weight: math.unit(300, "lb"),
  13905. name: "Front",
  13906. image: {
  13907. source: "./media/characters/kibibyte/front.svg",
  13908. extra: 2221 / 2098,
  13909. bottom: 0.04
  13910. }
  13911. },
  13912. },
  13913. [
  13914. {
  13915. name: "Normal",
  13916. height: math.unit(8 + 2 / 12, "feet"),
  13917. default: true
  13918. },
  13919. {
  13920. name: "Socialable Macro",
  13921. height: math.unit(50, "feet")
  13922. },
  13923. {
  13924. name: "Macro",
  13925. height: math.unit(300, "feet")
  13926. },
  13927. {
  13928. name: "Megamacro",
  13929. height: math.unit(500, "miles")
  13930. },
  13931. ]
  13932. ))
  13933. characterMakers.push(() => makeCharacter(
  13934. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13935. {
  13936. front: {
  13937. height: math.unit(6, "feet"),
  13938. weight: math.unit(150, "lb"),
  13939. name: "Front",
  13940. image: {
  13941. source: "./media/characters/felix/front.svg",
  13942. extra: 762 / 722,
  13943. bottom: 0.02
  13944. }
  13945. },
  13946. frontClothed: {
  13947. height: math.unit(6, "feet"),
  13948. weight: math.unit(150, "lb"),
  13949. name: "Front (Clothed)",
  13950. image: {
  13951. source: "./media/characters/felix/front-clothed.svg",
  13952. extra: 762 / 722,
  13953. bottom: 0.02
  13954. }
  13955. },
  13956. },
  13957. [
  13958. {
  13959. name: "Normal",
  13960. height: math.unit(6 + 8 / 12, "feet"),
  13961. default: true
  13962. },
  13963. {
  13964. name: "Macro",
  13965. height: math.unit(2600, "feet")
  13966. },
  13967. {
  13968. name: "Megamacro",
  13969. height: math.unit(450, "miles")
  13970. },
  13971. ]
  13972. ))
  13973. characterMakers.push(() => makeCharacter(
  13974. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13975. {
  13976. front: {
  13977. height: math.unit(6 + 1 / 12, "feet"),
  13978. weight: math.unit(250, "lb"),
  13979. name: "Front",
  13980. image: {
  13981. source: "./media/characters/tobo/front.svg",
  13982. extra: 608 / 586,
  13983. bottom: 0.023
  13984. }
  13985. },
  13986. back: {
  13987. height: math.unit(6 + 1 / 12, "feet"),
  13988. weight: math.unit(250, "lb"),
  13989. name: "Back",
  13990. image: {
  13991. source: "./media/characters/tobo/back.svg",
  13992. extra: 608 / 586
  13993. }
  13994. },
  13995. },
  13996. [
  13997. {
  13998. name: "Nano",
  13999. height: math.unit(2, "nm")
  14000. },
  14001. {
  14002. name: "Megamicro",
  14003. height: math.unit(0.1, "mm")
  14004. },
  14005. {
  14006. name: "Micro",
  14007. height: math.unit(1, "inch"),
  14008. default: true
  14009. },
  14010. {
  14011. name: "Human-sized",
  14012. height: math.unit(6 + 1 / 12, "feet")
  14013. },
  14014. {
  14015. name: "Macro",
  14016. height: math.unit(250, "feet")
  14017. },
  14018. {
  14019. name: "Megamacro",
  14020. height: math.unit(75, "miles")
  14021. },
  14022. {
  14023. name: "Texas-sized",
  14024. height: math.unit(750, "miles")
  14025. },
  14026. {
  14027. name: "Teramacro",
  14028. height: math.unit(50000, "miles")
  14029. },
  14030. ]
  14031. ))
  14032. characterMakers.push(() => makeCharacter(
  14033. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14034. {
  14035. front: {
  14036. height: math.unit(6, "feet"),
  14037. weight: math.unit(269, "lb"),
  14038. name: "Front",
  14039. image: {
  14040. source: "./media/characters/danny-kapowsky/front.svg",
  14041. extra: 766 / 736,
  14042. bottom: 0.044
  14043. }
  14044. },
  14045. back: {
  14046. height: math.unit(6, "feet"),
  14047. weight: math.unit(269, "lb"),
  14048. name: "Back",
  14049. image: {
  14050. source: "./media/characters/danny-kapowsky/back.svg",
  14051. extra: 797 / 760,
  14052. bottom: 0.025
  14053. }
  14054. },
  14055. },
  14056. [
  14057. {
  14058. name: "Macro",
  14059. height: math.unit(150, "feet"),
  14060. default: true
  14061. },
  14062. {
  14063. name: "Macro+",
  14064. height: math.unit(200, "feet")
  14065. },
  14066. {
  14067. name: "Macro++",
  14068. height: math.unit(300, "feet")
  14069. },
  14070. {
  14071. name: "Macro+++",
  14072. height: math.unit(400, "feet")
  14073. },
  14074. ]
  14075. ))
  14076. characterMakers.push(() => makeCharacter(
  14077. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14078. {
  14079. side: {
  14080. height: math.unit(6, "feet"),
  14081. weight: math.unit(170, "lb"),
  14082. name: "Side",
  14083. image: {
  14084. source: "./media/characters/finn/side.svg",
  14085. extra: 1953 / 1807,
  14086. bottom: 0.057
  14087. }
  14088. },
  14089. },
  14090. [
  14091. {
  14092. name: "Megamacro",
  14093. height: math.unit(14445, "feet"),
  14094. default: true
  14095. },
  14096. ]
  14097. ))
  14098. characterMakers.push(() => makeCharacter(
  14099. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14100. {
  14101. front: {
  14102. height: math.unit(5 + 6 / 12, "feet"),
  14103. weight: math.unit(125, "lb"),
  14104. name: "Front",
  14105. image: {
  14106. source: "./media/characters/roy/front.svg",
  14107. extra: 1,
  14108. bottom: 0.11
  14109. }
  14110. },
  14111. },
  14112. [
  14113. {
  14114. name: "Micro",
  14115. height: math.unit(3, "inches"),
  14116. default: true
  14117. },
  14118. {
  14119. name: "Normal",
  14120. height: math.unit(5 + 6 / 12, "feet")
  14121. },
  14122. {
  14123. name: "Lesser Macro",
  14124. height: math.unit(60, "feet")
  14125. },
  14126. {
  14127. name: "Greater Macro",
  14128. height: math.unit(120, "feet")
  14129. },
  14130. ]
  14131. ))
  14132. characterMakers.push(() => makeCharacter(
  14133. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14134. {
  14135. front: {
  14136. height: math.unit(6, "feet"),
  14137. weight: math.unit(100, "lb"),
  14138. name: "Front",
  14139. image: {
  14140. source: "./media/characters/aevsivs/front.svg",
  14141. extra: 1,
  14142. bottom: 0.03
  14143. }
  14144. },
  14145. back: {
  14146. height: math.unit(6, "feet"),
  14147. weight: math.unit(100, "lb"),
  14148. name: "Back",
  14149. image: {
  14150. source: "./media/characters/aevsivs/back.svg"
  14151. }
  14152. },
  14153. },
  14154. [
  14155. {
  14156. name: "Micro",
  14157. height: math.unit(2, "inches"),
  14158. default: true
  14159. },
  14160. {
  14161. name: "Normal",
  14162. height: math.unit(5, "feet")
  14163. },
  14164. ]
  14165. ))
  14166. characterMakers.push(() => makeCharacter(
  14167. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14168. {
  14169. front: {
  14170. height: math.unit(5 + 7 / 12, "feet"),
  14171. weight: math.unit(159, "lb"),
  14172. name: "Front",
  14173. image: {
  14174. source: "./media/characters/hildegard/front.svg",
  14175. extra: 289 / 269,
  14176. bottom: 7.63 / 297.8
  14177. }
  14178. },
  14179. back: {
  14180. height: math.unit(5 + 7 / 12, "feet"),
  14181. weight: math.unit(159, "lb"),
  14182. name: "Back",
  14183. image: {
  14184. source: "./media/characters/hildegard/back.svg",
  14185. extra: 280 / 260,
  14186. bottom: 2.3 / 282
  14187. }
  14188. },
  14189. },
  14190. [
  14191. {
  14192. name: "Normal",
  14193. height: math.unit(5 + 7 / 12, "feet"),
  14194. default: true
  14195. },
  14196. ]
  14197. ))
  14198. characterMakers.push(() => makeCharacter(
  14199. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14200. {
  14201. bernard: {
  14202. height: math.unit(2 + 7 / 12, "feet"),
  14203. weight: math.unit(66, "lb"),
  14204. name: "Bernard",
  14205. rename: true,
  14206. image: {
  14207. source: "./media/characters/bernard-wilder/bernard.svg",
  14208. extra: 192 / 128,
  14209. bottom: 0.05
  14210. }
  14211. },
  14212. wilder: {
  14213. height: math.unit(5 + 8 / 12, "feet"),
  14214. weight: math.unit(143, "lb"),
  14215. name: "Wilder",
  14216. rename: true,
  14217. image: {
  14218. source: "./media/characters/bernard-wilder/wilder.svg",
  14219. extra: 361 / 312,
  14220. bottom: 0.02
  14221. }
  14222. },
  14223. },
  14224. [
  14225. {
  14226. name: "Normal",
  14227. height: math.unit(2 + 7 / 12, "feet"),
  14228. default: true
  14229. },
  14230. ]
  14231. ))
  14232. characterMakers.push(() => makeCharacter(
  14233. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14234. {
  14235. anthro: {
  14236. height: math.unit(6 + 1 / 12, "feet"),
  14237. weight: math.unit(155, "lb"),
  14238. name: "Anthro",
  14239. image: {
  14240. source: "./media/characters/hearth/anthro.svg",
  14241. extra: 260 / 250,
  14242. bottom: 0.02
  14243. }
  14244. },
  14245. feral: {
  14246. height: math.unit(3.78, "feet"),
  14247. weight: math.unit(35, "kg"),
  14248. name: "Feral",
  14249. image: {
  14250. source: "./media/characters/hearth/feral.svg",
  14251. extra: 153 / 135,
  14252. bottom: 0.03
  14253. }
  14254. },
  14255. },
  14256. [
  14257. {
  14258. name: "Normal",
  14259. height: math.unit(6 + 1 / 12, "feet"),
  14260. default: true
  14261. },
  14262. ]
  14263. ))
  14264. characterMakers.push(() => makeCharacter(
  14265. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14266. {
  14267. front: {
  14268. height: math.unit(6, "feet"),
  14269. weight: math.unit(182, "lb"),
  14270. name: "Front",
  14271. image: {
  14272. source: "./media/characters/ingrid/front.svg",
  14273. extra: 294 / 268,
  14274. bottom: 0.027
  14275. }
  14276. },
  14277. },
  14278. [
  14279. {
  14280. name: "Normal",
  14281. height: math.unit(6, "feet"),
  14282. default: true
  14283. },
  14284. ]
  14285. ))
  14286. characterMakers.push(() => makeCharacter(
  14287. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14288. {
  14289. eevee: {
  14290. height: math.unit(2 + 10 / 12, "feet"),
  14291. weight: math.unit(86, "lb"),
  14292. name: "Malgam",
  14293. image: {
  14294. source: "./media/characters/malgam/eevee.svg",
  14295. extra: 218 / 180,
  14296. bottom: 0.2
  14297. }
  14298. },
  14299. sylveon: {
  14300. height: math.unit(4, "feet"),
  14301. weight: math.unit(101, "lb"),
  14302. name: "Future Malgam",
  14303. rename: true,
  14304. image: {
  14305. source: "./media/characters/malgam/sylveon.svg",
  14306. extra: 371 / 325,
  14307. bottom: 0.015
  14308. }
  14309. },
  14310. gigantamax: {
  14311. height: math.unit(50, "feet"),
  14312. name: "Gigantamax Malgam",
  14313. rename: true,
  14314. image: {
  14315. source: "./media/characters/malgam/gigantamax.svg"
  14316. }
  14317. },
  14318. },
  14319. [
  14320. {
  14321. name: "Normal",
  14322. height: math.unit(2 + 10 / 12, "feet"),
  14323. default: true
  14324. },
  14325. ]
  14326. ))
  14327. characterMakers.push(() => makeCharacter(
  14328. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14329. {
  14330. front: {
  14331. height: math.unit(5 + 11 / 12, "feet"),
  14332. weight: math.unit(188, "lb"),
  14333. name: "Front",
  14334. image: {
  14335. source: "./media/characters/fleur/front.svg",
  14336. extra: 309 / 283,
  14337. bottom: 0.007
  14338. }
  14339. },
  14340. },
  14341. [
  14342. {
  14343. name: "Normal",
  14344. height: math.unit(5 + 11 / 12, "feet"),
  14345. default: true
  14346. },
  14347. ]
  14348. ))
  14349. characterMakers.push(() => makeCharacter(
  14350. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14351. {
  14352. front: {
  14353. height: math.unit(5 + 4 / 12, "feet"),
  14354. weight: math.unit(122, "lb"),
  14355. name: "Front",
  14356. image: {
  14357. source: "./media/characters/jude/front.svg",
  14358. extra: 288 / 273,
  14359. bottom: 0.03
  14360. }
  14361. },
  14362. },
  14363. [
  14364. {
  14365. name: "Normal",
  14366. height: math.unit(5 + 4 / 12, "feet"),
  14367. default: true
  14368. },
  14369. ]
  14370. ))
  14371. characterMakers.push(() => makeCharacter(
  14372. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14373. {
  14374. front: {
  14375. height: math.unit(5 + 11 / 12, "feet"),
  14376. weight: math.unit(190, "lb"),
  14377. name: "Front",
  14378. image: {
  14379. source: "./media/characters/seara/front.svg",
  14380. extra: 1,
  14381. bottom: 0.05
  14382. }
  14383. },
  14384. },
  14385. [
  14386. {
  14387. name: "Normal",
  14388. height: math.unit(5 + 11 / 12, "feet"),
  14389. default: true
  14390. },
  14391. ]
  14392. ))
  14393. characterMakers.push(() => makeCharacter(
  14394. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14395. {
  14396. front: {
  14397. height: math.unit(16 + 5 / 12, "feet"),
  14398. weight: math.unit(524, "lb"),
  14399. name: "Front",
  14400. image: {
  14401. source: "./media/characters/caspian/front.svg",
  14402. extra: 1,
  14403. bottom: 0.04
  14404. }
  14405. },
  14406. },
  14407. [
  14408. {
  14409. name: "Normal",
  14410. height: math.unit(16 + 5 / 12, "feet"),
  14411. default: true
  14412. },
  14413. ]
  14414. ))
  14415. characterMakers.push(() => makeCharacter(
  14416. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14417. {
  14418. front: {
  14419. height: math.unit(5 + 7 / 12, "feet"),
  14420. weight: math.unit(170, "lb"),
  14421. name: "Front",
  14422. image: {
  14423. source: "./media/characters/mika/front.svg",
  14424. extra: 1,
  14425. bottom: 0.016
  14426. }
  14427. },
  14428. },
  14429. [
  14430. {
  14431. name: "Normal",
  14432. height: math.unit(5 + 7 / 12, "feet"),
  14433. default: true
  14434. },
  14435. ]
  14436. ))
  14437. characterMakers.push(() => makeCharacter(
  14438. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14439. {
  14440. front: {
  14441. height: math.unit(6 + 2 / 12, "feet"),
  14442. weight: math.unit(268, "lb"),
  14443. name: "Front",
  14444. image: {
  14445. source: "./media/characters/sol/front.svg",
  14446. extra: 247 / 231,
  14447. bottom: 0.05
  14448. }
  14449. },
  14450. },
  14451. [
  14452. {
  14453. name: "Normal",
  14454. height: math.unit(6 + 2 / 12, "feet"),
  14455. default: true
  14456. },
  14457. ]
  14458. ))
  14459. characterMakers.push(() => makeCharacter(
  14460. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14461. {
  14462. buizel: {
  14463. height: math.unit(2 + 5 / 12, "feet"),
  14464. weight: math.unit(87, "lb"),
  14465. name: "Buizel",
  14466. image: {
  14467. source: "./media/characters/umiko/buizel.svg",
  14468. extra: 172 / 157,
  14469. bottom: 0.01
  14470. }
  14471. },
  14472. floatzel: {
  14473. height: math.unit(5 + 9 / 12, "feet"),
  14474. weight: math.unit(250, "lb"),
  14475. name: "Floatzel",
  14476. image: {
  14477. source: "./media/characters/umiko/floatzel.svg",
  14478. extra: 262 / 248
  14479. }
  14480. },
  14481. },
  14482. [
  14483. {
  14484. name: "Normal",
  14485. height: math.unit(2 + 5 / 12, "feet"),
  14486. default: true
  14487. },
  14488. ]
  14489. ))
  14490. characterMakers.push(() => makeCharacter(
  14491. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14492. {
  14493. front: {
  14494. height: math.unit(6 + 2 / 12, "feet"),
  14495. weight: math.unit(146, "lb"),
  14496. name: "Front",
  14497. image: {
  14498. source: "./media/characters/iliac/front.svg",
  14499. extra: 389 / 365,
  14500. bottom: 0.035
  14501. }
  14502. },
  14503. },
  14504. [
  14505. {
  14506. name: "Normal",
  14507. height: math.unit(6 + 2 / 12, "feet"),
  14508. default: true
  14509. },
  14510. ]
  14511. ))
  14512. characterMakers.push(() => makeCharacter(
  14513. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14514. {
  14515. front: {
  14516. height: math.unit(6, "feet"),
  14517. weight: math.unit(170, "lb"),
  14518. name: "Front",
  14519. image: {
  14520. source: "./media/characters/topaz/front.svg",
  14521. extra: 317 / 303,
  14522. bottom: 0.055
  14523. }
  14524. },
  14525. },
  14526. [
  14527. {
  14528. name: "Normal",
  14529. height: math.unit(6, "feet"),
  14530. default: true
  14531. },
  14532. ]
  14533. ))
  14534. characterMakers.push(() => makeCharacter(
  14535. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14536. {
  14537. front: {
  14538. height: math.unit(5 + 11 / 12, "feet"),
  14539. weight: math.unit(144, "lb"),
  14540. name: "Front",
  14541. image: {
  14542. source: "./media/characters/gabriel/front.svg",
  14543. extra: 285 / 262,
  14544. bottom: 0.004
  14545. }
  14546. },
  14547. },
  14548. [
  14549. {
  14550. name: "Normal",
  14551. height: math.unit(5 + 11 / 12, "feet"),
  14552. default: true
  14553. },
  14554. ]
  14555. ))
  14556. characterMakers.push(() => makeCharacter(
  14557. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14558. {
  14559. side: {
  14560. height: math.unit(6 + 5 / 12, "feet"),
  14561. weight: math.unit(300, "lb"),
  14562. name: "Side",
  14563. image: {
  14564. source: "./media/characters/tempest-suicune/side.svg",
  14565. extra: 195 / 154,
  14566. bottom: 0.04
  14567. }
  14568. },
  14569. },
  14570. [
  14571. {
  14572. name: "Normal",
  14573. height: math.unit(6 + 5 / 12, "feet"),
  14574. default: true
  14575. },
  14576. ]
  14577. ))
  14578. characterMakers.push(() => makeCharacter(
  14579. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14580. {
  14581. front: {
  14582. height: math.unit(7 + 2 / 12, "feet"),
  14583. weight: math.unit(322, "lb"),
  14584. name: "Front",
  14585. image: {
  14586. source: "./media/characters/vulcan/front.svg",
  14587. extra: 154 / 147,
  14588. bottom: 0.04
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Normal",
  14595. height: math.unit(7 + 2 / 12, "feet"),
  14596. default: true
  14597. },
  14598. ]
  14599. ))
  14600. characterMakers.push(() => makeCharacter(
  14601. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14602. {
  14603. front: {
  14604. height: math.unit(5 + 10 / 12, "feet"),
  14605. weight: math.unit(264, "lb"),
  14606. name: "Front",
  14607. image: {
  14608. source: "./media/characters/gault/front.svg",
  14609. extra: 161 / 140,
  14610. bottom: 0.028
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Normal",
  14617. height: math.unit(5 + 10 / 12, "feet"),
  14618. default: true
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14624. {
  14625. front: {
  14626. height: math.unit(6, "feet"),
  14627. weight: math.unit(150, "lb"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/shard/front.svg",
  14631. extra: 273 / 238,
  14632. bottom: 0.02
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Normal",
  14639. height: math.unit(3 + 6 / 12, "feet"),
  14640. default: true
  14641. },
  14642. ]
  14643. ))
  14644. characterMakers.push(() => makeCharacter(
  14645. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14646. {
  14647. front: {
  14648. height: math.unit(5 + 11 / 12, "feet"),
  14649. weight: math.unit(146, "lb"),
  14650. name: "Front",
  14651. image: {
  14652. source: "./media/characters/ashe/front.svg",
  14653. extra: 400 / 373,
  14654. bottom: 0.01
  14655. }
  14656. },
  14657. },
  14658. [
  14659. {
  14660. name: "Normal",
  14661. height: math.unit(5 + 11 / 12, "feet"),
  14662. default: true
  14663. },
  14664. ]
  14665. ))
  14666. characterMakers.push(() => makeCharacter(
  14667. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14668. {
  14669. front: {
  14670. height: math.unit(5 + 5 / 12, "feet"),
  14671. weight: math.unit(135, "lb"),
  14672. name: "Front",
  14673. image: {
  14674. source: "./media/characters/beatrix/front.svg",
  14675. extra: 392 / 379,
  14676. bottom: 0.01
  14677. }
  14678. },
  14679. },
  14680. [
  14681. {
  14682. name: "Normal",
  14683. height: math.unit(6, "feet"),
  14684. default: true
  14685. },
  14686. ]
  14687. ))
  14688. characterMakers.push(() => makeCharacter(
  14689. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14690. {
  14691. front: {
  14692. height: math.unit(6, "feet"),
  14693. weight: math.unit(150, "lb"),
  14694. name: "Front",
  14695. image: {
  14696. source: "./media/characters/ignatius/front.svg",
  14697. extra: 245 / 222,
  14698. bottom: 0.01
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Normal",
  14705. height: math.unit(5 + 5 / 12, "feet"),
  14706. default: true
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14712. {
  14713. front: {
  14714. height: math.unit(6 + 2 / 12, "feet"),
  14715. weight: math.unit(138, "lb"),
  14716. name: "Front",
  14717. image: {
  14718. source: "./media/characters/mei-li/front.svg",
  14719. extra: 237 / 229,
  14720. bottom: 0.03
  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: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14734. {
  14735. front: {
  14736. height: math.unit(2 + 4 / 12, "feet"),
  14737. weight: math.unit(62, "lb"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/puru/front.svg",
  14741. extra: 206 / 149,
  14742. bottom: 0.06
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Normal",
  14749. height: math.unit(2 + 4 / 12, "feet"),
  14750. default: true
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14756. {
  14757. taur: {
  14758. height: math.unit(11, "feet"),
  14759. weight: math.unit(500, "lb"),
  14760. name: "Taur",
  14761. image: {
  14762. source: "./media/characters/kee/taur.svg",
  14763. extra: 1,
  14764. bottom: 0.04
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Normal",
  14771. height: math.unit(11, "feet"),
  14772. default: true
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14778. {
  14779. anthro: {
  14780. height: math.unit(7, "feet"),
  14781. weight: math.unit(190, "lb"),
  14782. name: "Anthro",
  14783. image: {
  14784. source: "./media/characters/cobalt-dracha/anthro.svg",
  14785. extra: 231 / 225,
  14786. bottom: 0.04
  14787. }
  14788. },
  14789. feral: {
  14790. height: math.unit(9 + 7 / 12, "feet"),
  14791. weight: math.unit(294, "lb"),
  14792. name: "Feral",
  14793. image: {
  14794. source: "./media/characters/cobalt-dracha/feral.svg",
  14795. extra: 692 / 633,
  14796. bottom: 0.05
  14797. }
  14798. },
  14799. },
  14800. [
  14801. {
  14802. name: "Normal",
  14803. height: math.unit(7, "feet"),
  14804. default: true
  14805. },
  14806. ]
  14807. ))
  14808. characterMakers.push(() => makeCharacter(
  14809. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14810. {
  14811. fallen: {
  14812. height: math.unit(11 + 8 / 12, "feet"),
  14813. weight: math.unit(485, "lb"),
  14814. name: "Java (Fallen)",
  14815. rename: true,
  14816. image: {
  14817. source: "./media/characters/java/fallen.svg",
  14818. extra: 226 / 208,
  14819. bottom: 0.005
  14820. }
  14821. },
  14822. godkin: {
  14823. height: math.unit(10 + 6 / 12, "feet"),
  14824. weight: math.unit(328, "lb"),
  14825. name: "Java (Godkin)",
  14826. rename: true,
  14827. image: {
  14828. source: "./media/characters/java/godkin.svg",
  14829. extra: 270 / 262,
  14830. bottom: 0.02
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Normal",
  14837. height: math.unit(11 + 8 / 12, "feet"),
  14838. default: true
  14839. },
  14840. ]
  14841. ))
  14842. characterMakers.push(() => makeCharacter(
  14843. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14844. {
  14845. front: {
  14846. height: math.unit(7 + 8 / 12, "feet"),
  14847. weight: math.unit(320, "lb"),
  14848. name: "Front",
  14849. image: {
  14850. source: "./media/characters/skoll/front.svg",
  14851. extra: 232 / 220,
  14852. bottom: 0.02
  14853. }
  14854. },
  14855. },
  14856. [
  14857. {
  14858. name: "Normal",
  14859. height: math.unit(7 + 8 / 12, "feet"),
  14860. default: true
  14861. },
  14862. ]
  14863. ))
  14864. characterMakers.push(() => makeCharacter(
  14865. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14866. {
  14867. front: {
  14868. height: math.unit(5 + 9 / 12, "feet"),
  14869. weight: math.unit(170, "lb"),
  14870. name: "Front",
  14871. image: {
  14872. source: "./media/characters/purna/front.svg",
  14873. extra: 239 / 229,
  14874. bottom: 0.01
  14875. }
  14876. },
  14877. },
  14878. [
  14879. {
  14880. name: "Normal",
  14881. height: math.unit(5 + 9 / 12, "feet"),
  14882. default: true
  14883. },
  14884. ]
  14885. ))
  14886. characterMakers.push(() => makeCharacter(
  14887. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14888. {
  14889. front: {
  14890. height: math.unit(5 + 9 / 12, "feet"),
  14891. weight: math.unit(142, "lb"),
  14892. name: "Front",
  14893. image: {
  14894. source: "./media/characters/kuva/front.svg",
  14895. extra: 281 / 271,
  14896. bottom: 0.006
  14897. }
  14898. },
  14899. },
  14900. [
  14901. {
  14902. name: "Normal",
  14903. height: math.unit(5 + 9 / 12, "feet"),
  14904. default: true
  14905. },
  14906. ]
  14907. ))
  14908. characterMakers.push(() => makeCharacter(
  14909. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14910. {
  14911. anthro: {
  14912. height: math.unit(9 + 2 / 12, "feet"),
  14913. weight: math.unit(270, "lb"),
  14914. name: "Anthro",
  14915. image: {
  14916. source: "./media/characters/embra/anthro.svg",
  14917. extra: 200 / 187,
  14918. bottom: 0.02
  14919. }
  14920. },
  14921. feral: {
  14922. height: math.unit(18 + 8 / 12, "feet"),
  14923. weight: math.unit(576, "lb"),
  14924. name: "Feral",
  14925. image: {
  14926. source: "./media/characters/embra/feral.svg",
  14927. extra: 152 / 137,
  14928. bottom: 0.037
  14929. }
  14930. },
  14931. },
  14932. [
  14933. {
  14934. name: "Normal",
  14935. height: math.unit(9 + 2 / 12, "feet"),
  14936. default: true
  14937. },
  14938. ]
  14939. ))
  14940. characterMakers.push(() => makeCharacter(
  14941. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14942. {
  14943. anthro: {
  14944. height: math.unit(10 + 9 / 12, "feet"),
  14945. weight: math.unit(224, "lb"),
  14946. name: "Anthro",
  14947. image: {
  14948. source: "./media/characters/grottos/anthro.svg",
  14949. extra: 350 / 332,
  14950. bottom: 0.045
  14951. }
  14952. },
  14953. feral: {
  14954. height: math.unit(20 + 7 / 12, "feet"),
  14955. weight: math.unit(629, "lb"),
  14956. name: "Feral",
  14957. image: {
  14958. source: "./media/characters/grottos/feral.svg",
  14959. extra: 207 / 190,
  14960. bottom: 0.05
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Normal",
  14967. height: math.unit(10 + 9 / 12, "feet"),
  14968. default: true
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14974. {
  14975. anthro: {
  14976. height: math.unit(9 + 6 / 12, "feet"),
  14977. weight: math.unit(298, "lb"),
  14978. name: "Anthro",
  14979. image: {
  14980. source: "./media/characters/frifna/anthro.svg",
  14981. extra: 282 / 269,
  14982. bottom: 0.015
  14983. }
  14984. },
  14985. feral: {
  14986. height: math.unit(16 + 2 / 12, "feet"),
  14987. weight: math.unit(624, "lb"),
  14988. name: "Feral",
  14989. image: {
  14990. source: "./media/characters/frifna/feral.svg"
  14991. }
  14992. },
  14993. },
  14994. [
  14995. {
  14996. name: "Normal",
  14997. height: math.unit(9 + 6 / 12, "feet"),
  14998. default: true
  14999. },
  15000. ]
  15001. ))
  15002. characterMakers.push(() => makeCharacter(
  15003. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15004. {
  15005. front: {
  15006. height: math.unit(6 + 2 / 12, "feet"),
  15007. weight: math.unit(168, "lb"),
  15008. name: "Front",
  15009. image: {
  15010. source: "./media/characters/elise/front.svg",
  15011. extra: 276 / 271
  15012. }
  15013. },
  15014. },
  15015. [
  15016. {
  15017. name: "Normal",
  15018. height: math.unit(6 + 2 / 12, "feet"),
  15019. default: true
  15020. },
  15021. ]
  15022. ))
  15023. characterMakers.push(() => makeCharacter(
  15024. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15025. {
  15026. front: {
  15027. height: math.unit(5 + 10 / 12, "feet"),
  15028. weight: math.unit(210, "lb"),
  15029. name: "Front",
  15030. image: {
  15031. source: "./media/characters/glade/front.svg",
  15032. extra: 258 / 247,
  15033. bottom: 0.008
  15034. }
  15035. },
  15036. },
  15037. [
  15038. {
  15039. name: "Normal",
  15040. height: math.unit(5 + 10 / 12, "feet"),
  15041. default: true
  15042. },
  15043. ]
  15044. ))
  15045. characterMakers.push(() => makeCharacter(
  15046. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15047. {
  15048. front: {
  15049. height: math.unit(5 + 10 / 12, "feet"),
  15050. weight: math.unit(129, "lb"),
  15051. name: "Front",
  15052. image: {
  15053. source: "./media/characters/rina/front.svg",
  15054. extra: 266 / 255,
  15055. bottom: 0.005
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "Normal",
  15062. height: math.unit(5 + 10 / 12, "feet"),
  15063. default: true
  15064. },
  15065. ]
  15066. ))
  15067. characterMakers.push(() => makeCharacter(
  15068. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15069. {
  15070. front: {
  15071. height: math.unit(6 + 1 / 12, "feet"),
  15072. weight: math.unit(192, "lb"),
  15073. name: "Front",
  15074. image: {
  15075. source: "./media/characters/veronica/front.svg",
  15076. extra: 319 / 309,
  15077. bottom: 0.005
  15078. }
  15079. },
  15080. },
  15081. [
  15082. {
  15083. name: "Normal",
  15084. height: math.unit(6 + 1 / 12, "feet"),
  15085. default: true
  15086. },
  15087. ]
  15088. ))
  15089. characterMakers.push(() => makeCharacter(
  15090. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15091. {
  15092. front: {
  15093. height: math.unit(9 + 3 / 12, "feet"),
  15094. weight: math.unit(1100, "lb"),
  15095. name: "Front",
  15096. image: {
  15097. source: "./media/characters/braxton/front.svg",
  15098. extra: 1057 / 984,
  15099. bottom: 0.05
  15100. }
  15101. },
  15102. },
  15103. [
  15104. {
  15105. name: "Normal",
  15106. height: math.unit(9 + 3 / 12, "feet")
  15107. },
  15108. {
  15109. name: "Giant",
  15110. height: math.unit(300, "feet"),
  15111. default: true
  15112. },
  15113. {
  15114. name: "Macro",
  15115. height: math.unit(700, "feet")
  15116. },
  15117. {
  15118. name: "Megamacro",
  15119. height: math.unit(6000, "feet")
  15120. },
  15121. ]
  15122. ))
  15123. characterMakers.push(() => makeCharacter(
  15124. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15125. {
  15126. front: {
  15127. height: math.unit(6 + 7 / 12, "feet"),
  15128. weight: math.unit(150, "lb"),
  15129. name: "Front",
  15130. image: {
  15131. source: "./media/characters/blue-feyonics/front.svg",
  15132. extra: 1403 / 1306,
  15133. bottom: 0.047
  15134. }
  15135. },
  15136. },
  15137. [
  15138. {
  15139. name: "Normal",
  15140. height: math.unit(6 + 7 / 12, "feet"),
  15141. default: true
  15142. },
  15143. ]
  15144. ))
  15145. characterMakers.push(() => makeCharacter(
  15146. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15147. {
  15148. front: {
  15149. height: math.unit(1.8, "meters"),
  15150. weight: math.unit(60, "kg"),
  15151. name: "Front",
  15152. image: {
  15153. source: "./media/characters/maxwell/front.svg",
  15154. extra: 2060 / 1873
  15155. }
  15156. },
  15157. },
  15158. [
  15159. {
  15160. name: "Micro",
  15161. height: math.unit(1, "mm")
  15162. },
  15163. {
  15164. name: "Normal",
  15165. height: math.unit(1.8, "meter"),
  15166. default: true
  15167. },
  15168. {
  15169. name: "Macro",
  15170. height: math.unit(30, "meters")
  15171. },
  15172. {
  15173. name: "Megamacro",
  15174. height: math.unit(10, "km")
  15175. },
  15176. ]
  15177. ))
  15178. characterMakers.push(() => makeCharacter(
  15179. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15180. {
  15181. front: {
  15182. height: math.unit(6, "feet"),
  15183. weight: math.unit(150, "lb"),
  15184. name: "Front",
  15185. image: {
  15186. source: "./media/characters/jack/front.svg",
  15187. extra: 1754 / 1640,
  15188. bottom: 0.01
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Normal",
  15195. height: math.unit(80000, "feet"),
  15196. default: true
  15197. },
  15198. {
  15199. name: "Max size",
  15200. height: math.unit(10, "lightyears")
  15201. },
  15202. ]
  15203. ))
  15204. characterMakers.push(() => makeCharacter(
  15205. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15206. {
  15207. upright: {
  15208. height: math.unit(7, "feet"),
  15209. weight: math.unit(170, "lb"),
  15210. name: "Upright",
  15211. image: {
  15212. source: "./media/characters/cafat/upright.svg",
  15213. bottom: 0.01
  15214. }
  15215. },
  15216. uprightFull: {
  15217. height: math.unit(7, "feet"),
  15218. weight: math.unit(170, "lb"),
  15219. name: "Upright (Full)",
  15220. image: {
  15221. source: "./media/characters/cafat/upright-full.svg",
  15222. bottom: 0.01
  15223. }
  15224. },
  15225. side: {
  15226. height: math.unit(5, "feet"),
  15227. weight: math.unit(150, "lb"),
  15228. name: "Side",
  15229. image: {
  15230. source: "./media/characters/cafat/side.svg"
  15231. }
  15232. },
  15233. },
  15234. [
  15235. {
  15236. name: "Small",
  15237. height: math.unit(7, "feet"),
  15238. default: true
  15239. },
  15240. {
  15241. name: "Large",
  15242. height: math.unit(15.5, "feet")
  15243. },
  15244. ]
  15245. ))
  15246. characterMakers.push(() => makeCharacter(
  15247. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15248. {
  15249. front: {
  15250. height: math.unit(6, "feet"),
  15251. weight: math.unit(150, "lb"),
  15252. name: "Front",
  15253. image: {
  15254. source: "./media/characters/verin-raharra/front.svg",
  15255. extra: 5019 / 4835,
  15256. bottom: 0.023
  15257. }
  15258. },
  15259. },
  15260. [
  15261. {
  15262. name: "Normal",
  15263. height: math.unit(7 + 5 / 12, "feet"),
  15264. default: true
  15265. },
  15266. {
  15267. name: "Upsized",
  15268. height: math.unit(20, "feet")
  15269. },
  15270. ]
  15271. ))
  15272. characterMakers.push(() => makeCharacter(
  15273. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15274. {
  15275. front: {
  15276. height: math.unit(7, "feet"),
  15277. weight: math.unit(230, "lb"),
  15278. name: "Front",
  15279. image: {
  15280. source: "./media/characters/nakata/front.svg",
  15281. extra: 1.005,
  15282. bottom: 0.01
  15283. }
  15284. },
  15285. },
  15286. [
  15287. {
  15288. name: "Normal",
  15289. height: math.unit(7, "feet"),
  15290. default: true
  15291. },
  15292. {
  15293. name: "Big",
  15294. height: math.unit(14, "feet")
  15295. },
  15296. {
  15297. name: "Macro",
  15298. height: math.unit(400, "feet")
  15299. },
  15300. ]
  15301. ))
  15302. characterMakers.push(() => makeCharacter(
  15303. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15304. {
  15305. front: {
  15306. height: math.unit(4.91, "feet"),
  15307. weight: math.unit(100, "lb"),
  15308. name: "Front",
  15309. image: {
  15310. source: "./media/characters/lily/front.svg",
  15311. extra: 1585 / 1415,
  15312. bottom: 0.02
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Normal",
  15319. height: math.unit(4.91, "feet"),
  15320. default: true
  15321. },
  15322. ]
  15323. ))
  15324. characterMakers.push(() => makeCharacter(
  15325. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15326. {
  15327. laying: {
  15328. height: math.unit(4 + 4 / 12, "feet"),
  15329. weight: math.unit(600, "lb"),
  15330. name: "Laying",
  15331. image: {
  15332. source: "./media/characters/sheila/laying.svg",
  15333. extra: 1333 / 1265,
  15334. bottom: 0.16
  15335. }
  15336. },
  15337. },
  15338. [
  15339. {
  15340. name: "Normal",
  15341. height: math.unit(4 + 4 / 12, "feet"),
  15342. default: true
  15343. },
  15344. ]
  15345. ))
  15346. characterMakers.push(() => makeCharacter(
  15347. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15348. {
  15349. front: {
  15350. height: math.unit(6, "feet"),
  15351. weight: math.unit(190, "lb"),
  15352. name: "Front",
  15353. image: {
  15354. source: "./media/characters/sax/front.svg",
  15355. extra: 1187 / 973,
  15356. bottom: 0.042
  15357. }
  15358. },
  15359. },
  15360. [
  15361. {
  15362. name: "Micro",
  15363. height: math.unit(4, "inches"),
  15364. default: true
  15365. },
  15366. ]
  15367. ))
  15368. characterMakers.push(() => makeCharacter(
  15369. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15370. {
  15371. front: {
  15372. height: math.unit(6, "feet"),
  15373. weight: math.unit(150, "lb"),
  15374. name: "Front",
  15375. image: {
  15376. source: "./media/characters/pandora/front.svg",
  15377. extra: 2720 / 2556,
  15378. bottom: 0.015
  15379. }
  15380. },
  15381. back: {
  15382. height: math.unit(6, "feet"),
  15383. weight: math.unit(150, "lb"),
  15384. name: "Back",
  15385. image: {
  15386. source: "./media/characters/pandora/back.svg",
  15387. extra: 2720 / 2556,
  15388. bottom: 0.01
  15389. }
  15390. },
  15391. beans: {
  15392. height: math.unit(6 / 8, "feet"),
  15393. name: "Beans",
  15394. image: {
  15395. source: "./media/characters/pandora/beans.svg"
  15396. }
  15397. },
  15398. skirt: {
  15399. height: math.unit(6, "feet"),
  15400. weight: math.unit(150, "lb"),
  15401. name: "Skirt",
  15402. image: {
  15403. source: "./media/characters/pandora/skirt.svg",
  15404. extra: 1622 / 1525,
  15405. bottom: 0.015
  15406. }
  15407. },
  15408. hoodie: {
  15409. height: math.unit(6, "feet"),
  15410. weight: math.unit(150, "lb"),
  15411. name: "Hoodie",
  15412. image: {
  15413. source: "./media/characters/pandora/hoodie.svg",
  15414. extra: 1622 / 1525,
  15415. bottom: 0.015
  15416. }
  15417. },
  15418. casual: {
  15419. height: math.unit(6, "feet"),
  15420. weight: math.unit(150, "lb"),
  15421. name: "Casual",
  15422. image: {
  15423. source: "./media/characters/pandora/casual.svg",
  15424. extra: 1622 / 1525,
  15425. bottom: 0.015
  15426. }
  15427. },
  15428. },
  15429. [
  15430. {
  15431. name: "Normal",
  15432. height: math.unit(6, "feet")
  15433. },
  15434. {
  15435. name: "Big Steppy",
  15436. height: math.unit(1, "km"),
  15437. default: true
  15438. },
  15439. ]
  15440. ))
  15441. characterMakers.push(() => makeCharacter(
  15442. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15443. {
  15444. side: {
  15445. height: math.unit(10, "feet"),
  15446. weight: math.unit(800, "kg"),
  15447. name: "Side",
  15448. image: {
  15449. source: "./media/characters/venio-darcony/side.svg",
  15450. extra: 1373 / 1003,
  15451. bottom: 0.037
  15452. }
  15453. },
  15454. front: {
  15455. height: math.unit(19, "feet"),
  15456. weight: math.unit(800, "kg"),
  15457. name: "Front",
  15458. image: {
  15459. source: "./media/characters/venio-darcony/front.svg"
  15460. }
  15461. },
  15462. back: {
  15463. height: math.unit(19, "feet"),
  15464. weight: math.unit(800, "kg"),
  15465. name: "Back",
  15466. image: {
  15467. source: "./media/characters/venio-darcony/back.svg"
  15468. }
  15469. },
  15470. sideNsfw: {
  15471. height: math.unit(10, "feet"),
  15472. weight: math.unit(800, "kg"),
  15473. name: "Side (NSFW)",
  15474. image: {
  15475. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15476. extra: 1373 / 1003,
  15477. bottom: 0.037
  15478. }
  15479. },
  15480. frontNsfw: {
  15481. height: math.unit(19, "feet"),
  15482. weight: math.unit(800, "kg"),
  15483. name: "Front (NSFW)",
  15484. image: {
  15485. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15486. }
  15487. },
  15488. backNsfw: {
  15489. height: math.unit(19, "feet"),
  15490. weight: math.unit(800, "kg"),
  15491. name: "Back (NSFW)",
  15492. image: {
  15493. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15494. }
  15495. },
  15496. sideArmored: {
  15497. height: math.unit(10, "feet"),
  15498. weight: math.unit(800, "kg"),
  15499. name: "Side (Armored)",
  15500. image: {
  15501. source: "./media/characters/venio-darcony/side-armored.svg",
  15502. extra: 1373 / 1003,
  15503. bottom: 0.037
  15504. }
  15505. },
  15506. frontArmored: {
  15507. height: math.unit(19, "feet"),
  15508. weight: math.unit(900, "kg"),
  15509. name: "Front (Armored)",
  15510. image: {
  15511. source: "./media/characters/venio-darcony/front-armored.svg"
  15512. }
  15513. },
  15514. backArmored: {
  15515. height: math.unit(19, "feet"),
  15516. weight: math.unit(900, "kg"),
  15517. name: "Back (Armored)",
  15518. image: {
  15519. source: "./media/characters/venio-darcony/back-armored.svg"
  15520. }
  15521. },
  15522. sword: {
  15523. height: math.unit(10, "feet"),
  15524. weight: math.unit(50, "lb"),
  15525. name: "Sword",
  15526. image: {
  15527. source: "./media/characters/venio-darcony/sword.svg"
  15528. }
  15529. },
  15530. },
  15531. [
  15532. {
  15533. name: "Normal",
  15534. height: math.unit(10, "feet")
  15535. },
  15536. {
  15537. name: "Macro",
  15538. height: math.unit(130, "feet"),
  15539. default: true
  15540. },
  15541. {
  15542. name: "Macro+",
  15543. height: math.unit(240, "feet")
  15544. },
  15545. ]
  15546. ))
  15547. characterMakers.push(() => makeCharacter(
  15548. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15549. {
  15550. front: {
  15551. height: math.unit(6, "feet"),
  15552. weight: math.unit(150, "lb"),
  15553. name: "Front",
  15554. image: {
  15555. source: "./media/characters/veski/front.svg",
  15556. extra: 1299 / 1225,
  15557. bottom: 0.04
  15558. }
  15559. },
  15560. back: {
  15561. height: math.unit(6, "feet"),
  15562. weight: math.unit(150, "lb"),
  15563. name: "Back",
  15564. image: {
  15565. source: "./media/characters/veski/back.svg",
  15566. extra: 1299 / 1225,
  15567. bottom: 0.008
  15568. }
  15569. },
  15570. maw: {
  15571. height: math.unit(1.5 * 1.21, "feet"),
  15572. name: "Maw",
  15573. image: {
  15574. source: "./media/characters/veski/maw.svg"
  15575. }
  15576. },
  15577. },
  15578. [
  15579. {
  15580. name: "Macro",
  15581. height: math.unit(2, "km"),
  15582. default: true
  15583. },
  15584. ]
  15585. ))
  15586. characterMakers.push(() => makeCharacter(
  15587. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15588. {
  15589. front: {
  15590. height: math.unit(5 + 7 / 12, "feet"),
  15591. name: "Front",
  15592. image: {
  15593. source: "./media/characters/isabelle/front.svg",
  15594. extra: 2130 / 1976,
  15595. bottom: 0.05
  15596. }
  15597. },
  15598. },
  15599. [
  15600. {
  15601. name: "Supermicro",
  15602. height: math.unit(10, "micrometers")
  15603. },
  15604. {
  15605. name: "Micro",
  15606. height: math.unit(1, "inch")
  15607. },
  15608. {
  15609. name: "Tiny",
  15610. height: math.unit(5, "inches")
  15611. },
  15612. {
  15613. name: "Standard",
  15614. height: math.unit(5 + 7 / 12, "inches")
  15615. },
  15616. {
  15617. name: "Macro",
  15618. height: math.unit(80, "meters"),
  15619. default: true
  15620. },
  15621. {
  15622. name: "Megamacro",
  15623. height: math.unit(250, "meters")
  15624. },
  15625. {
  15626. name: "Gigamacro",
  15627. height: math.unit(5, "km")
  15628. },
  15629. {
  15630. name: "Cosmic",
  15631. height: math.unit(2.5e6, "miles")
  15632. },
  15633. ]
  15634. ))
  15635. characterMakers.push(() => makeCharacter(
  15636. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15637. {
  15638. front: {
  15639. height: math.unit(6, "feet"),
  15640. weight: math.unit(150, "lb"),
  15641. name: "Front",
  15642. image: {
  15643. source: "./media/characters/hanzo/front.svg",
  15644. extra: 374 / 344,
  15645. bottom: 0.02
  15646. }
  15647. },
  15648. },
  15649. [
  15650. {
  15651. name: "Normal",
  15652. height: math.unit(8, "feet"),
  15653. default: true
  15654. },
  15655. ]
  15656. ))
  15657. characterMakers.push(() => makeCharacter(
  15658. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15659. {
  15660. front: {
  15661. height: math.unit(7, "feet"),
  15662. weight: math.unit(130, "lb"),
  15663. name: "Front",
  15664. image: {
  15665. source: "./media/characters/anna/front.svg",
  15666. extra: 169 / 145,
  15667. bottom: 0.06
  15668. }
  15669. },
  15670. full: {
  15671. height: math.unit(4.96, "feet"),
  15672. weight: math.unit(220, "lb"),
  15673. name: "Full",
  15674. image: {
  15675. source: "./media/characters/anna/full.svg",
  15676. extra: 138 / 114,
  15677. bottom: 0.15
  15678. }
  15679. },
  15680. tongue: {
  15681. height: math.unit(2.53, "feet"),
  15682. name: "Tongue",
  15683. image: {
  15684. source: "./media/characters/anna/tongue.svg"
  15685. }
  15686. },
  15687. },
  15688. [
  15689. {
  15690. name: "Normal",
  15691. height: math.unit(7, "feet"),
  15692. default: true
  15693. },
  15694. ]
  15695. ))
  15696. characterMakers.push(() => makeCharacter(
  15697. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15698. {
  15699. front: {
  15700. height: math.unit(7, "feet"),
  15701. weight: math.unit(150, "lb"),
  15702. name: "Front",
  15703. image: {
  15704. source: "./media/characters/ian-corvid/front.svg",
  15705. extra: 150 / 142,
  15706. bottom: 0.02
  15707. }
  15708. },
  15709. back: {
  15710. height: math.unit(7, "feet"),
  15711. weight: math.unit(150, "lb"),
  15712. name: "Back",
  15713. image: {
  15714. source: "./media/characters/ian-corvid/back.svg",
  15715. extra: 150 / 143,
  15716. bottom: 0.01
  15717. }
  15718. },
  15719. stomping: {
  15720. height: math.unit(7, "feet"),
  15721. weight: math.unit(150, "lb"),
  15722. name: "Stomping",
  15723. image: {
  15724. source: "./media/characters/ian-corvid/stomping.svg",
  15725. extra: 76 / 72
  15726. }
  15727. },
  15728. sitting: {
  15729. height: math.unit(7 / 1.8, "feet"),
  15730. weight: math.unit(150, "lb"),
  15731. name: "Sitting",
  15732. image: {
  15733. source: "./media/characters/ian-corvid/sitting.svg",
  15734. extra: 1400 / 1269,
  15735. bottom: 0.15
  15736. }
  15737. },
  15738. },
  15739. [
  15740. {
  15741. name: "Tiny Microw",
  15742. height: math.unit(1, "inch")
  15743. },
  15744. {
  15745. name: "Microw",
  15746. height: math.unit(6, "inches")
  15747. },
  15748. {
  15749. name: "Crow",
  15750. height: math.unit(7 + 1 / 12, "feet"),
  15751. default: true
  15752. },
  15753. {
  15754. name: "Macrow",
  15755. height: math.unit(176, "feet")
  15756. },
  15757. ]
  15758. ))
  15759. characterMakers.push(() => makeCharacter(
  15760. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15761. {
  15762. front: {
  15763. height: math.unit(5 + 7 / 12, "feet"),
  15764. weight: math.unit(147, "lb"),
  15765. name: "Front",
  15766. image: {
  15767. source: "./media/characters/natalie-kellon/front.svg",
  15768. extra: 1214 / 1141,
  15769. bottom: 0.02
  15770. }
  15771. },
  15772. },
  15773. [
  15774. {
  15775. name: "Micro",
  15776. height: math.unit(1 / 16, "inch")
  15777. },
  15778. {
  15779. name: "Tiny",
  15780. height: math.unit(4, "inches")
  15781. },
  15782. {
  15783. name: "Normal",
  15784. height: math.unit(5 + 7 / 12, "feet"),
  15785. default: true
  15786. },
  15787. {
  15788. name: "Amazon",
  15789. height: math.unit(12, "feet")
  15790. },
  15791. {
  15792. name: "Giantess",
  15793. height: math.unit(160, "meters")
  15794. },
  15795. {
  15796. name: "Titaness",
  15797. height: math.unit(800, "meters")
  15798. },
  15799. ]
  15800. ))
  15801. characterMakers.push(() => makeCharacter(
  15802. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15803. {
  15804. front: {
  15805. height: math.unit(6, "feet"),
  15806. weight: math.unit(150, "lb"),
  15807. name: "Front",
  15808. image: {
  15809. source: "./media/characters/alluria/front.svg",
  15810. extra: 806 / 738,
  15811. bottom: 0.01
  15812. }
  15813. },
  15814. side: {
  15815. height: math.unit(6, "feet"),
  15816. weight: math.unit(150, "lb"),
  15817. name: "Side",
  15818. image: {
  15819. source: "./media/characters/alluria/side.svg",
  15820. extra: 800 / 750,
  15821. }
  15822. },
  15823. back: {
  15824. height: math.unit(6, "feet"),
  15825. weight: math.unit(150, "lb"),
  15826. name: "Back",
  15827. image: {
  15828. source: "./media/characters/alluria/back.svg",
  15829. extra: 806 / 738,
  15830. }
  15831. },
  15832. frontMaid: {
  15833. height: math.unit(6, "feet"),
  15834. weight: math.unit(150, "lb"),
  15835. name: "Front (Maid)",
  15836. image: {
  15837. source: "./media/characters/alluria/front-maid.svg",
  15838. extra: 806 / 738,
  15839. bottom: 0.01
  15840. }
  15841. },
  15842. sideMaid: {
  15843. height: math.unit(6, "feet"),
  15844. weight: math.unit(150, "lb"),
  15845. name: "Side (Maid)",
  15846. image: {
  15847. source: "./media/characters/alluria/side-maid.svg",
  15848. extra: 800 / 750,
  15849. bottom: 0.005
  15850. }
  15851. },
  15852. backMaid: {
  15853. height: math.unit(6, "feet"),
  15854. weight: math.unit(150, "lb"),
  15855. name: "Back (Maid)",
  15856. image: {
  15857. source: "./media/characters/alluria/back-maid.svg",
  15858. extra: 806 / 738,
  15859. }
  15860. },
  15861. },
  15862. [
  15863. {
  15864. name: "Micro",
  15865. height: math.unit(6, "inches"),
  15866. default: true
  15867. },
  15868. ]
  15869. ))
  15870. characterMakers.push(() => makeCharacter(
  15871. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15872. {
  15873. front: {
  15874. height: math.unit(6, "feet"),
  15875. weight: math.unit(150, "lb"),
  15876. name: "Front",
  15877. image: {
  15878. source: "./media/characters/kyle/front.svg",
  15879. extra: 1069 / 962,
  15880. bottom: 77.228 / 1727.45
  15881. }
  15882. },
  15883. },
  15884. [
  15885. {
  15886. name: "Macro",
  15887. height: math.unit(150, "feet"),
  15888. default: true
  15889. },
  15890. ]
  15891. ))
  15892. characterMakers.push(() => makeCharacter(
  15893. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15894. {
  15895. front: {
  15896. height: math.unit(6, "feet"),
  15897. weight: math.unit(300, "lb"),
  15898. name: "Front",
  15899. image: {
  15900. source: "./media/characters/duncan/front.svg",
  15901. extra: 1650 / 1482,
  15902. bottom: 0.05
  15903. }
  15904. },
  15905. },
  15906. [
  15907. {
  15908. name: "Macro",
  15909. height: math.unit(100, "feet"),
  15910. default: true
  15911. },
  15912. ]
  15913. ))
  15914. characterMakers.push(() => makeCharacter(
  15915. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15916. {
  15917. front: {
  15918. height: math.unit(5 + 4 / 12, "feet"),
  15919. weight: math.unit(220, "lb"),
  15920. name: "Front",
  15921. image: {
  15922. source: "./media/characters/memory/front.svg",
  15923. extra: 3641 / 3545,
  15924. bottom: 0.03
  15925. }
  15926. },
  15927. back: {
  15928. height: math.unit(5 + 4 / 12, "feet"),
  15929. weight: math.unit(220, "lb"),
  15930. name: "Back",
  15931. image: {
  15932. source: "./media/characters/memory/back.svg",
  15933. extra: 3641 / 3545,
  15934. bottom: 0.025
  15935. }
  15936. },
  15937. frontSkirt: {
  15938. height: math.unit(5 + 4 / 12, "feet"),
  15939. weight: math.unit(220, "lb"),
  15940. name: "Front (Skirt)",
  15941. image: {
  15942. source: "./media/characters/memory/front-skirt.svg",
  15943. extra: 3641 / 3545,
  15944. bottom: 0.03
  15945. }
  15946. },
  15947. frontDress: {
  15948. height: math.unit(5 + 4 / 12, "feet"),
  15949. weight: math.unit(220, "lb"),
  15950. name: "Front (Dress)",
  15951. image: {
  15952. source: "./media/characters/memory/front-dress.svg",
  15953. extra: 3641 / 3545,
  15954. bottom: 0.03
  15955. }
  15956. },
  15957. },
  15958. [
  15959. {
  15960. name: "Micro",
  15961. height: math.unit(6, "inches"),
  15962. default: true
  15963. },
  15964. {
  15965. name: "Normal",
  15966. height: math.unit(5 + 4 / 12, "feet")
  15967. },
  15968. ]
  15969. ))
  15970. characterMakers.push(() => makeCharacter(
  15971. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15972. {
  15973. front: {
  15974. height: math.unit(4 + 11 / 12, "feet"),
  15975. weight: math.unit(100, "lb"),
  15976. name: "Front",
  15977. image: {
  15978. source: "./media/characters/luno/front.svg",
  15979. extra: 1535 / 1487,
  15980. bottom: 0.03
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Micro",
  15987. height: math.unit(3, "inches")
  15988. },
  15989. {
  15990. name: "Normal",
  15991. height: math.unit(4 + 11 / 12, "feet"),
  15992. default: true
  15993. },
  15994. {
  15995. name: "Macro",
  15996. height: math.unit(300, "feet")
  15997. },
  15998. {
  15999. name: "Megamacro",
  16000. height: math.unit(700, "miles")
  16001. },
  16002. ]
  16003. ))
  16004. characterMakers.push(() => makeCharacter(
  16005. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16006. {
  16007. front: {
  16008. height: math.unit(6 + 2 / 12, "feet"),
  16009. weight: math.unit(170, "lb"),
  16010. name: "Front",
  16011. image: {
  16012. source: "./media/characters/jamesy/front.svg",
  16013. extra: 440 / 382,
  16014. bottom: 0.005
  16015. }
  16016. },
  16017. },
  16018. [
  16019. {
  16020. name: "Micro",
  16021. height: math.unit(3, "inches")
  16022. },
  16023. {
  16024. name: "Normal",
  16025. height: math.unit(6 + 2 / 12, "feet"),
  16026. default: true
  16027. },
  16028. {
  16029. name: "Macro",
  16030. height: math.unit(300, "feet")
  16031. },
  16032. {
  16033. name: "Megamacro",
  16034. height: math.unit(700, "miles")
  16035. },
  16036. ]
  16037. ))
  16038. characterMakers.push(() => makeCharacter(
  16039. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16040. {
  16041. front: {
  16042. height: math.unit(6, "feet"),
  16043. weight: math.unit(160, "lb"),
  16044. name: "Front",
  16045. image: {
  16046. source: "./media/characters/mark/front.svg",
  16047. extra: 3300 / 3100,
  16048. bottom: 136.42 / 3440.47
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Macro",
  16055. height: math.unit(120, "meters")
  16056. },
  16057. {
  16058. name: "Bigger Macro",
  16059. height: math.unit(350, "meters")
  16060. },
  16061. {
  16062. name: "Megamacro",
  16063. height: math.unit(8, "km"),
  16064. default: true
  16065. },
  16066. {
  16067. name: "Continental",
  16068. height: math.unit(4550, "km")
  16069. },
  16070. {
  16071. name: "Planetary",
  16072. height: math.unit(65000, "km")
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16078. {
  16079. front: {
  16080. height: math.unit(6, "feet"),
  16081. weight: math.unit(400, "lb"),
  16082. name: "Front",
  16083. image: {
  16084. source: "./media/characters/mac/front.svg",
  16085. extra: 1048 / 987.7,
  16086. bottom: 60 / 1107.6,
  16087. }
  16088. },
  16089. },
  16090. [
  16091. {
  16092. name: "Macro",
  16093. height: math.unit(500, "feet"),
  16094. default: true
  16095. },
  16096. ]
  16097. ))
  16098. characterMakers.push(() => makeCharacter(
  16099. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16100. {
  16101. front: {
  16102. height: math.unit(5 + 2 / 12, "feet"),
  16103. weight: math.unit(190, "lb"),
  16104. name: "Front",
  16105. image: {
  16106. source: "./media/characters/bari/front.svg",
  16107. extra: 3156 / 2880,
  16108. bottom: 0.03
  16109. }
  16110. },
  16111. back: {
  16112. height: math.unit(5 + 2 / 12, "feet"),
  16113. weight: math.unit(190, "lb"),
  16114. name: "Back",
  16115. image: {
  16116. source: "./media/characters/bari/back.svg",
  16117. extra: 3260 / 2834,
  16118. bottom: 0.025
  16119. }
  16120. },
  16121. frontPlush: {
  16122. height: math.unit(5 + 2 / 12, "feet"),
  16123. weight: math.unit(190, "lb"),
  16124. name: "Front (Plush)",
  16125. image: {
  16126. source: "./media/characters/bari/front-plush.svg",
  16127. extra: 1112 / 1061,
  16128. bottom: 0.002
  16129. }
  16130. },
  16131. },
  16132. [
  16133. {
  16134. name: "Micro",
  16135. height: math.unit(3, "inches")
  16136. },
  16137. {
  16138. name: "Normal",
  16139. height: math.unit(5 + 2 / 12, "feet"),
  16140. default: true
  16141. },
  16142. {
  16143. name: "Macro",
  16144. height: math.unit(20, "feet")
  16145. },
  16146. ]
  16147. ))
  16148. characterMakers.push(() => makeCharacter(
  16149. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16150. {
  16151. front: {
  16152. height: math.unit(6 + 1 / 12, "feet"),
  16153. weight: math.unit(275, "lb"),
  16154. name: "Front",
  16155. image: {
  16156. source: "./media/characters/hunter-misha-raven/front.svg"
  16157. }
  16158. },
  16159. },
  16160. [
  16161. {
  16162. name: "Mortal",
  16163. height: math.unit(6 + 1 / 12, "feet")
  16164. },
  16165. {
  16166. name: "Divine",
  16167. height: math.unit(1.12134e34, "parsecs"),
  16168. default: true
  16169. },
  16170. ]
  16171. ))
  16172. characterMakers.push(() => makeCharacter(
  16173. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16174. {
  16175. front: {
  16176. height: math.unit(6 + 3 / 12, "feet"),
  16177. weight: math.unit(220, "lb"),
  16178. name: "Front",
  16179. image: {
  16180. source: "./media/characters/max-calore/front.svg",
  16181. extra: 1700 / 1648,
  16182. bottom: 0.01
  16183. }
  16184. },
  16185. back: {
  16186. height: math.unit(6 + 3 / 12, "feet"),
  16187. weight: math.unit(220, "lb"),
  16188. name: "Back",
  16189. image: {
  16190. source: "./media/characters/max-calore/back.svg",
  16191. extra: 1700 / 1648,
  16192. bottom: 0.01
  16193. }
  16194. },
  16195. },
  16196. [
  16197. {
  16198. name: "Normal",
  16199. height: math.unit(6 + 3 / 12, "feet"),
  16200. default: true
  16201. },
  16202. ]
  16203. ))
  16204. characterMakers.push(() => makeCharacter(
  16205. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16206. {
  16207. side: {
  16208. height: math.unit(2 + 8 / 12, "feet"),
  16209. weight: math.unit(99, "lb"),
  16210. name: "Side",
  16211. image: {
  16212. source: "./media/characters/aspen/side.svg",
  16213. extra: 152 / 138,
  16214. bottom: 0.032
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "Normal",
  16221. height: math.unit(2 + 8 / 12, "feet"),
  16222. default: true
  16223. },
  16224. ]
  16225. ))
  16226. characterMakers.push(() => makeCharacter(
  16227. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16228. {
  16229. side: {
  16230. height: math.unit(3 + 2 / 12, "feet"),
  16231. weight: math.unit(224, "lb"),
  16232. name: "Side",
  16233. image: {
  16234. source: "./media/characters/sheila-feral-wolf/side.svg",
  16235. extra: 179 / 166,
  16236. bottom: 0.03
  16237. }
  16238. },
  16239. },
  16240. [
  16241. {
  16242. name: "Normal",
  16243. height: math.unit(3 + 2 / 12, "feet"),
  16244. default: true
  16245. },
  16246. ]
  16247. ))
  16248. characterMakers.push(() => makeCharacter(
  16249. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16250. {
  16251. side: {
  16252. height: math.unit(1 + 9 / 12, "feet"),
  16253. weight: math.unit(38, "lb"),
  16254. name: "Side",
  16255. image: {
  16256. source: "./media/characters/michelle/side.svg",
  16257. extra: 147 / 136.7,
  16258. bottom: 0.03
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Normal",
  16265. height: math.unit(1 + 9 / 12, "feet"),
  16266. default: true
  16267. },
  16268. ]
  16269. ))
  16270. characterMakers.push(() => makeCharacter(
  16271. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16272. {
  16273. front: {
  16274. height: math.unit(1 + 1 / 12, "feet"),
  16275. weight: math.unit(18, "lb"),
  16276. name: "Front",
  16277. image: {
  16278. source: "./media/characters/nino/front.svg"
  16279. }
  16280. },
  16281. },
  16282. [
  16283. {
  16284. name: "Normal",
  16285. height: math.unit(1 + 1 / 12, "feet"),
  16286. default: true
  16287. },
  16288. ]
  16289. ))
  16290. characterMakers.push(() => makeCharacter(
  16291. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16292. {
  16293. front: {
  16294. height: math.unit(1, "feet"),
  16295. weight: math.unit(16, "lb"),
  16296. name: "Front",
  16297. image: {
  16298. source: "./media/characters/viola/front.svg"
  16299. }
  16300. },
  16301. },
  16302. [
  16303. {
  16304. name: "Normal",
  16305. height: math.unit(1, "feet"),
  16306. default: true
  16307. },
  16308. ]
  16309. ))
  16310. characterMakers.push(() => makeCharacter(
  16311. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16312. {
  16313. front: {
  16314. height: math.unit(6 + 5 / 12, "feet"),
  16315. weight: math.unit(580, "lb"),
  16316. name: "Front",
  16317. image: {
  16318. source: "./media/characters/atlas/front.svg",
  16319. extra: 298.5 / 290,
  16320. bottom: 0.015
  16321. }
  16322. },
  16323. },
  16324. [
  16325. {
  16326. name: "Normal",
  16327. height: math.unit(6 + 5 / 12, "feet"),
  16328. default: true
  16329. },
  16330. ]
  16331. ))
  16332. characterMakers.push(() => makeCharacter(
  16333. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16334. {
  16335. side: {
  16336. height: math.unit(1 + 10 / 12, "feet"),
  16337. weight: math.unit(25, "lb"),
  16338. name: "Side",
  16339. image: {
  16340. source: "./media/characters/davy/side.svg",
  16341. extra: 200 / 170,
  16342. bottom: 0.01
  16343. }
  16344. },
  16345. },
  16346. [
  16347. {
  16348. name: "Normal",
  16349. height: math.unit(1 + 10 / 12, "feet"),
  16350. default: true
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16356. {
  16357. side: {
  16358. height: math.unit(4 + 8 / 12, "feet"),
  16359. weight: math.unit(166, "lb"),
  16360. name: "Side",
  16361. image: {
  16362. source: "./media/characters/fiona/side.svg",
  16363. extra: 232 / 220,
  16364. bottom: 0.03
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Normal",
  16371. height: math.unit(4 + 8 / 12, "feet"),
  16372. default: true
  16373. },
  16374. ]
  16375. ))
  16376. characterMakers.push(() => makeCharacter(
  16377. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16378. {
  16379. front: {
  16380. height: math.unit(2, "feet"),
  16381. weight: math.unit(62, "lb"),
  16382. name: "Front",
  16383. image: {
  16384. source: "./media/characters/lyla/front.svg",
  16385. bottom: 0.1
  16386. }
  16387. },
  16388. },
  16389. [
  16390. {
  16391. name: "Normal",
  16392. height: math.unit(2, "feet"),
  16393. default: true
  16394. },
  16395. ]
  16396. ))
  16397. characterMakers.push(() => makeCharacter(
  16398. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16399. {
  16400. side: {
  16401. height: math.unit(1.8, "feet"),
  16402. weight: math.unit(44, "lb"),
  16403. name: "Side",
  16404. image: {
  16405. source: "./media/characters/perseus/side.svg",
  16406. bottom: 0.21
  16407. }
  16408. },
  16409. },
  16410. [
  16411. {
  16412. name: "Normal",
  16413. height: math.unit(1.8, "feet"),
  16414. default: true
  16415. },
  16416. ]
  16417. ))
  16418. characterMakers.push(() => makeCharacter(
  16419. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16420. {
  16421. side: {
  16422. height: math.unit(4 + 2 / 12, "feet"),
  16423. weight: math.unit(20, "lb"),
  16424. name: "Side",
  16425. image: {
  16426. source: "./media/characters/remus/side.svg"
  16427. }
  16428. },
  16429. },
  16430. [
  16431. {
  16432. name: "Normal",
  16433. height: math.unit(4 + 2 / 12, "feet"),
  16434. default: true
  16435. },
  16436. ]
  16437. ))
  16438. characterMakers.push(() => makeCharacter(
  16439. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16440. {
  16441. front: {
  16442. height: math.unit(4 + 11 / 12, "feet"),
  16443. weight: math.unit(114, "lb"),
  16444. name: "Front",
  16445. image: {
  16446. source: "./media/characters/raf/front.svg",
  16447. bottom: 20.5 / 1863
  16448. }
  16449. },
  16450. side: {
  16451. height: math.unit(4 + 11 / 12, "feet"),
  16452. weight: math.unit(114, "lb"),
  16453. name: "Side",
  16454. image: {
  16455. source: "./media/characters/raf/side.svg",
  16456. bottom: 22 / 1822
  16457. }
  16458. },
  16459. },
  16460. [
  16461. {
  16462. name: "Micro",
  16463. height: math.unit(2, "inches")
  16464. },
  16465. {
  16466. name: "Normal",
  16467. height: math.unit(4 + 11 / 12, "feet"),
  16468. default: true
  16469. },
  16470. {
  16471. name: "Macro",
  16472. height: math.unit(70, "feet")
  16473. },
  16474. ]
  16475. ))
  16476. characterMakers.push(() => makeCharacter(
  16477. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16478. {
  16479. front: {
  16480. height: math.unit(1.5, "meters"),
  16481. weight: math.unit(68, "kg"),
  16482. name: "Front",
  16483. image: {
  16484. source: "./media/characters/liam-einarr/front.svg",
  16485. extra: 2822 / 2666
  16486. }
  16487. },
  16488. back: {
  16489. height: math.unit(1.5, "meters"),
  16490. weight: math.unit(68, "kg"),
  16491. name: "Back",
  16492. image: {
  16493. source: "./media/characters/liam-einarr/back.svg",
  16494. extra: 2822 / 2666,
  16495. bottom: 0.015
  16496. }
  16497. },
  16498. },
  16499. [
  16500. {
  16501. name: "Normal",
  16502. height: math.unit(1.5, "meters"),
  16503. default: true
  16504. },
  16505. {
  16506. name: "Macro",
  16507. height: math.unit(150, "meters")
  16508. },
  16509. {
  16510. name: "Megamacro",
  16511. height: math.unit(35, "km")
  16512. },
  16513. ]
  16514. ))
  16515. characterMakers.push(() => makeCharacter(
  16516. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16517. {
  16518. front: {
  16519. height: math.unit(6, "feet"),
  16520. weight: math.unit(75, "kg"),
  16521. name: "Front",
  16522. image: {
  16523. source: "./media/characters/linda/front.svg",
  16524. extra: 930 / 874,
  16525. bottom: 0.004
  16526. }
  16527. },
  16528. },
  16529. [
  16530. {
  16531. name: "Normal",
  16532. height: math.unit(6, "feet"),
  16533. default: true
  16534. },
  16535. ]
  16536. ))
  16537. characterMakers.push(() => makeCharacter(
  16538. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16539. {
  16540. front: {
  16541. height: math.unit(6 + 8 / 12, "feet"),
  16542. weight: math.unit(220, "lb"),
  16543. name: "Front",
  16544. image: {
  16545. source: "./media/characters/caylex/front.svg",
  16546. extra: 821 / 772,
  16547. bottom: 0.07
  16548. }
  16549. },
  16550. back: {
  16551. height: math.unit(6 + 8 / 12, "feet"),
  16552. weight: math.unit(220, "lb"),
  16553. name: "Back",
  16554. image: {
  16555. source: "./media/characters/caylex/back.svg",
  16556. extra: 821 / 772,
  16557. bottom: 0.022
  16558. }
  16559. },
  16560. hand: {
  16561. height: math.unit(1.25, "feet"),
  16562. name: "Hand",
  16563. image: {
  16564. source: "./media/characters/caylex/hand.svg"
  16565. }
  16566. },
  16567. foot: {
  16568. height: math.unit(1.6, "feet"),
  16569. name: "Foot",
  16570. image: {
  16571. source: "./media/characters/caylex/foot.svg"
  16572. }
  16573. },
  16574. armored: {
  16575. height: math.unit(6 + 8 / 12, "feet"),
  16576. weight: math.unit(250, "lb"),
  16577. name: "Armored",
  16578. image: {
  16579. source: "./media/characters/caylex/armored.svg",
  16580. extra: 1420 / 1310,
  16581. bottom: 0.045
  16582. }
  16583. },
  16584. },
  16585. [
  16586. {
  16587. name: "Normal",
  16588. height: math.unit(6 + 8 / 12, "feet"),
  16589. default: true
  16590. },
  16591. {
  16592. name: "Normal+",
  16593. height: math.unit(12, "feet")
  16594. },
  16595. ]
  16596. ))
  16597. characterMakers.push(() => makeCharacter(
  16598. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16599. {
  16600. front: {
  16601. height: math.unit(7 + 6 / 12, "feet"),
  16602. weight: math.unit(288, "lb"),
  16603. name: "Front",
  16604. image: {
  16605. source: "./media/characters/alana/front.svg",
  16606. extra: 679 / 653,
  16607. bottom: 22.5 / 701
  16608. }
  16609. },
  16610. },
  16611. [
  16612. {
  16613. name: "Normal",
  16614. height: math.unit(7 + 6 / 12, "feet")
  16615. },
  16616. {
  16617. name: "Large",
  16618. height: math.unit(50, "feet")
  16619. },
  16620. {
  16621. name: "Macro",
  16622. height: math.unit(100, "feet"),
  16623. default: true
  16624. },
  16625. {
  16626. name: "Macro+",
  16627. height: math.unit(200, "feet")
  16628. },
  16629. ]
  16630. ))
  16631. characterMakers.push(() => makeCharacter(
  16632. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16633. {
  16634. front: {
  16635. height: math.unit(6 + 1 / 12, "feet"),
  16636. weight: math.unit(210, "lb"),
  16637. name: "Front",
  16638. image: {
  16639. source: "./media/characters/hasani/front.svg",
  16640. extra: 244 / 232,
  16641. bottom: 0.01
  16642. }
  16643. },
  16644. back: {
  16645. height: math.unit(6 + 1 / 12, "feet"),
  16646. weight: math.unit(210, "lb"),
  16647. name: "Back",
  16648. image: {
  16649. source: "./media/characters/hasani/back.svg",
  16650. extra: 244 / 232,
  16651. bottom: 0.01
  16652. }
  16653. },
  16654. },
  16655. [
  16656. {
  16657. name: "Normal",
  16658. height: math.unit(6 + 1 / 12, "feet")
  16659. },
  16660. {
  16661. name: "Macro",
  16662. height: math.unit(175, "feet"),
  16663. default: true
  16664. },
  16665. ]
  16666. ))
  16667. characterMakers.push(() => makeCharacter(
  16668. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16669. {
  16670. front: {
  16671. height: math.unit(1.82, "meters"),
  16672. weight: math.unit(140, "lb"),
  16673. name: "Front",
  16674. image: {
  16675. source: "./media/characters/nita/front.svg",
  16676. extra: 2473 / 2363,
  16677. bottom: 0.01
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Normal",
  16684. height: math.unit(1.82, "m")
  16685. },
  16686. {
  16687. name: "Macro",
  16688. height: math.unit(300, "m")
  16689. },
  16690. {
  16691. name: "Mistake Canon",
  16692. height: math.unit(0.5, "miles"),
  16693. default: true
  16694. },
  16695. {
  16696. name: "Big Mistake",
  16697. height: math.unit(13, "miles")
  16698. },
  16699. {
  16700. name: "Playing God",
  16701. height: math.unit(2450, "miles")
  16702. },
  16703. ]
  16704. ))
  16705. characterMakers.push(() => makeCharacter(
  16706. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16707. {
  16708. front: {
  16709. height: math.unit(4, "feet"),
  16710. weight: math.unit(120, "lb"),
  16711. name: "Front",
  16712. image: {
  16713. source: "./media/characters/shiriko/front.svg",
  16714. extra: 195 / 188
  16715. }
  16716. },
  16717. },
  16718. [
  16719. {
  16720. name: "Normal",
  16721. height: math.unit(4, "feet"),
  16722. default: true
  16723. },
  16724. ]
  16725. ))
  16726. characterMakers.push(() => makeCharacter(
  16727. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16728. {
  16729. front: {
  16730. height: math.unit(6, "feet"),
  16731. name: "front",
  16732. image: {
  16733. source: "./media/characters/deja/front.svg",
  16734. extra: 926 / 840,
  16735. bottom: 0.07
  16736. }
  16737. },
  16738. },
  16739. [
  16740. {
  16741. name: "Planck Length",
  16742. height: math.unit(1.6e-35, "meters")
  16743. },
  16744. {
  16745. name: "Normal",
  16746. height: math.unit(30.48, "meters"),
  16747. default: true
  16748. },
  16749. {
  16750. name: "Universal",
  16751. height: math.unit(8.8e26, "meters")
  16752. },
  16753. ]
  16754. ))
  16755. characterMakers.push(() => makeCharacter(
  16756. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16757. {
  16758. side: {
  16759. height: math.unit(8, "feet"),
  16760. weight: math.unit(6300, "lb"),
  16761. name: "Side",
  16762. image: {
  16763. source: "./media/characters/anima/side.svg",
  16764. bottom: 0.035
  16765. }
  16766. },
  16767. },
  16768. [
  16769. {
  16770. name: "Normal",
  16771. height: math.unit(8, "feet"),
  16772. default: true
  16773. },
  16774. ]
  16775. ))
  16776. characterMakers.push(() => makeCharacter(
  16777. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16778. {
  16779. front: {
  16780. height: math.unit(8, "feet"),
  16781. weight: math.unit(350, "lb"),
  16782. name: "Front",
  16783. image: {
  16784. source: "./media/characters/bianca/front.svg",
  16785. extra: 234 / 225,
  16786. bottom: 0.03
  16787. }
  16788. },
  16789. },
  16790. [
  16791. {
  16792. name: "Normal",
  16793. height: math.unit(8, "feet"),
  16794. default: true
  16795. },
  16796. ]
  16797. ))
  16798. characterMakers.push(() => makeCharacter(
  16799. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16800. {
  16801. front: {
  16802. height: math.unit(6, "feet"),
  16803. weight: math.unit(150, "lb"),
  16804. name: "Front",
  16805. image: {
  16806. source: "./media/characters/adinia/front.svg",
  16807. extra: 1845 / 1672,
  16808. bottom: 0.02
  16809. }
  16810. },
  16811. back: {
  16812. height: math.unit(6, "feet"),
  16813. weight: math.unit(150, "lb"),
  16814. name: "Back",
  16815. image: {
  16816. source: "./media/characters/adinia/back.svg",
  16817. extra: 1845 / 1672,
  16818. bottom: 0.002
  16819. }
  16820. },
  16821. },
  16822. [
  16823. {
  16824. name: "Normal",
  16825. height: math.unit(11 + 5 / 12, "feet"),
  16826. default: true
  16827. },
  16828. ]
  16829. ))
  16830. characterMakers.push(() => makeCharacter(
  16831. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16832. {
  16833. front: {
  16834. height: math.unit(3, "meters"),
  16835. weight: math.unit(200, "kg"),
  16836. name: "Front",
  16837. image: {
  16838. source: "./media/characters/lykasa/front.svg",
  16839. extra: 1076 / 976,
  16840. bottom: 0.06
  16841. }
  16842. },
  16843. },
  16844. [
  16845. {
  16846. name: "Normal",
  16847. height: math.unit(3, "meters")
  16848. },
  16849. {
  16850. name: "Kaiju",
  16851. height: math.unit(120, "meters"),
  16852. default: true
  16853. },
  16854. {
  16855. name: "Mega Kaiju",
  16856. height: math.unit(240, "km")
  16857. },
  16858. {
  16859. name: "Giga Kaiju",
  16860. height: math.unit(400, "megameters")
  16861. },
  16862. {
  16863. name: "Tera Kaiju",
  16864. height: math.unit(800, "gigameters")
  16865. },
  16866. {
  16867. name: "Kaiju Dragon Goddess",
  16868. height: math.unit(26, "zettaparsecs")
  16869. },
  16870. ]
  16871. ))
  16872. characterMakers.push(() => makeCharacter(
  16873. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16874. {
  16875. side: {
  16876. height: math.unit(283 / 124 * 6, "feet"),
  16877. weight: math.unit(35000, "lb"),
  16878. name: "Side",
  16879. image: {
  16880. source: "./media/characters/malfaren/side.svg",
  16881. extra: 2500 / 1010,
  16882. bottom: 0.01
  16883. }
  16884. },
  16885. front: {
  16886. height: math.unit(22.36, "feet"),
  16887. weight: math.unit(35000, "lb"),
  16888. name: "Front",
  16889. image: {
  16890. source: "./media/characters/malfaren/front.svg",
  16891. extra: 1631 / 1476,
  16892. bottom: 0.01
  16893. }
  16894. },
  16895. maw: {
  16896. height: math.unit(6.9, "feet"),
  16897. name: "Maw",
  16898. image: {
  16899. source: "./media/characters/malfaren/maw.svg"
  16900. }
  16901. },
  16902. },
  16903. [
  16904. {
  16905. name: "Big",
  16906. height: math.unit(283 / 162 * 6, "feet"),
  16907. },
  16908. {
  16909. name: "Bigger",
  16910. height: math.unit(283 / 124 * 6, "feet")
  16911. },
  16912. {
  16913. name: "Massive",
  16914. height: math.unit(283 / 92 * 6, "feet"),
  16915. default: true
  16916. },
  16917. {
  16918. name: "👀💦",
  16919. height: math.unit(283 / 73 * 6, "feet"),
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16925. {
  16926. front: {
  16927. height: math.unit(1.7, "m"),
  16928. weight: math.unit(70, "kg"),
  16929. name: "Front",
  16930. image: {
  16931. source: "./media/characters/kernel/front.svg",
  16932. extra: 222 / 210,
  16933. bottom: 0.007
  16934. }
  16935. },
  16936. },
  16937. [
  16938. {
  16939. name: "Nano",
  16940. height: math.unit(17, "micrometers")
  16941. },
  16942. {
  16943. name: "Micro",
  16944. height: math.unit(1.7, "mm")
  16945. },
  16946. {
  16947. name: "Small",
  16948. height: math.unit(1.7, "cm")
  16949. },
  16950. {
  16951. name: "Normal",
  16952. height: math.unit(1.7, "m"),
  16953. default: true
  16954. },
  16955. ]
  16956. ))
  16957. characterMakers.push(() => makeCharacter(
  16958. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16959. {
  16960. front: {
  16961. height: math.unit(1.75, "meters"),
  16962. weight: math.unit(65, "kg"),
  16963. name: "Front",
  16964. image: {
  16965. source: "./media/characters/jayne-folest/front.svg",
  16966. extra: 2115 / 2007,
  16967. bottom: 0.02
  16968. }
  16969. },
  16970. back: {
  16971. height: math.unit(1.75, "meters"),
  16972. weight: math.unit(65, "kg"),
  16973. name: "Back",
  16974. image: {
  16975. source: "./media/characters/jayne-folest/back.svg",
  16976. extra: 2115 / 2007,
  16977. bottom: 0.005
  16978. }
  16979. },
  16980. frontClothed: {
  16981. height: math.unit(1.75, "meters"),
  16982. weight: math.unit(65, "kg"),
  16983. name: "Front (Clothed)",
  16984. image: {
  16985. source: "./media/characters/jayne-folest/front-clothed.svg",
  16986. extra: 2115 / 2007,
  16987. bottom: 0.035
  16988. }
  16989. },
  16990. hand: {
  16991. height: math.unit(1 / 1.260, "feet"),
  16992. name: "Hand",
  16993. image: {
  16994. source: "./media/characters/jayne-folest/hand.svg"
  16995. }
  16996. },
  16997. foot: {
  16998. height: math.unit(1 / 0.918, "feet"),
  16999. name: "Foot",
  17000. image: {
  17001. source: "./media/characters/jayne-folest/foot.svg"
  17002. }
  17003. },
  17004. },
  17005. [
  17006. {
  17007. name: "Micro",
  17008. height: math.unit(4, "cm")
  17009. },
  17010. {
  17011. name: "Normal",
  17012. height: math.unit(1.75, "meters")
  17013. },
  17014. {
  17015. name: "Macro",
  17016. height: math.unit(47.5, "meters"),
  17017. default: true
  17018. },
  17019. ]
  17020. ))
  17021. characterMakers.push(() => makeCharacter(
  17022. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17023. {
  17024. front: {
  17025. height: math.unit(180, "cm"),
  17026. weight: math.unit(70, "kg"),
  17027. name: "Front",
  17028. image: {
  17029. source: "./media/characters/algier/front.svg",
  17030. extra: 596 / 572,
  17031. bottom: 0.04
  17032. }
  17033. },
  17034. back: {
  17035. height: math.unit(180, "cm"),
  17036. weight: math.unit(70, "kg"),
  17037. name: "Back",
  17038. image: {
  17039. source: "./media/characters/algier/back.svg",
  17040. extra: 596 / 572,
  17041. bottom: 0.025
  17042. }
  17043. },
  17044. frontdressed: {
  17045. height: math.unit(180, "cm"),
  17046. weight: math.unit(150, "kg"),
  17047. name: "Front-dressed",
  17048. image: {
  17049. source: "./media/characters/algier/front-dressed.svg",
  17050. extra: 596 / 572,
  17051. bottom: 0.038
  17052. }
  17053. },
  17054. },
  17055. [
  17056. {
  17057. name: "Micro",
  17058. height: math.unit(5, "cm")
  17059. },
  17060. {
  17061. name: "Normal",
  17062. height: math.unit(180, "cm"),
  17063. default: true
  17064. },
  17065. {
  17066. name: "Macro",
  17067. height: math.unit(64, "m")
  17068. },
  17069. ]
  17070. ))
  17071. characterMakers.push(() => makeCharacter(
  17072. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17073. {
  17074. upright: {
  17075. height: math.unit(7, "feet"),
  17076. weight: math.unit(300, "lb"),
  17077. name: "Upright",
  17078. image: {
  17079. source: "./media/characters/pretzel/upright.svg",
  17080. extra: 534 / 522,
  17081. bottom: 0.065
  17082. }
  17083. },
  17084. sprawling: {
  17085. height: math.unit(3.75, "feet"),
  17086. weight: math.unit(300, "lb"),
  17087. name: "Sprawling",
  17088. image: {
  17089. source: "./media/characters/pretzel/sprawling.svg",
  17090. extra: 314 / 281,
  17091. bottom: 0.1
  17092. }
  17093. },
  17094. tongue: {
  17095. height: math.unit(2, "feet"),
  17096. name: "Tongue",
  17097. image: {
  17098. source: "./media/characters/pretzel/tongue.svg"
  17099. }
  17100. },
  17101. },
  17102. [
  17103. {
  17104. name: "Normal",
  17105. height: math.unit(7, "feet"),
  17106. default: true
  17107. },
  17108. {
  17109. name: "Oversized",
  17110. height: math.unit(15, "feet")
  17111. },
  17112. {
  17113. name: "Huge",
  17114. height: math.unit(30, "feet")
  17115. },
  17116. {
  17117. name: "Macro",
  17118. height: math.unit(250, "feet")
  17119. },
  17120. ]
  17121. ))
  17122. characterMakers.push(() => makeCharacter(
  17123. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17124. {
  17125. sideFront: {
  17126. height: math.unit(5 + 2 / 12, "feet"),
  17127. weight: math.unit(120, "lb"),
  17128. name: "Front Side",
  17129. image: {
  17130. source: "./media/characters/roxi/side-front.svg",
  17131. extra: 2924 / 2717,
  17132. bottom: 0.08
  17133. }
  17134. },
  17135. sideBack: {
  17136. height: math.unit(5 + 2 / 12, "feet"),
  17137. weight: math.unit(120, "lb"),
  17138. name: "Back Side",
  17139. image: {
  17140. source: "./media/characters/roxi/side-back.svg",
  17141. extra: 2904 / 2693,
  17142. bottom: 0.06
  17143. }
  17144. },
  17145. front: {
  17146. height: math.unit(5 + 2 / 12, "feet"),
  17147. weight: math.unit(120, "lb"),
  17148. name: "Front",
  17149. image: {
  17150. source: "./media/characters/roxi/front.svg",
  17151. extra: 2028 / 1907,
  17152. bottom: 0.01
  17153. }
  17154. },
  17155. frontAlt: {
  17156. height: math.unit(5 + 2 / 12, "feet"),
  17157. weight: math.unit(120, "lb"),
  17158. name: "Front (Alt)",
  17159. image: {
  17160. source: "./media/characters/roxi/front-alt.svg",
  17161. extra: 1828 / 1798,
  17162. bottom: 0.01
  17163. }
  17164. },
  17165. sitting: {
  17166. height: math.unit(2.8, "feet"),
  17167. weight: math.unit(120, "lb"),
  17168. name: "Sitting",
  17169. image: {
  17170. source: "./media/characters/roxi/sitting.svg",
  17171. extra: 2660 / 2462,
  17172. bottom: 0.1
  17173. }
  17174. },
  17175. },
  17176. [
  17177. {
  17178. name: "Normal",
  17179. height: math.unit(5 + 2 / 12, "feet"),
  17180. default: true
  17181. },
  17182. ]
  17183. ))
  17184. characterMakers.push(() => makeCharacter(
  17185. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17186. {
  17187. side: {
  17188. height: math.unit(55, "feet"),
  17189. weight: math.unit(153, "tons"),
  17190. name: "Side",
  17191. image: {
  17192. source: "./media/characters/shadow/side.svg",
  17193. extra: 701 / 628,
  17194. bottom: 0.02
  17195. }
  17196. },
  17197. flying: {
  17198. height: math.unit(145, "feet"),
  17199. weight: math.unit(153, "tons"),
  17200. name: "Flying",
  17201. image: {
  17202. source: "./media/characters/shadow/flying.svg"
  17203. }
  17204. },
  17205. },
  17206. [
  17207. {
  17208. name: "Normal",
  17209. height: math.unit(55, "feet"),
  17210. default: true
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17216. {
  17217. front: {
  17218. height: math.unit(6, "feet"),
  17219. weight: math.unit(200, "lb"),
  17220. name: "Front",
  17221. image: {
  17222. source: "./media/characters/marcie/front.svg",
  17223. extra: 960 / 876,
  17224. bottom: 58 / 1017.87
  17225. }
  17226. },
  17227. },
  17228. [
  17229. {
  17230. name: "Macro",
  17231. height: math.unit(1, "mile"),
  17232. default: true
  17233. },
  17234. ]
  17235. ))
  17236. characterMakers.push(() => makeCharacter(
  17237. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17238. {
  17239. front: {
  17240. height: math.unit(7, "feet"),
  17241. weight: math.unit(200, "lb"),
  17242. name: "Front",
  17243. image: {
  17244. source: "./media/characters/kachina/front.svg",
  17245. extra: 1290.68 / 1119,
  17246. bottom: 36.5 / 1327.18
  17247. }
  17248. },
  17249. },
  17250. [
  17251. {
  17252. name: "Normal",
  17253. height: math.unit(7, "feet"),
  17254. default: true
  17255. },
  17256. ]
  17257. ))
  17258. characterMakers.push(() => makeCharacter(
  17259. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17260. {
  17261. looking: {
  17262. height: math.unit(2, "meters"),
  17263. weight: math.unit(300, "kg"),
  17264. name: "Looking",
  17265. image: {
  17266. source: "./media/characters/kash/looking.svg",
  17267. extra: 474 / 344,
  17268. bottom: 0.03
  17269. }
  17270. },
  17271. side: {
  17272. height: math.unit(2, "meters"),
  17273. weight: math.unit(300, "kg"),
  17274. name: "Side",
  17275. image: {
  17276. source: "./media/characters/kash/side.svg",
  17277. extra: 302 / 251,
  17278. bottom: 0.03
  17279. }
  17280. },
  17281. front: {
  17282. height: math.unit(2, "meters"),
  17283. weight: math.unit(300, "kg"),
  17284. name: "Front",
  17285. image: {
  17286. source: "./media/characters/kash/front.svg",
  17287. extra: 495 / 360,
  17288. bottom: 0.015
  17289. }
  17290. },
  17291. },
  17292. [
  17293. {
  17294. name: "Normal",
  17295. height: math.unit(2, "meters"),
  17296. default: true
  17297. },
  17298. {
  17299. name: "Big",
  17300. height: math.unit(3, "meters")
  17301. },
  17302. {
  17303. name: "Large",
  17304. height: math.unit(5, "meters")
  17305. },
  17306. ]
  17307. ))
  17308. characterMakers.push(() => makeCharacter(
  17309. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17310. {
  17311. feeding: {
  17312. height: math.unit(6.7, "feet"),
  17313. weight: math.unit(350, "lb"),
  17314. name: "Feeding",
  17315. image: {
  17316. source: "./media/characters/lalim/feeding.svg",
  17317. }
  17318. },
  17319. },
  17320. [
  17321. {
  17322. name: "Normal",
  17323. height: math.unit(6.7, "feet"),
  17324. default: true
  17325. },
  17326. ]
  17327. ))
  17328. characterMakers.push(() => makeCharacter(
  17329. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17330. {
  17331. front: {
  17332. height: math.unit(9.5, "feet"),
  17333. weight: math.unit(600, "lb"),
  17334. name: "Front",
  17335. image: {
  17336. source: "./media/characters/de'vout/front.svg",
  17337. extra: 1443 / 1328,
  17338. bottom: 0.025
  17339. }
  17340. },
  17341. back: {
  17342. height: math.unit(9.5, "feet"),
  17343. weight: math.unit(600, "lb"),
  17344. name: "Back",
  17345. image: {
  17346. source: "./media/characters/de'vout/back.svg",
  17347. extra: 1443 / 1328
  17348. }
  17349. },
  17350. frontDressed: {
  17351. height: math.unit(9.5, "feet"),
  17352. weight: math.unit(600, "lb"),
  17353. name: "Front (Dressed",
  17354. image: {
  17355. source: "./media/characters/de'vout/front-dressed.svg",
  17356. extra: 1443 / 1328,
  17357. bottom: 0.025
  17358. }
  17359. },
  17360. backDressed: {
  17361. height: math.unit(9.5, "feet"),
  17362. weight: math.unit(600, "lb"),
  17363. name: "Back (Dressed",
  17364. image: {
  17365. source: "./media/characters/de'vout/back-dressed.svg",
  17366. extra: 1443 / 1328
  17367. }
  17368. },
  17369. },
  17370. [
  17371. {
  17372. name: "Normal",
  17373. height: math.unit(9.5, "feet"),
  17374. default: true
  17375. },
  17376. ]
  17377. ))
  17378. characterMakers.push(() => makeCharacter(
  17379. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17380. {
  17381. front: {
  17382. height: math.unit(8, "feet"),
  17383. weight: math.unit(225, "lb"),
  17384. name: "Front",
  17385. image: {
  17386. source: "./media/characters/talana/front.svg",
  17387. extra: 1410 / 1300,
  17388. bottom: 0.015
  17389. }
  17390. },
  17391. frontDressed: {
  17392. height: math.unit(8, "feet"),
  17393. weight: math.unit(225, "lb"),
  17394. name: "Front (Dressed",
  17395. image: {
  17396. source: "./media/characters/talana/front-dressed.svg",
  17397. extra: 1410 / 1300,
  17398. bottom: 0.015
  17399. }
  17400. },
  17401. },
  17402. [
  17403. {
  17404. name: "Normal",
  17405. height: math.unit(8, "feet"),
  17406. default: true
  17407. },
  17408. ]
  17409. ))
  17410. characterMakers.push(() => makeCharacter(
  17411. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17412. {
  17413. side: {
  17414. height: math.unit(7.2, "feet"),
  17415. weight: math.unit(150, "lb"),
  17416. name: "Side",
  17417. image: {
  17418. source: "./media/characters/xeauvok/side.svg",
  17419. extra: 1975 / 1523,
  17420. bottom: 0.07
  17421. }
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(7.2, "feet"),
  17428. default: true
  17429. },
  17430. ]
  17431. ))
  17432. characterMakers.push(() => makeCharacter(
  17433. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17434. {
  17435. side: {
  17436. height: math.unit(10, "feet"),
  17437. weight: math.unit(900, "kg"),
  17438. name: "Side",
  17439. image: {
  17440. source: "./media/characters/zara/side.svg",
  17441. extra: 504 / 498
  17442. }
  17443. },
  17444. },
  17445. [
  17446. {
  17447. name: "Normal",
  17448. height: math.unit(10, "feet"),
  17449. default: true
  17450. },
  17451. ]
  17452. ))
  17453. characterMakers.push(() => makeCharacter(
  17454. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17455. {
  17456. side: {
  17457. height: math.unit(6, "feet"),
  17458. weight: math.unit(150, "lb"),
  17459. name: "Side",
  17460. image: {
  17461. source: "./media/characters/richard-dragon/side.svg",
  17462. extra: 845 / 340,
  17463. bottom: 0.017
  17464. }
  17465. },
  17466. maw: {
  17467. height: math.unit(2.97, "feet"),
  17468. name: "Maw",
  17469. image: {
  17470. source: "./media/characters/richard-dragon/maw.svg"
  17471. }
  17472. },
  17473. },
  17474. [
  17475. ]
  17476. ))
  17477. characterMakers.push(() => makeCharacter(
  17478. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17479. {
  17480. front: {
  17481. height: math.unit(4, "feet"),
  17482. weight: math.unit(100, "lb"),
  17483. name: "Front",
  17484. image: {
  17485. source: "./media/characters/richard-smeargle/front.svg",
  17486. extra: 2952 / 2820,
  17487. bottom: 0.028
  17488. }
  17489. },
  17490. },
  17491. [
  17492. {
  17493. name: "Normal",
  17494. height: math.unit(4, "feet"),
  17495. default: true
  17496. },
  17497. {
  17498. name: "Dynamax",
  17499. height: math.unit(20, "meters")
  17500. },
  17501. ]
  17502. ))
  17503. characterMakers.push(() => makeCharacter(
  17504. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17505. {
  17506. front: {
  17507. height: math.unit(6, "feet"),
  17508. weight: math.unit(110, "lb"),
  17509. name: "Front",
  17510. image: {
  17511. source: "./media/characters/klay/front.svg",
  17512. extra: 962 / 883,
  17513. bottom: 0.04
  17514. }
  17515. },
  17516. back: {
  17517. height: math.unit(6, "feet"),
  17518. weight: math.unit(110, "lb"),
  17519. name: "Back",
  17520. image: {
  17521. source: "./media/characters/klay/back.svg",
  17522. extra: 962 / 883
  17523. }
  17524. },
  17525. beans: {
  17526. height: math.unit(1.15, "feet"),
  17527. name: "Beans",
  17528. image: {
  17529. source: "./media/characters/klay/beans.svg"
  17530. }
  17531. },
  17532. },
  17533. [
  17534. {
  17535. name: "Micro",
  17536. height: math.unit(6, "inches")
  17537. },
  17538. {
  17539. name: "Mini",
  17540. height: math.unit(3, "feet")
  17541. },
  17542. {
  17543. name: "Normal",
  17544. height: math.unit(6, "feet"),
  17545. default: true
  17546. },
  17547. {
  17548. name: "Big",
  17549. height: math.unit(25, "feet")
  17550. },
  17551. {
  17552. name: "Macro",
  17553. height: math.unit(100, "feet")
  17554. },
  17555. {
  17556. name: "Megamacro",
  17557. height: math.unit(400, "feet")
  17558. },
  17559. ]
  17560. ))
  17561. characterMakers.push(() => makeCharacter(
  17562. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17563. {
  17564. front: {
  17565. height: math.unit(6, "feet"),
  17566. weight: math.unit(160, "lb"),
  17567. name: "Front",
  17568. image: {
  17569. source: "./media/characters/marcus/front.svg",
  17570. extra: 734 / 676,
  17571. bottom: 0.03
  17572. }
  17573. },
  17574. },
  17575. [
  17576. {
  17577. name: "Little",
  17578. height: math.unit(6, "feet")
  17579. },
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(110, "feet"),
  17583. default: true
  17584. },
  17585. {
  17586. name: "Macro",
  17587. height: math.unit(250, "feet")
  17588. },
  17589. {
  17590. name: "Megamacro",
  17591. height: math.unit(1000, "feet")
  17592. },
  17593. ]
  17594. ))
  17595. characterMakers.push(() => makeCharacter(
  17596. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17597. {
  17598. front: {
  17599. height: math.unit(7, "feet"),
  17600. weight: math.unit(275, "lb"),
  17601. name: "Front",
  17602. image: {
  17603. source: "./media/characters/claude-delroute/front.svg",
  17604. extra: 230 / 214,
  17605. bottom: 0.007
  17606. }
  17607. },
  17608. side: {
  17609. height: math.unit(7, "feet"),
  17610. weight: math.unit(275, "lb"),
  17611. name: "Side",
  17612. image: {
  17613. source: "./media/characters/claude-delroute/side.svg",
  17614. extra: 222 / 214,
  17615. bottom: 0.01
  17616. }
  17617. },
  17618. back: {
  17619. height: math.unit(7, "feet"),
  17620. weight: math.unit(275, "lb"),
  17621. name: "Back",
  17622. image: {
  17623. source: "./media/characters/claude-delroute/back.svg",
  17624. extra: 230 / 214,
  17625. bottom: 0.015
  17626. }
  17627. },
  17628. maw: {
  17629. height: math.unit(0.6407, "meters"),
  17630. name: "Maw",
  17631. image: {
  17632. source: "./media/characters/claude-delroute/maw.svg"
  17633. }
  17634. },
  17635. },
  17636. [
  17637. {
  17638. name: "Normal",
  17639. height: math.unit(7, "feet"),
  17640. default: true
  17641. },
  17642. {
  17643. name: "Lorge",
  17644. height: math.unit(20, "feet")
  17645. },
  17646. ]
  17647. ))
  17648. characterMakers.push(() => makeCharacter(
  17649. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17650. {
  17651. front: {
  17652. height: math.unit(8 + 4 / 12, "feet"),
  17653. weight: math.unit(600, "lb"),
  17654. name: "Front",
  17655. image: {
  17656. source: "./media/characters/dragonien/front.svg",
  17657. extra: 100 / 94,
  17658. bottom: 3.3 / 103.3445
  17659. }
  17660. },
  17661. back: {
  17662. height: math.unit(8 + 4 / 12, "feet"),
  17663. weight: math.unit(600, "lb"),
  17664. name: "Back",
  17665. image: {
  17666. source: "./media/characters/dragonien/back.svg",
  17667. extra: 776 / 746,
  17668. bottom: 6.4 / 782.0616
  17669. }
  17670. },
  17671. foot: {
  17672. height: math.unit(1.54, "feet"),
  17673. name: "Foot",
  17674. image: {
  17675. source: "./media/characters/dragonien/foot.svg",
  17676. }
  17677. },
  17678. },
  17679. [
  17680. {
  17681. name: "Normal",
  17682. height: math.unit(8 + 4 / 12, "feet"),
  17683. default: true
  17684. },
  17685. {
  17686. name: "Macro",
  17687. height: math.unit(200, "feet")
  17688. },
  17689. {
  17690. name: "Megamacro",
  17691. height: math.unit(1, "mile")
  17692. },
  17693. {
  17694. name: "Gigamacro",
  17695. height: math.unit(1000, "miles")
  17696. },
  17697. ]
  17698. ))
  17699. characterMakers.push(() => makeCharacter(
  17700. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17701. {
  17702. front: {
  17703. height: math.unit(5 + 2 / 12, "feet"),
  17704. weight: math.unit(110, "lb"),
  17705. name: "Front",
  17706. image: {
  17707. source: "./media/characters/desta/front.svg",
  17708. extra: 767 / 726,
  17709. bottom: 11.7 / 779
  17710. }
  17711. },
  17712. back: {
  17713. height: math.unit(5 + 2 / 12, "feet"),
  17714. weight: math.unit(110, "lb"),
  17715. name: "Back",
  17716. image: {
  17717. source: "./media/characters/desta/back.svg",
  17718. extra: 777 / 728,
  17719. bottom: 6 / 784
  17720. }
  17721. },
  17722. frontAlt: {
  17723. height: math.unit(5 + 2 / 12, "feet"),
  17724. weight: math.unit(110, "lb"),
  17725. name: "Front",
  17726. image: {
  17727. source: "./media/characters/desta/front-alt.svg",
  17728. extra: 1482 / 1417
  17729. }
  17730. },
  17731. side: {
  17732. height: math.unit(5 + 2 / 12, "feet"),
  17733. weight: math.unit(110, "lb"),
  17734. name: "Side",
  17735. image: {
  17736. source: "./media/characters/desta/side.svg",
  17737. extra: 2579 / 2491,
  17738. bottom: 0.053
  17739. }
  17740. },
  17741. },
  17742. [
  17743. {
  17744. name: "Micro",
  17745. height: math.unit(6, "inches")
  17746. },
  17747. {
  17748. name: "Normal",
  17749. height: math.unit(5 + 2 / 12, "feet"),
  17750. default: true
  17751. },
  17752. {
  17753. name: "Macro",
  17754. height: math.unit(62, "feet")
  17755. },
  17756. {
  17757. name: "Megamacro",
  17758. height: math.unit(1800, "feet")
  17759. },
  17760. ]
  17761. ))
  17762. characterMakers.push(() => makeCharacter(
  17763. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17764. {
  17765. front: {
  17766. height: math.unit(10, "feet"),
  17767. weight: math.unit(700, "lb"),
  17768. name: "Front",
  17769. image: {
  17770. source: "./media/characters/storm-alystar/front.svg",
  17771. extra: 2112 / 1898,
  17772. bottom: 0.034
  17773. }
  17774. },
  17775. },
  17776. [
  17777. {
  17778. name: "Micro",
  17779. height: math.unit(3.5, "inches")
  17780. },
  17781. {
  17782. name: "Normal",
  17783. height: math.unit(10, "feet"),
  17784. default: true
  17785. },
  17786. {
  17787. name: "Macro",
  17788. height: math.unit(400, "feet")
  17789. },
  17790. {
  17791. name: "Deific",
  17792. height: math.unit(60, "miles")
  17793. },
  17794. ]
  17795. ))
  17796. characterMakers.push(() => makeCharacter(
  17797. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17798. {
  17799. front: {
  17800. height: math.unit(2.35, "meters"),
  17801. weight: math.unit(119, "kg"),
  17802. name: "Front",
  17803. image: {
  17804. source: "./media/characters/ilia/front.svg",
  17805. extra: 1285 / 1255,
  17806. bottom: 0.06
  17807. }
  17808. },
  17809. },
  17810. [
  17811. {
  17812. name: "Normal",
  17813. height: math.unit(2.35, "meters")
  17814. },
  17815. {
  17816. name: "Macro",
  17817. height: math.unit(140, "meters"),
  17818. default: true
  17819. },
  17820. {
  17821. name: "Megamacro",
  17822. height: math.unit(100, "miles")
  17823. },
  17824. ]
  17825. ))
  17826. characterMakers.push(() => makeCharacter(
  17827. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17828. {
  17829. front: {
  17830. height: math.unit(6 + 5 / 12, "feet"),
  17831. weight: math.unit(190, "lb"),
  17832. name: "Front",
  17833. image: {
  17834. source: "./media/characters/kingdead/front.svg",
  17835. extra: 1228 / 1177
  17836. }
  17837. },
  17838. },
  17839. [
  17840. {
  17841. name: "Micro",
  17842. height: math.unit(7, "inches")
  17843. },
  17844. {
  17845. name: "Normal",
  17846. height: math.unit(6 + 5 / 12, "feet")
  17847. },
  17848. {
  17849. name: "Macro",
  17850. height: math.unit(150, "feet"),
  17851. default: true
  17852. },
  17853. {
  17854. name: "Megamacro",
  17855. height: math.unit(200, "miles")
  17856. },
  17857. ]
  17858. ))
  17859. characterMakers.push(() => makeCharacter(
  17860. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17861. {
  17862. front: {
  17863. height: math.unit(8, "feet"),
  17864. weight: math.unit(600, "lb"),
  17865. name: "Front",
  17866. image: {
  17867. source: "./media/characters/kyrehx/front.svg",
  17868. extra: 1195 / 1095,
  17869. bottom: 0.034
  17870. }
  17871. },
  17872. },
  17873. [
  17874. {
  17875. name: "Micro",
  17876. height: math.unit(2, "inches")
  17877. },
  17878. {
  17879. name: "Normal",
  17880. height: math.unit(8, "feet"),
  17881. default: true
  17882. },
  17883. {
  17884. name: "Macro",
  17885. height: math.unit(255, "feet")
  17886. },
  17887. ]
  17888. ))
  17889. characterMakers.push(() => makeCharacter(
  17890. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17891. {
  17892. front: {
  17893. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17894. weight: math.unit(184, "lb"),
  17895. name: "Front",
  17896. image: {
  17897. source: "./media/characters/xang/front.svg",
  17898. extra: 845 / 755
  17899. }
  17900. },
  17901. },
  17902. [
  17903. {
  17904. name: "Normal",
  17905. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17906. default: true
  17907. },
  17908. {
  17909. name: "Macro",
  17910. height: math.unit(0.935 * 146, "feet")
  17911. },
  17912. {
  17913. name: "Megamacro",
  17914. height: math.unit(0.935 * 3, "miles")
  17915. },
  17916. ]
  17917. ))
  17918. characterMakers.push(() => makeCharacter(
  17919. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17920. {
  17921. frontDressed: {
  17922. height: math.unit(5 + 7 / 12, "feet"),
  17923. weight: math.unit(140, "lb"),
  17924. name: "Front (Dressed)",
  17925. image: {
  17926. source: "./media/characters/doc-weardno/front-dressed.svg",
  17927. extra: 263 / 234
  17928. }
  17929. },
  17930. backDressed: {
  17931. height: math.unit(5 + 7 / 12, "feet"),
  17932. weight: math.unit(140, "lb"),
  17933. name: "Back (Dressed)",
  17934. image: {
  17935. source: "./media/characters/doc-weardno/back-dressed.svg",
  17936. extra: 266 / 238
  17937. }
  17938. },
  17939. front: {
  17940. height: math.unit(5 + 7 / 12, "feet"),
  17941. weight: math.unit(140, "lb"),
  17942. name: "Front",
  17943. image: {
  17944. source: "./media/characters/doc-weardno/front.svg",
  17945. extra: 254 / 233
  17946. }
  17947. },
  17948. },
  17949. [
  17950. {
  17951. name: "Micro",
  17952. height: math.unit(3, "inches")
  17953. },
  17954. {
  17955. name: "Normal",
  17956. height: math.unit(5 + 7 / 12, "feet"),
  17957. default: true
  17958. },
  17959. {
  17960. name: "Macro",
  17961. height: math.unit(25, "feet")
  17962. },
  17963. {
  17964. name: "Megamacro",
  17965. height: math.unit(2, "miles")
  17966. },
  17967. ]
  17968. ))
  17969. characterMakers.push(() => makeCharacter(
  17970. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17971. {
  17972. front: {
  17973. height: math.unit(6 + 2 / 12, "feet"),
  17974. weight: math.unit(153, "lb"),
  17975. name: "Front",
  17976. image: {
  17977. source: "./media/characters/seth-whilst/front.svg",
  17978. bottom: 0.07
  17979. }
  17980. },
  17981. },
  17982. [
  17983. {
  17984. name: "Micro",
  17985. height: math.unit(5, "inches")
  17986. },
  17987. {
  17988. name: "Normal",
  17989. height: math.unit(6 + 2 / 12, "feet"),
  17990. default: true
  17991. },
  17992. ]
  17993. ))
  17994. characterMakers.push(() => makeCharacter(
  17995. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17996. {
  17997. front: {
  17998. height: math.unit(3, "inches"),
  17999. weight: math.unit(8, "grams"),
  18000. name: "Front",
  18001. image: {
  18002. source: "./media/characters/pocket-jabari/front.svg",
  18003. extra: 1024 / 974,
  18004. bottom: 0.039
  18005. }
  18006. },
  18007. },
  18008. [
  18009. {
  18010. name: "Minimicro",
  18011. height: math.unit(8, "mm")
  18012. },
  18013. {
  18014. name: "Micro",
  18015. height: math.unit(3, "inches"),
  18016. default: true
  18017. },
  18018. {
  18019. name: "Normal",
  18020. height: math.unit(3, "feet")
  18021. },
  18022. ]
  18023. ))
  18024. characterMakers.push(() => makeCharacter(
  18025. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18026. {
  18027. front: {
  18028. height: math.unit(15, "feet"),
  18029. weight: math.unit(3280, "lb"),
  18030. name: "Front",
  18031. image: {
  18032. source: "./media/characters/sapphy/front.svg",
  18033. extra: 671 / 577,
  18034. bottom: 0.085
  18035. }
  18036. },
  18037. back: {
  18038. height: math.unit(15, "feet"),
  18039. weight: math.unit(3280, "lb"),
  18040. name: "Back",
  18041. image: {
  18042. source: "./media/characters/sapphy/back.svg",
  18043. extra: 631 / 607,
  18044. bottom: 0.045
  18045. }
  18046. },
  18047. },
  18048. [
  18049. {
  18050. name: "Normal",
  18051. height: math.unit(15, "feet")
  18052. },
  18053. {
  18054. name: "Casual Macro",
  18055. height: math.unit(120, "feet")
  18056. },
  18057. {
  18058. name: "Macro",
  18059. height: math.unit(2150, "feet"),
  18060. default: true
  18061. },
  18062. {
  18063. name: "Megamacro",
  18064. height: math.unit(8, "miles")
  18065. },
  18066. {
  18067. name: "Galaxy Mom",
  18068. height: math.unit(6, "megalightyears")
  18069. },
  18070. ]
  18071. ))
  18072. characterMakers.push(() => makeCharacter(
  18073. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18074. {
  18075. front: {
  18076. height: math.unit(6, "feet"),
  18077. weight: math.unit(170, "lb"),
  18078. name: "Front",
  18079. image: {
  18080. source: "./media/characters/kiro/front.svg",
  18081. extra: 1064 / 1012,
  18082. bottom: 0.052
  18083. }
  18084. },
  18085. },
  18086. [
  18087. {
  18088. name: "Micro",
  18089. height: math.unit(6, "inches")
  18090. },
  18091. {
  18092. name: "Normal",
  18093. height: math.unit(6, "feet"),
  18094. default: true
  18095. },
  18096. {
  18097. name: "Macro",
  18098. height: math.unit(72, "feet")
  18099. },
  18100. ]
  18101. ))
  18102. characterMakers.push(() => makeCharacter(
  18103. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18104. {
  18105. front: {
  18106. height: math.unit(5 + 9 / 12, "feet"),
  18107. weight: math.unit(175, "lb"),
  18108. name: "Front",
  18109. image: {
  18110. source: "./media/characters/irishfox/front.svg",
  18111. extra: 1912 / 1680,
  18112. bottom: 0.02
  18113. }
  18114. },
  18115. },
  18116. [
  18117. {
  18118. name: "Nano",
  18119. height: math.unit(1, "mm")
  18120. },
  18121. {
  18122. name: "Micro",
  18123. height: math.unit(2, "inches")
  18124. },
  18125. {
  18126. name: "Normal",
  18127. height: math.unit(5 + 9 / 12, "feet"),
  18128. default: true
  18129. },
  18130. {
  18131. name: "Macro",
  18132. height: math.unit(45, "feet")
  18133. },
  18134. ]
  18135. ))
  18136. characterMakers.push(() => makeCharacter(
  18137. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18138. {
  18139. front: {
  18140. height: math.unit(6 + 1 / 12, "feet"),
  18141. weight: math.unit(150, "lb"),
  18142. name: "Front",
  18143. image: {
  18144. source: "./media/characters/aronai-sieyes/front.svg",
  18145. extra: 1556 / 1480,
  18146. bottom: 0.015
  18147. }
  18148. },
  18149. side: {
  18150. height: math.unit(6 + 1 / 12, "feet"),
  18151. weight: math.unit(150, "lb"),
  18152. name: "Side",
  18153. image: {
  18154. source: "./media/characters/aronai-sieyes/side.svg",
  18155. extra: 1433 / 1390,
  18156. bottom: 0.0393
  18157. }
  18158. },
  18159. back: {
  18160. height: math.unit(6 + 1 / 12, "feet"),
  18161. weight: math.unit(150, "lb"),
  18162. name: "Back",
  18163. image: {
  18164. source: "./media/characters/aronai-sieyes/back.svg",
  18165. extra: 1544 / 1494,
  18166. bottom: 0.02
  18167. }
  18168. },
  18169. frontClothed: {
  18170. height: math.unit(6 + 1 / 12, "feet"),
  18171. weight: math.unit(150, "lb"),
  18172. name: "Front (Clothed)",
  18173. image: {
  18174. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18175. extra: 1582 / 1527
  18176. }
  18177. },
  18178. feral: {
  18179. height: math.unit(18, "feet"),
  18180. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18181. name: "Feral",
  18182. image: {
  18183. source: "./media/characters/aronai-sieyes/feral.svg",
  18184. extra: 1530 / 1240,
  18185. bottom: 0.035
  18186. }
  18187. },
  18188. },
  18189. [
  18190. {
  18191. name: "Micro",
  18192. height: math.unit(2, "inches")
  18193. },
  18194. {
  18195. name: "Normal",
  18196. height: math.unit(6 + 1 / 12, "feet"),
  18197. default: true
  18198. }
  18199. ]
  18200. ))
  18201. characterMakers.push(() => makeCharacter(
  18202. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18203. {
  18204. front: {
  18205. height: math.unit(12, "feet"),
  18206. weight: math.unit(410, "kg"),
  18207. name: "Front",
  18208. image: {
  18209. source: "./media/characters/xuna/front.svg",
  18210. extra: 2184 / 1980
  18211. }
  18212. },
  18213. side: {
  18214. height: math.unit(12, "feet"),
  18215. weight: math.unit(410, "kg"),
  18216. name: "Side",
  18217. image: {
  18218. source: "./media/characters/xuna/side.svg",
  18219. extra: 2184 / 1980
  18220. }
  18221. },
  18222. back: {
  18223. height: math.unit(12, "feet"),
  18224. weight: math.unit(410, "kg"),
  18225. name: "Back",
  18226. image: {
  18227. source: "./media/characters/xuna/back.svg",
  18228. extra: 2184 / 1980
  18229. }
  18230. },
  18231. },
  18232. [
  18233. {
  18234. name: "Nano glow",
  18235. height: math.unit(10, "nm")
  18236. },
  18237. {
  18238. name: "Micro floof",
  18239. height: math.unit(0.3, "m")
  18240. },
  18241. {
  18242. name: "Huggable softy boi",
  18243. height: math.unit(3.6576, "m"),
  18244. default: true
  18245. },
  18246. {
  18247. name: "Admirable floof",
  18248. height: math.unit(80, "meters")
  18249. },
  18250. {
  18251. name: "Gentle macro",
  18252. height: math.unit(300, "meters")
  18253. },
  18254. {
  18255. name: "Very careful floof",
  18256. height: math.unit(3200, "meters")
  18257. },
  18258. {
  18259. name: "The mega floof",
  18260. height: math.unit(36000, "meters")
  18261. },
  18262. {
  18263. name: "Giga-fur-Wicker",
  18264. height: math.unit(4800000, "meters")
  18265. },
  18266. {
  18267. name: "Licky world",
  18268. height: math.unit(20000000, "meters")
  18269. },
  18270. {
  18271. name: "Floofy cyan sun",
  18272. height: math.unit(1500000000, "meters")
  18273. },
  18274. {
  18275. name: "Milky Wicker",
  18276. height: math.unit(1000000000000000000000, "meters")
  18277. },
  18278. {
  18279. name: "The observing Wicker",
  18280. height: math.unit(999999999999999999999999999, "meters")
  18281. },
  18282. ]
  18283. ))
  18284. characterMakers.push(() => makeCharacter(
  18285. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18286. {
  18287. front: {
  18288. height: math.unit(5 + 9 / 12, "feet"),
  18289. weight: math.unit(150, "lb"),
  18290. name: "Front",
  18291. image: {
  18292. source: "./media/characters/arokha-sieyes/front.svg",
  18293. extra: 1425 / 1284,
  18294. bottom: 0.05
  18295. }
  18296. },
  18297. },
  18298. [
  18299. {
  18300. name: "Normal",
  18301. height: math.unit(5 + 9 / 12, "feet")
  18302. },
  18303. {
  18304. name: "Macro",
  18305. height: math.unit(30, "meters"),
  18306. default: true
  18307. },
  18308. ]
  18309. ))
  18310. characterMakers.push(() => makeCharacter(
  18311. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18312. {
  18313. front: {
  18314. height: math.unit(6, "feet"),
  18315. weight: math.unit(180, "lb"),
  18316. name: "Front",
  18317. image: {
  18318. source: "./media/characters/arokh-sieyes/front.svg",
  18319. extra: 1830 / 1769,
  18320. bottom: 0.01
  18321. }
  18322. },
  18323. },
  18324. [
  18325. {
  18326. name: "Normal",
  18327. height: math.unit(6, "feet")
  18328. },
  18329. {
  18330. name: "Macro",
  18331. height: math.unit(30, "meters"),
  18332. default: true
  18333. },
  18334. ]
  18335. ))
  18336. characterMakers.push(() => makeCharacter(
  18337. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18338. {
  18339. side: {
  18340. height: math.unit(13 + 1 / 12, "feet"),
  18341. weight: math.unit(8.5, "tonnes"),
  18342. name: "Side",
  18343. image: {
  18344. source: "./media/characters/goldeneye/side.svg",
  18345. extra: 1182 / 778,
  18346. bottom: 0.067
  18347. }
  18348. },
  18349. paw: {
  18350. height: math.unit(3.4, "feet"),
  18351. name: "Paw",
  18352. image: {
  18353. source: "./media/characters/goldeneye/paw.svg"
  18354. }
  18355. },
  18356. },
  18357. [
  18358. {
  18359. name: "Normal",
  18360. height: math.unit(13 + 1 / 12, "feet"),
  18361. default: true
  18362. },
  18363. ]
  18364. ))
  18365. characterMakers.push(() => makeCharacter(
  18366. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18367. {
  18368. front: {
  18369. height: math.unit(6 + 1 / 12, "feet"),
  18370. weight: math.unit(210, "lb"),
  18371. name: "Front",
  18372. image: {
  18373. source: "./media/characters/leonardo-lycheborne/front.svg",
  18374. extra: 390 / 365,
  18375. bottom: 0.032
  18376. }
  18377. },
  18378. side: {
  18379. height: math.unit(6 + 1 / 12, "feet"),
  18380. weight: math.unit(210, "lb"),
  18381. name: "Side",
  18382. image: {
  18383. source: "./media/characters/leonardo-lycheborne/side.svg",
  18384. extra: 390 / 365,
  18385. bottom: 0.005
  18386. }
  18387. },
  18388. back: {
  18389. height: math.unit(6 + 1 / 12, "feet"),
  18390. weight: math.unit(210, "lb"),
  18391. name: "Back",
  18392. image: {
  18393. source: "./media/characters/leonardo-lycheborne/back.svg",
  18394. extra: 392 / 366,
  18395. bottom: 0.01
  18396. }
  18397. },
  18398. hand: {
  18399. height: math.unit(1.08, "feet"),
  18400. name: "Hand",
  18401. image: {
  18402. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18403. }
  18404. },
  18405. foot: {
  18406. height: math.unit(1.32, "feet"),
  18407. name: "Foot",
  18408. image: {
  18409. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18410. }
  18411. },
  18412. were: {
  18413. height: math.unit(20, "feet"),
  18414. weight: math.unit(7800, "lb"),
  18415. name: "Were",
  18416. image: {
  18417. source: "./media/characters/leonardo-lycheborne/were.svg",
  18418. extra: 308 / 294,
  18419. bottom: 0.048
  18420. }
  18421. },
  18422. feral: {
  18423. height: math.unit(7.5, "feet"),
  18424. weight: math.unit(600, "lb"),
  18425. name: "Feral",
  18426. image: {
  18427. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18428. extra: 210 / 186,
  18429. bottom: 0.108
  18430. }
  18431. },
  18432. taur: {
  18433. height: math.unit(11, "feet"),
  18434. weight: math.unit(3300, "lb"),
  18435. name: "Taur",
  18436. image: {
  18437. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18438. extra: 320 / 303,
  18439. bottom: 0.025
  18440. }
  18441. },
  18442. barghest: {
  18443. height: math.unit(11, "feet"),
  18444. weight: math.unit(1300, "lb"),
  18445. name: "Barghest",
  18446. image: {
  18447. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18448. extra: 323 / 302,
  18449. bottom: 0.027
  18450. }
  18451. },
  18452. dick: {
  18453. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18454. name: "Dick",
  18455. image: {
  18456. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18457. }
  18458. },
  18459. dickWere: {
  18460. height: math.unit((20) / 3.8, "feet"),
  18461. name: "Dick (Were)",
  18462. image: {
  18463. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18464. }
  18465. },
  18466. },
  18467. [
  18468. {
  18469. name: "Normal",
  18470. height: math.unit(6 + 1 / 12, "feet"),
  18471. default: true
  18472. },
  18473. ]
  18474. ))
  18475. characterMakers.push(() => makeCharacter(
  18476. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18477. {
  18478. front: {
  18479. height: math.unit(10, "feet"),
  18480. weight: math.unit(350, "lb"),
  18481. name: "Front",
  18482. image: {
  18483. source: "./media/characters/jet/front.svg",
  18484. extra: 2050 / 1980,
  18485. bottom: 0.013
  18486. }
  18487. },
  18488. back: {
  18489. height: math.unit(10, "feet"),
  18490. weight: math.unit(350, "lb"),
  18491. name: "Back",
  18492. image: {
  18493. source: "./media/characters/jet/back.svg",
  18494. extra: 2050 / 1980,
  18495. bottom: 0.013
  18496. }
  18497. },
  18498. },
  18499. [
  18500. {
  18501. name: "Micro",
  18502. height: math.unit(6, "inches")
  18503. },
  18504. {
  18505. name: "Normal",
  18506. height: math.unit(10, "feet"),
  18507. default: true
  18508. },
  18509. {
  18510. name: "Macro",
  18511. height: math.unit(100, "feet")
  18512. },
  18513. ]
  18514. ))
  18515. characterMakers.push(() => makeCharacter(
  18516. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18517. {
  18518. front: {
  18519. height: math.unit(15, "feet"),
  18520. weight: math.unit(2800, "lb"),
  18521. name: "Front",
  18522. image: {
  18523. source: "./media/characters/tanarath/front.svg",
  18524. extra: 2392 / 2220,
  18525. bottom: 0.03
  18526. }
  18527. },
  18528. back: {
  18529. height: math.unit(15, "feet"),
  18530. weight: math.unit(2800, "lb"),
  18531. name: "Back",
  18532. image: {
  18533. source: "./media/characters/tanarath/back.svg",
  18534. extra: 2392 / 2220,
  18535. bottom: 0.03
  18536. }
  18537. },
  18538. },
  18539. [
  18540. {
  18541. name: "Normal",
  18542. height: math.unit(15, "feet"),
  18543. default: true
  18544. },
  18545. ]
  18546. ))
  18547. characterMakers.push(() => makeCharacter(
  18548. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18549. {
  18550. front: {
  18551. height: math.unit(7 + 1 / 12, "feet"),
  18552. weight: math.unit(175, "lb"),
  18553. name: "Front",
  18554. image: {
  18555. source: "./media/characters/patty-cattybatty/front.svg",
  18556. extra: 908 / 874,
  18557. bottom: 0.025
  18558. }
  18559. },
  18560. },
  18561. [
  18562. {
  18563. name: "Micro",
  18564. height: math.unit(1, "inch")
  18565. },
  18566. {
  18567. name: "Normal",
  18568. height: math.unit(7 + 1 / 12, "feet")
  18569. },
  18570. {
  18571. name: "Mini Macro",
  18572. height: math.unit(155, "feet")
  18573. },
  18574. {
  18575. name: "Macro",
  18576. height: math.unit(1077, "feet")
  18577. },
  18578. {
  18579. name: "Mega Macro",
  18580. height: math.unit(47650, "feet"),
  18581. default: true
  18582. },
  18583. {
  18584. name: "Giga Macro",
  18585. height: math.unit(440, "miles")
  18586. },
  18587. {
  18588. name: "Tera Macro",
  18589. height: math.unit(8700, "miles")
  18590. },
  18591. {
  18592. name: "Planetary Macro",
  18593. height: math.unit(32700, "miles")
  18594. },
  18595. {
  18596. name: "Solar Macro",
  18597. height: math.unit(550000, "miles")
  18598. },
  18599. {
  18600. name: "Celestial Macro",
  18601. height: math.unit(2.5, "AU")
  18602. },
  18603. ]
  18604. ))
  18605. characterMakers.push(() => makeCharacter(
  18606. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18607. {
  18608. front: {
  18609. height: math.unit(4 + 5 / 12, "feet"),
  18610. weight: math.unit(90, "lb"),
  18611. name: "Front",
  18612. image: {
  18613. source: "./media/characters/cappu/front.svg",
  18614. extra: 1247 / 1152,
  18615. bottom: 0.012
  18616. }
  18617. },
  18618. },
  18619. [
  18620. {
  18621. name: "Normal",
  18622. height: math.unit(4 + 5 / 12, "feet"),
  18623. default: true
  18624. },
  18625. ]
  18626. ))
  18627. characterMakers.push(() => makeCharacter(
  18628. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18629. {
  18630. frontDressed: {
  18631. height: math.unit(70, "cm"),
  18632. weight: math.unit(6, "kg"),
  18633. name: "Front (Dressed)",
  18634. image: {
  18635. source: "./media/characters/sebi/front-dressed.svg",
  18636. extra: 713.5 / 686.5,
  18637. bottom: 0.003
  18638. }
  18639. },
  18640. front: {
  18641. height: math.unit(70, "cm"),
  18642. weight: math.unit(5, "kg"),
  18643. name: "Front",
  18644. image: {
  18645. source: "./media/characters/sebi/front.svg",
  18646. extra: 713.5 / 686.5,
  18647. bottom: 0.003
  18648. }
  18649. }
  18650. },
  18651. [
  18652. {
  18653. name: "Normal",
  18654. height: math.unit(70, "cm"),
  18655. default: true
  18656. },
  18657. {
  18658. name: "Macro",
  18659. height: math.unit(8, "meters")
  18660. },
  18661. ]
  18662. ))
  18663. characterMakers.push(() => makeCharacter(
  18664. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18665. {
  18666. front: {
  18667. height: math.unit(6, "feet"),
  18668. weight: math.unit(150, "lb"),
  18669. name: "Front",
  18670. image: {
  18671. source: "./media/characters/typhek/front.svg",
  18672. extra: 1948 / 1929,
  18673. bottom: 0.025
  18674. }
  18675. },
  18676. side: {
  18677. height: math.unit(6, "feet"),
  18678. weight: math.unit(150, "lb"),
  18679. name: "Side",
  18680. image: {
  18681. source: "./media/characters/typhek/side.svg",
  18682. extra: 2034 / 2010,
  18683. bottom: 0.003
  18684. }
  18685. },
  18686. back: {
  18687. height: math.unit(6, "feet"),
  18688. weight: math.unit(150, "lb"),
  18689. name: "Back",
  18690. image: {
  18691. source: "./media/characters/typhek/back.svg",
  18692. extra: 2005 / 1978,
  18693. bottom: 0.004
  18694. }
  18695. },
  18696. palm: {
  18697. height: math.unit(1.2, "feet"),
  18698. name: "Palm",
  18699. image: {
  18700. source: "./media/characters/typhek/palm.svg"
  18701. }
  18702. },
  18703. fist: {
  18704. height: math.unit(1.1, "feet"),
  18705. name: "Fist",
  18706. image: {
  18707. source: "./media/characters/typhek/fist.svg"
  18708. }
  18709. },
  18710. foot: {
  18711. height: math.unit(1.57, "feet"),
  18712. name: "Foot",
  18713. image: {
  18714. source: "./media/characters/typhek/foot.svg"
  18715. }
  18716. },
  18717. sole: {
  18718. height: math.unit(2.05, "feet"),
  18719. name: "Sole",
  18720. image: {
  18721. source: "./media/characters/typhek/sole.svg"
  18722. }
  18723. },
  18724. },
  18725. [
  18726. {
  18727. name: "Macro",
  18728. height: math.unit(40, "stories"),
  18729. default: true
  18730. },
  18731. {
  18732. name: "Megamacro",
  18733. height: math.unit(1, "mile")
  18734. },
  18735. {
  18736. name: "Gigamacro",
  18737. height: math.unit(4000, "solarradii")
  18738. },
  18739. {
  18740. name: "Universal",
  18741. height: math.unit(1.1, "universes")
  18742. }
  18743. ]
  18744. ))
  18745. characterMakers.push(() => makeCharacter(
  18746. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18747. {
  18748. side: {
  18749. height: math.unit(5 + 7 / 12, "feet"),
  18750. weight: math.unit(150, "lb"),
  18751. name: "Side",
  18752. image: {
  18753. source: "./media/characters/kassy/side.svg",
  18754. extra: 1280 / 1225,
  18755. bottom: 0.002
  18756. }
  18757. },
  18758. front: {
  18759. height: math.unit(5 + 7 / 12, "feet"),
  18760. weight: math.unit(150, "lb"),
  18761. name: "Front",
  18762. image: {
  18763. source: "./media/characters/kassy/front.svg",
  18764. extra: 1280 / 1225,
  18765. bottom: 0.025
  18766. }
  18767. },
  18768. back: {
  18769. height: math.unit(5 + 7 / 12, "feet"),
  18770. weight: math.unit(150, "lb"),
  18771. name: "Back",
  18772. image: {
  18773. source: "./media/characters/kassy/back.svg",
  18774. extra: 1280 / 1225,
  18775. bottom: 0.002
  18776. }
  18777. },
  18778. foot: {
  18779. height: math.unit(1.266, "feet"),
  18780. name: "Foot",
  18781. image: {
  18782. source: "./media/characters/kassy/foot.svg"
  18783. }
  18784. },
  18785. },
  18786. [
  18787. {
  18788. name: "Normal",
  18789. height: math.unit(5 + 7 / 12, "feet")
  18790. },
  18791. {
  18792. name: "Macro",
  18793. height: math.unit(137, "feet"),
  18794. default: true
  18795. },
  18796. {
  18797. name: "Megamacro",
  18798. height: math.unit(1, "mile")
  18799. },
  18800. ]
  18801. ))
  18802. characterMakers.push(() => makeCharacter(
  18803. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18804. {
  18805. front: {
  18806. height: math.unit(6 + 1 / 12, "feet"),
  18807. weight: math.unit(200, "lb"),
  18808. name: "Front",
  18809. image: {
  18810. source: "./media/characters/neil/front.svg",
  18811. extra: 1326 / 1250,
  18812. bottom: 0.023
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(6 + 1 / 12, "feet"),
  18820. default: true
  18821. },
  18822. {
  18823. name: "Macro",
  18824. height: math.unit(200, "feet")
  18825. },
  18826. ]
  18827. ))
  18828. characterMakers.push(() => makeCharacter(
  18829. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18830. {
  18831. front: {
  18832. height: math.unit(5 + 9 / 12, "feet"),
  18833. weight: math.unit(190, "lb"),
  18834. name: "Front",
  18835. image: {
  18836. source: "./media/characters/atticus/front.svg",
  18837. extra: 2934 / 2785,
  18838. bottom: 0.025
  18839. }
  18840. },
  18841. },
  18842. [
  18843. {
  18844. name: "Normal",
  18845. height: math.unit(5 + 9 / 12, "feet"),
  18846. default: true
  18847. },
  18848. {
  18849. name: "Macro",
  18850. height: math.unit(180, "feet")
  18851. },
  18852. ]
  18853. ))
  18854. characterMakers.push(() => makeCharacter(
  18855. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18856. {
  18857. side: {
  18858. height: math.unit(9, "feet"),
  18859. weight: math.unit(650, "lb"),
  18860. name: "Side",
  18861. image: {
  18862. source: "./media/characters/milo/side.svg",
  18863. extra: 2644 / 2310,
  18864. bottom: 0.032
  18865. }
  18866. },
  18867. },
  18868. [
  18869. {
  18870. name: "Normal",
  18871. height: math.unit(9, "feet"),
  18872. default: true
  18873. },
  18874. {
  18875. name: "Macro",
  18876. height: math.unit(300, "feet")
  18877. },
  18878. ]
  18879. ))
  18880. characterMakers.push(() => makeCharacter(
  18881. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18882. {
  18883. side: {
  18884. height: math.unit(8, "meters"),
  18885. weight: math.unit(90000, "kg"),
  18886. name: "Side",
  18887. image: {
  18888. source: "./media/characters/ijzer/side.svg",
  18889. extra: 2756 / 1600,
  18890. bottom: 0.01
  18891. }
  18892. },
  18893. },
  18894. [
  18895. {
  18896. name: "Small",
  18897. height: math.unit(3, "meters")
  18898. },
  18899. {
  18900. name: "Normal",
  18901. height: math.unit(8, "meters"),
  18902. default: true
  18903. },
  18904. {
  18905. name: "Normal+",
  18906. height: math.unit(10, "meters")
  18907. },
  18908. {
  18909. name: "Bigger",
  18910. height: math.unit(24, "meters")
  18911. },
  18912. {
  18913. name: "Huge",
  18914. height: math.unit(80, "meters")
  18915. },
  18916. ]
  18917. ))
  18918. characterMakers.push(() => makeCharacter(
  18919. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18920. {
  18921. front: {
  18922. height: math.unit(6 + 2 / 12, "feet"),
  18923. weight: math.unit(153, "lb"),
  18924. name: "Front",
  18925. image: {
  18926. source: "./media/characters/luca-cervicum/front.svg",
  18927. extra: 370 / 327,
  18928. bottom: 0.015
  18929. }
  18930. },
  18931. back: {
  18932. height: math.unit(6 + 2 / 12, "feet"),
  18933. weight: math.unit(153, "lb"),
  18934. name: "Back",
  18935. image: {
  18936. source: "./media/characters/luca-cervicum/back.svg",
  18937. extra: 367 / 333,
  18938. bottom: 0.005
  18939. }
  18940. },
  18941. frontGear: {
  18942. height: math.unit(6 + 2 / 12, "feet"),
  18943. weight: math.unit(173, "lb"),
  18944. name: "Front (Gear)",
  18945. image: {
  18946. source: "./media/characters/luca-cervicum/front-gear.svg",
  18947. extra: 377 / 333,
  18948. bottom: 0.006
  18949. }
  18950. },
  18951. },
  18952. [
  18953. {
  18954. name: "Normal",
  18955. height: math.unit(6 + 2 / 12, "feet"),
  18956. default: true
  18957. },
  18958. ]
  18959. ))
  18960. characterMakers.push(() => makeCharacter(
  18961. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18962. {
  18963. front: {
  18964. height: math.unit(6 + 1 / 12, "feet"),
  18965. weight: math.unit(304, "lb"),
  18966. name: "Front",
  18967. image: {
  18968. source: "./media/characters/oliver/front.svg",
  18969. extra: 157 / 143,
  18970. bottom: 0.08
  18971. }
  18972. },
  18973. },
  18974. [
  18975. {
  18976. name: "Normal",
  18977. height: math.unit(6 + 1 / 12, "feet"),
  18978. default: true
  18979. },
  18980. ]
  18981. ))
  18982. characterMakers.push(() => makeCharacter(
  18983. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18984. {
  18985. front: {
  18986. height: math.unit(5 + 7 / 12, "feet"),
  18987. weight: math.unit(140, "lb"),
  18988. name: "Front",
  18989. image: {
  18990. source: "./media/characters/shane/front.svg",
  18991. extra: 304 / 289,
  18992. bottom: 0.005
  18993. }
  18994. },
  18995. },
  18996. [
  18997. {
  18998. name: "Normal",
  18999. height: math.unit(5 + 7 / 12, "feet"),
  19000. default: true
  19001. },
  19002. ]
  19003. ))
  19004. characterMakers.push(() => makeCharacter(
  19005. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19006. {
  19007. front: {
  19008. height: math.unit(5 + 9 / 12, "feet"),
  19009. weight: math.unit(178, "lb"),
  19010. name: "Front",
  19011. image: {
  19012. source: "./media/characters/shin/front.svg",
  19013. extra: 159 / 151,
  19014. bottom: 0.015
  19015. }
  19016. },
  19017. },
  19018. [
  19019. {
  19020. name: "Normal",
  19021. height: math.unit(5 + 9 / 12, "feet"),
  19022. default: true
  19023. },
  19024. ]
  19025. ))
  19026. characterMakers.push(() => makeCharacter(
  19027. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19028. {
  19029. front: {
  19030. height: math.unit(5 + 10 / 12, "feet"),
  19031. weight: math.unit(168, "lb"),
  19032. name: "Front",
  19033. image: {
  19034. source: "./media/characters/xerxes/front.svg",
  19035. extra: 282 / 260,
  19036. bottom: 0.045
  19037. }
  19038. },
  19039. },
  19040. [
  19041. {
  19042. name: "Normal",
  19043. height: math.unit(5 + 10 / 12, "feet"),
  19044. default: true
  19045. },
  19046. ]
  19047. ))
  19048. characterMakers.push(() => makeCharacter(
  19049. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19050. {
  19051. front: {
  19052. height: math.unit(6 + 7 / 12, "feet"),
  19053. weight: math.unit(208, "lb"),
  19054. name: "Front",
  19055. image: {
  19056. source: "./media/characters/chaska/front.svg",
  19057. extra: 332 / 319,
  19058. bottom: 0.015
  19059. }
  19060. },
  19061. },
  19062. [
  19063. {
  19064. name: "Normal",
  19065. height: math.unit(6 + 7 / 12, "feet"),
  19066. default: true
  19067. },
  19068. ]
  19069. ))
  19070. characterMakers.push(() => makeCharacter(
  19071. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19072. {
  19073. front: {
  19074. height: math.unit(5 + 8 / 12, "feet"),
  19075. weight: math.unit(208, "lb"),
  19076. name: "Front",
  19077. image: {
  19078. source: "./media/characters/enuk/front.svg",
  19079. extra: 437 / 406,
  19080. bottom: 0.02
  19081. }
  19082. },
  19083. },
  19084. [
  19085. {
  19086. name: "Normal",
  19087. height: math.unit(5 + 8 / 12, "feet"),
  19088. default: true
  19089. },
  19090. ]
  19091. ))
  19092. characterMakers.push(() => makeCharacter(
  19093. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19094. {
  19095. front: {
  19096. height: math.unit(5 + 10 / 12, "feet"),
  19097. weight: math.unit(252, "lb"),
  19098. name: "Front",
  19099. image: {
  19100. source: "./media/characters/bruun/front.svg",
  19101. extra: 197 / 187,
  19102. bottom: 0.012
  19103. }
  19104. },
  19105. },
  19106. [
  19107. {
  19108. name: "Normal",
  19109. height: math.unit(5 + 10 / 12, "feet"),
  19110. default: true
  19111. },
  19112. ]
  19113. ))
  19114. characterMakers.push(() => makeCharacter(
  19115. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19116. {
  19117. front: {
  19118. height: math.unit(6 + 10 / 12, "feet"),
  19119. weight: math.unit(255, "lb"),
  19120. name: "Front",
  19121. image: {
  19122. source: "./media/characters/alexeev/front.svg",
  19123. extra: 213 / 200,
  19124. bottom: 0.05
  19125. }
  19126. },
  19127. },
  19128. [
  19129. {
  19130. name: "Normal",
  19131. height: math.unit(6 + 10 / 12, "feet"),
  19132. default: true
  19133. },
  19134. ]
  19135. ))
  19136. characterMakers.push(() => makeCharacter(
  19137. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19138. {
  19139. front: {
  19140. height: math.unit(2 + 8 / 12, "feet"),
  19141. weight: math.unit(22, "lb"),
  19142. name: "Front",
  19143. image: {
  19144. source: "./media/characters/evelyn/front.svg",
  19145. extra: 208 / 180
  19146. }
  19147. },
  19148. },
  19149. [
  19150. {
  19151. name: "Normal",
  19152. height: math.unit(2 + 8 / 12, "feet"),
  19153. default: true
  19154. },
  19155. ]
  19156. ))
  19157. characterMakers.push(() => makeCharacter(
  19158. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19159. {
  19160. front: {
  19161. height: math.unit(5 + 9 / 12, "feet"),
  19162. weight: math.unit(139, "lb"),
  19163. name: "Front",
  19164. image: {
  19165. source: "./media/characters/inca/front.svg",
  19166. extra: 294 / 291,
  19167. bottom: 0.03
  19168. }
  19169. },
  19170. },
  19171. [
  19172. {
  19173. name: "Normal",
  19174. height: math.unit(5 + 9 / 12, "feet"),
  19175. default: true
  19176. },
  19177. ]
  19178. ))
  19179. characterMakers.push(() => makeCharacter(
  19180. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19181. {
  19182. front: {
  19183. height: math.unit(5 + 1 / 12, "feet"),
  19184. weight: math.unit(84, "lb"),
  19185. name: "Front",
  19186. image: {
  19187. source: "./media/characters/magdalene/front.svg",
  19188. extra: 293 / 273
  19189. }
  19190. },
  19191. },
  19192. [
  19193. {
  19194. name: "Normal",
  19195. height: math.unit(5 + 1 / 12, "feet"),
  19196. default: true
  19197. },
  19198. ]
  19199. ))
  19200. characterMakers.push(() => makeCharacter(
  19201. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19202. {
  19203. front: {
  19204. height: math.unit(6 + 3 / 12, "feet"),
  19205. weight: math.unit(185, "lb"),
  19206. name: "Front",
  19207. image: {
  19208. source: "./media/characters/mera/front.svg",
  19209. extra: 291 / 277,
  19210. bottom: 0.03
  19211. }
  19212. },
  19213. },
  19214. [
  19215. {
  19216. name: "Normal",
  19217. height: math.unit(6 + 3 / 12, "feet"),
  19218. default: true
  19219. },
  19220. ]
  19221. ))
  19222. characterMakers.push(() => makeCharacter(
  19223. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19224. {
  19225. front: {
  19226. height: math.unit(6 + 7 / 12, "feet"),
  19227. weight: math.unit(160, "lb"),
  19228. name: "Front",
  19229. image: {
  19230. source: "./media/characters/ceres/front.svg",
  19231. extra: 1023 / 950,
  19232. bottom: 0.027
  19233. }
  19234. },
  19235. back: {
  19236. height: math.unit(6 + 7 / 12, "feet"),
  19237. weight: math.unit(160, "lb"),
  19238. name: "Back",
  19239. image: {
  19240. source: "./media/characters/ceres/back.svg",
  19241. extra: 1023 / 950
  19242. }
  19243. },
  19244. },
  19245. [
  19246. {
  19247. name: "Normal",
  19248. height: math.unit(6 + 7 / 12, "feet"),
  19249. default: true
  19250. },
  19251. ]
  19252. ))
  19253. characterMakers.push(() => makeCharacter(
  19254. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19255. {
  19256. front: {
  19257. height: math.unit(5 + 10 / 12, "feet"),
  19258. weight: math.unit(150, "lb"),
  19259. name: "Front",
  19260. image: {
  19261. source: "./media/characters/kris/front.svg",
  19262. extra: 885 / 803,
  19263. bottom: 0.03
  19264. }
  19265. },
  19266. },
  19267. [
  19268. {
  19269. name: "Normal",
  19270. height: math.unit(5 + 10 / 12, "feet"),
  19271. default: true
  19272. },
  19273. ]
  19274. ))
  19275. characterMakers.push(() => makeCharacter(
  19276. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19277. {
  19278. front: {
  19279. height: math.unit(7, "feet"),
  19280. weight: math.unit(120, "kg"),
  19281. name: "Front",
  19282. image: {
  19283. source: "./media/characters/taluthus/front.svg",
  19284. extra: 903 / 833,
  19285. bottom: 0.015
  19286. }
  19287. },
  19288. },
  19289. [
  19290. {
  19291. name: "Normal",
  19292. height: math.unit(7, "feet"),
  19293. default: true
  19294. },
  19295. {
  19296. name: "Macro",
  19297. height: math.unit(300, "feet")
  19298. },
  19299. ]
  19300. ))
  19301. characterMakers.push(() => makeCharacter(
  19302. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19303. {
  19304. front: {
  19305. height: math.unit(5 + 9 / 12, "feet"),
  19306. weight: math.unit(145, "lb"),
  19307. name: "Front",
  19308. image: {
  19309. source: "./media/characters/dawn/front.svg",
  19310. extra: 2094 / 2016,
  19311. bottom: 0.025
  19312. }
  19313. },
  19314. back: {
  19315. height: math.unit(5 + 9 / 12, "feet"),
  19316. weight: math.unit(160, "lb"),
  19317. name: "Back",
  19318. image: {
  19319. source: "./media/characters/dawn/back.svg",
  19320. extra: 2112 / 2080,
  19321. bottom: 0.005
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Normal",
  19328. height: math.unit(6 + 7 / 12, "feet"),
  19329. default: true
  19330. },
  19331. ]
  19332. ))
  19333. characterMakers.push(() => makeCharacter(
  19334. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19335. {
  19336. anthro: {
  19337. height: math.unit(8 + 3 / 12, "feet"),
  19338. weight: math.unit(450, "lb"),
  19339. name: "Anthro",
  19340. image: {
  19341. source: "./media/characters/arador/anthro.svg",
  19342. extra: 1835 / 1718,
  19343. bottom: 0.025
  19344. }
  19345. },
  19346. feral: {
  19347. height: math.unit(4, "feet"),
  19348. weight: math.unit(200, "lb"),
  19349. name: "Feral",
  19350. image: {
  19351. source: "./media/characters/arador/feral.svg",
  19352. extra: 1683 / 1514,
  19353. bottom: 0.07
  19354. }
  19355. },
  19356. },
  19357. [
  19358. {
  19359. name: "Normal",
  19360. height: math.unit(8 + 3 / 12, "feet")
  19361. },
  19362. {
  19363. name: "Macro",
  19364. height: math.unit(82.5, "feet"),
  19365. default: true
  19366. },
  19367. ]
  19368. ))
  19369. characterMakers.push(() => makeCharacter(
  19370. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19371. {
  19372. front: {
  19373. height: math.unit(5 + 10 / 12, "feet"),
  19374. weight: math.unit(125, "lb"),
  19375. name: "Front",
  19376. image: {
  19377. source: "./media/characters/dharsi/front.svg",
  19378. extra: 716 / 630,
  19379. bottom: 0.035
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Nano",
  19386. height: math.unit(100, "nm")
  19387. },
  19388. {
  19389. name: "Micro",
  19390. height: math.unit(2, "inches")
  19391. },
  19392. {
  19393. name: "Normal",
  19394. height: math.unit(5 + 10 / 12, "feet"),
  19395. default: true
  19396. },
  19397. {
  19398. name: "Macro",
  19399. height: math.unit(1000, "feet")
  19400. },
  19401. {
  19402. name: "Megamacro",
  19403. height: math.unit(10, "miles")
  19404. },
  19405. {
  19406. name: "Gigamacro",
  19407. height: math.unit(3000, "miles")
  19408. },
  19409. {
  19410. name: "Teramacro",
  19411. height: math.unit(500000, "miles")
  19412. },
  19413. {
  19414. name: "Teramacro+",
  19415. height: math.unit(30, "galaxies")
  19416. },
  19417. ]
  19418. ))
  19419. characterMakers.push(() => makeCharacter(
  19420. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19421. {
  19422. front: {
  19423. height: math.unit(6, "feet"),
  19424. weight: math.unit(150, "lb"),
  19425. name: "Front",
  19426. image: {
  19427. source: "./media/characters/deathy/front.svg",
  19428. extra: 1552 / 1463,
  19429. bottom: 0.025
  19430. }
  19431. },
  19432. side: {
  19433. height: math.unit(6, "feet"),
  19434. weight: math.unit(150, "lb"),
  19435. name: "Side",
  19436. image: {
  19437. source: "./media/characters/deathy/side.svg",
  19438. extra: 1604 / 1455,
  19439. bottom: 0.025
  19440. }
  19441. },
  19442. back: {
  19443. height: math.unit(6, "feet"),
  19444. weight: math.unit(150, "lb"),
  19445. name: "Back",
  19446. image: {
  19447. source: "./media/characters/deathy/back.svg",
  19448. extra: 1580 / 1463,
  19449. bottom: 0.005
  19450. }
  19451. },
  19452. },
  19453. [
  19454. {
  19455. name: "Micro",
  19456. height: math.unit(5, "millimeters")
  19457. },
  19458. {
  19459. name: "Normal",
  19460. height: math.unit(6 + 5 / 12, "feet"),
  19461. default: true
  19462. },
  19463. ]
  19464. ))
  19465. characterMakers.push(() => makeCharacter(
  19466. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19467. {
  19468. front: {
  19469. height: math.unit(16, "feet"),
  19470. weight: math.unit(4000, "lb"),
  19471. name: "Front",
  19472. image: {
  19473. source: "./media/characters/juniper/front.svg",
  19474. bottom: 0.04
  19475. }
  19476. },
  19477. },
  19478. [
  19479. {
  19480. name: "Normal",
  19481. height: math.unit(16, "feet"),
  19482. default: true
  19483. },
  19484. ]
  19485. ))
  19486. characterMakers.push(() => makeCharacter(
  19487. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19488. {
  19489. front: {
  19490. height: math.unit(6, "feet"),
  19491. weight: math.unit(150, "lb"),
  19492. name: "Front",
  19493. image: {
  19494. source: "./media/characters/hipster/front.svg",
  19495. extra: 1312 / 1209,
  19496. bottom: 0.025
  19497. }
  19498. },
  19499. back: {
  19500. height: math.unit(6, "feet"),
  19501. weight: math.unit(150, "lb"),
  19502. name: "Back",
  19503. image: {
  19504. source: "./media/characters/hipster/back.svg",
  19505. extra: 1281 / 1196,
  19506. bottom: 0.01
  19507. }
  19508. },
  19509. },
  19510. [
  19511. {
  19512. name: "Micro",
  19513. height: math.unit(1, "mm")
  19514. },
  19515. {
  19516. name: "Normal",
  19517. height: math.unit(4, "inches"),
  19518. default: true
  19519. },
  19520. {
  19521. name: "Macro",
  19522. height: math.unit(500, "feet")
  19523. },
  19524. {
  19525. name: "Megamacro",
  19526. height: math.unit(1000, "miles")
  19527. },
  19528. ]
  19529. ))
  19530. characterMakers.push(() => makeCharacter(
  19531. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19532. {
  19533. front: {
  19534. height: math.unit(6, "feet"),
  19535. weight: math.unit(150, "lb"),
  19536. name: "Front",
  19537. image: {
  19538. source: "./media/characters/tendirmuldr/front.svg",
  19539. extra: 1878 / 1772,
  19540. bottom: 0.015
  19541. }
  19542. },
  19543. },
  19544. [
  19545. {
  19546. name: "Megamacro",
  19547. height: math.unit(1500, "miles"),
  19548. default: true
  19549. },
  19550. ]
  19551. ))
  19552. characterMakers.push(() => makeCharacter(
  19553. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19554. {
  19555. front: {
  19556. height: math.unit(14, "feet"),
  19557. weight: math.unit(12000, "lb"),
  19558. name: "Front",
  19559. image: {
  19560. source: "./media/characters/mort/front.svg",
  19561. extra: 365 / 318,
  19562. bottom: 0.01
  19563. }
  19564. },
  19565. side: {
  19566. height: math.unit(14, "feet"),
  19567. weight: math.unit(12000, "lb"),
  19568. name: "Side",
  19569. image: {
  19570. source: "./media/characters/mort/side.svg",
  19571. extra: 365 / 318,
  19572. bottom: 0.052
  19573. },
  19574. default: true
  19575. },
  19576. back: {
  19577. height: math.unit(14, "feet"),
  19578. weight: math.unit(12000, "lb"),
  19579. name: "Back",
  19580. image: {
  19581. source: "./media/characters/mort/back.svg",
  19582. extra: 371 / 332,
  19583. bottom: 0.18
  19584. }
  19585. },
  19586. },
  19587. [
  19588. {
  19589. name: "Normal",
  19590. height: math.unit(14, "feet"),
  19591. default: true
  19592. },
  19593. ]
  19594. ))
  19595. characterMakers.push(() => makeCharacter(
  19596. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19597. {
  19598. front: {
  19599. height: math.unit(8, "feet"),
  19600. weight: math.unit(1, "ton"),
  19601. name: "Front",
  19602. image: {
  19603. source: "./media/characters/lycoa/front.svg",
  19604. extra: 1875 / 1789,
  19605. bottom: 0.022
  19606. }
  19607. },
  19608. back: {
  19609. height: math.unit(8, "feet"),
  19610. weight: math.unit(1, "ton"),
  19611. name: "Back",
  19612. image: {
  19613. source: "./media/characters/lycoa/back.svg",
  19614. extra: 1835 / 1781,
  19615. bottom: 0.03
  19616. }
  19617. },
  19618. head: {
  19619. height: math.unit(2.1, "feet"),
  19620. name: "Head",
  19621. image: {
  19622. source: "./media/characters/lycoa/head.svg"
  19623. }
  19624. },
  19625. tailmaw: {
  19626. height: math.unit(1.9, "feet"),
  19627. name: "Tailmaw",
  19628. image: {
  19629. source: "./media/characters/lycoa/tailmaw.svg"
  19630. }
  19631. },
  19632. tentacles: {
  19633. height: math.unit(2.1, "feet"),
  19634. name: "Tentacles",
  19635. image: {
  19636. source: "./media/characters/lycoa/tentacles.svg"
  19637. }
  19638. },
  19639. dick: {
  19640. height: math.unit(1.73, "feet"),
  19641. name: "Dick",
  19642. image: {
  19643. source: "./media/characters/lycoa/dick.svg"
  19644. }
  19645. },
  19646. },
  19647. [
  19648. {
  19649. name: "Normal",
  19650. height: math.unit(8, "feet"),
  19651. default: true
  19652. },
  19653. {
  19654. name: "Macro",
  19655. height: math.unit(30, "feet")
  19656. },
  19657. ]
  19658. ))
  19659. characterMakers.push(() => makeCharacter(
  19660. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19661. {
  19662. front: {
  19663. height: math.unit(4 + 2 / 12, "feet"),
  19664. weight: math.unit(70, "lb"),
  19665. name: "Front",
  19666. image: {
  19667. source: "./media/characters/naldara/front.svg",
  19668. extra: 841 / 720,
  19669. bottom: 0.04
  19670. }
  19671. },
  19672. naga: {
  19673. height: math.unit(23, "feet"),
  19674. weight: math.unit(15000, "kg"),
  19675. name: "Naga",
  19676. image: {
  19677. source: "./media/characters/naldara/naga.svg",
  19678. extra: 3290 / 2959,
  19679. bottom: 124 / 3432
  19680. }
  19681. },
  19682. },
  19683. [
  19684. {
  19685. name: "Normal",
  19686. height: math.unit(4 + 2 / 12, "feet"),
  19687. default: true
  19688. },
  19689. ]
  19690. ))
  19691. characterMakers.push(() => makeCharacter(
  19692. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19693. {
  19694. front: {
  19695. height: math.unit(13 + 7 / 12, "feet"),
  19696. weight: math.unit(1500, "lb"),
  19697. name: "Front",
  19698. image: {
  19699. source: "./media/characters/briar/front.svg",
  19700. extra: 626 / 596,
  19701. bottom: 0.08
  19702. }
  19703. },
  19704. },
  19705. [
  19706. {
  19707. name: "Normal",
  19708. height: math.unit(13 + 7 / 12, "feet"),
  19709. default: true
  19710. },
  19711. ]
  19712. ))
  19713. characterMakers.push(() => makeCharacter(
  19714. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19715. {
  19716. side: {
  19717. height: math.unit(10, "feet"),
  19718. weight: math.unit(500, "lb"),
  19719. name: "Side",
  19720. image: {
  19721. source: "./media/characters/vanguard/side.svg",
  19722. extra: 502 / 425,
  19723. bottom: 0.087
  19724. }
  19725. },
  19726. },
  19727. [
  19728. {
  19729. name: "Normal",
  19730. height: math.unit(10, "feet"),
  19731. default: true
  19732. },
  19733. ]
  19734. ))
  19735. characterMakers.push(() => makeCharacter(
  19736. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19737. {
  19738. front: {
  19739. height: math.unit(7.5, "feet"),
  19740. weight: math.unit(2, "lb"),
  19741. name: "Front",
  19742. image: {
  19743. source: "./media/characters/artemis/front.svg",
  19744. extra: 1192 / 1075,
  19745. bottom: 0.07
  19746. }
  19747. },
  19748. frontNsfw: {
  19749. height: math.unit(7.5, "feet"),
  19750. weight: math.unit(2, "lb"),
  19751. name: "Front (NSFW)",
  19752. image: {
  19753. source: "./media/characters/artemis/front-nsfw.svg",
  19754. extra: 1192 / 1075,
  19755. bottom: 0.07
  19756. }
  19757. },
  19758. frontNsfwer: {
  19759. height: math.unit(7.5, "feet"),
  19760. weight: math.unit(2, "lb"),
  19761. name: "Front (NSFW-er)",
  19762. image: {
  19763. source: "./media/characters/artemis/front-nsfwer.svg",
  19764. extra: 1192 / 1075,
  19765. bottom: 0.07
  19766. }
  19767. },
  19768. side: {
  19769. height: math.unit(7.5, "feet"),
  19770. weight: math.unit(2, "lb"),
  19771. name: "Side",
  19772. image: {
  19773. source: "./media/characters/artemis/side.svg",
  19774. extra: 1192 / 1075,
  19775. bottom: 0.07
  19776. }
  19777. },
  19778. sideNsfw: {
  19779. height: math.unit(7.5, "feet"),
  19780. weight: math.unit(2, "lb"),
  19781. name: "Side (NSFW)",
  19782. image: {
  19783. source: "./media/characters/artemis/side-nsfw.svg",
  19784. extra: 1192 / 1075,
  19785. bottom: 0.07
  19786. }
  19787. },
  19788. sideNsfwer: {
  19789. height: math.unit(7.5, "feet"),
  19790. weight: math.unit(2, "lb"),
  19791. name: "Side (NSFW-er)",
  19792. image: {
  19793. source: "./media/characters/artemis/side-nsfwer.svg",
  19794. extra: 1192 / 1075,
  19795. bottom: 0.07
  19796. }
  19797. },
  19798. maw: {
  19799. height: math.unit(1.1, "feet"),
  19800. name: "Maw",
  19801. image: {
  19802. source: "./media/characters/artemis/maw.svg"
  19803. }
  19804. },
  19805. stomach: {
  19806. height: math.unit(0.95, "feet"),
  19807. name: "Stomach",
  19808. image: {
  19809. source: "./media/characters/artemis/stomach.svg"
  19810. }
  19811. },
  19812. dickCanine: {
  19813. height: math.unit(1, "feet"),
  19814. name: "Dick (Canine)",
  19815. image: {
  19816. source: "./media/characters/artemis/dick-canine.svg"
  19817. }
  19818. },
  19819. dickEquine: {
  19820. height: math.unit(0.85, "feet"),
  19821. name: "Dick (Equine)",
  19822. image: {
  19823. source: "./media/characters/artemis/dick-equine.svg"
  19824. }
  19825. },
  19826. dickExotic: {
  19827. height: math.unit(0.85, "feet"),
  19828. name: "Dick (Exotic)",
  19829. image: {
  19830. source: "./media/characters/artemis/dick-exotic.svg"
  19831. }
  19832. },
  19833. },
  19834. [
  19835. {
  19836. name: "Normal",
  19837. height: math.unit(7.5, "feet"),
  19838. default: true
  19839. },
  19840. {
  19841. name: "Enlarged",
  19842. height: math.unit(12, "feet")
  19843. },
  19844. ]
  19845. ))
  19846. characterMakers.push(() => makeCharacter(
  19847. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19848. {
  19849. front: {
  19850. height: math.unit(5 + 3 / 12, "feet"),
  19851. weight: math.unit(160, "lb"),
  19852. name: "Front",
  19853. image: {
  19854. source: "./media/characters/kira/front.svg",
  19855. extra: 906 / 786,
  19856. bottom: 0.01
  19857. }
  19858. },
  19859. back: {
  19860. height: math.unit(5 + 3 / 12, "feet"),
  19861. weight: math.unit(160, "lb"),
  19862. name: "Back",
  19863. image: {
  19864. source: "./media/characters/kira/back.svg",
  19865. extra: 882 / 757,
  19866. bottom: 0.005
  19867. }
  19868. },
  19869. frontDressed: {
  19870. height: math.unit(5 + 3 / 12, "feet"),
  19871. weight: math.unit(160, "lb"),
  19872. name: "Front (Dressed)",
  19873. image: {
  19874. source: "./media/characters/kira/front-dressed.svg",
  19875. extra: 906 / 786,
  19876. bottom: 0.01
  19877. }
  19878. },
  19879. beans: {
  19880. height: math.unit(0.92, "feet"),
  19881. name: "Beans",
  19882. image: {
  19883. source: "./media/characters/kira/beans.svg"
  19884. }
  19885. },
  19886. },
  19887. [
  19888. {
  19889. name: "Normal",
  19890. height: math.unit(5 + 3 / 12, "feet"),
  19891. default: true
  19892. },
  19893. ]
  19894. ))
  19895. characterMakers.push(() => makeCharacter(
  19896. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19897. {
  19898. front: {
  19899. height: math.unit(5 + 4 / 12, "feet"),
  19900. weight: math.unit(145, "lb"),
  19901. name: "Front",
  19902. image: {
  19903. source: "./media/characters/scramble/front.svg",
  19904. extra: 763 / 727,
  19905. bottom: 0.05
  19906. }
  19907. },
  19908. back: {
  19909. height: math.unit(5 + 4 / 12, "feet"),
  19910. weight: math.unit(145, "lb"),
  19911. name: "Back",
  19912. image: {
  19913. source: "./media/characters/scramble/back.svg",
  19914. extra: 826 / 737,
  19915. bottom: 0.002
  19916. }
  19917. },
  19918. },
  19919. [
  19920. {
  19921. name: "Normal",
  19922. height: math.unit(5 + 4 / 12, "feet"),
  19923. default: true
  19924. },
  19925. ]
  19926. ))
  19927. characterMakers.push(() => makeCharacter(
  19928. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19929. {
  19930. side: {
  19931. height: math.unit(6 + 2 / 12, "feet"),
  19932. weight: math.unit(190, "lb"),
  19933. name: "Side",
  19934. image: {
  19935. source: "./media/characters/biscuit/side.svg",
  19936. extra: 858 / 791,
  19937. bottom: 0.044
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Normal",
  19944. height: math.unit(6 + 2 / 12, "feet"),
  19945. default: true
  19946. },
  19947. ]
  19948. ))
  19949. characterMakers.push(() => makeCharacter(
  19950. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19951. {
  19952. front: {
  19953. height: math.unit(5 + 2 / 12, "feet"),
  19954. weight: math.unit(120, "lb"),
  19955. name: "Front",
  19956. image: {
  19957. source: "./media/characters/poffin/front.svg",
  19958. extra: 786 / 680,
  19959. bottom: 0.005
  19960. }
  19961. },
  19962. },
  19963. [
  19964. {
  19965. name: "Normal",
  19966. height: math.unit(5 + 2 / 12, "feet"),
  19967. default: true
  19968. },
  19969. ]
  19970. ))
  19971. characterMakers.push(() => makeCharacter(
  19972. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19973. {
  19974. front: {
  19975. height: math.unit(6 + 3 / 12, "feet"),
  19976. weight: math.unit(519, "lb"),
  19977. name: "Front",
  19978. image: {
  19979. source: "./media/characters/dhari/front.svg",
  19980. extra: 1048 / 946,
  19981. bottom: 0.015
  19982. }
  19983. },
  19984. back: {
  19985. height: math.unit(6 + 3 / 12, "feet"),
  19986. weight: math.unit(519, "lb"),
  19987. name: "Back",
  19988. image: {
  19989. source: "./media/characters/dhari/back.svg",
  19990. extra: 1048 / 931,
  19991. bottom: 0.005
  19992. }
  19993. },
  19994. frontDressed: {
  19995. height: math.unit(6 + 3 / 12, "feet"),
  19996. weight: math.unit(519, "lb"),
  19997. name: "Front (Dressed)",
  19998. image: {
  19999. source: "./media/characters/dhari/front-dressed.svg",
  20000. extra: 1713 / 1546,
  20001. bottom: 0.02
  20002. }
  20003. },
  20004. backDressed: {
  20005. height: math.unit(6 + 3 / 12, "feet"),
  20006. weight: math.unit(519, "lb"),
  20007. name: "Back (Dressed)",
  20008. image: {
  20009. source: "./media/characters/dhari/back-dressed.svg",
  20010. extra: 1699 / 1537,
  20011. bottom: 0.01
  20012. }
  20013. },
  20014. maw: {
  20015. height: math.unit(0.95, "feet"),
  20016. name: "Maw",
  20017. image: {
  20018. source: "./media/characters/dhari/maw.svg"
  20019. }
  20020. },
  20021. wereFront: {
  20022. height: math.unit(12 + 8 / 12, "feet"),
  20023. weight: math.unit(4000, "lb"),
  20024. name: "Front (Were)",
  20025. image: {
  20026. source: "./media/characters/dhari/were-front.svg",
  20027. extra: 1065 / 969,
  20028. bottom: 0.015
  20029. }
  20030. },
  20031. wereBack: {
  20032. height: math.unit(12 + 8 / 12, "feet"),
  20033. weight: math.unit(4000, "lb"),
  20034. name: "Back (Were)",
  20035. image: {
  20036. source: "./media/characters/dhari/were-back.svg",
  20037. extra: 1065 / 969,
  20038. bottom: 0.012
  20039. }
  20040. },
  20041. wereMaw: {
  20042. height: math.unit(0.625, "meters"),
  20043. name: "Maw (Were)",
  20044. image: {
  20045. source: "./media/characters/dhari/were-maw.svg"
  20046. }
  20047. },
  20048. },
  20049. [
  20050. {
  20051. name: "Normal",
  20052. height: math.unit(6 + 3 / 12, "feet"),
  20053. default: true
  20054. },
  20055. ]
  20056. ))
  20057. characterMakers.push(() => makeCharacter(
  20058. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20059. {
  20060. anthro: {
  20061. height: math.unit(5 + 7 / 12, "feet"),
  20062. weight: math.unit(175, "lb"),
  20063. name: "Anthro",
  20064. image: {
  20065. source: "./media/characters/rena-dyne/anthro.svg",
  20066. extra: 1849 / 1785,
  20067. bottom: 0.005
  20068. }
  20069. },
  20070. taur: {
  20071. height: math.unit(15 + 6 / 12, "feet"),
  20072. weight: math.unit(8000, "lb"),
  20073. name: "Taur",
  20074. image: {
  20075. source: "./media/characters/rena-dyne/taur.svg",
  20076. extra: 2315 / 2234,
  20077. bottom: 0.033
  20078. }
  20079. },
  20080. },
  20081. [
  20082. {
  20083. name: "Normal",
  20084. height: math.unit(5 + 7 / 12, "feet"),
  20085. default: true
  20086. },
  20087. ]
  20088. ))
  20089. characterMakers.push(() => makeCharacter(
  20090. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20091. {
  20092. front: {
  20093. height: math.unit(8, "feet"),
  20094. weight: math.unit(600, "lb"),
  20095. name: "Front",
  20096. image: {
  20097. source: "./media/characters/weremeep/front.svg",
  20098. extra: 967 / 862,
  20099. bottom: 0.01
  20100. }
  20101. },
  20102. },
  20103. [
  20104. {
  20105. name: "Normal",
  20106. height: math.unit(8, "feet"),
  20107. default: true
  20108. },
  20109. {
  20110. name: "Lorg",
  20111. height: math.unit(12, "feet")
  20112. },
  20113. {
  20114. name: "Oh Lawd She Comin'",
  20115. height: math.unit(20, "feet")
  20116. },
  20117. ]
  20118. ))
  20119. characterMakers.push(() => makeCharacter(
  20120. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20121. {
  20122. front: {
  20123. height: math.unit(4, "feet"),
  20124. weight: math.unit(90, "lb"),
  20125. name: "Front",
  20126. image: {
  20127. source: "./media/characters/reza/front.svg",
  20128. extra: 1183 / 1111,
  20129. bottom: 0.017
  20130. }
  20131. },
  20132. back: {
  20133. height: math.unit(4, "feet"),
  20134. weight: math.unit(90, "lb"),
  20135. name: "Back",
  20136. image: {
  20137. source: "./media/characters/reza/back.svg",
  20138. extra: 1183 / 1111,
  20139. bottom: 0.01
  20140. }
  20141. },
  20142. drake: {
  20143. height: math.unit(30, "feet"),
  20144. weight: math.unit(246960, "lb"),
  20145. name: "Drake",
  20146. image: {
  20147. source: "./media/characters/reza/drake.svg",
  20148. extra: 2350 / 2024,
  20149. bottom: 60.7 / 2403
  20150. }
  20151. },
  20152. },
  20153. [
  20154. {
  20155. name: "Normal",
  20156. height: math.unit(4, "feet"),
  20157. default: true
  20158. },
  20159. ]
  20160. ))
  20161. characterMakers.push(() => makeCharacter(
  20162. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20163. {
  20164. side: {
  20165. height: math.unit(15, "feet"),
  20166. weight: math.unit(14, "tons"),
  20167. name: "Side",
  20168. image: {
  20169. source: "./media/characters/athea/side.svg",
  20170. extra: 960 / 540,
  20171. bottom: 0.003
  20172. }
  20173. },
  20174. sitting: {
  20175. height: math.unit(6 * 2.85, "feet"),
  20176. weight: math.unit(14, "tons"),
  20177. name: "Sitting",
  20178. image: {
  20179. source: "./media/characters/athea/sitting.svg",
  20180. extra: 621 / 581,
  20181. bottom: 0.075
  20182. }
  20183. },
  20184. maw: {
  20185. height: math.unit(7.59498031496063, "feet"),
  20186. name: "Maw",
  20187. image: {
  20188. source: "./media/characters/athea/maw.svg"
  20189. }
  20190. },
  20191. },
  20192. [
  20193. {
  20194. name: "Lap Cat",
  20195. height: math.unit(2.5, "feet")
  20196. },
  20197. {
  20198. name: "Minimacro",
  20199. height: math.unit(15, "feet"),
  20200. default: true
  20201. },
  20202. {
  20203. name: "Macro",
  20204. height: math.unit(120, "feet")
  20205. },
  20206. {
  20207. name: "Macro+",
  20208. height: math.unit(640, "feet")
  20209. },
  20210. {
  20211. name: "Colossus",
  20212. height: math.unit(2.2, "miles")
  20213. },
  20214. ]
  20215. ))
  20216. characterMakers.push(() => makeCharacter(
  20217. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20218. {
  20219. front: {
  20220. height: math.unit(8 + 8 / 12, "feet"),
  20221. weight: math.unit(130, "kg"),
  20222. name: "Front",
  20223. image: {
  20224. source: "./media/characters/seroko/front.svg",
  20225. extra: 1385 / 1280,
  20226. bottom: 0.025
  20227. }
  20228. },
  20229. back: {
  20230. height: math.unit(8 + 8 / 12, "feet"),
  20231. weight: math.unit(130, "kg"),
  20232. name: "Back",
  20233. image: {
  20234. source: "./media/characters/seroko/back.svg",
  20235. extra: 1369 / 1238,
  20236. bottom: 0.018
  20237. }
  20238. },
  20239. frontDressed: {
  20240. height: math.unit(8 + 8 / 12, "feet"),
  20241. weight: math.unit(130, "kg"),
  20242. name: "Front (Dressed)",
  20243. image: {
  20244. source: "./media/characters/seroko/front-dressed.svg",
  20245. extra: 1366 / 1275,
  20246. bottom: 0.03
  20247. }
  20248. },
  20249. },
  20250. [
  20251. {
  20252. name: "Normal",
  20253. height: math.unit(8 + 8 / 12, "feet"),
  20254. default: true
  20255. },
  20256. ]
  20257. ))
  20258. characterMakers.push(() => makeCharacter(
  20259. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20260. {
  20261. front: {
  20262. height: math.unit(5.5, "feet"),
  20263. weight: math.unit(160, "lb"),
  20264. name: "Front",
  20265. image: {
  20266. source: "./media/characters/quatzi/front.svg",
  20267. extra: 2346 / 2242,
  20268. bottom: 0.015
  20269. }
  20270. },
  20271. },
  20272. [
  20273. {
  20274. name: "Normal",
  20275. height: math.unit(5.5, "feet"),
  20276. default: true
  20277. },
  20278. {
  20279. name: "Big",
  20280. height: math.unit(7.7, "feet")
  20281. },
  20282. ]
  20283. ))
  20284. characterMakers.push(() => makeCharacter(
  20285. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20286. {
  20287. front: {
  20288. height: math.unit(5 + 11 / 12, "feet"),
  20289. weight: math.unit(180, "lb"),
  20290. name: "Front",
  20291. image: {
  20292. source: "./media/characters/sen/front.svg",
  20293. extra: 1321 / 1254,
  20294. bottom: 0.015
  20295. }
  20296. },
  20297. side: {
  20298. height: math.unit(5 + 11 / 12, "feet"),
  20299. weight: math.unit(180, "lb"),
  20300. name: "Side",
  20301. image: {
  20302. source: "./media/characters/sen/side.svg",
  20303. extra: 1321 / 1254,
  20304. bottom: 0.007
  20305. }
  20306. },
  20307. back: {
  20308. height: math.unit(5 + 11 / 12, "feet"),
  20309. weight: math.unit(180, "lb"),
  20310. name: "Back",
  20311. image: {
  20312. source: "./media/characters/sen/back.svg",
  20313. extra: 1321 / 1254
  20314. }
  20315. },
  20316. },
  20317. [
  20318. {
  20319. name: "Normal",
  20320. height: math.unit(5 + 11 / 12, "feet"),
  20321. default: true
  20322. },
  20323. ]
  20324. ))
  20325. characterMakers.push(() => makeCharacter(
  20326. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20327. {
  20328. front: {
  20329. height: math.unit(166.6, "cm"),
  20330. weight: math.unit(66.6, "kg"),
  20331. name: "Front",
  20332. image: {
  20333. source: "./media/characters/fruity/front.svg",
  20334. extra: 1510 / 1386,
  20335. bottom: 0.04
  20336. }
  20337. },
  20338. back: {
  20339. height: math.unit(166.6, "cm"),
  20340. weight: math.unit(66.6, "lb"),
  20341. name: "Back",
  20342. image: {
  20343. source: "./media/characters/fruity/back.svg",
  20344. extra: 1563 / 1435,
  20345. bottom: 0.005
  20346. }
  20347. },
  20348. },
  20349. [
  20350. {
  20351. name: "Normal",
  20352. height: math.unit(166.6, "cm"),
  20353. default: true
  20354. },
  20355. {
  20356. name: "Demonic",
  20357. height: math.unit(166.6, "feet")
  20358. },
  20359. ]
  20360. ))
  20361. characterMakers.push(() => makeCharacter(
  20362. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20363. {
  20364. side: {
  20365. height: math.unit(10, "feet"),
  20366. weight: math.unit(500, "lb"),
  20367. name: "Side",
  20368. image: {
  20369. source: "./media/characters/zost/side.svg",
  20370. extra: 966 / 880,
  20371. bottom: 0.075
  20372. }
  20373. },
  20374. mawFront: {
  20375. height: math.unit(1.08, "meters"),
  20376. name: "Maw (Front)",
  20377. image: {
  20378. source: "./media/characters/zost/maw-front.svg"
  20379. }
  20380. },
  20381. mawSide: {
  20382. height: math.unit(2.66, "feet"),
  20383. name: "Maw (Side)",
  20384. image: {
  20385. source: "./media/characters/zost/maw-side.svg"
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(10, "feet"),
  20393. default: true
  20394. },
  20395. ]
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20399. {
  20400. front: {
  20401. height: math.unit(5 + 4 / 12, "feet"),
  20402. weight: math.unit(120, "lb"),
  20403. name: "Front",
  20404. image: {
  20405. source: "./media/characters/luci/front.svg",
  20406. extra: 1985 / 1884,
  20407. bottom: 0.04
  20408. }
  20409. },
  20410. back: {
  20411. height: math.unit(5 + 4 / 12, "feet"),
  20412. weight: math.unit(120, "lb"),
  20413. name: "Back",
  20414. image: {
  20415. source: "./media/characters/luci/back.svg",
  20416. extra: 1892 / 1791,
  20417. bottom: 0.002
  20418. }
  20419. },
  20420. },
  20421. [
  20422. {
  20423. name: "Normal",
  20424. height: math.unit(5 + 4 / 12, "feet"),
  20425. default: true
  20426. },
  20427. ]
  20428. ))
  20429. characterMakers.push(() => makeCharacter(
  20430. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20431. {
  20432. front: {
  20433. height: math.unit(1500, "feet"),
  20434. weight: math.unit(3.8e6, "tons"),
  20435. name: "Front",
  20436. image: {
  20437. source: "./media/characters/2th/front.svg",
  20438. extra: 3489 / 3350,
  20439. bottom: 0.1
  20440. }
  20441. },
  20442. foot: {
  20443. height: math.unit(461, "feet"),
  20444. name: "Foot",
  20445. image: {
  20446. source: "./media/characters/2th/foot.svg"
  20447. }
  20448. },
  20449. },
  20450. [
  20451. {
  20452. name: "\"Micro\"",
  20453. height: math.unit(15 + 7 / 12, "feet")
  20454. },
  20455. {
  20456. name: "Normal",
  20457. height: math.unit(1500, "feet"),
  20458. default: true
  20459. },
  20460. {
  20461. name: "Macro",
  20462. height: math.unit(5000, "feet")
  20463. },
  20464. {
  20465. name: "Megamacro",
  20466. height: math.unit(15, "miles")
  20467. },
  20468. {
  20469. name: "Gigamacro",
  20470. height: math.unit(4000, "miles")
  20471. },
  20472. {
  20473. name: "Galactic",
  20474. height: math.unit(50, "AU")
  20475. },
  20476. ]
  20477. ))
  20478. characterMakers.push(() => makeCharacter(
  20479. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20480. {
  20481. front: {
  20482. height: math.unit(5 + 6 / 12, "feet"),
  20483. weight: math.unit(220, "lb"),
  20484. name: "Front",
  20485. image: {
  20486. source: "./media/characters/amethyst/front.svg",
  20487. extra: 2078 / 2040,
  20488. bottom: 0.045
  20489. }
  20490. },
  20491. back: {
  20492. height: math.unit(5 + 6 / 12, "feet"),
  20493. weight: math.unit(220, "lb"),
  20494. name: "Back",
  20495. image: {
  20496. source: "./media/characters/amethyst/back.svg",
  20497. extra: 2021 / 1989,
  20498. bottom: 0.02
  20499. }
  20500. },
  20501. },
  20502. [
  20503. {
  20504. name: "Normal",
  20505. height: math.unit(5 + 6 / 12, "feet"),
  20506. default: true
  20507. },
  20508. ]
  20509. ))
  20510. characterMakers.push(() => makeCharacter(
  20511. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20512. {
  20513. front: {
  20514. height: math.unit(4 + 11 / 12, "feet"),
  20515. weight: math.unit(120, "lb"),
  20516. name: "Front",
  20517. image: {
  20518. source: "./media/characters/yumi-akiyama/front.svg",
  20519. extra: 1327 / 1235,
  20520. bottom: 0.02
  20521. }
  20522. },
  20523. back: {
  20524. height: math.unit(4 + 11 / 12, "feet"),
  20525. weight: math.unit(120, "lb"),
  20526. name: "Back",
  20527. image: {
  20528. source: "./media/characters/yumi-akiyama/back.svg",
  20529. extra: 1287 / 1245,
  20530. bottom: 0.002
  20531. }
  20532. },
  20533. },
  20534. [
  20535. {
  20536. name: "Galactic",
  20537. height: math.unit(50, "galaxies"),
  20538. default: true
  20539. },
  20540. {
  20541. name: "Universal",
  20542. height: math.unit(100, "universes")
  20543. },
  20544. ]
  20545. ))
  20546. characterMakers.push(() => makeCharacter(
  20547. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20548. {
  20549. front: {
  20550. height: math.unit(8, "feet"),
  20551. weight: math.unit(500, "lb"),
  20552. name: "Front",
  20553. image: {
  20554. source: "./media/characters/rifter-yrmori/front.svg",
  20555. extra: 1180 / 1125,
  20556. bottom: 0.02
  20557. }
  20558. },
  20559. back: {
  20560. height: math.unit(8, "feet"),
  20561. weight: math.unit(500, "lb"),
  20562. name: "Back",
  20563. image: {
  20564. source: "./media/characters/rifter-yrmori/back.svg",
  20565. extra: 1190 / 1145,
  20566. bottom: 0.001
  20567. }
  20568. },
  20569. wings: {
  20570. height: math.unit(7.75, "feet"),
  20571. weight: math.unit(500, "lb"),
  20572. name: "Wings",
  20573. image: {
  20574. source: "./media/characters/rifter-yrmori/wings.svg",
  20575. extra: 1357 / 1285
  20576. }
  20577. },
  20578. maw: {
  20579. height: math.unit(0.8, "feet"),
  20580. name: "Maw",
  20581. image: {
  20582. source: "./media/characters/rifter-yrmori/maw.svg"
  20583. }
  20584. },
  20585. mawfront: {
  20586. height: math.unit(1.45, "feet"),
  20587. name: "Maw (Front)",
  20588. image: {
  20589. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20590. }
  20591. },
  20592. },
  20593. [
  20594. {
  20595. name: "Normal",
  20596. height: math.unit(8, "feet"),
  20597. default: true
  20598. },
  20599. {
  20600. name: "Macro",
  20601. height: math.unit(42, "meters")
  20602. },
  20603. ]
  20604. ))
  20605. characterMakers.push(() => makeCharacter(
  20606. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20607. {
  20608. were: {
  20609. height: math.unit(25 + 6 / 12, "feet"),
  20610. weight: math.unit(10000, "lb"),
  20611. name: "Were",
  20612. image: {
  20613. source: "./media/characters/tahajin/were.svg",
  20614. extra: 801 / 770,
  20615. bottom: 0.042
  20616. }
  20617. },
  20618. aquatic: {
  20619. height: math.unit(6 + 4 / 12, "feet"),
  20620. weight: math.unit(160, "lb"),
  20621. name: "Aquatic",
  20622. image: {
  20623. source: "./media/characters/tahajin/aquatic.svg",
  20624. extra: 572 / 542,
  20625. bottom: 0.04
  20626. }
  20627. },
  20628. chow: {
  20629. height: math.unit(8 + 11 / 12, "feet"),
  20630. weight: math.unit(450, "lb"),
  20631. name: "Chow",
  20632. image: {
  20633. source: "./media/characters/tahajin/chow.svg",
  20634. extra: 660 / 640,
  20635. bottom: 0.015
  20636. }
  20637. },
  20638. demiNaga: {
  20639. height: math.unit(6 + 8 / 12, "feet"),
  20640. weight: math.unit(300, "lb"),
  20641. name: "Demi Naga",
  20642. image: {
  20643. source: "./media/characters/tahajin/demi-naga.svg",
  20644. extra: 643 / 615,
  20645. bottom: 0.1
  20646. }
  20647. },
  20648. data: {
  20649. height: math.unit(5, "inches"),
  20650. weight: math.unit(0.1, "lb"),
  20651. name: "Data",
  20652. image: {
  20653. source: "./media/characters/tahajin/data.svg"
  20654. }
  20655. },
  20656. fluu: {
  20657. height: math.unit(5 + 7 / 12, "feet"),
  20658. weight: math.unit(140, "lb"),
  20659. name: "Fluu",
  20660. image: {
  20661. source: "./media/characters/tahajin/fluu.svg",
  20662. extra: 628 / 592,
  20663. bottom: 0.02
  20664. }
  20665. },
  20666. starWarrior: {
  20667. height: math.unit(4 + 5 / 12, "feet"),
  20668. weight: math.unit(50, "lb"),
  20669. name: "Star Warrior",
  20670. image: {
  20671. source: "./media/characters/tahajin/star-warrior.svg"
  20672. }
  20673. },
  20674. },
  20675. [
  20676. {
  20677. name: "Normal",
  20678. height: math.unit(25 + 6 / 12, "feet"),
  20679. default: true
  20680. },
  20681. ]
  20682. ))
  20683. characterMakers.push(() => makeCharacter(
  20684. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20685. {
  20686. front: {
  20687. height: math.unit(8, "feet"),
  20688. weight: math.unit(350, "lb"),
  20689. name: "Front",
  20690. image: {
  20691. source: "./media/characters/gabira/front.svg",
  20692. extra: 608 / 580,
  20693. bottom: 0.03
  20694. }
  20695. },
  20696. back: {
  20697. height: math.unit(8, "feet"),
  20698. weight: math.unit(350, "lb"),
  20699. name: "Back",
  20700. image: {
  20701. source: "./media/characters/gabira/back.svg",
  20702. extra: 608 / 580,
  20703. bottom: 0.03
  20704. }
  20705. },
  20706. },
  20707. [
  20708. {
  20709. name: "Normal",
  20710. height: math.unit(8, "feet"),
  20711. default: true
  20712. },
  20713. ]
  20714. ))
  20715. characterMakers.push(() => makeCharacter(
  20716. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20717. {
  20718. front: {
  20719. height: math.unit(5 + 3 / 12, "feet"),
  20720. weight: math.unit(137, "lb"),
  20721. name: "Front",
  20722. image: {
  20723. source: "./media/characters/sasha-katraine/front.svg",
  20724. bottom: 0.045
  20725. }
  20726. },
  20727. },
  20728. [
  20729. {
  20730. name: "Micro",
  20731. height: math.unit(5, "inches")
  20732. },
  20733. {
  20734. name: "Normal",
  20735. height: math.unit(5 + 3 / 12, "feet"),
  20736. default: true
  20737. },
  20738. ]
  20739. ))
  20740. characterMakers.push(() => makeCharacter(
  20741. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20742. {
  20743. side: {
  20744. height: math.unit(4, "inches"),
  20745. weight: math.unit(200, "grams"),
  20746. name: "Side",
  20747. image: {
  20748. source: "./media/characters/der/side.svg",
  20749. extra: 719 / 400,
  20750. bottom: 30.6 / 749.9187
  20751. }
  20752. },
  20753. },
  20754. [
  20755. {
  20756. name: "Micro",
  20757. height: math.unit(4, "inches"),
  20758. default: true
  20759. },
  20760. ]
  20761. ))
  20762. characterMakers.push(() => makeCharacter(
  20763. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20764. {
  20765. side: {
  20766. height: math.unit(30, "meters"),
  20767. weight: math.unit(700, "tonnes"),
  20768. name: "Side",
  20769. image: {
  20770. source: "./media/characters/fixerdragon/side.svg",
  20771. extra: (1293.0514 - 116.03) / 1106.86,
  20772. bottom: 116.03 / 1293.0514
  20773. }
  20774. },
  20775. },
  20776. [
  20777. {
  20778. name: "Planck",
  20779. height: math.unit(1.6e-35, "meters")
  20780. },
  20781. {
  20782. name: "Micro",
  20783. height: math.unit(0.4, "meters")
  20784. },
  20785. {
  20786. name: "Normal",
  20787. height: math.unit(30, "meters"),
  20788. default: true
  20789. },
  20790. {
  20791. name: "Megamacro",
  20792. height: math.unit(1.2, "megameters")
  20793. },
  20794. {
  20795. name: "Teramacro",
  20796. height: math.unit(130, "terameters")
  20797. },
  20798. {
  20799. name: "Yottamacro",
  20800. height: math.unit(6200, "yottameters")
  20801. },
  20802. ]
  20803. ));
  20804. characterMakers.push(() => makeCharacter(
  20805. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20806. {
  20807. front: {
  20808. height: math.unit(8, "feet"),
  20809. weight: math.unit(250, "lb"),
  20810. name: "Front",
  20811. image: {
  20812. source: "./media/characters/kite/front.svg",
  20813. extra: 2796 / 2659,
  20814. bottom: 0.002
  20815. }
  20816. },
  20817. },
  20818. [
  20819. {
  20820. name: "Normal",
  20821. height: math.unit(8, "feet"),
  20822. default: true
  20823. },
  20824. {
  20825. name: "Macro",
  20826. height: math.unit(360, "feet")
  20827. },
  20828. {
  20829. name: "Megamacro",
  20830. height: math.unit(1500, "feet")
  20831. },
  20832. ]
  20833. ))
  20834. characterMakers.push(() => makeCharacter(
  20835. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20836. {
  20837. front: {
  20838. height: math.unit(5 + 10 / 12, "feet"),
  20839. weight: math.unit(150, "lb"),
  20840. name: "Front",
  20841. image: {
  20842. source: "./media/characters/poojawa-vynar/front.svg",
  20843. extra: (1506.1547 - 55) / 1356.6,
  20844. bottom: 55 / 1506.1547
  20845. }
  20846. },
  20847. frontTailless: {
  20848. height: math.unit(5 + 10 / 12, "feet"),
  20849. weight: math.unit(150, "lb"),
  20850. name: "Front (Tailless)",
  20851. image: {
  20852. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20853. extra: (1506.1547 - 55) / 1356.6,
  20854. bottom: 55 / 1506.1547
  20855. }
  20856. },
  20857. },
  20858. [
  20859. {
  20860. name: "Normal",
  20861. height: math.unit(5 + 10 / 12, "feet"),
  20862. default: true
  20863. },
  20864. ]
  20865. ))
  20866. characterMakers.push(() => makeCharacter(
  20867. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20868. {
  20869. front: {
  20870. height: math.unit(293, "meters"),
  20871. weight: math.unit(70400, "tons"),
  20872. name: "Front",
  20873. image: {
  20874. source: "./media/characters/violette/front.svg",
  20875. extra: 1227 / 1180,
  20876. bottom: 0.005
  20877. }
  20878. },
  20879. back: {
  20880. height: math.unit(293, "meters"),
  20881. weight: math.unit(70400, "tons"),
  20882. name: "Back",
  20883. image: {
  20884. source: "./media/characters/violette/back.svg",
  20885. extra: 1227 / 1180,
  20886. bottom: 0.005
  20887. }
  20888. },
  20889. },
  20890. [
  20891. {
  20892. name: "Macro",
  20893. height: math.unit(293, "meters"),
  20894. default: true
  20895. },
  20896. ]
  20897. ))
  20898. characterMakers.push(() => makeCharacter(
  20899. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20900. {
  20901. front: {
  20902. height: math.unit(1050, "feet"),
  20903. weight: math.unit(200000, "tons"),
  20904. name: "Front",
  20905. image: {
  20906. source: "./media/characters/alessandra/front.svg",
  20907. extra: 960 / 912,
  20908. bottom: 0.06
  20909. }
  20910. },
  20911. },
  20912. [
  20913. {
  20914. name: "Macro",
  20915. height: math.unit(1050, "feet")
  20916. },
  20917. {
  20918. name: "Macro+",
  20919. height: math.unit(900, "meters"),
  20920. default: true
  20921. },
  20922. ]
  20923. ))
  20924. characterMakers.push(() => makeCharacter(
  20925. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20926. {
  20927. front: {
  20928. height: math.unit(5, "feet"),
  20929. weight: math.unit(187, "lb"),
  20930. name: "Front",
  20931. image: {
  20932. source: "./media/characters/person/front.svg",
  20933. extra: 3087 / 2945,
  20934. bottom: 91 / 3181
  20935. }
  20936. },
  20937. },
  20938. [
  20939. {
  20940. name: "Micro",
  20941. height: math.unit(3, "inches")
  20942. },
  20943. {
  20944. name: "Normal",
  20945. height: math.unit(5, "feet"),
  20946. default: true
  20947. },
  20948. {
  20949. name: "Macro",
  20950. height: math.unit(90, "feet")
  20951. },
  20952. {
  20953. name: "Max Size",
  20954. height: math.unit(280, "feet")
  20955. },
  20956. ]
  20957. ))
  20958. characterMakers.push(() => makeCharacter(
  20959. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20960. {
  20961. front: {
  20962. height: math.unit(4.5, "meters"),
  20963. weight: math.unit(3200, "lb"),
  20964. name: "Front",
  20965. image: {
  20966. source: "./media/characters/ty/front.svg",
  20967. extra: 1038 / 960,
  20968. bottom: 31.156 / 1068
  20969. }
  20970. },
  20971. back: {
  20972. height: math.unit(4.5, "meters"),
  20973. weight: math.unit(3200, "lb"),
  20974. name: "Back",
  20975. image: {
  20976. source: "./media/characters/ty/back.svg",
  20977. extra: 1044 / 966,
  20978. bottom: 7.48 / 1049
  20979. }
  20980. },
  20981. },
  20982. [
  20983. {
  20984. name: "Normal",
  20985. height: math.unit(4.5, "meters"),
  20986. default: true
  20987. },
  20988. ]
  20989. ))
  20990. characterMakers.push(() => makeCharacter(
  20991. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20992. {
  20993. front: {
  20994. height: math.unit(5 + 4 / 12, "feet"),
  20995. weight: math.unit(115, "lb"),
  20996. name: "Front",
  20997. image: {
  20998. source: "./media/characters/rocky/front.svg",
  20999. extra: 1012 / 975,
  21000. bottom: 54 / 1066
  21001. }
  21002. },
  21003. },
  21004. [
  21005. {
  21006. name: "Normal",
  21007. height: math.unit(5 + 4 / 12, "feet"),
  21008. default: true
  21009. },
  21010. ]
  21011. ))
  21012. characterMakers.push(() => makeCharacter(
  21013. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21014. {
  21015. upright: {
  21016. height: math.unit(6, "meters"),
  21017. weight: math.unit(4000, "kg"),
  21018. name: "Upright",
  21019. image: {
  21020. source: "./media/characters/ruin/upright.svg",
  21021. extra: 668 / 661,
  21022. bottom: 42 / 799.8396
  21023. }
  21024. },
  21025. },
  21026. [
  21027. {
  21028. name: "Normal",
  21029. height: math.unit(6, "meters"),
  21030. default: true
  21031. },
  21032. ]
  21033. ))
  21034. characterMakers.push(() => makeCharacter(
  21035. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21036. {
  21037. front: {
  21038. height: math.unit(5, "feet"),
  21039. weight: math.unit(106, "lb"),
  21040. name: "Front",
  21041. image: {
  21042. source: "./media/characters/robin/front.svg",
  21043. extra: 862 / 799,
  21044. bottom: 42.4 / 914.8856
  21045. }
  21046. },
  21047. },
  21048. [
  21049. {
  21050. name: "Normal",
  21051. height: math.unit(5, "feet"),
  21052. default: true
  21053. },
  21054. ]
  21055. ))
  21056. characterMakers.push(() => makeCharacter(
  21057. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21058. {
  21059. side: {
  21060. height: math.unit(3, "feet"),
  21061. weight: math.unit(225, "lb"),
  21062. name: "Side",
  21063. image: {
  21064. source: "./media/characters/saian/side.svg",
  21065. extra: 566 / 356,
  21066. bottom: 79.7 / 643
  21067. }
  21068. },
  21069. maw: {
  21070. height: math.unit(2.85, "feet"),
  21071. name: "Maw",
  21072. image: {
  21073. source: "./media/characters/saian/maw.svg"
  21074. }
  21075. },
  21076. },
  21077. [
  21078. {
  21079. name: "Normal",
  21080. height: math.unit(3, "feet"),
  21081. default: true
  21082. },
  21083. ]
  21084. ))
  21085. characterMakers.push(() => makeCharacter(
  21086. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21087. {
  21088. side: {
  21089. height: math.unit(8, "feet"),
  21090. weight: math.unit(300, "lb"),
  21091. name: "Side",
  21092. image: {
  21093. source: "./media/characters/equus-silvermane/side.svg",
  21094. extra: 2176 / 2050,
  21095. bottom: 65.7 / 2245
  21096. }
  21097. },
  21098. front: {
  21099. height: math.unit(8, "feet"),
  21100. weight: math.unit(300, "lb"),
  21101. name: "Front",
  21102. image: {
  21103. source: "./media/characters/equus-silvermane/front.svg",
  21104. extra: 4633 / 4400,
  21105. bottom: 71.3 / 4706.915
  21106. }
  21107. },
  21108. sideStepping: {
  21109. height: math.unit(8, "feet"),
  21110. weight: math.unit(300, "lb"),
  21111. name: "Side (Stepping)",
  21112. image: {
  21113. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21114. extra: 1968 / 1860,
  21115. bottom: 16.4 / 1989
  21116. }
  21117. },
  21118. },
  21119. [
  21120. {
  21121. name: "Normal",
  21122. height: math.unit(8, "feet")
  21123. },
  21124. {
  21125. name: "Minimacro",
  21126. height: math.unit(75, "feet"),
  21127. default: true
  21128. },
  21129. {
  21130. name: "Macro",
  21131. height: math.unit(150, "feet")
  21132. },
  21133. {
  21134. name: "Macro+",
  21135. height: math.unit(1000, "feet")
  21136. },
  21137. {
  21138. name: "Megamacro",
  21139. height: math.unit(1, "mile")
  21140. },
  21141. ]
  21142. ))
  21143. characterMakers.push(() => makeCharacter(
  21144. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21145. {
  21146. side: {
  21147. height: math.unit(20, "feet"),
  21148. weight: math.unit(30000, "kg"),
  21149. name: "Side",
  21150. image: {
  21151. source: "./media/characters/windar/side.svg",
  21152. extra: 1491 / 1248,
  21153. bottom: 82.56 / 1568
  21154. }
  21155. },
  21156. },
  21157. [
  21158. {
  21159. name: "Normal",
  21160. height: math.unit(20, "feet"),
  21161. default: true
  21162. },
  21163. ]
  21164. ))
  21165. characterMakers.push(() => makeCharacter(
  21166. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21167. {
  21168. side: {
  21169. height: math.unit(15.66, "feet"),
  21170. weight: math.unit(150, "lb"),
  21171. name: "Side",
  21172. image: {
  21173. source: "./media/characters/melody/side.svg",
  21174. extra: 1097 / 944,
  21175. bottom: 11.8 / 1109
  21176. }
  21177. },
  21178. sideOutfit: {
  21179. height: math.unit(15.66, "feet"),
  21180. weight: math.unit(150, "lb"),
  21181. name: "Side (Outfit)",
  21182. image: {
  21183. source: "./media/characters/melody/side-outfit.svg",
  21184. extra: 1097 / 944,
  21185. bottom: 11.8 / 1109
  21186. }
  21187. },
  21188. },
  21189. [
  21190. {
  21191. name: "Normal",
  21192. height: math.unit(15.66, "feet"),
  21193. default: true
  21194. },
  21195. ]
  21196. ))
  21197. characterMakers.push(() => makeCharacter(
  21198. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21199. {
  21200. front: {
  21201. height: math.unit(8, "feet"),
  21202. weight: math.unit(325, "lb"),
  21203. name: "Front",
  21204. image: {
  21205. source: "./media/characters/windera/front.svg",
  21206. extra: 3180 / 2845,
  21207. bottom: 178 / 3365
  21208. }
  21209. },
  21210. },
  21211. [
  21212. {
  21213. name: "Normal",
  21214. height: math.unit(8, "feet"),
  21215. default: true
  21216. },
  21217. ]
  21218. ))
  21219. characterMakers.push(() => makeCharacter(
  21220. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21221. {
  21222. front: {
  21223. height: math.unit(28.75, "feet"),
  21224. weight: math.unit(2000, "kg"),
  21225. name: "Front",
  21226. image: {
  21227. source: "./media/characters/sonear/front.svg",
  21228. extra: 1041.1 / 964.9,
  21229. bottom: 53.7 / 1096.6
  21230. }
  21231. },
  21232. },
  21233. [
  21234. {
  21235. name: "Normal",
  21236. height: math.unit(28.75, "feet"),
  21237. default: true
  21238. },
  21239. ]
  21240. ))
  21241. characterMakers.push(() => makeCharacter(
  21242. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21243. {
  21244. side: {
  21245. height: math.unit(25.5, "feet"),
  21246. weight: math.unit(23000, "kg"),
  21247. name: "Side",
  21248. image: {
  21249. source: "./media/characters/kanara/side.svg"
  21250. }
  21251. },
  21252. },
  21253. [
  21254. {
  21255. name: "Normal",
  21256. height: math.unit(25.5, "feet"),
  21257. default: true
  21258. },
  21259. ]
  21260. ))
  21261. characterMakers.push(() => makeCharacter(
  21262. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21263. {
  21264. side: {
  21265. height: math.unit(10, "feet"),
  21266. weight: math.unit(1000, "kg"),
  21267. name: "Side",
  21268. image: {
  21269. source: "./media/characters/ereus/side.svg",
  21270. extra: 1157 / 959,
  21271. bottom: 153 / 1312.5
  21272. }
  21273. },
  21274. },
  21275. [
  21276. {
  21277. name: "Normal",
  21278. height: math.unit(10, "feet"),
  21279. default: true
  21280. },
  21281. ]
  21282. ))
  21283. characterMakers.push(() => makeCharacter(
  21284. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21285. {
  21286. side: {
  21287. height: math.unit(4.5, "feet"),
  21288. weight: math.unit(500, "lb"),
  21289. name: "Side",
  21290. image: {
  21291. source: "./media/characters/e-ter/side.svg",
  21292. extra: 1550 / 1248,
  21293. bottom: 146 / 1694
  21294. }
  21295. },
  21296. },
  21297. [
  21298. {
  21299. name: "Normal",
  21300. height: math.unit(4.5, "feet"),
  21301. default: true
  21302. },
  21303. ]
  21304. ))
  21305. characterMakers.push(() => makeCharacter(
  21306. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21307. {
  21308. side: {
  21309. height: math.unit(9.7, "feet"),
  21310. weight: math.unit(4000, "kg"),
  21311. name: "Side",
  21312. image: {
  21313. source: "./media/characters/yamie/side.svg"
  21314. }
  21315. },
  21316. },
  21317. [
  21318. {
  21319. name: "Normal",
  21320. height: math.unit(9.7, "feet"),
  21321. default: true
  21322. },
  21323. ]
  21324. ))
  21325. characterMakers.push(() => makeCharacter(
  21326. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21327. {
  21328. front: {
  21329. height: math.unit(50, "feet"),
  21330. weight: math.unit(50000, "kg"),
  21331. name: "Front",
  21332. image: {
  21333. source: "./media/characters/anders/front.svg",
  21334. extra: 570 / 539,
  21335. bottom: 14.7 / 586.7
  21336. }
  21337. },
  21338. },
  21339. [
  21340. {
  21341. name: "Large",
  21342. height: math.unit(50, "feet")
  21343. },
  21344. {
  21345. name: "Macro",
  21346. height: math.unit(2000, "feet"),
  21347. default: true
  21348. },
  21349. {
  21350. name: "Megamacro",
  21351. height: math.unit(12, "miles")
  21352. },
  21353. ]
  21354. ))
  21355. characterMakers.push(() => makeCharacter(
  21356. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21357. {
  21358. front: {
  21359. height: math.unit(7 + 2 / 12, "feet"),
  21360. weight: math.unit(300, "lb"),
  21361. name: "Front",
  21362. image: {
  21363. source: "./media/characters/reban/front.svg",
  21364. extra: 516 / 487,
  21365. bottom: 42.82 / 558.356
  21366. }
  21367. },
  21368. dick: {
  21369. height: math.unit(7 / 5, "feet"),
  21370. name: "Dick",
  21371. image: {
  21372. source: "./media/characters/reban/dick.svg"
  21373. }
  21374. },
  21375. },
  21376. [
  21377. {
  21378. name: "Natural Height",
  21379. height: math.unit(7 + 2 / 12, "feet")
  21380. },
  21381. {
  21382. name: "Macro",
  21383. height: math.unit(500, "feet"),
  21384. default: true
  21385. },
  21386. {
  21387. name: "Canon Height",
  21388. height: math.unit(50, "AU")
  21389. },
  21390. ]
  21391. ))
  21392. characterMakers.push(() => makeCharacter(
  21393. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21394. {
  21395. front: {
  21396. height: math.unit(6, "feet"),
  21397. weight: math.unit(150, "lb"),
  21398. name: "Front",
  21399. image: {
  21400. source: "./media/characters/terrance-keayes/front.svg",
  21401. extra: 1.005,
  21402. bottom: 151 / 1615
  21403. }
  21404. },
  21405. side: {
  21406. height: math.unit(6, "feet"),
  21407. weight: math.unit(150, "lb"),
  21408. name: "Side",
  21409. image: {
  21410. source: "./media/characters/terrance-keayes/side.svg",
  21411. extra: 1.005,
  21412. bottom: 129.4 / 1544
  21413. }
  21414. },
  21415. back: {
  21416. height: math.unit(6, "feet"),
  21417. weight: math.unit(150, "lb"),
  21418. name: "Back",
  21419. image: {
  21420. source: "./media/characters/terrance-keayes/back.svg",
  21421. extra: 1.005,
  21422. bottom: 58.4 / 1557.3
  21423. }
  21424. },
  21425. dick: {
  21426. height: math.unit(6 * 0.208, "feet"),
  21427. name: "Dick",
  21428. image: {
  21429. source: "./media/characters/terrance-keayes/dick.svg"
  21430. }
  21431. },
  21432. },
  21433. [
  21434. {
  21435. name: "Canon Height",
  21436. height: math.unit(35, "miles"),
  21437. default: true
  21438. },
  21439. ]
  21440. ))
  21441. characterMakers.push(() => makeCharacter(
  21442. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21443. {
  21444. front: {
  21445. height: math.unit(6, "feet"),
  21446. weight: math.unit(150, "lb"),
  21447. name: "Front",
  21448. image: {
  21449. source: "./media/characters/ofelia/front.svg",
  21450. extra: 546 / 541,
  21451. bottom: 39 / 583
  21452. }
  21453. },
  21454. back: {
  21455. height: math.unit(6, "feet"),
  21456. weight: math.unit(150, "lb"),
  21457. name: "Back",
  21458. image: {
  21459. source: "./media/characters/ofelia/back.svg",
  21460. extra: 564 / 559.5,
  21461. bottom: 8.69 / 573.02
  21462. }
  21463. },
  21464. maw: {
  21465. height: math.unit(1, "feet"),
  21466. name: "Maw",
  21467. image: {
  21468. source: "./media/characters/ofelia/maw.svg"
  21469. }
  21470. },
  21471. foot: {
  21472. height: math.unit(1.949, "feet"),
  21473. name: "Foot",
  21474. image: {
  21475. source: "./media/characters/ofelia/foot.svg"
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Canon Height",
  21482. height: math.unit(2000, "miles"),
  21483. default: true
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21489. {
  21490. front: {
  21491. height: math.unit(6, "feet"),
  21492. weight: math.unit(150, "lb"),
  21493. name: "Front",
  21494. image: {
  21495. source: "./media/characters/samuel/front.svg",
  21496. extra: 265 / 258,
  21497. bottom: 2 / 266.1566
  21498. }
  21499. },
  21500. },
  21501. [
  21502. {
  21503. name: "Macro",
  21504. height: math.unit(100, "feet"),
  21505. default: true
  21506. },
  21507. {
  21508. name: "Full Size",
  21509. height: math.unit(1000, "miles")
  21510. },
  21511. ]
  21512. ))
  21513. characterMakers.push(() => makeCharacter(
  21514. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21515. {
  21516. front: {
  21517. height: math.unit(6, "feet"),
  21518. weight: math.unit(300, "lb"),
  21519. name: "Front",
  21520. image: {
  21521. source: "./media/characters/beishir-kiel/front.svg",
  21522. extra: 569 / 547,
  21523. bottom: 41.9 / 609
  21524. }
  21525. },
  21526. maw: {
  21527. height: math.unit(6 * 0.202, "feet"),
  21528. name: "Maw",
  21529. image: {
  21530. source: "./media/characters/beishir-kiel/maw.svg"
  21531. }
  21532. },
  21533. },
  21534. [
  21535. {
  21536. name: "Macro",
  21537. height: math.unit(300, "feet"),
  21538. default: true
  21539. },
  21540. ]
  21541. ))
  21542. characterMakers.push(() => makeCharacter(
  21543. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21544. {
  21545. front: {
  21546. height: math.unit(5 + 8 / 12, "feet"),
  21547. weight: math.unit(120, "lb"),
  21548. name: "Front",
  21549. image: {
  21550. source: "./media/characters/logan-grey/front.svg",
  21551. extra: 2539 / 2393,
  21552. bottom: 97.6 / 2636.37
  21553. }
  21554. },
  21555. frontAlt: {
  21556. height: math.unit(5 + 8 / 12, "feet"),
  21557. weight: math.unit(120, "lb"),
  21558. name: "Front (Alt)",
  21559. image: {
  21560. source: "./media/characters/logan-grey/front-alt.svg",
  21561. extra: 958 / 893,
  21562. bottom: 15 / 970.768
  21563. }
  21564. },
  21565. back: {
  21566. height: math.unit(5 + 8 / 12, "feet"),
  21567. weight: math.unit(120, "lb"),
  21568. name: "Back",
  21569. image: {
  21570. source: "./media/characters/logan-grey/back.svg",
  21571. extra: 958 / 893,
  21572. bottom: 2.1881 / 970.9788
  21573. }
  21574. },
  21575. dick: {
  21576. height: math.unit(1.437, "feet"),
  21577. name: "Dick",
  21578. image: {
  21579. source: "./media/characters/logan-grey/dick.svg"
  21580. }
  21581. },
  21582. },
  21583. [
  21584. {
  21585. name: "Normal",
  21586. height: math.unit(5 + 8 / 12, "feet")
  21587. },
  21588. {
  21589. name: "The 500 Foot Femboy",
  21590. height: math.unit(500, "feet"),
  21591. default: true
  21592. },
  21593. {
  21594. name: "Megmacro",
  21595. height: math.unit(20, "miles")
  21596. },
  21597. ]
  21598. ))
  21599. characterMakers.push(() => makeCharacter(
  21600. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21601. {
  21602. front: {
  21603. height: math.unit(8 + 2 / 12, "feet"),
  21604. weight: math.unit(275, "lb"),
  21605. name: "Front",
  21606. image: {
  21607. source: "./media/characters/draganta/front.svg",
  21608. extra: 1177 / 1135,
  21609. bottom: 33.46 / 1212.1
  21610. }
  21611. },
  21612. },
  21613. [
  21614. {
  21615. name: "Normal",
  21616. height: math.unit(8 + 6 / 12, "feet"),
  21617. default: true
  21618. },
  21619. {
  21620. name: "Macro",
  21621. height: math.unit(150, "feet")
  21622. },
  21623. {
  21624. name: "Megamacro",
  21625. height: math.unit(1000, "miles")
  21626. },
  21627. ]
  21628. ))
  21629. characterMakers.push(() => makeCharacter(
  21630. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21631. {
  21632. front: {
  21633. height: math.unit(1.72, "m"),
  21634. weight: math.unit(80, "lb"),
  21635. name: "Front",
  21636. image: {
  21637. source: "./media/characters/voski/front.svg",
  21638. extra: 2076.22 / 2022.4,
  21639. bottom: 102.7 / 2177.3866
  21640. }
  21641. },
  21642. frontNsfw: {
  21643. height: math.unit(1.72, "m"),
  21644. weight: math.unit(80, "lb"),
  21645. name: "Front (NSFW)",
  21646. image: {
  21647. source: "./media/characters/voski/front-nsfw.svg",
  21648. extra: 2076.22 / 2022.4,
  21649. bottom: 102.7 / 2177.3866
  21650. }
  21651. },
  21652. back: {
  21653. height: math.unit(1.72, "m"),
  21654. weight: math.unit(80, "lb"),
  21655. name: "Back",
  21656. image: {
  21657. source: "./media/characters/voski/back.svg",
  21658. extra: 2104 / 2051,
  21659. bottom: 10.45 / 2113.63
  21660. }
  21661. },
  21662. },
  21663. [
  21664. {
  21665. name: "Normal",
  21666. height: math.unit(1.72, "m")
  21667. },
  21668. {
  21669. name: "Macro",
  21670. height: math.unit(55, "m"),
  21671. default: true
  21672. },
  21673. {
  21674. name: "Macro+",
  21675. height: math.unit(300, "m")
  21676. },
  21677. {
  21678. name: "Macro++",
  21679. height: math.unit(700, "m")
  21680. },
  21681. {
  21682. name: "Macro+++",
  21683. height: math.unit(4500, "m")
  21684. },
  21685. {
  21686. name: "Macro++++",
  21687. height: math.unit(45, "km")
  21688. },
  21689. {
  21690. name: "Macro+++++",
  21691. height: math.unit(1220, "km")
  21692. },
  21693. ]
  21694. ))
  21695. characterMakers.push(() => makeCharacter(
  21696. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21697. {
  21698. front: {
  21699. height: math.unit(2.3, "m"),
  21700. weight: math.unit(304, "kg"),
  21701. name: "Front",
  21702. image: {
  21703. source: "./media/characters/icowom-lee/front.svg",
  21704. extra: 985 / 955,
  21705. bottom: 25.4 / 1012
  21706. }
  21707. },
  21708. fronttentacles: {
  21709. height: math.unit(2.3, "m"),
  21710. weight: math.unit(304, "kg"),
  21711. name: "Front-tentacles",
  21712. image: {
  21713. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21714. extra: 985 / 955,
  21715. bottom: 25.4 / 1012
  21716. }
  21717. },
  21718. back: {
  21719. height: math.unit(2.3, "m"),
  21720. weight: math.unit(304, "kg"),
  21721. name: "Back",
  21722. image: {
  21723. source: "./media/characters/icowom-lee/back.svg",
  21724. extra: 975 / 954,
  21725. bottom: 9.5 / 985
  21726. }
  21727. },
  21728. backtentacles: {
  21729. height: math.unit(2.3, "m"),
  21730. weight: math.unit(304, "kg"),
  21731. name: "Back-tentacles",
  21732. image: {
  21733. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21734. extra: 975 / 954,
  21735. bottom: 9.5 / 985
  21736. }
  21737. },
  21738. frontDressed: {
  21739. height: math.unit(2.3, "m"),
  21740. weight: math.unit(304, "kg"),
  21741. name: "Front (Dressed)",
  21742. image: {
  21743. source: "./media/characters/icowom-lee/front-dressed.svg",
  21744. extra: 3076 / 2933,
  21745. bottom: 51.4 / 3125.1889
  21746. }
  21747. },
  21748. rump: {
  21749. height: math.unit(0.776, "meters"),
  21750. name: "Rump",
  21751. image: {
  21752. source: "./media/characters/icowom-lee/rump.svg"
  21753. }
  21754. },
  21755. genitals: {
  21756. height: math.unit(0.78, "meters"),
  21757. name: "Genitals",
  21758. image: {
  21759. source: "./media/characters/icowom-lee/genitals.svg"
  21760. }
  21761. },
  21762. },
  21763. [
  21764. {
  21765. name: "Normal",
  21766. height: math.unit(2.3, "meters"),
  21767. default: true
  21768. },
  21769. {
  21770. name: "Macro",
  21771. height: math.unit(94, "meters"),
  21772. default: true
  21773. },
  21774. ]
  21775. ))
  21776. characterMakers.push(() => makeCharacter(
  21777. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21778. {
  21779. front: {
  21780. height: math.unit(22, "meters"),
  21781. weight: math.unit(21000, "kg"),
  21782. name: "Front",
  21783. image: {
  21784. source: "./media/characters/shock-diamond/front.svg",
  21785. extra: 2204 / 2053,
  21786. bottom: 65 / 2239.47
  21787. }
  21788. },
  21789. frontNude: {
  21790. height: math.unit(22, "meters"),
  21791. weight: math.unit(21000, "kg"),
  21792. name: "Front (Nude)",
  21793. image: {
  21794. source: "./media/characters/shock-diamond/front-nude.svg",
  21795. extra: 2514 / 2285,
  21796. bottom: 13 / 2527.56
  21797. }
  21798. },
  21799. },
  21800. [
  21801. {
  21802. name: "Normal",
  21803. height: math.unit(3, "meters")
  21804. },
  21805. {
  21806. name: "Macro",
  21807. height: math.unit(22, "meters"),
  21808. default: true
  21809. },
  21810. ]
  21811. ))
  21812. characterMakers.push(() => makeCharacter(
  21813. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21814. {
  21815. front: {
  21816. height: math.unit(5 + 4 / 12, "feet"),
  21817. weight: math.unit(120, "lb"),
  21818. name: "Front",
  21819. image: {
  21820. source: "./media/characters/rory/front.svg",
  21821. extra: 589 / 556,
  21822. bottom: 45.7 / 635.76
  21823. }
  21824. },
  21825. frontNude: {
  21826. height: math.unit(5 + 4 / 12, "feet"),
  21827. weight: math.unit(120, "lb"),
  21828. name: "Front (Nude)",
  21829. image: {
  21830. source: "./media/characters/rory/front-nude.svg",
  21831. extra: 589 / 556,
  21832. bottom: 45.7 / 635.76
  21833. }
  21834. },
  21835. side: {
  21836. height: math.unit(5 + 4 / 12, "feet"),
  21837. weight: math.unit(120, "lb"),
  21838. name: "Side",
  21839. image: {
  21840. source: "./media/characters/rory/side.svg",
  21841. extra: 597 / 564,
  21842. bottom: 55 / 653
  21843. }
  21844. },
  21845. back: {
  21846. height: math.unit(5 + 4 / 12, "feet"),
  21847. weight: math.unit(120, "lb"),
  21848. name: "Back",
  21849. image: {
  21850. source: "./media/characters/rory/back.svg",
  21851. extra: 620 / 585,
  21852. bottom: 8.86 / 630.43
  21853. }
  21854. },
  21855. dick: {
  21856. height: math.unit(0.86, "feet"),
  21857. name: "Dick",
  21858. image: {
  21859. source: "./media/characters/rory/dick.svg"
  21860. }
  21861. },
  21862. },
  21863. [
  21864. {
  21865. name: "Normal",
  21866. height: math.unit(5 + 4 / 12, "feet"),
  21867. default: true
  21868. },
  21869. {
  21870. name: "Macro",
  21871. height: math.unit(100, "feet")
  21872. },
  21873. {
  21874. name: "Macro+",
  21875. height: math.unit(140, "feet")
  21876. },
  21877. {
  21878. name: "Macro++",
  21879. height: math.unit(300, "feet")
  21880. },
  21881. ]
  21882. ))
  21883. characterMakers.push(() => makeCharacter(
  21884. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21885. {
  21886. front: {
  21887. height: math.unit(5 + 9 / 12, "feet"),
  21888. weight: math.unit(190, "lb"),
  21889. name: "Front",
  21890. image: {
  21891. source: "./media/characters/sprisk/front.svg",
  21892. extra: 1225 / 1180,
  21893. bottom: 42.7 / 1266.4
  21894. }
  21895. },
  21896. frontNsfw: {
  21897. height: math.unit(5 + 9 / 12, "feet"),
  21898. weight: math.unit(190, "lb"),
  21899. name: "Front (NSFW)",
  21900. image: {
  21901. source: "./media/characters/sprisk/front-nsfw.svg",
  21902. extra: 1225 / 1180,
  21903. bottom: 42.7 / 1266.4
  21904. }
  21905. },
  21906. back: {
  21907. height: math.unit(5 + 9 / 12, "feet"),
  21908. weight: math.unit(190, "lb"),
  21909. name: "Back",
  21910. image: {
  21911. source: "./media/characters/sprisk/back.svg",
  21912. extra: 1247 / 1200,
  21913. bottom: 5.6 / 1253.04
  21914. }
  21915. },
  21916. },
  21917. [
  21918. {
  21919. name: "Tiny",
  21920. height: math.unit(2, "inches")
  21921. },
  21922. {
  21923. name: "Normal",
  21924. height: math.unit(5 + 9 / 12, "feet"),
  21925. default: true
  21926. },
  21927. {
  21928. name: "Mini Macro",
  21929. height: math.unit(18, "feet")
  21930. },
  21931. {
  21932. name: "Macro",
  21933. height: math.unit(100, "feet")
  21934. },
  21935. {
  21936. name: "MACRO",
  21937. height: math.unit(50, "miles")
  21938. },
  21939. {
  21940. name: "M A C R O",
  21941. height: math.unit(300, "miles")
  21942. },
  21943. ]
  21944. ))
  21945. characterMakers.push(() => makeCharacter(
  21946. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21947. {
  21948. side: {
  21949. height: math.unit(15.6, "meters"),
  21950. weight: math.unit(700000, "kg"),
  21951. name: "Side",
  21952. image: {
  21953. source: "./media/characters/bunsen/side.svg",
  21954. extra: 1644 / 358
  21955. }
  21956. },
  21957. foot: {
  21958. height: math.unit(1.611 * 1644 / 358, "meter"),
  21959. name: "Foot",
  21960. image: {
  21961. source: "./media/characters/bunsen/foot.svg"
  21962. }
  21963. },
  21964. },
  21965. [
  21966. {
  21967. name: "Small",
  21968. height: math.unit(10, "feet")
  21969. },
  21970. {
  21971. name: "Normal",
  21972. height: math.unit(15.6, "meters"),
  21973. default: true
  21974. },
  21975. ]
  21976. ))
  21977. characterMakers.push(() => makeCharacter(
  21978. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21979. {
  21980. front: {
  21981. height: math.unit(4 + 11 / 12, "feet"),
  21982. weight: math.unit(140, "lb"),
  21983. name: "Front",
  21984. image: {
  21985. source: "./media/characters/sesh/front.svg",
  21986. extra: 3420 / 3231,
  21987. bottom: 72 / 3949.5
  21988. }
  21989. },
  21990. },
  21991. [
  21992. {
  21993. name: "Normal",
  21994. height: math.unit(4 + 11 / 12, "feet")
  21995. },
  21996. {
  21997. name: "Grown",
  21998. height: math.unit(15, "feet"),
  21999. default: true
  22000. },
  22001. {
  22002. name: "Macro",
  22003. height: math.unit(1500, "feet")
  22004. },
  22005. {
  22006. name: "Megamacro",
  22007. height: math.unit(30, "miles")
  22008. },
  22009. {
  22010. name: "Continental",
  22011. height: math.unit(3000, "miles")
  22012. },
  22013. {
  22014. name: "Gravity Mass",
  22015. height: math.unit(300000, "miles")
  22016. },
  22017. {
  22018. name: "Planet Buster",
  22019. height: math.unit(30000000, "miles")
  22020. },
  22021. {
  22022. name: "Big",
  22023. height: math.unit(3000000000, "miles")
  22024. },
  22025. ]
  22026. ))
  22027. characterMakers.push(() => makeCharacter(
  22028. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22029. {
  22030. front: {
  22031. height: math.unit(9, "feet"),
  22032. weight: math.unit(350, "lb"),
  22033. name: "Front",
  22034. image: {
  22035. source: "./media/characters/pepper/front.svg",
  22036. extra: 1448 / 1312,
  22037. bottom: 9.4 / 1457.88
  22038. }
  22039. },
  22040. back: {
  22041. height: math.unit(9, "feet"),
  22042. weight: math.unit(350, "lb"),
  22043. name: "Back",
  22044. image: {
  22045. source: "./media/characters/pepper/back.svg",
  22046. extra: 1423 / 1300,
  22047. bottom: 4.6 / 1429
  22048. }
  22049. },
  22050. maw: {
  22051. height: math.unit(0.932, "feet"),
  22052. name: "Maw",
  22053. image: {
  22054. source: "./media/characters/pepper/maw.svg"
  22055. }
  22056. },
  22057. },
  22058. [
  22059. {
  22060. name: "Normal",
  22061. height: math.unit(9, "feet"),
  22062. default: true
  22063. },
  22064. ]
  22065. ))
  22066. characterMakers.push(() => makeCharacter(
  22067. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22068. {
  22069. front: {
  22070. height: math.unit(6, "feet"),
  22071. weight: math.unit(150, "lb"),
  22072. name: "Front",
  22073. image: {
  22074. source: "./media/characters/maelstrom/front.svg",
  22075. extra: 2100 / 1883,
  22076. bottom: 94 / 2196.7
  22077. }
  22078. },
  22079. },
  22080. [
  22081. {
  22082. name: "Less Kaiju",
  22083. height: math.unit(200, "feet")
  22084. },
  22085. {
  22086. name: "Kaiju",
  22087. height: math.unit(400, "feet"),
  22088. default: true
  22089. },
  22090. {
  22091. name: "Kaiju-er",
  22092. height: math.unit(600, "feet")
  22093. },
  22094. ]
  22095. ))
  22096. characterMakers.push(() => makeCharacter(
  22097. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22098. {
  22099. front: {
  22100. height: math.unit(6 + 5 / 12, "feet"),
  22101. weight: math.unit(180, "lb"),
  22102. name: "Front",
  22103. image: {
  22104. source: "./media/characters/lexir/front.svg",
  22105. extra: 180 / 172,
  22106. bottom: 12 / 192
  22107. }
  22108. },
  22109. back: {
  22110. height: math.unit(6 + 5 / 12, "feet"),
  22111. weight: math.unit(180, "lb"),
  22112. name: "Back",
  22113. image: {
  22114. source: "./media/characters/lexir/back.svg",
  22115. extra: 183.84 / 175.5,
  22116. bottom: 3.1 / 187
  22117. }
  22118. },
  22119. },
  22120. [
  22121. {
  22122. name: "Very Smal",
  22123. height: math.unit(1, "nm")
  22124. },
  22125. {
  22126. name: "Normal",
  22127. height: math.unit(6 + 5 / 12, "feet"),
  22128. default: true
  22129. },
  22130. {
  22131. name: "Macro",
  22132. height: math.unit(1, "mile")
  22133. },
  22134. {
  22135. name: "Megamacro",
  22136. height: math.unit(50, "miles")
  22137. },
  22138. ]
  22139. ))
  22140. characterMakers.push(() => makeCharacter(
  22141. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22142. {
  22143. front: {
  22144. height: math.unit(1.5, "meters"),
  22145. weight: math.unit(100, "lb"),
  22146. name: "Front",
  22147. image: {
  22148. source: "./media/characters/maksio/front.svg",
  22149. extra: 1549 / 1531,
  22150. bottom: 123.7 / 1674.5429
  22151. }
  22152. },
  22153. back: {
  22154. height: math.unit(1.5, "meters"),
  22155. weight: math.unit(100, "lb"),
  22156. name: "Back",
  22157. image: {
  22158. source: "./media/characters/maksio/back.svg",
  22159. extra: 1541 / 1509,
  22160. bottom: 97 / 1639
  22161. }
  22162. },
  22163. hand: {
  22164. height: math.unit(0.621, "feet"),
  22165. name: "Hand",
  22166. image: {
  22167. source: "./media/characters/maksio/hand.svg"
  22168. }
  22169. },
  22170. foot: {
  22171. height: math.unit(1.611, "feet"),
  22172. name: "Foot",
  22173. image: {
  22174. source: "./media/characters/maksio/foot.svg"
  22175. }
  22176. },
  22177. },
  22178. [
  22179. {
  22180. name: "Shrunken",
  22181. height: math.unit(10, "cm")
  22182. },
  22183. {
  22184. name: "Normal",
  22185. height: math.unit(150, "cm"),
  22186. default: true
  22187. },
  22188. ]
  22189. ))
  22190. characterMakers.push(() => makeCharacter(
  22191. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22192. {
  22193. front: {
  22194. height: math.unit(100, "feet"),
  22195. name: "Front",
  22196. image: {
  22197. source: "./media/characters/erza-bear/front.svg",
  22198. extra: 2449 / 2390,
  22199. bottom: 46 / 2494
  22200. }
  22201. },
  22202. back: {
  22203. height: math.unit(100, "feet"),
  22204. name: "Back",
  22205. image: {
  22206. source: "./media/characters/erza-bear/back.svg",
  22207. extra: 2489 / 2430,
  22208. bottom: 85.4 / 2480
  22209. }
  22210. },
  22211. tail: {
  22212. height: math.unit(42, "feet"),
  22213. name: "Tail",
  22214. image: {
  22215. source: "./media/characters/erza-bear/tail.svg"
  22216. }
  22217. },
  22218. tongue: {
  22219. height: math.unit(8, "feet"),
  22220. name: "Tongue",
  22221. image: {
  22222. source: "./media/characters/erza-bear/tongue.svg"
  22223. }
  22224. },
  22225. dick: {
  22226. height: math.unit(10.5, "feet"),
  22227. name: "Dick",
  22228. image: {
  22229. source: "./media/characters/erza-bear/dick.svg"
  22230. }
  22231. },
  22232. dickVertical: {
  22233. height: math.unit(16.9, "feet"),
  22234. name: "Dick (Vertical)",
  22235. image: {
  22236. source: "./media/characters/erza-bear/dick-vertical.svg"
  22237. }
  22238. },
  22239. },
  22240. [
  22241. {
  22242. name: "Macro",
  22243. height: math.unit(100, "feet"),
  22244. default: true
  22245. },
  22246. ]
  22247. ))
  22248. characterMakers.push(() => makeCharacter(
  22249. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22250. {
  22251. front: {
  22252. height: math.unit(172, "cm"),
  22253. weight: math.unit(73, "kg"),
  22254. name: "Front",
  22255. image: {
  22256. source: "./media/characters/violet-flor/front.svg",
  22257. extra: 1530 / 1442,
  22258. bottom: 61.9 / 1588.8
  22259. }
  22260. },
  22261. back: {
  22262. height: math.unit(180, "cm"),
  22263. weight: math.unit(73, "kg"),
  22264. name: "Back",
  22265. image: {
  22266. source: "./media/characters/violet-flor/back.svg",
  22267. extra: 1692 / 1630,
  22268. bottom: 20 / 1712
  22269. }
  22270. },
  22271. },
  22272. [
  22273. {
  22274. name: "Normal",
  22275. height: math.unit(172, "cm"),
  22276. default: true
  22277. },
  22278. ]
  22279. ))
  22280. characterMakers.push(() => makeCharacter(
  22281. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22282. {
  22283. front: {
  22284. height: math.unit(6, "feet"),
  22285. weight: math.unit(220, "lb"),
  22286. name: "Front",
  22287. image: {
  22288. source: "./media/characters/lynn-rhea/front.svg",
  22289. extra: 310 / 273
  22290. }
  22291. },
  22292. back: {
  22293. height: math.unit(6, "feet"),
  22294. weight: math.unit(220, "lb"),
  22295. name: "Back",
  22296. image: {
  22297. source: "./media/characters/lynn-rhea/back.svg",
  22298. extra: 310 / 273
  22299. }
  22300. },
  22301. dicks: {
  22302. height: math.unit(0.9, "feet"),
  22303. name: "Dicks",
  22304. image: {
  22305. source: "./media/characters/lynn-rhea/dicks.svg"
  22306. }
  22307. },
  22308. slit: {
  22309. height: math.unit(0.4, "feet"),
  22310. name: "Slit",
  22311. image: {
  22312. source: "./media/characters/lynn-rhea/slit.svg"
  22313. }
  22314. },
  22315. },
  22316. [
  22317. {
  22318. name: "Micro",
  22319. height: math.unit(1, "inch")
  22320. },
  22321. {
  22322. name: "Macro",
  22323. height: math.unit(60, "feet"),
  22324. default: true
  22325. },
  22326. {
  22327. name: "Megamacro",
  22328. height: math.unit(2, "miles")
  22329. },
  22330. {
  22331. name: "Gigamacro",
  22332. height: math.unit(3, "earths")
  22333. },
  22334. {
  22335. name: "Galactic",
  22336. height: math.unit(0.8, "galaxies")
  22337. },
  22338. ]
  22339. ))
  22340. characterMakers.push(() => makeCharacter(
  22341. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22342. {
  22343. front: {
  22344. height: math.unit(1600, "feet"),
  22345. weight: math.unit(85758785169, "kg"),
  22346. name: "Front",
  22347. image: {
  22348. source: "./media/characters/valathos/front.svg",
  22349. extra: 1451 / 1339
  22350. }
  22351. },
  22352. },
  22353. [
  22354. {
  22355. name: "Macro",
  22356. height: math.unit(1600, "feet"),
  22357. default: true
  22358. },
  22359. ]
  22360. ))
  22361. characterMakers.push(() => makeCharacter(
  22362. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22363. {
  22364. front: {
  22365. height: math.unit(7 + 5 / 12, "feet"),
  22366. weight: math.unit(300, "lb"),
  22367. name: "Front",
  22368. image: {
  22369. source: "./media/characters/azula/front.svg",
  22370. extra: 3208 / 2880,
  22371. bottom: 80.2 / 3277
  22372. }
  22373. },
  22374. back: {
  22375. height: math.unit(7 + 5 / 12, "feet"),
  22376. weight: math.unit(300, "lb"),
  22377. name: "Back",
  22378. image: {
  22379. source: "./media/characters/azula/back.svg",
  22380. extra: 3169 / 2822,
  22381. bottom: 150.6 / 3321
  22382. }
  22383. },
  22384. },
  22385. [
  22386. {
  22387. name: "Normal",
  22388. height: math.unit(7 + 5 / 12, "feet"),
  22389. default: true
  22390. },
  22391. {
  22392. name: "Big",
  22393. height: math.unit(20, "feet")
  22394. },
  22395. ]
  22396. ))
  22397. characterMakers.push(() => makeCharacter(
  22398. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22399. {
  22400. front: {
  22401. height: math.unit(5 + 1 / 12, "feet"),
  22402. weight: math.unit(110, "lb"),
  22403. name: "Front",
  22404. image: {
  22405. source: "./media/characters/rupert/front.svg",
  22406. extra: 1549 / 1495,
  22407. bottom: 54.2 / 1604.4
  22408. }
  22409. },
  22410. },
  22411. [
  22412. {
  22413. name: "Normal",
  22414. height: math.unit(5 + 1 / 12, "feet"),
  22415. default: true
  22416. },
  22417. ]
  22418. ))
  22419. characterMakers.push(() => makeCharacter(
  22420. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22421. {
  22422. front: {
  22423. height: math.unit(8 + 4 / 12, "feet"),
  22424. weight: math.unit(350, "lb"),
  22425. name: "Front",
  22426. image: {
  22427. source: "./media/characters/sheera-castellar/front.svg",
  22428. extra: 1957 / 1894,
  22429. bottom: 26.97 / 1975.017
  22430. }
  22431. },
  22432. side: {
  22433. height: math.unit(8 + 4 / 12, "feet"),
  22434. weight: math.unit(350, "lb"),
  22435. name: "Side",
  22436. image: {
  22437. source: "./media/characters/sheera-castellar/side.svg",
  22438. extra: 1957 / 1894
  22439. }
  22440. },
  22441. back: {
  22442. height: math.unit(8 + 4 / 12, "feet"),
  22443. weight: math.unit(350, "lb"),
  22444. name: "Back",
  22445. image: {
  22446. source: "./media/characters/sheera-castellar/back.svg",
  22447. extra: 1957 / 1894
  22448. }
  22449. },
  22450. angled: {
  22451. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22452. weight: math.unit(350, "lb"),
  22453. name: "Angled",
  22454. image: {
  22455. source: "./media/characters/sheera-castellar/angled.svg",
  22456. extra: 1807 / 1707,
  22457. bottom: 68 / 1875
  22458. }
  22459. },
  22460. genitals: {
  22461. height: math.unit(2.2, "feet"),
  22462. name: "Genitals",
  22463. image: {
  22464. source: "./media/characters/sheera-castellar/genitals.svg"
  22465. }
  22466. },
  22467. },
  22468. [
  22469. {
  22470. name: "Normal",
  22471. height: math.unit(8 + 4 / 12, "feet")
  22472. },
  22473. {
  22474. name: "Macro",
  22475. height: math.unit(150, "feet"),
  22476. default: true
  22477. },
  22478. {
  22479. name: "Macro+",
  22480. height: math.unit(800, "feet")
  22481. },
  22482. ]
  22483. ))
  22484. characterMakers.push(() => makeCharacter(
  22485. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22486. {
  22487. front: {
  22488. height: math.unit(6, "feet"),
  22489. weight: math.unit(150, "lb"),
  22490. name: "Front",
  22491. image: {
  22492. source: "./media/characters/jaipur/front.svg",
  22493. extra: 3860 / 3731,
  22494. bottom: 287 / 4140
  22495. }
  22496. },
  22497. back: {
  22498. height: math.unit(6, "feet"),
  22499. weight: math.unit(150, "lb"),
  22500. name: "Back",
  22501. image: {
  22502. source: "./media/characters/jaipur/back.svg",
  22503. extra: 4060 / 3930,
  22504. bottom: 151 / 4200
  22505. }
  22506. },
  22507. },
  22508. [
  22509. {
  22510. name: "Normal",
  22511. height: math.unit(1.85, "meters"),
  22512. default: true
  22513. },
  22514. {
  22515. name: "Macro",
  22516. height: math.unit(150, "meters")
  22517. },
  22518. {
  22519. name: "Macro+",
  22520. height: math.unit(0.5, "miles")
  22521. },
  22522. {
  22523. name: "Macro++",
  22524. height: math.unit(2.5, "miles")
  22525. },
  22526. {
  22527. name: "Macro+++",
  22528. height: math.unit(12, "miles")
  22529. },
  22530. {
  22531. name: "Macro++++",
  22532. height: math.unit(120, "miles")
  22533. },
  22534. {
  22535. name: "Macro+++++",
  22536. height: math.unit(1200, "miles")
  22537. },
  22538. ]
  22539. ))
  22540. characterMakers.push(() => makeCharacter(
  22541. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22542. {
  22543. front: {
  22544. height: math.unit(6, "feet"),
  22545. weight: math.unit(150, "lb"),
  22546. name: "Front",
  22547. image: {
  22548. source: "./media/characters/sheila-wolf/front.svg",
  22549. extra: 1931 / 1808,
  22550. bottom: 29.5 / 1960
  22551. }
  22552. },
  22553. dick: {
  22554. height: math.unit(1.464, "feet"),
  22555. name: "Dick",
  22556. image: {
  22557. source: "./media/characters/sheila-wolf/dick.svg"
  22558. }
  22559. },
  22560. muzzle: {
  22561. height: math.unit(0.513, "feet"),
  22562. name: "Muzzle",
  22563. image: {
  22564. source: "./media/characters/sheila-wolf/muzzle.svg"
  22565. }
  22566. },
  22567. },
  22568. [
  22569. {
  22570. name: "Macro",
  22571. height: math.unit(70, "feet"),
  22572. default: true
  22573. },
  22574. ]
  22575. ))
  22576. characterMakers.push(() => makeCharacter(
  22577. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22578. {
  22579. front: {
  22580. height: math.unit(32, "meters"),
  22581. weight: math.unit(300000, "kg"),
  22582. name: "Front",
  22583. image: {
  22584. source: "./media/characters/almor/front.svg",
  22585. extra: 1408 / 1322,
  22586. bottom: 94.6 / 1506.5
  22587. }
  22588. },
  22589. },
  22590. [
  22591. {
  22592. name: "Macro",
  22593. height: math.unit(32, "meters"),
  22594. default: true
  22595. },
  22596. ]
  22597. ))
  22598. characterMakers.push(() => makeCharacter(
  22599. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22600. {
  22601. front: {
  22602. height: math.unit(7, "feet"),
  22603. weight: math.unit(200, "lb"),
  22604. name: "Front",
  22605. image: {
  22606. source: "./media/characters/silver/front.svg",
  22607. extra: 472.1 / 450.5,
  22608. bottom: 26.5 / 499.424
  22609. }
  22610. },
  22611. },
  22612. [
  22613. {
  22614. name: "Normal",
  22615. height: math.unit(7, "feet"),
  22616. default: true
  22617. },
  22618. {
  22619. name: "Macro",
  22620. height: math.unit(800, "feet")
  22621. },
  22622. {
  22623. name: "Megamacro",
  22624. height: math.unit(250, "miles")
  22625. },
  22626. ]
  22627. ))
  22628. characterMakers.push(() => makeCharacter(
  22629. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22630. {
  22631. front: {
  22632. height: math.unit(6, "feet"),
  22633. weight: math.unit(150, "lb"),
  22634. name: "Front",
  22635. image: {
  22636. source: "./media/characters/pliskin/front.svg",
  22637. extra: 1469 / 1359,
  22638. bottom: 70 / 1540
  22639. }
  22640. },
  22641. },
  22642. [
  22643. {
  22644. name: "Micro",
  22645. height: math.unit(3, "inches")
  22646. },
  22647. {
  22648. name: "Normal",
  22649. height: math.unit(5 + 11 / 12, "feet"),
  22650. default: true
  22651. },
  22652. {
  22653. name: "Macro",
  22654. height: math.unit(120, "feet")
  22655. },
  22656. ]
  22657. ))
  22658. characterMakers.push(() => makeCharacter(
  22659. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22660. {
  22661. front: {
  22662. height: math.unit(6, "feet"),
  22663. weight: math.unit(150, "lb"),
  22664. name: "Front",
  22665. image: {
  22666. source: "./media/characters/sammy/front.svg",
  22667. extra: 1193 / 1089,
  22668. bottom: 30.5 / 1226
  22669. }
  22670. },
  22671. },
  22672. [
  22673. {
  22674. name: "Macro",
  22675. height: math.unit(1700, "feet"),
  22676. default: true
  22677. },
  22678. {
  22679. name: "Examacro",
  22680. height: math.unit(2.5e9, "lightyears")
  22681. },
  22682. ]
  22683. ))
  22684. characterMakers.push(() => makeCharacter(
  22685. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22686. {
  22687. front: {
  22688. height: math.unit(21, "meters"),
  22689. weight: math.unit(12, "tonnes"),
  22690. name: "Front",
  22691. image: {
  22692. source: "./media/characters/kuru/front.svg",
  22693. extra: 4301 / 3785,
  22694. bottom: 371.3 / 4691
  22695. }
  22696. },
  22697. },
  22698. [
  22699. {
  22700. name: "Macro",
  22701. height: math.unit(21, "meters"),
  22702. default: true
  22703. },
  22704. ]
  22705. ))
  22706. characterMakers.push(() => makeCharacter(
  22707. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22708. {
  22709. front: {
  22710. height: math.unit(23, "meters"),
  22711. weight: math.unit(12.2, "tonnes"),
  22712. name: "Front",
  22713. image: {
  22714. source: "./media/characters/rakka/front.svg",
  22715. extra: 4670 / 4169,
  22716. bottom: 301 / 4968.7
  22717. }
  22718. },
  22719. },
  22720. [
  22721. {
  22722. name: "Macro",
  22723. height: math.unit(23, "meters"),
  22724. default: true
  22725. },
  22726. ]
  22727. ))
  22728. characterMakers.push(() => makeCharacter(
  22729. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22730. {
  22731. front: {
  22732. height: math.unit(6, "feet"),
  22733. weight: math.unit(150, "lb"),
  22734. name: "Front",
  22735. image: {
  22736. source: "./media/characters/rhys-feline/front.svg",
  22737. extra: 2488 / 2308,
  22738. bottom: 35.67 / 2519.19
  22739. }
  22740. },
  22741. },
  22742. [
  22743. {
  22744. name: "Really Small",
  22745. height: math.unit(1, "nm")
  22746. },
  22747. {
  22748. name: "Micro",
  22749. height: math.unit(4, "inches")
  22750. },
  22751. {
  22752. name: "Normal",
  22753. height: math.unit(4 + 10 / 12, "feet"),
  22754. default: true
  22755. },
  22756. {
  22757. name: "Macro",
  22758. height: math.unit(100, "feet")
  22759. },
  22760. {
  22761. name: "Megamacto",
  22762. height: math.unit(50, "miles")
  22763. },
  22764. ]
  22765. ))
  22766. characterMakers.push(() => makeCharacter(
  22767. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22768. {
  22769. side: {
  22770. height: math.unit(30, "feet"),
  22771. weight: math.unit(35000, "kg"),
  22772. name: "Side",
  22773. image: {
  22774. source: "./media/characters/alydar/side.svg",
  22775. extra: 234 / 222,
  22776. bottom: 6.5 / 241
  22777. }
  22778. },
  22779. front: {
  22780. height: math.unit(30, "feet"),
  22781. weight: math.unit(35000, "kg"),
  22782. name: "Front",
  22783. image: {
  22784. source: "./media/characters/alydar/front.svg",
  22785. extra: 223.37 / 210.2,
  22786. bottom: 22.3 / 246.76
  22787. }
  22788. },
  22789. top: {
  22790. height: math.unit(64.54, "feet"),
  22791. weight: math.unit(35000, "kg"),
  22792. name: "Top",
  22793. image: {
  22794. source: "./media/characters/alydar/top.svg"
  22795. }
  22796. },
  22797. anthro: {
  22798. height: math.unit(30, "feet"),
  22799. weight: math.unit(9000, "kg"),
  22800. name: "Anthro",
  22801. image: {
  22802. source: "./media/characters/alydar/anthro.svg",
  22803. extra: 432 / 421,
  22804. bottom: 7.18 / 440
  22805. }
  22806. },
  22807. maw: {
  22808. height: math.unit(11.693, "feet"),
  22809. name: "Maw",
  22810. image: {
  22811. source: "./media/characters/alydar/maw.svg"
  22812. }
  22813. },
  22814. head: {
  22815. height: math.unit(11.693, "feet"),
  22816. name: "Head",
  22817. image: {
  22818. source: "./media/characters/alydar/head.svg"
  22819. }
  22820. },
  22821. headAlt: {
  22822. height: math.unit(12.861, "feet"),
  22823. name: "Head (Alt)",
  22824. image: {
  22825. source: "./media/characters/alydar/head-alt.svg"
  22826. }
  22827. },
  22828. wing: {
  22829. height: math.unit(20.712, "feet"),
  22830. name: "Wing",
  22831. image: {
  22832. source: "./media/characters/alydar/wing.svg"
  22833. }
  22834. },
  22835. wingFeather: {
  22836. height: math.unit(9.662, "feet"),
  22837. name: "Wing Feather",
  22838. image: {
  22839. source: "./media/characters/alydar/wing-feather.svg"
  22840. }
  22841. },
  22842. countourFeather: {
  22843. height: math.unit(4.154, "feet"),
  22844. name: "Contour Feather",
  22845. image: {
  22846. source: "./media/characters/alydar/contour-feather.svg"
  22847. }
  22848. },
  22849. },
  22850. [
  22851. {
  22852. name: "Diplomatic",
  22853. height: math.unit(13, "feet"),
  22854. default: true
  22855. },
  22856. {
  22857. name: "Small",
  22858. height: math.unit(30, "feet")
  22859. },
  22860. {
  22861. name: "Normal",
  22862. height: math.unit(95, "feet"),
  22863. default: true
  22864. },
  22865. {
  22866. name: "Large",
  22867. height: math.unit(285, "feet")
  22868. },
  22869. {
  22870. name: "Incomprehensible",
  22871. height: math.unit(450, "megameters")
  22872. },
  22873. ]
  22874. ))
  22875. characterMakers.push(() => makeCharacter(
  22876. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22877. {
  22878. side: {
  22879. height: math.unit(11, "feet"),
  22880. weight: math.unit(1750, "kg"),
  22881. name: "Side",
  22882. image: {
  22883. source: "./media/characters/selicia/side.svg",
  22884. extra: 440 / 396,
  22885. bottom: 24.8 / 465.979
  22886. }
  22887. },
  22888. maw: {
  22889. height: math.unit(4.665, "feet"),
  22890. name: "Maw",
  22891. image: {
  22892. source: "./media/characters/selicia/maw.svg"
  22893. }
  22894. },
  22895. },
  22896. [
  22897. {
  22898. name: "Normal",
  22899. height: math.unit(11, "feet"),
  22900. default: true
  22901. },
  22902. ]
  22903. ))
  22904. characterMakers.push(() => makeCharacter(
  22905. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22906. {
  22907. side: {
  22908. height: math.unit(2 + 6 / 12, "feet"),
  22909. weight: math.unit(30, "lb"),
  22910. name: "Side",
  22911. image: {
  22912. source: "./media/characters/layla/side.svg",
  22913. extra: 244 / 188,
  22914. bottom: 18.2 / 262.1
  22915. }
  22916. },
  22917. back: {
  22918. height: math.unit(2 + 6 / 12, "feet"),
  22919. weight: math.unit(30, "lb"),
  22920. name: "Back",
  22921. image: {
  22922. source: "./media/characters/layla/back.svg",
  22923. extra: 308 / 241.5,
  22924. bottom: 8.9 / 316.8
  22925. }
  22926. },
  22927. cumming: {
  22928. height: math.unit(2 + 6 / 12, "feet"),
  22929. weight: math.unit(30, "lb"),
  22930. name: "Cumming",
  22931. image: {
  22932. source: "./media/characters/layla/cumming.svg",
  22933. extra: 342 / 279,
  22934. bottom: 595 / 938
  22935. }
  22936. },
  22937. dickFlaccid: {
  22938. height: math.unit(2.595, "feet"),
  22939. name: "Flaccid Genitals",
  22940. image: {
  22941. source: "./media/characters/layla/dick-flaccid.svg"
  22942. }
  22943. },
  22944. dickErect: {
  22945. height: math.unit(2.359, "feet"),
  22946. name: "Erect Genitals",
  22947. image: {
  22948. source: "./media/characters/layla/dick-erect.svg"
  22949. }
  22950. },
  22951. },
  22952. [
  22953. {
  22954. name: "Micro",
  22955. height: math.unit(1, "inch")
  22956. },
  22957. {
  22958. name: "Small",
  22959. height: math.unit(1, "foot")
  22960. },
  22961. {
  22962. name: "Normal",
  22963. height: math.unit(2 + 6 / 12, "feet"),
  22964. default: true
  22965. },
  22966. {
  22967. name: "Macro",
  22968. height: math.unit(200, "feet")
  22969. },
  22970. {
  22971. name: "Megamacro",
  22972. height: math.unit(1000, "miles")
  22973. },
  22974. {
  22975. name: "Planetary",
  22976. height: math.unit(8000, "miles")
  22977. },
  22978. {
  22979. name: "True Layla",
  22980. height: math.unit(200000 * 7, "multiverses")
  22981. },
  22982. ]
  22983. ))
  22984. characterMakers.push(() => makeCharacter(
  22985. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22986. {
  22987. back: {
  22988. height: math.unit(10.5, "feet"),
  22989. weight: math.unit(800, "lb"),
  22990. name: "Back",
  22991. image: {
  22992. source: "./media/characters/knox/back.svg",
  22993. extra: 1486 / 1089,
  22994. bottom: 107 / 1601.4
  22995. }
  22996. },
  22997. side: {
  22998. height: math.unit(10.5, "feet"),
  22999. weight: math.unit(800, "lb"),
  23000. name: "Side",
  23001. image: {
  23002. source: "./media/characters/knox/side.svg",
  23003. extra: 244 / 218,
  23004. bottom: 14 / 260
  23005. }
  23006. },
  23007. },
  23008. [
  23009. {
  23010. name: "Compact",
  23011. height: math.unit(10.5, "feet"),
  23012. default: true
  23013. },
  23014. {
  23015. name: "Dynamax",
  23016. height: math.unit(210, "feet")
  23017. },
  23018. {
  23019. name: "Full Macro",
  23020. height: math.unit(850, "feet")
  23021. },
  23022. ]
  23023. ))
  23024. characterMakers.push(() => makeCharacter(
  23025. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23026. {
  23027. front: {
  23028. height: math.unit(6, "feet"),
  23029. weight: math.unit(152, "lb"),
  23030. name: "Front",
  23031. image: {
  23032. source: "./media/characters/shin-pikachu/front.svg",
  23033. extra: 1574 / 1480,
  23034. bottom: 53.3 / 1626
  23035. }
  23036. },
  23037. hand: {
  23038. height: math.unit(1.055, "feet"),
  23039. name: "Hand",
  23040. image: {
  23041. source: "./media/characters/shin-pikachu/hand.svg"
  23042. }
  23043. },
  23044. foot: {
  23045. height: math.unit(1.1, "feet"),
  23046. name: "Foot",
  23047. image: {
  23048. source: "./media/characters/shin-pikachu/foot.svg"
  23049. }
  23050. },
  23051. collar: {
  23052. height: math.unit(0.386, "feet"),
  23053. name: "Collar",
  23054. image: {
  23055. source: "./media/characters/shin-pikachu/collar.svg"
  23056. }
  23057. },
  23058. },
  23059. [
  23060. {
  23061. name: "Smallest",
  23062. height: math.unit(0.5, "inches")
  23063. },
  23064. {
  23065. name: "Micro",
  23066. height: math.unit(6, "inches")
  23067. },
  23068. {
  23069. name: "Normal",
  23070. height: math.unit(6, "feet"),
  23071. default: true
  23072. },
  23073. {
  23074. name: "Macro",
  23075. height: math.unit(150, "feet")
  23076. },
  23077. ]
  23078. ))
  23079. characterMakers.push(() => makeCharacter(
  23080. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23081. {
  23082. front: {
  23083. height: math.unit(28, "feet"),
  23084. weight: math.unit(10500, "lb"),
  23085. name: "Front",
  23086. image: {
  23087. source: "./media/characters/kayda/front.svg",
  23088. extra: 1536 / 1428,
  23089. bottom: 68.7 / 1603
  23090. }
  23091. },
  23092. back: {
  23093. height: math.unit(28, "feet"),
  23094. weight: math.unit(10500, "lb"),
  23095. name: "Back",
  23096. image: {
  23097. source: "./media/characters/kayda/back.svg",
  23098. extra: 1557 / 1464,
  23099. bottom: 39.5 / 1597.49
  23100. }
  23101. },
  23102. dick: {
  23103. height: math.unit(3.858, "feet"),
  23104. name: "Dick",
  23105. image: {
  23106. source: "./media/characters/kayda/dick.svg"
  23107. }
  23108. },
  23109. },
  23110. [
  23111. {
  23112. name: "Macro",
  23113. height: math.unit(28, "feet"),
  23114. default: true
  23115. },
  23116. ]
  23117. ))
  23118. characterMakers.push(() => makeCharacter(
  23119. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23120. {
  23121. front: {
  23122. height: math.unit(10 + 11 / 12, "feet"),
  23123. weight: math.unit(1400, "lb"),
  23124. name: "Front",
  23125. image: {
  23126. source: "./media/characters/brian/front.svg",
  23127. extra: 737 / 692,
  23128. bottom: 55.4 / 785
  23129. }
  23130. },
  23131. },
  23132. [
  23133. {
  23134. name: "Normal",
  23135. height: math.unit(10 + 11 / 12, "feet"),
  23136. default: true
  23137. },
  23138. ]
  23139. ))
  23140. characterMakers.push(() => makeCharacter(
  23141. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23142. {
  23143. front: {
  23144. height: math.unit(5 + 8 / 12, "feet"),
  23145. weight: math.unit(140, "lb"),
  23146. name: "Front",
  23147. image: {
  23148. source: "./media/characters/khemri/front.svg",
  23149. extra: 4780 / 4059,
  23150. bottom: 80.1 / 4859.25
  23151. }
  23152. },
  23153. },
  23154. [
  23155. {
  23156. name: "Micro",
  23157. height: math.unit(6, "inches")
  23158. },
  23159. {
  23160. name: "Normal",
  23161. height: math.unit(5 + 8 / 12, "feet"),
  23162. default: true
  23163. },
  23164. ]
  23165. ))
  23166. characterMakers.push(() => makeCharacter(
  23167. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23168. {
  23169. front: {
  23170. height: math.unit(13, "feet"),
  23171. weight: math.unit(1700, "lb"),
  23172. name: "Front",
  23173. image: {
  23174. source: "./media/characters/felix-braveheart/front.svg",
  23175. extra: 1222 / 1157,
  23176. bottom: 53.2 / 1280
  23177. }
  23178. },
  23179. back: {
  23180. height: math.unit(13, "feet"),
  23181. weight: math.unit(1700, "lb"),
  23182. name: "Back",
  23183. image: {
  23184. source: "./media/characters/felix-braveheart/back.svg",
  23185. extra: 1277 / 1203,
  23186. bottom: 50.2 / 1327
  23187. }
  23188. },
  23189. feral: {
  23190. height: math.unit(6, "feet"),
  23191. weight: math.unit(400, "lb"),
  23192. name: "Feral",
  23193. image: {
  23194. source: "./media/characters/felix-braveheart/feral.svg",
  23195. extra: 682 / 625,
  23196. bottom: 6.9 / 688
  23197. }
  23198. },
  23199. },
  23200. [
  23201. {
  23202. name: "Normal",
  23203. height: math.unit(13, "feet"),
  23204. default: true
  23205. },
  23206. ]
  23207. ))
  23208. characterMakers.push(() => makeCharacter(
  23209. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23210. {
  23211. side: {
  23212. height: math.unit(5 + 11 / 12, "feet"),
  23213. weight: math.unit(1400, "lb"),
  23214. name: "Side",
  23215. image: {
  23216. source: "./media/characters/shadow-blade/side.svg",
  23217. extra: 1726 / 1267,
  23218. bottom: 58.4 / 1785
  23219. }
  23220. },
  23221. },
  23222. [
  23223. {
  23224. name: "Normal",
  23225. height: math.unit(5 + 11 / 12, "feet"),
  23226. default: true
  23227. },
  23228. ]
  23229. ))
  23230. characterMakers.push(() => makeCharacter(
  23231. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23232. {
  23233. front: {
  23234. height: math.unit(1 + 6 / 12, "feet"),
  23235. weight: math.unit(25, "lb"),
  23236. name: "Front",
  23237. image: {
  23238. source: "./media/characters/karla-halldor/front.svg",
  23239. extra: 1459 / 1383,
  23240. bottom: 12 / 1472
  23241. }
  23242. },
  23243. },
  23244. [
  23245. {
  23246. name: "Normal",
  23247. height: math.unit(1 + 6 / 12, "feet"),
  23248. default: true
  23249. },
  23250. ]
  23251. ))
  23252. characterMakers.push(() => makeCharacter(
  23253. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23254. {
  23255. front: {
  23256. height: math.unit(6 + 2 / 12, "feet"),
  23257. weight: math.unit(160, "lb"),
  23258. name: "Front",
  23259. image: {
  23260. source: "./media/characters/ariam/front.svg",
  23261. extra: 714 / 617,
  23262. bottom: 23.4 / 737,
  23263. }
  23264. },
  23265. squatting: {
  23266. height: math.unit(4.1, "feet"),
  23267. weight: math.unit(160, "lb"),
  23268. name: "Squatting",
  23269. image: {
  23270. source: "./media/characters/ariam/squatting.svg",
  23271. extra: 2617 / 2112,
  23272. bottom: 61.2 / 2681,
  23273. }
  23274. },
  23275. },
  23276. [
  23277. {
  23278. name: "Normal",
  23279. height: math.unit(6 + 2 / 12, "feet"),
  23280. default: true
  23281. },
  23282. {
  23283. name: "Normal+",
  23284. height: math.unit(4, "meters")
  23285. },
  23286. {
  23287. name: "Macro",
  23288. height: math.unit(50, "meters")
  23289. },
  23290. {
  23291. name: "Macro+",
  23292. height: math.unit(100, "meters")
  23293. },
  23294. {
  23295. name: "Megamacro",
  23296. height: math.unit(20, "km")
  23297. },
  23298. ]
  23299. ))
  23300. characterMakers.push(() => makeCharacter(
  23301. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23302. {
  23303. front: {
  23304. height: math.unit(1.67, "meters"),
  23305. weight: math.unit(140, "lb"),
  23306. name: "Front",
  23307. image: {
  23308. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23309. extra: 438 / 410,
  23310. bottom: 0.75 / 439
  23311. }
  23312. },
  23313. },
  23314. [
  23315. {
  23316. name: "Shrunken",
  23317. height: math.unit(7.6, "cm")
  23318. },
  23319. {
  23320. name: "Human Scale",
  23321. height: math.unit(1.67, "meters")
  23322. },
  23323. {
  23324. name: "Wolxi Scale",
  23325. height: math.unit(36.7, "meters"),
  23326. default: true
  23327. },
  23328. ]
  23329. ))
  23330. characterMakers.push(() => makeCharacter(
  23331. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23332. {
  23333. front: {
  23334. height: math.unit(1.73, "meters"),
  23335. weight: math.unit(240, "lb"),
  23336. name: "Front",
  23337. image: {
  23338. source: "./media/characters/izue-two-mothers/front.svg",
  23339. extra: 469 / 437,
  23340. bottom: 1.24 / 470.6
  23341. }
  23342. },
  23343. },
  23344. [
  23345. {
  23346. name: "Shrunken",
  23347. height: math.unit(7.86, "cm")
  23348. },
  23349. {
  23350. name: "Human Scale",
  23351. height: math.unit(1.73, "meters")
  23352. },
  23353. {
  23354. name: "Wolxi Scale",
  23355. height: math.unit(38, "meters"),
  23356. default: true
  23357. },
  23358. ]
  23359. ))
  23360. characterMakers.push(() => makeCharacter(
  23361. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23362. {
  23363. front: {
  23364. height: math.unit(1.55, "meters"),
  23365. weight: math.unit(120, "lb"),
  23366. name: "Front",
  23367. image: {
  23368. source: "./media/characters/teeku-love-shack/front.svg",
  23369. extra: 387 / 362,
  23370. bottom: 1.51 / 388
  23371. }
  23372. },
  23373. },
  23374. [
  23375. {
  23376. name: "Shrunken",
  23377. height: math.unit(7, "cm")
  23378. },
  23379. {
  23380. name: "Human Scale",
  23381. height: math.unit(1.55, "meters")
  23382. },
  23383. {
  23384. name: "Wolxi Scale",
  23385. height: math.unit(34.1, "meters"),
  23386. default: true
  23387. },
  23388. ]
  23389. ))
  23390. characterMakers.push(() => makeCharacter(
  23391. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23392. {
  23393. front: {
  23394. height: math.unit(1.83, "meters"),
  23395. weight: math.unit(135, "lb"),
  23396. name: "Front",
  23397. image: {
  23398. source: "./media/characters/dejma-the-red/front.svg",
  23399. extra: 480 / 458,
  23400. bottom: 1.8 / 482
  23401. }
  23402. },
  23403. },
  23404. [
  23405. {
  23406. name: "Shrunken",
  23407. height: math.unit(8.3, "cm")
  23408. },
  23409. {
  23410. name: "Human Scale",
  23411. height: math.unit(1.83, "meters")
  23412. },
  23413. {
  23414. name: "Wolxi Scale",
  23415. height: math.unit(40, "meters"),
  23416. default: true
  23417. },
  23418. ]
  23419. ))
  23420. characterMakers.push(() => makeCharacter(
  23421. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23422. {
  23423. front: {
  23424. height: math.unit(1.78, "meters"),
  23425. weight: math.unit(65, "kg"),
  23426. name: "Front",
  23427. image: {
  23428. source: "./media/characters/aki/front.svg",
  23429. extra: 452 / 415
  23430. }
  23431. },
  23432. frontNsfw: {
  23433. height: math.unit(1.78, "meters"),
  23434. weight: math.unit(65, "kg"),
  23435. name: "Front (NSFW)",
  23436. image: {
  23437. source: "./media/characters/aki/front-nsfw.svg",
  23438. extra: 452 / 415
  23439. }
  23440. },
  23441. back: {
  23442. height: math.unit(1.78, "meters"),
  23443. weight: math.unit(65, "kg"),
  23444. name: "Back",
  23445. image: {
  23446. source: "./media/characters/aki/back.svg",
  23447. extra: 452 / 415
  23448. }
  23449. },
  23450. rump: {
  23451. height: math.unit(2.05, "feet"),
  23452. name: "Rump",
  23453. image: {
  23454. source: "./media/characters/aki/rump.svg"
  23455. }
  23456. },
  23457. dick: {
  23458. height: math.unit(0.95, "feet"),
  23459. name: "Dick",
  23460. image: {
  23461. source: "./media/characters/aki/dick.svg"
  23462. }
  23463. },
  23464. },
  23465. [
  23466. {
  23467. name: "Micro",
  23468. height: math.unit(15, "cm")
  23469. },
  23470. {
  23471. name: "Normal",
  23472. height: math.unit(178, "cm"),
  23473. default: true
  23474. },
  23475. {
  23476. name: "Macro",
  23477. height: math.unit(214, "m")
  23478. },
  23479. {
  23480. name: "Macro+",
  23481. height: math.unit(534, "m")
  23482. },
  23483. ]
  23484. ))
  23485. characterMakers.push(() => makeCharacter(
  23486. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23487. {
  23488. front: {
  23489. height: math.unit(5 + 5 / 12, "feet"),
  23490. weight: math.unit(120, "lb"),
  23491. name: "Front",
  23492. image: {
  23493. source: "./media/characters/ari/front.svg",
  23494. extra: 714.5 / 682,
  23495. bottom: 8 / 722.5
  23496. }
  23497. },
  23498. },
  23499. [
  23500. {
  23501. name: "Normal",
  23502. height: math.unit(5 + 5 / 12, "feet")
  23503. },
  23504. {
  23505. name: "Macro",
  23506. height: math.unit(100, "feet"),
  23507. default: true
  23508. },
  23509. {
  23510. name: "Megamacro",
  23511. height: math.unit(100, "miles")
  23512. },
  23513. {
  23514. name: "Gigamacro",
  23515. height: math.unit(80000, "miles")
  23516. },
  23517. ]
  23518. ))
  23519. characterMakers.push(() => makeCharacter(
  23520. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23521. {
  23522. side: {
  23523. height: math.unit(9, "feet"),
  23524. weight: math.unit(400, "kg"),
  23525. name: "Side",
  23526. image: {
  23527. source: "./media/characters/bolt/side.svg",
  23528. extra: 1126 / 896,
  23529. bottom: 60 / 1187.3,
  23530. }
  23531. },
  23532. },
  23533. [
  23534. {
  23535. name: "Micro",
  23536. height: math.unit(5, "inches")
  23537. },
  23538. {
  23539. name: "Normal",
  23540. height: math.unit(9, "feet"),
  23541. default: true
  23542. },
  23543. {
  23544. name: "Macro",
  23545. height: math.unit(700, "feet")
  23546. },
  23547. {
  23548. name: "Max Size",
  23549. height: math.unit(1.52e22, "yottameters")
  23550. },
  23551. ]
  23552. ))
  23553. characterMakers.push(() => makeCharacter(
  23554. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23555. {
  23556. front: {
  23557. height: math.unit(4.53, "meters"),
  23558. weight: math.unit(3, "tons"),
  23559. name: "Front",
  23560. image: {
  23561. source: "./media/characters/draekon-sylviar/front.svg",
  23562. extra: 1228 / 1068,
  23563. bottom: 41 / 1270
  23564. }
  23565. },
  23566. tail: {
  23567. height: math.unit(1.772, "meter"),
  23568. name: "Tail",
  23569. image: {
  23570. source: "./media/characters/draekon-sylviar/tail.svg"
  23571. }
  23572. },
  23573. head: {
  23574. height: math.unit(1.331, "meter"),
  23575. name: "Head",
  23576. image: {
  23577. source: "./media/characters/draekon-sylviar/head.svg"
  23578. }
  23579. },
  23580. hand: {
  23581. height: math.unit(0.564, "meter"),
  23582. name: "Hand",
  23583. image: {
  23584. source: "./media/characters/draekon-sylviar/hand.svg"
  23585. }
  23586. },
  23587. foot: {
  23588. height: math.unit(0.621, "meter"),
  23589. name: "Foot",
  23590. image: {
  23591. source: "./media/characters/draekon-sylviar/foot.svg",
  23592. bottom: 32 / 324
  23593. }
  23594. },
  23595. dick: {
  23596. height: math.unit(61, "cm"),
  23597. name: "Dick",
  23598. image: {
  23599. source: "./media/characters/draekon-sylviar/dick.svg"
  23600. }
  23601. },
  23602. dickseparated: {
  23603. height: math.unit(61, "cm"),
  23604. name: "Dick-separated",
  23605. image: {
  23606. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23607. }
  23608. },
  23609. },
  23610. [
  23611. {
  23612. name: "Small",
  23613. height: math.unit(4.53 / 2, "meters"),
  23614. default: true
  23615. },
  23616. {
  23617. name: "Normal",
  23618. height: math.unit(4.53, "meters"),
  23619. default: true
  23620. },
  23621. {
  23622. name: "Large",
  23623. height: math.unit(4.53 * 2, "meters"),
  23624. },
  23625. ]
  23626. ))
  23627. characterMakers.push(() => makeCharacter(
  23628. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23629. {
  23630. front: {
  23631. height: math.unit(6 + 2 / 12, "feet"),
  23632. weight: math.unit(180, "lb"),
  23633. name: "Front",
  23634. image: {
  23635. source: "./media/characters/brawler/front.svg",
  23636. extra: 3301 / 3027,
  23637. bottom: 138 / 3439
  23638. }
  23639. },
  23640. },
  23641. [
  23642. {
  23643. name: "Normal",
  23644. height: math.unit(6 + 2 / 12, "feet"),
  23645. default: true
  23646. },
  23647. ]
  23648. ))
  23649. characterMakers.push(() => makeCharacter(
  23650. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23651. {
  23652. front: {
  23653. height: math.unit(11, "feet"),
  23654. weight: math.unit(1000, "lb"),
  23655. name: "Front",
  23656. image: {
  23657. source: "./media/characters/alex/front.svg",
  23658. bottom: 44.5 / 620
  23659. }
  23660. },
  23661. },
  23662. [
  23663. {
  23664. name: "Micro",
  23665. height: math.unit(5, "inches")
  23666. },
  23667. {
  23668. name: "Normal",
  23669. height: math.unit(11, "feet"),
  23670. default: true
  23671. },
  23672. {
  23673. name: "Macro",
  23674. height: math.unit(9.5e9, "feet")
  23675. },
  23676. {
  23677. name: "Max Size",
  23678. height: math.unit(1.4e283, "yottameters")
  23679. },
  23680. ]
  23681. ))
  23682. characterMakers.push(() => makeCharacter(
  23683. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23684. {
  23685. female: {
  23686. height: math.unit(29.9, "m"),
  23687. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23688. name: "Female",
  23689. image: {
  23690. source: "./media/characters/zenari/female.svg",
  23691. extra: 3281.6 / 3217,
  23692. bottom: 72.2 / 3353
  23693. }
  23694. },
  23695. male: {
  23696. height: math.unit(27.7, "m"),
  23697. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23698. name: "Male",
  23699. image: {
  23700. source: "./media/characters/zenari/male.svg",
  23701. extra: 3008 / 2991,
  23702. bottom: 54.6 / 3069
  23703. }
  23704. },
  23705. },
  23706. [
  23707. {
  23708. name: "Macro",
  23709. height: math.unit(29.7, "meters"),
  23710. default: true
  23711. },
  23712. ]
  23713. ))
  23714. characterMakers.push(() => makeCharacter(
  23715. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23716. {
  23717. female: {
  23718. height: math.unit(23.8, "m"),
  23719. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23720. name: "Female",
  23721. image: {
  23722. source: "./media/characters/mactarian/female.svg",
  23723. extra: 2662 / 2569,
  23724. bottom: 73 / 2736
  23725. }
  23726. },
  23727. male: {
  23728. height: math.unit(23.8, "m"),
  23729. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23730. name: "Male",
  23731. image: {
  23732. source: "./media/characters/mactarian/male.svg",
  23733. extra: 2673 / 2600,
  23734. bottom: 76 / 2750
  23735. }
  23736. },
  23737. },
  23738. [
  23739. {
  23740. name: "Macro",
  23741. height: math.unit(23.8, "meters"),
  23742. default: true
  23743. },
  23744. ]
  23745. ))
  23746. characterMakers.push(() => makeCharacter(
  23747. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23748. {
  23749. female: {
  23750. height: math.unit(19.3, "m"),
  23751. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23752. name: "Female",
  23753. image: {
  23754. source: "./media/characters/umok/female.svg",
  23755. extra: 2186 / 2078,
  23756. bottom: 87 / 2277
  23757. }
  23758. },
  23759. male: {
  23760. height: math.unit(19.5, "m"),
  23761. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23762. name: "Male",
  23763. image: {
  23764. source: "./media/characters/umok/male.svg",
  23765. extra: 2233 / 2140,
  23766. bottom: 24.4 / 2258
  23767. }
  23768. },
  23769. },
  23770. [
  23771. {
  23772. name: "Macro",
  23773. height: math.unit(19.3, "meters"),
  23774. default: true
  23775. },
  23776. ]
  23777. ))
  23778. characterMakers.push(() => makeCharacter(
  23779. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23780. {
  23781. female: {
  23782. height: math.unit(26.15, "m"),
  23783. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23784. name: "Female",
  23785. image: {
  23786. source: "./media/characters/joraxian/female.svg",
  23787. extra: 2912 / 2824,
  23788. bottom: 36 / 2956
  23789. }
  23790. },
  23791. male: {
  23792. height: math.unit(25.4, "m"),
  23793. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23794. name: "Male",
  23795. image: {
  23796. source: "./media/characters/joraxian/male.svg",
  23797. extra: 2877 / 2721,
  23798. bottom: 82 / 2967
  23799. }
  23800. },
  23801. },
  23802. [
  23803. {
  23804. name: "Macro",
  23805. height: math.unit(26.15, "meters"),
  23806. default: true
  23807. },
  23808. ]
  23809. ))
  23810. characterMakers.push(() => makeCharacter(
  23811. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23812. {
  23813. female: {
  23814. height: math.unit(21.6, "m"),
  23815. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23816. name: "Female",
  23817. image: {
  23818. source: "./media/characters/sthara/female.svg",
  23819. extra: 2516 / 2347,
  23820. bottom: 21.5 / 2537
  23821. }
  23822. },
  23823. male: {
  23824. height: math.unit(24, "m"),
  23825. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23826. name: "Male",
  23827. image: {
  23828. source: "./media/characters/sthara/male.svg",
  23829. extra: 2732 / 2607,
  23830. bottom: 23 / 2732
  23831. }
  23832. },
  23833. },
  23834. [
  23835. {
  23836. name: "Macro",
  23837. height: math.unit(21.6, "meters"),
  23838. default: true
  23839. },
  23840. ]
  23841. ))
  23842. characterMakers.push(() => makeCharacter(
  23843. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23844. {
  23845. front: {
  23846. height: math.unit(6 + 4 / 12, "feet"),
  23847. weight: math.unit(175, "lb"),
  23848. name: "Front",
  23849. image: {
  23850. source: "./media/characters/luka-bryzant/front.svg",
  23851. extra: 311 / 289,
  23852. bottom: 4 / 315
  23853. }
  23854. },
  23855. back: {
  23856. height: math.unit(6 + 4 / 12, "feet"),
  23857. weight: math.unit(175, "lb"),
  23858. name: "Back",
  23859. image: {
  23860. source: "./media/characters/luka-bryzant/back.svg",
  23861. extra: 311 / 289,
  23862. bottom: 3.8 / 313.7
  23863. }
  23864. },
  23865. },
  23866. [
  23867. {
  23868. name: "Micro",
  23869. height: math.unit(10, "inches")
  23870. },
  23871. {
  23872. name: "Normal",
  23873. height: math.unit(6 + 4 / 12, "feet"),
  23874. default: true
  23875. },
  23876. {
  23877. name: "Large",
  23878. height: math.unit(12, "feet")
  23879. },
  23880. ]
  23881. ))
  23882. characterMakers.push(() => makeCharacter(
  23883. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23884. {
  23885. front: {
  23886. height: math.unit(5 + 7 / 12, "feet"),
  23887. weight: math.unit(185, "lb"),
  23888. name: "Front",
  23889. image: {
  23890. source: "./media/characters/aman-aquila/front.svg",
  23891. extra: 1013 / 976,
  23892. bottom: 45.6 / 1057
  23893. }
  23894. },
  23895. side: {
  23896. height: math.unit(5 + 7 / 12, "feet"),
  23897. weight: math.unit(185, "lb"),
  23898. name: "Side",
  23899. image: {
  23900. source: "./media/characters/aman-aquila/side.svg",
  23901. extra: 1054 / 1011,
  23902. bottom: 15 / 1070
  23903. }
  23904. },
  23905. back: {
  23906. height: math.unit(5 + 7 / 12, "feet"),
  23907. weight: math.unit(185, "lb"),
  23908. name: "Back",
  23909. image: {
  23910. source: "./media/characters/aman-aquila/back.svg",
  23911. extra: 1026 / 970,
  23912. bottom: 12 / 1039
  23913. }
  23914. },
  23915. head: {
  23916. height: math.unit(1.211, "feet"),
  23917. name: "Head",
  23918. image: {
  23919. source: "./media/characters/aman-aquila/head.svg",
  23920. }
  23921. },
  23922. },
  23923. [
  23924. {
  23925. name: "Minimicro",
  23926. height: math.unit(0.057, "inches")
  23927. },
  23928. {
  23929. name: "Micro",
  23930. height: math.unit(7, "inches")
  23931. },
  23932. {
  23933. name: "Mini",
  23934. height: math.unit(3 + 7 / 12, "feet")
  23935. },
  23936. {
  23937. name: "Normal",
  23938. height: math.unit(5 + 7 / 12, "feet"),
  23939. default: true
  23940. },
  23941. {
  23942. name: "Macro",
  23943. height: math.unit(157 + 7 / 12, "feet")
  23944. },
  23945. {
  23946. name: "Megamacro",
  23947. height: math.unit(1557 + 7 / 12, "feet")
  23948. },
  23949. {
  23950. name: "Gigamacro",
  23951. height: math.unit(15557 + 7 / 12, "feet")
  23952. },
  23953. ]
  23954. ))
  23955. characterMakers.push(() => makeCharacter(
  23956. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23957. {
  23958. front: {
  23959. height: math.unit(3 + 2 / 12, "inches"),
  23960. weight: math.unit(0.3, "ounces"),
  23961. name: "Front",
  23962. image: {
  23963. source: "./media/characters/hiphae/front.svg",
  23964. extra: 1931 / 1683,
  23965. bottom: 24 / 1955
  23966. }
  23967. },
  23968. },
  23969. [
  23970. {
  23971. name: "Normal",
  23972. height: math.unit(3 + 1 / 2, "inches"),
  23973. default: true
  23974. },
  23975. ]
  23976. ))
  23977. characterMakers.push(() => makeCharacter(
  23978. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23979. {
  23980. front: {
  23981. height: math.unit(5 + 10 / 12, "feet"),
  23982. weight: math.unit(165, "lb"),
  23983. name: "Front",
  23984. image: {
  23985. source: "./media/characters/nicky/front.svg",
  23986. extra: 3144 / 2886,
  23987. bottom: 45.6 / 3192
  23988. }
  23989. },
  23990. back: {
  23991. height: math.unit(5 + 10 / 12, "feet"),
  23992. weight: math.unit(165, "lb"),
  23993. name: "Back",
  23994. image: {
  23995. source: "./media/characters/nicky/back.svg",
  23996. extra: 3055 / 2804,
  23997. bottom: 28.4 / 3087
  23998. }
  23999. },
  24000. frontclothed: {
  24001. height: math.unit(5 + 10 / 12, "feet"),
  24002. weight: math.unit(165, "lb"),
  24003. name: "Front-clothed",
  24004. image: {
  24005. source: "./media/characters/nicky/front-clothed.svg",
  24006. extra: 3184.9 / 2926.9,
  24007. bottom: 86.5 / 3239.9
  24008. }
  24009. },
  24010. foot: {
  24011. height: math.unit(1.16, "feet"),
  24012. name: "Foot",
  24013. image: {
  24014. source: "./media/characters/nicky/foot.svg"
  24015. }
  24016. },
  24017. feet: {
  24018. height: math.unit(1.34, "feet"),
  24019. name: "Feet",
  24020. image: {
  24021. source: "./media/characters/nicky/feet.svg"
  24022. }
  24023. },
  24024. maw: {
  24025. height: math.unit(0.9, "feet"),
  24026. name: "Maw",
  24027. image: {
  24028. source: "./media/characters/nicky/maw.svg"
  24029. }
  24030. },
  24031. },
  24032. [
  24033. {
  24034. name: "Normal",
  24035. height: math.unit(5 + 10 / 12, "feet"),
  24036. default: true
  24037. },
  24038. {
  24039. name: "Macro",
  24040. height: math.unit(60, "feet")
  24041. },
  24042. {
  24043. name: "Megamacro",
  24044. height: math.unit(1, "mile")
  24045. },
  24046. ]
  24047. ))
  24048. characterMakers.push(() => makeCharacter(
  24049. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24050. {
  24051. side: {
  24052. height: math.unit(10, "feet"),
  24053. weight: math.unit(600, "lb"),
  24054. name: "Side",
  24055. image: {
  24056. source: "./media/characters/blair/side.svg",
  24057. bottom: 16.6 / 475,
  24058. extra: 458 / 431
  24059. }
  24060. },
  24061. },
  24062. [
  24063. {
  24064. name: "Micro",
  24065. height: math.unit(8, "inches")
  24066. },
  24067. {
  24068. name: "Normal",
  24069. height: math.unit(10, "feet"),
  24070. default: true
  24071. },
  24072. {
  24073. name: "Macro",
  24074. height: math.unit(180, "feet")
  24075. },
  24076. ]
  24077. ))
  24078. characterMakers.push(() => makeCharacter(
  24079. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24080. {
  24081. front: {
  24082. height: math.unit(5 + 4 / 12, "feet"),
  24083. weight: math.unit(125, "lb"),
  24084. name: "Front",
  24085. image: {
  24086. source: "./media/characters/fisher/front.svg",
  24087. extra: 444 / 390,
  24088. bottom: 2 / 444.8
  24089. }
  24090. },
  24091. },
  24092. [
  24093. {
  24094. name: "Micro",
  24095. height: math.unit(4, "inches")
  24096. },
  24097. {
  24098. name: "Normal",
  24099. height: math.unit(5 + 4 / 12, "feet"),
  24100. default: true
  24101. },
  24102. {
  24103. name: "Macro",
  24104. height: math.unit(100, "feet")
  24105. },
  24106. ]
  24107. ))
  24108. characterMakers.push(() => makeCharacter(
  24109. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24110. {
  24111. front: {
  24112. height: math.unit(6.71, "feet"),
  24113. weight: math.unit(200, "lb"),
  24114. capacity: math.unit(1000000, "people"),
  24115. name: "Front",
  24116. image: {
  24117. source: "./media/characters/gliss/front.svg",
  24118. extra: 2347 / 2231,
  24119. bottom: 113 / 2462
  24120. }
  24121. },
  24122. hammerspaceSize: {
  24123. height: math.unit(6.71 * 717, "feet"),
  24124. weight: math.unit(200, "lb"),
  24125. capacity: math.unit(1000000, "people"),
  24126. name: "Hammerspace Size",
  24127. image: {
  24128. source: "./media/characters/gliss/front.svg",
  24129. extra: 2347 / 2231,
  24130. bottom: 113 / 2462
  24131. }
  24132. },
  24133. },
  24134. [
  24135. {
  24136. name: "Normal",
  24137. height: math.unit(6.71, "feet"),
  24138. default: true
  24139. },
  24140. ]
  24141. ))
  24142. characterMakers.push(() => makeCharacter(
  24143. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24144. {
  24145. side: {
  24146. height: math.unit(1.44, "m"),
  24147. weight: math.unit(80, "kg"),
  24148. name: "Side",
  24149. image: {
  24150. source: "./media/characters/dune-anderson/side.svg",
  24151. bottom: 49 / 1426
  24152. }
  24153. },
  24154. },
  24155. [
  24156. {
  24157. name: "Wolf-sized",
  24158. height: math.unit(1.44, "meters")
  24159. },
  24160. {
  24161. name: "Normal",
  24162. height: math.unit(5.05, "meters"),
  24163. default: true
  24164. },
  24165. {
  24166. name: "Big",
  24167. height: math.unit(14.4, "meters")
  24168. },
  24169. {
  24170. name: "Huge",
  24171. height: math.unit(144, "meters")
  24172. },
  24173. ]
  24174. ))
  24175. characterMakers.push(() => makeCharacter(
  24176. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24177. {
  24178. front: {
  24179. height: math.unit(7, "feet"),
  24180. weight: math.unit(425, "lb"),
  24181. name: "Front",
  24182. image: {
  24183. source: "./media/characters/hind/front.svg",
  24184. extra: 2091 / 1860,
  24185. bottom: 129 / 2220
  24186. }
  24187. },
  24188. back: {
  24189. height: math.unit(7, "feet"),
  24190. weight: math.unit(425, "lb"),
  24191. name: "Back",
  24192. image: {
  24193. source: "./media/characters/hind/back.svg",
  24194. extra: 2091 / 1860,
  24195. bottom: 24.6 / 2309
  24196. }
  24197. },
  24198. tail: {
  24199. height: math.unit(2.8, "feet"),
  24200. name: "Tail",
  24201. image: {
  24202. source: "./media/characters/hind/tail.svg"
  24203. }
  24204. },
  24205. head: {
  24206. height: math.unit(2.55, "feet"),
  24207. name: "Head",
  24208. image: {
  24209. source: "./media/characters/hind/head.svg"
  24210. }
  24211. },
  24212. },
  24213. [
  24214. {
  24215. name: "XS",
  24216. height: math.unit(0.7, "feet")
  24217. },
  24218. {
  24219. name: "Normal",
  24220. height: math.unit(7, "feet"),
  24221. default: true
  24222. },
  24223. {
  24224. name: "XL",
  24225. height: math.unit(70, "feet")
  24226. },
  24227. ]
  24228. ))
  24229. characterMakers.push(() => makeCharacter(
  24230. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24231. {
  24232. front: {
  24233. height: math.unit(6, "feet"),
  24234. weight: math.unit(150, "lb"),
  24235. name: "Front",
  24236. image: {
  24237. source: "./media/characters/dylan-skaven/front.svg",
  24238. extra: 2318 / 2063,
  24239. bottom: 93.4 / 2410
  24240. }
  24241. },
  24242. },
  24243. [
  24244. {
  24245. name: "Nano",
  24246. height: math.unit(1, "mm")
  24247. },
  24248. {
  24249. name: "Micro",
  24250. height: math.unit(1, "cm")
  24251. },
  24252. {
  24253. name: "Normal",
  24254. height: math.unit(2.1, "meters"),
  24255. default: true
  24256. },
  24257. ]
  24258. ))
  24259. characterMakers.push(() => makeCharacter(
  24260. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24261. {
  24262. front: {
  24263. height: math.unit(7 + 5 / 12, "feet"),
  24264. weight: math.unit(357, "lb"),
  24265. name: "Front",
  24266. image: {
  24267. source: "./media/characters/solex-draconov/front.svg",
  24268. extra: 1993 / 1865,
  24269. bottom: 117 / 2111
  24270. }
  24271. },
  24272. },
  24273. [
  24274. {
  24275. name: "Natural Height",
  24276. height: math.unit(7 + 5 / 12, "feet"),
  24277. default: true
  24278. },
  24279. {
  24280. name: "Macro",
  24281. height: math.unit(350, "feet")
  24282. },
  24283. {
  24284. name: "Macro+",
  24285. height: math.unit(1000, "feet")
  24286. },
  24287. {
  24288. name: "Megamacro",
  24289. height: math.unit(20, "km")
  24290. },
  24291. {
  24292. name: "Megamacro+",
  24293. height: math.unit(1000, "km")
  24294. },
  24295. {
  24296. name: "Gigamacro",
  24297. height: math.unit(2.5, "Gm")
  24298. },
  24299. {
  24300. name: "Teramacro",
  24301. height: math.unit(15, "Tm")
  24302. },
  24303. {
  24304. name: "Galactic",
  24305. height: math.unit(30, "Zm")
  24306. },
  24307. {
  24308. name: "Universal",
  24309. height: math.unit(21000, "Ym")
  24310. },
  24311. {
  24312. name: "Omniversal",
  24313. height: math.unit(9.861e50, "Ym")
  24314. },
  24315. {
  24316. name: "Existential",
  24317. height: math.unit(1e300, "meters")
  24318. },
  24319. ]
  24320. ))
  24321. characterMakers.push(() => makeCharacter(
  24322. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24323. {
  24324. side: {
  24325. height: math.unit(25, "feet"),
  24326. weight: math.unit(90000, "lb"),
  24327. name: "Side",
  24328. image: {
  24329. source: "./media/characters/mandarax/side.svg",
  24330. extra: 614 / 332,
  24331. bottom: 55 / 630
  24332. }
  24333. },
  24334. head: {
  24335. height: math.unit(11.4, "feet"),
  24336. name: "Head",
  24337. image: {
  24338. source: "./media/characters/mandarax/head.svg"
  24339. }
  24340. },
  24341. belly: {
  24342. height: math.unit(33, "feet"),
  24343. name: "Belly",
  24344. capacity: math.unit(500, "people"),
  24345. image: {
  24346. source: "./media/characters/mandarax/belly.svg"
  24347. }
  24348. },
  24349. dick: {
  24350. height: math.unit(8.46, "feet"),
  24351. name: "Dick",
  24352. image: {
  24353. source: "./media/characters/mandarax/dick.svg"
  24354. }
  24355. },
  24356. top: {
  24357. height: math.unit(28, "meters"),
  24358. name: "Top",
  24359. image: {
  24360. source: "./media/characters/mandarax/top.svg"
  24361. }
  24362. },
  24363. },
  24364. [
  24365. {
  24366. name: "Normal",
  24367. height: math.unit(25, "feet"),
  24368. default: true
  24369. },
  24370. ]
  24371. ))
  24372. characterMakers.push(() => makeCharacter(
  24373. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24374. {
  24375. front: {
  24376. height: math.unit(5, "feet"),
  24377. weight: math.unit(90, "lb"),
  24378. name: "Front",
  24379. image: {
  24380. source: "./media/characters/pixil/front.svg",
  24381. extra: 2000 / 1618,
  24382. bottom: 12.3 / 2011
  24383. }
  24384. },
  24385. },
  24386. [
  24387. {
  24388. name: "Normal",
  24389. height: math.unit(5, "feet"),
  24390. default: true
  24391. },
  24392. {
  24393. name: "Megamacro",
  24394. height: math.unit(10, "miles"),
  24395. },
  24396. ]
  24397. ))
  24398. characterMakers.push(() => makeCharacter(
  24399. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24400. {
  24401. front: {
  24402. height: math.unit(7 + 2 / 12, "feet"),
  24403. weight: math.unit(200, "lb"),
  24404. name: "Front",
  24405. image: {
  24406. source: "./media/characters/angel/front.svg",
  24407. extra: 1830 / 1737,
  24408. bottom: 22.6 / 1854,
  24409. }
  24410. },
  24411. },
  24412. [
  24413. {
  24414. name: "Normal",
  24415. height: math.unit(7 + 2 / 12, "feet"),
  24416. default: true
  24417. },
  24418. {
  24419. name: "Macro",
  24420. height: math.unit(1000, "feet")
  24421. },
  24422. {
  24423. name: "Megamacro",
  24424. height: math.unit(2, "miles")
  24425. },
  24426. {
  24427. name: "Gigamacro",
  24428. height: math.unit(20, "earths")
  24429. },
  24430. ]
  24431. ))
  24432. characterMakers.push(() => makeCharacter(
  24433. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24434. {
  24435. front: {
  24436. height: math.unit(5, "feet"),
  24437. weight: math.unit(180, "lb"),
  24438. name: "Front",
  24439. image: {
  24440. source: "./media/characters/mekana/front.svg",
  24441. extra: 1671 / 1605,
  24442. bottom: 3.5 / 1691
  24443. }
  24444. },
  24445. side: {
  24446. height: math.unit(5, "feet"),
  24447. weight: math.unit(180, "lb"),
  24448. name: "Side",
  24449. image: {
  24450. source: "./media/characters/mekana/side.svg",
  24451. extra: 1671 / 1605,
  24452. bottom: 3.5 / 1691
  24453. }
  24454. },
  24455. back: {
  24456. height: math.unit(5, "feet"),
  24457. weight: math.unit(180, "lb"),
  24458. name: "Back",
  24459. image: {
  24460. source: "./media/characters/mekana/back.svg",
  24461. extra: 1671 / 1605,
  24462. bottom: 3.5 / 1691
  24463. }
  24464. },
  24465. },
  24466. [
  24467. {
  24468. name: "Normal",
  24469. height: math.unit(5, "feet"),
  24470. default: true
  24471. },
  24472. ]
  24473. ))
  24474. characterMakers.push(() => makeCharacter(
  24475. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24476. {
  24477. front: {
  24478. height: math.unit(4 + 6 / 12, "feet"),
  24479. weight: math.unit(80, "lb"),
  24480. name: "Front",
  24481. image: {
  24482. source: "./media/characters/pixie/front.svg",
  24483. extra: 1924 / 1825,
  24484. bottom: 22.4 / 1946
  24485. }
  24486. },
  24487. },
  24488. [
  24489. {
  24490. name: "Normal",
  24491. height: math.unit(4 + 6 / 12, "feet"),
  24492. default: true
  24493. },
  24494. {
  24495. name: "Macro",
  24496. height: math.unit(40, "feet")
  24497. },
  24498. ]
  24499. ))
  24500. characterMakers.push(() => makeCharacter(
  24501. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24502. {
  24503. front: {
  24504. height: math.unit(2.1, "meters"),
  24505. weight: math.unit(200, "lb"),
  24506. name: "Front",
  24507. image: {
  24508. source: "./media/characters/the-lascivious/front.svg",
  24509. extra: 1 / 0.893,
  24510. bottom: 3.5 / 573.7
  24511. }
  24512. },
  24513. },
  24514. [
  24515. {
  24516. name: "Human Scale",
  24517. height: math.unit(2.1, "meters")
  24518. },
  24519. {
  24520. name: "Wolxi Scale",
  24521. height: math.unit(46.2, "m"),
  24522. default: true
  24523. },
  24524. {
  24525. name: "Boinker of Buildings",
  24526. height: math.unit(10, "km")
  24527. },
  24528. {
  24529. name: "Shagger of Skyscrapers",
  24530. height: math.unit(40, "km")
  24531. },
  24532. {
  24533. name: "Banger of Boroughs",
  24534. height: math.unit(4000, "km")
  24535. },
  24536. {
  24537. name: "Screwer of States",
  24538. height: math.unit(100000, "km")
  24539. },
  24540. {
  24541. name: "Pounder of Planets",
  24542. height: math.unit(2000000, "km")
  24543. },
  24544. ]
  24545. ))
  24546. characterMakers.push(() => makeCharacter(
  24547. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24548. {
  24549. front: {
  24550. height: math.unit(6, "feet"),
  24551. weight: math.unit(150, "lb"),
  24552. name: "Front",
  24553. image: {
  24554. source: "./media/characters/aj/front.svg",
  24555. extra: 2039 / 1562,
  24556. bottom: 40 / 2079
  24557. }
  24558. },
  24559. },
  24560. [
  24561. {
  24562. name: "Normal",
  24563. height: math.unit(11 + 6 / 12, "feet"),
  24564. default: true
  24565. },
  24566. {
  24567. name: "Megamacro",
  24568. height: math.unit(60, "megameters")
  24569. },
  24570. ]
  24571. ))
  24572. characterMakers.push(() => makeCharacter(
  24573. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24574. {
  24575. side: {
  24576. height: math.unit(31 + 8 / 12, "feet"),
  24577. weight: math.unit(75000, "kg"),
  24578. name: "Side",
  24579. image: {
  24580. source: "./media/characters/koros/side.svg",
  24581. extra: 1442 / 1297,
  24582. bottom: 122.7 / 1562
  24583. }
  24584. },
  24585. dicksKingsCrown: {
  24586. height: math.unit(6, "feet"),
  24587. name: "Dicks (King's Crown)",
  24588. image: {
  24589. source: "./media/characters/koros/dicks-kings-crown.svg"
  24590. }
  24591. },
  24592. dicksTailSet: {
  24593. height: math.unit(3, "feet"),
  24594. name: "Dicks (Tail Set)",
  24595. image: {
  24596. source: "./media/characters/koros/dicks-tail-set.svg"
  24597. }
  24598. },
  24599. dickCumming: {
  24600. height: math.unit(7.98, "feet"),
  24601. name: "Dick (Cumming)",
  24602. image: {
  24603. source: "./media/characters/koros/dick-cumming.svg"
  24604. }
  24605. },
  24606. dicksBack: {
  24607. height: math.unit(5.9, "feet"),
  24608. name: "Dicks (Back)",
  24609. image: {
  24610. source: "./media/characters/koros/dicks-back.svg"
  24611. }
  24612. },
  24613. dicksFront: {
  24614. height: math.unit(3.72, "feet"),
  24615. name: "Dicks (Front)",
  24616. image: {
  24617. source: "./media/characters/koros/dicks-front.svg"
  24618. }
  24619. },
  24620. dicksPeeking: {
  24621. height: math.unit(3.0, "feet"),
  24622. name: "Dicks (Peeking)",
  24623. image: {
  24624. source: "./media/characters/koros/dicks-peeking.svg"
  24625. }
  24626. },
  24627. eye: {
  24628. height: math.unit(1.7, "feet"),
  24629. name: "Eye",
  24630. image: {
  24631. source: "./media/characters/koros/eye.svg"
  24632. }
  24633. },
  24634. headFront: {
  24635. height: math.unit(11.69, "feet"),
  24636. name: "Head (Front)",
  24637. image: {
  24638. source: "./media/characters/koros/head-front.svg"
  24639. }
  24640. },
  24641. headSide: {
  24642. height: math.unit(14, "feet"),
  24643. name: "Head (Side)",
  24644. image: {
  24645. source: "./media/characters/koros/head-side.svg"
  24646. }
  24647. },
  24648. leg: {
  24649. height: math.unit(17, "feet"),
  24650. name: "Leg",
  24651. image: {
  24652. source: "./media/characters/koros/leg.svg"
  24653. }
  24654. },
  24655. mawSide: {
  24656. height: math.unit(12.8, "feet"),
  24657. name: "Maw (Side)",
  24658. image: {
  24659. source: "./media/characters/koros/maw-side.svg"
  24660. }
  24661. },
  24662. mawSpitting: {
  24663. height: math.unit(17, "feet"),
  24664. name: "Maw (Spitting)",
  24665. image: {
  24666. source: "./media/characters/koros/maw-spitting.svg"
  24667. }
  24668. },
  24669. slit: {
  24670. height: math.unit(2.8, "feet"),
  24671. name: "Slit",
  24672. image: {
  24673. source: "./media/characters/koros/slit.svg"
  24674. }
  24675. },
  24676. stomach: {
  24677. height: math.unit(6.8, "feet"),
  24678. capacity: math.unit(20, "people"),
  24679. name: "Stomach",
  24680. image: {
  24681. source: "./media/characters/koros/stomach.svg"
  24682. }
  24683. },
  24684. wingspanBottom: {
  24685. height: math.unit(114, "feet"),
  24686. name: "Wingspan (Bottom)",
  24687. image: {
  24688. source: "./media/characters/koros/wingspan-bottom.svg"
  24689. }
  24690. },
  24691. wingspanTop: {
  24692. height: math.unit(104, "feet"),
  24693. name: "Wingspan (Top)",
  24694. image: {
  24695. source: "./media/characters/koros/wingspan-top.svg"
  24696. }
  24697. },
  24698. },
  24699. [
  24700. {
  24701. name: "Normal",
  24702. height: math.unit(31 + 8 / 12, "feet"),
  24703. default: true
  24704. },
  24705. ]
  24706. ))
  24707. characterMakers.push(() => makeCharacter(
  24708. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24709. {
  24710. front: {
  24711. height: math.unit(18 + 5 / 12, "feet"),
  24712. weight: math.unit(3750, "kg"),
  24713. name: "Front",
  24714. image: {
  24715. source: "./media/characters/vexx/front.svg",
  24716. extra: 426 / 396,
  24717. bottom: 31.5 / 458
  24718. }
  24719. },
  24720. maw: {
  24721. height: math.unit(6, "feet"),
  24722. name: "Maw",
  24723. image: {
  24724. source: "./media/characters/vexx/maw.svg"
  24725. }
  24726. },
  24727. },
  24728. [
  24729. {
  24730. name: "Normal",
  24731. height: math.unit(18 + 5 / 12, "feet"),
  24732. default: true
  24733. },
  24734. ]
  24735. ))
  24736. characterMakers.push(() => makeCharacter(
  24737. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24738. {
  24739. front: {
  24740. height: math.unit(17 + 6 / 12, "feet"),
  24741. weight: math.unit(150, "lb"),
  24742. name: "Front",
  24743. image: {
  24744. source: "./media/characters/baadra/front.svg",
  24745. extra: 3137 / 2890,
  24746. bottom: 168.4 / 3305
  24747. }
  24748. },
  24749. back: {
  24750. height: math.unit(17 + 6 / 12, "feet"),
  24751. weight: math.unit(150, "lb"),
  24752. name: "Back",
  24753. image: {
  24754. source: "./media/characters/baadra/back.svg",
  24755. extra: 3142 / 2890,
  24756. bottom: 220 / 3371
  24757. }
  24758. },
  24759. head: {
  24760. height: math.unit(5.45, "feet"),
  24761. name: "Head",
  24762. image: {
  24763. source: "./media/characters/baadra/head.svg"
  24764. }
  24765. },
  24766. headAngry: {
  24767. height: math.unit(4.95, "feet"),
  24768. name: "Head (Angry)",
  24769. image: {
  24770. source: "./media/characters/baadra/head-angry.svg"
  24771. }
  24772. },
  24773. headOpen: {
  24774. height: math.unit(6, "feet"),
  24775. name: "Head (Open)",
  24776. image: {
  24777. source: "./media/characters/baadra/head-open.svg"
  24778. }
  24779. },
  24780. },
  24781. [
  24782. {
  24783. name: "Normal",
  24784. height: math.unit(17 + 6 / 12, "feet"),
  24785. default: true
  24786. },
  24787. ]
  24788. ))
  24789. characterMakers.push(() => makeCharacter(
  24790. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24791. {
  24792. front: {
  24793. height: math.unit(7 + 3 / 12, "feet"),
  24794. weight: math.unit(180, "lb"),
  24795. name: "Front",
  24796. image: {
  24797. source: "./media/characters/juri/front.svg",
  24798. extra: 1401 / 1237,
  24799. bottom: 18.5 / 1418
  24800. }
  24801. },
  24802. side: {
  24803. height: math.unit(7 + 3 / 12, "feet"),
  24804. weight: math.unit(180, "lb"),
  24805. name: "Side",
  24806. image: {
  24807. source: "./media/characters/juri/side.svg",
  24808. extra: 1424 / 1242,
  24809. bottom: 18.5 / 1447
  24810. }
  24811. },
  24812. sitting: {
  24813. height: math.unit(6, "feet"),
  24814. weight: math.unit(180, "lb"),
  24815. name: "Sitting",
  24816. image: {
  24817. source: "./media/characters/juri/sitting.svg",
  24818. extra: 1270 / 1143,
  24819. bottom: 100 / 1343
  24820. }
  24821. },
  24822. back: {
  24823. height: math.unit(7 + 3 / 12, "feet"),
  24824. weight: math.unit(180, "lb"),
  24825. name: "Back",
  24826. image: {
  24827. source: "./media/characters/juri/back.svg",
  24828. extra: 1377 / 1240,
  24829. bottom: 23.7 / 1405
  24830. }
  24831. },
  24832. maw: {
  24833. height: math.unit(2.8, "feet"),
  24834. name: "Maw",
  24835. image: {
  24836. source: "./media/characters/juri/maw.svg"
  24837. }
  24838. },
  24839. stomach: {
  24840. height: math.unit(0.89, "feet"),
  24841. capacity: math.unit(4, "liters"),
  24842. name: "Stomach",
  24843. image: {
  24844. source: "./media/characters/juri/stomach.svg"
  24845. }
  24846. },
  24847. },
  24848. [
  24849. {
  24850. name: "Normal",
  24851. height: math.unit(7 + 3 / 12, "feet"),
  24852. default: true
  24853. },
  24854. ]
  24855. ))
  24856. characterMakers.push(() => makeCharacter(
  24857. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24858. {
  24859. fox: {
  24860. height: math.unit(5 + 6 / 12, "feet"),
  24861. weight: math.unit(140, "lb"),
  24862. name: "Fox",
  24863. image: {
  24864. source: "./media/characters/maxene-sita/fox.svg",
  24865. extra: 146 / 138,
  24866. bottom: 2.1 / 148.19
  24867. }
  24868. },
  24869. foxLaying: {
  24870. height: math.unit(1.70, "feet"),
  24871. weight: math.unit(140, "lb"),
  24872. name: "Fox (Laying)",
  24873. image: {
  24874. source: "./media/characters/maxene-sita/fox-laying.svg",
  24875. extra: 910 / 572,
  24876. bottom: 71 / 981
  24877. }
  24878. },
  24879. kitsune: {
  24880. height: math.unit(10, "feet"),
  24881. weight: math.unit(800, "lb"),
  24882. name: "Kitsune",
  24883. image: {
  24884. source: "./media/characters/maxene-sita/kitsune.svg",
  24885. extra: 185 / 176,
  24886. bottom: 4.7 / 189.9
  24887. }
  24888. },
  24889. hellhound: {
  24890. height: math.unit(10, "feet"),
  24891. weight: math.unit(700, "lb"),
  24892. name: "Hellhound",
  24893. image: {
  24894. source: "./media/characters/maxene-sita/hellhound.svg",
  24895. extra: 1600 / 1545,
  24896. bottom: 81 / 1681
  24897. }
  24898. },
  24899. },
  24900. [
  24901. {
  24902. name: "Normal",
  24903. height: math.unit(5 + 6 / 12, "feet"),
  24904. default: true
  24905. },
  24906. ]
  24907. ))
  24908. characterMakers.push(() => makeCharacter(
  24909. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24910. {
  24911. front: {
  24912. height: math.unit(3 + 4 / 12, "feet"),
  24913. weight: math.unit(70, "lb"),
  24914. name: "Front",
  24915. image: {
  24916. source: "./media/characters/maia/front.svg",
  24917. extra: 227 / 219.5,
  24918. bottom: 40 / 267
  24919. }
  24920. },
  24921. back: {
  24922. height: math.unit(3 + 4 / 12, "feet"),
  24923. weight: math.unit(70, "lb"),
  24924. name: "Back",
  24925. image: {
  24926. source: "./media/characters/maia/back.svg",
  24927. extra: 237 / 225
  24928. }
  24929. },
  24930. },
  24931. [
  24932. {
  24933. name: "Normal",
  24934. height: math.unit(3 + 4 / 12, "feet"),
  24935. default: true
  24936. },
  24937. ]
  24938. ))
  24939. characterMakers.push(() => makeCharacter(
  24940. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24941. {
  24942. front: {
  24943. height: math.unit(5 + 10 / 12, "feet"),
  24944. weight: math.unit(197, "lb"),
  24945. name: "Front",
  24946. image: {
  24947. source: "./media/characters/jabaro/front.svg",
  24948. extra: 225 / 216,
  24949. bottom: 5.06 / 230
  24950. }
  24951. },
  24952. back: {
  24953. height: math.unit(5 + 10 / 12, "feet"),
  24954. weight: math.unit(197, "lb"),
  24955. name: "Back",
  24956. image: {
  24957. source: "./media/characters/jabaro/back.svg",
  24958. extra: 225 / 219,
  24959. bottom: 1.9 / 227
  24960. }
  24961. },
  24962. },
  24963. [
  24964. {
  24965. name: "Normal",
  24966. height: math.unit(5 + 10 / 12, "feet"),
  24967. default: true
  24968. },
  24969. ]
  24970. ))
  24971. characterMakers.push(() => makeCharacter(
  24972. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24973. {
  24974. front: {
  24975. height: math.unit(5 + 8 / 12, "feet"),
  24976. weight: math.unit(139, "lb"),
  24977. name: "Front",
  24978. image: {
  24979. source: "./media/characters/risa/front.svg",
  24980. extra: 270 / 260,
  24981. bottom: 11.2 / 282
  24982. }
  24983. },
  24984. back: {
  24985. height: math.unit(5 + 8 / 12, "feet"),
  24986. weight: math.unit(139, "lb"),
  24987. name: "Back",
  24988. image: {
  24989. source: "./media/characters/risa/back.svg",
  24990. extra: 264 / 255,
  24991. bottom: 4 / 268
  24992. }
  24993. },
  24994. },
  24995. [
  24996. {
  24997. name: "Normal",
  24998. height: math.unit(5 + 8 / 12, "feet"),
  24999. default: true
  25000. },
  25001. ]
  25002. ))
  25003. characterMakers.push(() => makeCharacter(
  25004. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25005. {
  25006. front: {
  25007. height: math.unit(2 + 11 / 12, "feet"),
  25008. weight: math.unit(30, "lb"),
  25009. name: "Front",
  25010. image: {
  25011. source: "./media/characters/weatley/front.svg",
  25012. bottom: 10.7 / 414,
  25013. extra: 403.5 / 362
  25014. }
  25015. },
  25016. back: {
  25017. height: math.unit(2 + 11 / 12, "feet"),
  25018. weight: math.unit(30, "lb"),
  25019. name: "Back",
  25020. image: {
  25021. source: "./media/characters/weatley/back.svg",
  25022. bottom: 10.7 / 414,
  25023. extra: 403.5 / 362
  25024. }
  25025. },
  25026. },
  25027. [
  25028. {
  25029. name: "Normal",
  25030. height: math.unit(2 + 11 / 12, "feet"),
  25031. default: true
  25032. },
  25033. ]
  25034. ))
  25035. characterMakers.push(() => makeCharacter(
  25036. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25037. {
  25038. front: {
  25039. height: math.unit(5 + 2 / 12, "feet"),
  25040. weight: math.unit(50, "kg"),
  25041. name: "Front",
  25042. image: {
  25043. source: "./media/characters/mercury-crescent/front.svg",
  25044. extra: 1088 / 1033,
  25045. bottom: 18.9 / 1109
  25046. }
  25047. },
  25048. },
  25049. [
  25050. {
  25051. name: "Normal",
  25052. height: math.unit(5 + 2 / 12, "feet"),
  25053. default: true
  25054. },
  25055. ]
  25056. ))
  25057. characterMakers.push(() => makeCharacter(
  25058. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25059. {
  25060. front: {
  25061. height: math.unit(2, "feet"),
  25062. weight: math.unit(15, "kg"),
  25063. name: "Front",
  25064. image: {
  25065. source: "./media/characters/diamond-jones/front.svg",
  25066. bottom: 16 / 568
  25067. }
  25068. },
  25069. },
  25070. [
  25071. {
  25072. name: "Normal",
  25073. height: math.unit(2, "feet"),
  25074. default: true
  25075. },
  25076. ]
  25077. ))
  25078. characterMakers.push(() => makeCharacter(
  25079. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25080. {
  25081. front: {
  25082. height: math.unit(3, "feet"),
  25083. weight: math.unit(30, "kg"),
  25084. name: "Front",
  25085. image: {
  25086. source: "./media/characters/sweet-bit/front.svg",
  25087. extra: 675 / 567,
  25088. bottom: 27.7 / 703
  25089. }
  25090. },
  25091. },
  25092. [
  25093. {
  25094. name: "Normal",
  25095. height: math.unit(3, "feet"),
  25096. default: true
  25097. },
  25098. ]
  25099. ))
  25100. characterMakers.push(() => makeCharacter(
  25101. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25102. {
  25103. side: {
  25104. height: math.unit(9.178, "feet"),
  25105. weight: math.unit(500, "lb"),
  25106. name: "Side",
  25107. image: {
  25108. source: "./media/characters/umbrazen/side.svg",
  25109. extra: 1730 / 1473,
  25110. bottom: 34.6 / 1765
  25111. }
  25112. },
  25113. },
  25114. [
  25115. {
  25116. name: "Normal",
  25117. height: math.unit(9.178, "feet"),
  25118. default: true
  25119. },
  25120. ]
  25121. ))
  25122. characterMakers.push(() => makeCharacter(
  25123. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25124. {
  25125. front: {
  25126. height: math.unit(10, "feet"),
  25127. weight: math.unit(750, "lb"),
  25128. name: "Front",
  25129. image: {
  25130. source: "./media/characters/arlist/front.svg",
  25131. extra: 961 / 778,
  25132. bottom: 6.2 / 986
  25133. }
  25134. },
  25135. },
  25136. [
  25137. {
  25138. name: "Normal",
  25139. height: math.unit(10, "feet"),
  25140. default: true
  25141. },
  25142. ]
  25143. ))
  25144. characterMakers.push(() => makeCharacter(
  25145. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25146. {
  25147. front: {
  25148. height: math.unit(5 + 1 / 12, "feet"),
  25149. weight: math.unit(110, "lb"),
  25150. name: "Front",
  25151. image: {
  25152. source: "./media/characters/aradel/front.svg",
  25153. extra: 324 / 303,
  25154. bottom: 3.6 / 329.4
  25155. }
  25156. },
  25157. },
  25158. [
  25159. {
  25160. name: "Normal",
  25161. height: math.unit(5 + 1 / 12, "feet"),
  25162. default: true
  25163. },
  25164. ]
  25165. ))
  25166. characterMakers.push(() => makeCharacter(
  25167. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25168. {
  25169. front: {
  25170. height: math.unit(3 + 8 / 12, "feet"),
  25171. weight: math.unit(50, "lb"),
  25172. name: "Front",
  25173. image: {
  25174. source: "./media/characters/serryn/front.svg",
  25175. extra: 1792 / 1656,
  25176. bottom: 43.5 / 1840
  25177. }
  25178. },
  25179. },
  25180. [
  25181. {
  25182. name: "Normal",
  25183. height: math.unit(3 + 8 / 12, "feet"),
  25184. default: true
  25185. },
  25186. ]
  25187. ))
  25188. characterMakers.push(() => makeCharacter(
  25189. { name: "Xavier Thyme" },
  25190. {
  25191. front: {
  25192. height: math.unit(7 + 10 / 12, "feet"),
  25193. weight: math.unit(255, "lb"),
  25194. name: "Front",
  25195. image: {
  25196. source: "./media/characters/xavier-thyme/front.svg",
  25197. extra: 3733 / 3642,
  25198. bottom: 131 / 3869
  25199. }
  25200. },
  25201. frontRaven: {
  25202. height: math.unit(7 + 10 / 12, "feet"),
  25203. weight: math.unit(255, "lb"),
  25204. name: "Front (Raven)",
  25205. image: {
  25206. source: "./media/characters/xavier-thyme/front-raven.svg",
  25207. extra: 4385 / 3642,
  25208. bottom: 131 / 4517
  25209. }
  25210. },
  25211. },
  25212. [
  25213. {
  25214. name: "Normal",
  25215. height: math.unit(7 + 10 / 12, "feet"),
  25216. default: true
  25217. },
  25218. ]
  25219. ))
  25220. characterMakers.push(() => makeCharacter(
  25221. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25222. {
  25223. front: {
  25224. height: math.unit(1.6, "m"),
  25225. weight: math.unit(50, "kg"),
  25226. name: "Front",
  25227. image: {
  25228. source: "./media/characters/kiki/front.svg",
  25229. extra: 4682 / 3610,
  25230. bottom: 115 / 4777
  25231. }
  25232. },
  25233. },
  25234. [
  25235. {
  25236. name: "Normal",
  25237. height: math.unit(1.6, "meters"),
  25238. default: true
  25239. },
  25240. ]
  25241. ))
  25242. characterMakers.push(() => makeCharacter(
  25243. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25244. {
  25245. front: {
  25246. height: math.unit(50, "m"),
  25247. weight: math.unit(500, "tonnes"),
  25248. name: "Front",
  25249. image: {
  25250. source: "./media/characters/ryoko/front.svg",
  25251. extra: 4632 / 3926,
  25252. bottom: 193 / 4823
  25253. }
  25254. },
  25255. },
  25256. [
  25257. {
  25258. name: "Normal",
  25259. height: math.unit(50, "meters"),
  25260. default: true
  25261. },
  25262. ]
  25263. ))
  25264. characterMakers.push(() => makeCharacter(
  25265. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25266. {
  25267. front: {
  25268. height: math.unit(30, "m"),
  25269. weight: math.unit(22, "tonnes"),
  25270. name: "Front",
  25271. image: {
  25272. source: "./media/characters/elio/front.svg",
  25273. extra: 4582 / 3720,
  25274. bottom: 236 / 4828
  25275. }
  25276. },
  25277. },
  25278. [
  25279. {
  25280. name: "Normal",
  25281. height: math.unit(30, "meters"),
  25282. default: true
  25283. },
  25284. ]
  25285. ))
  25286. characterMakers.push(() => makeCharacter(
  25287. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25288. {
  25289. front: {
  25290. height: math.unit(6 + 3 / 12, "feet"),
  25291. weight: math.unit(120, "lb"),
  25292. name: "Front",
  25293. image: {
  25294. source: "./media/characters/azura/front.svg",
  25295. extra: 1149 / 1135,
  25296. bottom: 45 / 1194
  25297. }
  25298. },
  25299. frontClothed: {
  25300. height: math.unit(6 + 3 / 12, "feet"),
  25301. weight: math.unit(120, "lb"),
  25302. name: "Front (Clothed)",
  25303. image: {
  25304. source: "./media/characters/azura/front-clothed.svg",
  25305. extra: 1149 / 1135,
  25306. bottom: 45 / 1194
  25307. }
  25308. },
  25309. },
  25310. [
  25311. {
  25312. name: "Normal",
  25313. height: math.unit(6 + 3 / 12, "feet"),
  25314. default: true
  25315. },
  25316. {
  25317. name: "Macro",
  25318. height: math.unit(20 + 6 / 12, "feet")
  25319. },
  25320. {
  25321. name: "Megamacro",
  25322. height: math.unit(12, "miles")
  25323. },
  25324. {
  25325. name: "Gigamacro",
  25326. height: math.unit(10000, "miles")
  25327. },
  25328. {
  25329. name: "Teramacro",
  25330. height: math.unit(900000, "miles")
  25331. },
  25332. ]
  25333. ))
  25334. characterMakers.push(() => makeCharacter(
  25335. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25336. {
  25337. front: {
  25338. height: math.unit(12, "feet"),
  25339. weight: math.unit(1, "ton"),
  25340. capacity: math.unit(660000, "gallons"),
  25341. name: "Front",
  25342. image: {
  25343. source: "./media/characters/zeus/front.svg",
  25344. extra: 5005 / 4717,
  25345. bottom: 363 / 5388
  25346. }
  25347. },
  25348. },
  25349. [
  25350. {
  25351. name: "Normal",
  25352. height: math.unit(12, "feet")
  25353. },
  25354. {
  25355. name: "Preferred Size",
  25356. height: math.unit(0.5, "miles"),
  25357. default: true
  25358. },
  25359. {
  25360. name: "Giga Horse",
  25361. height: math.unit(300, "miles")
  25362. },
  25363. {
  25364. name: "Riding Planets",
  25365. height: math.unit(30, "megameters")
  25366. },
  25367. {
  25368. name: "Cosmic Giant",
  25369. height: math.unit(3, "zettameters")
  25370. },
  25371. {
  25372. name: "Breeding God",
  25373. height: math.unit(9.92e22, "yottameters")
  25374. },
  25375. ]
  25376. ))
  25377. characterMakers.push(() => makeCharacter(
  25378. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25379. {
  25380. side: {
  25381. height: math.unit(9, "feet"),
  25382. weight: math.unit(1500, "kg"),
  25383. name: "Side",
  25384. image: {
  25385. source: "./media/characters/fang/side.svg",
  25386. extra: 924 / 866,
  25387. bottom: 47.5 / 972.3
  25388. }
  25389. },
  25390. },
  25391. [
  25392. {
  25393. name: "Normal",
  25394. height: math.unit(9, "feet"),
  25395. default: true
  25396. },
  25397. {
  25398. name: "Macro",
  25399. height: math.unit(75 + 6 / 12, "feet")
  25400. },
  25401. {
  25402. name: "Teramacro",
  25403. height: math.unit(50000, "miles")
  25404. },
  25405. ]
  25406. ))
  25407. characterMakers.push(() => makeCharacter(
  25408. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25409. {
  25410. front: {
  25411. height: math.unit(10, "feet"),
  25412. weight: math.unit(2, "tons"),
  25413. name: "Front",
  25414. image: {
  25415. source: "./media/characters/rekhit/front.svg",
  25416. extra: 2796 / 2590,
  25417. bottom: 225 / 3022
  25418. }
  25419. },
  25420. },
  25421. [
  25422. {
  25423. name: "Normal",
  25424. height: math.unit(10, "feet"),
  25425. default: true
  25426. },
  25427. {
  25428. name: "Macro",
  25429. height: math.unit(500, "feet")
  25430. },
  25431. ]
  25432. ))
  25433. characterMakers.push(() => makeCharacter(
  25434. { name: "Dahlia Verrick" },
  25435. {
  25436. front: {
  25437. height: math.unit(7 + 6.451 / 12, "feet"),
  25438. weight: math.unit(310, "lb"),
  25439. name: "Front",
  25440. image: {
  25441. source: "./media/characters/dahlia-verrick/front.svg",
  25442. extra: 1488 / 1365,
  25443. bottom: 6.2 / 1495
  25444. }
  25445. },
  25446. back: {
  25447. height: math.unit(7 + 6.451 / 12, "feet"),
  25448. weight: math.unit(310, "lb"),
  25449. name: "Back",
  25450. image: {
  25451. source: "./media/characters/dahlia-verrick/back.svg",
  25452. extra: 1472 / 1351,
  25453. bottom: 5.28 / 1477
  25454. }
  25455. },
  25456. frontBusiness: {
  25457. height: math.unit(7 + 6.451 / 12, "feet"),
  25458. weight: math.unit(200, "lb"),
  25459. name: "Front (Business)",
  25460. image: {
  25461. source: "./media/characters/dahlia-verrick/front-business.svg",
  25462. extra: 1478 / 1381,
  25463. bottom: 5.5 / 1484
  25464. }
  25465. },
  25466. frontCasual: {
  25467. height: math.unit(7 + 6.451 / 12, "feet"),
  25468. weight: math.unit(200, "lb"),
  25469. name: "Front (Casual)",
  25470. image: {
  25471. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25472. extra: 1478 / 1381,
  25473. bottom: 5.5 / 1484
  25474. }
  25475. },
  25476. },
  25477. [
  25478. {
  25479. name: "Travel-Sized",
  25480. height: math.unit(7.45, "inches")
  25481. },
  25482. {
  25483. name: "Normal",
  25484. height: math.unit(7 + 6.451 / 12, "feet"),
  25485. default: true
  25486. },
  25487. {
  25488. name: "Hitting the Town",
  25489. height: math.unit(37 + 8 / 12, "feet")
  25490. },
  25491. {
  25492. name: "Stomp in the Suburbs",
  25493. height: math.unit(964 + 9.728 / 12, "feet")
  25494. },
  25495. {
  25496. name: "Sit on the City",
  25497. height: math.unit(61747 + 10.592 / 12, "feet")
  25498. },
  25499. {
  25500. name: "Glomp the Globe",
  25501. height: math.unit(252919327 + 4.832 / 12, "feet")
  25502. },
  25503. ]
  25504. ))
  25505. characterMakers.push(() => makeCharacter(
  25506. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25507. {
  25508. front: {
  25509. height: math.unit(6 + 4 / 12, "feet"),
  25510. weight: math.unit(320, "lb"),
  25511. name: "Front",
  25512. image: {
  25513. source: "./media/characters/balina-mahigan/front.svg",
  25514. extra: 447 / 428,
  25515. bottom: 18 / 466
  25516. }
  25517. },
  25518. back: {
  25519. height: math.unit(6 + 4 / 12, "feet"),
  25520. weight: math.unit(320, "lb"),
  25521. name: "Back",
  25522. image: {
  25523. source: "./media/characters/balina-mahigan/back.svg",
  25524. extra: 445 / 428,
  25525. bottom: 4.07 / 448
  25526. }
  25527. },
  25528. arm: {
  25529. height: math.unit(1.88, "feet"),
  25530. name: "Arm",
  25531. image: {
  25532. source: "./media/characters/balina-mahigan/arm.svg"
  25533. }
  25534. },
  25535. backPort: {
  25536. height: math.unit(0.685, "feet"),
  25537. name: "Back Port",
  25538. image: {
  25539. source: "./media/characters/balina-mahigan/back-port.svg"
  25540. }
  25541. },
  25542. hoofpaw: {
  25543. height: math.unit(1.41, "feet"),
  25544. name: "Hoofpaw",
  25545. image: {
  25546. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25547. }
  25548. },
  25549. leftHandBack: {
  25550. height: math.unit(0.938, "feet"),
  25551. name: "Left Hand (Back)",
  25552. image: {
  25553. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25554. }
  25555. },
  25556. leftHandFront: {
  25557. height: math.unit(0.938, "feet"),
  25558. name: "Left Hand (Front)",
  25559. image: {
  25560. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25561. }
  25562. },
  25563. rightHandBack: {
  25564. height: math.unit(0.95, "feet"),
  25565. name: "Right Hand (Back)",
  25566. image: {
  25567. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25568. }
  25569. },
  25570. rightHandFront: {
  25571. height: math.unit(0.95, "feet"),
  25572. name: "Right Hand (Front)",
  25573. image: {
  25574. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25575. }
  25576. },
  25577. },
  25578. [
  25579. {
  25580. name: "Normal",
  25581. height: math.unit(6 + 4 / 12, "feet"),
  25582. default: true
  25583. },
  25584. ]
  25585. ))
  25586. characterMakers.push(() => makeCharacter(
  25587. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25588. {
  25589. front: {
  25590. height: math.unit(6, "feet"),
  25591. weight: math.unit(320, "lb"),
  25592. name: "Front",
  25593. image: {
  25594. source: "./media/characters/balina-mejeri/front.svg",
  25595. extra: 517 / 488,
  25596. bottom: 44.2 / 561
  25597. }
  25598. },
  25599. },
  25600. [
  25601. {
  25602. name: "Normal",
  25603. height: math.unit(6 + 4 / 12, "feet")
  25604. },
  25605. {
  25606. name: "Business",
  25607. height: math.unit(155, "feet"),
  25608. default: true
  25609. },
  25610. ]
  25611. ))
  25612. characterMakers.push(() => makeCharacter(
  25613. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25614. {
  25615. kneeling: {
  25616. height: math.unit(6 + 4 / 12, "feet"),
  25617. weight: math.unit(300 * 20, "lb"),
  25618. name: "Kneeling",
  25619. image: {
  25620. source: "./media/characters/balbarian/kneeling.svg",
  25621. extra: 922 / 862,
  25622. bottom: 42.4 / 965
  25623. }
  25624. },
  25625. },
  25626. [
  25627. {
  25628. name: "Normal",
  25629. height: math.unit(6 + 4 / 12, "feet")
  25630. },
  25631. {
  25632. name: "Treasured",
  25633. height: math.unit(18 + 9 / 12, "feet"),
  25634. default: true
  25635. },
  25636. {
  25637. name: "Macro",
  25638. height: math.unit(900, "feet")
  25639. },
  25640. ]
  25641. ))
  25642. characterMakers.push(() => makeCharacter(
  25643. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25644. {
  25645. front: {
  25646. height: math.unit(6 + 4 / 12, "feet"),
  25647. weight: math.unit(325, "lb"),
  25648. name: "Front",
  25649. image: {
  25650. source: "./media/characters/balina-amarini/front.svg",
  25651. extra: 415 / 403,
  25652. bottom: 19 / 433.4
  25653. }
  25654. },
  25655. back: {
  25656. height: math.unit(6 + 4 / 12, "feet"),
  25657. weight: math.unit(325, "lb"),
  25658. name: "Back",
  25659. image: {
  25660. source: "./media/characters/balina-amarini/back.svg",
  25661. extra: 415 / 403,
  25662. bottom: 13.5 / 432
  25663. }
  25664. },
  25665. overdrive: {
  25666. height: math.unit(6 + 4 / 12, "feet"),
  25667. weight: math.unit(400, "lb"),
  25668. name: "Overdrive",
  25669. image: {
  25670. source: "./media/characters/balina-amarini/overdrive.svg",
  25671. extra: 269 / 259,
  25672. bottom: 12 / 282
  25673. }
  25674. },
  25675. },
  25676. [
  25677. {
  25678. name: "Boom",
  25679. height: math.unit(9 + 10 / 12, "feet"),
  25680. default: true
  25681. },
  25682. {
  25683. name: "Macro",
  25684. height: math.unit(280, "feet")
  25685. },
  25686. ]
  25687. ))
  25688. characterMakers.push(() => makeCharacter(
  25689. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25690. {
  25691. goddess: {
  25692. height: math.unit(600, "feet"),
  25693. weight: math.unit(2000000, "tons"),
  25694. name: "Goddess",
  25695. image: {
  25696. source: "./media/characters/lady-kubwa/goddess.svg",
  25697. extra: 1240.5 / 1223,
  25698. bottom: 22 / 1263
  25699. }
  25700. },
  25701. goddesser: {
  25702. height: math.unit(900, "feet"),
  25703. weight: math.unit(20000000, "lb"),
  25704. name: "Goddess-er",
  25705. image: {
  25706. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25707. extra: 899 / 888,
  25708. bottom: 12.6 / 912
  25709. }
  25710. },
  25711. },
  25712. [
  25713. {
  25714. name: "Macro",
  25715. height: math.unit(600, "feet"),
  25716. default: true
  25717. },
  25718. {
  25719. name: "Megamacro",
  25720. height: math.unit(250, "miles")
  25721. },
  25722. ]
  25723. ))
  25724. characterMakers.push(() => makeCharacter(
  25725. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25726. {
  25727. front: {
  25728. height: math.unit(7 + 7 / 12, "feet"),
  25729. weight: math.unit(250, "lb"),
  25730. name: "Front",
  25731. image: {
  25732. source: "./media/characters/tala-grovehorn/front.svg",
  25733. extra: 2636 / 2525,
  25734. bottom: 147 / 2781
  25735. }
  25736. },
  25737. back: {
  25738. height: math.unit(7 + 7 / 12, "feet"),
  25739. weight: math.unit(250, "lb"),
  25740. name: "Back",
  25741. image: {
  25742. source: "./media/characters/tala-grovehorn/back.svg",
  25743. extra: 2635 / 2539,
  25744. bottom: 100 / 2732.8
  25745. }
  25746. },
  25747. mouth: {
  25748. height: math.unit(1.15, "feet"),
  25749. name: "Mouth",
  25750. image: {
  25751. source: "./media/characters/tala-grovehorn/mouth.svg"
  25752. }
  25753. },
  25754. dick: {
  25755. height: math.unit(2.36, "feet"),
  25756. name: "Dick",
  25757. image: {
  25758. source: "./media/characters/tala-grovehorn/dick.svg"
  25759. }
  25760. },
  25761. slit: {
  25762. height: math.unit(0.61, "feet"),
  25763. name: "Slit",
  25764. image: {
  25765. source: "./media/characters/tala-grovehorn/slit.svg"
  25766. }
  25767. },
  25768. },
  25769. [
  25770. ]
  25771. ))
  25772. characterMakers.push(() => makeCharacter(
  25773. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25774. {
  25775. front: {
  25776. height: math.unit(7 + 7 / 12, "feet"),
  25777. weight: math.unit(225, "lb"),
  25778. name: "Front",
  25779. image: {
  25780. source: "./media/characters/epona/front.svg",
  25781. extra: 2445 / 2290,
  25782. bottom: 251 / 2696
  25783. }
  25784. },
  25785. back: {
  25786. height: math.unit(7 + 7 / 12, "feet"),
  25787. weight: math.unit(225, "lb"),
  25788. name: "Back",
  25789. image: {
  25790. source: "./media/characters/epona/back.svg",
  25791. extra: 2546 / 2408,
  25792. bottom: 44 / 2589
  25793. }
  25794. },
  25795. genitals: {
  25796. height: math.unit(1.5, "feet"),
  25797. name: "Genitals",
  25798. image: {
  25799. source: "./media/characters/epona/genitals.svg"
  25800. }
  25801. },
  25802. },
  25803. [
  25804. {
  25805. name: "Normal",
  25806. height: math.unit(7 + 7 / 12, "feet")
  25807. },
  25808. ]
  25809. ))
  25810. characterMakers.push(() => makeCharacter(
  25811. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25812. {
  25813. front: {
  25814. height: math.unit(7, "feet"),
  25815. weight: math.unit(518, "lb"),
  25816. name: "Front",
  25817. image: {
  25818. source: "./media/characters/avia-bloodbourn/front.svg",
  25819. extra: 1466 / 1350,
  25820. bottom: 65 / 1527
  25821. }
  25822. },
  25823. },
  25824. [
  25825. ]
  25826. ))
  25827. characterMakers.push(() => makeCharacter(
  25828. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25829. {
  25830. front: {
  25831. height: math.unit(9.35, "feet"),
  25832. weight: math.unit(600, "lb"),
  25833. name: "Front",
  25834. image: {
  25835. source: "./media/characters/amera/front.svg",
  25836. extra: 891 / 818,
  25837. bottom: 30 / 922.7
  25838. }
  25839. },
  25840. back: {
  25841. height: math.unit(9.35, "feet"),
  25842. weight: math.unit(600, "lb"),
  25843. name: "Back",
  25844. image: {
  25845. source: "./media/characters/amera/back.svg",
  25846. extra: 876 / 824,
  25847. bottom: 6.8 / 884
  25848. }
  25849. },
  25850. dick: {
  25851. height: math.unit(2.14, "feet"),
  25852. name: "Dick",
  25853. image: {
  25854. source: "./media/characters/amera/dick.svg"
  25855. }
  25856. },
  25857. },
  25858. [
  25859. {
  25860. name: "Normal",
  25861. height: math.unit(9.35, "feet"),
  25862. default: true
  25863. },
  25864. ]
  25865. ))
  25866. characterMakers.push(() => makeCharacter(
  25867. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25868. {
  25869. kneeling: {
  25870. height: math.unit(3 + 4 / 12, "feet"),
  25871. weight: math.unit(90, "lb"),
  25872. name: "Kneeling",
  25873. image: {
  25874. source: "./media/characters/rosewen/kneeling.svg",
  25875. extra: 1835 / 1571,
  25876. bottom: 27.7 / 1862
  25877. }
  25878. },
  25879. },
  25880. [
  25881. {
  25882. name: "Normal",
  25883. height: math.unit(3 + 4 / 12, "feet"),
  25884. default: true
  25885. },
  25886. ]
  25887. ))
  25888. characterMakers.push(() => makeCharacter(
  25889. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25890. {
  25891. front: {
  25892. height: math.unit(5 + 10 / 12, "feet"),
  25893. weight: math.unit(200, "lb"),
  25894. name: "Front",
  25895. image: {
  25896. source: "./media/characters/sabah/front.svg",
  25897. extra: 849 / 763,
  25898. bottom: 33.9 / 881
  25899. }
  25900. },
  25901. },
  25902. [
  25903. {
  25904. name: "Normal",
  25905. height: math.unit(5 + 10 / 12, "feet"),
  25906. default: true
  25907. },
  25908. ]
  25909. ))
  25910. characterMakers.push(() => makeCharacter(
  25911. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25912. {
  25913. front: {
  25914. height: math.unit(3 + 5 / 12, "feet"),
  25915. weight: math.unit(40, "kg"),
  25916. name: "Front",
  25917. image: {
  25918. source: "./media/characters/purple-flame/front.svg",
  25919. extra: 1577 / 1412,
  25920. bottom: 97 / 1694
  25921. }
  25922. },
  25923. frontDressed: {
  25924. height: math.unit(3 + 5 / 12, "feet"),
  25925. weight: math.unit(40, "kg"),
  25926. name: "Front (Dressed)",
  25927. image: {
  25928. source: "./media/characters/purple-flame/front-dressed.svg",
  25929. extra: 1577 / 1412,
  25930. bottom: 97 / 1694
  25931. }
  25932. },
  25933. headphones: {
  25934. height: math.unit(0.85, "feet"),
  25935. name: "Headphones",
  25936. image: {
  25937. source: "./media/characters/purple-flame/headphones.svg"
  25938. }
  25939. },
  25940. },
  25941. [
  25942. {
  25943. name: "Really Small",
  25944. height: math.unit(5, "cm")
  25945. },
  25946. {
  25947. name: "Micro",
  25948. height: math.unit(1 + 5 / 12, "feet")
  25949. },
  25950. {
  25951. name: "Normal",
  25952. height: math.unit(3 + 5 / 12, "feet"),
  25953. default: true
  25954. },
  25955. {
  25956. name: "Minimacro",
  25957. height: math.unit(125, "feet")
  25958. },
  25959. {
  25960. name: "Macro",
  25961. height: math.unit(0.5, "miles")
  25962. },
  25963. {
  25964. name: "Megamacro",
  25965. height: math.unit(50, "miles")
  25966. },
  25967. {
  25968. name: "Gigantic",
  25969. height: math.unit(750, "miles")
  25970. },
  25971. {
  25972. name: "Planetary",
  25973. height: math.unit(15000, "miles")
  25974. },
  25975. ]
  25976. ))
  25977. characterMakers.push(() => makeCharacter(
  25978. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25979. {
  25980. front: {
  25981. height: math.unit(14, "feet"),
  25982. weight: math.unit(959, "lb"),
  25983. name: "Front",
  25984. image: {
  25985. source: "./media/characters/arsenal/front.svg",
  25986. extra: 2357 / 2157,
  25987. bottom: 93 / 2458
  25988. }
  25989. },
  25990. },
  25991. [
  25992. {
  25993. name: "Normal",
  25994. height: math.unit(14, "feet"),
  25995. default: true
  25996. },
  25997. ]
  25998. ))
  25999. characterMakers.push(() => makeCharacter(
  26000. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26001. {
  26002. front: {
  26003. height: math.unit(6, "feet"),
  26004. weight: math.unit(150, "lb"),
  26005. name: "Front",
  26006. image: {
  26007. source: "./media/characters/adira/front.svg",
  26008. extra: 1078 / 1029,
  26009. bottom: 87 / 1166
  26010. }
  26011. },
  26012. },
  26013. [
  26014. {
  26015. name: "Micro",
  26016. height: math.unit(4, "inches"),
  26017. default: true
  26018. },
  26019. {
  26020. name: "Macro",
  26021. height: math.unit(50, "feet")
  26022. },
  26023. ]
  26024. ))
  26025. characterMakers.push(() => makeCharacter(
  26026. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26027. {
  26028. front: {
  26029. height: math.unit(16, "feet"),
  26030. weight: math.unit(1000, "lb"),
  26031. name: "Front",
  26032. image: {
  26033. source: "./media/characters/grim/front.svg",
  26034. extra: 622 / 614,
  26035. bottom: 18.1 / 642
  26036. }
  26037. },
  26038. back: {
  26039. height: math.unit(16, "feet"),
  26040. weight: math.unit(1000, "lb"),
  26041. name: "Back",
  26042. image: {
  26043. source: "./media/characters/grim/back.svg",
  26044. extra: 610.6 / 602,
  26045. bottom: 40.8 / 652
  26046. }
  26047. },
  26048. hunched: {
  26049. height: math.unit(9.75, "feet"),
  26050. weight: math.unit(1000, "lb"),
  26051. name: "Hunched",
  26052. image: {
  26053. source: "./media/characters/grim/hunched.svg",
  26054. extra: 304 / 297,
  26055. bottom: 35.4 / 394
  26056. }
  26057. },
  26058. },
  26059. [
  26060. {
  26061. name: "Normal",
  26062. height: math.unit(16, "feet"),
  26063. default: true
  26064. },
  26065. ]
  26066. ))
  26067. characterMakers.push(() => makeCharacter(
  26068. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26069. {
  26070. front: {
  26071. height: math.unit(2.3, "meters"),
  26072. weight: math.unit(300, "lb"),
  26073. name: "Front",
  26074. image: {
  26075. source: "./media/characters/sinja/front-sfw.svg",
  26076. extra: 1393 / 1294,
  26077. bottom: 70 / 1463
  26078. }
  26079. },
  26080. frontNsfw: {
  26081. height: math.unit(2.3, "meters"),
  26082. weight: math.unit(300, "lb"),
  26083. name: "Front (NSFW)",
  26084. image: {
  26085. source: "./media/characters/sinja/front-nsfw.svg",
  26086. extra: 1393 / 1294,
  26087. bottom: 70 / 1463
  26088. }
  26089. },
  26090. back: {
  26091. height: math.unit(2.3, "meters"),
  26092. weight: math.unit(300, "lb"),
  26093. name: "Back",
  26094. image: {
  26095. source: "./media/characters/sinja/back.svg",
  26096. extra: 1393 / 1294,
  26097. bottom: 70 / 1463
  26098. }
  26099. },
  26100. head: {
  26101. height: math.unit(1.771, "feet"),
  26102. name: "Head",
  26103. image: {
  26104. source: "./media/characters/sinja/head.svg"
  26105. }
  26106. },
  26107. slit: {
  26108. height: math.unit(0.8, "feet"),
  26109. name: "Slit",
  26110. image: {
  26111. source: "./media/characters/sinja/slit.svg"
  26112. }
  26113. },
  26114. },
  26115. [
  26116. {
  26117. name: "Normal",
  26118. height: math.unit(2.3, "meters")
  26119. },
  26120. {
  26121. name: "Macro",
  26122. height: math.unit(91, "meters"),
  26123. default: true
  26124. },
  26125. {
  26126. name: "Megamacro",
  26127. height: math.unit(91440, "meters")
  26128. },
  26129. {
  26130. name: "Gigamacro",
  26131. height: math.unit(60960000, "meters")
  26132. },
  26133. {
  26134. name: "Teramacro",
  26135. height: math.unit(9144000000, "meters")
  26136. },
  26137. ]
  26138. ))
  26139. characterMakers.push(() => makeCharacter(
  26140. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26141. {
  26142. front: {
  26143. height: math.unit(1.7, "meters"),
  26144. weight: math.unit(130, "lb"),
  26145. name: "Front",
  26146. image: {
  26147. source: "./media/characters/kyu/front.svg",
  26148. extra: 415 / 395,
  26149. bottom: 5 / 420
  26150. }
  26151. },
  26152. head: {
  26153. height: math.unit(1.75, "feet"),
  26154. name: "Head",
  26155. image: {
  26156. source: "./media/characters/kyu/head.svg"
  26157. }
  26158. },
  26159. foot: {
  26160. height: math.unit(0.81, "feet"),
  26161. name: "Foot",
  26162. image: {
  26163. source: "./media/characters/kyu/foot.svg"
  26164. }
  26165. },
  26166. },
  26167. [
  26168. {
  26169. name: "Normal",
  26170. height: math.unit(1.7, "meters")
  26171. },
  26172. {
  26173. name: "Macro",
  26174. height: math.unit(131, "feet"),
  26175. default: true
  26176. },
  26177. {
  26178. name: "Megamacro",
  26179. height: math.unit(91440, "meters")
  26180. },
  26181. {
  26182. name: "Gigamacro",
  26183. height: math.unit(60960000, "meters")
  26184. },
  26185. {
  26186. name: "Teramacro",
  26187. height: math.unit(9144000000, "meters")
  26188. },
  26189. ]
  26190. ))
  26191. characterMakers.push(() => makeCharacter(
  26192. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26193. {
  26194. front: {
  26195. height: math.unit(7 + 1 / 12, "feet"),
  26196. weight: math.unit(250, "lb"),
  26197. name: "Front",
  26198. image: {
  26199. source: "./media/characters/joey/front.svg",
  26200. extra: 1791 / 1537,
  26201. bottom: 28 / 1816
  26202. }
  26203. },
  26204. },
  26205. [
  26206. {
  26207. name: "Micro",
  26208. height: math.unit(3, "inches")
  26209. },
  26210. {
  26211. name: "Normal",
  26212. height: math.unit(7 + 1 / 12, "feet"),
  26213. default: true
  26214. },
  26215. ]
  26216. ))
  26217. characterMakers.push(() => makeCharacter(
  26218. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26219. {
  26220. front: {
  26221. height: math.unit(165, "cm"),
  26222. weight: math.unit(140, "lb"),
  26223. name: "Front",
  26224. image: {
  26225. source: "./media/characters/sam-evans/front.svg",
  26226. extra: 3417 / 3230,
  26227. bottom: 41.3 / 3417
  26228. }
  26229. },
  26230. frontSixTails: {
  26231. height: math.unit(165, "cm"),
  26232. weight: math.unit(140, "lb"),
  26233. name: "Front-six-tails",
  26234. image: {
  26235. source: "./media/characters/sam-evans/front-six-tails.svg",
  26236. extra: 3417 / 3230,
  26237. bottom: 41.3 / 3417
  26238. }
  26239. },
  26240. back: {
  26241. height: math.unit(165, "cm"),
  26242. weight: math.unit(140, "lb"),
  26243. name: "Back",
  26244. image: {
  26245. source: "./media/characters/sam-evans/back.svg",
  26246. extra: 3227 / 3032,
  26247. bottom: 6.8 / 3234
  26248. }
  26249. },
  26250. face: {
  26251. height: math.unit(0.68, "feet"),
  26252. name: "Face",
  26253. image: {
  26254. source: "./media/characters/sam-evans/face.svg"
  26255. }
  26256. },
  26257. },
  26258. [
  26259. {
  26260. name: "Normal",
  26261. height: math.unit(165, "cm"),
  26262. default: true
  26263. },
  26264. {
  26265. name: "Macro",
  26266. height: math.unit(100, "meters")
  26267. },
  26268. {
  26269. name: "Macro+",
  26270. height: math.unit(800, "meters")
  26271. },
  26272. {
  26273. name: "Macro++",
  26274. height: math.unit(3, "km")
  26275. },
  26276. {
  26277. name: "Macro+++",
  26278. height: math.unit(30, "km")
  26279. },
  26280. ]
  26281. ))
  26282. characterMakers.push(() => makeCharacter(
  26283. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26284. {
  26285. front: {
  26286. height: math.unit(10, "feet"),
  26287. weight: math.unit(750, "lb"),
  26288. name: "Front",
  26289. image: {
  26290. source: "./media/characters/juliet-a/front.svg",
  26291. extra: 1766 / 1720,
  26292. bottom: 43 / 1809
  26293. }
  26294. },
  26295. back: {
  26296. height: math.unit(10, "feet"),
  26297. weight: math.unit(750, "lb"),
  26298. name: "Back",
  26299. image: {
  26300. source: "./media/characters/juliet-a/back.svg",
  26301. extra: 1781 / 1734,
  26302. bottom: 35 / 1810,
  26303. }
  26304. },
  26305. },
  26306. [
  26307. {
  26308. name: "Normal",
  26309. height: math.unit(10, "feet"),
  26310. default: true
  26311. },
  26312. {
  26313. name: "Dragon Form",
  26314. height: math.unit(250, "feet")
  26315. },
  26316. {
  26317. name: "Macro",
  26318. height: math.unit(1000, "feet")
  26319. },
  26320. {
  26321. name: "Megamacro",
  26322. height: math.unit(10000, "feet")
  26323. }
  26324. ]
  26325. ))
  26326. characterMakers.push(() => makeCharacter(
  26327. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26328. {
  26329. regular: {
  26330. height: math.unit(7 + 3 / 12, "feet"),
  26331. weight: math.unit(260, "lb"),
  26332. name: "Regular",
  26333. image: {
  26334. source: "./media/characters/wild/regular.svg",
  26335. extra: 97.45 / 92,
  26336. bottom: 6.8 / 104.3
  26337. }
  26338. },
  26339. biggums: {
  26340. height: math.unit(8 + 6 / 12, "feet"),
  26341. weight: math.unit(425, "lb"),
  26342. name: "Biggums",
  26343. image: {
  26344. source: "./media/characters/wild/biggums.svg",
  26345. extra: 97.45 / 92,
  26346. bottom: 7.5 / 132.34
  26347. }
  26348. },
  26349. mawRegular: {
  26350. height: math.unit(1.24, "feet"),
  26351. name: "Maw (Regular)",
  26352. image: {
  26353. source: "./media/characters/wild/maw.svg"
  26354. }
  26355. },
  26356. mawBiggums: {
  26357. height: math.unit(1.47, "feet"),
  26358. name: "Maw (Biggums)",
  26359. image: {
  26360. source: "./media/characters/wild/maw.svg"
  26361. }
  26362. },
  26363. },
  26364. [
  26365. {
  26366. name: "Normal",
  26367. height: math.unit(7 + 3 / 12, "feet"),
  26368. default: true
  26369. },
  26370. ]
  26371. ))
  26372. characterMakers.push(() => makeCharacter(
  26373. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26374. {
  26375. front: {
  26376. height: math.unit(2.5, "meters"),
  26377. weight: math.unit(200, "kg"),
  26378. name: "Front",
  26379. image: {
  26380. source: "./media/characters/vidar/front.svg",
  26381. extra: 2994 / 2795,
  26382. bottom: 56 / 3061
  26383. }
  26384. },
  26385. back: {
  26386. height: math.unit(2.5, "meters"),
  26387. weight: math.unit(200, "kg"),
  26388. name: "Back",
  26389. image: {
  26390. source: "./media/characters/vidar/back.svg",
  26391. extra: 3131 / 2928,
  26392. bottom: 13.5 / 3141.5
  26393. }
  26394. },
  26395. feral: {
  26396. height: math.unit(2.5, "meters"),
  26397. weight: math.unit(2000, "kg"),
  26398. name: "Feral",
  26399. image: {
  26400. source: "./media/characters/vidar/feral.svg",
  26401. extra: 2790 / 1765,
  26402. bottom: 6 / 2796
  26403. }
  26404. },
  26405. },
  26406. [
  26407. {
  26408. name: "Normal",
  26409. height: math.unit(2.5, "meters"),
  26410. default: true
  26411. },
  26412. {
  26413. name: "Macro",
  26414. height: math.unit(100, "meters")
  26415. },
  26416. ]
  26417. ))
  26418. characterMakers.push(() => makeCharacter(
  26419. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26420. {
  26421. front: {
  26422. height: math.unit(5 + 9 / 12, "feet"),
  26423. weight: math.unit(120, "lb"),
  26424. name: "Front",
  26425. image: {
  26426. source: "./media/characters/ash/front.svg",
  26427. extra: 2189 / 1961,
  26428. bottom: 5.2 / 2194
  26429. }
  26430. },
  26431. },
  26432. [
  26433. {
  26434. name: "Normal",
  26435. height: math.unit(5 + 9 / 12, "feet"),
  26436. default: true
  26437. },
  26438. ]
  26439. ))
  26440. characterMakers.push(() => makeCharacter(
  26441. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26442. {
  26443. front: {
  26444. height: math.unit(9, "feet"),
  26445. weight: math.unit(10000, "lb"),
  26446. name: "Front",
  26447. image: {
  26448. source: "./media/characters/gygabite/front.svg",
  26449. bottom: 31.7 / 537.8,
  26450. extra: 505 / 370
  26451. }
  26452. },
  26453. },
  26454. [
  26455. {
  26456. name: "Normal",
  26457. height: math.unit(9, "feet"),
  26458. default: true
  26459. },
  26460. ]
  26461. ))
  26462. characterMakers.push(() => makeCharacter(
  26463. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26464. {
  26465. front: {
  26466. height: math.unit(12, "feet"),
  26467. weight: math.unit(35000, "lb"),
  26468. name: "Front",
  26469. image: {
  26470. source: "./media/characters/p0tat0/front.svg",
  26471. extra: 1065 / 921,
  26472. bottom: 55.7 / 1121.25
  26473. }
  26474. },
  26475. },
  26476. [
  26477. {
  26478. name: "Normal",
  26479. height: math.unit(12, "feet"),
  26480. default: true
  26481. },
  26482. ]
  26483. ))
  26484. characterMakers.push(() => makeCharacter(
  26485. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26486. {
  26487. side: {
  26488. height: math.unit(6.5, "feet"),
  26489. weight: math.unit(800, "lb"),
  26490. name: "Side",
  26491. image: {
  26492. source: "./media/characters/dusk/side.svg",
  26493. extra: 615 / 373,
  26494. bottom: 53 / 664
  26495. }
  26496. },
  26497. sitting: {
  26498. height: math.unit(7, "feet"),
  26499. weight: math.unit(800, "lb"),
  26500. name: "Sitting",
  26501. image: {
  26502. source: "./media/characters/dusk/sitting.svg",
  26503. extra: 753 / 425,
  26504. bottom: 33 / 774
  26505. }
  26506. },
  26507. head: {
  26508. height: math.unit(6.1, "feet"),
  26509. name: "Head",
  26510. image: {
  26511. source: "./media/characters/dusk/head.svg"
  26512. }
  26513. },
  26514. },
  26515. [
  26516. {
  26517. name: "Normal",
  26518. height: math.unit(7, "feet"),
  26519. default: true
  26520. },
  26521. ]
  26522. ))
  26523. characterMakers.push(() => makeCharacter(
  26524. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26525. {
  26526. front: {
  26527. height: math.unit(15, "feet"),
  26528. weight: math.unit(7000, "lb"),
  26529. name: "Front",
  26530. image: {
  26531. source: "./media/characters/jay-direwolf/front.svg",
  26532. extra: 1810 / 1732,
  26533. bottom: 66 / 1892
  26534. }
  26535. },
  26536. },
  26537. [
  26538. {
  26539. name: "Normal",
  26540. height: math.unit(15, "feet"),
  26541. default: true
  26542. },
  26543. ]
  26544. ))
  26545. characterMakers.push(() => makeCharacter(
  26546. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26547. {
  26548. front: {
  26549. height: math.unit(4 + 9 / 12, "feet"),
  26550. weight: math.unit(130, "lb"),
  26551. name: "Front",
  26552. image: {
  26553. source: "./media/characters/anchovie/front.svg",
  26554. extra: 382 / 350,
  26555. bottom: 25 / 409
  26556. }
  26557. },
  26558. back: {
  26559. height: math.unit(4 + 9 / 12, "feet"),
  26560. weight: math.unit(130, "lb"),
  26561. name: "Back",
  26562. image: {
  26563. source: "./media/characters/anchovie/back.svg",
  26564. extra: 385 / 352,
  26565. bottom: 16.6 / 402
  26566. }
  26567. },
  26568. frontDressed: {
  26569. height: math.unit(4 + 9 / 12, "feet"),
  26570. weight: math.unit(130, "lb"),
  26571. name: "Front (Dressed)",
  26572. image: {
  26573. source: "./media/characters/anchovie/front-dressed.svg",
  26574. extra: 382 / 350,
  26575. bottom: 25 / 409
  26576. }
  26577. },
  26578. backDressed: {
  26579. height: math.unit(4 + 9 / 12, "feet"),
  26580. weight: math.unit(130, "lb"),
  26581. name: "Back (Dressed)",
  26582. image: {
  26583. source: "./media/characters/anchovie/back-dressed.svg",
  26584. extra: 385 / 352,
  26585. bottom: 16.6 / 402
  26586. }
  26587. },
  26588. },
  26589. [
  26590. {
  26591. name: "Micro",
  26592. height: math.unit(6.4, "inches")
  26593. },
  26594. {
  26595. name: "Normal",
  26596. height: math.unit(4 + 9 / 12, "feet"),
  26597. default: true
  26598. },
  26599. ]
  26600. ))
  26601. characterMakers.push(() => makeCharacter(
  26602. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26603. {
  26604. front: {
  26605. height: math.unit(2, "meters"),
  26606. weight: math.unit(180, "lb"),
  26607. name: "Front",
  26608. image: {
  26609. source: "./media/characters/acidrenamon/front.svg",
  26610. extra: 987 / 890,
  26611. bottom: 22.8 / 1009
  26612. }
  26613. },
  26614. back: {
  26615. height: math.unit(2, "meters"),
  26616. weight: math.unit(180, "lb"),
  26617. name: "Back",
  26618. image: {
  26619. source: "./media/characters/acidrenamon/back.svg",
  26620. extra: 983 / 891,
  26621. bottom: 8.4 / 992
  26622. }
  26623. },
  26624. head: {
  26625. height: math.unit(1.92, "feet"),
  26626. name: "Head",
  26627. image: {
  26628. source: "./media/characters/acidrenamon/head.svg"
  26629. }
  26630. },
  26631. rump: {
  26632. height: math.unit(1.72, "feet"),
  26633. name: "Rump",
  26634. image: {
  26635. source: "./media/characters/acidrenamon/rump.svg"
  26636. }
  26637. },
  26638. tail: {
  26639. height: math.unit(4.2, "feet"),
  26640. name: "Tail",
  26641. image: {
  26642. source: "./media/characters/acidrenamon/tail.svg"
  26643. }
  26644. },
  26645. },
  26646. [
  26647. {
  26648. name: "Normal",
  26649. height: math.unit(2, "meters"),
  26650. default: true
  26651. },
  26652. {
  26653. name: "Minimacro",
  26654. height: math.unit(7, "meters")
  26655. },
  26656. {
  26657. name: "Macro",
  26658. height: math.unit(200, "meters")
  26659. },
  26660. {
  26661. name: "Gigamacro",
  26662. height: math.unit(0.2, "earths")
  26663. },
  26664. ]
  26665. ))
  26666. characterMakers.push(() => makeCharacter(
  26667. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26668. {
  26669. front: {
  26670. height: math.unit(6, "feet"),
  26671. weight: math.unit(150, "lb"),
  26672. name: "Front",
  26673. image: {
  26674. source: "./media/characters/kenzie-lee/front.svg",
  26675. extra: 1525 / 1465,
  26676. bottom: 45 / 1570
  26677. }
  26678. },
  26679. side: {
  26680. height: math.unit(6, "feet"),
  26681. weight: math.unit(150, "lb"),
  26682. name: "Side",
  26683. image: {
  26684. source: "./media/characters/kenzie-lee/side.svg",
  26685. extra: 5505 / 5383,
  26686. bottom: 60 / 5573
  26687. }
  26688. },
  26689. },
  26690. [
  26691. {
  26692. name: "Normal",
  26693. height: math.unit(152, "feet"),
  26694. default: true
  26695. },
  26696. {
  26697. name: "Megamacro",
  26698. height: math.unit(7, "miles")
  26699. },
  26700. {
  26701. name: "Gigamacro",
  26702. height: math.unit(8000, "miles")
  26703. },
  26704. ]
  26705. ))
  26706. characterMakers.push(() => makeCharacter(
  26707. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26708. {
  26709. side: {
  26710. height: math.unit(6, "feet"),
  26711. weight: math.unit(150, "lb"),
  26712. name: "Side",
  26713. image: {
  26714. source: "./media/characters/withers/side.svg",
  26715. extra: 1830 / 1728,
  26716. bottom: 96 / 1927
  26717. }
  26718. },
  26719. front: {
  26720. height: math.unit(6, "feet"),
  26721. weight: math.unit(150, "lb"),
  26722. name: "Front",
  26723. image: {
  26724. source: "./media/characters/withers/front.svg",
  26725. extra: 1514 / 1438,
  26726. bottom: 118 / 1632
  26727. }
  26728. },
  26729. },
  26730. [
  26731. {
  26732. name: "Macro",
  26733. height: math.unit(168, "feet"),
  26734. default: true
  26735. },
  26736. {
  26737. name: "Megamacro",
  26738. height: math.unit(15, "miles")
  26739. }
  26740. ]
  26741. ))
  26742. characterMakers.push(() => makeCharacter(
  26743. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26744. {
  26745. front: {
  26746. height: math.unit(6 + 7 / 12, "feet"),
  26747. weight: math.unit(250, "lb"),
  26748. name: "Front",
  26749. image: {
  26750. source: "./media/characters/nemoskii/front.svg",
  26751. extra: 2270 / 1734,
  26752. bottom: 86 / 2354
  26753. }
  26754. },
  26755. back: {
  26756. height: math.unit(6 + 7 / 12, "feet"),
  26757. weight: math.unit(250, "lb"),
  26758. name: "Back",
  26759. image: {
  26760. source: "./media/characters/nemoskii/back.svg",
  26761. extra: 1845 / 1788,
  26762. bottom: 10.5 / 1852
  26763. }
  26764. },
  26765. head: {
  26766. height: math.unit(1.31, "feet"),
  26767. name: "Head",
  26768. image: {
  26769. source: "./media/characters/nemoskii/head.svg"
  26770. }
  26771. },
  26772. },
  26773. [
  26774. {
  26775. name: "Normal",
  26776. height: math.unit(6 + 7 / 12, "feet"),
  26777. default: true
  26778. },
  26779. ]
  26780. ))
  26781. characterMakers.push(() => makeCharacter(
  26782. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26783. {
  26784. front: {
  26785. height: math.unit(1, "mile"),
  26786. weight: math.unit(265261.9, "lb"),
  26787. name: "Front",
  26788. image: {
  26789. source: "./media/characters/shui/front.svg",
  26790. extra: 1633 / 1564,
  26791. bottom: 91.5 / 1726
  26792. }
  26793. },
  26794. },
  26795. [
  26796. {
  26797. name: "Macro",
  26798. height: math.unit(1, "mile"),
  26799. default: true
  26800. },
  26801. ]
  26802. ))
  26803. characterMakers.push(() => makeCharacter(
  26804. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26805. {
  26806. front: {
  26807. height: math.unit(12 + 6 / 12, "feet"),
  26808. weight: math.unit(1342, "lb"),
  26809. name: "Front",
  26810. image: {
  26811. source: "./media/characters/arokh-takakura/front.svg",
  26812. extra: 1089 / 1043,
  26813. bottom: 77.4 / 1176.7
  26814. }
  26815. },
  26816. back: {
  26817. height: math.unit(12 + 6 / 12, "feet"),
  26818. weight: math.unit(1342, "lb"),
  26819. name: "Back",
  26820. image: {
  26821. source: "./media/characters/arokh-takakura/back.svg",
  26822. extra: 1046 / 1019,
  26823. bottom: 102 / 1150
  26824. }
  26825. },
  26826. },
  26827. [
  26828. {
  26829. name: "Big",
  26830. height: math.unit(12 + 6 / 12, "feet"),
  26831. default: true
  26832. },
  26833. ]
  26834. ))
  26835. characterMakers.push(() => makeCharacter(
  26836. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26837. {
  26838. front: {
  26839. height: math.unit(5 + 6 / 12, "feet"),
  26840. weight: math.unit(150, "lb"),
  26841. name: "Front",
  26842. image: {
  26843. source: "./media/characters/theo/front.svg",
  26844. extra: 1184 / 1131,
  26845. bottom: 7.4 / 1191
  26846. }
  26847. },
  26848. },
  26849. [
  26850. {
  26851. name: "Micro",
  26852. height: math.unit(5, "inches")
  26853. },
  26854. {
  26855. name: "Normal",
  26856. height: math.unit(5 + 6 / 12, "feet"),
  26857. default: true
  26858. },
  26859. ]
  26860. ))
  26861. characterMakers.push(() => makeCharacter(
  26862. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26863. {
  26864. front: {
  26865. height: math.unit(5 + 9 / 12, "feet"),
  26866. weight: math.unit(130, "lb"),
  26867. name: "Front",
  26868. image: {
  26869. source: "./media/characters/cecelia-swift/front.svg",
  26870. extra: 502 / 484,
  26871. bottom: 23 / 523
  26872. }
  26873. },
  26874. back: {
  26875. height: math.unit(5 + 9 / 12, "feet"),
  26876. weight: math.unit(130, "lb"),
  26877. name: "Back",
  26878. image: {
  26879. source: "./media/characters/cecelia-swift/back.svg",
  26880. extra: 499 / 485,
  26881. bottom: 12 / 511
  26882. }
  26883. },
  26884. head: {
  26885. height: math.unit(0.90, "feet"),
  26886. name: "Head",
  26887. image: {
  26888. source: "./media/characters/cecelia-swift/head.svg"
  26889. }
  26890. },
  26891. rump: {
  26892. height: math.unit(1.75, "feet"),
  26893. name: "Rump",
  26894. image: {
  26895. source: "./media/characters/cecelia-swift/rump.svg"
  26896. }
  26897. },
  26898. },
  26899. [
  26900. {
  26901. name: "Normal",
  26902. height: math.unit(5 + 9 / 12, "feet"),
  26903. default: true
  26904. },
  26905. {
  26906. name: "Big",
  26907. height: math.unit(50, "feet")
  26908. },
  26909. {
  26910. name: "Macro",
  26911. height: math.unit(100, "feet")
  26912. },
  26913. {
  26914. name: "Macro+",
  26915. height: math.unit(500, "feet")
  26916. },
  26917. {
  26918. name: "Macro++",
  26919. height: math.unit(1000, "feet")
  26920. },
  26921. ]
  26922. ))
  26923. characterMakers.push(() => makeCharacter(
  26924. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26925. {
  26926. front: {
  26927. height: math.unit(6, "feet"),
  26928. weight: math.unit(150, "lb"),
  26929. name: "Front",
  26930. image: {
  26931. source: "./media/characters/kaunan/front.svg",
  26932. extra: 2890 / 2523,
  26933. bottom: 49 / 2939
  26934. }
  26935. },
  26936. },
  26937. [
  26938. {
  26939. name: "Macro",
  26940. height: math.unit(150, "feet"),
  26941. default: true
  26942. },
  26943. ]
  26944. ))
  26945. characterMakers.push(() => makeCharacter(
  26946. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26947. {
  26948. front: {
  26949. height: math.unit(175, "cm"),
  26950. weight: math.unit(60, "kg"),
  26951. name: "Front",
  26952. image: {
  26953. source: "./media/characters/fei/front.svg",
  26954. extra: 2581 / 2400,
  26955. bottom: 82.2 / 2663
  26956. }
  26957. },
  26958. },
  26959. [
  26960. {
  26961. name: "Mortal",
  26962. height: math.unit(175, "cm")
  26963. },
  26964. {
  26965. name: "Normal",
  26966. height: math.unit(3500, "m"),
  26967. default: true
  26968. },
  26969. {
  26970. name: "Stroll",
  26971. height: math.unit(17.5, "km")
  26972. },
  26973. {
  26974. name: "Showoff",
  26975. height: math.unit(175, "km")
  26976. },
  26977. ]
  26978. ))
  26979. characterMakers.push(() => makeCharacter(
  26980. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26981. {
  26982. front: {
  26983. height: math.unit(7, "feet"),
  26984. weight: math.unit(1000, "kg"),
  26985. name: "Front",
  26986. image: {
  26987. source: "./media/characters/edrax/front.svg",
  26988. extra: 2838 / 2550,
  26989. bottom: 130 / 2968
  26990. }
  26991. },
  26992. },
  26993. [
  26994. {
  26995. name: "Small",
  26996. height: math.unit(7, "feet")
  26997. },
  26998. {
  26999. name: "Normal",
  27000. height: math.unit(1500, "meters")
  27001. },
  27002. {
  27003. name: "Mega",
  27004. height: math.unit(12000000, "km"),
  27005. default: true
  27006. },
  27007. {
  27008. name: "Megamacro",
  27009. height: math.unit(10600000, "lightyears")
  27010. },
  27011. {
  27012. name: "Hypermacro",
  27013. height: math.unit(256, "yottameters")
  27014. },
  27015. ]
  27016. ))
  27017. characterMakers.push(() => makeCharacter(
  27018. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27019. {
  27020. front: {
  27021. height: math.unit(10, "feet"),
  27022. weight: math.unit(750, "lb"),
  27023. name: "Front",
  27024. image: {
  27025. source: "./media/characters/clove/front.svg",
  27026. extra: 2031 / 1860,
  27027. bottom: 47.8 / 2080
  27028. }
  27029. },
  27030. back: {
  27031. height: math.unit(10, "feet"),
  27032. weight: math.unit(750, "lb"),
  27033. name: "Back",
  27034. image: {
  27035. source: "./media/characters/clove/back.svg",
  27036. extra: 2025 / 1859,
  27037. bottom: 46 / 2071
  27038. }
  27039. },
  27040. },
  27041. [
  27042. {
  27043. name: "Normal",
  27044. height: math.unit(10, "feet")
  27045. },
  27046. ]
  27047. ))
  27048. characterMakers.push(() => makeCharacter(
  27049. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27050. {
  27051. front: {
  27052. height: math.unit(4, "feet"),
  27053. weight: math.unit(50, "lb"),
  27054. name: "Front",
  27055. image: {
  27056. source: "./media/characters/alex-rabbit/front.svg",
  27057. extra: 507 / 458,
  27058. bottom: 18.5 / 527
  27059. }
  27060. },
  27061. back: {
  27062. height: math.unit(4, "feet"),
  27063. weight: math.unit(50, "lb"),
  27064. name: "Back",
  27065. image: {
  27066. source: "./media/characters/alex-rabbit/back.svg",
  27067. extra: 502 / 460,
  27068. bottom: 18.9 / 521
  27069. }
  27070. },
  27071. },
  27072. [
  27073. {
  27074. name: "Normal",
  27075. height: math.unit(4, "feet"),
  27076. default: true
  27077. },
  27078. ]
  27079. ))
  27080. characterMakers.push(() => makeCharacter(
  27081. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27082. {
  27083. front: {
  27084. height: math.unit(1 + 3 / 12, "feet"),
  27085. weight: math.unit(80, "lb"),
  27086. name: "Front",
  27087. image: {
  27088. source: "./media/characters/zander-rose/front.svg",
  27089. extra: 916 / 797,
  27090. bottom: 17 / 933
  27091. }
  27092. },
  27093. back: {
  27094. height: math.unit(1 + 3 / 12, "feet"),
  27095. weight: math.unit(80, "lb"),
  27096. name: "Back",
  27097. image: {
  27098. source: "./media/characters/zander-rose/back.svg",
  27099. extra: 903 / 779,
  27100. bottom: 31 / 934
  27101. }
  27102. },
  27103. },
  27104. [
  27105. {
  27106. name: "Normal",
  27107. height: math.unit(1 + 3 / 12, "feet"),
  27108. default: true
  27109. },
  27110. ]
  27111. ))
  27112. characterMakers.push(() => makeCharacter(
  27113. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27114. {
  27115. anthro: {
  27116. height: math.unit(6, "feet"),
  27117. weight: math.unit(150, "lb"),
  27118. name: "Anthro",
  27119. image: {
  27120. source: "./media/characters/razz/anthro.svg",
  27121. extra: 1437 / 1343,
  27122. bottom: 48 / 1485
  27123. }
  27124. },
  27125. feral: {
  27126. height: math.unit(6, "feet"),
  27127. weight: math.unit(150, "lb"),
  27128. name: "Feral",
  27129. image: {
  27130. source: "./media/characters/razz/feral.svg",
  27131. extra: 2569 / 1385,
  27132. bottom: 95 / 2664
  27133. }
  27134. },
  27135. },
  27136. [
  27137. {
  27138. name: "Normal",
  27139. height: math.unit(6, "feet"),
  27140. default: true
  27141. },
  27142. ]
  27143. ))
  27144. characterMakers.push(() => makeCharacter(
  27145. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27146. {
  27147. front: {
  27148. height: math.unit(9 + 4 / 12, "feet"),
  27149. weight: math.unit(500, "lb"),
  27150. name: "Front",
  27151. image: {
  27152. source: "./media/characters/morrigan/front.svg",
  27153. extra: 2707 / 2579,
  27154. bottom: 156 / 2863
  27155. }
  27156. },
  27157. },
  27158. [
  27159. {
  27160. name: "Normal",
  27161. height: math.unit(9 + 4 / 12, "feet"),
  27162. default: true
  27163. },
  27164. ]
  27165. ))
  27166. characterMakers.push(() => makeCharacter(
  27167. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27168. {
  27169. front: {
  27170. height: math.unit(5, "stories"),
  27171. weight: math.unit(4000, "lb"),
  27172. name: "Front",
  27173. image: {
  27174. source: "./media/characters/jenene/front.svg",
  27175. extra: 1780 / 1710,
  27176. bottom: 57 / 1837
  27177. }
  27178. },
  27179. },
  27180. [
  27181. {
  27182. name: "Normal",
  27183. height: math.unit(5, "stories"),
  27184. default: true
  27185. },
  27186. ]
  27187. ))
  27188. characterMakers.push(() => makeCharacter(
  27189. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27190. {
  27191. front: {
  27192. height: math.unit(6, "feet"),
  27193. weight: math.unit(150, "lb"),
  27194. name: "Front",
  27195. image: {
  27196. source: "./media/characters/vix-archaser/front.svg",
  27197. extra: 2767 / 2562,
  27198. bottom: 36 / 2803
  27199. }
  27200. },
  27201. },
  27202. [
  27203. {
  27204. name: "Micro",
  27205. height: math.unit(1, "foot")
  27206. },
  27207. {
  27208. name: "Normal",
  27209. height: math.unit(6 + 5 / 12, "feet")
  27210. },
  27211. {
  27212. name: "Minimacro",
  27213. height: math.unit(500, "feet")
  27214. },
  27215. {
  27216. name: "Macro",
  27217. height: math.unit(4, "miles")
  27218. },
  27219. {
  27220. name: "Megamacro",
  27221. height: math.unit(250, "miles"),
  27222. default: true
  27223. },
  27224. {
  27225. name: "Gigamacro",
  27226. height: math.unit(1, "universe")
  27227. },
  27228. {
  27229. name: "Endgame",
  27230. height: math.unit(100, "multiverses")
  27231. }
  27232. ]
  27233. ))
  27234. characterMakers.push(() => makeCharacter(
  27235. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27236. {
  27237. taurSfw: {
  27238. height: math.unit(10, "meters"),
  27239. weight: math.unit(17500, "kg"),
  27240. name: "Taur",
  27241. image: {
  27242. source: "./media/characters/faey/taur-sfw.svg",
  27243. extra: 1200 / 968,
  27244. bottom: 41 / 1241
  27245. }
  27246. },
  27247. chestmaw: {
  27248. height: math.unit(2.01, "meters"),
  27249. name: "Chestmaw",
  27250. image: {
  27251. source: "./media/characters/faey/chestmaw.svg"
  27252. }
  27253. },
  27254. foot: {
  27255. height: math.unit(2.43, "meters"),
  27256. name: "Foot",
  27257. image: {
  27258. source: "./media/characters/faey/foot.svg"
  27259. }
  27260. },
  27261. jaws: {
  27262. height: math.unit(1.66, "meters"),
  27263. name: "Jaws",
  27264. image: {
  27265. source: "./media/characters/faey/jaws.svg"
  27266. }
  27267. },
  27268. tongues: {
  27269. height: math.unit(2.01, "meters"),
  27270. name: "Tongues",
  27271. image: {
  27272. source: "./media/characters/faey/tongues.svg"
  27273. }
  27274. },
  27275. },
  27276. [
  27277. {
  27278. name: "Small",
  27279. height: math.unit(10, "meters"),
  27280. default: true
  27281. },
  27282. {
  27283. name: "Big",
  27284. height: math.unit(500000, "km")
  27285. },
  27286. ]
  27287. ))
  27288. characterMakers.push(() => makeCharacter(
  27289. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27290. {
  27291. front: {
  27292. height: math.unit(7, "feet"),
  27293. weight: math.unit(275, "lb"),
  27294. name: "Front",
  27295. image: {
  27296. source: "./media/characters/roku/front.svg",
  27297. extra: 903 / 878,
  27298. bottom: 37 / 940
  27299. }
  27300. },
  27301. },
  27302. [
  27303. {
  27304. name: "Normal",
  27305. height: math.unit(7, "feet"),
  27306. default: true
  27307. },
  27308. {
  27309. name: "Macro",
  27310. height: math.unit(500, "feet")
  27311. },
  27312. {
  27313. name: "Megamacro",
  27314. height: math.unit(200, "miles")
  27315. },
  27316. ]
  27317. ))
  27318. characterMakers.push(() => makeCharacter(
  27319. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27320. {
  27321. front: {
  27322. height: math.unit(6 + 2 / 12, "feet"),
  27323. weight: math.unit(150, "lb"),
  27324. name: "Front",
  27325. image: {
  27326. source: "./media/characters/lira/front.svg",
  27327. extra: 1727 / 1605,
  27328. bottom: 26 / 1753
  27329. }
  27330. },
  27331. back: {
  27332. height: math.unit(6 + 2 / 12, "feet"),
  27333. weight: math.unit(150, "lb"),
  27334. name: "Back",
  27335. image: {
  27336. source: "./media/characters/lira/back.svg",
  27337. extra: 1713 / 159,
  27338. bottom: 20 / 1733
  27339. }
  27340. },
  27341. hand: {
  27342. height: math.unit(0.75, "feet"),
  27343. name: "Hand",
  27344. image: {
  27345. source: "./media/characters/lira/hand.svg"
  27346. }
  27347. },
  27348. maw: {
  27349. height: math.unit(0.65, "feet"),
  27350. name: "Maw",
  27351. image: {
  27352. source: "./media/characters/lira/maw.svg"
  27353. }
  27354. },
  27355. pawDigi: {
  27356. height: math.unit(1.6, "feet"),
  27357. name: "Paw Digi",
  27358. image: {
  27359. source: "./media/characters/lira/paw-digi.svg"
  27360. }
  27361. },
  27362. pawPlanti: {
  27363. height: math.unit(1.4, "feet"),
  27364. name: "Paw Planti",
  27365. image: {
  27366. source: "./media/characters/lira/paw-planti.svg"
  27367. }
  27368. },
  27369. },
  27370. [
  27371. {
  27372. name: "Normal",
  27373. height: math.unit(6 + 2 / 12, "feet"),
  27374. default: true
  27375. },
  27376. {
  27377. name: "Macro",
  27378. height: math.unit(100, "feet")
  27379. },
  27380. {
  27381. name: "Macro²",
  27382. height: math.unit(1600, "feet")
  27383. },
  27384. {
  27385. name: "Planetary",
  27386. height: math.unit(20, "earths")
  27387. },
  27388. ]
  27389. ))
  27390. characterMakers.push(() => makeCharacter(
  27391. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27392. {
  27393. front: {
  27394. height: math.unit(6, "feet"),
  27395. weight: math.unit(150, "lb"),
  27396. name: "Front",
  27397. image: {
  27398. source: "./media/characters/hadjet/front.svg",
  27399. extra: 1480 / 1346,
  27400. bottom: 26 / 1506
  27401. }
  27402. },
  27403. frontNsfw: {
  27404. height: math.unit(6, "feet"),
  27405. weight: math.unit(150, "lb"),
  27406. name: "Front (NSFW)",
  27407. image: {
  27408. source: "./media/characters/hadjet/front-nsfw.svg",
  27409. extra: 1440 / 1358,
  27410. bottom: 52 / 1492
  27411. }
  27412. },
  27413. },
  27414. [
  27415. {
  27416. name: "Macro",
  27417. height: math.unit(10, "stories"),
  27418. default: true
  27419. },
  27420. {
  27421. name: "Megamacro",
  27422. height: math.unit(1.5, "miles")
  27423. },
  27424. {
  27425. name: "Megamacro+",
  27426. height: math.unit(5, "miles")
  27427. },
  27428. ]
  27429. ))
  27430. characterMakers.push(() => makeCharacter(
  27431. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27432. {
  27433. side: {
  27434. height: math.unit(106, "feet"),
  27435. weight: math.unit(500, "tonnes"),
  27436. name: "Side",
  27437. image: {
  27438. source: "./media/characters/kodran/side.svg",
  27439. extra: 553 / 480,
  27440. bottom: 33 / 586
  27441. }
  27442. },
  27443. front: {
  27444. height: math.unit(132, "feet"),
  27445. weight: math.unit(500, "tonnes"),
  27446. name: "Front",
  27447. image: {
  27448. source: "./media/characters/kodran/front.svg",
  27449. extra: 667 / 643,
  27450. bottom: 42 / 709
  27451. }
  27452. },
  27453. flying: {
  27454. height: math.unit(350, "feet"),
  27455. weight: math.unit(500, "tonnes"),
  27456. name: "Flying",
  27457. image: {
  27458. source: "./media/characters/kodran/flying.svg"
  27459. }
  27460. },
  27461. foot: {
  27462. height: math.unit(33, "feet"),
  27463. name: "Foot",
  27464. image: {
  27465. source: "./media/characters/kodran/foot.svg"
  27466. }
  27467. },
  27468. footFront: {
  27469. height: math.unit(19, "feet"),
  27470. name: "Foot (Front)",
  27471. image: {
  27472. source: "./media/characters/kodran/foot-front.svg",
  27473. extra: 261 / 261,
  27474. bottom: 91 / 352
  27475. }
  27476. },
  27477. headFront: {
  27478. height: math.unit(53, "feet"),
  27479. name: "Head (Front)",
  27480. image: {
  27481. source: "./media/characters/kodran/head-front.svg"
  27482. }
  27483. },
  27484. headSide: {
  27485. height: math.unit(65, "feet"),
  27486. name: "Head (Side)",
  27487. image: {
  27488. source: "./media/characters/kodran/head-side.svg"
  27489. }
  27490. },
  27491. throat: {
  27492. height: math.unit(79, "feet"),
  27493. name: "Throat",
  27494. image: {
  27495. source: "./media/characters/kodran/throat.svg"
  27496. }
  27497. },
  27498. },
  27499. [
  27500. {
  27501. name: "Large",
  27502. height: math.unit(106, "feet"),
  27503. default: true
  27504. },
  27505. ]
  27506. ))
  27507. characterMakers.push(() => makeCharacter(
  27508. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27509. {
  27510. side: {
  27511. height: math.unit(11, "feet"),
  27512. weight: math.unit(150, "lb"),
  27513. name: "Side",
  27514. image: {
  27515. source: "./media/characters/pyxaron/side.svg",
  27516. extra: 305 / 195,
  27517. bottom: 17 / 322
  27518. }
  27519. },
  27520. },
  27521. [
  27522. {
  27523. name: "Normal",
  27524. height: math.unit(11, "feet")
  27525. },
  27526. ]
  27527. ))
  27528. characterMakers.push(() => makeCharacter(
  27529. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27530. {
  27531. front: {
  27532. height: math.unit(6, "feet"),
  27533. weight: math.unit(150, "lb"),
  27534. name: "Front",
  27535. image: {
  27536. source: "./media/characters/meep/front.svg",
  27537. extra: 88 / 80,
  27538. bottom: 6 / 94
  27539. }
  27540. },
  27541. },
  27542. [
  27543. {
  27544. name: "Fun Sized",
  27545. height: math.unit(2, "inches"),
  27546. default: true
  27547. },
  27548. {
  27549. name: "Friend Sized",
  27550. height: math.unit(8, "inches")
  27551. },
  27552. ]
  27553. ))
  27554. characterMakers.push(() => makeCharacter(
  27555. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27556. {
  27557. front: {
  27558. height: math.unit(15, "feet"),
  27559. weight: math.unit(2500, "lb"),
  27560. name: "Front",
  27561. image: {
  27562. source: "./media/characters/holly-rabbit/front.svg",
  27563. extra: 1433 / 1233,
  27564. bottom: 125 / 1558
  27565. }
  27566. },
  27567. dick: {
  27568. height: math.unit(4.6, "feet"),
  27569. name: "Dick",
  27570. image: {
  27571. source: "./media/characters/holly-rabbit/dick.svg"
  27572. }
  27573. },
  27574. },
  27575. [
  27576. {
  27577. name: "Normal",
  27578. height: math.unit(15, "feet"),
  27579. default: true
  27580. },
  27581. {
  27582. name: "Macro",
  27583. height: math.unit(250, "feet")
  27584. },
  27585. {
  27586. name: "Macro+",
  27587. height: math.unit(2500, "feet")
  27588. },
  27589. ]
  27590. ))
  27591. characterMakers.push(() => makeCharacter(
  27592. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27593. {
  27594. front: {
  27595. height: math.unit(3.02, "meters"),
  27596. weight: math.unit(500, "kg"),
  27597. name: "Front",
  27598. image: {
  27599. source: "./media/characters/drena/front.svg",
  27600. extra: 282 / 243,
  27601. bottom: 8 / 290
  27602. }
  27603. },
  27604. side: {
  27605. height: math.unit(3.02, "meters"),
  27606. weight: math.unit(500, "kg"),
  27607. name: "Side",
  27608. image: {
  27609. source: "./media/characters/drena/side.svg",
  27610. extra: 280 / 245,
  27611. bottom: 10 / 290
  27612. }
  27613. },
  27614. back: {
  27615. height: math.unit(3.02, "meters"),
  27616. weight: math.unit(500, "kg"),
  27617. name: "Back",
  27618. image: {
  27619. source: "./media/characters/drena/back.svg",
  27620. extra: 278 / 243,
  27621. bottom: 2 / 280
  27622. }
  27623. },
  27624. foot: {
  27625. height: math.unit(0.75, "meters"),
  27626. name: "Foot",
  27627. image: {
  27628. source: "./media/characters/drena/foot.svg"
  27629. }
  27630. },
  27631. maw: {
  27632. height: math.unit(0.82, "meters"),
  27633. name: "Maw",
  27634. image: {
  27635. source: "./media/characters/drena/maw.svg"
  27636. }
  27637. },
  27638. rump: {
  27639. height: math.unit(0.93, "meters"),
  27640. name: "Rump",
  27641. image: {
  27642. source: "./media/characters/drena/rump.svg"
  27643. }
  27644. },
  27645. },
  27646. [
  27647. {
  27648. name: "Normal",
  27649. height: math.unit(3.02, "meters"),
  27650. default: true
  27651. },
  27652. ]
  27653. ))
  27654. characterMakers.push(() => makeCharacter(
  27655. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27656. {
  27657. front: {
  27658. height: math.unit(6 + 4 / 12, "feet"),
  27659. weight: math.unit(250, "lb"),
  27660. name: "Front",
  27661. image: {
  27662. source: "./media/characters/remmyzilla/front.svg",
  27663. extra: 4033 / 3588,
  27664. bottom: 123 / 4156
  27665. }
  27666. },
  27667. back: {
  27668. height: math.unit(6 + 4 / 12, "feet"),
  27669. weight: math.unit(250, "lb"),
  27670. name: "Back",
  27671. image: {
  27672. source: "./media/characters/remmyzilla/back.svg",
  27673. extra: 2687 / 2555,
  27674. bottom: 48 / 2735
  27675. }
  27676. },
  27677. frontFancy: {
  27678. height: math.unit(6 + 4 / 12, "feet"),
  27679. weight: math.unit(250, "lb"),
  27680. name: "Front (Fancy)",
  27681. image: {
  27682. source: "./media/characters/remmyzilla/front-fancy.svg",
  27683. extra: 4119 / 3419,
  27684. bottom: 237 / 4356
  27685. }
  27686. },
  27687. paw: {
  27688. height: math.unit(1.73, "feet"),
  27689. name: "Paw",
  27690. image: {
  27691. source: "./media/characters/remmyzilla/paw.svg"
  27692. }
  27693. },
  27694. maw: {
  27695. height: math.unit(1.73, "feet"),
  27696. name: "Maw",
  27697. image: {
  27698. source: "./media/characters/remmyzilla/maw.svg"
  27699. }
  27700. },
  27701. },
  27702. [
  27703. {
  27704. name: "Normal",
  27705. height: math.unit(6 + 4 / 12, "feet")
  27706. },
  27707. {
  27708. name: "Minimacro",
  27709. height: math.unit(12 + 8 / 12, "feet")
  27710. },
  27711. {
  27712. name: "Normal",
  27713. height: math.unit(640, "feet"),
  27714. default: true
  27715. },
  27716. {
  27717. name: "Megamacro",
  27718. height: math.unit(6400, "feet")
  27719. },
  27720. {
  27721. name: "Gigamacro",
  27722. height: math.unit(64000, "miles")
  27723. },
  27724. ]
  27725. ))
  27726. characterMakers.push(() => makeCharacter(
  27727. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27728. {
  27729. front: {
  27730. height: math.unit(2.5, "meters"),
  27731. weight: math.unit(300, "lb"),
  27732. name: "Front",
  27733. image: {
  27734. source: "./media/characters/lawrence/front.svg",
  27735. extra: 357 / 335,
  27736. bottom: 30 / 387
  27737. }
  27738. },
  27739. back: {
  27740. height: math.unit(2.5, "meters"),
  27741. weight: math.unit(300, "lb"),
  27742. name: "Back",
  27743. image: {
  27744. source: "./media/characters/lawrence/back.svg",
  27745. extra: 357 / 338,
  27746. bottom: 16 / 373
  27747. }
  27748. },
  27749. head: {
  27750. height: math.unit(0.9, "meter"),
  27751. name: "Head",
  27752. image: {
  27753. source: "./media/characters/lawrence/head.svg"
  27754. }
  27755. },
  27756. maw: {
  27757. height: math.unit(0.7, "meter"),
  27758. name: "Maw",
  27759. image: {
  27760. source: "./media/characters/lawrence/maw.svg"
  27761. }
  27762. },
  27763. footBottom: {
  27764. height: math.unit(0.5, "meter"),
  27765. name: "Foot (Bottom)",
  27766. image: {
  27767. source: "./media/characters/lawrence/foot-bottom.svg"
  27768. }
  27769. },
  27770. footTop: {
  27771. height: math.unit(0.5, "meter"),
  27772. name: "Foot (Top)",
  27773. image: {
  27774. source: "./media/characters/lawrence/foot-top.svg"
  27775. }
  27776. },
  27777. },
  27778. [
  27779. {
  27780. name: "Normal",
  27781. height: math.unit(2.5, "meters"),
  27782. default: true
  27783. },
  27784. {
  27785. name: "Macro",
  27786. height: math.unit(95, "meters")
  27787. },
  27788. {
  27789. name: "Megamacro",
  27790. height: math.unit(150, "km")
  27791. },
  27792. ]
  27793. ))
  27794. characterMakers.push(() => makeCharacter(
  27795. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27796. {
  27797. front: {
  27798. height: math.unit(4.2, "meters"),
  27799. name: "Front",
  27800. image: {
  27801. source: "./media/characters/sydney/front.svg",
  27802. extra: 1323 / 1277,
  27803. bottom: 111 / 1434
  27804. }
  27805. },
  27806. },
  27807. [
  27808. {
  27809. name: "Normal",
  27810. height: math.unit(4.2, "meters")
  27811. },
  27812. ]
  27813. ))
  27814. characterMakers.push(() => makeCharacter(
  27815. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27816. {
  27817. back: {
  27818. height: math.unit(201, "feet"),
  27819. name: "Back",
  27820. image: {
  27821. source: "./media/characters/jessica/back.svg",
  27822. extra: 273 / 259,
  27823. bottom: 7 / 280
  27824. }
  27825. },
  27826. },
  27827. [
  27828. {
  27829. name: "Normal",
  27830. height: math.unit(201, "feet"),
  27831. default: true
  27832. },
  27833. {
  27834. name: "Megamacro",
  27835. height: math.unit(8, "miles")
  27836. },
  27837. ]
  27838. ))
  27839. characterMakers.push(() => makeCharacter(
  27840. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27841. {
  27842. side: {
  27843. height: math.unit(320, "cm"),
  27844. name: "Side",
  27845. image: {
  27846. source: "./media/characters/victoria/side.svg",
  27847. extra: 778 / 346,
  27848. bottom: 56 / 834
  27849. }
  27850. },
  27851. maw: {
  27852. height: math.unit(5.9, "feet"),
  27853. name: "Maw",
  27854. image: {
  27855. source: "./media/characters/victoria/maw.svg"
  27856. }
  27857. },
  27858. },
  27859. [
  27860. {
  27861. name: "Normal",
  27862. height: math.unit(320, "cm"),
  27863. default: true
  27864. },
  27865. ]
  27866. ))
  27867. characterMakers.push(() => makeCharacter(
  27868. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27869. {
  27870. front: {
  27871. height: math.unit(5 + 6 / 12, "feet"),
  27872. name: "Front",
  27873. image: {
  27874. source: "./media/characters/cat/front.svg",
  27875. extra: 1374 / 1257,
  27876. bottom: 59 / 1433
  27877. }
  27878. },
  27879. back: {
  27880. height: math.unit(5 + 6 / 12, "feet"),
  27881. name: "Back",
  27882. image: {
  27883. source: "./media/characters/cat/back.svg",
  27884. extra: 1337 / 1226,
  27885. bottom: 34 / 1371
  27886. }
  27887. },
  27888. taur: {
  27889. height: math.unit(7, "feet"),
  27890. name: "Taur",
  27891. image: {
  27892. source: "./media/characters/cat/taur.svg",
  27893. extra: 1345 / 1231,
  27894. bottom: 66 / 1411
  27895. }
  27896. },
  27897. lucario: {
  27898. height: math.unit(4, "feet"),
  27899. name: "Lucario",
  27900. image: {
  27901. source: "./media/characters/cat/lucario.svg",
  27902. extra: 1470 / 1318,
  27903. bottom: 65 / 1535
  27904. }
  27905. },
  27906. megaLucario: {
  27907. height: math.unit(4, "feet"),
  27908. name: "Mega Lucario",
  27909. image: {
  27910. source: "./media/characters/cat/mega-lucario.svg",
  27911. extra: 1515 / 1319,
  27912. bottom: 63 / 1578
  27913. }
  27914. },
  27915. nickit: {
  27916. height: math.unit(2, "feet"),
  27917. name: "Nickit",
  27918. image: {
  27919. source: "./media/characters/cat/nickit.svg",
  27920. extra: 1980 / 1585,
  27921. bottom: 102 / 2082
  27922. }
  27923. },
  27924. lopunnyFront: {
  27925. height: math.unit(5, "feet"),
  27926. name: "Lopunny (Front)",
  27927. image: {
  27928. source: "./media/characters/cat/lopunny-front.svg",
  27929. extra: 1782 / 1469,
  27930. bottom: 38 / 1820
  27931. }
  27932. },
  27933. lopunnyBack: {
  27934. height: math.unit(5, "feet"),
  27935. name: "Lopunny (Back)",
  27936. image: {
  27937. source: "./media/characters/cat/lopunny-back.svg",
  27938. extra: 1660 / 1490,
  27939. bottom: 25 / 1685
  27940. }
  27941. },
  27942. },
  27943. [
  27944. {
  27945. name: "Really small",
  27946. height: math.unit(1, "nm")
  27947. },
  27948. {
  27949. name: "Micro",
  27950. height: math.unit(5, "inches")
  27951. },
  27952. {
  27953. name: "Normal",
  27954. height: math.unit(5 + 6 / 12, "feet"),
  27955. default: true
  27956. },
  27957. {
  27958. name: "Macro",
  27959. height: math.unit(50, "feet")
  27960. },
  27961. {
  27962. name: "Macro+",
  27963. height: math.unit(150, "feet")
  27964. },
  27965. {
  27966. name: "Megamacro",
  27967. height: math.unit(100, "miles")
  27968. },
  27969. ]
  27970. ))
  27971. characterMakers.push(() => makeCharacter(
  27972. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  27973. {
  27974. front: {
  27975. height: math.unit(63.4, "meters"),
  27976. weight: math.unit(3.28349e+6, "kilograms"),
  27977. name: "Front",
  27978. image: {
  27979. source: "./media/characters/kirina-violet/front.svg",
  27980. extra: 2812 / 2725,
  27981. bottom: 0 / 2812
  27982. }
  27983. },
  27984. back: {
  27985. height: math.unit(63.4, "meters"),
  27986. weight: math.unit(3.28349e+6, "kilograms"),
  27987. name: "Back",
  27988. image: {
  27989. source: "./media/characters/kirina-violet/back.svg",
  27990. extra: 2812 / 2725,
  27991. bottom: 0 / 2812
  27992. }
  27993. },
  27994. mouth: {
  27995. height: math.unit(4.35, "meters"),
  27996. name: "Mouth",
  27997. image: {
  27998. source: "./media/characters/kirina-violet/mouth.svg"
  27999. }
  28000. },
  28001. paw: {
  28002. height: math.unit(5.6, "meters"),
  28003. name: "Paw",
  28004. image: {
  28005. source: "./media/characters/kirina-violet/paw.svg"
  28006. }
  28007. },
  28008. tail: {
  28009. height: math.unit(18, "meters"),
  28010. name: "Tail",
  28011. image: {
  28012. source: "./media/characters/kirina-violet/tail.svg"
  28013. }
  28014. },
  28015. },
  28016. [
  28017. {
  28018. name: "Macro",
  28019. height: math.unit(63.4, "meters"),
  28020. default: true
  28021. },
  28022. ]
  28023. ))
  28024. characterMakers.push(() => makeCharacter(
  28025. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28026. {
  28027. front: {
  28028. height: math.unit(60, "feet"),
  28029. name: "Front",
  28030. image: {
  28031. source: "./media/characters/cat-gigachu/front.svg",
  28032. extra: 1024 / 780,
  28033. bottom: 23 / 1047
  28034. }
  28035. },
  28036. back: {
  28037. height: math.unit(60, "feet"),
  28038. name: "Back",
  28039. image: {
  28040. source: "./media/characters/cat-gigachu/back.svg",
  28041. extra: 1024 / 780,
  28042. bottom: 23 / 1047
  28043. }
  28044. },
  28045. },
  28046. [
  28047. {
  28048. name: "Dynamax",
  28049. height: math.unit(60, "feet"),
  28050. default: true
  28051. },
  28052. ]
  28053. ))
  28054. characterMakers.push(() => makeCharacter(
  28055. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28056. {
  28057. front: {
  28058. height: math.unit(6, "feet"),
  28059. weight: math.unit(150, "lb"),
  28060. name: "Front",
  28061. image: {
  28062. source: "./media/characters/sfaiyan/front.svg",
  28063. extra: 999 / 978,
  28064. bottom: 5 / 1004
  28065. }
  28066. },
  28067. },
  28068. [
  28069. {
  28070. name: "Normal",
  28071. height: math.unit(1.82, "meters")
  28072. },
  28073. {
  28074. name: "Giant",
  28075. height: math.unit(2.27, "km"),
  28076. default: true
  28077. },
  28078. ]
  28079. ))
  28080. characterMakers.push(() => makeCharacter(
  28081. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28082. {
  28083. front: {
  28084. height: math.unit(179, "cm"),
  28085. weight: math.unit(100, "kg"),
  28086. name: "Front",
  28087. image: {
  28088. source: "./media/characters/raunehkeli/front.svg",
  28089. extra: 1934 / 1926,
  28090. bottom: 0 / 1934
  28091. }
  28092. },
  28093. },
  28094. [
  28095. {
  28096. name: "Normal",
  28097. height: math.unit(179, "cm")
  28098. },
  28099. {
  28100. name: "Maximum",
  28101. height: math.unit(575, "meters"),
  28102. default: true
  28103. },
  28104. ]
  28105. ))
  28106. characterMakers.push(() => makeCharacter(
  28107. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28108. {
  28109. front: {
  28110. height: math.unit(6, "feet"),
  28111. weight: math.unit(150, "lb"),
  28112. name: "Front",
  28113. image: {
  28114. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28115. extra: 2625 / 2518,
  28116. bottom: 60 / 2685
  28117. }
  28118. },
  28119. },
  28120. [
  28121. {
  28122. name: "Normal",
  28123. height: math.unit(6 + 2 / 12, "feet"),
  28124. default: true
  28125. },
  28126. {
  28127. name: "Macro",
  28128. height: math.unit(1180, "feet")
  28129. },
  28130. ]
  28131. ))
  28132. characterMakers.push(() => makeCharacter(
  28133. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28134. {
  28135. front: {
  28136. height: math.unit(5 + 6 / 12, "feet"),
  28137. weight: math.unit(108, "lb"),
  28138. name: "Front",
  28139. image: {
  28140. source: "./media/characters/lilith-zott/front.svg",
  28141. extra: 2510 / 2238,
  28142. bottom: 100 / 2610
  28143. }
  28144. },
  28145. frontDressed: {
  28146. height: math.unit(5 + 6 / 12, "feet"),
  28147. weight: math.unit(108, "lb"),
  28148. name: "Front (Dressed)",
  28149. image: {
  28150. source: "./media/characters/lilith-zott/front-dressed.svg",
  28151. extra: 2510 / 2238,
  28152. bottom: 100 / 2610
  28153. }
  28154. },
  28155. },
  28156. [
  28157. {
  28158. name: "Normal",
  28159. height: math.unit(5 + 6 / 12, "feet")
  28160. },
  28161. {
  28162. name: "Macro",
  28163. height: math.unit(200, "feet"),
  28164. default: true
  28165. },
  28166. {
  28167. name: "Macro+",
  28168. height: math.unit(1030, "feet")
  28169. },
  28170. ]
  28171. ))
  28172. characterMakers.push(() => makeCharacter(
  28173. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28174. {
  28175. front: {
  28176. height: math.unit(6, "feet"),
  28177. weight: math.unit(150, "lb"),
  28178. name: "Front",
  28179. image: {
  28180. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28181. extra: 2567 / 2435,
  28182. bottom: 39 / 2606
  28183. }
  28184. },
  28185. frontSuper: {
  28186. height: math.unit(6, "feet"),
  28187. name: "Front (Super)",
  28188. image: {
  28189. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28190. extra: 2567 / 2435,
  28191. bottom: 39 / 2606
  28192. }
  28193. },
  28194. },
  28195. [
  28196. {
  28197. name: "Normal",
  28198. height: math.unit(5 + 10 / 12, "feet")
  28199. },
  28200. {
  28201. name: "Macro",
  28202. height: math.unit(220, "feet"),
  28203. default: true
  28204. },
  28205. {
  28206. name: "Macro+",
  28207. height: math.unit(1100, "feet")
  28208. },
  28209. ]
  28210. ))
  28211. characterMakers.push(() => makeCharacter(
  28212. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28213. {
  28214. front: {
  28215. height: math.unit(100, "miles"),
  28216. name: "Front",
  28217. image: {
  28218. source: "./media/characters/sona/front.svg",
  28219. extra: 2433 / 2201,
  28220. bottom: 53 / 2486
  28221. }
  28222. },
  28223. foot: {
  28224. height: math.unit(16.1, "miles"),
  28225. name: "Foot",
  28226. image: {
  28227. source: "./media/characters/sona/foot.svg"
  28228. }
  28229. },
  28230. },
  28231. [
  28232. {
  28233. name: "Macro",
  28234. height: math.unit(100, "miles"),
  28235. default: true
  28236. },
  28237. ]
  28238. ))
  28239. characterMakers.push(() => makeCharacter(
  28240. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28241. {
  28242. front: {
  28243. height: math.unit(6, "feet"),
  28244. weight: math.unit(150, "lb"),
  28245. name: "Front",
  28246. image: {
  28247. source: "./media/characters/bailey/front.svg",
  28248. extra: 1778 / 1724,
  28249. bottom: 30 / 1808
  28250. }
  28251. },
  28252. },
  28253. [
  28254. {
  28255. name: "Micro",
  28256. height: math.unit(4, "inches")
  28257. },
  28258. {
  28259. name: "Normal",
  28260. height: math.unit(5 + 5 / 12, "feet"),
  28261. default: true
  28262. },
  28263. {
  28264. name: "Macro",
  28265. height: math.unit(250, "feet")
  28266. },
  28267. {
  28268. name: "Megamacro",
  28269. height: math.unit(100, "miles")
  28270. },
  28271. ]
  28272. ))
  28273. characterMakers.push(() => makeCharacter(
  28274. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28275. {
  28276. front: {
  28277. height: math.unit(5 + 2 / 12, "feet"),
  28278. weight: math.unit(120, "lb"),
  28279. name: "Front",
  28280. image: {
  28281. source: "./media/characters/snaps/front.svg",
  28282. extra: 2370 / 2177,
  28283. bottom: 48 / 2418
  28284. }
  28285. },
  28286. back: {
  28287. height: math.unit(5 + 2 / 12, "feet"),
  28288. weight: math.unit(120, "lb"),
  28289. name: "Back",
  28290. image: {
  28291. source: "./media/characters/snaps/back.svg",
  28292. extra: 2408 / 2258,
  28293. bottom: 15 / 2423
  28294. }
  28295. },
  28296. },
  28297. [
  28298. {
  28299. name: "Micro",
  28300. height: math.unit(9, "inches")
  28301. },
  28302. {
  28303. name: "Normal",
  28304. height: math.unit(5 + 2 / 12, "feet"),
  28305. default: true
  28306. },
  28307. {
  28308. name: "Mini Macro",
  28309. height: math.unit(10, "feet")
  28310. },
  28311. ]
  28312. ))
  28313. characterMakers.push(() => makeCharacter(
  28314. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28315. {
  28316. front: {
  28317. height: math.unit(1.8, "meters"),
  28318. weight: math.unit(85, "kg"),
  28319. name: "Front",
  28320. image: {
  28321. source: "./media/characters/azteck/front.svg",
  28322. extra: 2815 / 2625,
  28323. bottom: 89 / 2904
  28324. }
  28325. },
  28326. back: {
  28327. height: math.unit(1.8, "meters"),
  28328. weight: math.unit(85, "kg"),
  28329. name: "Back",
  28330. image: {
  28331. source: "./media/characters/azteck/back.svg",
  28332. extra: 2856 / 2648,
  28333. bottom: 85 / 2941
  28334. }
  28335. },
  28336. frontDressed: {
  28337. height: math.unit(1.8, "meters"),
  28338. weight: math.unit(85, "kg"),
  28339. name: "Front (Dressed)",
  28340. image: {
  28341. source: "./media/characters/azteck/front-dressed.svg",
  28342. extra: 2147 / 2003,
  28343. bottom: 68 / 2215
  28344. }
  28345. },
  28346. head: {
  28347. height: math.unit(0.47, "meters"),
  28348. weight: math.unit(85, "kg"),
  28349. name: "Head",
  28350. image: {
  28351. source: "./media/characters/azteck/head.svg"
  28352. }
  28353. },
  28354. },
  28355. [
  28356. {
  28357. name: "Bite sized",
  28358. height: math.unit(16, "cm")
  28359. },
  28360. {
  28361. name: "Normal",
  28362. height: math.unit(1.8, "meters"),
  28363. default: true
  28364. },
  28365. ]
  28366. ))
  28367. characterMakers.push(() => makeCharacter(
  28368. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28369. {
  28370. front: {
  28371. height: math.unit(6, "feet"),
  28372. weight: math.unit(150, "lb"),
  28373. name: "Front",
  28374. image: {
  28375. source: "./media/characters/pidge/front.svg",
  28376. extra: 620 / 588,
  28377. bottom: 9 / 629
  28378. }
  28379. },
  28380. back: {
  28381. height: math.unit(6, "feet"),
  28382. weight: math.unit(150, "lb"),
  28383. name: "Back",
  28384. image: {
  28385. source: "./media/characters/pidge/back.svg",
  28386. extra: 620 / 588,
  28387. bottom: 9 / 629
  28388. }
  28389. },
  28390. },
  28391. [
  28392. {
  28393. name: "Macro",
  28394. height: math.unit(1, "mile"),
  28395. default: true
  28396. },
  28397. ]
  28398. ))
  28399. characterMakers.push(() => makeCharacter(
  28400. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28401. {
  28402. front: {
  28403. height: math.unit(6, "feet"),
  28404. weight: math.unit(150, "lb"),
  28405. name: "Front",
  28406. image: {
  28407. source: "./media/characters/en/front.svg",
  28408. extra: 1697 / 1563,
  28409. bottom: 103 / 1800
  28410. }
  28411. },
  28412. back: {
  28413. height: math.unit(6, "feet"),
  28414. weight: math.unit(150, "lb"),
  28415. name: "Back",
  28416. image: {
  28417. source: "./media/characters/en/back.svg",
  28418. extra: 1700 / 1570,
  28419. bottom: 51 / 1751
  28420. }
  28421. },
  28422. frontDressed: {
  28423. height: math.unit(6, "feet"),
  28424. weight: math.unit(150, "lb"),
  28425. name: "Front (Dressed)",
  28426. image: {
  28427. source: "./media/characters/en/front-dressed.svg",
  28428. extra: 1697 / 1563,
  28429. bottom: 103 / 1800
  28430. }
  28431. },
  28432. backDressed: {
  28433. height: math.unit(6, "feet"),
  28434. weight: math.unit(150, "lb"),
  28435. name: "Back (Dressed)",
  28436. image: {
  28437. source: "./media/characters/en/back-dressed.svg",
  28438. extra: 1700 / 1570,
  28439. bottom: 51 / 1751
  28440. }
  28441. },
  28442. },
  28443. [
  28444. {
  28445. name: "Macro",
  28446. height: math.unit(210, "feet"),
  28447. default: true
  28448. },
  28449. ]
  28450. ))
  28451. characterMakers.push(() => makeCharacter(
  28452. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28453. {
  28454. front: {
  28455. height: math.unit(6, "feet"),
  28456. weight: math.unit(150, "lb"),
  28457. name: "Front",
  28458. image: {
  28459. source: "./media/characters/haze-orris/front.svg",
  28460. extra: 3975 / 3525,
  28461. bottom: 137 / 4112
  28462. }
  28463. },
  28464. },
  28465. [
  28466. {
  28467. name: "Micro",
  28468. height: math.unit(150, "mm"),
  28469. default: true
  28470. },
  28471. ]
  28472. ))
  28473. characterMakers.push(() => makeCharacter(
  28474. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28475. {
  28476. front: {
  28477. height: math.unit(6, "feet"),
  28478. weight: math.unit(150, "lb"),
  28479. name: "Front",
  28480. image: {
  28481. source: "./media/characters/casselene-yaro/front.svg",
  28482. extra: 4721 / 4541,
  28483. bottom: 82 / 4803
  28484. }
  28485. },
  28486. back: {
  28487. height: math.unit(6, "feet"),
  28488. weight: math.unit(150, "lb"),
  28489. name: "Back",
  28490. image: {
  28491. source: "./media/characters/casselene-yaro/back.svg",
  28492. extra: 4569 / 4377,
  28493. bottom: 69 / 4638
  28494. }
  28495. },
  28496. frontDressed: {
  28497. height: math.unit(6, "feet"),
  28498. weight: math.unit(150, "lb"),
  28499. name: "Front-dressed",
  28500. image: {
  28501. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28502. extra: 4721 / 4541,
  28503. bottom: 82 / 4803
  28504. }
  28505. },
  28506. },
  28507. [
  28508. {
  28509. name: "Macro",
  28510. height: math.unit(190, "feet")
  28511. },
  28512. ]
  28513. ))
  28514. characterMakers.push(() => makeCharacter(
  28515. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28516. {
  28517. front: {
  28518. height: math.unit(6, "feet"),
  28519. weight: math.unit(150, "lb"),
  28520. name: "Front",
  28521. image: {
  28522. source: "./media/characters/myra-rue-delore/front.svg",
  28523. extra: 1340 / 1308,
  28524. bottom: 67 / 1407
  28525. }
  28526. },
  28527. back: {
  28528. height: math.unit(6, "feet"),
  28529. weight: math.unit(150, "lb"),
  28530. name: "Back",
  28531. image: {
  28532. source: "./media/characters/myra-rue-delore/back.svg",
  28533. extra: 1341 / 1310,
  28534. bottom: 40 / 1381
  28535. }
  28536. },
  28537. frontDressed: {
  28538. height: math.unit(6, "feet"),
  28539. weight: math.unit(150, "lb"),
  28540. name: "Front (Dressed)",
  28541. image: {
  28542. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28543. extra: 1340 / 1308,
  28544. bottom: 67 / 1407
  28545. }
  28546. },
  28547. },
  28548. [
  28549. {
  28550. name: "Macro",
  28551. height: math.unit(150, "feet")
  28552. },
  28553. ]
  28554. ))
  28555. characterMakers.push(() => makeCharacter(
  28556. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28557. {
  28558. front: {
  28559. height: math.unit(10, "feet"),
  28560. weight: math.unit(15015, "lb"),
  28561. name: "Front",
  28562. image: {
  28563. source: "./media/characters/fem!plat/front.svg",
  28564. extra: 2799 / 2604,
  28565. bottom: 149 / 2948
  28566. }
  28567. },
  28568. },
  28569. [
  28570. {
  28571. name: "Normal",
  28572. height: math.unit(10, "feet"),
  28573. default: true
  28574. },
  28575. {
  28576. name: "Macro",
  28577. height: math.unit(100, "feet")
  28578. },
  28579. {
  28580. name: "Megamacro",
  28581. height: math.unit(1000, "feet")
  28582. },
  28583. ]
  28584. ))
  28585. characterMakers.push(() => makeCharacter(
  28586. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28587. {
  28588. front: {
  28589. height: math.unit(15 + 5 / 12, "feet"),
  28590. weight: math.unit(4600, "lb"),
  28591. name: "Front",
  28592. image: {
  28593. source: "./media/characters/neapolitan-ananassa/front.svg",
  28594. extra: 2903 / 2736,
  28595. bottom: 0 / 2903
  28596. }
  28597. },
  28598. side: {
  28599. height: math.unit(15 + 5 / 12, "feet"),
  28600. weight: math.unit(4600, "lb"),
  28601. name: "Side",
  28602. image: {
  28603. source: "./media/characters/neapolitan-ananassa/side.svg",
  28604. extra: 2925 / 2719,
  28605. bottom: 0 / 2925
  28606. }
  28607. },
  28608. back: {
  28609. height: math.unit(15 + 5 / 12, "feet"),
  28610. weight: math.unit(4600, "lb"),
  28611. name: "Back",
  28612. image: {
  28613. source: "./media/characters/neapolitan-ananassa/back.svg",
  28614. extra: 2903 / 2736,
  28615. bottom: 0 / 2903
  28616. }
  28617. },
  28618. },
  28619. [
  28620. {
  28621. name: "Normal",
  28622. height: math.unit(15 + 5 / 12, "feet"),
  28623. default: true
  28624. },
  28625. {
  28626. name: "Post-Millenium",
  28627. height: math.unit(35 + 5 / 12, "feet")
  28628. },
  28629. {
  28630. name: "Post-Era",
  28631. height: math.unit(450 + 5 / 12, "feet")
  28632. },
  28633. ]
  28634. ))
  28635. characterMakers.push(() => makeCharacter(
  28636. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28637. {
  28638. front: {
  28639. height: math.unit(300, "meters"),
  28640. weight: math.unit(125000, "tonnes"),
  28641. name: "Front",
  28642. image: {
  28643. source: "./media/characters/pazuzu/front.svg",
  28644. extra: 877 / 794,
  28645. bottom: 47 / 924
  28646. }
  28647. },
  28648. },
  28649. [
  28650. {
  28651. name: "Macro",
  28652. height: math.unit(300, "meters"),
  28653. default: true
  28654. },
  28655. ]
  28656. ))
  28657. characterMakers.push(() => makeCharacter(
  28658. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28659. {
  28660. side: {
  28661. height: math.unit(10 + 7 / 12, "feet"),
  28662. weight: math.unit(2.5, "tons"),
  28663. name: "Side",
  28664. image: {
  28665. source: "./media/characters/aasha/side.svg",
  28666. extra: 1345 / 1245,
  28667. bottom: 111 / 1456
  28668. }
  28669. },
  28670. back: {
  28671. height: math.unit(10 + 7 / 12, "feet"),
  28672. weight: math.unit(2.5, "tons"),
  28673. name: "Back",
  28674. image: {
  28675. source: "./media/characters/aasha/back.svg",
  28676. extra: 1133 / 1057,
  28677. bottom: 257 / 1390
  28678. }
  28679. },
  28680. },
  28681. [
  28682. {
  28683. name: "Normal",
  28684. height: math.unit(10 + 7 / 12, "feet"),
  28685. default: true
  28686. },
  28687. ]
  28688. ))
  28689. characterMakers.push(() => makeCharacter(
  28690. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28691. {
  28692. front: {
  28693. height: math.unit(6 + 3 / 12, "feet"),
  28694. name: "Front",
  28695. image: {
  28696. source: "./media/characters/nevan/front.svg",
  28697. extra: 704 / 704,
  28698. bottom: 28 / 732
  28699. }
  28700. },
  28701. back: {
  28702. height: math.unit(6 + 3 / 12, "feet"),
  28703. name: "Back",
  28704. image: {
  28705. source: "./media/characters/nevan/back.svg",
  28706. extra: 714 / 714,
  28707. bottom: 21 / 735
  28708. }
  28709. },
  28710. frontFlaccid: {
  28711. height: math.unit(6 + 3 / 12, "feet"),
  28712. name: "Front (Flaccid)",
  28713. image: {
  28714. source: "./media/characters/nevan/front-flaccid.svg",
  28715. extra: 704 / 704,
  28716. bottom: 28 / 732
  28717. }
  28718. },
  28719. frontErect: {
  28720. height: math.unit(6 + 3 / 12, "feet"),
  28721. name: "Front (Erect)",
  28722. image: {
  28723. source: "./media/characters/nevan/front-erect.svg",
  28724. extra: 704 / 704,
  28725. bottom: 28 / 732
  28726. }
  28727. },
  28728. backFlaccid: {
  28729. height: math.unit(6 + 3 / 12, "feet"),
  28730. name: "Back (Flaccid)",
  28731. image: {
  28732. source: "./media/characters/nevan/back-flaccid.svg",
  28733. extra: 714 / 714,
  28734. bottom: 21 / 735
  28735. }
  28736. },
  28737. },
  28738. [
  28739. {
  28740. name: "Normal",
  28741. height: math.unit(6 + 3 / 12, "feet"),
  28742. default: true
  28743. },
  28744. ]
  28745. ))
  28746. characterMakers.push(() => makeCharacter(
  28747. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28748. {
  28749. front: {
  28750. height: math.unit(4, "feet"),
  28751. name: "Front",
  28752. image: {
  28753. source: "./media/characters/arhan/front.svg",
  28754. extra: 3368 / 3133,
  28755. bottom: 0 / 3368
  28756. }
  28757. },
  28758. side: {
  28759. height: math.unit(4, "feet"),
  28760. name: "Side",
  28761. image: {
  28762. source: "./media/characters/arhan/side.svg",
  28763. extra: 3347 / 3105,
  28764. bottom: 0 / 3347
  28765. }
  28766. },
  28767. tongue: {
  28768. height: math.unit(1.42, "feet"),
  28769. name: "Tongue",
  28770. image: {
  28771. source: "./media/characters/arhan/tongue.svg"
  28772. }
  28773. },
  28774. head: {
  28775. height: math.unit(0.85, "feet"),
  28776. name: "Head",
  28777. image: {
  28778. source: "./media/characters/arhan/head.svg"
  28779. }
  28780. },
  28781. },
  28782. [
  28783. {
  28784. name: "Normal",
  28785. height: math.unit(4, "feet"),
  28786. default: true
  28787. },
  28788. ]
  28789. ))
  28790. characterMakers.push(() => makeCharacter(
  28791. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28792. {
  28793. front: {
  28794. height: math.unit(5 + 7.5 / 12, "feet"),
  28795. weight: math.unit(120, "lb"),
  28796. name: "Front",
  28797. image: {
  28798. source: "./media/characters/digi-duncan/front.svg",
  28799. extra: 330 / 326,
  28800. bottom: 16 / 346
  28801. }
  28802. },
  28803. side: {
  28804. height: math.unit(5 + 7.5 / 12, "feet"),
  28805. weight: math.unit(120, "lb"),
  28806. name: "Side",
  28807. image: {
  28808. source: "./media/characters/digi-duncan/side.svg",
  28809. extra: 341 / 337,
  28810. bottom: 1 / 342
  28811. }
  28812. },
  28813. back: {
  28814. height: math.unit(5 + 7.5 / 12, "feet"),
  28815. weight: math.unit(120, "lb"),
  28816. name: "Back",
  28817. image: {
  28818. source: "./media/characters/digi-duncan/back.svg",
  28819. extra: 330 / 326,
  28820. bottom: 12 / 342
  28821. }
  28822. },
  28823. },
  28824. [
  28825. {
  28826. name: "Speck",
  28827. height: math.unit(0.25, "mm")
  28828. },
  28829. {
  28830. name: "Micro",
  28831. height: math.unit(5, "mm")
  28832. },
  28833. {
  28834. name: "Tiny",
  28835. height: math.unit(0.5, "inches"),
  28836. default: true
  28837. },
  28838. {
  28839. name: "Human",
  28840. height: math.unit(5 + 7.5 / 12, "feet")
  28841. },
  28842. {
  28843. name: "Minigiant",
  28844. height: math.unit(8 + 5.25, "feet")
  28845. },
  28846. {
  28847. name: "Giant",
  28848. height: math.unit(2000, "feet")
  28849. },
  28850. {
  28851. name: "Mega",
  28852. height: math.unit(371.1, "miles")
  28853. },
  28854. ]
  28855. ))
  28856. characterMakers.push(() => makeCharacter(
  28857. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28858. {
  28859. front: {
  28860. height: math.unit(2, "meters"),
  28861. weight: math.unit(350, "kg"),
  28862. name: "Front",
  28863. image: {
  28864. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28865. extra: 898 / 838,
  28866. bottom: 9 / 907
  28867. }
  28868. },
  28869. },
  28870. [
  28871. {
  28872. name: "Micro",
  28873. height: math.unit(8, "meters")
  28874. },
  28875. {
  28876. name: "Normal",
  28877. height: math.unit(50, "meters"),
  28878. default: true
  28879. },
  28880. {
  28881. name: "Macro",
  28882. height: math.unit(500, "meters")
  28883. },
  28884. ]
  28885. ))
  28886. characterMakers.push(() => makeCharacter(
  28887. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28888. {
  28889. front: {
  28890. height: math.unit(6 + 6 / 12, "feet"),
  28891. name: "Front",
  28892. image: {
  28893. source: "./media/characters/khardesh/front.svg",
  28894. extra: 888 / 797,
  28895. bottom: 25 / 913
  28896. }
  28897. },
  28898. },
  28899. [
  28900. {
  28901. name: "Normal",
  28902. height: math.unit(6 + 6 / 12, "feet"),
  28903. default: true
  28904. },
  28905. {
  28906. name: "Normal+",
  28907. height: math.unit(4, "meters")
  28908. },
  28909. {
  28910. name: "Macro",
  28911. height: math.unit(50, "meters")
  28912. },
  28913. {
  28914. name: "Macro+",
  28915. height: math.unit(100, "meters")
  28916. },
  28917. {
  28918. name: "Megamacro",
  28919. height: math.unit(20, "km")
  28920. },
  28921. ]
  28922. ))
  28923. characterMakers.push(() => makeCharacter(
  28924. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28925. {
  28926. front: {
  28927. height: math.unit(6, "feet"),
  28928. weight: math.unit(150, "lb"),
  28929. name: "Front",
  28930. image: {
  28931. source: "./media/characters/kosho/front.svg",
  28932. extra: 1847 / 1847,
  28933. bottom: 86 / 1933
  28934. }
  28935. },
  28936. },
  28937. [
  28938. {
  28939. name: "Second-stage micro",
  28940. height: math.unit(0.5, "inches")
  28941. },
  28942. {
  28943. name: "First-stage micro",
  28944. height: math.unit(6, "inches")
  28945. },
  28946. {
  28947. name: "Normal",
  28948. height: math.unit(6, "feet"),
  28949. default: true
  28950. },
  28951. {
  28952. name: "First-stage macro",
  28953. height: math.unit(72, "feet")
  28954. },
  28955. {
  28956. name: "Second-stage macro",
  28957. height: math.unit(864, "feet")
  28958. },
  28959. ]
  28960. ))
  28961. characterMakers.push(() => makeCharacter(
  28962. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  28963. {
  28964. normal: {
  28965. height: math.unit(4 + 6 / 12, "feet"),
  28966. name: "Normal",
  28967. image: {
  28968. source: "./media/characters/hydra/normal.svg",
  28969. extra: 2833 / 2634,
  28970. bottom: 68 / 2901
  28971. }
  28972. },
  28973. smol: {
  28974. height: math.unit(0.705, "inches"),
  28975. name: "Smol",
  28976. image: {
  28977. source: "./media/characters/hydra/smol.svg",
  28978. extra: 2715 / 2540,
  28979. bottom: 0 / 2715
  28980. }
  28981. },
  28982. },
  28983. [
  28984. {
  28985. name: "Normal",
  28986. height: math.unit(4 + 6 / 12, "feet"),
  28987. default: true
  28988. }
  28989. ]
  28990. ))
  28991. characterMakers.push(() => makeCharacter(
  28992. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  28993. {
  28994. front: {
  28995. height: math.unit(0.6, "cm"),
  28996. name: "Front",
  28997. image: {
  28998. source: "./media/characters/daz/front.svg",
  28999. extra: 1682 / 1164,
  29000. bottom: 42 / 1724
  29001. }
  29002. },
  29003. },
  29004. [
  29005. {
  29006. name: "Normal",
  29007. height: math.unit(0.6, "cm"),
  29008. default: true
  29009. },
  29010. ]
  29011. ))
  29012. characterMakers.push(() => makeCharacter(
  29013. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29014. {
  29015. front: {
  29016. height: math.unit(6, "feet"),
  29017. weight: math.unit(235, "lb"),
  29018. name: "Front",
  29019. image: {
  29020. source: "./media/characters/theo-pangolin/front.svg",
  29021. extra: 1996 / 1969,
  29022. bottom: 115 / 2111
  29023. }
  29024. },
  29025. back: {
  29026. height: math.unit(6, "feet"),
  29027. weight: math.unit(235, "lb"),
  29028. name: "Back",
  29029. image: {
  29030. source: "./media/characters/theo-pangolin/back.svg",
  29031. extra: 1979 / 1979,
  29032. bottom: 40 / 2019
  29033. }
  29034. },
  29035. feral: {
  29036. height: math.unit(2, "feet"),
  29037. weight: math.unit(30, "lb"),
  29038. name: "Feral",
  29039. image: {
  29040. source: "./media/characters/theo-pangolin/feral.svg",
  29041. extra: 803 / 791,
  29042. bottom: 181 / 984
  29043. }
  29044. },
  29045. footFive: {
  29046. height: math.unit(1.43, "feet"),
  29047. name: "Foot (Five Toes)",
  29048. image: {
  29049. source: "./media/characters/theo-pangolin/foot-five.svg"
  29050. }
  29051. },
  29052. footFour: {
  29053. height: math.unit(1.43, "feet"),
  29054. name: "Foot (Four Toes)",
  29055. image: {
  29056. source: "./media/characters/theo-pangolin/foot-four.svg"
  29057. }
  29058. },
  29059. handFour: {
  29060. height: math.unit(0.81, "feet"),
  29061. name: "Hand (Four Fingers)",
  29062. image: {
  29063. source: "./media/characters/theo-pangolin/hand-four.svg"
  29064. }
  29065. },
  29066. handThree: {
  29067. height: math.unit(0.81, "feet"),
  29068. name: "Hand (Three Fingers)",
  29069. image: {
  29070. source: "./media/characters/theo-pangolin/hand-three.svg"
  29071. }
  29072. },
  29073. headFront: {
  29074. height: math.unit(1.37, "feet"),
  29075. name: "Head (Front)",
  29076. image: {
  29077. source: "./media/characters/theo-pangolin/head-front.svg"
  29078. }
  29079. },
  29080. headSide: {
  29081. height: math.unit(1.43, "feet"),
  29082. name: "Head (Side)",
  29083. image: {
  29084. source: "./media/characters/theo-pangolin/head-side.svg"
  29085. }
  29086. },
  29087. tongue: {
  29088. height: math.unit(2.29, "feet"),
  29089. name: "Tongue",
  29090. image: {
  29091. source: "./media/characters/theo-pangolin/tongue.svg"
  29092. }
  29093. },
  29094. },
  29095. [
  29096. {
  29097. name: "Normal",
  29098. height: math.unit(6, "feet")
  29099. },
  29100. {
  29101. name: "Macro",
  29102. height: math.unit(400, "feet"),
  29103. default: true
  29104. },
  29105. ]
  29106. ))
  29107. characterMakers.push(() => makeCharacter(
  29108. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29109. {
  29110. front: {
  29111. height: math.unit(6, "inches"),
  29112. weight: math.unit(0.036, "kg"),
  29113. name: "Front",
  29114. image: {
  29115. source: "./media/characters/renée/front.svg",
  29116. extra: 900 / 886,
  29117. bottom: 8 / 908
  29118. }
  29119. },
  29120. },
  29121. [
  29122. {
  29123. name: "Nano",
  29124. height: math.unit(1, "nm")
  29125. },
  29126. {
  29127. name: "Micro",
  29128. height: math.unit(1, "mm")
  29129. },
  29130. {
  29131. name: "Normal",
  29132. height: math.unit(6, "inches")
  29133. },
  29134. {
  29135. name: "Macro",
  29136. height: math.unit(2000, "feet"),
  29137. default: true
  29138. },
  29139. {
  29140. name: "Megamacro",
  29141. height: math.unit(2, "km")
  29142. },
  29143. {
  29144. name: "Gigamacro",
  29145. height: math.unit(2000, "km")
  29146. },
  29147. {
  29148. name: "Teramacro",
  29149. height: math.unit(250000, "km")
  29150. },
  29151. ]
  29152. ))
  29153. characterMakers.push(() => makeCharacter(
  29154. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29155. {
  29156. front: {
  29157. height: math.unit(4, "meters"),
  29158. weight: math.unit(150, "kg"),
  29159. name: "Front",
  29160. image: {
  29161. source: "./media/characters/caledvwlch/front.svg",
  29162. extra: 1760 / 1551,
  29163. bottom: 28 / 1788
  29164. }
  29165. },
  29166. side: {
  29167. height: math.unit(4, "meters"),
  29168. weight: math.unit(150, "kg"),
  29169. name: "Side",
  29170. image: {
  29171. source: "./media/characters/caledvwlch/side.svg",
  29172. extra: 1605 / 1536,
  29173. bottom: 31 / 1636
  29174. }
  29175. },
  29176. back: {
  29177. height: math.unit(4, "meters"),
  29178. weight: math.unit(150, "kg"),
  29179. name: "Back",
  29180. image: {
  29181. source: "./media/characters/caledvwlch/back.svg",
  29182. extra: 1635 / 1565,
  29183. bottom: 27 / 1662
  29184. }
  29185. },
  29186. },
  29187. [
  29188. {
  29189. name: "\"Incognito\"",
  29190. height: math.unit(4, "meters")
  29191. },
  29192. {
  29193. name: "Small rampage",
  29194. height: math.unit(600, "meters")
  29195. },
  29196. {
  29197. name: "Mega",
  29198. height: math.unit(30, "km")
  29199. },
  29200. {
  29201. name: "Home-size",
  29202. height: math.unit(50, "km"),
  29203. default: true
  29204. },
  29205. {
  29206. name: "Giga",
  29207. height: math.unit(300, "km")
  29208. },
  29209. {
  29210. name: "Lounging",
  29211. height: math.unit(11000, "km")
  29212. },
  29213. {
  29214. name: "Planet snacking",
  29215. height: math.unit(2000000, "km")
  29216. },
  29217. ]
  29218. ))
  29219. characterMakers.push(() => makeCharacter(
  29220. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29221. {
  29222. front: {
  29223. height: math.unit(6, "feet"),
  29224. weight: math.unit(215, "lb"),
  29225. name: "Front",
  29226. image: {
  29227. source: "./media/characters/sapphire-svell/front.svg",
  29228. extra: 495 / 455,
  29229. bottom: 20 / 515
  29230. }
  29231. },
  29232. back: {
  29233. height: math.unit(6, "feet"),
  29234. weight: math.unit(216, "lb"),
  29235. name: "Back",
  29236. image: {
  29237. source: "./media/characters/sapphire-svell/back.svg",
  29238. extra: 497 / 477,
  29239. bottom: 7 / 504
  29240. }
  29241. },
  29242. maw: {
  29243. height: math.unit(1.57, "feet"),
  29244. name: "Maw",
  29245. image: {
  29246. source: "./media/characters/sapphire-svell/maw.svg"
  29247. }
  29248. },
  29249. foot: {
  29250. height: math.unit(1.07, "feet"),
  29251. name: "Foot",
  29252. image: {
  29253. source: "./media/characters/sapphire-svell/foot.svg"
  29254. }
  29255. },
  29256. toering: {
  29257. height: math.unit(1.7, "inch"),
  29258. name: "Toering",
  29259. image: {
  29260. source: "./media/characters/sapphire-svell/toering.svg"
  29261. }
  29262. },
  29263. },
  29264. [
  29265. {
  29266. name: "Normal",
  29267. height: math.unit(300, "feet"),
  29268. default: true
  29269. },
  29270. {
  29271. name: "Augmented",
  29272. height: math.unit(1250, "feet")
  29273. },
  29274. {
  29275. name: "Unleashed",
  29276. height: math.unit(3000, "feet")
  29277. },
  29278. ]
  29279. ))
  29280. characterMakers.push(() => makeCharacter(
  29281. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29282. {
  29283. side: {
  29284. height: math.unit(2 + 3 / 12, "feet"),
  29285. weight: math.unit(110, "lb"),
  29286. name: "Side",
  29287. image: {
  29288. source: "./media/characters/glitch-flux/side.svg",
  29289. extra: 997 / 805,
  29290. bottom: 20 / 1017
  29291. }
  29292. },
  29293. },
  29294. [
  29295. {
  29296. name: "Normal",
  29297. height: math.unit(2 + 3 / 12, "feet"),
  29298. default: true
  29299. },
  29300. ]
  29301. ))
  29302. characterMakers.push(() => makeCharacter(
  29303. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29304. {
  29305. front: {
  29306. height: math.unit(4, "meters"),
  29307. name: "Front",
  29308. image: {
  29309. source: "./media/characters/mid/front.svg",
  29310. extra: 507 / 476,
  29311. bottom: 17 / 524
  29312. }
  29313. },
  29314. back: {
  29315. height: math.unit(4, "meters"),
  29316. name: "Back",
  29317. image: {
  29318. source: "./media/characters/mid/back.svg",
  29319. extra: 519 / 487,
  29320. bottom: 7 / 526
  29321. }
  29322. },
  29323. stuck: {
  29324. height: math.unit(2.2, "meters"),
  29325. name: "Stuck",
  29326. image: {
  29327. source: "./media/characters/mid/stuck.svg",
  29328. extra: 1951 / 1869,
  29329. bottom: 88 / 2039
  29330. }
  29331. }
  29332. },
  29333. [
  29334. {
  29335. name: "Normal",
  29336. height: math.unit(4, "meters"),
  29337. default: true
  29338. },
  29339. {
  29340. name: "Big",
  29341. height: math.unit(10, "meters")
  29342. },
  29343. {
  29344. name: "Macro",
  29345. height: math.unit(800, "meters")
  29346. },
  29347. {
  29348. name: "Megamacro",
  29349. height: math.unit(100, "km")
  29350. },
  29351. {
  29352. name: "Overgrown",
  29353. height: math.unit(1, "parsec")
  29354. },
  29355. ]
  29356. ))
  29357. characterMakers.push(() => makeCharacter(
  29358. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29359. {
  29360. front: {
  29361. height: math.unit(2.5, "meters"),
  29362. weight: math.unit(225, "kg"),
  29363. name: "Front",
  29364. image: {
  29365. source: "./media/characters/iris/front.svg",
  29366. extra: 3348 / 3251,
  29367. bottom: 205 / 3553
  29368. }
  29369. },
  29370. maw: {
  29371. height: math.unit(0.56, "meter"),
  29372. name: "Maw",
  29373. image: {
  29374. source: "./media/characters/iris/maw.svg"
  29375. }
  29376. },
  29377. },
  29378. [
  29379. {
  29380. name: "Mewter cat",
  29381. height: math.unit(1.2, "meters")
  29382. },
  29383. {
  29384. name: "Minimacro",
  29385. height: math.unit(2.5, "meters"),
  29386. default: true
  29387. },
  29388. {
  29389. name: "Macro",
  29390. height: math.unit(180, "meters")
  29391. },
  29392. {
  29393. name: "Megamacro",
  29394. height: math.unit(2746, "meters")
  29395. },
  29396. ]
  29397. ))
  29398. characterMakers.push(() => makeCharacter(
  29399. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29400. {
  29401. front: {
  29402. height: math.unit(6, "feet"),
  29403. weight: math.unit(135, "lb"),
  29404. name: "Front",
  29405. image: {
  29406. source: "./media/characters/axel/front.svg",
  29407. extra: 908 / 908,
  29408. bottom: 58 / 966
  29409. }
  29410. },
  29411. side: {
  29412. height: math.unit(6, "feet"),
  29413. weight: math.unit(135, "lb"),
  29414. name: "Side",
  29415. image: {
  29416. source: "./media/characters/axel/side.svg",
  29417. extra: 958 / 958,
  29418. bottom: 11 / 969
  29419. }
  29420. },
  29421. back: {
  29422. height: math.unit(6, "feet"),
  29423. weight: math.unit(135, "lb"),
  29424. name: "Back",
  29425. image: {
  29426. source: "./media/characters/axel/back.svg",
  29427. extra: 887 / 887,
  29428. bottom: 34 / 921
  29429. }
  29430. },
  29431. head: {
  29432. height: math.unit(1.07, "feet"),
  29433. name: "Head",
  29434. image: {
  29435. source: "./media/characters/axel/head.svg"
  29436. }
  29437. },
  29438. beak: {
  29439. height: math.unit(1.4, "feet"),
  29440. name: "Beak",
  29441. image: {
  29442. source: "./media/characters/axel/beak.svg"
  29443. }
  29444. },
  29445. beakSide: {
  29446. height: math.unit(1.4, "feet"),
  29447. name: "Beak Side",
  29448. image: {
  29449. source: "./media/characters/axel/beak-side.svg"
  29450. }
  29451. },
  29452. sheath: {
  29453. height: math.unit(0.5, "feet"),
  29454. name: "Sheath",
  29455. image: {
  29456. source: "./media/characters/axel/sheath.svg"
  29457. }
  29458. },
  29459. dick: {
  29460. height: math.unit(0.98, "feet"),
  29461. name: "Dick",
  29462. image: {
  29463. source: "./media/characters/axel/dick.svg"
  29464. }
  29465. },
  29466. },
  29467. [
  29468. {
  29469. name: "Macro",
  29470. height: math.unit(68, "meters"),
  29471. default: true
  29472. },
  29473. ]
  29474. ))
  29475. characterMakers.push(() => makeCharacter(
  29476. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29477. {
  29478. front: {
  29479. height: math.unit(3.5, "meters"),
  29480. weight: math.unit(1200, "kg"),
  29481. name: "Front",
  29482. image: {
  29483. source: "./media/characters/joanna/front.svg",
  29484. extra: 1596 / 1488,
  29485. bottom: 29 / 1625
  29486. }
  29487. },
  29488. back: {
  29489. height: math.unit(3.5, "meters"),
  29490. weight: math.unit(1200, "kg"),
  29491. name: "Back",
  29492. image: {
  29493. source: "./media/characters/joanna/back.svg",
  29494. extra: 1594 / 1495,
  29495. bottom: 26 / 1620
  29496. }
  29497. },
  29498. frontShorts: {
  29499. height: math.unit(3.5, "meters"),
  29500. weight: math.unit(1200, "kg"),
  29501. name: "Front (Shorts)",
  29502. image: {
  29503. source: "./media/characters/joanna/front-shorts.svg",
  29504. extra: 1596 / 1488,
  29505. bottom: 29 / 1625
  29506. }
  29507. },
  29508. frontBiker: {
  29509. height: math.unit(3.5, "meters"),
  29510. weight: math.unit(1200, "kg"),
  29511. name: "Front (Biker)",
  29512. image: {
  29513. source: "./media/characters/joanna/front-biker.svg",
  29514. extra: 1596 / 1488,
  29515. bottom: 29 / 1625
  29516. }
  29517. },
  29518. backBiker: {
  29519. height: math.unit(3.5, "meters"),
  29520. weight: math.unit(1200, "kg"),
  29521. name: "Back (Biker)",
  29522. image: {
  29523. source: "./media/characters/joanna/back-biker.svg",
  29524. extra: 1594 / 1495,
  29525. bottom: 88 / 1682
  29526. }
  29527. },
  29528. bikeLeft: {
  29529. height: math.unit(2.4, "meters"),
  29530. weight: math.unit(1600, "kg"),
  29531. name: "Bike (Left)",
  29532. image: {
  29533. source: "./media/characters/joanna/bike-left.svg",
  29534. extra: 720 / 720,
  29535. bottom: 8 / 728
  29536. }
  29537. },
  29538. bikeRight: {
  29539. height: math.unit(2.4, "meters"),
  29540. weight: math.unit(1600, "kg"),
  29541. name: "Bike (Right)",
  29542. image: {
  29543. source: "./media/characters/joanna/bike-right.svg",
  29544. extra: 720 / 720,
  29545. bottom: 8 / 728
  29546. }
  29547. },
  29548. },
  29549. [
  29550. {
  29551. name: "Incognito",
  29552. height: math.unit(3.5, "meters")
  29553. },
  29554. {
  29555. name: "Casual Big",
  29556. height: math.unit(200, "meters")
  29557. },
  29558. {
  29559. name: "Macro",
  29560. height: math.unit(600, "meters")
  29561. },
  29562. {
  29563. name: "Original",
  29564. height: math.unit(20, "km"),
  29565. default: true
  29566. },
  29567. {
  29568. name: "Giga",
  29569. height: math.unit(400, "km")
  29570. },
  29571. {
  29572. name: "Lounging",
  29573. height: math.unit(1500, "km")
  29574. },
  29575. {
  29576. name: "Planetary",
  29577. height: math.unit(200000, "km")
  29578. },
  29579. ]
  29580. ))
  29581. characterMakers.push(() => makeCharacter(
  29582. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29583. {
  29584. front: {
  29585. height: math.unit(6, "feet"),
  29586. weight: math.unit(150, "lb"),
  29587. name: "Front",
  29588. image: {
  29589. source: "./media/characters/hugo-sigil/front.svg",
  29590. extra: 522 / 500,
  29591. bottom: 2 / 524
  29592. }
  29593. },
  29594. back: {
  29595. height: math.unit(6, "feet"),
  29596. weight: math.unit(150, "lb"),
  29597. name: "Back",
  29598. image: {
  29599. source: "./media/characters/hugo-sigil/back.svg",
  29600. extra: 519 / 495,
  29601. bottom: 5 / 524
  29602. }
  29603. },
  29604. maw: {
  29605. height: math.unit(1.4, "feet"),
  29606. weight: math.unit(150, "lb"),
  29607. name: "Maw",
  29608. image: {
  29609. source: "./media/characters/hugo-sigil/maw.svg"
  29610. }
  29611. },
  29612. feet: {
  29613. height: math.unit(1.56, "feet"),
  29614. weight: math.unit(150, "lb"),
  29615. name: "Feet",
  29616. image: {
  29617. source: "./media/characters/hugo-sigil/feet.svg",
  29618. extra: 177 / 177,
  29619. bottom: 12 / 189
  29620. }
  29621. },
  29622. },
  29623. [
  29624. {
  29625. name: "Normal",
  29626. height: math.unit(6, "feet")
  29627. },
  29628. {
  29629. name: "Macro",
  29630. height: math.unit(200, "feet"),
  29631. default: true
  29632. },
  29633. ]
  29634. ))
  29635. characterMakers.push(() => makeCharacter(
  29636. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29637. {
  29638. front: {
  29639. height: math.unit(6, "feet"),
  29640. weight: math.unit(150, "lb"),
  29641. name: "Front",
  29642. image: {
  29643. source: "./media/characters/peri/front.svg",
  29644. extra: 2354 / 2233,
  29645. bottom: 49 / 2403
  29646. }
  29647. },
  29648. },
  29649. [
  29650. {
  29651. name: "Really Small",
  29652. height: math.unit(1, "nm")
  29653. },
  29654. {
  29655. name: "Micro",
  29656. height: math.unit(4, "inches")
  29657. },
  29658. {
  29659. name: "Normal",
  29660. height: math.unit(7, "inches"),
  29661. default: true
  29662. },
  29663. {
  29664. name: "Macro",
  29665. height: math.unit(400, "feet")
  29666. },
  29667. {
  29668. name: "Megamacro",
  29669. height: math.unit(100, "miles")
  29670. },
  29671. ]
  29672. ))
  29673. characterMakers.push(() => makeCharacter(
  29674. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29675. {
  29676. frontSlim: {
  29677. height: math.unit(7, "feet"),
  29678. name: "Front (Slim)",
  29679. image: {
  29680. source: "./media/characters/issilora/front-slim.svg",
  29681. extra: 529 / 449,
  29682. bottom: 53 / 582
  29683. }
  29684. },
  29685. sideSlim: {
  29686. height: math.unit(7, "feet"),
  29687. name: "Side (Slim)",
  29688. image: {
  29689. source: "./media/characters/issilora/side-slim.svg",
  29690. extra: 570 / 480,
  29691. bottom: 30 / 600
  29692. }
  29693. },
  29694. backSlim: {
  29695. height: math.unit(7, "feet"),
  29696. name: "Back (Slim)",
  29697. image: {
  29698. source: "./media/characters/issilora/back-slim.svg",
  29699. extra: 537 / 455,
  29700. bottom: 46 / 583
  29701. }
  29702. },
  29703. frontBuff: {
  29704. height: math.unit(7, "feet"),
  29705. name: "Front (Buff)",
  29706. image: {
  29707. source: "./media/characters/issilora/front-buff.svg",
  29708. extra: 2310 / 2035,
  29709. bottom: 335 / 2645
  29710. }
  29711. },
  29712. head: {
  29713. height: math.unit(1.94, "feet"),
  29714. name: "Head",
  29715. image: {
  29716. source: "./media/characters/issilora/head.svg"
  29717. }
  29718. },
  29719. },
  29720. [
  29721. {
  29722. name: "Minimum",
  29723. height: math.unit(7, "feet")
  29724. },
  29725. {
  29726. name: "Comfortable",
  29727. height: math.unit(17, "feet")
  29728. },
  29729. {
  29730. name: "Fun Size",
  29731. height: math.unit(47, "feet")
  29732. },
  29733. {
  29734. name: "Natural Macro",
  29735. height: math.unit(137, "feet"),
  29736. default: true
  29737. },
  29738. {
  29739. name: "Maximum Kaiju",
  29740. height: math.unit(397, "feet")
  29741. },
  29742. ]
  29743. ))
  29744. characterMakers.push(() => makeCharacter(
  29745. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29746. {
  29747. front: {
  29748. height: math.unit(50 + 9/12, "feet"),
  29749. weight: math.unit(32.8, "tons"),
  29750. name: "Front",
  29751. image: {
  29752. source: "./media/characters/irb'iiritaahn/front.svg",
  29753. extra: 1878/1826,
  29754. bottom: 326/2204
  29755. }
  29756. },
  29757. back: {
  29758. height: math.unit(50 + 9/12, "feet"),
  29759. weight: math.unit(32.8, "tons"),
  29760. name: "Back",
  29761. image: {
  29762. source: "./media/characters/irb'iiritaahn/back.svg",
  29763. extra: 2052/2018,
  29764. bottom: 152/2204
  29765. }
  29766. },
  29767. head: {
  29768. height: math.unit(12.86, "feet"),
  29769. name: "Head",
  29770. image: {
  29771. source: "./media/characters/irb'iiritaahn/head.svg"
  29772. }
  29773. },
  29774. maw: {
  29775. height: math.unit(9.66, "feet"),
  29776. name: "Maw",
  29777. image: {
  29778. source: "./media/characters/irb'iiritaahn/maw.svg"
  29779. }
  29780. },
  29781. frontDick: {
  29782. height: math.unit(8.78461, "feet"),
  29783. name: "Front Dick",
  29784. image: {
  29785. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29786. }
  29787. },
  29788. rearDick: {
  29789. height: math.unit(8.78461, "feet"),
  29790. name: "Rear Dick",
  29791. image: {
  29792. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29793. }
  29794. },
  29795. rearDickUnfolded: {
  29796. height: math.unit(8.78, "feet"),
  29797. name: "Rear Dick (Unfolded)",
  29798. image: {
  29799. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29800. }
  29801. },
  29802. wings: {
  29803. height: math.unit(43, "feet"),
  29804. name: "Wings",
  29805. image: {
  29806. source: "./media/characters/irb'iiritaahn/wings.svg"
  29807. }
  29808. },
  29809. },
  29810. [
  29811. {
  29812. name: "Macro",
  29813. height: math.unit(50 + 9/12, "feet"),
  29814. default: true
  29815. },
  29816. ]
  29817. ))
  29818. //characters
  29819. function makeCharacters() {
  29820. const results = [];
  29821. characterMakers.forEach(character => {
  29822. results.push(character());
  29823. });
  29824. return results;
  29825. }