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

26201 строка
651 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"]
  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. }
  1280. //species
  1281. function getSpeciesInfo(speciesList) {
  1282. let result = new Set();
  1283. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1284. result.add(entry)
  1285. });
  1286. return Array.from(result);
  1287. };
  1288. function getSpeciesInfoHelper(species) {
  1289. if (!speciesData[species]) {
  1290. console.warn(species + " doesn't exist");
  1291. return [];
  1292. }
  1293. if (speciesData[species].parents) {
  1294. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1295. } else {
  1296. return [species];
  1297. }
  1298. }
  1299. characterMakers.push(() => makeCharacter(
  1300. {
  1301. name: "Fen",
  1302. species: ["crux"],
  1303. description: {
  1304. title: "Bio",
  1305. text: "Very furry. Sheds on everything."
  1306. },
  1307. tags: [
  1308. "anthro",
  1309. "goo"
  1310. ]
  1311. },
  1312. {
  1313. back: {
  1314. height: math.unit(2.2428, "meter"),
  1315. weight: math.unit(124.738, "kg"),
  1316. name: "Back",
  1317. image: {
  1318. source: "./media/characters/fen/back.svg",
  1319. extra: 1025 / 935,
  1320. bottom: 0.01
  1321. },
  1322. info: {
  1323. description: {
  1324. mode: "append",
  1325. text: "\n\nHe is not currently looking at you."
  1326. }
  1327. }
  1328. },
  1329. full: {
  1330. height: math.unit(1.34, "meter"),
  1331. weight: math.unit(225, "kg"),
  1332. name: "Full",
  1333. image: {
  1334. source: "./media/characters/fen/full.svg"
  1335. },
  1336. info: {
  1337. description: {
  1338. mode: "append",
  1339. text: "\n\nMunch."
  1340. }
  1341. }
  1342. },
  1343. kneeling: {
  1344. height: math.unit(5.4, "feet"),
  1345. weight: math.unit(124.738, "kg"),
  1346. name: "Kneeling",
  1347. image: {
  1348. source: "./media/characters/fen/kneeling.svg",
  1349. extra: 563 / 507
  1350. }
  1351. },
  1352. goo: {
  1353. height: math.unit(2.8, "feet"),
  1354. weight: math.unit(125, "kg"),
  1355. capacity: math.unit(1, "people"),
  1356. name: "Goo",
  1357. image: {
  1358. source: "./media/characters/fen/goo.svg",
  1359. bottom: 116 / 613
  1360. }
  1361. },
  1362. lounging: {
  1363. height: math.unit(6.5, "feet"),
  1364. weight: math.unit(125, "kg"),
  1365. name: "Lounging",
  1366. image: {
  1367. source: "./media/characters/fen/lounging.svg"
  1368. }
  1369. },
  1370. },
  1371. [
  1372. {
  1373. name: "Normal",
  1374. height: math.unit(2.2428, "meter")
  1375. },
  1376. {
  1377. name: "Big",
  1378. height: math.unit(12, "feet")
  1379. },
  1380. {
  1381. name: "Minimacro",
  1382. height: math.unit(40, "feet"),
  1383. default: true,
  1384. info: {
  1385. description: {
  1386. mode: "append",
  1387. text: "\n\nTOO DAMN BIG"
  1388. }
  1389. }
  1390. },
  1391. {
  1392. name: "Macro",
  1393. height: math.unit(100, "feet"),
  1394. info: {
  1395. description: {
  1396. mode: "append",
  1397. text: "\n\nTOO DAMN BIG"
  1398. }
  1399. }
  1400. },
  1401. {
  1402. name: "Macro+",
  1403. height: math.unit(300, "feet")
  1404. },
  1405. {
  1406. name: "Megamacro",
  1407. height: math.unit(2, "miles")
  1408. }
  1409. ]
  1410. ))
  1411. characterMakers.push(() => makeCharacter(
  1412. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1413. {
  1414. front: {
  1415. height: math.unit(183, "cm"),
  1416. weight: math.unit(80, "kg"),
  1417. name: "Front",
  1418. image: {
  1419. source: "./media/characters/sofia-fluttertail/front.svg",
  1420. bottom: 0.01,
  1421. extra: 2154 / 2081
  1422. }
  1423. },
  1424. frontAlt: {
  1425. height: math.unit(183, "cm"),
  1426. weight: math.unit(80, "kg"),
  1427. name: "Front (alt)",
  1428. image: {
  1429. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1430. }
  1431. },
  1432. back: {
  1433. height: math.unit(183, "cm"),
  1434. weight: math.unit(80, "kg"),
  1435. name: "Back",
  1436. image: {
  1437. source: "./media/characters/sofia-fluttertail/back.svg"
  1438. }
  1439. },
  1440. kneeling: {
  1441. height: math.unit(125, "cm"),
  1442. weight: math.unit(80, "kg"),
  1443. name: "Kneeling",
  1444. image: {
  1445. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1446. extra: 1033 / 977,
  1447. bottom: 23.7 / 1057
  1448. }
  1449. },
  1450. maw: {
  1451. height: math.unit(183 / 5, "cm"),
  1452. name: "Maw",
  1453. image: {
  1454. source: "./media/characters/sofia-fluttertail/maw.svg"
  1455. }
  1456. },
  1457. mawcloseup: {
  1458. height: math.unit(183 / 5 * 0.41, "cm"),
  1459. name: "Maw (Closeup)",
  1460. image: {
  1461. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1462. }
  1463. },
  1464. },
  1465. [
  1466. {
  1467. name: "Normal",
  1468. height: math.unit(1.83, "meter")
  1469. },
  1470. {
  1471. name: "Size Thief",
  1472. height: math.unit(18, "feet")
  1473. },
  1474. {
  1475. name: "50 Foot Collie",
  1476. height: math.unit(50, "feet")
  1477. },
  1478. {
  1479. name: "Macro",
  1480. height: math.unit(96, "feet"),
  1481. default: true
  1482. },
  1483. {
  1484. name: "Megamerger",
  1485. height: math.unit(650, "feet")
  1486. },
  1487. ]
  1488. ))
  1489. characterMakers.push(() => makeCharacter(
  1490. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1491. {
  1492. front: {
  1493. height: math.unit(7, "feet"),
  1494. weight: math.unit(100, "kg"),
  1495. name: "Front",
  1496. image: {
  1497. source: "./media/characters/march/front.svg",
  1498. extra: 1,
  1499. bottom: 0.015
  1500. }
  1501. },
  1502. foot: {
  1503. height: math.unit(0.9, "feet"),
  1504. name: "Foot",
  1505. image: {
  1506. source: "./media/characters/march/foot.svg"
  1507. }
  1508. },
  1509. },
  1510. [
  1511. {
  1512. name: "Normal",
  1513. height: math.unit(7.9, "feet")
  1514. },
  1515. {
  1516. name: "Macro",
  1517. height: math.unit(220, "meters")
  1518. },
  1519. {
  1520. name: "Megamacro",
  1521. height: math.unit(2.98, "km"),
  1522. default: true
  1523. },
  1524. {
  1525. name: "Gigamacro",
  1526. height: math.unit(15963, "km")
  1527. },
  1528. {
  1529. name: "Teramacro",
  1530. height: math.unit(2980000000, "km")
  1531. },
  1532. {
  1533. name: "Examacro",
  1534. height: math.unit(250, "parsecs")
  1535. },
  1536. ]
  1537. ))
  1538. characterMakers.push(() => makeCharacter(
  1539. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1540. {
  1541. front: {
  1542. height: math.unit(6, "feet"),
  1543. weight: math.unit(60, "kg"),
  1544. name: "Front",
  1545. image: {
  1546. source: "./media/characters/noir/front.svg",
  1547. extra: 1,
  1548. bottom: 0.032
  1549. }
  1550. },
  1551. },
  1552. [
  1553. {
  1554. name: "Normal",
  1555. height: math.unit(6.6, "feet")
  1556. },
  1557. {
  1558. name: "Macro",
  1559. height: math.unit(500, "feet")
  1560. },
  1561. {
  1562. name: "Megamacro",
  1563. height: math.unit(2.5, "km"),
  1564. default: true
  1565. },
  1566. {
  1567. name: "Gigamacro",
  1568. height: math.unit(22500, "km")
  1569. },
  1570. {
  1571. name: "Teramacro",
  1572. height: math.unit(2500000000, "km")
  1573. },
  1574. {
  1575. name: "Examacro",
  1576. height: math.unit(200, "parsecs")
  1577. },
  1578. ]
  1579. ))
  1580. characterMakers.push(() => makeCharacter(
  1581. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1582. {
  1583. front: {
  1584. height: math.unit(7, "feet"),
  1585. weight: math.unit(100, "kg"),
  1586. name: "Front",
  1587. image: {
  1588. source: "./media/characters/okuri/front.svg",
  1589. extra: 1,
  1590. bottom: 0.037
  1591. }
  1592. },
  1593. back: {
  1594. height: math.unit(7, "feet"),
  1595. weight: math.unit(100, "kg"),
  1596. name: "Back",
  1597. image: {
  1598. source: "./media/characters/okuri/back.svg",
  1599. extra: 1,
  1600. bottom: 0.007
  1601. }
  1602. },
  1603. },
  1604. [
  1605. {
  1606. name: "Megamacro",
  1607. height: math.unit(100, "miles"),
  1608. default: true
  1609. },
  1610. ]
  1611. ))
  1612. characterMakers.push(() => makeCharacter(
  1613. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1614. {
  1615. front: {
  1616. height: math.unit(7, "feet"),
  1617. weight: math.unit(100, "kg"),
  1618. name: "Front",
  1619. image: {
  1620. source: "./media/characters/manny/front.svg",
  1621. extra: 1,
  1622. bottom: 0.06
  1623. }
  1624. },
  1625. back: {
  1626. height: math.unit(7, "feet"),
  1627. weight: math.unit(100, "kg"),
  1628. name: "Back",
  1629. image: {
  1630. source: "./media/characters/manny/back.svg",
  1631. extra: 1,
  1632. bottom: 0.014
  1633. }
  1634. },
  1635. },
  1636. [
  1637. {
  1638. name: "Normal",
  1639. height: math.unit(7, "feet"),
  1640. },
  1641. {
  1642. name: "Macro",
  1643. height: math.unit(78, "feet"),
  1644. default: true
  1645. },
  1646. {
  1647. name: "Macro+",
  1648. height: math.unit(300, "meters")
  1649. },
  1650. {
  1651. name: "Macro++",
  1652. height: math.unit(2400, "meters")
  1653. },
  1654. {
  1655. name: "Megamacro",
  1656. height: math.unit(5167, "meters")
  1657. },
  1658. {
  1659. name: "Gigamacro",
  1660. height: math.unit(41769, "miles")
  1661. },
  1662. ]
  1663. ))
  1664. characterMakers.push(() => makeCharacter(
  1665. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1666. {
  1667. front: {
  1668. height: math.unit(7, "feet"),
  1669. weight: math.unit(100, "kg"),
  1670. name: "Front",
  1671. image: {
  1672. source: "./media/characters/adake/front-1.svg"
  1673. }
  1674. },
  1675. frontAlt: {
  1676. height: math.unit(7, "feet"),
  1677. weight: math.unit(100, "kg"),
  1678. name: "Front (Alt)",
  1679. image: {
  1680. source: "./media/characters/adake/front-2.svg",
  1681. extra: 1,
  1682. bottom: 0.01
  1683. }
  1684. },
  1685. back: {
  1686. height: math.unit(7, "feet"),
  1687. weight: math.unit(100, "kg"),
  1688. name: "Back",
  1689. image: {
  1690. source: "./media/characters/adake/back.svg",
  1691. }
  1692. },
  1693. kneel: {
  1694. height: math.unit(5.385, "feet"),
  1695. weight: math.unit(100, "kg"),
  1696. name: "Kneeling",
  1697. image: {
  1698. source: "./media/characters/adake/kneel.svg",
  1699. bottom: 0.052
  1700. }
  1701. },
  1702. },
  1703. [
  1704. {
  1705. name: "Normal",
  1706. height: math.unit(7, "feet"),
  1707. },
  1708. {
  1709. name: "Macro",
  1710. height: math.unit(78, "feet"),
  1711. default: true
  1712. },
  1713. {
  1714. name: "Macro+",
  1715. height: math.unit(300, "meters")
  1716. },
  1717. {
  1718. name: "Macro++",
  1719. height: math.unit(2400, "meters")
  1720. },
  1721. {
  1722. name: "Megamacro",
  1723. height: math.unit(5167, "meters")
  1724. },
  1725. {
  1726. name: "Gigamacro",
  1727. height: math.unit(41769, "miles")
  1728. },
  1729. ]
  1730. ))
  1731. characterMakers.push(() => makeCharacter(
  1732. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1733. {
  1734. front: {
  1735. height: math.unit(1.65, "meters"),
  1736. weight: math.unit(50, "kg"),
  1737. name: "Front",
  1738. image: {
  1739. source: "./media/characters/elijah/front.svg",
  1740. extra: 858 / 830,
  1741. bottom: 95.5 / 953.8559
  1742. }
  1743. },
  1744. back: {
  1745. height: math.unit(1.65, "meters"),
  1746. weight: math.unit(50, "kg"),
  1747. name: "Back",
  1748. image: {
  1749. source: "./media/characters/elijah/back.svg",
  1750. extra: 895 / 850,
  1751. bottom: 5.3 / 897.956
  1752. }
  1753. },
  1754. frontNsfw: {
  1755. height: math.unit(1.65, "meters"),
  1756. weight: math.unit(50, "kg"),
  1757. name: "Front (NSFW)",
  1758. image: {
  1759. source: "./media/characters/elijah/front-nsfw.svg",
  1760. extra: 858 / 830,
  1761. bottom: 95.5 / 953.8559
  1762. }
  1763. },
  1764. backNsfw: {
  1765. height: math.unit(1.65, "meters"),
  1766. weight: math.unit(50, "kg"),
  1767. name: "Back (NSFW)",
  1768. image: {
  1769. source: "./media/characters/elijah/back-nsfw.svg",
  1770. extra: 895 / 850,
  1771. bottom: 5.3 / 897.956
  1772. }
  1773. },
  1774. dick: {
  1775. height: math.unit(1, "feet"),
  1776. name: "Dick",
  1777. image: {
  1778. source: "./media/characters/elijah/dick.svg"
  1779. }
  1780. },
  1781. beakOpen: {
  1782. height: math.unit(1.25, "feet"),
  1783. name: "Beak (Open)",
  1784. image: {
  1785. source: "./media/characters/elijah/beak-open.svg"
  1786. }
  1787. },
  1788. beakShut: {
  1789. height: math.unit(1.25, "feet"),
  1790. name: "Beak (Shut)",
  1791. image: {
  1792. source: "./media/characters/elijah/beak-shut.svg"
  1793. }
  1794. },
  1795. footFlexing: {
  1796. height: math.unit(1.61, "feet"),
  1797. name: "Foot (Flexing)",
  1798. image: {
  1799. source: "./media/characters/elijah/foot-flexing.svg"
  1800. }
  1801. },
  1802. footStepping: {
  1803. height: math.unit(1.44, "feet"),
  1804. name: "Foot (Stepping)",
  1805. image: {
  1806. source: "./media/characters/elijah/foot-stepping.svg"
  1807. }
  1808. },
  1809. plantigradeLeg: {
  1810. height: math.unit(2.34, "feet"),
  1811. name: "Plantigrade Leg",
  1812. image: {
  1813. source: "./media/characters/elijah/plantigrade-leg.svg"
  1814. }
  1815. },
  1816. plantigradeFootLeft: {
  1817. height: math.unit(0.9, "feet"),
  1818. name: "Plantigrade Foot (Left)",
  1819. image: {
  1820. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1821. }
  1822. },
  1823. plantigradeFootRight: {
  1824. height: math.unit(0.9, "feet"),
  1825. name: "Plantigrade Foot (Right)",
  1826. image: {
  1827. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1828. }
  1829. },
  1830. },
  1831. [
  1832. {
  1833. name: "Normal",
  1834. height: math.unit(1.65, "meters")
  1835. },
  1836. {
  1837. name: "Macro",
  1838. height: math.unit(55, "meters"),
  1839. default: true
  1840. },
  1841. {
  1842. name: "Macro+",
  1843. height: math.unit(105, "meters")
  1844. },
  1845. ]
  1846. ))
  1847. characterMakers.push(() => makeCharacter(
  1848. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1849. {
  1850. front: {
  1851. height: math.unit(11, "feet"),
  1852. weight: math.unit(80, "kg"),
  1853. name: "Front",
  1854. image: {
  1855. source: "./media/characters/rai/front.svg",
  1856. extra: 1,
  1857. bottom: 0.03
  1858. }
  1859. },
  1860. side: {
  1861. height: math.unit(11, "feet"),
  1862. weight: math.unit(80, "kg"),
  1863. name: "Side",
  1864. image: {
  1865. source: "./media/characters/rai/side.svg"
  1866. }
  1867. },
  1868. back: {
  1869. height: math.unit(11, "feet"),
  1870. weight: math.unit(80, "lb"),
  1871. name: "Back",
  1872. image: {
  1873. source: "./media/characters/rai/back.svg",
  1874. extra: 1,
  1875. bottom: 0.01
  1876. }
  1877. },
  1878. feral: {
  1879. height: math.unit(11, "feet"),
  1880. weight: math.unit(800, "lb"),
  1881. name: "Feral",
  1882. image: {
  1883. source: "./media/characters/rai/feral.svg",
  1884. extra: 1050 / 659,
  1885. bottom: 0.07
  1886. }
  1887. },
  1888. dragon: {
  1889. height: math.unit(23, "feet"),
  1890. weight: math.unit(50000, "lb"),
  1891. name: "Dragon",
  1892. image: {
  1893. source: "./media/characters/rai/dragon.svg",
  1894. extra: 2498 / 2030,
  1895. bottom: 85.2 / 2584
  1896. }
  1897. },
  1898. maw: {
  1899. height: math.unit(6 / 3.81416, "feet"),
  1900. name: "Maw",
  1901. image: {
  1902. source: "./media/characters/rai/maw.svg"
  1903. }
  1904. },
  1905. },
  1906. [
  1907. {
  1908. name: "Normal",
  1909. height: math.unit(11, "feet")
  1910. },
  1911. {
  1912. name: "Macro",
  1913. height: math.unit(302, "feet"),
  1914. default: true
  1915. },
  1916. ]
  1917. ))
  1918. characterMakers.push(() => makeCharacter(
  1919. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1920. {
  1921. frontDressed: {
  1922. height: math.unit(216, "feet"),
  1923. weight: math.unit(7000000, "lb"),
  1924. name: "Front (Dressed)",
  1925. image: {
  1926. source: "./media/characters/jazzy/front-dressed.svg",
  1927. extra: 2738 / 2651,
  1928. bottom: 41.8 / 2786
  1929. }
  1930. },
  1931. backDressed: {
  1932. height: math.unit(216, "feet"),
  1933. weight: math.unit(7000000, "lb"),
  1934. name: "Back (Dressed)",
  1935. image: {
  1936. source: "./media/characters/jazzy/back-dressed.svg",
  1937. extra: 2775 / 2673,
  1938. bottom: 36.8 / 2817
  1939. }
  1940. },
  1941. front: {
  1942. height: math.unit(216, "feet"),
  1943. weight: math.unit(7000000, "lb"),
  1944. name: "Front",
  1945. image: {
  1946. source: "./media/characters/jazzy/front.svg",
  1947. extra: 2738 / 2651,
  1948. bottom: 41.8 / 2786
  1949. }
  1950. },
  1951. back: {
  1952. height: math.unit(216, "feet"),
  1953. weight: math.unit(7000000, "lb"),
  1954. name: "Back",
  1955. image: {
  1956. source: "./media/characters/jazzy/back.svg",
  1957. extra: 2775 / 2673,
  1958. bottom: 36.8 / 2817
  1959. }
  1960. },
  1961. maw: {
  1962. height: math.unit(20, "feet"),
  1963. name: "Maw",
  1964. image: {
  1965. source: "./media/characters/jazzy/maw.svg"
  1966. }
  1967. },
  1968. paws: {
  1969. height: math.unit(27.5, "feet"),
  1970. name: "Paws",
  1971. image: {
  1972. source: "./media/characters/jazzy/paws.svg"
  1973. }
  1974. },
  1975. eye: {
  1976. height: math.unit(4.4, "feet"),
  1977. name: "Eye",
  1978. image: {
  1979. source: "./media/characters/jazzy/eye.svg"
  1980. }
  1981. },
  1982. droneOffense: {
  1983. height: math.unit(9.5, "inches"),
  1984. name: "Drone (Offense)",
  1985. image: {
  1986. source: "./media/characters/jazzy/drone-offense.svg"
  1987. }
  1988. },
  1989. droneRecon: {
  1990. height: math.unit(9.5, "inches"),
  1991. name: "Drone (Recon)",
  1992. image: {
  1993. source: "./media/characters/jazzy/drone-recon.svg"
  1994. }
  1995. },
  1996. droneDefense: {
  1997. height: math.unit(9.5, "inches"),
  1998. name: "Drone (Defense)",
  1999. image: {
  2000. source: "./media/characters/jazzy/drone-defense.svg"
  2001. }
  2002. },
  2003. },
  2004. [
  2005. {
  2006. name: "Macro",
  2007. height: math.unit(216, "feet"),
  2008. default: true
  2009. },
  2010. ]
  2011. ))
  2012. characterMakers.push(() => makeCharacter(
  2013. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2014. {
  2015. front: {
  2016. height: math.unit(7, "feet"),
  2017. weight: math.unit(80, "kg"),
  2018. name: "Front",
  2019. image: {
  2020. source: "./media/characters/flamm/front.svg",
  2021. extra: 1794 / 1677,
  2022. bottom: 31.7 / 1828.5
  2023. }
  2024. },
  2025. },
  2026. [
  2027. {
  2028. name: "Normal",
  2029. height: math.unit(9.5, "feet")
  2030. },
  2031. {
  2032. name: "Macro",
  2033. height: math.unit(200, "feet"),
  2034. default: true
  2035. },
  2036. ]
  2037. ))
  2038. characterMakers.push(() => makeCharacter(
  2039. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2040. {
  2041. front: {
  2042. height: math.unit(7, "feet"),
  2043. weight: math.unit(80, "kg"),
  2044. name: "Front",
  2045. image: {
  2046. source: "./media/characters/zephiro/front.svg",
  2047. extra: 2309 / 2162,
  2048. bottom: 0.069
  2049. }
  2050. },
  2051. side: {
  2052. height: math.unit(7, "feet"),
  2053. weight: math.unit(80, "kg"),
  2054. name: "Side",
  2055. image: {
  2056. source: "./media/characters/zephiro/side.svg",
  2057. extra: 2403 / 2279,
  2058. bottom: 0.015
  2059. }
  2060. },
  2061. back: {
  2062. height: math.unit(7, "feet"),
  2063. weight: math.unit(80, "kg"),
  2064. name: "Back",
  2065. image: {
  2066. source: "./media/characters/zephiro/back.svg",
  2067. extra: 2373 / 2244,
  2068. bottom: 0.013
  2069. }
  2070. },
  2071. },
  2072. [
  2073. {
  2074. name: "Micro",
  2075. height: math.unit(3, "inches")
  2076. },
  2077. {
  2078. name: "Normal",
  2079. height: math.unit(5 + 3 / 12, "feet"),
  2080. default: true
  2081. },
  2082. {
  2083. name: "Macro",
  2084. height: math.unit(118, "feet")
  2085. },
  2086. ]
  2087. ))
  2088. characterMakers.push(() => makeCharacter(
  2089. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2090. {
  2091. front: {
  2092. height: math.unit(5, "feet"),
  2093. weight: math.unit(90, "kg"),
  2094. name: "Front",
  2095. image: {
  2096. source: "./media/characters/fory/front.svg",
  2097. extra: 2862 / 2674,
  2098. bottom: 180 / 3043.8
  2099. }
  2100. },
  2101. back: {
  2102. height: math.unit(5, "feet"),
  2103. weight: math.unit(90, "kg"),
  2104. name: "Back",
  2105. image: {
  2106. source: "./media/characters/fory/back.svg",
  2107. extra: 2962 / 2791,
  2108. bottom: 106 / 3071.8
  2109. }
  2110. },
  2111. foot: {
  2112. height: math.unit(2.14, "feet"),
  2113. name: "Foot",
  2114. image: {
  2115. source: "./media/characters/fory/foot.svg"
  2116. }
  2117. },
  2118. },
  2119. [
  2120. {
  2121. name: "Normal",
  2122. height: math.unit(5, "feet")
  2123. },
  2124. {
  2125. name: "Macro",
  2126. height: math.unit(50, "feet"),
  2127. default: true
  2128. },
  2129. {
  2130. name: "Megamacro",
  2131. height: math.unit(10, "miles")
  2132. },
  2133. {
  2134. name: "Gigamacro",
  2135. height: math.unit(5, "earths")
  2136. },
  2137. ]
  2138. ))
  2139. characterMakers.push(() => makeCharacter(
  2140. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2141. {
  2142. front: {
  2143. height: math.unit(7, "feet"),
  2144. weight: math.unit(90, "kg"),
  2145. name: "Front",
  2146. image: {
  2147. source: "./media/characters/kurrikage/front.svg",
  2148. extra: 1,
  2149. bottom: 0.035
  2150. }
  2151. },
  2152. back: {
  2153. height: math.unit(7, "feet"),
  2154. weight: math.unit(90, "lb"),
  2155. name: "Back",
  2156. image: {
  2157. source: "./media/characters/kurrikage/back.svg"
  2158. }
  2159. },
  2160. paw: {
  2161. height: math.unit(1.5, "feet"),
  2162. name: "Paw",
  2163. image: {
  2164. source: "./media/characters/kurrikage/paw.svg"
  2165. }
  2166. },
  2167. staff: {
  2168. height: math.unit(6.7, "feet"),
  2169. name: "Staff",
  2170. image: {
  2171. source: "./media/characters/kurrikage/staff.svg"
  2172. }
  2173. },
  2174. peek: {
  2175. height: math.unit(1.05, "feet"),
  2176. name: "Peeking",
  2177. image: {
  2178. source: "./media/characters/kurrikage/peek.svg",
  2179. bottom: 0.08
  2180. }
  2181. },
  2182. },
  2183. [
  2184. {
  2185. name: "Normal",
  2186. height: math.unit(12, "feet"),
  2187. default: true
  2188. },
  2189. {
  2190. name: "Big",
  2191. height: math.unit(20, "feet")
  2192. },
  2193. {
  2194. name: "Macro",
  2195. height: math.unit(500, "feet")
  2196. },
  2197. {
  2198. name: "Megamacro",
  2199. height: math.unit(20, "miles")
  2200. },
  2201. ]
  2202. ))
  2203. characterMakers.push(() => makeCharacter(
  2204. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2205. {
  2206. front: {
  2207. height: math.unit(6, "feet"),
  2208. weight: math.unit(75, "kg"),
  2209. name: "Front",
  2210. image: {
  2211. source: "./media/characters/shingo/front.svg",
  2212. extra: 3511 / 3338,
  2213. bottom: 0.005
  2214. }
  2215. },
  2216. },
  2217. [
  2218. {
  2219. name: "Micro",
  2220. height: math.unit(4, "inches")
  2221. },
  2222. {
  2223. name: "Normal",
  2224. height: math.unit(6, "feet"),
  2225. default: true
  2226. },
  2227. {
  2228. name: "Macro",
  2229. height: math.unit(108, "feet")
  2230. }
  2231. ]
  2232. ))
  2233. characterMakers.push(() => makeCharacter(
  2234. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2235. {
  2236. side: {
  2237. height: math.unit(6, "feet"),
  2238. weight: math.unit(75, "kg"),
  2239. name: "Side",
  2240. image: {
  2241. source: "./media/characters/aigey/side.svg"
  2242. }
  2243. },
  2244. },
  2245. [
  2246. {
  2247. name: "Macro",
  2248. height: math.unit(200, "feet"),
  2249. default: true
  2250. },
  2251. {
  2252. name: "Megamacro",
  2253. height: math.unit(100, "miles")
  2254. },
  2255. ]
  2256. )
  2257. )
  2258. characterMakers.push(() => makeCharacter(
  2259. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2260. {
  2261. front: {
  2262. height: math.unit(5 + 5 / 12, "feet"),
  2263. weight: math.unit(75, "kg"),
  2264. name: "Front",
  2265. image: {
  2266. source: "./media/characters/natasha/front.svg",
  2267. extra: 859 / 824,
  2268. bottom: 23 / 879.6
  2269. }
  2270. },
  2271. frontNsfw: {
  2272. height: math.unit(5 + 5 / 12, "feet"),
  2273. weight: math.unit(75, "kg"),
  2274. name: "Front (NSFW)",
  2275. image: {
  2276. source: "./media/characters/natasha/front-nsfw.svg",
  2277. extra: 859 / 824,
  2278. bottom: 23 / 879.6
  2279. }
  2280. },
  2281. frontErect: {
  2282. height: math.unit(5 + 5 / 12, "feet"),
  2283. weight: math.unit(75, "kg"),
  2284. name: "Front (Erect)",
  2285. image: {
  2286. source: "./media/characters/natasha/front-erect.svg",
  2287. extra: 859 / 824,
  2288. bottom: 23 / 879.6
  2289. }
  2290. },
  2291. back: {
  2292. height: math.unit(5 + 5 / 12, "feet"),
  2293. weight: math.unit(75, "kg"),
  2294. name: "Back",
  2295. image: {
  2296. source: "./media/characters/natasha/back.svg",
  2297. extra: 887.9 / 852.6,
  2298. bottom: 9.7 / 896.4
  2299. }
  2300. },
  2301. backAlt: {
  2302. height: math.unit(5 + 5 / 12, "feet"),
  2303. weight: math.unit(75, "kg"),
  2304. name: "Back (Alt)",
  2305. image: {
  2306. source: "./media/characters/natasha/back-alt.svg",
  2307. extra: 1236.7 / 1192,
  2308. bottom: 22.3 / 1258.2
  2309. }
  2310. },
  2311. dick: {
  2312. height: math.unit(1.772, "feet"),
  2313. name: "Dick",
  2314. image: {
  2315. source: "./media/characters/natasha/dick.svg"
  2316. }
  2317. },
  2318. },
  2319. [
  2320. {
  2321. name: "Normal",
  2322. height: math.unit(5 + 5 / 12, "feet")
  2323. },
  2324. {
  2325. name: "Large",
  2326. height: math.unit(12, "feet")
  2327. },
  2328. {
  2329. name: "Macro",
  2330. height: math.unit(100, "feet"),
  2331. default: true
  2332. },
  2333. {
  2334. name: "Macro+",
  2335. height: math.unit(260, "feet")
  2336. },
  2337. {
  2338. name: "Macro++",
  2339. height: math.unit(1, "mile")
  2340. },
  2341. ]
  2342. ))
  2343. characterMakers.push(() => makeCharacter(
  2344. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2345. {
  2346. front: {
  2347. height: math.unit(6, "feet"),
  2348. weight: math.unit(75, "kg"),
  2349. name: "Front",
  2350. image: {
  2351. source: "./media/characters/malik/front.svg"
  2352. }
  2353. },
  2354. side: {
  2355. height: math.unit(6, "feet"),
  2356. weight: math.unit(75, "kg"),
  2357. name: "Side",
  2358. image: {
  2359. source: "./media/characters/malik/side.svg",
  2360. extra: 1.1539
  2361. }
  2362. },
  2363. back: {
  2364. height: math.unit(6, "feet"),
  2365. weight: math.unit(75, "kg"),
  2366. name: "Back",
  2367. image: {
  2368. source: "./media/characters/malik/back.svg"
  2369. }
  2370. },
  2371. },
  2372. [
  2373. {
  2374. name: "Macro",
  2375. height: math.unit(156, "feet"),
  2376. default: true
  2377. },
  2378. {
  2379. name: "Macro+",
  2380. height: math.unit(1188, "feet")
  2381. },
  2382. ]
  2383. ))
  2384. characterMakers.push(() => makeCharacter(
  2385. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2386. {
  2387. front: {
  2388. height: math.unit(6, "feet"),
  2389. weight: math.unit(75, "kg"),
  2390. name: "Front",
  2391. image: {
  2392. source: "./media/characters/sefer/front.svg",
  2393. extra: 848 / 659,
  2394. bottom: 28.3 / 876.442
  2395. }
  2396. },
  2397. back: {
  2398. height: math.unit(6, "feet"),
  2399. weight: math.unit(75, "kg"),
  2400. name: "Back",
  2401. image: {
  2402. source: "./media/characters/sefer/back.svg",
  2403. extra: 864 / 695,
  2404. bottom: 10 / 871
  2405. }
  2406. },
  2407. frontDressed: {
  2408. height: math.unit(6, "feet"),
  2409. weight: math.unit(75, "kg"),
  2410. name: "Front (Dressed)",
  2411. image: {
  2412. source: "./media/characters/sefer/front-dressed.svg",
  2413. extra: 839 / 653,
  2414. bottom: 37.6 / 878
  2415. }
  2416. },
  2417. },
  2418. [
  2419. {
  2420. name: "Normal",
  2421. height: math.unit(6, "feet"),
  2422. default: true
  2423. },
  2424. ]
  2425. ))
  2426. characterMakers.push(() => makeCharacter(
  2427. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2428. {
  2429. body: {
  2430. height: math.unit(2.2428, "meter"),
  2431. weight: math.unit(124.738, "kg"),
  2432. name: "Body",
  2433. image: {
  2434. extra: 1225 / 1050,
  2435. source: "./media/characters/north/front.svg"
  2436. }
  2437. }
  2438. },
  2439. [
  2440. {
  2441. name: "Micro",
  2442. height: math.unit(4, "inches")
  2443. },
  2444. {
  2445. name: "Macro",
  2446. height: math.unit(63, "meters")
  2447. },
  2448. {
  2449. name: "Megamacro",
  2450. height: math.unit(101, "miles"),
  2451. default: true
  2452. }
  2453. ]
  2454. ))
  2455. characterMakers.push(() => makeCharacter(
  2456. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2457. {
  2458. angled: {
  2459. height: math.unit(4, "meter"),
  2460. weight: math.unit(150, "kg"),
  2461. name: "Angled",
  2462. image: {
  2463. source: "./media/characters/talan/angled-sfw.svg",
  2464. bottom: 29 / 3734
  2465. }
  2466. },
  2467. angledNsfw: {
  2468. height: math.unit(4, "meter"),
  2469. weight: math.unit(150, "kg"),
  2470. name: "Angled (NSFW)",
  2471. image: {
  2472. source: "./media/characters/talan/angled-nsfw.svg",
  2473. bottom: 29 / 3734
  2474. }
  2475. },
  2476. frontNsfw: {
  2477. height: math.unit(4, "meter"),
  2478. weight: math.unit(150, "kg"),
  2479. name: "Front (NSFW)",
  2480. image: {
  2481. source: "./media/characters/talan/front-nsfw.svg",
  2482. bottom: 29 / 3734
  2483. }
  2484. },
  2485. sideNsfw: {
  2486. height: math.unit(4, "meter"),
  2487. weight: math.unit(150, "kg"),
  2488. name: "Side (NSFW)",
  2489. image: {
  2490. source: "./media/characters/talan/side-nsfw.svg",
  2491. bottom: 29 / 3734
  2492. }
  2493. },
  2494. back: {
  2495. height: math.unit(4, "meter"),
  2496. weight: math.unit(150, "kg"),
  2497. name: "Back",
  2498. image: {
  2499. source: "./media/characters/talan/back.svg"
  2500. }
  2501. },
  2502. dickBottom: {
  2503. height: math.unit(0.621, "meter"),
  2504. name: "Dick (Bottom)",
  2505. image: {
  2506. source: "./media/characters/talan/dick-bottom.svg"
  2507. }
  2508. },
  2509. dickTop: {
  2510. height: math.unit(0.621, "meter"),
  2511. name: "Dick (Top)",
  2512. image: {
  2513. source: "./media/characters/talan/dick-top.svg"
  2514. }
  2515. },
  2516. dickSide: {
  2517. height: math.unit(0.305, "meter"),
  2518. name: "Dick (Side)",
  2519. image: {
  2520. source: "./media/characters/talan/dick-side.svg"
  2521. }
  2522. },
  2523. dickFront: {
  2524. height: math.unit(0.305, "meter"),
  2525. name: "Dick (Front)",
  2526. image: {
  2527. source: "./media/characters/talan/dick-front.svg"
  2528. }
  2529. },
  2530. },
  2531. [
  2532. {
  2533. name: "Normal",
  2534. height: math.unit(4, "meters")
  2535. },
  2536. {
  2537. name: "Macro",
  2538. height: math.unit(100, "meters")
  2539. },
  2540. {
  2541. name: "Megamacro",
  2542. height: math.unit(2, "miles"),
  2543. default: true
  2544. },
  2545. {
  2546. name: "Gigamacro",
  2547. height: math.unit(5000, "miles")
  2548. },
  2549. {
  2550. name: "Teramacro",
  2551. height: math.unit(100, "parsecs")
  2552. }
  2553. ]
  2554. ))
  2555. characterMakers.push(() => makeCharacter(
  2556. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2557. {
  2558. front: {
  2559. height: math.unit(2, "meter"),
  2560. weight: math.unit(90, "kg"),
  2561. name: "Front",
  2562. image: {
  2563. source: "./media/characters/gael'rathus/front.svg"
  2564. }
  2565. },
  2566. frontAlt: {
  2567. height: math.unit(2, "meter"),
  2568. weight: math.unit(90, "kg"),
  2569. name: "Front (alt)",
  2570. image: {
  2571. source: "./media/characters/gael'rathus/front-alt.svg"
  2572. }
  2573. },
  2574. frontAlt2: {
  2575. height: math.unit(2, "meter"),
  2576. weight: math.unit(90, "kg"),
  2577. name: "Front (alt 2)",
  2578. image: {
  2579. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2580. }
  2581. }
  2582. },
  2583. [
  2584. {
  2585. name: "Normal",
  2586. height: math.unit(9, "feet"),
  2587. default: true
  2588. },
  2589. {
  2590. name: "Large",
  2591. height: math.unit(25, "feet")
  2592. },
  2593. {
  2594. name: "Macro",
  2595. height: math.unit(0.25, "miles")
  2596. },
  2597. {
  2598. name: "Megamacro",
  2599. height: math.unit(10, "miles")
  2600. }
  2601. ]
  2602. ))
  2603. characterMakers.push(() => makeCharacter(
  2604. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2605. {
  2606. side: {
  2607. height: math.unit(2, "meter"),
  2608. weight: math.unit(140, "kg"),
  2609. name: "Side",
  2610. image: {
  2611. source: "./media/characters/sosha/side.svg",
  2612. bottom: 0.042
  2613. }
  2614. },
  2615. },
  2616. [
  2617. {
  2618. name: "Normal",
  2619. height: math.unit(12, "feet"),
  2620. default: true
  2621. }
  2622. ]
  2623. ))
  2624. characterMakers.push(() => makeCharacter(
  2625. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2626. {
  2627. side: {
  2628. height: math.unit(5 + 5 / 12, "feet"),
  2629. weight: math.unit(170, "kg"),
  2630. name: "Side",
  2631. image: {
  2632. source: "./media/characters/runnola/side.svg",
  2633. extra: 741 / 448,
  2634. bottom: 0.05
  2635. }
  2636. },
  2637. },
  2638. [
  2639. {
  2640. name: "Small",
  2641. height: math.unit(3, "feet")
  2642. },
  2643. {
  2644. name: "Normal",
  2645. height: math.unit(5 + 5 / 12, "feet"),
  2646. default: true
  2647. },
  2648. {
  2649. name: "Big",
  2650. height: math.unit(10, "feet")
  2651. },
  2652. ]
  2653. ))
  2654. characterMakers.push(() => makeCharacter(
  2655. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2656. {
  2657. front: {
  2658. height: math.unit(2, "meter"),
  2659. weight: math.unit(50, "kg"),
  2660. name: "Front",
  2661. image: {
  2662. source: "./media/characters/kurribird/front.svg",
  2663. bottom: 0.015
  2664. }
  2665. },
  2666. frontAlt: {
  2667. height: math.unit(1.5, "meter"),
  2668. weight: math.unit(50, "kg"),
  2669. name: "Front (Alt)",
  2670. image: {
  2671. source: "./media/characters/kurribird/front-alt.svg",
  2672. extra: 1.45
  2673. }
  2674. },
  2675. },
  2676. [
  2677. {
  2678. name: "Normal",
  2679. height: math.unit(7, "feet")
  2680. },
  2681. {
  2682. name: "Big",
  2683. height: math.unit(12, "feet"),
  2684. default: true
  2685. },
  2686. {
  2687. name: "Macro",
  2688. height: math.unit(1500, "feet")
  2689. },
  2690. {
  2691. name: "Megamacro",
  2692. height: math.unit(2, "miles")
  2693. }
  2694. ]
  2695. ))
  2696. characterMakers.push(() => makeCharacter(
  2697. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2698. {
  2699. front: {
  2700. height: math.unit(2, "meter"),
  2701. weight: math.unit(80, "kg"),
  2702. name: "Front",
  2703. image: {
  2704. source: "./media/characters/elbial/front.svg",
  2705. extra: 1643 / 1556,
  2706. bottom: 60.2 / 1696
  2707. }
  2708. },
  2709. side: {
  2710. height: math.unit(2, "meter"),
  2711. weight: math.unit(80, "kg"),
  2712. name: "Side",
  2713. image: {
  2714. source: "./media/characters/elbial/side.svg",
  2715. extra: 1630 / 1565,
  2716. bottom: 71.5 / 1697
  2717. }
  2718. },
  2719. back: {
  2720. height: math.unit(2, "meter"),
  2721. weight: math.unit(80, "kg"),
  2722. name: "Back",
  2723. image: {
  2724. source: "./media/characters/elbial/back.svg",
  2725. extra: 1668 / 1595,
  2726. bottom: 5.6 / 1672
  2727. }
  2728. },
  2729. frontDressed: {
  2730. height: math.unit(2, "meter"),
  2731. weight: math.unit(80, "kg"),
  2732. name: "Front (Dressed)",
  2733. image: {
  2734. source: "./media/characters/elbial/front-dressed.svg",
  2735. extra: 1653 / 1584,
  2736. bottom: 57 / 1708
  2737. }
  2738. },
  2739. genitals: {
  2740. height: math.unit(2 / 3.367, "meter"),
  2741. name: "Genitals",
  2742. image: {
  2743. source: "./media/characters/elbial/genitals.svg"
  2744. }
  2745. },
  2746. },
  2747. [
  2748. {
  2749. name: "Large",
  2750. height: math.unit(100, "feet")
  2751. },
  2752. {
  2753. name: "Macro",
  2754. height: math.unit(500, "feet"),
  2755. default: true
  2756. },
  2757. {
  2758. name: "Megamacro",
  2759. height: math.unit(10, "miles")
  2760. },
  2761. {
  2762. name: "Gigamacro",
  2763. height: math.unit(25000, "miles")
  2764. },
  2765. {
  2766. name: "Full-Size",
  2767. height: math.unit(8000000, "gigaparsecs")
  2768. }
  2769. ]
  2770. ))
  2771. characterMakers.push(() => makeCharacter(
  2772. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2773. {
  2774. front: {
  2775. height: math.unit(2, "meter"),
  2776. weight: math.unit(60, "kg"),
  2777. name: "Front",
  2778. image: {
  2779. source: "./media/characters/noah/front.svg"
  2780. }
  2781. },
  2782. talons: {
  2783. height: math.unit(0.315, "meter"),
  2784. name: "Talons",
  2785. image: {
  2786. source: "./media/characters/noah/talons.svg"
  2787. }
  2788. }
  2789. },
  2790. [
  2791. {
  2792. name: "Large",
  2793. height: math.unit(50, "feet")
  2794. },
  2795. {
  2796. name: "Macro",
  2797. height: math.unit(750, "feet"),
  2798. default: true
  2799. },
  2800. {
  2801. name: "Megamacro",
  2802. height: math.unit(50, "miles")
  2803. },
  2804. {
  2805. name: "Gigamacro",
  2806. height: math.unit(100000, "miles")
  2807. },
  2808. {
  2809. name: "Full-Size",
  2810. height: math.unit(3000000000, "miles")
  2811. }
  2812. ]
  2813. ))
  2814. characterMakers.push(() => makeCharacter(
  2815. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2816. {
  2817. front: {
  2818. height: math.unit(2, "meter"),
  2819. weight: math.unit(80, "kg"),
  2820. name: "Front",
  2821. image: {
  2822. source: "./media/characters/natalya/front.svg"
  2823. }
  2824. },
  2825. back: {
  2826. height: math.unit(2, "meter"),
  2827. weight: math.unit(80, "kg"),
  2828. name: "Back",
  2829. image: {
  2830. source: "./media/characters/natalya/back.svg"
  2831. }
  2832. }
  2833. },
  2834. [
  2835. {
  2836. name: "Normal",
  2837. height: math.unit(150, "feet"),
  2838. default: true
  2839. },
  2840. {
  2841. name: "Megamacro",
  2842. height: math.unit(5, "miles")
  2843. },
  2844. {
  2845. name: "Full-Size",
  2846. height: math.unit(600, "kiloparsecs")
  2847. }
  2848. ]
  2849. ))
  2850. characterMakers.push(() => makeCharacter(
  2851. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2852. {
  2853. front: {
  2854. height: math.unit(2, "meter"),
  2855. weight: math.unit(50, "kg"),
  2856. name: "Front",
  2857. image: {
  2858. source: "./media/characters/erestrebah/front.svg",
  2859. extra: 208 / 193,
  2860. bottom: 0.055
  2861. }
  2862. },
  2863. back: {
  2864. height: math.unit(2, "meter"),
  2865. weight: math.unit(50, "kg"),
  2866. name: "Back",
  2867. image: {
  2868. source: "./media/characters/erestrebah/back.svg",
  2869. extra: 1.3
  2870. }
  2871. }
  2872. },
  2873. [
  2874. {
  2875. name: "Normal",
  2876. height: math.unit(10, "feet")
  2877. },
  2878. {
  2879. name: "Large",
  2880. height: math.unit(50, "feet"),
  2881. default: true
  2882. },
  2883. {
  2884. name: "Macro",
  2885. height: math.unit(300, "feet")
  2886. },
  2887. {
  2888. name: "Macro+",
  2889. height: math.unit(750, "feet")
  2890. },
  2891. {
  2892. name: "Megamacro",
  2893. height: math.unit(3, "miles")
  2894. }
  2895. ]
  2896. ))
  2897. characterMakers.push(() => makeCharacter(
  2898. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2899. {
  2900. front: {
  2901. height: math.unit(2, "meter"),
  2902. weight: math.unit(80, "kg"),
  2903. name: "Front",
  2904. image: {
  2905. source: "./media/characters/jennifer/front.svg",
  2906. bottom: 0.11,
  2907. extra: 1.16
  2908. }
  2909. },
  2910. frontAlt: {
  2911. height: math.unit(2, "meter"),
  2912. weight: math.unit(80, "kg"),
  2913. name: "Front (Alt)",
  2914. image: {
  2915. source: "./media/characters/jennifer/front-alt.svg"
  2916. }
  2917. }
  2918. },
  2919. [
  2920. {
  2921. name: "Canon Height",
  2922. height: math.unit(120, "feet"),
  2923. default: true
  2924. },
  2925. {
  2926. name: "Macro+",
  2927. height: math.unit(300, "feet")
  2928. },
  2929. {
  2930. name: "Megamacro",
  2931. height: math.unit(20000, "feet")
  2932. }
  2933. ]
  2934. ))
  2935. characterMakers.push(() => makeCharacter(
  2936. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2937. {
  2938. front: {
  2939. height: math.unit(2, "meter"),
  2940. weight: math.unit(50, "kg"),
  2941. name: "Front",
  2942. image: {
  2943. source: "./media/characters/kalista/front.svg",
  2944. extra: 1947 / 1700,
  2945. bottom: 76.6 / 1412.98
  2946. }
  2947. },
  2948. back: {
  2949. height: math.unit(2, "meter"),
  2950. weight: math.unit(50, "kg"),
  2951. name: "Back",
  2952. image: {
  2953. source: "./media/characters/kalista/back.svg",
  2954. extra: 1366 / 1156,
  2955. bottom: 33.9 / 1362.78
  2956. }
  2957. }
  2958. },
  2959. [
  2960. {
  2961. name: "Uncomfortably Small",
  2962. height: math.unit(10, "feet")
  2963. },
  2964. {
  2965. name: "Small",
  2966. height: math.unit(30, "feet")
  2967. },
  2968. {
  2969. name: "Macro",
  2970. height: math.unit(100, "feet"),
  2971. default: true
  2972. },
  2973. {
  2974. name: "Macro+",
  2975. height: math.unit(2000, "feet")
  2976. },
  2977. {
  2978. name: "True Form",
  2979. height: math.unit(8924, "miles")
  2980. }
  2981. ]
  2982. ))
  2983. characterMakers.push(() => makeCharacter(
  2984. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2985. {
  2986. front: {
  2987. height: math.unit(2, "meter"),
  2988. weight: math.unit(120, "kg"),
  2989. name: "Front",
  2990. image: {
  2991. source: "./media/characters/ggv/front.svg"
  2992. }
  2993. },
  2994. side: {
  2995. height: math.unit(2, "meter"),
  2996. weight: math.unit(120, "kg"),
  2997. name: "Side",
  2998. image: {
  2999. source: "./media/characters/ggv/side.svg"
  3000. }
  3001. }
  3002. },
  3003. [
  3004. {
  3005. name: "Extremely Puny",
  3006. height: math.unit(9 + 5 / 12, "feet")
  3007. },
  3008. {
  3009. name: "Horribly Small",
  3010. height: math.unit(47.7, "miles"),
  3011. default: true
  3012. },
  3013. {
  3014. name: "Reasonably Sized",
  3015. height: math.unit(25000, "parsecs")
  3016. },
  3017. {
  3018. name: "Slightly Uncompressed",
  3019. height: math.unit(7.77e31, "parsecs")
  3020. },
  3021. {
  3022. name: "Omniversal",
  3023. height: math.unit(1e300, "meters")
  3024. },
  3025. ]
  3026. ))
  3027. characterMakers.push(() => makeCharacter(
  3028. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3029. {
  3030. front: {
  3031. height: math.unit(2, "meter"),
  3032. weight: math.unit(75, "lb"),
  3033. name: "Front",
  3034. image: {
  3035. source: "./media/characters/napalm/front.svg"
  3036. }
  3037. },
  3038. back: {
  3039. height: math.unit(2, "meter"),
  3040. weight: math.unit(75, "lb"),
  3041. name: "Back",
  3042. image: {
  3043. source: "./media/characters/napalm/back.svg"
  3044. }
  3045. }
  3046. },
  3047. [
  3048. {
  3049. name: "Standard",
  3050. height: math.unit(55, "feet"),
  3051. default: true
  3052. }
  3053. ]
  3054. ))
  3055. characterMakers.push(() => makeCharacter(
  3056. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3057. {
  3058. front: {
  3059. height: math.unit(7 + 5 / 6, "feet"),
  3060. weight: math.unit(325, "lb"),
  3061. name: "Front",
  3062. image: {
  3063. source: "./media/characters/asana/front.svg",
  3064. extra: 1128 / 1068
  3065. }
  3066. },
  3067. back: {
  3068. height: math.unit(7 + 5 / 6, "feet"),
  3069. weight: math.unit(325, "lb"),
  3070. name: "Back",
  3071. image: {
  3072. source: "./media/characters/asana/back.svg",
  3073. extra: 1128 / 1068
  3074. }
  3075. },
  3076. },
  3077. [
  3078. {
  3079. name: "Standard",
  3080. height: math.unit(7 + 5 / 6, "feet"),
  3081. default: true
  3082. },
  3083. {
  3084. name: "Large",
  3085. height: math.unit(10, "meters")
  3086. },
  3087. {
  3088. name: "Macro",
  3089. height: math.unit(2500, "meters")
  3090. },
  3091. {
  3092. name: "Megamacro",
  3093. height: math.unit(5e6, "meters")
  3094. },
  3095. {
  3096. name: "Examacro",
  3097. height: math.unit(5e12, "lightyears")
  3098. },
  3099. {
  3100. name: "Max Size",
  3101. height: math.unit(1e31, "lightyears")
  3102. }
  3103. ]
  3104. ))
  3105. characterMakers.push(() => makeCharacter(
  3106. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3107. {
  3108. front: {
  3109. height: math.unit(2, "meter"),
  3110. weight: math.unit(60, "kg"),
  3111. name: "Front",
  3112. image: {
  3113. source: "./media/characters/ebony/front.svg",
  3114. bottom: 0.03,
  3115. extra: 1045 / 810 + 0.03
  3116. }
  3117. },
  3118. side: {
  3119. height: math.unit(2, "meter"),
  3120. weight: math.unit(60, "kg"),
  3121. name: "Side",
  3122. image: {
  3123. source: "./media/characters/ebony/side.svg",
  3124. bottom: 0.03,
  3125. extra: 1045 / 810 + 0.03
  3126. }
  3127. },
  3128. back: {
  3129. height: math.unit(2, "meter"),
  3130. weight: math.unit(60, "kg"),
  3131. name: "Back",
  3132. image: {
  3133. source: "./media/characters/ebony/back.svg",
  3134. bottom: 0.01,
  3135. extra: 1045 / 810 + 0.01
  3136. }
  3137. },
  3138. },
  3139. [
  3140. // TODO check why I did this lol
  3141. {
  3142. name: "Standard",
  3143. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3144. default: true
  3145. },
  3146. {
  3147. name: "Macro",
  3148. height: math.unit(200, "feet")
  3149. },
  3150. {
  3151. name: "Gigamacro",
  3152. height: math.unit(13000, "km")
  3153. }
  3154. ]
  3155. ))
  3156. characterMakers.push(() => makeCharacter(
  3157. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3158. {
  3159. front: {
  3160. height: math.unit(6, "feet"),
  3161. weight: math.unit(175, "lb"),
  3162. name: "Front",
  3163. image: {
  3164. source: "./media/characters/mountain/front.svg",
  3165. extra: 972/955,
  3166. bottom: 64/1036.6
  3167. }
  3168. },
  3169. back: {
  3170. height: math.unit(6, "feet"),
  3171. weight: math.unit(175, "lb"),
  3172. name: "Back",
  3173. image: {
  3174. source: "./media/characters/mountain/back.svg",
  3175. extra: 970/950,
  3176. bottom: 28.25/999
  3177. }
  3178. },
  3179. },
  3180. [
  3181. {
  3182. name: "Large",
  3183. height: math.unit(20, "meters")
  3184. },
  3185. {
  3186. name: "Macro",
  3187. height: math.unit(300, "meters")
  3188. },
  3189. {
  3190. name: "Gigamacro",
  3191. height: math.unit(10000, "km"),
  3192. default: true
  3193. },
  3194. {
  3195. name: "Examacro",
  3196. height: math.unit(10e9, "lightyears")
  3197. }
  3198. ]
  3199. ))
  3200. characterMakers.push(() => makeCharacter(
  3201. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3202. {
  3203. front: {
  3204. height: math.unit(8, "feet"),
  3205. weight: math.unit(500, "lb"),
  3206. name: "Front",
  3207. image: {
  3208. source: "./media/characters/rick/front.svg"
  3209. }
  3210. }
  3211. },
  3212. [
  3213. {
  3214. name: "Normal",
  3215. height: math.unit(8, "feet"),
  3216. default: true
  3217. },
  3218. {
  3219. name: "Macro",
  3220. height: math.unit(5, "km")
  3221. }
  3222. ]
  3223. ))
  3224. characterMakers.push(() => makeCharacter(
  3225. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3226. {
  3227. front: {
  3228. height: math.unit(8, "feet"),
  3229. weight: math.unit(120, "lb"),
  3230. name: "Front",
  3231. image: {
  3232. source: "./media/characters/ona/front.svg"
  3233. }
  3234. },
  3235. frontAlt: {
  3236. height: math.unit(8, "feet"),
  3237. weight: math.unit(120, "lb"),
  3238. name: "Front (Alt)",
  3239. image: {
  3240. source: "./media/characters/ona/front-alt.svg"
  3241. }
  3242. },
  3243. back: {
  3244. height: math.unit(8, "feet"),
  3245. weight: math.unit(120, "lb"),
  3246. name: "Back",
  3247. image: {
  3248. source: "./media/characters/ona/back.svg"
  3249. }
  3250. },
  3251. foot: {
  3252. height: math.unit(1.1, "feet"),
  3253. name: "Foot",
  3254. image: {
  3255. source: "./media/characters/ona/foot.svg"
  3256. }
  3257. }
  3258. },
  3259. [
  3260. {
  3261. name: "Megamacro",
  3262. height: math.unit(70, "km"),
  3263. default: true
  3264. },
  3265. {
  3266. name: "Gigamacro",
  3267. height: math.unit(681818, "miles")
  3268. },
  3269. {
  3270. name: "Examacro",
  3271. height: math.unit(3800000, "lightyears")
  3272. },
  3273. ]
  3274. ))
  3275. characterMakers.push(() => makeCharacter(
  3276. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3277. {
  3278. front: {
  3279. height: math.unit(12, "feet"),
  3280. weight: math.unit(3000, "lb"),
  3281. name: "Front",
  3282. image: {
  3283. source: "./media/characters/mech/front.svg",
  3284. bottom: 0.025,
  3285. }
  3286. },
  3287. back: {
  3288. height: math.unit(12, "feet"),
  3289. weight: math.unit(3000, "lb"),
  3290. name: "Back",
  3291. image: {
  3292. source: "./media/characters/mech/back.svg",
  3293. bottom: 0.03,
  3294. }
  3295. }
  3296. },
  3297. [
  3298. {
  3299. name: "Normal",
  3300. height: math.unit(12, "feet")
  3301. },
  3302. {
  3303. name: "Macro",
  3304. height: math.unit(300, "feet"),
  3305. default: true
  3306. },
  3307. {
  3308. name: "Macro+",
  3309. height: math.unit(1500, "feet")
  3310. },
  3311. ]
  3312. ))
  3313. characterMakers.push(() => makeCharacter(
  3314. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3315. {
  3316. front: {
  3317. height: math.unit(1.3, "meter"),
  3318. weight: math.unit(30, "kg"),
  3319. name: "Front",
  3320. image: {
  3321. source: "./media/characters/gregory/front.svg",
  3322. }
  3323. }
  3324. },
  3325. [
  3326. {
  3327. name: "Normal",
  3328. height: math.unit(1.3, "meter"),
  3329. default: true
  3330. },
  3331. {
  3332. name: "Macro",
  3333. height: math.unit(20, "meter")
  3334. }
  3335. ]
  3336. ))
  3337. characterMakers.push(() => makeCharacter(
  3338. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3339. {
  3340. front: {
  3341. height: math.unit(2.8, "meter"),
  3342. weight: math.unit(200, "kg"),
  3343. name: "Front",
  3344. image: {
  3345. source: "./media/characters/elory/front.svg",
  3346. }
  3347. }
  3348. },
  3349. [
  3350. {
  3351. name: "Normal",
  3352. height: math.unit(2.8, "meter"),
  3353. default: true
  3354. },
  3355. {
  3356. name: "Macro",
  3357. height: math.unit(38, "meter")
  3358. }
  3359. ]
  3360. ))
  3361. characterMakers.push(() => makeCharacter(
  3362. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3363. {
  3364. front: {
  3365. height: math.unit(470, "feet"),
  3366. weight: math.unit(924, "tons"),
  3367. name: "Front",
  3368. image: {
  3369. source: "./media/characters/angelpatamon/front.svg",
  3370. }
  3371. }
  3372. },
  3373. [
  3374. {
  3375. name: "Normal",
  3376. height: math.unit(470, "feet"),
  3377. default: true
  3378. },
  3379. {
  3380. name: "Deity Size I",
  3381. height: math.unit(28651.2, "km")
  3382. },
  3383. {
  3384. name: "Deity Size II",
  3385. height: math.unit(171907.2, "km")
  3386. }
  3387. ]
  3388. ))
  3389. characterMakers.push(() => makeCharacter(
  3390. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3391. {
  3392. side: {
  3393. height: math.unit(7.2, "meter"),
  3394. weight: math.unit(8.2, "tons"),
  3395. name: "Side",
  3396. image: {
  3397. source: "./media/characters/cryae/side.svg",
  3398. extra: 3500 / 1500
  3399. }
  3400. }
  3401. },
  3402. [
  3403. {
  3404. name: "Normal",
  3405. height: math.unit(7.2, "meter"),
  3406. default: true
  3407. }
  3408. ]
  3409. ))
  3410. characterMakers.push(() => makeCharacter(
  3411. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3412. {
  3413. front: {
  3414. height: math.unit(6, "feet"),
  3415. weight: math.unit(175, "lb"),
  3416. name: "Front",
  3417. image: {
  3418. source: "./media/characters/xera/front.svg",
  3419. extra: 2300 / 2061
  3420. }
  3421. },
  3422. side: {
  3423. height: math.unit(6, "feet"),
  3424. weight: math.unit(175, "lb"),
  3425. name: "Side",
  3426. image: {
  3427. source: "./media/characters/xera/side.svg",
  3428. extra: 2300 / 2061
  3429. }
  3430. },
  3431. back: {
  3432. height: math.unit(6, "feet"),
  3433. weight: math.unit(175, "lb"),
  3434. name: "Back",
  3435. image: {
  3436. source: "./media/characters/xera/back.svg"
  3437. }
  3438. },
  3439. },
  3440. [
  3441. {
  3442. name: "Small",
  3443. height: math.unit(10, "feet")
  3444. },
  3445. {
  3446. name: "Macro",
  3447. height: math.unit(500, "meters"),
  3448. default: true
  3449. },
  3450. {
  3451. name: "Macro+",
  3452. height: math.unit(10, "km")
  3453. },
  3454. {
  3455. name: "Gigamacro",
  3456. height: math.unit(25000, "km")
  3457. },
  3458. {
  3459. name: "Teramacro",
  3460. height: math.unit(3e6, "km")
  3461. }
  3462. ]
  3463. ))
  3464. characterMakers.push(() => makeCharacter(
  3465. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3466. {
  3467. front: {
  3468. height: math.unit(6, "feet"),
  3469. weight: math.unit(175, "lb"),
  3470. name: "Front",
  3471. image: {
  3472. source: "./media/characters/nebula/front.svg",
  3473. extra: 2600 / 2450
  3474. }
  3475. }
  3476. },
  3477. [
  3478. {
  3479. name: "Small",
  3480. height: math.unit(4.5, "meters")
  3481. },
  3482. {
  3483. name: "Macro",
  3484. height: math.unit(1500, "meters"),
  3485. default: true
  3486. },
  3487. {
  3488. name: "Megamacro",
  3489. height: math.unit(150, "km")
  3490. },
  3491. {
  3492. name: "Gigamacro",
  3493. height: math.unit(27000, "km")
  3494. }
  3495. ]
  3496. ))
  3497. characterMakers.push(() => makeCharacter(
  3498. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3499. {
  3500. front: {
  3501. height: math.unit(6, "feet"),
  3502. weight: math.unit(225, "lb"),
  3503. name: "Front",
  3504. image: {
  3505. source: "./media/characters/abysgar/front.svg"
  3506. }
  3507. }
  3508. },
  3509. [
  3510. {
  3511. name: "Small",
  3512. height: math.unit(4.5, "meters")
  3513. },
  3514. {
  3515. name: "Macro",
  3516. height: math.unit(1250, "meters"),
  3517. default: true
  3518. },
  3519. {
  3520. name: "Megamacro",
  3521. height: math.unit(125, "km")
  3522. },
  3523. {
  3524. name: "Gigamacro",
  3525. height: math.unit(26000, "km")
  3526. }
  3527. ]
  3528. ))
  3529. characterMakers.push(() => makeCharacter(
  3530. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3531. {
  3532. front: {
  3533. height: math.unit(6, "feet"),
  3534. weight: math.unit(180, "lb"),
  3535. name: "Front",
  3536. image: {
  3537. source: "./media/characters/yakuz/front.svg"
  3538. }
  3539. }
  3540. },
  3541. [
  3542. {
  3543. name: "Small",
  3544. height: math.unit(5, "meters")
  3545. },
  3546. {
  3547. name: "Macro",
  3548. height: math.unit(1500, "meters"),
  3549. default: true
  3550. },
  3551. {
  3552. name: "Megamacro",
  3553. height: math.unit(200, "km")
  3554. },
  3555. {
  3556. name: "Gigamacro",
  3557. height: math.unit(100000, "km")
  3558. }
  3559. ]
  3560. ))
  3561. characterMakers.push(() => makeCharacter(
  3562. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3563. {
  3564. front: {
  3565. height: math.unit(6, "feet"),
  3566. weight: math.unit(175, "lb"),
  3567. name: "Front",
  3568. image: {
  3569. source: "./media/characters/mirova/front.svg"
  3570. }
  3571. }
  3572. },
  3573. [
  3574. {
  3575. name: "Small",
  3576. height: math.unit(5, "meters")
  3577. },
  3578. {
  3579. name: "Macro",
  3580. height: math.unit(900, "meters"),
  3581. default: true
  3582. },
  3583. {
  3584. name: "Megamacro",
  3585. height: math.unit(135, "km")
  3586. },
  3587. {
  3588. name: "Gigamacro",
  3589. height: math.unit(20000, "km")
  3590. }
  3591. ]
  3592. ))
  3593. characterMakers.push(() => makeCharacter(
  3594. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3595. {
  3596. side: {
  3597. height: math.unit(28.35, "feet"),
  3598. weight: math.unit(99.75, "tons"),
  3599. name: "Side",
  3600. image: {
  3601. source: "./media/characters/asana-mech/side.svg"
  3602. }
  3603. }
  3604. },
  3605. [
  3606. {
  3607. name: "Normal",
  3608. height: math.unit(28.35, "feet"),
  3609. default: true
  3610. },
  3611. {
  3612. name: "Macro",
  3613. height: math.unit(2500, "feet")
  3614. },
  3615. {
  3616. name: "Megamacro",
  3617. height: math.unit(25, "miles")
  3618. },
  3619. {
  3620. name: "Examacro",
  3621. height: math.unit(6e8, "lightyears")
  3622. },
  3623. ]
  3624. ))
  3625. characterMakers.push(() => makeCharacter(
  3626. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3627. {
  3628. front: {
  3629. height: math.unit(2, "meters"),
  3630. weight: math.unit(70, "kg"),
  3631. name: "Front",
  3632. image: {
  3633. source: "./media/characters/ashtrek/front.svg",
  3634. extra: 560 / 524,
  3635. bottom: 0.01
  3636. }
  3637. },
  3638. frontArmor: {
  3639. height: math.unit(2, "meters"),
  3640. weight: math.unit(76, "kg"),
  3641. name: "Front (Armor)",
  3642. image: {
  3643. source: "./media/characters/ashtrek/front-armor.svg",
  3644. extra: 561 / 527,
  3645. bottom: 0.01
  3646. }
  3647. },
  3648. side: {
  3649. height: math.unit(2, "meters"),
  3650. weight: math.unit(70, "kg"),
  3651. name: "Side",
  3652. image: {
  3653. source: "./media/characters/ashtrek/side.svg",
  3654. extra: 1717 / 1609,
  3655. bottom: 0.005
  3656. }
  3657. },
  3658. back: {
  3659. height: math.unit(2, "meters"),
  3660. weight: math.unit(70, "kg"),
  3661. name: "Back",
  3662. image: {
  3663. source: "./media/characters/ashtrek/back.svg",
  3664. extra: 1570 / 1501
  3665. }
  3666. },
  3667. },
  3668. [
  3669. {
  3670. name: "DEFCON 5",
  3671. height: math.unit(5, "meters")
  3672. },
  3673. {
  3674. name: "DEFCON 4",
  3675. height: math.unit(500, "meters"),
  3676. default: true
  3677. },
  3678. {
  3679. name: "DEFCON 3",
  3680. height: math.unit(5, "km")
  3681. },
  3682. {
  3683. name: "DEFCON 2",
  3684. height: math.unit(500, "km")
  3685. },
  3686. {
  3687. name: "DEFCON 1",
  3688. height: math.unit(500000, "km")
  3689. },
  3690. {
  3691. name: "DEFCON 0",
  3692. height: math.unit(3, "gigaparsecs")
  3693. },
  3694. ]
  3695. ))
  3696. characterMakers.push(() => makeCharacter(
  3697. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3698. {
  3699. front: {
  3700. height: math.unit(2, "meters"),
  3701. weight: math.unit(76, "kg"),
  3702. name: "Front",
  3703. image: {
  3704. source: "./media/characters/gale/front.svg"
  3705. }
  3706. },
  3707. frontAlt1: {
  3708. height: math.unit(2, "meters"),
  3709. weight: math.unit(76, "kg"),
  3710. name: "Front (Alt 1)",
  3711. image: {
  3712. source: "./media/characters/gale/front-alt-1.svg"
  3713. }
  3714. },
  3715. frontAlt2: {
  3716. height: math.unit(2, "meters"),
  3717. weight: math.unit(76, "kg"),
  3718. name: "Front (Alt 2)",
  3719. image: {
  3720. source: "./media/characters/gale/front-alt-2.svg"
  3721. }
  3722. },
  3723. },
  3724. [
  3725. {
  3726. name: "Normal",
  3727. height: math.unit(7, "feet")
  3728. },
  3729. {
  3730. name: "Macro",
  3731. height: math.unit(150, "feet"),
  3732. default: true
  3733. },
  3734. {
  3735. name: "Macro+",
  3736. height: math.unit(300, "feet")
  3737. },
  3738. ]
  3739. ))
  3740. characterMakers.push(() => makeCharacter(
  3741. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3742. {
  3743. front: {
  3744. height: math.unit(2, "meters"),
  3745. weight: math.unit(76, "kg"),
  3746. name: "Front",
  3747. image: {
  3748. source: "./media/characters/draylen/front.svg"
  3749. }
  3750. }
  3751. },
  3752. [
  3753. {
  3754. name: "Macro",
  3755. height: math.unit(150, "feet"),
  3756. default: true
  3757. }
  3758. ]
  3759. ))
  3760. characterMakers.push(() => makeCharacter(
  3761. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3762. {
  3763. front: {
  3764. height: math.unit(7 + 9 / 12, "feet"),
  3765. weight: math.unit(379, "lbs"),
  3766. name: "Front",
  3767. image: {
  3768. source: "./media/characters/chez/front.svg"
  3769. }
  3770. },
  3771. side: {
  3772. height: math.unit(7 + 9 / 12, "feet"),
  3773. weight: math.unit(379, "lbs"),
  3774. name: "Side",
  3775. image: {
  3776. source: "./media/characters/chez/side.svg"
  3777. }
  3778. }
  3779. },
  3780. [
  3781. {
  3782. name: "Normal",
  3783. height: math.unit(7 + 9 / 12, "feet"),
  3784. default: true
  3785. },
  3786. {
  3787. name: "God King",
  3788. height: math.unit(9750000, "meters")
  3789. }
  3790. ]
  3791. ))
  3792. characterMakers.push(() => makeCharacter(
  3793. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3794. {
  3795. front: {
  3796. height: math.unit(6, "feet"),
  3797. weight: math.unit(275, "lbs"),
  3798. name: "Front",
  3799. image: {
  3800. source: "./media/characters/kaylum/front.svg",
  3801. bottom: 0.01,
  3802. extra: 1166 / 1031
  3803. }
  3804. },
  3805. frontWingless: {
  3806. height: math.unit(6, "feet"),
  3807. weight: math.unit(275, "lbs"),
  3808. name: "Front (Wingless)",
  3809. image: {
  3810. source: "./media/characters/kaylum/front-wingless.svg",
  3811. bottom: 0.01,
  3812. extra: 1117 / 1031
  3813. }
  3814. }
  3815. },
  3816. [
  3817. {
  3818. name: "Normal",
  3819. height: math.unit(3.05, "meters")
  3820. },
  3821. {
  3822. name: "Master",
  3823. height: math.unit(5.5, "meters")
  3824. },
  3825. {
  3826. name: "Rampage",
  3827. height: math.unit(19, "meters")
  3828. },
  3829. {
  3830. name: "Macro Lite",
  3831. height: math.unit(37, "meters")
  3832. },
  3833. {
  3834. name: "Hyper Predator",
  3835. height: math.unit(61, "meters")
  3836. },
  3837. {
  3838. name: "Macro",
  3839. height: math.unit(138, "meters"),
  3840. default: true
  3841. }
  3842. ]
  3843. ))
  3844. characterMakers.push(() => makeCharacter(
  3845. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3846. {
  3847. front: {
  3848. height: math.unit(6, "feet"),
  3849. weight: math.unit(150, "lbs"),
  3850. name: "Front",
  3851. image: {
  3852. source: "./media/characters/geta/front.svg"
  3853. }
  3854. }
  3855. },
  3856. [
  3857. {
  3858. name: "Micro",
  3859. height: math.unit(3, "inches"),
  3860. default: true
  3861. },
  3862. {
  3863. name: "Normal",
  3864. height: math.unit(5 + 5 / 12, "feet")
  3865. }
  3866. ]
  3867. ))
  3868. characterMakers.push(() => makeCharacter(
  3869. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3870. {
  3871. front: {
  3872. height: math.unit(6, "feet"),
  3873. weight: math.unit(300, "lbs"),
  3874. name: "Front",
  3875. image: {
  3876. source: "./media/characters/tyrnn/front.svg"
  3877. }
  3878. }
  3879. },
  3880. [
  3881. {
  3882. name: "Main Height",
  3883. height: math.unit(355, "feet"),
  3884. default: true
  3885. },
  3886. {
  3887. name: "Fave. Height",
  3888. height: math.unit(2400, "feet")
  3889. }
  3890. ]
  3891. ))
  3892. characterMakers.push(() => makeCharacter(
  3893. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3894. {
  3895. front: {
  3896. height: math.unit(6, "feet"),
  3897. weight: math.unit(300, "lbs"),
  3898. name: "Front",
  3899. image: {
  3900. source: "./media/characters/appledectomy/front.svg"
  3901. }
  3902. }
  3903. },
  3904. [
  3905. {
  3906. name: "Macro",
  3907. height: math.unit(2500, "feet")
  3908. },
  3909. {
  3910. name: "Megamacro",
  3911. height: math.unit(50, "miles"),
  3912. default: true
  3913. },
  3914. {
  3915. name: "Gigamacro",
  3916. height: math.unit(5000, "miles")
  3917. },
  3918. {
  3919. name: "Teramacro",
  3920. height: math.unit(250000, "miles")
  3921. },
  3922. ]
  3923. ))
  3924. characterMakers.push(() => makeCharacter(
  3925. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3926. {
  3927. front: {
  3928. height: math.unit(6, "feet"),
  3929. weight: math.unit(200, "lbs"),
  3930. name: "Front",
  3931. image: {
  3932. source: "./media/characters/vulpes/front.svg",
  3933. extra: 573 / 543,
  3934. bottom: 0.033
  3935. }
  3936. },
  3937. side: {
  3938. height: math.unit(6, "feet"),
  3939. weight: math.unit(200, "lbs"),
  3940. name: "Side",
  3941. image: {
  3942. source: "./media/characters/vulpes/side.svg",
  3943. extra: 573 / 543,
  3944. bottom: 0.01
  3945. }
  3946. },
  3947. back: {
  3948. height: math.unit(6, "feet"),
  3949. weight: math.unit(200, "lbs"),
  3950. name: "Back",
  3951. image: {
  3952. source: "./media/characters/vulpes/back.svg",
  3953. extra: 573 / 543,
  3954. }
  3955. },
  3956. feet: {
  3957. height: math.unit(1.276, "feet"),
  3958. name: "Feet",
  3959. image: {
  3960. source: "./media/characters/vulpes/feet.svg"
  3961. }
  3962. },
  3963. maw: {
  3964. height: math.unit(1.18, "feet"),
  3965. name: "Maw",
  3966. image: {
  3967. source: "./media/characters/vulpes/maw.svg"
  3968. }
  3969. },
  3970. },
  3971. [
  3972. {
  3973. name: "Micro",
  3974. height: math.unit(2, "inches")
  3975. },
  3976. {
  3977. name: "Normal",
  3978. height: math.unit(6.3, "feet")
  3979. },
  3980. {
  3981. name: "Macro",
  3982. height: math.unit(850, "feet")
  3983. },
  3984. {
  3985. name: "Megamacro",
  3986. height: math.unit(7500, "feet"),
  3987. default: true
  3988. },
  3989. {
  3990. name: "Gigamacro",
  3991. height: math.unit(570000, "miles")
  3992. }
  3993. ]
  3994. ))
  3995. characterMakers.push(() => makeCharacter(
  3996. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  3997. {
  3998. front: {
  3999. height: math.unit(6, "feet"),
  4000. weight: math.unit(210, "lbs"),
  4001. name: "Front",
  4002. image: {
  4003. source: "./media/characters/rain-fallen/front.svg"
  4004. }
  4005. },
  4006. side: {
  4007. height: math.unit(6, "feet"),
  4008. weight: math.unit(210, "lbs"),
  4009. name: "Side",
  4010. image: {
  4011. source: "./media/characters/rain-fallen/side.svg"
  4012. }
  4013. },
  4014. back: {
  4015. height: math.unit(6, "feet"),
  4016. weight: math.unit(210, "lbs"),
  4017. name: "Back",
  4018. image: {
  4019. source: "./media/characters/rain-fallen/back.svg"
  4020. }
  4021. },
  4022. feral: {
  4023. height: math.unit(9, "feet"),
  4024. weight: math.unit(700, "lbs"),
  4025. name: "Feral",
  4026. image: {
  4027. source: "./media/characters/rain-fallen/feral.svg"
  4028. }
  4029. },
  4030. },
  4031. [
  4032. {
  4033. name: "Normal",
  4034. height: math.unit(5, "meter")
  4035. },
  4036. {
  4037. name: "Macro",
  4038. height: math.unit(150, "meter"),
  4039. default: true
  4040. },
  4041. {
  4042. name: "Megamacro",
  4043. height: math.unit(278e6, "meter")
  4044. },
  4045. {
  4046. name: "Gigamacro",
  4047. height: math.unit(2e9, "meter")
  4048. },
  4049. {
  4050. name: "Teramacro",
  4051. height: math.unit(8e12, "meter")
  4052. },
  4053. {
  4054. name: "Devourer",
  4055. height: math.unit(14, "zettameters")
  4056. },
  4057. {
  4058. name: "Scarlet King",
  4059. height: math.unit(18, "yottameters")
  4060. },
  4061. {
  4062. name: "Void",
  4063. height: math.unit(6.66e66, "yottameters")
  4064. }
  4065. ]
  4066. ))
  4067. characterMakers.push(() => makeCharacter(
  4068. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4069. {
  4070. standing: {
  4071. height: math.unit(6, "feet"),
  4072. weight: math.unit(180, "lbs"),
  4073. name: "Standing",
  4074. image: {
  4075. source: "./media/characters/zaakira/standing.svg"
  4076. }
  4077. },
  4078. laying: {
  4079. height: math.unit(3, "feet"),
  4080. weight: math.unit(180, "lbs"),
  4081. name: "Laying",
  4082. image: {
  4083. source: "./media/characters/zaakira/laying.svg"
  4084. }
  4085. },
  4086. },
  4087. [
  4088. {
  4089. name: "Normal",
  4090. height: math.unit(12, "feet")
  4091. },
  4092. {
  4093. name: "Macro",
  4094. height: math.unit(279, "feet"),
  4095. default: true
  4096. }
  4097. ]
  4098. ))
  4099. characterMakers.push(() => makeCharacter(
  4100. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4101. {
  4102. front: {
  4103. height: math.unit(6, "feet"),
  4104. weight: math.unit(250, "lbs"),
  4105. name: "Front",
  4106. image: {
  4107. source: "./media/characters/sigvald/front.svg",
  4108. extra: 1000 / 850
  4109. }
  4110. },
  4111. back: {
  4112. height: math.unit(6, "feet"),
  4113. weight: math.unit(250, "lbs"),
  4114. name: "Back",
  4115. image: {
  4116. source: "./media/characters/sigvald/back.svg"
  4117. }
  4118. },
  4119. },
  4120. [
  4121. {
  4122. name: "Normal",
  4123. height: math.unit(8, "feet")
  4124. },
  4125. {
  4126. name: "Large",
  4127. height: math.unit(12, "feet")
  4128. },
  4129. {
  4130. name: "Larger",
  4131. height: math.unit(20, "feet")
  4132. },
  4133. {
  4134. name: "Macro",
  4135. height: math.unit(150, "feet")
  4136. },
  4137. {
  4138. name: "Macro+",
  4139. height: math.unit(200, "feet"),
  4140. default: true
  4141. },
  4142. ]
  4143. ))
  4144. characterMakers.push(() => makeCharacter(
  4145. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4146. {
  4147. side: {
  4148. height: math.unit(12, "feet"),
  4149. weight: math.unit(2000, "kg"),
  4150. name: "Side",
  4151. image: {
  4152. source: "./media/characters/scott/side.svg",
  4153. extra: 754 / 724,
  4154. bottom: 0.069
  4155. }
  4156. },
  4157. upright: {
  4158. height: math.unit(12, "feet"),
  4159. weight: math.unit(2000, "kg"),
  4160. name: "Upright",
  4161. image: {
  4162. source: "./media/characters/scott/upright.svg",
  4163. extra: 3881 / 3722,
  4164. bottom: 0.05
  4165. }
  4166. },
  4167. },
  4168. [
  4169. {
  4170. name: "Normal",
  4171. height: math.unit(12, "feet"),
  4172. default: true
  4173. },
  4174. ]
  4175. ))
  4176. characterMakers.push(() => makeCharacter(
  4177. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4178. {
  4179. side: {
  4180. height: math.unit(8, "meters"),
  4181. weight: math.unit(84755, "lbs"),
  4182. name: "Side",
  4183. image: {
  4184. source: "./media/characters/tobias/side.svg",
  4185. extra: 1474 / 1096,
  4186. bottom: 38.9 / 1513.1235
  4187. }
  4188. },
  4189. },
  4190. [
  4191. {
  4192. name: "Normal",
  4193. height: math.unit(8, "meters"),
  4194. default: true
  4195. },
  4196. ]
  4197. ))
  4198. characterMakers.push(() => makeCharacter(
  4199. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4200. {
  4201. front: {
  4202. height: math.unit(5.5, "feet"),
  4203. weight: math.unit(400, "lbs"),
  4204. name: "Front",
  4205. image: {
  4206. source: "./media/characters/kieran/front.svg",
  4207. extra: 2694 / 2364,
  4208. bottom: 217 / 2908
  4209. }
  4210. },
  4211. side: {
  4212. height: math.unit(5.5, "feet"),
  4213. weight: math.unit(400, "lbs"),
  4214. name: "Side",
  4215. image: {
  4216. source: "./media/characters/kieran/side.svg",
  4217. extra: 875 / 777,
  4218. bottom: 84.6 / 959
  4219. }
  4220. },
  4221. },
  4222. [
  4223. {
  4224. name: "Normal",
  4225. height: math.unit(5.5, "feet"),
  4226. default: true
  4227. },
  4228. ]
  4229. ))
  4230. characterMakers.push(() => makeCharacter(
  4231. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4232. {
  4233. side: {
  4234. height: math.unit(2, "meters"),
  4235. weight: math.unit(70, "kg"),
  4236. name: "Side",
  4237. image: {
  4238. source: "./media/characters/sanya/side.svg",
  4239. bottom: 0.02,
  4240. extra: 1.02
  4241. }
  4242. },
  4243. },
  4244. [
  4245. {
  4246. name: "Small",
  4247. height: math.unit(2, "meters")
  4248. },
  4249. {
  4250. name: "Normal",
  4251. height: math.unit(3, "meters")
  4252. },
  4253. {
  4254. name: "Macro",
  4255. height: math.unit(16, "meters"),
  4256. default: true
  4257. },
  4258. ]
  4259. ))
  4260. characterMakers.push(() => makeCharacter(
  4261. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4262. {
  4263. front: {
  4264. height: math.unit(2, "meters"),
  4265. weight: math.unit(120, "kg"),
  4266. name: "Front",
  4267. image: {
  4268. source: "./media/characters/miranda/front.svg",
  4269. extra: 195/185,
  4270. bottom: 10.9/206.5
  4271. }
  4272. },
  4273. back: {
  4274. height: math.unit(2, "meters"),
  4275. weight: math.unit(120, "kg"),
  4276. name: "Back",
  4277. image: {
  4278. source: "./media/characters/miranda/back.svg",
  4279. extra: 201/193,
  4280. bottom: 2.3/203.7
  4281. }
  4282. },
  4283. },
  4284. [
  4285. {
  4286. name: "Normal",
  4287. height: math.unit(10, "feet"),
  4288. default: true
  4289. }
  4290. ]
  4291. ))
  4292. characterMakers.push(() => makeCharacter(
  4293. { name: "James", species: ["deer"], tags: ["anthro"] },
  4294. {
  4295. side: {
  4296. height: math.unit(2, "meters"),
  4297. weight: math.unit(100, "kg"),
  4298. name: "Front",
  4299. image: {
  4300. source: "./media/characters/james/front.svg",
  4301. extra: 10 / 8.5
  4302. }
  4303. },
  4304. },
  4305. [
  4306. {
  4307. name: "Normal",
  4308. height: math.unit(8.5, "feet"),
  4309. default: true
  4310. }
  4311. ]
  4312. ))
  4313. characterMakers.push(() => makeCharacter(
  4314. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4315. {
  4316. side: {
  4317. height: math.unit(9.5, "feet"),
  4318. weight: math.unit(2500, "lbs"),
  4319. name: "Side",
  4320. image: {
  4321. source: "./media/characters/heather/side.svg"
  4322. }
  4323. },
  4324. },
  4325. [
  4326. {
  4327. name: "Normal",
  4328. height: math.unit(9.5, "feet"),
  4329. default: true
  4330. }
  4331. ]
  4332. ))
  4333. characterMakers.push(() => makeCharacter(
  4334. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4335. {
  4336. side: {
  4337. height: math.unit(6.5, "feet"),
  4338. weight: math.unit(400, "lbs"),
  4339. name: "Side",
  4340. image: {
  4341. source: "./media/characters/lukas/side.svg",
  4342. extra: 7.25 / 6.5
  4343. }
  4344. },
  4345. },
  4346. [
  4347. {
  4348. name: "Normal",
  4349. height: math.unit(6.5, "feet"),
  4350. default: true
  4351. }
  4352. ]
  4353. ))
  4354. characterMakers.push(() => makeCharacter(
  4355. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4356. {
  4357. side: {
  4358. height: math.unit(5, "feet"),
  4359. weight: math.unit(3000, "lbs"),
  4360. name: "Side",
  4361. image: {
  4362. source: "./media/characters/louise/side.svg"
  4363. }
  4364. },
  4365. },
  4366. [
  4367. {
  4368. name: "Normal",
  4369. height: math.unit(5, "feet"),
  4370. default: true
  4371. }
  4372. ]
  4373. ))
  4374. characterMakers.push(() => makeCharacter(
  4375. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4376. {
  4377. side: {
  4378. height: math.unit(6, "feet"),
  4379. weight: math.unit(150, "lbs"),
  4380. name: "Side",
  4381. image: {
  4382. source: "./media/characters/ramona/side.svg"
  4383. }
  4384. },
  4385. },
  4386. [
  4387. {
  4388. name: "Normal",
  4389. height: math.unit(5.3, "meters"),
  4390. default: true
  4391. },
  4392. {
  4393. name: "Macro",
  4394. height: math.unit(20, "stories")
  4395. },
  4396. {
  4397. name: "Macro+",
  4398. height: math.unit(50, "stories")
  4399. },
  4400. ]
  4401. ))
  4402. characterMakers.push(() => makeCharacter(
  4403. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4404. {
  4405. standing: {
  4406. height: math.unit(5.75, "feet"),
  4407. weight: math.unit(160, "lbs"),
  4408. name: "Standing",
  4409. image: {
  4410. source: "./media/characters/deerpuff/standing.svg",
  4411. extra: 682 / 624
  4412. }
  4413. },
  4414. sitting: {
  4415. height: math.unit(5.75 / 1.79, "feet"),
  4416. weight: math.unit(160, "lbs"),
  4417. name: "Sitting",
  4418. image: {
  4419. source: "./media/characters/deerpuff/sitting.svg",
  4420. bottom: 44 / 400,
  4421. extra: 1
  4422. }
  4423. },
  4424. taurLaying: {
  4425. height: math.unit(6, "feet"),
  4426. weight: math.unit(400, "lbs"),
  4427. name: "Taur (Laying)",
  4428. image: {
  4429. source: "./media/characters/deerpuff/taur-laying.svg"
  4430. }
  4431. },
  4432. },
  4433. [
  4434. {
  4435. name: "Puffball",
  4436. height: math.unit(6, "inches")
  4437. },
  4438. {
  4439. name: "Normalpuff",
  4440. height: math.unit(5.75, "feet")
  4441. },
  4442. {
  4443. name: "Macropuff",
  4444. height: math.unit(1500, "feet"),
  4445. default: true
  4446. },
  4447. {
  4448. name: "Megapuff",
  4449. height: math.unit(500, "miles")
  4450. },
  4451. {
  4452. name: "Gigapuff",
  4453. height: math.unit(250000, "miles")
  4454. },
  4455. {
  4456. name: "Omegapuff",
  4457. height: math.unit(1000, "lightyears")
  4458. },
  4459. ]
  4460. ))
  4461. characterMakers.push(() => makeCharacter(
  4462. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4463. {
  4464. stomping: {
  4465. height: math.unit(6, "feet"),
  4466. weight: math.unit(170, "lbs"),
  4467. name: "Stomping",
  4468. image: {
  4469. source: "./media/characters/vivian/stomping.svg"
  4470. }
  4471. },
  4472. sitting: {
  4473. height: math.unit(6 / 1.75, "feet"),
  4474. weight: math.unit(170, "lbs"),
  4475. name: "Sitting",
  4476. image: {
  4477. source: "./media/characters/vivian/sitting.svg",
  4478. bottom: 1 / 6.4,
  4479. extra: 1,
  4480. }
  4481. },
  4482. },
  4483. [
  4484. {
  4485. name: "Normal",
  4486. height: math.unit(7, "feet"),
  4487. default: true
  4488. },
  4489. {
  4490. name: "Macro",
  4491. height: math.unit(10, "stories")
  4492. },
  4493. {
  4494. name: "Macro+",
  4495. height: math.unit(30, "stories")
  4496. },
  4497. {
  4498. name: "Megamacro",
  4499. height: math.unit(10, "miles")
  4500. },
  4501. {
  4502. name: "Megamacro+",
  4503. height: math.unit(2750000, "meters")
  4504. },
  4505. ]
  4506. ))
  4507. characterMakers.push(() => makeCharacter(
  4508. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4509. {
  4510. front: {
  4511. height: math.unit(6, "feet"),
  4512. weight: math.unit(160, "lbs"),
  4513. name: "Front",
  4514. image: {
  4515. source: "./media/characters/prince/front.svg",
  4516. extra: 3400 / 3000
  4517. }
  4518. },
  4519. jumping: {
  4520. height: math.unit(6, "feet"),
  4521. weight: math.unit(160, "lbs"),
  4522. name: "Jumping",
  4523. image: {
  4524. source: "./media/characters/prince/jump.svg",
  4525. extra: 2555 / 2134
  4526. }
  4527. },
  4528. },
  4529. [
  4530. {
  4531. name: "Normal",
  4532. height: math.unit(7.75, "feet"),
  4533. default: true
  4534. },
  4535. {
  4536. name: "Not cute",
  4537. height: math.unit(17, "feet")
  4538. },
  4539. {
  4540. name: "I said NOT",
  4541. height: math.unit(91, "feet")
  4542. },
  4543. {
  4544. name: "Please stop",
  4545. height: math.unit(560, "feet")
  4546. },
  4547. {
  4548. name: "What have you done",
  4549. height: math.unit(2200, "feet")
  4550. },
  4551. {
  4552. name: "Deer God",
  4553. height: math.unit(3.6, "miles")
  4554. },
  4555. ]
  4556. ))
  4557. characterMakers.push(() => makeCharacter(
  4558. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4559. {
  4560. standing: {
  4561. height: math.unit(6, "feet"),
  4562. weight: math.unit(300, "lbs"),
  4563. name: "Standing",
  4564. image: {
  4565. source: "./media/characters/psymon/standing.svg",
  4566. extra: 1888 / 1810,
  4567. bottom: 0.05
  4568. }
  4569. },
  4570. slithering: {
  4571. height: math.unit(6, "feet"),
  4572. weight: math.unit(300, "lbs"),
  4573. name: "Slithering",
  4574. image: {
  4575. source: "./media/characters/psymon/slithering.svg",
  4576. extra: 1330 / 1224
  4577. }
  4578. },
  4579. slitheringAlt: {
  4580. height: math.unit(6, "feet"),
  4581. weight: math.unit(300, "lbs"),
  4582. name: "Slithering (Alt)",
  4583. image: {
  4584. source: "./media/characters/psymon/slithering-alt.svg",
  4585. extra: 1330 / 1224
  4586. }
  4587. },
  4588. },
  4589. [
  4590. {
  4591. name: "Normal",
  4592. height: math.unit(11.25, "feet"),
  4593. default: true
  4594. },
  4595. {
  4596. name: "Large",
  4597. height: math.unit(27, "feet")
  4598. },
  4599. {
  4600. name: "Giant",
  4601. height: math.unit(87, "feet")
  4602. },
  4603. {
  4604. name: "Macro",
  4605. height: math.unit(365, "feet")
  4606. },
  4607. {
  4608. name: "Megamacro",
  4609. height: math.unit(3, "miles")
  4610. },
  4611. {
  4612. name: "World Serpent",
  4613. height: math.unit(8000, "miles")
  4614. },
  4615. ]
  4616. ))
  4617. characterMakers.push(() => makeCharacter(
  4618. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4619. {
  4620. front: {
  4621. height: math.unit(6, "feet"),
  4622. weight: math.unit(180, "lbs"),
  4623. name: "Front",
  4624. image: {
  4625. source: "./media/characters/daimos/front.svg",
  4626. extra: 4160 / 3897,
  4627. bottom: 0.021
  4628. }
  4629. }
  4630. },
  4631. [
  4632. {
  4633. name: "Normal",
  4634. height: math.unit(8, "feet"),
  4635. default: true
  4636. },
  4637. {
  4638. name: "Big Dog",
  4639. height: math.unit(22, "feet")
  4640. },
  4641. {
  4642. name: "Macro",
  4643. height: math.unit(127, "feet")
  4644. },
  4645. {
  4646. name: "Megamacro",
  4647. height: math.unit(3600, "feet")
  4648. },
  4649. ]
  4650. ))
  4651. characterMakers.push(() => makeCharacter(
  4652. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4653. {
  4654. side: {
  4655. height: math.unit(6, "feet"),
  4656. weight: math.unit(180, "lbs"),
  4657. name: "Side",
  4658. image: {
  4659. source: "./media/characters/blake/side.svg",
  4660. extra: 1212 / 1120,
  4661. bottom: 0.05
  4662. }
  4663. },
  4664. crouched: {
  4665. height: math.unit(6 * 0.57, "feet"),
  4666. weight: math.unit(180, "lbs"),
  4667. name: "Crouched",
  4668. image: {
  4669. source: "./media/characters/blake/crouched.svg",
  4670. extra: 840 / 587,
  4671. bottom: 0.04
  4672. }
  4673. },
  4674. bent: {
  4675. height: math.unit(6 * 0.75, "feet"),
  4676. weight: math.unit(180, "lbs"),
  4677. name: "Bent",
  4678. image: {
  4679. source: "./media/characters/blake/bent.svg",
  4680. extra: 592 / 544,
  4681. bottom: 0.035
  4682. }
  4683. },
  4684. },
  4685. [
  4686. {
  4687. name: "Normal",
  4688. height: math.unit(8 + 1 / 6, "feet"),
  4689. default: true
  4690. },
  4691. {
  4692. name: "Big Backside",
  4693. height: math.unit(37, "feet")
  4694. },
  4695. {
  4696. name: "Subway Shredder",
  4697. height: math.unit(72, "feet")
  4698. },
  4699. {
  4700. name: "City Carver",
  4701. height: math.unit(1675, "feet")
  4702. },
  4703. {
  4704. name: "Tectonic Tweaker",
  4705. height: math.unit(2300, "miles")
  4706. },
  4707. ]
  4708. ))
  4709. characterMakers.push(() => makeCharacter(
  4710. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4711. {
  4712. front: {
  4713. height: math.unit(6, "feet"),
  4714. weight: math.unit(180, "lbs"),
  4715. name: "Front",
  4716. image: {
  4717. source: "./media/characters/guisetto/front.svg",
  4718. extra: 856 / 817,
  4719. bottom: 0.06
  4720. }
  4721. },
  4722. airborne: {
  4723. height: math.unit(6, "feet"),
  4724. weight: math.unit(180, "lbs"),
  4725. name: "Airborne",
  4726. image: {
  4727. source: "./media/characters/guisetto/airborne.svg",
  4728. extra: 584 / 525
  4729. }
  4730. },
  4731. },
  4732. [
  4733. {
  4734. name: "Normal",
  4735. height: math.unit(10 + 11 / 12, "feet"),
  4736. default: true
  4737. },
  4738. {
  4739. name: "Large",
  4740. height: math.unit(35, "feet")
  4741. },
  4742. {
  4743. name: "Macro",
  4744. height: math.unit(475, "feet")
  4745. },
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4750. {
  4751. front: {
  4752. height: math.unit(6, "feet"),
  4753. weight: math.unit(180, "lbs"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/luxor/front.svg",
  4757. extra: 2940 / 2152
  4758. }
  4759. },
  4760. back: {
  4761. height: math.unit(6, "feet"),
  4762. weight: math.unit(180, "lbs"),
  4763. name: "Back",
  4764. image: {
  4765. source: "./media/characters/luxor/back.svg",
  4766. extra: 1083 / 960
  4767. }
  4768. },
  4769. },
  4770. [
  4771. {
  4772. name: "Normal",
  4773. height: math.unit(5 + 5 / 6, "feet"),
  4774. default: true
  4775. },
  4776. {
  4777. name: "Lamp",
  4778. height: math.unit(50, "feet")
  4779. },
  4780. {
  4781. name: "Lämp",
  4782. height: math.unit(300, "feet")
  4783. },
  4784. {
  4785. name: "The sun is a lamp",
  4786. height: math.unit(250000, "miles")
  4787. },
  4788. ]
  4789. ))
  4790. characterMakers.push(() => makeCharacter(
  4791. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4792. {
  4793. front: {
  4794. height: math.unit(6, "feet"),
  4795. weight: math.unit(50, "lbs"),
  4796. name: "Front",
  4797. image: {
  4798. source: "./media/characters/huoyan/front.svg"
  4799. }
  4800. },
  4801. side: {
  4802. height: math.unit(6, "feet"),
  4803. weight: math.unit(180, "lbs"),
  4804. name: "Side",
  4805. image: {
  4806. source: "./media/characters/huoyan/side.svg"
  4807. }
  4808. },
  4809. },
  4810. [
  4811. {
  4812. name: "Chef",
  4813. height: math.unit(9, "feet")
  4814. },
  4815. {
  4816. name: "Normal",
  4817. height: math.unit(65, "feet"),
  4818. default: true
  4819. },
  4820. {
  4821. name: "Macro",
  4822. height: math.unit(780, "feet")
  4823. },
  4824. {
  4825. name: "Flaming Mountain",
  4826. height: math.unit(4.8, "miles")
  4827. },
  4828. {
  4829. name: "Celestial",
  4830. height: math.unit(765000, "miles")
  4831. },
  4832. ]
  4833. ))
  4834. characterMakers.push(() => makeCharacter(
  4835. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4836. {
  4837. front: {
  4838. height: math.unit(5 + 3 / 4, "feet"),
  4839. weight: math.unit(120, "lbs"),
  4840. name: "Front",
  4841. image: {
  4842. source: "./media/characters/tails/front.svg"
  4843. }
  4844. }
  4845. },
  4846. [
  4847. {
  4848. name: "Normal",
  4849. height: math.unit(5 + 3 / 4, "feet"),
  4850. default: true
  4851. }
  4852. ]
  4853. ))
  4854. characterMakers.push(() => makeCharacter(
  4855. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4856. {
  4857. front: {
  4858. height: math.unit(4, "feet"),
  4859. weight: math.unit(50, "lbs"),
  4860. name: "Front",
  4861. image: {
  4862. source: "./media/characters/rainy/front.svg"
  4863. }
  4864. }
  4865. },
  4866. [
  4867. {
  4868. name: "Macro",
  4869. height: math.unit(800, "feet"),
  4870. default: true
  4871. }
  4872. ]
  4873. ))
  4874. characterMakers.push(() => makeCharacter(
  4875. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4876. {
  4877. front: {
  4878. height: math.unit(6, "feet"),
  4879. weight: math.unit(150, "lbs"),
  4880. name: "Front",
  4881. image: {
  4882. source: "./media/characters/rainier/front.svg"
  4883. }
  4884. }
  4885. },
  4886. [
  4887. {
  4888. name: "Micro",
  4889. height: math.unit(2, "mm"),
  4890. default: true
  4891. }
  4892. ]
  4893. ))
  4894. characterMakers.push(() => makeCharacter(
  4895. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4896. {
  4897. front: {
  4898. height: math.unit(6, "feet"),
  4899. weight: math.unit(180, "lbs"),
  4900. name: "Front",
  4901. image: {
  4902. source: "./media/characters/andy/front.svg"
  4903. }
  4904. }
  4905. },
  4906. [
  4907. {
  4908. name: "Normal",
  4909. height: math.unit(8, "feet"),
  4910. default: true
  4911. },
  4912. {
  4913. name: "Macro",
  4914. height: math.unit(1000, "feet")
  4915. },
  4916. {
  4917. name: "Megamacro",
  4918. height: math.unit(5, "miles")
  4919. },
  4920. {
  4921. name: "Gigamacro",
  4922. height: math.unit(5000, "miles")
  4923. },
  4924. ]
  4925. ))
  4926. characterMakers.push(() => makeCharacter(
  4927. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4928. {
  4929. front: {
  4930. height: math.unit(6, "feet"),
  4931. weight: math.unit(210, "lbs"),
  4932. name: "Front",
  4933. image: {
  4934. source: "./media/characters/cimmaron/front-sfw.svg",
  4935. extra: 701 / 676,
  4936. bottom: 0.046
  4937. }
  4938. },
  4939. back: {
  4940. height: math.unit(6, "feet"),
  4941. weight: math.unit(210, "lbs"),
  4942. name: "Back",
  4943. image: {
  4944. source: "./media/characters/cimmaron/back-sfw.svg",
  4945. extra: 701 / 676,
  4946. bottom: 0.046
  4947. }
  4948. },
  4949. frontNsfw: {
  4950. height: math.unit(6, "feet"),
  4951. weight: math.unit(210, "lbs"),
  4952. name: "Front (NSFW)",
  4953. image: {
  4954. source: "./media/characters/cimmaron/front-nsfw.svg",
  4955. extra: 701 / 676,
  4956. bottom: 0.046
  4957. }
  4958. },
  4959. backNsfw: {
  4960. height: math.unit(6, "feet"),
  4961. weight: math.unit(210, "lbs"),
  4962. name: "Back (NSFW)",
  4963. image: {
  4964. source: "./media/characters/cimmaron/back-nsfw.svg",
  4965. extra: 701 / 676,
  4966. bottom: 0.046
  4967. }
  4968. },
  4969. dick: {
  4970. height: math.unit(1.714, "feet"),
  4971. name: "Dick",
  4972. image: {
  4973. source: "./media/characters/cimmaron/dick.svg"
  4974. }
  4975. },
  4976. },
  4977. [
  4978. {
  4979. name: "Normal",
  4980. height: math.unit(6, "feet"),
  4981. default: true
  4982. },
  4983. {
  4984. name: "Macro Mayor",
  4985. height: math.unit(350, "meters")
  4986. },
  4987. ]
  4988. ))
  4989. characterMakers.push(() => makeCharacter(
  4990. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4991. {
  4992. front: {
  4993. height: math.unit(6, "feet"),
  4994. weight: math.unit(200, "lbs"),
  4995. name: "Front",
  4996. image: {
  4997. source: "./media/characters/akari/front.svg",
  4998. extra: 962 / 901,
  4999. bottom: 0.04
  5000. }
  5001. }
  5002. },
  5003. [
  5004. {
  5005. name: "Micro",
  5006. height: math.unit(5, "inches"),
  5007. default: true
  5008. },
  5009. {
  5010. name: "Normal",
  5011. height: math.unit(7, "feet")
  5012. },
  5013. ]
  5014. ))
  5015. characterMakers.push(() => makeCharacter(
  5016. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5017. {
  5018. front: {
  5019. height: math.unit(6, "feet"),
  5020. weight: math.unit(140, "lbs"),
  5021. name: "Front",
  5022. image: {
  5023. source: "./media/characters/cynosura/front.svg",
  5024. extra: 896 / 847
  5025. }
  5026. },
  5027. back: {
  5028. height: math.unit(6, "feet"),
  5029. weight: math.unit(140, "lbs"),
  5030. name: "Back",
  5031. image: {
  5032. source: "./media/characters/cynosura/back.svg",
  5033. extra: 1365 / 1250
  5034. }
  5035. },
  5036. },
  5037. [
  5038. {
  5039. name: "Micro",
  5040. height: math.unit(4, "inches")
  5041. },
  5042. {
  5043. name: "Normal",
  5044. height: math.unit(5.75, "feet"),
  5045. default: true
  5046. },
  5047. {
  5048. name: "Tall",
  5049. height: math.unit(10, "feet")
  5050. },
  5051. {
  5052. name: "Big",
  5053. height: math.unit(20, "feet")
  5054. },
  5055. {
  5056. name: "Macro",
  5057. height: math.unit(50, "feet")
  5058. },
  5059. ]
  5060. ))
  5061. characterMakers.push(() => makeCharacter(
  5062. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5063. {
  5064. front: {
  5065. height: math.unit(6, "feet"),
  5066. weight: math.unit(170, "lbs"),
  5067. name: "Front",
  5068. image: {
  5069. source: "./media/characters/gin/front.svg",
  5070. extra: 1.053,
  5071. bottom: 0.025
  5072. }
  5073. },
  5074. foot: {
  5075. height: math.unit(6 / 4.25, "feet"),
  5076. name: "Foot",
  5077. image: {
  5078. source: "./media/characters/gin/foot.svg"
  5079. }
  5080. },
  5081. sole: {
  5082. height: math.unit(6 / 4.40, "feet"),
  5083. name: "Sole",
  5084. image: {
  5085. source: "./media/characters/gin/sole.svg"
  5086. }
  5087. },
  5088. },
  5089. [
  5090. {
  5091. name: "Normal",
  5092. height: math.unit(13 + 2 / 12, "feet")
  5093. },
  5094. {
  5095. name: "Macro",
  5096. height: math.unit(1500, "feet")
  5097. },
  5098. {
  5099. name: "Megamacro",
  5100. height: math.unit(200, "miles"),
  5101. default: true
  5102. },
  5103. {
  5104. name: "Gigamacro",
  5105. height: math.unit(500, "megameters")
  5106. },
  5107. {
  5108. name: "Teramacro",
  5109. height: math.unit(15, "lightyears")
  5110. }
  5111. ]
  5112. ))
  5113. characterMakers.push(() => makeCharacter(
  5114. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5115. {
  5116. front: {
  5117. height: math.unit(6 + 1 / 6, "feet"),
  5118. weight: math.unit(178, "lbs"),
  5119. name: "Front",
  5120. image: {
  5121. source: "./media/characters/guy/front.svg"
  5122. }
  5123. }
  5124. },
  5125. [
  5126. {
  5127. name: "Normal",
  5128. height: math.unit(6 + 1 / 6, "feet"),
  5129. default: true
  5130. },
  5131. {
  5132. name: "Large",
  5133. height: math.unit(25 + 7 / 12, "feet")
  5134. },
  5135. {
  5136. name: "Macro",
  5137. height: math.unit(60 + 9 / 12, "feet")
  5138. },
  5139. {
  5140. name: "Macro+",
  5141. height: math.unit(246, "feet")
  5142. },
  5143. {
  5144. name: "Macro++",
  5145. height: math.unit(878, "feet")
  5146. }
  5147. ]
  5148. ))
  5149. characterMakers.push(() => makeCharacter(
  5150. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5151. {
  5152. front: {
  5153. height: math.unit(9, "feet"),
  5154. weight: math.unit(800, "lbs"),
  5155. name: "Front",
  5156. image: {
  5157. source: "./media/characters/tiberius/front.svg",
  5158. extra: 2295 / 2071
  5159. }
  5160. },
  5161. back: {
  5162. height: math.unit(9, "feet"),
  5163. weight: math.unit(800, "lbs"),
  5164. name: "Back",
  5165. image: {
  5166. source: "./media/characters/tiberius/back.svg",
  5167. extra: 2373 / 2160
  5168. }
  5169. },
  5170. },
  5171. [
  5172. {
  5173. name: "Normal",
  5174. height: math.unit(9, "feet"),
  5175. default: true
  5176. }
  5177. ]
  5178. ))
  5179. characterMakers.push(() => makeCharacter(
  5180. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5181. {
  5182. front: {
  5183. height: math.unit(6, "feet"),
  5184. weight: math.unit(600, "lbs"),
  5185. name: "Front",
  5186. image: {
  5187. source: "./media/characters/surgo/front.svg",
  5188. extra: 3591 / 2227
  5189. }
  5190. },
  5191. back: {
  5192. height: math.unit(6, "feet"),
  5193. weight: math.unit(600, "lbs"),
  5194. name: "Back",
  5195. image: {
  5196. source: "./media/characters/surgo/back.svg",
  5197. extra: 3557 / 2228
  5198. }
  5199. },
  5200. laying: {
  5201. height: math.unit(6 * 0.85, "feet"),
  5202. weight: math.unit(600, "lbs"),
  5203. name: "Laying",
  5204. image: {
  5205. source: "./media/characters/surgo/laying.svg"
  5206. }
  5207. },
  5208. },
  5209. [
  5210. {
  5211. name: "Normal",
  5212. height: math.unit(6, "feet"),
  5213. default: true
  5214. }
  5215. ]
  5216. ))
  5217. characterMakers.push(() => makeCharacter(
  5218. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5219. {
  5220. side: {
  5221. height: math.unit(6, "feet"),
  5222. weight: math.unit(150, "lbs"),
  5223. name: "Side",
  5224. image: {
  5225. source: "./media/characters/cibus/side.svg",
  5226. extra: 800 / 400
  5227. }
  5228. },
  5229. },
  5230. [
  5231. {
  5232. name: "Normal",
  5233. height: math.unit(6, "feet"),
  5234. default: true
  5235. }
  5236. ]
  5237. ))
  5238. characterMakers.push(() => makeCharacter(
  5239. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5240. {
  5241. front: {
  5242. height: math.unit(6, "feet"),
  5243. weight: math.unit(240, "lbs"),
  5244. name: "Front",
  5245. image: {
  5246. source: "./media/characters/nibbles/front.svg"
  5247. }
  5248. },
  5249. side: {
  5250. height: math.unit(6, "feet"),
  5251. weight: math.unit(240, "lbs"),
  5252. name: "Side",
  5253. image: {
  5254. source: "./media/characters/nibbles/side.svg"
  5255. }
  5256. },
  5257. },
  5258. [
  5259. {
  5260. name: "Normal",
  5261. height: math.unit(9, "feet"),
  5262. default: true
  5263. }
  5264. ]
  5265. ))
  5266. characterMakers.push(() => makeCharacter(
  5267. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5268. {
  5269. side: {
  5270. height: math.unit(5 + 1 / 6, "feet"),
  5271. weight: math.unit(130, "lbs"),
  5272. name: "Side",
  5273. image: {
  5274. source: "./media/characters/rikky/side.svg"
  5275. }
  5276. },
  5277. },
  5278. [
  5279. {
  5280. name: "Normal",
  5281. height: math.unit(5 + 1 / 6, "feet")
  5282. },
  5283. {
  5284. name: "Macro",
  5285. height: math.unit(152, "feet"),
  5286. default: true
  5287. },
  5288. {
  5289. name: "Megamacro",
  5290. height: math.unit(7, "miles")
  5291. }
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5296. {
  5297. side: {
  5298. height: math.unit(370, "cm"),
  5299. weight: math.unit(350, "lbs"),
  5300. name: "Side",
  5301. image: {
  5302. source: "./media/characters/malfressa/side.svg"
  5303. }
  5304. },
  5305. walking: {
  5306. height: math.unit(370, "cm"),
  5307. weight: math.unit(350, "lbs"),
  5308. name: "Walking",
  5309. image: {
  5310. source: "./media/characters/malfressa/walking.svg"
  5311. }
  5312. },
  5313. feral: {
  5314. height: math.unit(2500, "cm"),
  5315. weight: math.unit(100000, "lbs"),
  5316. name: "Feral",
  5317. image: {
  5318. source: "./media/characters/malfressa/feral.svg",
  5319. extra: 2108 / 837,
  5320. bottom: 0.02
  5321. }
  5322. },
  5323. },
  5324. [
  5325. {
  5326. name: "Normal",
  5327. height: math.unit(370, "cm")
  5328. },
  5329. {
  5330. name: "Macro",
  5331. height: math.unit(300, "meters"),
  5332. default: true
  5333. }
  5334. ]
  5335. ))
  5336. characterMakers.push(() => makeCharacter(
  5337. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5338. {
  5339. front: {
  5340. height: math.unit(6, "feet"),
  5341. weight: math.unit(60, "kg"),
  5342. name: "Front",
  5343. image: {
  5344. source: "./media/characters/jaro/front.svg"
  5345. }
  5346. },
  5347. back: {
  5348. height: math.unit(6, "feet"),
  5349. weight: math.unit(60, "kg"),
  5350. name: "Back",
  5351. image: {
  5352. source: "./media/characters/jaro/back.svg"
  5353. }
  5354. },
  5355. },
  5356. [
  5357. {
  5358. name: "Micro",
  5359. height: math.unit(7, "inches")
  5360. },
  5361. {
  5362. name: "Normal",
  5363. height: math.unit(5.5, "feet"),
  5364. default: true
  5365. },
  5366. {
  5367. name: "Minimacro",
  5368. height: math.unit(20, "feet")
  5369. },
  5370. {
  5371. name: "Macro",
  5372. height: math.unit(200, "meters")
  5373. }
  5374. ]
  5375. ))
  5376. characterMakers.push(() => makeCharacter(
  5377. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5378. {
  5379. front: {
  5380. height: math.unit(6, "feet"),
  5381. weight: math.unit(195, "lb"),
  5382. name: "Front",
  5383. image: {
  5384. source: "./media/characters/rogue/front.svg"
  5385. }
  5386. },
  5387. },
  5388. [
  5389. {
  5390. name: "Macro",
  5391. height: math.unit(90, "feet"),
  5392. default: true
  5393. },
  5394. ]
  5395. ))
  5396. characterMakers.push(() => makeCharacter(
  5397. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5398. {
  5399. front: {
  5400. height: math.unit(5 + 8 / 12, "feet"),
  5401. weight: math.unit(140, "lb"),
  5402. name: "Front",
  5403. image: {
  5404. source: "./media/characters/piper/front.svg",
  5405. extra: 3928 / 3681
  5406. }
  5407. },
  5408. },
  5409. [
  5410. {
  5411. name: "Micro",
  5412. height: math.unit(2, "inches")
  5413. },
  5414. {
  5415. name: "Normal",
  5416. height: math.unit(5 + 8 / 12, "feet")
  5417. },
  5418. {
  5419. name: "Macro",
  5420. height: math.unit(250, "feet"),
  5421. default: true
  5422. },
  5423. {
  5424. name: "Megamacro",
  5425. height: math.unit(7, "miles")
  5426. },
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5431. {
  5432. front: {
  5433. height: math.unit(6, "feet"),
  5434. weight: math.unit(220, "lb"),
  5435. name: "Front",
  5436. image: {
  5437. source: "./media/characters/gemini/front.svg"
  5438. }
  5439. },
  5440. back: {
  5441. height: math.unit(6, "feet"),
  5442. weight: math.unit(220, "lb"),
  5443. name: "Back",
  5444. image: {
  5445. source: "./media/characters/gemini/back.svg"
  5446. }
  5447. },
  5448. kneeling: {
  5449. height: math.unit(6 / 1.5, "feet"),
  5450. weight: math.unit(220, "lb"),
  5451. name: "Kneeling",
  5452. image: {
  5453. source: "./media/characters/gemini/kneeling.svg",
  5454. bottom: 0.02
  5455. }
  5456. },
  5457. },
  5458. [
  5459. {
  5460. name: "Macro",
  5461. height: math.unit(300, "meters"),
  5462. default: true
  5463. },
  5464. {
  5465. name: "Megamacro",
  5466. height: math.unit(6900, "meters")
  5467. },
  5468. ]
  5469. ))
  5470. characterMakers.push(() => makeCharacter(
  5471. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5472. {
  5473. anthro: {
  5474. height: math.unit(2.35, "meters"),
  5475. weight: math.unit(73, "kg"),
  5476. name: "Anthro",
  5477. image: {
  5478. source: "./media/characters/alicia/anthro.svg",
  5479. extra: 2571 / 2385,
  5480. bottom: 75 / 2648
  5481. }
  5482. },
  5483. paw: {
  5484. height: math.unit(1.32, "feet"),
  5485. name: "Paw",
  5486. image: {
  5487. source: "./media/characters/alicia/paw.svg"
  5488. }
  5489. },
  5490. feral: {
  5491. height: math.unit(1.69, "meters"),
  5492. weight: math.unit(73, "kg"),
  5493. name: "Feral",
  5494. image: {
  5495. source: "./media/characters/alicia/feral.svg",
  5496. extra: 2123 / 1715,
  5497. bottom: 222 / 2349
  5498. }
  5499. },
  5500. },
  5501. [
  5502. {
  5503. name: "Normal",
  5504. height: math.unit(2.35, "meters")
  5505. },
  5506. {
  5507. name: "Macro",
  5508. height: math.unit(60, "meters"),
  5509. default: true
  5510. },
  5511. {
  5512. name: "Megamacro",
  5513. height: math.unit(10000, "kilometers")
  5514. },
  5515. ]
  5516. ))
  5517. characterMakers.push(() => makeCharacter(
  5518. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5519. {
  5520. front: {
  5521. height: math.unit(7, "feet"),
  5522. weight: math.unit(250, "lbs"),
  5523. name: "Front",
  5524. image: {
  5525. source: "./media/characters/archy/front.svg"
  5526. }
  5527. }
  5528. },
  5529. [
  5530. {
  5531. name: "Micro",
  5532. height: math.unit(1, "inch")
  5533. },
  5534. {
  5535. name: "Shorty",
  5536. height: math.unit(5, "feet")
  5537. },
  5538. {
  5539. name: "Normal",
  5540. height: math.unit(7, "feet")
  5541. },
  5542. {
  5543. name: "Macro",
  5544. height: math.unit(600, "meters"),
  5545. default: true
  5546. },
  5547. {
  5548. name: "Megamacro",
  5549. height: math.unit(1, "mile")
  5550. },
  5551. ]
  5552. ))
  5553. characterMakers.push(() => makeCharacter(
  5554. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5555. {
  5556. front: {
  5557. height: math.unit(1.65, "meters"),
  5558. weight: math.unit(74, "kg"),
  5559. name: "Front",
  5560. image: {
  5561. source: "./media/characters/berri/front.svg",
  5562. extra: 857 / 837,
  5563. bottom: 18 / 877
  5564. }
  5565. },
  5566. bum: {
  5567. height: math.unit(1.46, "feet"),
  5568. name: "Bum",
  5569. image: {
  5570. source: "./media/characters/berri/bum.svg"
  5571. }
  5572. },
  5573. mouth: {
  5574. height: math.unit(0.44, "feet"),
  5575. name: "Mouth",
  5576. image: {
  5577. source: "./media/characters/berri/mouth.svg"
  5578. }
  5579. },
  5580. paw: {
  5581. height: math.unit(0.826, "feet"),
  5582. name: "Paw",
  5583. image: {
  5584. source: "./media/characters/berri/paw.svg"
  5585. }
  5586. },
  5587. },
  5588. [
  5589. {
  5590. name: "Normal",
  5591. height: math.unit(1.65, "meters")
  5592. },
  5593. {
  5594. name: "Macro",
  5595. height: math.unit(60, "m"),
  5596. default: true
  5597. },
  5598. {
  5599. name: "Megamacro",
  5600. height: math.unit(9.213, "km")
  5601. },
  5602. {
  5603. name: "Planet Eater",
  5604. height: math.unit(489, "megameters")
  5605. },
  5606. {
  5607. name: "Teramacro",
  5608. height: math.unit(2471635000000, "meters")
  5609. },
  5610. {
  5611. name: "Examacro",
  5612. height: math.unit(8.0624e+26, "meters")
  5613. }
  5614. ]
  5615. ))
  5616. characterMakers.push(() => makeCharacter(
  5617. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5618. {
  5619. front: {
  5620. height: math.unit(1.72, "meters"),
  5621. weight: math.unit(68, "kg"),
  5622. name: "Front",
  5623. image: {
  5624. source: "./media/characters/lexi/front.svg"
  5625. }
  5626. }
  5627. },
  5628. [
  5629. {
  5630. name: "Very Smol",
  5631. height: math.unit(10, "mm")
  5632. },
  5633. {
  5634. name: "Micro",
  5635. height: math.unit(6.8, "cm"),
  5636. default: true
  5637. },
  5638. {
  5639. name: "Normal",
  5640. height: math.unit(1.72, "m")
  5641. }
  5642. ]
  5643. ))
  5644. characterMakers.push(() => makeCharacter(
  5645. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5646. {
  5647. front: {
  5648. height: math.unit(1.69, "meters"),
  5649. weight: math.unit(68, "kg"),
  5650. name: "Front",
  5651. image: {
  5652. source: "./media/characters/martin/front.svg",
  5653. extra: 596 / 581
  5654. }
  5655. }
  5656. },
  5657. [
  5658. {
  5659. name: "Micro",
  5660. height: math.unit(6.85, "cm"),
  5661. default: true
  5662. },
  5663. {
  5664. name: "Normal",
  5665. height: math.unit(1.69, "m")
  5666. }
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5671. {
  5672. front: {
  5673. height: math.unit(1.69, "meters"),
  5674. weight: math.unit(68, "kg"),
  5675. name: "Front",
  5676. image: {
  5677. source: "./media/characters/juno/front.svg"
  5678. }
  5679. }
  5680. },
  5681. [
  5682. {
  5683. name: "Micro",
  5684. height: math.unit(7, "cm")
  5685. },
  5686. {
  5687. name: "Normal",
  5688. height: math.unit(1.89, "m")
  5689. },
  5690. {
  5691. name: "Macro",
  5692. height: math.unit(353, "meters"),
  5693. default: true
  5694. }
  5695. ]
  5696. ))
  5697. characterMakers.push(() => makeCharacter(
  5698. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5699. {
  5700. front: {
  5701. height: math.unit(1.93, "meters"),
  5702. weight: math.unit(83, "kg"),
  5703. name: "Front",
  5704. image: {
  5705. source: "./media/characters/samantha/front.svg"
  5706. }
  5707. },
  5708. frontClothed: {
  5709. height: math.unit(1.93, "meters"),
  5710. weight: math.unit(83, "kg"),
  5711. name: "Front (Clothed)",
  5712. image: {
  5713. source: "./media/characters/samantha/front-clothed.svg"
  5714. }
  5715. },
  5716. back: {
  5717. height: math.unit(1.93, "meters"),
  5718. weight: math.unit(83, "kg"),
  5719. name: "Back",
  5720. image: {
  5721. source: "./media/characters/samantha/back.svg"
  5722. }
  5723. },
  5724. },
  5725. [
  5726. {
  5727. name: "Normal",
  5728. height: math.unit(1.93, "m")
  5729. },
  5730. {
  5731. name: "Macro",
  5732. height: math.unit(74, "meters"),
  5733. default: true
  5734. },
  5735. {
  5736. name: "Macro+",
  5737. height: math.unit(223, "meters"),
  5738. },
  5739. {
  5740. name: "Megamacro",
  5741. height: math.unit(8381, "meters"),
  5742. },
  5743. {
  5744. name: "Megamacro+",
  5745. height: math.unit(12000, "kilometers")
  5746. },
  5747. ]
  5748. ))
  5749. characterMakers.push(() => makeCharacter(
  5750. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5751. {
  5752. front: {
  5753. height: math.unit(1.92, "meters"),
  5754. weight: math.unit(80, "kg"),
  5755. name: "Front",
  5756. image: {
  5757. source: "./media/characters/dr-clay/front.svg"
  5758. }
  5759. },
  5760. frontClothed: {
  5761. height: math.unit(1.92, "meters"),
  5762. weight: math.unit(80, "kg"),
  5763. name: "Front (Clothed)",
  5764. image: {
  5765. source: "./media/characters/dr-clay/front-clothed.svg"
  5766. }
  5767. }
  5768. },
  5769. [
  5770. {
  5771. name: "Normal",
  5772. height: math.unit(1.92, "m")
  5773. },
  5774. {
  5775. name: "Macro",
  5776. height: math.unit(214, "meters"),
  5777. default: true
  5778. },
  5779. {
  5780. name: "Macro+",
  5781. height: math.unit(12.237, "meters"),
  5782. },
  5783. {
  5784. name: "Megamacro",
  5785. height: math.unit(557, "megameters"),
  5786. },
  5787. {
  5788. name: "Unimaginable",
  5789. height: math.unit(120e9, "lightyears")
  5790. },
  5791. ]
  5792. ))
  5793. characterMakers.push(() => makeCharacter(
  5794. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5795. {
  5796. front: {
  5797. height: math.unit(2, "meters"),
  5798. weight: math.unit(80, "kg"),
  5799. name: "Front",
  5800. image: {
  5801. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5802. }
  5803. }
  5804. },
  5805. [
  5806. {
  5807. name: "Teramacro",
  5808. height: math.unit(500000, "lightyears"),
  5809. default: true
  5810. },
  5811. ]
  5812. ))
  5813. characterMakers.push(() => makeCharacter(
  5814. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5815. {
  5816. front: {
  5817. height: math.unit(2, "meters"),
  5818. weight: math.unit(150, "kg"),
  5819. name: "Front",
  5820. image: {
  5821. source: "./media/characters/vemus/front.svg",
  5822. extra: 2384 / 2084,
  5823. bottom: 0.0123
  5824. }
  5825. }
  5826. },
  5827. [
  5828. {
  5829. name: "Normal",
  5830. height: math.unit(3.75, "meters"),
  5831. default: true
  5832. },
  5833. {
  5834. name: "Big",
  5835. height: math.unit(8, "meters")
  5836. },
  5837. {
  5838. name: "Macro",
  5839. height: math.unit(100, "meters")
  5840. },
  5841. {
  5842. name: "Macro+",
  5843. height: math.unit(1500, "meters")
  5844. },
  5845. {
  5846. name: "Stellar",
  5847. height: math.unit(14e8, "meters")
  5848. },
  5849. ]
  5850. ))
  5851. characterMakers.push(() => makeCharacter(
  5852. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5853. {
  5854. front: {
  5855. height: math.unit(2, "meters"),
  5856. weight: math.unit(70, "kg"),
  5857. name: "Front",
  5858. image: {
  5859. source: "./media/characters/beherit/front.svg",
  5860. extra: 1408 / 1242
  5861. }
  5862. }
  5863. },
  5864. [
  5865. {
  5866. name: "Normal",
  5867. height: math.unit(6, "feet")
  5868. },
  5869. {
  5870. name: "Lorg",
  5871. height: math.unit(25, "feet"),
  5872. default: true
  5873. },
  5874. {
  5875. name: "Lorger",
  5876. height: math.unit(75, "feet")
  5877. },
  5878. {
  5879. name: "Macro",
  5880. height: math.unit(200, "meters")
  5881. },
  5882. ]
  5883. ))
  5884. characterMakers.push(() => makeCharacter(
  5885. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5886. {
  5887. front: {
  5888. height: math.unit(2, "meters"),
  5889. weight: math.unit(150, "kg"),
  5890. name: "Front",
  5891. image: {
  5892. source: "./media/characters/everett/front.svg",
  5893. extra: 2038 / 1737,
  5894. bottom: 0.03
  5895. }
  5896. },
  5897. paw: {
  5898. height: math.unit(2 / 3.6, "meters"),
  5899. name: "Paw",
  5900. image: {
  5901. source: "./media/characters/everett/paw.svg"
  5902. }
  5903. },
  5904. },
  5905. [
  5906. {
  5907. name: "Normal",
  5908. height: math.unit(15, "feet"),
  5909. default: true
  5910. },
  5911. {
  5912. name: "Lorg",
  5913. height: math.unit(70, "feet"),
  5914. default: true
  5915. },
  5916. {
  5917. name: "Lorger",
  5918. height: math.unit(250, "feet")
  5919. },
  5920. {
  5921. name: "Macro",
  5922. height: math.unit(500, "meters")
  5923. },
  5924. ]
  5925. ))
  5926. characterMakers.push(() => makeCharacter(
  5927. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5928. {
  5929. front: {
  5930. height: math.unit(2, "meters"),
  5931. weight: math.unit(86, "kg"),
  5932. name: "Front",
  5933. image: {
  5934. source: "./media/characters/rose-lion/front.svg"
  5935. }
  5936. },
  5937. bent: {
  5938. height: math.unit(2 / 1.4288, "meters"),
  5939. weight: math.unit(86, "kg"),
  5940. name: "Bent",
  5941. image: {
  5942. source: "./media/characters/rose-lion/bent.svg"
  5943. }
  5944. }
  5945. },
  5946. [
  5947. {
  5948. name: "Mini-Micro",
  5949. height: math.unit(1, "cm")
  5950. },
  5951. {
  5952. name: "Micro",
  5953. height: math.unit(3.5, "inches"),
  5954. default: true
  5955. },
  5956. {
  5957. name: "Normal",
  5958. height: math.unit(6 + 1 / 6, "feet")
  5959. },
  5960. {
  5961. name: "Mini-Macro",
  5962. height: math.unit(9 + 10 / 12, "feet")
  5963. },
  5964. ]
  5965. ))
  5966. characterMakers.push(() => makeCharacter(
  5967. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5968. {
  5969. front: {
  5970. height: math.unit(2, "meters"),
  5971. weight: math.unit(350, "lbs"),
  5972. name: "Front",
  5973. image: {
  5974. source: "./media/characters/regal/front.svg"
  5975. }
  5976. },
  5977. back: {
  5978. height: math.unit(2, "meters"),
  5979. weight: math.unit(350, "lbs"),
  5980. name: "Back",
  5981. image: {
  5982. source: "./media/characters/regal/back.svg"
  5983. }
  5984. },
  5985. },
  5986. [
  5987. {
  5988. name: "Macro",
  5989. height: math.unit(350, "feet"),
  5990. default: true
  5991. }
  5992. ]
  5993. ))
  5994. characterMakers.push(() => makeCharacter(
  5995. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  5996. {
  5997. front: {
  5998. height: math.unit(4 + 11 / 12, "feet"),
  5999. weight: math.unit(100, "lbs"),
  6000. name: "Front",
  6001. image: {
  6002. source: "./media/characters/opal/front.svg"
  6003. }
  6004. },
  6005. frontAlt: {
  6006. height: math.unit(4 + 11 / 12, "feet"),
  6007. weight: math.unit(100, "lbs"),
  6008. name: "Front (Alt)",
  6009. image: {
  6010. source: "./media/characters/opal/front-alt.svg"
  6011. }
  6012. },
  6013. },
  6014. [
  6015. {
  6016. name: "Small",
  6017. height: math.unit(4 + 11 / 12, "feet")
  6018. },
  6019. {
  6020. name: "Normal",
  6021. height: math.unit(20, "feet"),
  6022. default: true
  6023. },
  6024. {
  6025. name: "Macro",
  6026. height: math.unit(120, "feet")
  6027. },
  6028. {
  6029. name: "Megamacro",
  6030. height: math.unit(80, "miles")
  6031. },
  6032. {
  6033. name: "True Size",
  6034. height: math.unit(100000, "lightyears")
  6035. },
  6036. ]
  6037. ))
  6038. characterMakers.push(() => makeCharacter(
  6039. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6040. {
  6041. front: {
  6042. height: math.unit(6, "feet"),
  6043. weight: math.unit(200, "lbs"),
  6044. name: "Front",
  6045. image: {
  6046. source: "./media/characters/vector-wuff/front.svg"
  6047. }
  6048. }
  6049. },
  6050. [
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(2.8, "meters")
  6054. },
  6055. {
  6056. name: "Macro",
  6057. height: math.unit(450, "meters"),
  6058. default: true
  6059. },
  6060. {
  6061. name: "Megamacro",
  6062. height: math.unit(15, "kilometers")
  6063. }
  6064. ]
  6065. ))
  6066. characterMakers.push(() => makeCharacter(
  6067. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6068. {
  6069. front: {
  6070. height: math.unit(6, "feet"),
  6071. weight: math.unit(256, "lbs"),
  6072. name: "Front",
  6073. image: {
  6074. source: "./media/characters/dannik/front.svg"
  6075. }
  6076. }
  6077. },
  6078. [
  6079. {
  6080. name: "Macro",
  6081. height: math.unit(69.57, "meters"),
  6082. default: true
  6083. },
  6084. ]
  6085. ))
  6086. characterMakers.push(() => makeCharacter(
  6087. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6088. {
  6089. front: {
  6090. height: math.unit(6, "feet"),
  6091. weight: math.unit(120, "lbs"),
  6092. name: "Front",
  6093. image: {
  6094. source: "./media/characters/azura-saharah/front.svg"
  6095. }
  6096. },
  6097. back: {
  6098. height: math.unit(6, "feet"),
  6099. weight: math.unit(120, "lbs"),
  6100. name: "Back",
  6101. image: {
  6102. source: "./media/characters/azura-saharah/back.svg"
  6103. }
  6104. },
  6105. },
  6106. [
  6107. {
  6108. name: "Macro",
  6109. height: math.unit(100, "feet"),
  6110. default: true
  6111. },
  6112. ]
  6113. ))
  6114. characterMakers.push(() => makeCharacter(
  6115. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6116. {
  6117. side: {
  6118. height: math.unit(5 + 4 / 12, "feet"),
  6119. weight: math.unit(163, "lbs"),
  6120. name: "Side",
  6121. image: {
  6122. source: "./media/characters/kennedy/side.svg"
  6123. }
  6124. }
  6125. },
  6126. [
  6127. {
  6128. name: "Standard Doggo",
  6129. height: math.unit(5 + 4 / 12, "feet")
  6130. },
  6131. {
  6132. name: "Big Doggo",
  6133. height: math.unit(25 + 3 / 12, "feet"),
  6134. default: true
  6135. },
  6136. ]
  6137. ))
  6138. characterMakers.push(() => makeCharacter(
  6139. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6140. {
  6141. front: {
  6142. height: math.unit(6, "feet"),
  6143. weight: math.unit(90, "lbs"),
  6144. name: "Front",
  6145. image: {
  6146. source: "./media/characters/odi-lunar/front.svg"
  6147. }
  6148. }
  6149. },
  6150. [
  6151. {
  6152. name: "Micro",
  6153. height: math.unit(3, "inches"),
  6154. default: true
  6155. },
  6156. {
  6157. name: "Normal",
  6158. height: math.unit(5.5, "feet")
  6159. }
  6160. ]
  6161. ))
  6162. characterMakers.push(() => makeCharacter(
  6163. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6164. {
  6165. back: {
  6166. height: math.unit(6, "feet"),
  6167. weight: math.unit(220, "lbs"),
  6168. name: "Back",
  6169. image: {
  6170. source: "./media/characters/mandake/back.svg"
  6171. }
  6172. }
  6173. },
  6174. [
  6175. {
  6176. name: "Normal",
  6177. height: math.unit(7, "feet"),
  6178. default: true
  6179. },
  6180. {
  6181. name: "Macro",
  6182. height: math.unit(78, "feet")
  6183. },
  6184. {
  6185. name: "Macro+",
  6186. height: math.unit(300, "meters")
  6187. },
  6188. {
  6189. name: "Macro++",
  6190. height: math.unit(2400, "feet")
  6191. },
  6192. {
  6193. name: "Megamacro",
  6194. height: math.unit(5167, "meters")
  6195. },
  6196. {
  6197. name: "Gigamacro",
  6198. height: math.unit(41769, "miles")
  6199. },
  6200. ]
  6201. ))
  6202. characterMakers.push(() => makeCharacter(
  6203. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6204. {
  6205. front: {
  6206. height: math.unit(6, "feet"),
  6207. weight: math.unit(120, "lbs"),
  6208. name: "Front",
  6209. image: {
  6210. source: "./media/characters/yozey/front.svg"
  6211. }
  6212. },
  6213. frontAlt: {
  6214. height: math.unit(6, "feet"),
  6215. weight: math.unit(120, "lbs"),
  6216. name: "Front (Alt)",
  6217. image: {
  6218. source: "./media/characters/yozey/front-alt.svg"
  6219. }
  6220. },
  6221. side: {
  6222. height: math.unit(6, "feet"),
  6223. weight: math.unit(120, "lbs"),
  6224. name: "Side",
  6225. image: {
  6226. source: "./media/characters/yozey/side.svg"
  6227. }
  6228. },
  6229. },
  6230. [
  6231. {
  6232. name: "Micro",
  6233. height: math.unit(3, "inches"),
  6234. default: true
  6235. },
  6236. {
  6237. name: "Normal",
  6238. height: math.unit(6, "feet")
  6239. }
  6240. ]
  6241. ))
  6242. characterMakers.push(() => makeCharacter(
  6243. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6244. {
  6245. front: {
  6246. height: math.unit(6, "feet"),
  6247. weight: math.unit(103, "lbs"),
  6248. name: "Front",
  6249. image: {
  6250. source: "./media/characters/valeska-voss/front.svg"
  6251. }
  6252. }
  6253. },
  6254. [
  6255. {
  6256. name: "Mini-Sized Sub",
  6257. height: math.unit(3.1, "inches")
  6258. },
  6259. {
  6260. name: "Mid-Sized Sub",
  6261. height: math.unit(6.2, "inches")
  6262. },
  6263. {
  6264. name: "Full-Sized Sub",
  6265. height: math.unit(9.3, "inches")
  6266. },
  6267. {
  6268. name: "Normal",
  6269. height: math.unit(5 + 2 / 12, "foot"),
  6270. default: true
  6271. },
  6272. ]
  6273. ))
  6274. characterMakers.push(() => makeCharacter(
  6275. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6276. {
  6277. front: {
  6278. height: math.unit(6, "feet"),
  6279. weight: math.unit(160, "lbs"),
  6280. name: "Front",
  6281. image: {
  6282. source: "./media/characters/gene-zeta/front.svg",
  6283. bottom: 0.03,
  6284. extra: 1
  6285. }
  6286. }
  6287. },
  6288. [
  6289. {
  6290. name: "Normal",
  6291. height: math.unit(6.25, "foot"),
  6292. default: true
  6293. },
  6294. ]
  6295. ))
  6296. characterMakers.push(() => makeCharacter(
  6297. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6298. {
  6299. front: {
  6300. height: math.unit(6, "feet"),
  6301. weight: math.unit(350, "lbs"),
  6302. name: "Front",
  6303. image: {
  6304. source: "./media/characters/razinox/front.svg",
  6305. extra: 1686 / 1548,
  6306. bottom: 28.2 / 1868
  6307. }
  6308. },
  6309. back: {
  6310. height: math.unit(6, "feet"),
  6311. weight: math.unit(350, "lbs"),
  6312. name: "Back",
  6313. image: {
  6314. source: "./media/characters/razinox/back.svg",
  6315. extra: 1660 / 1590,
  6316. bottom: 15 / 1665
  6317. }
  6318. },
  6319. },
  6320. [
  6321. {
  6322. name: "Normal",
  6323. height: math.unit(10 + 8 / 12, "foot")
  6324. },
  6325. {
  6326. name: "Minimacro",
  6327. height: math.unit(15, "foot")
  6328. },
  6329. {
  6330. name: "Macro",
  6331. height: math.unit(60, "foot"),
  6332. default: true
  6333. },
  6334. {
  6335. name: "Megamacro",
  6336. height: math.unit(5, "miles")
  6337. },
  6338. {
  6339. name: "Gigamacro",
  6340. height: math.unit(6000, "miles")
  6341. },
  6342. ]
  6343. ))
  6344. characterMakers.push(() => makeCharacter(
  6345. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6346. {
  6347. front: {
  6348. height: math.unit(6, "feet"),
  6349. weight: math.unit(150, "lbs"),
  6350. name: "Front",
  6351. image: {
  6352. source: "./media/characters/cobalt/front.svg"
  6353. }
  6354. }
  6355. },
  6356. [
  6357. {
  6358. name: "Normal",
  6359. height: math.unit(8 + 1 / 12, "foot")
  6360. },
  6361. {
  6362. name: "Macro",
  6363. height: math.unit(111, "foot"),
  6364. default: true
  6365. },
  6366. {
  6367. name: "Supracosmic",
  6368. height: math.unit(1e42, "feet")
  6369. },
  6370. ]
  6371. ))
  6372. characterMakers.push(() => makeCharacter(
  6373. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6374. {
  6375. front: {
  6376. height: math.unit(6, "feet"),
  6377. weight: math.unit(140, "lbs"),
  6378. name: "Front",
  6379. image: {
  6380. source: "./media/characters/amanda/front.svg"
  6381. }
  6382. }
  6383. },
  6384. [
  6385. {
  6386. name: "Micro",
  6387. height: math.unit(5, "inches"),
  6388. default: true
  6389. },
  6390. ]
  6391. ))
  6392. characterMakers.push(() => makeCharacter(
  6393. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6394. {
  6395. front: {
  6396. height: math.unit(5.59, "feet"),
  6397. weight: math.unit(250, "lbs"),
  6398. name: "Front",
  6399. image: {
  6400. source: "./media/characters/teal/front.svg"
  6401. }
  6402. },
  6403. frontAlt: {
  6404. height: math.unit(6, "feet"),
  6405. weight: math.unit(250, "lbs"),
  6406. name: "Front (Alt)",
  6407. image: {
  6408. source: "./media/characters/teal/front-alt.svg",
  6409. bottom: 0.04,
  6410. extra: 1
  6411. }
  6412. },
  6413. },
  6414. [
  6415. {
  6416. name: "Normal",
  6417. height: math.unit(12, "feet"),
  6418. default: true
  6419. },
  6420. {
  6421. name: "Macro",
  6422. height: math.unit(300, "feet")
  6423. },
  6424. ]
  6425. ))
  6426. characterMakers.push(() => makeCharacter(
  6427. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6428. {
  6429. frontCat: {
  6430. height: math.unit(6, "feet"),
  6431. weight: math.unit(180, "lbs"),
  6432. name: "Front (Cat)",
  6433. image: {
  6434. source: "./media/characters/ravin-amulet/front-cat.svg"
  6435. }
  6436. },
  6437. frontCatAlt: {
  6438. height: math.unit(6, "feet"),
  6439. weight: math.unit(180, "lbs"),
  6440. name: "Front (Alt, Cat)",
  6441. image: {
  6442. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6443. }
  6444. },
  6445. frontWerewolf: {
  6446. height: math.unit(6 * 1.2, "feet"),
  6447. weight: math.unit(225, "lbs"),
  6448. name: "Front (Werewolf)",
  6449. image: {
  6450. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6451. }
  6452. },
  6453. backWerewolf: {
  6454. height: math.unit(6 * 1.2, "feet"),
  6455. weight: math.unit(225, "lbs"),
  6456. name: "Back (Werewolf)",
  6457. image: {
  6458. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6459. }
  6460. },
  6461. },
  6462. [
  6463. {
  6464. name: "Nano",
  6465. height: math.unit(1, "micrometer")
  6466. },
  6467. {
  6468. name: "Micro",
  6469. height: math.unit(1, "inch")
  6470. },
  6471. {
  6472. name: "Normal",
  6473. height: math.unit(6, "feet"),
  6474. default: true
  6475. },
  6476. {
  6477. name: "Macro",
  6478. height: math.unit(60, "feet")
  6479. }
  6480. ]
  6481. ))
  6482. characterMakers.push(() => makeCharacter(
  6483. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6484. {
  6485. front: {
  6486. height: math.unit(6, "feet"),
  6487. weight: math.unit(165, "lbs"),
  6488. name: "Front",
  6489. image: {
  6490. source: "./media/characters/fluoresce/front.svg"
  6491. }
  6492. }
  6493. },
  6494. [
  6495. {
  6496. name: "Micro",
  6497. height: math.unit(6, "cm")
  6498. },
  6499. {
  6500. name: "Normal",
  6501. height: math.unit(5 + 7 / 12, "feet"),
  6502. default: true
  6503. },
  6504. {
  6505. name: "Macro",
  6506. height: math.unit(56, "feet")
  6507. },
  6508. {
  6509. name: "Megamacro",
  6510. height: math.unit(1.9, "miles")
  6511. },
  6512. ]
  6513. ))
  6514. characterMakers.push(() => makeCharacter(
  6515. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6516. {
  6517. front: {
  6518. height: math.unit(9 + 6 / 12, "feet"),
  6519. weight: math.unit(523, "lbs"),
  6520. name: "Side",
  6521. image: {
  6522. source: "./media/characters/aurora/side.svg"
  6523. }
  6524. }
  6525. },
  6526. [
  6527. {
  6528. name: "Normal",
  6529. height: math.unit(9 + 6 / 12, "feet")
  6530. },
  6531. {
  6532. name: "Macro",
  6533. height: math.unit(96, "feet"),
  6534. default: true
  6535. },
  6536. {
  6537. name: "Macro+",
  6538. height: math.unit(243, "feet")
  6539. },
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6544. {
  6545. front: {
  6546. height: math.unit(194, "cm"),
  6547. weight: math.unit(90, "kg"),
  6548. name: "Front",
  6549. image: {
  6550. source: "./media/characters/ranek/front.svg"
  6551. }
  6552. },
  6553. side: {
  6554. height: math.unit(194, "cm"),
  6555. weight: math.unit(90, "kg"),
  6556. name: "Side",
  6557. image: {
  6558. source: "./media/characters/ranek/side.svg"
  6559. }
  6560. },
  6561. back: {
  6562. height: math.unit(194, "cm"),
  6563. weight: math.unit(90, "kg"),
  6564. name: "Back",
  6565. image: {
  6566. source: "./media/characters/ranek/back.svg"
  6567. }
  6568. },
  6569. feral: {
  6570. height: math.unit(30, "cm"),
  6571. weight: math.unit(1.6, "lbs"),
  6572. name: "Feral",
  6573. image: {
  6574. source: "./media/characters/ranek/feral.svg"
  6575. }
  6576. },
  6577. },
  6578. [
  6579. {
  6580. name: "Normal",
  6581. height: math.unit(194, "cm"),
  6582. default: true
  6583. },
  6584. {
  6585. name: "Macro",
  6586. height: math.unit(100, "meters")
  6587. },
  6588. ]
  6589. ))
  6590. characterMakers.push(() => makeCharacter(
  6591. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6592. {
  6593. front: {
  6594. height: math.unit(5 + 6 / 12, "feet"),
  6595. weight: math.unit(153, "lbs"),
  6596. name: "Front",
  6597. image: {
  6598. source: "./media/characters/andrew-cooper/front.svg"
  6599. }
  6600. },
  6601. },
  6602. [
  6603. {
  6604. name: "Nano",
  6605. height: math.unit(1, "mm")
  6606. },
  6607. {
  6608. name: "Micro",
  6609. height: math.unit(2, "inches")
  6610. },
  6611. {
  6612. name: "Normal",
  6613. height: math.unit(5 + 6 / 12, "feet"),
  6614. default: true
  6615. }
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6620. {
  6621. front: {
  6622. height: math.unit(6, "feet"),
  6623. weight: math.unit(180, "lbs"),
  6624. name: "Front",
  6625. image: {
  6626. source: "./media/characters/akane-sato/front.svg",
  6627. extra: 1219 / 1140
  6628. }
  6629. },
  6630. back: {
  6631. height: math.unit(6, "feet"),
  6632. weight: math.unit(180, "lbs"),
  6633. name: "Back",
  6634. image: {
  6635. source: "./media/characters/akane-sato/back.svg",
  6636. extra: 1219 / 1170
  6637. }
  6638. },
  6639. },
  6640. [
  6641. {
  6642. name: "Normal",
  6643. height: math.unit(2.5, "meters")
  6644. },
  6645. {
  6646. name: "Macro",
  6647. height: math.unit(250, "meters"),
  6648. default: true
  6649. },
  6650. {
  6651. name: "Megamacro",
  6652. height: math.unit(25, "km")
  6653. },
  6654. ]
  6655. ))
  6656. characterMakers.push(() => makeCharacter(
  6657. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6658. {
  6659. front: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(65, "kg"),
  6662. name: "Front",
  6663. image: {
  6664. source: "./media/characters/rook/front.svg",
  6665. extra: 960 / 950
  6666. }
  6667. }
  6668. },
  6669. [
  6670. {
  6671. name: "Normal",
  6672. height: math.unit(8.8, "feet")
  6673. },
  6674. {
  6675. name: "Macro",
  6676. height: math.unit(88, "feet"),
  6677. default: true
  6678. },
  6679. {
  6680. name: "Megamacro",
  6681. height: math.unit(8, "miles")
  6682. },
  6683. ]
  6684. ))
  6685. characterMakers.push(() => makeCharacter(
  6686. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6687. {
  6688. front: {
  6689. height: math.unit(12 + 2 / 12, "feet"),
  6690. weight: math.unit(808, "lbs"),
  6691. name: "Front",
  6692. image: {
  6693. source: "./media/characters/prodigy/front.svg"
  6694. }
  6695. }
  6696. },
  6697. [
  6698. {
  6699. name: "Normal",
  6700. height: math.unit(12 + 2 / 12, "feet"),
  6701. default: true
  6702. },
  6703. {
  6704. name: "Macro",
  6705. height: math.unit(143, "feet")
  6706. },
  6707. {
  6708. name: "Macro+",
  6709. height: math.unit(400, "feet")
  6710. },
  6711. ]
  6712. ))
  6713. characterMakers.push(() => makeCharacter(
  6714. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6715. {
  6716. front: {
  6717. height: math.unit(6, "feet"),
  6718. weight: math.unit(225, "lbs"),
  6719. name: "Front",
  6720. image: {
  6721. source: "./media/characters/daniel/front.svg"
  6722. }
  6723. },
  6724. leaning: {
  6725. height: math.unit(6, "feet"),
  6726. weight: math.unit(225, "lbs"),
  6727. name: "Leaning",
  6728. image: {
  6729. source: "./media/characters/daniel/leaning.svg"
  6730. }
  6731. },
  6732. },
  6733. [
  6734. {
  6735. name: "Macro",
  6736. height: math.unit(1000, "feet"),
  6737. default: true
  6738. },
  6739. ]
  6740. ))
  6741. characterMakers.push(() => makeCharacter(
  6742. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6743. {
  6744. front: {
  6745. height: math.unit(6, "feet"),
  6746. weight: math.unit(88, "lbs"),
  6747. name: "Front",
  6748. image: {
  6749. source: "./media/characters/chiros/front.svg",
  6750. extra: 306 / 226
  6751. }
  6752. },
  6753. side: {
  6754. height: math.unit(6, "feet"),
  6755. weight: math.unit(88, "lbs"),
  6756. name: "Side",
  6757. image: {
  6758. source: "./media/characters/chiros/side.svg",
  6759. extra: 306 / 226
  6760. }
  6761. },
  6762. },
  6763. [
  6764. {
  6765. name: "Normal",
  6766. height: math.unit(6, "cm"),
  6767. default: true
  6768. },
  6769. ]
  6770. ))
  6771. characterMakers.push(() => makeCharacter(
  6772. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6773. {
  6774. front: {
  6775. height: math.unit(6, "feet"),
  6776. weight: math.unit(100, "lbs"),
  6777. name: "Front",
  6778. image: {
  6779. source: "./media/characters/selka/front.svg",
  6780. extra: 947 / 887
  6781. }
  6782. }
  6783. },
  6784. [
  6785. {
  6786. name: "Normal",
  6787. height: math.unit(5, "cm"),
  6788. default: true
  6789. },
  6790. ]
  6791. ))
  6792. characterMakers.push(() => makeCharacter(
  6793. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6794. {
  6795. front: {
  6796. height: math.unit(8 + 3 / 12, "feet"),
  6797. weight: math.unit(424, "lbs"),
  6798. name: "Front",
  6799. image: {
  6800. source: "./media/characters/verin/front.svg",
  6801. extra: 1845 / 1550
  6802. }
  6803. },
  6804. frontArmored: {
  6805. height: math.unit(8 + 3 / 12, "feet"),
  6806. weight: math.unit(424, "lbs"),
  6807. name: "Front (Armored)",
  6808. image: {
  6809. source: "./media/characters/verin/front-armor.svg",
  6810. extra: 1845 / 1550,
  6811. bottom: 0.01
  6812. }
  6813. },
  6814. back: {
  6815. height: math.unit(8 + 3 / 12, "feet"),
  6816. weight: math.unit(424, "lbs"),
  6817. name: "Back",
  6818. image: {
  6819. source: "./media/characters/verin/back.svg",
  6820. bottom: 0.1,
  6821. extra: 1
  6822. }
  6823. },
  6824. foot: {
  6825. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6826. name: "Foot",
  6827. image: {
  6828. source: "./media/characters/verin/foot.svg"
  6829. }
  6830. },
  6831. },
  6832. [
  6833. {
  6834. name: "Normal",
  6835. height: math.unit(8 + 3 / 12, "feet")
  6836. },
  6837. {
  6838. name: "Minimacro",
  6839. height: math.unit(21, "feet"),
  6840. default: true
  6841. },
  6842. {
  6843. name: "Macro",
  6844. height: math.unit(626, "feet")
  6845. },
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6850. {
  6851. front: {
  6852. height: math.unit(2.718, "meters"),
  6853. weight: math.unit(150, "lbs"),
  6854. name: "Front",
  6855. image: {
  6856. source: "./media/characters/sovrim-terraquian/front.svg"
  6857. }
  6858. },
  6859. back: {
  6860. height: math.unit(2.718, "meters"),
  6861. weight: math.unit(150, "lbs"),
  6862. name: "Back",
  6863. image: {
  6864. source: "./media/characters/sovrim-terraquian/back.svg"
  6865. }
  6866. }
  6867. },
  6868. [
  6869. {
  6870. name: "Micro",
  6871. height: math.unit(2, "inches")
  6872. },
  6873. {
  6874. name: "Small",
  6875. height: math.unit(1, "meter")
  6876. },
  6877. {
  6878. name: "Normal",
  6879. height: math.unit(Math.E, "meters"),
  6880. default: true
  6881. },
  6882. {
  6883. name: "Macro",
  6884. height: math.unit(20, "meters")
  6885. },
  6886. {
  6887. name: "Macro+",
  6888. height: math.unit(400, "meters")
  6889. },
  6890. ]
  6891. ))
  6892. characterMakers.push(() => makeCharacter(
  6893. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6894. {
  6895. front: {
  6896. height: math.unit(7, "feet"),
  6897. weight: math.unit(489, "lbs"),
  6898. name: "Front",
  6899. image: {
  6900. source: "./media/characters/reece-silvermane/front.svg",
  6901. bottom: 0.02,
  6902. extra: 1
  6903. }
  6904. },
  6905. },
  6906. [
  6907. {
  6908. name: "Macro",
  6909. height: math.unit(1.5, "miles"),
  6910. default: true
  6911. },
  6912. ]
  6913. ))
  6914. characterMakers.push(() => makeCharacter(
  6915. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6916. {
  6917. front: {
  6918. height: math.unit(6, "feet"),
  6919. weight: math.unit(78, "kg"),
  6920. name: "Front",
  6921. image: {
  6922. source: "./media/characters/kane/front.svg",
  6923. extra: 978 / 899
  6924. }
  6925. },
  6926. },
  6927. [
  6928. {
  6929. name: "Normal",
  6930. height: math.unit(2.1, "m"),
  6931. },
  6932. {
  6933. name: "Macro",
  6934. height: math.unit(1, "km"),
  6935. default: true
  6936. },
  6937. ]
  6938. ))
  6939. characterMakers.push(() => makeCharacter(
  6940. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6941. {
  6942. front: {
  6943. height: math.unit(6, "feet"),
  6944. weight: math.unit(200, "kg"),
  6945. name: "Front",
  6946. image: {
  6947. source: "./media/characters/tegon/front.svg",
  6948. bottom: 0.01,
  6949. extra: 1
  6950. }
  6951. },
  6952. },
  6953. [
  6954. {
  6955. name: "Micro",
  6956. height: math.unit(1, "inch")
  6957. },
  6958. {
  6959. name: "Normal",
  6960. height: math.unit(6 + 3 / 12, "feet"),
  6961. default: true
  6962. },
  6963. {
  6964. name: "Macro",
  6965. height: math.unit(300, "feet")
  6966. },
  6967. {
  6968. name: "Megamacro",
  6969. height: math.unit(69, "miles")
  6970. },
  6971. ]
  6972. ))
  6973. characterMakers.push(() => makeCharacter(
  6974. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  6975. {
  6976. side: {
  6977. height: math.unit(6, "feet"),
  6978. weight: math.unit(2304, "lbs"),
  6979. name: "Side",
  6980. image: {
  6981. source: "./media/characters/arcturax/side.svg",
  6982. extra: 790 / 376,
  6983. bottom: 0.01
  6984. }
  6985. },
  6986. },
  6987. [
  6988. {
  6989. name: "Micro",
  6990. height: math.unit(2, "inch")
  6991. },
  6992. {
  6993. name: "Normal",
  6994. height: math.unit(6, "feet")
  6995. },
  6996. {
  6997. name: "Macro",
  6998. height: math.unit(39, "feet"),
  6999. default: true
  7000. },
  7001. {
  7002. name: "Megamacro",
  7003. height: math.unit(7, "miles")
  7004. },
  7005. ]
  7006. ))
  7007. characterMakers.push(() => makeCharacter(
  7008. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7009. {
  7010. front: {
  7011. height: math.unit(6, "feet"),
  7012. weight: math.unit(50, "lbs"),
  7013. name: "Front",
  7014. image: {
  7015. source: "./media/characters/sentri/front.svg",
  7016. extra: 1750 / 1570,
  7017. bottom: 0.025
  7018. }
  7019. },
  7020. frontAlt: {
  7021. height: math.unit(6, "feet"),
  7022. weight: math.unit(50, "lbs"),
  7023. name: "Front (Alt)",
  7024. image: {
  7025. source: "./media/characters/sentri/front-alt.svg",
  7026. extra: 1750 / 1570,
  7027. bottom: 0.025
  7028. }
  7029. },
  7030. },
  7031. [
  7032. {
  7033. name: "Normal",
  7034. height: math.unit(15, "feet"),
  7035. default: true
  7036. },
  7037. {
  7038. name: "Macro",
  7039. height: math.unit(2500, "feet")
  7040. }
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7045. {
  7046. front: {
  7047. height: math.unit(5 + 8 / 12, "feet"),
  7048. weight: math.unit(130, "lbs"),
  7049. name: "Front",
  7050. image: {
  7051. source: "./media/characters/corvin/front.svg",
  7052. extra: 1803 / 1629
  7053. }
  7054. },
  7055. frontShirt: {
  7056. height: math.unit(5 + 8 / 12, "feet"),
  7057. weight: math.unit(130, "lbs"),
  7058. name: "Front (Shirt)",
  7059. image: {
  7060. source: "./media/characters/corvin/front-shirt.svg",
  7061. extra: 1803 / 1629
  7062. }
  7063. },
  7064. frontPoncho: {
  7065. height: math.unit(5 + 8 / 12, "feet"),
  7066. weight: math.unit(130, "lbs"),
  7067. name: "Front (Poncho)",
  7068. image: {
  7069. source: "./media/characters/corvin/front-poncho.svg",
  7070. extra: 1803 / 1629
  7071. }
  7072. },
  7073. side: {
  7074. height: math.unit(5 + 8 / 12, "feet"),
  7075. weight: math.unit(130, "lbs"),
  7076. name: "Side",
  7077. image: {
  7078. source: "./media/characters/corvin/side.svg",
  7079. extra: 1012 / 945
  7080. }
  7081. },
  7082. back: {
  7083. height: math.unit(5 + 8 / 12, "feet"),
  7084. weight: math.unit(130, "lbs"),
  7085. name: "Back",
  7086. image: {
  7087. source: "./media/characters/corvin/back.svg",
  7088. extra: 1803 / 1629
  7089. }
  7090. },
  7091. },
  7092. [
  7093. {
  7094. name: "Micro",
  7095. height: math.unit(3, "inches")
  7096. },
  7097. {
  7098. name: "Normal",
  7099. height: math.unit(5 + 8 / 12, "feet")
  7100. },
  7101. {
  7102. name: "Macro",
  7103. height: math.unit(300, "feet"),
  7104. default: true
  7105. },
  7106. {
  7107. name: "Megamacro",
  7108. height: math.unit(500, "miles")
  7109. }
  7110. ]
  7111. ))
  7112. characterMakers.push(() => makeCharacter(
  7113. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7114. {
  7115. front: {
  7116. height: math.unit(6, "feet"),
  7117. weight: math.unit(135, "lbs"),
  7118. name: "Front",
  7119. image: {
  7120. source: "./media/characters/q/front.svg",
  7121. extra: 854 / 752,
  7122. bottom: 0.005
  7123. }
  7124. },
  7125. back: {
  7126. height: math.unit(6, "feet"),
  7127. weight: math.unit(130, "lbs"),
  7128. name: "Back",
  7129. image: {
  7130. source: "./media/characters/q/back.svg",
  7131. extra: 854 / 752
  7132. }
  7133. },
  7134. },
  7135. [
  7136. {
  7137. name: "Macro",
  7138. height: math.unit(90, "feet"),
  7139. default: true
  7140. },
  7141. {
  7142. name: "Extra Macro",
  7143. height: math.unit(300, "feet"),
  7144. },
  7145. {
  7146. name: "BIG WALF",
  7147. height: math.unit(750, "feet"),
  7148. },
  7149. ]
  7150. ))
  7151. characterMakers.push(() => makeCharacter(
  7152. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7153. {
  7154. front: {
  7155. height: math.unit(6, "feet"),
  7156. weight: math.unit(150, "lbs"),
  7157. name: "Front",
  7158. image: {
  7159. source: "./media/characters/carley/front.svg",
  7160. extra: 3927 / 3540,
  7161. bottom: 0.03
  7162. }
  7163. }
  7164. },
  7165. [
  7166. {
  7167. name: "Normal",
  7168. height: math.unit(6 + 3 / 12, "feet")
  7169. },
  7170. {
  7171. name: "Macro",
  7172. height: math.unit(185, "feet"),
  7173. default: true
  7174. },
  7175. {
  7176. name: "Megamacro",
  7177. height: math.unit(8, "miles"),
  7178. },
  7179. ]
  7180. ))
  7181. characterMakers.push(() => makeCharacter(
  7182. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7183. {
  7184. front: {
  7185. height: math.unit(3, "feet"),
  7186. weight: math.unit(28, "lbs"),
  7187. name: "Front",
  7188. image: {
  7189. source: "./media/characters/citrine/front.svg"
  7190. }
  7191. }
  7192. },
  7193. [
  7194. {
  7195. name: "Normal",
  7196. height: math.unit(3, "feet"),
  7197. default: true
  7198. }
  7199. ]
  7200. ))
  7201. characterMakers.push(() => makeCharacter(
  7202. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7203. {
  7204. front: {
  7205. height: math.unit(14, "feet"),
  7206. weight: math.unit(1450, "kg"),
  7207. capacity: math.unit(15, "people"),
  7208. name: "Front",
  7209. image: {
  7210. source: "./media/characters/aura-starwind/front.svg",
  7211. extra: 1455 / 1335
  7212. }
  7213. },
  7214. side: {
  7215. height: math.unit(14, "feet"),
  7216. weight: math.unit(1450, "kg"),
  7217. capacity: math.unit(15, "people"),
  7218. name: "Side",
  7219. image: {
  7220. source: "./media/characters/aura-starwind/side.svg",
  7221. extra: 1654 / 1497
  7222. }
  7223. },
  7224. taur: {
  7225. height: math.unit(18, "feet"),
  7226. weight: math.unit(5500, "kg"),
  7227. capacity: math.unit(50, "people"),
  7228. name: "Taur",
  7229. image: {
  7230. source: "./media/characters/aura-starwind/taur.svg",
  7231. extra: 1760 / 1650
  7232. }
  7233. },
  7234. feral: {
  7235. height: math.unit(46, "feet"),
  7236. weight: math.unit(25000, "kg"),
  7237. capacity: math.unit(120, "people"),
  7238. name: "Feral",
  7239. image: {
  7240. source: "./media/characters/aura-starwind/feral.svg"
  7241. }
  7242. },
  7243. },
  7244. [
  7245. {
  7246. name: "Normal",
  7247. height: math.unit(14, "feet"),
  7248. default: true
  7249. },
  7250. {
  7251. name: "Macro",
  7252. height: math.unit(50, "meters")
  7253. },
  7254. {
  7255. name: "Megamacro",
  7256. height: math.unit(5000, "meters")
  7257. },
  7258. {
  7259. name: "Gigamacro",
  7260. height: math.unit(100000, "kilometers")
  7261. },
  7262. ]
  7263. ))
  7264. characterMakers.push(() => makeCharacter(
  7265. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7266. {
  7267. front: {
  7268. height: math.unit(2 + 7 / 12, "feet"),
  7269. weight: math.unit(32, "lbs"),
  7270. name: "Front",
  7271. image: {
  7272. source: "./media/characters/rivet/front.svg",
  7273. extra: 1716 / 1658,
  7274. bottom: 0.03
  7275. }
  7276. },
  7277. foot: {
  7278. height: math.unit(0.551, "feet"),
  7279. name: "Rivet's Foot",
  7280. image: {
  7281. source: "./media/characters/rivet/foot.svg"
  7282. },
  7283. rename: true
  7284. }
  7285. },
  7286. [
  7287. {
  7288. name: "Micro",
  7289. height: math.unit(1.5, "inches"),
  7290. },
  7291. {
  7292. name: "Normal",
  7293. height: math.unit(2 + 7 / 12, "feet"),
  7294. default: true
  7295. },
  7296. {
  7297. name: "Macro",
  7298. height: math.unit(85, "feet")
  7299. },
  7300. {
  7301. name: "Megamacro",
  7302. height: math.unit(2.2, "km")
  7303. }
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7308. {
  7309. front: {
  7310. height: math.unit(5 + 9 / 12, "feet"),
  7311. weight: math.unit(150, "lbs"),
  7312. name: "Front",
  7313. image: {
  7314. source: "./media/characters/coffee/front.svg",
  7315. extra: 3666 / 3032,
  7316. bottom: 0.04
  7317. }
  7318. },
  7319. foot: {
  7320. height: math.unit(1.29, "feet"),
  7321. name: "Foot",
  7322. image: {
  7323. source: "./media/characters/coffee/foot.svg"
  7324. }
  7325. },
  7326. },
  7327. [
  7328. {
  7329. name: "Micro",
  7330. height: math.unit(2, "inches"),
  7331. },
  7332. {
  7333. name: "Normal",
  7334. height: math.unit(5 + 9 / 12, "feet"),
  7335. default: true
  7336. },
  7337. {
  7338. name: "Macro",
  7339. height: math.unit(800, "feet")
  7340. },
  7341. {
  7342. name: "Megamacro",
  7343. height: math.unit(25, "miles")
  7344. }
  7345. ]
  7346. ))
  7347. characterMakers.push(() => makeCharacter(
  7348. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7349. {
  7350. front: {
  7351. height: math.unit(6, "feet"),
  7352. weight: math.unit(200, "lbs"),
  7353. name: "Front",
  7354. image: {
  7355. source: "./media/characters/chari-gal/front.svg",
  7356. extra: 1568 / 1385,
  7357. bottom: 0.047
  7358. }
  7359. },
  7360. gigantamax: {
  7361. height: math.unit(6 * 16, "feet"),
  7362. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7363. name: "Gigantamax",
  7364. image: {
  7365. source: "./media/characters/chari-gal/gigantamax.svg",
  7366. extra: 1124 / 888,
  7367. bottom: 0.03
  7368. }
  7369. },
  7370. },
  7371. [
  7372. {
  7373. name: "Normal",
  7374. height: math.unit(5 + 7 / 12, "feet")
  7375. },
  7376. {
  7377. name: "Macro",
  7378. height: math.unit(200, "feet"),
  7379. default: true
  7380. }
  7381. ]
  7382. ))
  7383. characterMakers.push(() => makeCharacter(
  7384. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7385. {
  7386. front: {
  7387. height: math.unit(6, "feet"),
  7388. weight: math.unit(150, "lbs"),
  7389. name: "Front",
  7390. image: {
  7391. source: "./media/characters/nova/front.svg",
  7392. extra: 5000 / 4722,
  7393. bottom: 0.02
  7394. }
  7395. }
  7396. },
  7397. [
  7398. {
  7399. name: "Micro-",
  7400. height: math.unit(0.8, "inches")
  7401. },
  7402. {
  7403. name: "Micro",
  7404. height: math.unit(2, "inches"),
  7405. default: true
  7406. },
  7407. ]
  7408. ))
  7409. characterMakers.push(() => makeCharacter(
  7410. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7411. {
  7412. front: {
  7413. height: math.unit(3 + 1 / 12, "feet"),
  7414. weight: math.unit(21.7, "lbs"),
  7415. name: "Front",
  7416. image: {
  7417. source: "./media/characters/argent/front.svg",
  7418. extra: 1471 / 1331,
  7419. bottom: 100.8 / 1575.5
  7420. }
  7421. }
  7422. },
  7423. [
  7424. {
  7425. name: "Micro",
  7426. height: math.unit(2, "inches")
  7427. },
  7428. {
  7429. name: "Normal",
  7430. height: math.unit(3 + 1 / 12, "feet"),
  7431. default: true
  7432. },
  7433. {
  7434. name: "Macro",
  7435. height: math.unit(120, "feet")
  7436. },
  7437. ]
  7438. ))
  7439. characterMakers.push(() => makeCharacter(
  7440. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7441. {
  7442. lamp: {
  7443. height: math.unit(7 * 1559 / 989, "feet"),
  7444. name: "Magic Lamp",
  7445. image: {
  7446. source: "./media/characters/mira-al-cul/lamp.svg",
  7447. extra: 1617 / 1559
  7448. }
  7449. },
  7450. front: {
  7451. height: math.unit(7, "feet"),
  7452. name: "Front",
  7453. image: {
  7454. source: "./media/characters/mira-al-cul/front.svg",
  7455. extra: 1044 / 990
  7456. }
  7457. },
  7458. },
  7459. [
  7460. {
  7461. name: "Heavily Restricted",
  7462. height: math.unit(7 * 1559 / 989, "feet")
  7463. },
  7464. {
  7465. name: "Freshly Freed",
  7466. height: math.unit(50 * 1559 / 989, "feet")
  7467. },
  7468. {
  7469. name: "World Encompassing",
  7470. height: math.unit(10000 * 1559 / 989, "miles")
  7471. },
  7472. {
  7473. name: "Galactic",
  7474. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7475. },
  7476. {
  7477. name: "Palmed Universe",
  7478. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7479. default: true
  7480. },
  7481. {
  7482. name: "Multiversal Matriarch",
  7483. height: math.unit(8.87e10, "yottameters")
  7484. },
  7485. {
  7486. name: "Void Mother",
  7487. height: math.unit(3.14e110, "yottaparsecs")
  7488. },
  7489. ]
  7490. ))
  7491. characterMakers.push(() => makeCharacter(
  7492. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7493. {
  7494. front: {
  7495. height: math.unit(17 + 1 / 12, "feet"),
  7496. weight: math.unit(476.2 * 5, "lbs"),
  7497. name: "Front",
  7498. image: {
  7499. source: "./media/characters/kuro-shi-uchū/front.svg",
  7500. extra: 2329 / 1835,
  7501. bottom: 0.02
  7502. }
  7503. },
  7504. },
  7505. [
  7506. {
  7507. name: "Micro",
  7508. height: math.unit(2, "inches")
  7509. },
  7510. {
  7511. name: "Normal",
  7512. height: math.unit(12, "meters")
  7513. },
  7514. {
  7515. name: "Planetary",
  7516. height: math.unit(0.00929, "AU"),
  7517. default: true
  7518. },
  7519. {
  7520. name: "Universal",
  7521. height: math.unit(20, "gigaparsecs")
  7522. },
  7523. ]
  7524. ))
  7525. characterMakers.push(() => makeCharacter(
  7526. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7527. {
  7528. front: {
  7529. height: math.unit(5 + 2 / 12, "feet"),
  7530. weight: math.unit(120, "lbs"),
  7531. name: "Front",
  7532. image: {
  7533. source: "./media/characters/katherine/front.svg",
  7534. extra: 2075 / 1969
  7535. }
  7536. },
  7537. dress: {
  7538. height: math.unit(5 + 2 / 12, "feet"),
  7539. weight: math.unit(120, "lbs"),
  7540. name: "Dress",
  7541. image: {
  7542. source: "./media/characters/katherine/dress.svg",
  7543. extra: 2258 / 2064
  7544. }
  7545. },
  7546. },
  7547. [
  7548. {
  7549. name: "Micro",
  7550. height: math.unit(1, "inches"),
  7551. default: true
  7552. },
  7553. {
  7554. name: "Normal",
  7555. height: math.unit(5 + 2 / 12, "feet")
  7556. },
  7557. {
  7558. name: "Macro",
  7559. height: math.unit(100, "meters")
  7560. },
  7561. {
  7562. name: "Megamacro",
  7563. height: math.unit(80, "miles")
  7564. },
  7565. ]
  7566. ))
  7567. characterMakers.push(() => makeCharacter(
  7568. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7569. {
  7570. front: {
  7571. height: math.unit(7 + 8 / 12, "feet"),
  7572. weight: math.unit(250, "lbs"),
  7573. name: "Front",
  7574. image: {
  7575. source: "./media/characters/yevis/front.svg",
  7576. extra: 1938 / 1755
  7577. }
  7578. }
  7579. },
  7580. [
  7581. {
  7582. name: "Mortal",
  7583. height: math.unit(7 + 8 / 12, "feet")
  7584. },
  7585. {
  7586. name: "Battle",
  7587. height: math.unit(25 + 11 / 12, "feet")
  7588. },
  7589. {
  7590. name: "Wrath",
  7591. height: math.unit(1654 + 11 / 12, "feet")
  7592. },
  7593. {
  7594. name: "Planet Destroyer",
  7595. height: math.unit(12000, "miles")
  7596. },
  7597. {
  7598. name: "Galaxy Conqueror",
  7599. height: math.unit(1.45, "zettameters"),
  7600. default: true
  7601. },
  7602. {
  7603. name: "Universal War",
  7604. height: math.unit(184, "gigaparsecs")
  7605. },
  7606. {
  7607. name: "Eternity War",
  7608. height: math.unit(1.98e55, "yottaparsecs")
  7609. },
  7610. ]
  7611. ))
  7612. characterMakers.push(() => makeCharacter(
  7613. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7614. {
  7615. front: {
  7616. height: math.unit(5 + 8 / 12, "feet"),
  7617. weight: math.unit(63, "kg"),
  7618. name: "Front",
  7619. image: {
  7620. source: "./media/characters/xavier/front.svg",
  7621. extra: 944 / 883
  7622. }
  7623. },
  7624. frontStretch: {
  7625. height: math.unit(5 + 8 / 12, "feet"),
  7626. weight: math.unit(63, "kg"),
  7627. name: "Stretching",
  7628. image: {
  7629. source: "./media/characters/xavier/front-stretch.svg",
  7630. extra: 962 / 820
  7631. }
  7632. },
  7633. },
  7634. [
  7635. {
  7636. name: "Normal",
  7637. height: math.unit(5 + 8 / 12, "feet")
  7638. },
  7639. {
  7640. name: "Macro",
  7641. height: math.unit(100, "meters"),
  7642. default: true
  7643. },
  7644. {
  7645. name: "McLargeHuge",
  7646. height: math.unit(10, "miles")
  7647. },
  7648. ]
  7649. ))
  7650. characterMakers.push(() => makeCharacter(
  7651. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7652. {
  7653. front: {
  7654. height: math.unit(5 + 5 / 12, "feet"),
  7655. weight: math.unit(150, "lb"),
  7656. name: "Front",
  7657. image: {
  7658. source: "./media/characters/joshii/front.svg"
  7659. }
  7660. },
  7661. foot: {
  7662. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7663. name: "Foot",
  7664. image: {
  7665. source: "./media/characters/joshii/foot.svg"
  7666. }
  7667. },
  7668. },
  7669. [
  7670. {
  7671. name: "Micro",
  7672. height: math.unit(2, "inches")
  7673. },
  7674. {
  7675. name: "Normal",
  7676. height: math.unit(5 + 5 / 12, "feet"),
  7677. default: true
  7678. },
  7679. {
  7680. name: "Macro",
  7681. height: math.unit(785, "feet")
  7682. },
  7683. {
  7684. name: "Megamacro",
  7685. height: math.unit(24.5, "miles")
  7686. },
  7687. ]
  7688. ))
  7689. characterMakers.push(() => makeCharacter(
  7690. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7691. {
  7692. front: {
  7693. height: math.unit(6, "feet"),
  7694. weight: math.unit(150, "lb"),
  7695. name: "Front",
  7696. image: {
  7697. source: "./media/characters/goddess-elizabeth/front.svg",
  7698. extra: 1800 / 1525,
  7699. bottom: 0.005
  7700. }
  7701. },
  7702. foot: {
  7703. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7704. name: "Foot",
  7705. image: {
  7706. source: "./media/characters/goddess-elizabeth/foot.svg"
  7707. }
  7708. },
  7709. mouth: {
  7710. height: math.unit(6, "feet"),
  7711. name: "Mouth",
  7712. image: {
  7713. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7714. }
  7715. },
  7716. },
  7717. [
  7718. {
  7719. name: "Micro",
  7720. height: math.unit(12, "feet")
  7721. },
  7722. {
  7723. name: "Normal",
  7724. height: math.unit(80, "miles"),
  7725. default: true
  7726. },
  7727. {
  7728. name: "Macro",
  7729. height: math.unit(15000, "parsecs")
  7730. },
  7731. ]
  7732. ))
  7733. characterMakers.push(() => makeCharacter(
  7734. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7735. {
  7736. front: {
  7737. height: math.unit(5 + 9 / 12, "feet"),
  7738. weight: math.unit(144, "lb"),
  7739. name: "Front",
  7740. image: {
  7741. source: "./media/characters/kara/front.svg"
  7742. }
  7743. },
  7744. feet: {
  7745. height: math.unit(6 / 6.765, "feet"),
  7746. name: "Kara's Feet",
  7747. rename: true,
  7748. image: {
  7749. source: "./media/characters/kara/feet.svg"
  7750. }
  7751. },
  7752. },
  7753. [
  7754. {
  7755. name: "Normal",
  7756. height: math.unit(5 + 9 / 12, "feet")
  7757. },
  7758. {
  7759. name: "Macro",
  7760. height: math.unit(174, "feet"),
  7761. default: true
  7762. },
  7763. ]
  7764. ))
  7765. characterMakers.push(() => makeCharacter(
  7766. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7767. {
  7768. front: {
  7769. height: math.unit(18, "feet"),
  7770. weight: math.unit(4050, "lb"),
  7771. name: "Front",
  7772. image: {
  7773. source: "./media/characters/tyrone/front.svg",
  7774. extra: 2520 / 2402,
  7775. bottom: 0.025
  7776. }
  7777. },
  7778. },
  7779. [
  7780. {
  7781. name: "Normal",
  7782. height: math.unit(18, "feet"),
  7783. default: true
  7784. },
  7785. {
  7786. name: "Macro",
  7787. height: math.unit(300, "feet")
  7788. },
  7789. ]
  7790. ))
  7791. characterMakers.push(() => makeCharacter(
  7792. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7793. {
  7794. front: {
  7795. height: math.unit(7 + 8 / 12, "feet"),
  7796. weight: math.unit(120, "lb"),
  7797. name: "Front",
  7798. image: {
  7799. source: "./media/characters/danny/front.svg",
  7800. extra: 1490 / 1350
  7801. }
  7802. },
  7803. back: {
  7804. height: math.unit(7 + 8 / 12, "feet"),
  7805. weight: math.unit(120, "lb"),
  7806. name: "Back",
  7807. image: {
  7808. source: "./media/characters/danny/back.svg",
  7809. extra: 1490 / 1350
  7810. }
  7811. },
  7812. },
  7813. [
  7814. {
  7815. name: "Normal",
  7816. height: math.unit(7 + 8 / 12, "feet"),
  7817. default: true
  7818. },
  7819. ]
  7820. ))
  7821. characterMakers.push(() => makeCharacter(
  7822. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7823. {
  7824. front: {
  7825. height: math.unit(3.5, "inches"),
  7826. weight: math.unit(19, "grams"),
  7827. name: "Front",
  7828. image: {
  7829. source: "./media/characters/mallow/front.svg",
  7830. extra: 471 / 431
  7831. }
  7832. },
  7833. back: {
  7834. height: math.unit(3.5, "inches"),
  7835. weight: math.unit(19, "grams"),
  7836. name: "Back",
  7837. image: {
  7838. source: "./media/characters/mallow/back.svg",
  7839. extra: 471 / 431
  7840. }
  7841. },
  7842. },
  7843. [
  7844. {
  7845. name: "Normal",
  7846. height: math.unit(3.5, "inches"),
  7847. default: true
  7848. },
  7849. ]
  7850. ))
  7851. characterMakers.push(() => makeCharacter(
  7852. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7853. {
  7854. front: {
  7855. height: math.unit(9, "feet"),
  7856. weight: math.unit(230, "kg"),
  7857. name: "Front",
  7858. image: {
  7859. source: "./media/characters/starry-aqua/front.svg"
  7860. }
  7861. },
  7862. back: {
  7863. height: math.unit(9, "feet"),
  7864. weight: math.unit(230, "kg"),
  7865. name: "Back",
  7866. image: {
  7867. source: "./media/characters/starry-aqua/back.svg"
  7868. }
  7869. },
  7870. hand: {
  7871. height: math.unit(9 * 0.1168, "feet"),
  7872. name: "Hand",
  7873. image: {
  7874. source: "./media/characters/starry-aqua/hand.svg"
  7875. }
  7876. },
  7877. foot: {
  7878. height: math.unit(9 * 0.18, "feet"),
  7879. name: "Foot",
  7880. image: {
  7881. source: "./media/characters/starry-aqua/foot.svg"
  7882. }
  7883. }
  7884. },
  7885. [
  7886. {
  7887. name: "Micro",
  7888. height: math.unit(3, "inches")
  7889. },
  7890. {
  7891. name: "Normal",
  7892. height: math.unit(9, "feet")
  7893. },
  7894. {
  7895. name: "Macro",
  7896. height: math.unit(300, "feet"),
  7897. default: true
  7898. },
  7899. {
  7900. name: "Megamacro",
  7901. height: math.unit(3200, "feet")
  7902. }
  7903. ]
  7904. ))
  7905. characterMakers.push(() => makeCharacter(
  7906. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7907. {
  7908. front: {
  7909. height: math.unit(6, "feet"),
  7910. weight: math.unit(230, "lb"),
  7911. name: "Front",
  7912. image: {
  7913. source: "./media/characters/luka/front.svg",
  7914. extra: 1,
  7915. bottom: 0.025
  7916. }
  7917. },
  7918. },
  7919. [
  7920. {
  7921. name: "Normal",
  7922. height: math.unit(12 + 8 / 12, "feet"),
  7923. default: true
  7924. },
  7925. {
  7926. name: "Minimacro",
  7927. height: math.unit(20, "feet")
  7928. },
  7929. {
  7930. name: "Macro",
  7931. height: math.unit(250, "feet")
  7932. },
  7933. {
  7934. name: "Megamacro",
  7935. height: math.unit(5, "miles")
  7936. },
  7937. {
  7938. name: "Gigamacro",
  7939. height: math.unit(8000, "miles")
  7940. },
  7941. ]
  7942. ))
  7943. characterMakers.push(() => makeCharacter(
  7944. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7945. {
  7946. front: {
  7947. height: math.unit(6, "feet"),
  7948. weight: math.unit(150, "lb"),
  7949. name: "Front",
  7950. image: {
  7951. source: "./media/characters/natalie-nightring/front.svg",
  7952. extra: 1,
  7953. bottom: 0.06
  7954. }
  7955. },
  7956. },
  7957. [
  7958. {
  7959. name: "Uh Oh",
  7960. height: math.unit(0.1, "mm")
  7961. },
  7962. {
  7963. name: "Small",
  7964. height: math.unit(3, "inches")
  7965. },
  7966. {
  7967. name: "Human Scale",
  7968. height: math.unit(6, "feet")
  7969. },
  7970. {
  7971. name: "Librarian",
  7972. height: math.unit(50, "feet"),
  7973. default: true
  7974. },
  7975. {
  7976. name: "Immense",
  7977. height: math.unit(200, "miles")
  7978. },
  7979. ]
  7980. ))
  7981. characterMakers.push(() => makeCharacter(
  7982. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  7983. {
  7984. front: {
  7985. height: math.unit(6, "feet"),
  7986. weight: math.unit(180, "lbs"),
  7987. name: "Front",
  7988. image: {
  7989. source: "./media/characters/danni-rosie/front.svg",
  7990. extra: 1260 / 1128,
  7991. bottom: 0.022
  7992. }
  7993. },
  7994. },
  7995. [
  7996. {
  7997. name: "Micro",
  7998. height: math.unit(2, "inches"),
  7999. default: true
  8000. },
  8001. ]
  8002. ))
  8003. characterMakers.push(() => makeCharacter(
  8004. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8005. {
  8006. front: {
  8007. height: math.unit(5 + 9 / 12, "feet"),
  8008. weight: math.unit(220, "lb"),
  8009. name: "Front",
  8010. image: {
  8011. source: "./media/characters/samantha-kruse/front.svg",
  8012. extra: (985 / 935),
  8013. bottom: 0.03
  8014. }
  8015. },
  8016. frontUndressed: {
  8017. height: math.unit(5 + 9 / 12, "feet"),
  8018. weight: math.unit(220, "lb"),
  8019. name: "Front (Undressed)",
  8020. image: {
  8021. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8022. extra: (973 / 923),
  8023. bottom: 0.025
  8024. }
  8025. },
  8026. fat: {
  8027. height: math.unit(5 + 9 / 12, "feet"),
  8028. weight: math.unit(900, "lb"),
  8029. name: "Front (Fat)",
  8030. image: {
  8031. source: "./media/characters/samantha-kruse/fat.svg",
  8032. extra: 2688 / 2561
  8033. }
  8034. },
  8035. },
  8036. [
  8037. {
  8038. name: "Normal",
  8039. height: math.unit(5 + 9 / 12, "feet"),
  8040. default: true
  8041. }
  8042. ]
  8043. ))
  8044. characterMakers.push(() => makeCharacter(
  8045. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8046. {
  8047. back: {
  8048. height: math.unit(5 + 4 / 12, "feet"),
  8049. weight: math.unit(4963, "lb"),
  8050. name: "Back",
  8051. image: {
  8052. source: "./media/characters/amelia-rosie/back.svg",
  8053. extra: 1113 / 963,
  8054. bottom: 0.01
  8055. }
  8056. },
  8057. },
  8058. [
  8059. {
  8060. name: "Level 0",
  8061. height: math.unit(5 + 4 / 12, "feet")
  8062. },
  8063. {
  8064. name: "Level 1",
  8065. height: math.unit(164597, "feet"),
  8066. default: true
  8067. },
  8068. {
  8069. name: "Level 2",
  8070. height: math.unit(956243, "miles")
  8071. },
  8072. {
  8073. name: "Level 3",
  8074. height: math.unit(29421709423, "miles")
  8075. },
  8076. {
  8077. name: "Level 4",
  8078. height: math.unit(154, "lightyears")
  8079. },
  8080. {
  8081. name: "Level 5",
  8082. height: math.unit(4738272, "lightyears")
  8083. },
  8084. {
  8085. name: "Level 6",
  8086. height: math.unit(145787152896, "lightyears")
  8087. },
  8088. ]
  8089. ))
  8090. characterMakers.push(() => makeCharacter(
  8091. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8092. {
  8093. front: {
  8094. height: math.unit(5 + 11 / 12, "feet"),
  8095. weight: math.unit(65, "kg"),
  8096. name: "Front",
  8097. image: {
  8098. source: "./media/characters/rook-kitara/front.svg",
  8099. extra: 1347 / 1274,
  8100. bottom: 0.005
  8101. }
  8102. },
  8103. },
  8104. [
  8105. {
  8106. name: "Totally Unfair",
  8107. height: math.unit(1.8, "mm")
  8108. },
  8109. {
  8110. name: "Lap Rookie",
  8111. height: math.unit(1.4, "feet")
  8112. },
  8113. {
  8114. name: "Normal",
  8115. height: math.unit(5 + 11 / 12, "feet"),
  8116. default: true
  8117. },
  8118. {
  8119. name: "How Did This Happen",
  8120. height: math.unit(80, "miles")
  8121. }
  8122. ]
  8123. ))
  8124. characterMakers.push(() => makeCharacter(
  8125. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8126. {
  8127. front: {
  8128. height: math.unit(7, "feet"),
  8129. weight: math.unit(300, "lb"),
  8130. name: "Front",
  8131. image: {
  8132. source: "./media/characters/pisces/front.svg",
  8133. extra: 2255 / 2115,
  8134. bottom: 0.03
  8135. }
  8136. },
  8137. back: {
  8138. height: math.unit(7, "feet"),
  8139. weight: math.unit(300, "lb"),
  8140. name: "Back",
  8141. image: {
  8142. source: "./media/characters/pisces/back.svg",
  8143. extra: 2146 / 2055,
  8144. bottom: 0.04
  8145. }
  8146. },
  8147. },
  8148. [
  8149. {
  8150. name: "Normal",
  8151. height: math.unit(7, "feet"),
  8152. default: true
  8153. },
  8154. {
  8155. name: "Swimming Pool",
  8156. height: math.unit(12.2, "meters")
  8157. },
  8158. {
  8159. name: "Olympic Swimming Pool",
  8160. height: math.unit(56.3, "meters")
  8161. },
  8162. {
  8163. name: "Lake Superior",
  8164. height: math.unit(93900, "meters")
  8165. },
  8166. {
  8167. name: "Mediterranean Sea",
  8168. height: math.unit(644457, "meters")
  8169. },
  8170. {
  8171. name: "World's Oceans",
  8172. height: math.unit(4567491, "meters")
  8173. },
  8174. ]
  8175. ))
  8176. characterMakers.push(() => makeCharacter(
  8177. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8178. {
  8179. front: {
  8180. height: math.unit(2.3, "meters"),
  8181. weight: math.unit(120, "kg"),
  8182. name: "Front",
  8183. image: {
  8184. source: "./media/characters/zelas/front.svg"
  8185. }
  8186. },
  8187. side: {
  8188. height: math.unit(2.3, "meters"),
  8189. weight: math.unit(120, "kg"),
  8190. name: "Side",
  8191. image: {
  8192. source: "./media/characters/zelas/side.svg"
  8193. }
  8194. },
  8195. back: {
  8196. height: math.unit(2.3, "meters"),
  8197. weight: math.unit(120, "kg"),
  8198. name: "Back",
  8199. image: {
  8200. source: "./media/characters/zelas/back.svg"
  8201. }
  8202. },
  8203. foot: {
  8204. height: math.unit(1.116, "feet"),
  8205. name: "Foot",
  8206. image: {
  8207. source: "./media/characters/zelas/foot.svg"
  8208. }
  8209. },
  8210. },
  8211. [
  8212. {
  8213. name: "Normal",
  8214. height: math.unit(2.3, "meters")
  8215. },
  8216. {
  8217. name: "Macro",
  8218. height: math.unit(30, "meters"),
  8219. default: true
  8220. },
  8221. ]
  8222. ))
  8223. characterMakers.push(() => makeCharacter(
  8224. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8225. {
  8226. front: {
  8227. height: math.unit(1, "inch"),
  8228. weight: math.unit(0.21, "grams"),
  8229. name: "Front",
  8230. image: {
  8231. source: "./media/characters/talbot/front.svg",
  8232. extra: 594 / 544
  8233. }
  8234. },
  8235. },
  8236. [
  8237. {
  8238. name: "Micro",
  8239. height: math.unit(1, "inch"),
  8240. default: true
  8241. },
  8242. ]
  8243. ))
  8244. characterMakers.push(() => makeCharacter(
  8245. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8246. {
  8247. front: {
  8248. height: math.unit(3 + 3 / 12, "feet"),
  8249. weight: math.unit(51.8, "lb"),
  8250. name: "Front",
  8251. image: {
  8252. source: "./media/characters/fliss/front.svg",
  8253. extra: 840 / 640
  8254. }
  8255. },
  8256. },
  8257. [
  8258. {
  8259. name: "Teeny Tiny",
  8260. height: math.unit(1, "mm")
  8261. },
  8262. {
  8263. name: "Small",
  8264. height: math.unit(1, "inch"),
  8265. default: true
  8266. },
  8267. {
  8268. name: "Standard Sylveon",
  8269. height: math.unit(3 + 3 / 12, "feet")
  8270. },
  8271. {
  8272. name: "Large Nuisance",
  8273. height: math.unit(33, "feet")
  8274. },
  8275. {
  8276. name: "City Filler",
  8277. height: math.unit(3000, "feet")
  8278. },
  8279. {
  8280. name: "New Horizon",
  8281. height: math.unit(6000, "miles")
  8282. },
  8283. ]
  8284. ))
  8285. characterMakers.push(() => makeCharacter(
  8286. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8287. {
  8288. front: {
  8289. height: math.unit(5, "cm"),
  8290. weight: math.unit(1.94, "g"),
  8291. name: "Front",
  8292. image: {
  8293. source: "./media/characters/fleta/front.svg",
  8294. extra: 835 / 803
  8295. }
  8296. },
  8297. back: {
  8298. height: math.unit(5, "cm"),
  8299. weight: math.unit(1.94, "g"),
  8300. name: "Back",
  8301. image: {
  8302. source: "./media/characters/fleta/back.svg",
  8303. extra: 835 / 803
  8304. }
  8305. },
  8306. },
  8307. [
  8308. {
  8309. name: "Micro",
  8310. height: math.unit(5, "cm"),
  8311. default: true
  8312. },
  8313. ]
  8314. ))
  8315. characterMakers.push(() => makeCharacter(
  8316. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8317. {
  8318. front: {
  8319. height: math.unit(6, "feet"),
  8320. weight: math.unit(225, "lb"),
  8321. name: "Front",
  8322. image: {
  8323. source: "./media/characters/dominic/front.svg",
  8324. extra: 1770 / 1620,
  8325. bottom: 0.025
  8326. }
  8327. },
  8328. back: {
  8329. height: math.unit(6, "feet"),
  8330. weight: math.unit(225, "lb"),
  8331. name: "Back",
  8332. image: {
  8333. source: "./media/characters/dominic/back.svg",
  8334. extra: 1745 / 1620,
  8335. bottom: 0.065
  8336. }
  8337. },
  8338. },
  8339. [
  8340. {
  8341. name: "Nano",
  8342. height: math.unit(0.1, "mm")
  8343. },
  8344. {
  8345. name: "Micro-",
  8346. height: math.unit(1, "mm")
  8347. },
  8348. {
  8349. name: "Micro",
  8350. height: math.unit(4, "inches")
  8351. },
  8352. {
  8353. name: "Normal",
  8354. height: math.unit(6 + 4 / 12, "feet"),
  8355. default: true
  8356. },
  8357. {
  8358. name: "Macro",
  8359. height: math.unit(115, "feet")
  8360. },
  8361. {
  8362. name: "Macro+",
  8363. height: math.unit(955, "feet")
  8364. },
  8365. {
  8366. name: "Megamacro",
  8367. height: math.unit(8990, "feet")
  8368. },
  8369. {
  8370. name: "Gigmacro",
  8371. height: math.unit(9310, "miles")
  8372. },
  8373. {
  8374. name: "Teramacro",
  8375. height: math.unit(1567005010, "miles")
  8376. },
  8377. {
  8378. name: "Examacro",
  8379. height: math.unit(1425, "parsecs")
  8380. },
  8381. ]
  8382. ))
  8383. characterMakers.push(() => makeCharacter(
  8384. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8385. {
  8386. front: {
  8387. height: math.unit(400, "feet"),
  8388. weight: math.unit(44444444, "lb"),
  8389. name: "Front",
  8390. image: {
  8391. source: "./media/characters/major-colonel/front.svg"
  8392. }
  8393. },
  8394. back: {
  8395. height: math.unit(400, "feet"),
  8396. weight: math.unit(44444444, "lb"),
  8397. name: "Back",
  8398. image: {
  8399. source: "./media/characters/major-colonel/back.svg"
  8400. }
  8401. },
  8402. },
  8403. [
  8404. {
  8405. name: "Macro",
  8406. height: math.unit(400, "feet"),
  8407. default: true
  8408. },
  8409. ]
  8410. ))
  8411. characterMakers.push(() => makeCharacter(
  8412. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8413. {
  8414. catFront: {
  8415. height: math.unit(6, "feet"),
  8416. weight: math.unit(120, "lb"),
  8417. name: "Front (Cat Side)",
  8418. image: {
  8419. source: "./media/characters/axel-lycan/cat-front.svg",
  8420. extra: 430 / 402,
  8421. bottom: 43 / 472.35
  8422. }
  8423. },
  8424. catBack: {
  8425. height: math.unit(6, "feet"),
  8426. weight: math.unit(120, "lb"),
  8427. name: "Back (Cat Side)",
  8428. image: {
  8429. source: "./media/characters/axel-lycan/cat-back.svg",
  8430. extra: 447 / 419,
  8431. bottom: 23.3 / 469
  8432. }
  8433. },
  8434. wolfFront: {
  8435. height: math.unit(6, "feet"),
  8436. weight: math.unit(120, "lb"),
  8437. name: "Front (Wolf Side)",
  8438. image: {
  8439. source: "./media/characters/axel-lycan/wolf-front.svg",
  8440. extra: 485 / 456,
  8441. bottom: 19 / 504
  8442. }
  8443. },
  8444. wolfBack: {
  8445. height: math.unit(6, "feet"),
  8446. weight: math.unit(120, "lb"),
  8447. name: "Back (Wolf Side)",
  8448. image: {
  8449. source: "./media/characters/axel-lycan/wolf-back.svg",
  8450. extra: 475 / 438,
  8451. bottom: 39.2 / 514
  8452. }
  8453. },
  8454. },
  8455. [
  8456. {
  8457. name: "Macro",
  8458. height: math.unit(1, "km"),
  8459. default: true
  8460. },
  8461. ]
  8462. ))
  8463. characterMakers.push(() => makeCharacter(
  8464. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8465. {
  8466. front: {
  8467. height: math.unit(5 + 9 / 12, "feet"),
  8468. weight: math.unit(175, "lb"),
  8469. name: "Front",
  8470. image: {
  8471. source: "./media/characters/vanrel-hyena/front.svg",
  8472. extra: 1086 / 1010,
  8473. bottom: 0.04
  8474. }
  8475. },
  8476. },
  8477. [
  8478. {
  8479. name: "Normal",
  8480. height: math.unit(5 + 9 / 12, "feet"),
  8481. default: true
  8482. },
  8483. ]
  8484. ))
  8485. characterMakers.push(() => makeCharacter(
  8486. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8487. {
  8488. front: {
  8489. height: math.unit(6, "feet"),
  8490. weight: math.unit(103, "lb"),
  8491. name: "Front",
  8492. image: {
  8493. source: "./media/characters/abbott-absol/front.svg",
  8494. extra: 2010 / 1842
  8495. }
  8496. },
  8497. },
  8498. [
  8499. {
  8500. name: "Megamicro",
  8501. height: math.unit(0.1, "mm")
  8502. },
  8503. {
  8504. name: "Micro",
  8505. height: math.unit(1, "inch")
  8506. },
  8507. {
  8508. name: "Normal",
  8509. height: math.unit(6, "feet"),
  8510. default: true
  8511. },
  8512. ]
  8513. ))
  8514. characterMakers.push(() => makeCharacter(
  8515. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8516. {
  8517. front: {
  8518. height: math.unit(6, "feet"),
  8519. weight: math.unit(264, "lb"),
  8520. name: "Front",
  8521. image: {
  8522. source: "./media/characters/hector/front.svg",
  8523. extra: 2280 / 2130,
  8524. bottom: 0.07
  8525. }
  8526. },
  8527. },
  8528. [
  8529. {
  8530. name: "Normal",
  8531. height: math.unit(12.25, "foot"),
  8532. default: true
  8533. },
  8534. {
  8535. name: "Macro",
  8536. height: math.unit(160, "feet")
  8537. },
  8538. ]
  8539. ))
  8540. characterMakers.push(() => makeCharacter(
  8541. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8542. {
  8543. front: {
  8544. height: math.unit(6, "feet"),
  8545. weight: math.unit(150, "lb"),
  8546. name: "Front",
  8547. image: {
  8548. source: "./media/characters/sal/front.svg",
  8549. extra: 1846 / 1699,
  8550. bottom: 0.04
  8551. }
  8552. },
  8553. },
  8554. [
  8555. {
  8556. name: "Megamacro",
  8557. height: math.unit(10, "miles"),
  8558. default: true
  8559. },
  8560. ]
  8561. ))
  8562. characterMakers.push(() => makeCharacter(
  8563. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8564. {
  8565. front: {
  8566. height: math.unit(3, "meters"),
  8567. weight: math.unit(450, "kg"),
  8568. name: "front",
  8569. image: {
  8570. source: "./media/characters/ranger/front.svg",
  8571. extra: 2401 / 2243,
  8572. bottom: 0.05
  8573. }
  8574. },
  8575. },
  8576. [
  8577. {
  8578. name: "Normal",
  8579. height: math.unit(3, "meters"),
  8580. default: true
  8581. },
  8582. ]
  8583. ))
  8584. characterMakers.push(() => makeCharacter(
  8585. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8586. {
  8587. front: {
  8588. height: math.unit(14, "feet"),
  8589. weight: math.unit(800, "kg"),
  8590. name: "Front",
  8591. image: {
  8592. source: "./media/characters/theresa/front.svg",
  8593. extra: 3575 / 3346,
  8594. bottom: 0.03
  8595. }
  8596. },
  8597. },
  8598. [
  8599. {
  8600. name: "Normal",
  8601. height: math.unit(14, "feet"),
  8602. default: true
  8603. },
  8604. ]
  8605. ))
  8606. characterMakers.push(() => makeCharacter(
  8607. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8608. {
  8609. front: {
  8610. height: math.unit(6, "feet"),
  8611. weight: math.unit(3, "kg"),
  8612. name: "Front",
  8613. image: {
  8614. source: "./media/characters/ine/front.svg",
  8615. extra: 678 / 539,
  8616. bottom: 0.023
  8617. }
  8618. },
  8619. },
  8620. [
  8621. {
  8622. name: "Normal",
  8623. height: math.unit(2.265, "feet"),
  8624. default: true
  8625. },
  8626. ]
  8627. ))
  8628. characterMakers.push(() => makeCharacter(
  8629. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8630. {
  8631. front: {
  8632. height: math.unit(5, "feet"),
  8633. weight: math.unit(30, "kg"),
  8634. name: "Front",
  8635. image: {
  8636. source: "./media/characters/vial/front.svg",
  8637. extra: 1365 / 1277,
  8638. bottom: 0.04
  8639. }
  8640. },
  8641. },
  8642. [
  8643. {
  8644. name: "Normal",
  8645. height: math.unit(5, "feet"),
  8646. default: true
  8647. },
  8648. ]
  8649. ))
  8650. characterMakers.push(() => makeCharacter(
  8651. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8652. {
  8653. side: {
  8654. height: math.unit(3.4, "meters"),
  8655. weight: math.unit(1000, "lb"),
  8656. name: "Side",
  8657. image: {
  8658. source: "./media/characters/rovoska/side.svg",
  8659. extra: 4403 / 1515
  8660. }
  8661. },
  8662. },
  8663. [
  8664. {
  8665. name: "Normal",
  8666. height: math.unit(3.4, "meters"),
  8667. default: true
  8668. },
  8669. ]
  8670. ))
  8671. characterMakers.push(() => makeCharacter(
  8672. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8673. {
  8674. front: {
  8675. height: math.unit(8, "feet"),
  8676. weight: math.unit(315, "lb"),
  8677. name: "Front",
  8678. image: {
  8679. source: "./media/characters/gunner-rotthbauer/front.svg"
  8680. }
  8681. },
  8682. back: {
  8683. height: math.unit(8, "feet"),
  8684. weight: math.unit(315, "lb"),
  8685. name: "Back",
  8686. image: {
  8687. source: "./media/characters/gunner-rotthbauer/back.svg"
  8688. }
  8689. },
  8690. },
  8691. [
  8692. {
  8693. name: "Micro",
  8694. height: math.unit(3.5, "inches")
  8695. },
  8696. {
  8697. name: "Normal",
  8698. height: math.unit(8, "feet"),
  8699. default: true
  8700. },
  8701. {
  8702. name: "Macro",
  8703. height: math.unit(250, "feet")
  8704. },
  8705. {
  8706. name: "Megamacro",
  8707. height: math.unit(1, "AU")
  8708. },
  8709. ]
  8710. ))
  8711. characterMakers.push(() => makeCharacter(
  8712. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8713. {
  8714. front: {
  8715. height: math.unit(5 + 5 / 12, "feet"),
  8716. weight: math.unit(140, "lb"),
  8717. name: "Front",
  8718. image: {
  8719. source: "./media/characters/allatia/front.svg",
  8720. extra: 1227 / 1180,
  8721. bottom: 0.027
  8722. }
  8723. },
  8724. },
  8725. [
  8726. {
  8727. name: "Normal",
  8728. height: math.unit(5 + 5 / 12, "feet")
  8729. },
  8730. {
  8731. name: "Macro",
  8732. height: math.unit(250, "feet"),
  8733. default: true
  8734. },
  8735. {
  8736. name: "Megamacro",
  8737. height: math.unit(8, "miles")
  8738. }
  8739. ]
  8740. ))
  8741. characterMakers.push(() => makeCharacter(
  8742. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8743. {
  8744. front: {
  8745. height: math.unit(6, "feet"),
  8746. weight: math.unit(120, "lb"),
  8747. name: "Front",
  8748. image: {
  8749. source: "./media/characters/tene/front.svg",
  8750. extra: 1728 / 1578,
  8751. bottom: 0.022
  8752. }
  8753. },
  8754. stomping: {
  8755. height: math.unit(2.025, "meters"),
  8756. weight: math.unit(120, "lb"),
  8757. name: "Stomping",
  8758. image: {
  8759. source: "./media/characters/tene/stomping.svg",
  8760. extra: 938 / 873,
  8761. bottom: 0.01
  8762. }
  8763. },
  8764. sitting: {
  8765. height: math.unit(1, "meter"),
  8766. weight: math.unit(120, "lb"),
  8767. name: "Sitting",
  8768. image: {
  8769. source: "./media/characters/tene/sitting.svg",
  8770. extra: 437 / 415,
  8771. bottom: 0.1
  8772. }
  8773. },
  8774. feral: {
  8775. height: math.unit(3.9, "feet"),
  8776. weight: math.unit(250, "lb"),
  8777. name: "Feral",
  8778. image: {
  8779. source: "./media/characters/tene/feral.svg",
  8780. extra: 717 / 458,
  8781. bottom: 0.179
  8782. }
  8783. },
  8784. },
  8785. [
  8786. {
  8787. name: "Normal",
  8788. height: math.unit(6, "feet")
  8789. },
  8790. {
  8791. name: "Macro",
  8792. height: math.unit(300, "feet"),
  8793. default: true
  8794. },
  8795. {
  8796. name: "Megamacro",
  8797. height: math.unit(5, "miles")
  8798. },
  8799. ]
  8800. ))
  8801. characterMakers.push(() => makeCharacter(
  8802. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8803. {
  8804. side: {
  8805. height: math.unit(6, "feet"),
  8806. name: "Side",
  8807. image: {
  8808. source: "./media/characters/evander/side.svg",
  8809. extra: 877 / 477
  8810. }
  8811. },
  8812. },
  8813. [
  8814. {
  8815. name: "Normal",
  8816. height: math.unit(0.83, "meters"),
  8817. default: true
  8818. },
  8819. ]
  8820. ))
  8821. characterMakers.push(() => makeCharacter(
  8822. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8823. {
  8824. front: {
  8825. height: math.unit(12, "feet"),
  8826. weight: math.unit(1000, "lb"),
  8827. name: "Front",
  8828. image: {
  8829. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8830. extra: 1762 / 1611
  8831. }
  8832. },
  8833. back: {
  8834. height: math.unit(12, "feet"),
  8835. weight: math.unit(1000, "lb"),
  8836. name: "Back",
  8837. image: {
  8838. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8839. extra: 1762 / 1611
  8840. }
  8841. },
  8842. },
  8843. [
  8844. {
  8845. name: "Normal",
  8846. height: math.unit(12, "feet"),
  8847. default: true
  8848. },
  8849. {
  8850. name: "Kaiju",
  8851. height: math.unit(150, "feet")
  8852. },
  8853. ]
  8854. ))
  8855. characterMakers.push(() => makeCharacter(
  8856. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8857. {
  8858. front: {
  8859. height: math.unit(6, "feet"),
  8860. weight: math.unit(150, "lb"),
  8861. name: "Front",
  8862. image: {
  8863. source: "./media/characters/zero-alurus/front.svg"
  8864. }
  8865. },
  8866. back: {
  8867. height: math.unit(6, "feet"),
  8868. weight: math.unit(150, "lb"),
  8869. name: "Back",
  8870. image: {
  8871. source: "./media/characters/zero-alurus/back.svg"
  8872. }
  8873. },
  8874. },
  8875. [
  8876. {
  8877. name: "Normal",
  8878. height: math.unit(5 + 10 / 12, "feet")
  8879. },
  8880. {
  8881. name: "Macro",
  8882. height: math.unit(60, "feet"),
  8883. default: true
  8884. },
  8885. {
  8886. name: "Macro+",
  8887. height: math.unit(450, "feet")
  8888. },
  8889. ]
  8890. ))
  8891. characterMakers.push(() => makeCharacter(
  8892. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8893. {
  8894. front: {
  8895. height: math.unit(6, "feet"),
  8896. weight: math.unit(200, "lb"),
  8897. name: "Front",
  8898. image: {
  8899. source: "./media/characters/mega-shi/front.svg",
  8900. extra: 1279 / 1250,
  8901. bottom: 0.02
  8902. }
  8903. },
  8904. back: {
  8905. height: math.unit(6, "feet"),
  8906. weight: math.unit(200, "lb"),
  8907. name: "Back",
  8908. image: {
  8909. source: "./media/characters/mega-shi/back.svg",
  8910. extra: 1279 / 1250,
  8911. bottom: 0.02
  8912. }
  8913. },
  8914. },
  8915. [
  8916. {
  8917. name: "Micro",
  8918. height: math.unit(16 + 6 / 12, "feet")
  8919. },
  8920. {
  8921. name: "Third Dimension",
  8922. height: math.unit(40, "meters")
  8923. },
  8924. {
  8925. name: "Normal",
  8926. height: math.unit(660, "feet"),
  8927. default: true
  8928. },
  8929. {
  8930. name: "Megamacro",
  8931. height: math.unit(10, "miles")
  8932. },
  8933. {
  8934. name: "Planetary Launch",
  8935. height: math.unit(500, "miles")
  8936. },
  8937. {
  8938. name: "Interstellar",
  8939. height: math.unit(1e9, "miles")
  8940. },
  8941. {
  8942. name: "Leaving the Universe",
  8943. height: math.unit(1, "gigaparsec")
  8944. },
  8945. {
  8946. name: "Travelling Universes",
  8947. height: math.unit(30e15, "parsecs")
  8948. },
  8949. ]
  8950. ))
  8951. characterMakers.push(() => makeCharacter(
  8952. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8953. {
  8954. front: {
  8955. height: math.unit(6, "feet"),
  8956. weight: math.unit(150, "lb"),
  8957. name: "Front",
  8958. image: {
  8959. source: "./media/characters/odyssey/front.svg",
  8960. extra: 1782 / 1582,
  8961. bottom: 0.01
  8962. }
  8963. },
  8964. side: {
  8965. height: math.unit(5.7, "feet"),
  8966. weight: math.unit(140, "lb"),
  8967. name: "Side",
  8968. image: {
  8969. source: "./media/characters/odyssey/side.svg",
  8970. extra: 6462 / 5700
  8971. }
  8972. },
  8973. },
  8974. [
  8975. {
  8976. name: "Normal",
  8977. height: math.unit(5 + 4 / 12, "feet")
  8978. },
  8979. {
  8980. name: "Macro",
  8981. height: math.unit(1, "km")
  8982. },
  8983. {
  8984. name: "Megamacro",
  8985. height: math.unit(3000, "km")
  8986. },
  8987. {
  8988. name: "Gigamacro",
  8989. height: math.unit(1, "AU"),
  8990. default: true
  8991. },
  8992. {
  8993. name: "Omniversal",
  8994. height: math.unit(100e14, "lightyears")
  8995. },
  8996. ]
  8997. ))
  8998. characterMakers.push(() => makeCharacter(
  8999. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9000. {
  9001. front: {
  9002. height: math.unit(6, "feet"),
  9003. weight: math.unit(300, "lb"),
  9004. name: "Front",
  9005. image: {
  9006. source: "./media/characters/mekuto/front.svg",
  9007. extra: 921 / 832,
  9008. bottom: 0.03
  9009. }
  9010. },
  9011. hand: {
  9012. height: math.unit(6 / 10.24, "feet"),
  9013. name: "Hand",
  9014. image: {
  9015. source: "./media/characters/mekuto/hand.svg"
  9016. }
  9017. },
  9018. foot: {
  9019. height: math.unit(6 / 5.05, "feet"),
  9020. name: "Foot",
  9021. image: {
  9022. source: "./media/characters/mekuto/foot.svg"
  9023. }
  9024. },
  9025. },
  9026. [
  9027. {
  9028. name: "Minimicro",
  9029. height: math.unit(0.2, "inches")
  9030. },
  9031. {
  9032. name: "Micro",
  9033. height: math.unit(1.5, "inches")
  9034. },
  9035. {
  9036. name: "Normal",
  9037. height: math.unit(5 + 11 / 12, "feet"),
  9038. default: true
  9039. },
  9040. {
  9041. name: "Minimacro",
  9042. height: math.unit(17 + 9 / 12, "feet")
  9043. },
  9044. {
  9045. name: "Macro",
  9046. height: math.unit(177.5, "feet")
  9047. },
  9048. {
  9049. name: "Megamacro",
  9050. height: math.unit(152, "miles")
  9051. },
  9052. ]
  9053. ))
  9054. characterMakers.push(() => makeCharacter(
  9055. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9056. {
  9057. front: {
  9058. height: math.unit(6.5, "inches"),
  9059. weight: math.unit(13, "oz"),
  9060. name: "Front",
  9061. image: {
  9062. source: "./media/characters/dafydd-tomos/front.svg",
  9063. extra: 2990 / 2603,
  9064. bottom: 0.03
  9065. }
  9066. },
  9067. },
  9068. [
  9069. {
  9070. name: "Micro",
  9071. height: math.unit(6.5, "inches"),
  9072. default: true
  9073. },
  9074. ]
  9075. ))
  9076. characterMakers.push(() => makeCharacter(
  9077. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9078. {
  9079. front: {
  9080. height: math.unit(6, "feet"),
  9081. weight: math.unit(150, "lb"),
  9082. name: "Front",
  9083. image: {
  9084. source: "./media/characters/splinter/front.svg",
  9085. extra: 2990 / 2882,
  9086. bottom: 0.04
  9087. }
  9088. },
  9089. back: {
  9090. height: math.unit(6, "feet"),
  9091. weight: math.unit(150, "lb"),
  9092. name: "Back",
  9093. image: {
  9094. source: "./media/characters/splinter/back.svg",
  9095. extra: 2990 / 2882,
  9096. bottom: 0.04
  9097. }
  9098. },
  9099. },
  9100. [
  9101. {
  9102. name: "Normal",
  9103. height: math.unit(6, "feet")
  9104. },
  9105. {
  9106. name: "Macro",
  9107. height: math.unit(230, "meters"),
  9108. default: true
  9109. },
  9110. ]
  9111. ))
  9112. characterMakers.push(() => makeCharacter(
  9113. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9114. {
  9115. front: {
  9116. height: math.unit(4 + 10 / 12, "feet"),
  9117. weight: math.unit(480, "lb"),
  9118. name: "Front",
  9119. image: {
  9120. source: "./media/characters/snow-gabumon/front.svg",
  9121. extra: 1140 / 963,
  9122. bottom: 0.058
  9123. }
  9124. },
  9125. back: {
  9126. height: math.unit(4 + 10 / 12, "feet"),
  9127. weight: math.unit(480, "lb"),
  9128. name: "Back",
  9129. image: {
  9130. source: "./media/characters/snow-gabumon/back.svg",
  9131. extra: 1115 / 962,
  9132. bottom: 0.041
  9133. }
  9134. },
  9135. frontUndresed: {
  9136. height: math.unit(4 + 10 / 12, "feet"),
  9137. weight: math.unit(480, "lb"),
  9138. name: "Front (Undressed)",
  9139. image: {
  9140. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9141. extra: 1061 / 960,
  9142. bottom: 0.045
  9143. }
  9144. },
  9145. },
  9146. [
  9147. {
  9148. name: "Micro",
  9149. height: math.unit(1, "inch")
  9150. },
  9151. {
  9152. name: "Normal",
  9153. height: math.unit(4 + 10 / 12, "feet"),
  9154. default: true
  9155. },
  9156. {
  9157. name: "Macro",
  9158. height: math.unit(200, "feet")
  9159. },
  9160. {
  9161. name: "Megamacro",
  9162. height: math.unit(120, "miles")
  9163. },
  9164. {
  9165. name: "Gigamacro",
  9166. height: math.unit(9800, "miles")
  9167. },
  9168. ]
  9169. ))
  9170. characterMakers.push(() => makeCharacter(
  9171. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9172. {
  9173. front: {
  9174. height: math.unit(1.7, "meters"),
  9175. weight: math.unit(140, "lb"),
  9176. name: "Front",
  9177. image: {
  9178. source: "./media/characters/moody/front.svg",
  9179. extra: 3226 / 3007,
  9180. bottom: 0.087
  9181. }
  9182. },
  9183. },
  9184. [
  9185. {
  9186. name: "Micro",
  9187. height: math.unit(1, "mm")
  9188. },
  9189. {
  9190. name: "Normal",
  9191. height: math.unit(1.7, "meters"),
  9192. default: true
  9193. },
  9194. {
  9195. name: "Macro",
  9196. height: math.unit(80, "meters")
  9197. },
  9198. {
  9199. name: "Macro+",
  9200. height: math.unit(500, "meters")
  9201. },
  9202. ]
  9203. ))
  9204. characterMakers.push(() => makeCharacter(
  9205. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9206. {
  9207. front: {
  9208. height: math.unit(6, "feet"),
  9209. weight: math.unit(150, "lb"),
  9210. name: "Front",
  9211. image: {
  9212. source: "./media/characters/zyas/front.svg",
  9213. extra: 1180 / 1120,
  9214. bottom: 0.045
  9215. }
  9216. },
  9217. },
  9218. [
  9219. {
  9220. name: "Normal",
  9221. height: math.unit(10, "feet"),
  9222. default: true
  9223. },
  9224. {
  9225. name: "Macro",
  9226. height: math.unit(500, "feet")
  9227. },
  9228. {
  9229. name: "Megamacro",
  9230. height: math.unit(5, "miles")
  9231. },
  9232. {
  9233. name: "Teramacro",
  9234. height: math.unit(150000, "miles")
  9235. },
  9236. ]
  9237. ))
  9238. characterMakers.push(() => makeCharacter(
  9239. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9240. {
  9241. front: {
  9242. height: math.unit(6, "feet"),
  9243. weight: math.unit(150, "lb"),
  9244. name: "Front",
  9245. image: {
  9246. source: "./media/characters/cuon/front.svg",
  9247. extra: 1390 / 1320,
  9248. bottom: 0.008
  9249. }
  9250. },
  9251. },
  9252. [
  9253. {
  9254. name: "Micro",
  9255. height: math.unit(3, "inches")
  9256. },
  9257. {
  9258. name: "Normal",
  9259. height: math.unit(18 + 9 / 12, "feet"),
  9260. default: true
  9261. },
  9262. {
  9263. name: "Macro",
  9264. height: math.unit(360, "feet")
  9265. },
  9266. {
  9267. name: "Megamacro",
  9268. height: math.unit(360, "miles")
  9269. },
  9270. ]
  9271. ))
  9272. characterMakers.push(() => makeCharacter(
  9273. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9274. {
  9275. front: {
  9276. height: math.unit(2.4, "meters"),
  9277. weight: math.unit(70, "kg"),
  9278. name: "Front",
  9279. image: {
  9280. source: "./media/characters/nyanuxk/front.svg",
  9281. extra: 1172 / 1084,
  9282. bottom: 0.065
  9283. }
  9284. },
  9285. side: {
  9286. height: math.unit(2.4, "meters"),
  9287. weight: math.unit(70, "kg"),
  9288. name: "Side",
  9289. image: {
  9290. source: "./media/characters/nyanuxk/side.svg",
  9291. extra: 1190 / 1132,
  9292. bottom: 0.007
  9293. }
  9294. },
  9295. back: {
  9296. height: math.unit(2.4, "meters"),
  9297. weight: math.unit(70, "kg"),
  9298. name: "Back",
  9299. image: {
  9300. source: "./media/characters/nyanuxk/back.svg",
  9301. extra: 1200 / 1141,
  9302. bottom: 0.015
  9303. }
  9304. },
  9305. foot: {
  9306. height: math.unit(0.52, "meters"),
  9307. name: "Foot",
  9308. image: {
  9309. source: "./media/characters/nyanuxk/foot.svg"
  9310. }
  9311. },
  9312. },
  9313. [
  9314. {
  9315. name: "Micro",
  9316. height: math.unit(2, "cm")
  9317. },
  9318. {
  9319. name: "Normal",
  9320. height: math.unit(2.4, "meters"),
  9321. default: true
  9322. },
  9323. {
  9324. name: "Smaller Macro",
  9325. height: math.unit(120, "meters")
  9326. },
  9327. {
  9328. name: "Bigger Macro",
  9329. height: math.unit(1.2, "km")
  9330. },
  9331. {
  9332. name: "Megamacro",
  9333. height: math.unit(15, "kilometers")
  9334. },
  9335. {
  9336. name: "Gigamacro",
  9337. height: math.unit(2000, "km")
  9338. },
  9339. {
  9340. name: "Teramacro",
  9341. height: math.unit(500000, "km")
  9342. },
  9343. ]
  9344. ))
  9345. characterMakers.push(() => makeCharacter(
  9346. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9347. {
  9348. side: {
  9349. height: math.unit(6, "feet"),
  9350. name: "Side",
  9351. image: {
  9352. source: "./media/characters/ailbhe/side.svg",
  9353. extra: 757 / 464,
  9354. bottom: 0.041
  9355. }
  9356. },
  9357. },
  9358. [
  9359. {
  9360. name: "Normal",
  9361. height: math.unit(1.07, "meters"),
  9362. default: true
  9363. },
  9364. ]
  9365. ))
  9366. characterMakers.push(() => makeCharacter(
  9367. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9368. {
  9369. front: {
  9370. height: math.unit(6, "feet"),
  9371. weight: math.unit(120, "kg"),
  9372. name: "Front",
  9373. image: {
  9374. source: "./media/characters/zevulfius/front.svg",
  9375. extra: 965 / 903
  9376. }
  9377. },
  9378. side: {
  9379. height: math.unit(6, "feet"),
  9380. weight: math.unit(120, "kg"),
  9381. name: "Side",
  9382. image: {
  9383. source: "./media/characters/zevulfius/side.svg",
  9384. extra: 939 / 900
  9385. }
  9386. },
  9387. back: {
  9388. height: math.unit(6, "feet"),
  9389. weight: math.unit(120, "kg"),
  9390. name: "Back",
  9391. image: {
  9392. source: "./media/characters/zevulfius/back.svg",
  9393. extra: 918 / 854,
  9394. bottom: 0.005
  9395. }
  9396. },
  9397. foot: {
  9398. height: math.unit(6 / 3.72, "feet"),
  9399. name: "Foot",
  9400. image: {
  9401. source: "./media/characters/zevulfius/foot.svg"
  9402. }
  9403. },
  9404. },
  9405. [
  9406. {
  9407. name: "Macro",
  9408. height: math.unit(750, "meters")
  9409. },
  9410. {
  9411. name: "Megamacro",
  9412. height: math.unit(20, "km"),
  9413. default: true
  9414. },
  9415. {
  9416. name: "Gigamacro",
  9417. height: math.unit(2000, "km")
  9418. },
  9419. {
  9420. name: "Teramacro",
  9421. height: math.unit(250000, "km")
  9422. },
  9423. ]
  9424. ))
  9425. characterMakers.push(() => makeCharacter(
  9426. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9427. {
  9428. front: {
  9429. height: math.unit(100, "feet"),
  9430. weight: math.unit(350, "kg"),
  9431. name: "Front",
  9432. image: {
  9433. source: "./media/characters/rikes/front.svg",
  9434. extra: 1565 / 1483,
  9435. bottom: 0.017
  9436. }
  9437. },
  9438. },
  9439. [
  9440. {
  9441. name: "Macro",
  9442. height: math.unit(100, "feet"),
  9443. default: true
  9444. },
  9445. ]
  9446. ))
  9447. characterMakers.push(() => makeCharacter(
  9448. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9449. {
  9450. anthro: {
  9451. height: math.unit(8, "feet"),
  9452. weight: math.unit(120, "kg"),
  9453. name: "Anthro",
  9454. image: {
  9455. source: "./media/characters/adam-silver-mane/anthro.svg",
  9456. extra: 5743 / 5339,
  9457. bottom: 0.07
  9458. }
  9459. },
  9460. taur: {
  9461. height: math.unit(16, "feet"),
  9462. weight: math.unit(1500, "kg"),
  9463. name: "Taur",
  9464. image: {
  9465. source: "./media/characters/adam-silver-mane/taur.svg",
  9466. extra: 1713 / 1571,
  9467. bottom: 0.01
  9468. }
  9469. },
  9470. },
  9471. [
  9472. {
  9473. name: "Normal",
  9474. height: math.unit(8, "feet")
  9475. },
  9476. {
  9477. name: "Minimacro",
  9478. height: math.unit(80, "feet")
  9479. },
  9480. {
  9481. name: "Macro",
  9482. height: math.unit(800, "feet"),
  9483. default: true
  9484. },
  9485. {
  9486. name: "Megamacro",
  9487. height: math.unit(8000, "feet")
  9488. },
  9489. {
  9490. name: "Gigamacro",
  9491. height: math.unit(800, "miles")
  9492. },
  9493. {
  9494. name: "Teramacro",
  9495. height: math.unit(80000, "miles")
  9496. },
  9497. {
  9498. name: "Celestial",
  9499. height: math.unit(8e6, "miles")
  9500. },
  9501. {
  9502. name: "Star Dragon",
  9503. height: math.unit(800000, "parsecs")
  9504. },
  9505. {
  9506. name: "Godly",
  9507. height: math.unit(800, "teraparsecs")
  9508. },
  9509. ]
  9510. ))
  9511. characterMakers.push(() => makeCharacter(
  9512. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9513. {
  9514. front: {
  9515. height: math.unit(6, "feet"),
  9516. weight: math.unit(150, "lb"),
  9517. name: "Front",
  9518. image: {
  9519. source: "./media/characters/ky'owin/front.svg",
  9520. extra: 3888 / 3068,
  9521. bottom: 0.015
  9522. }
  9523. },
  9524. },
  9525. [
  9526. {
  9527. name: "Normal",
  9528. height: math.unit(6 + 8 / 12, "feet")
  9529. },
  9530. {
  9531. name: "Large",
  9532. height: math.unit(68, "feet")
  9533. },
  9534. {
  9535. name: "Macro",
  9536. height: math.unit(132, "feet")
  9537. },
  9538. {
  9539. name: "Macro+",
  9540. height: math.unit(340, "feet")
  9541. },
  9542. {
  9543. name: "Macro++",
  9544. height: math.unit(680, "feet"),
  9545. default: true
  9546. },
  9547. {
  9548. name: "Megamacro",
  9549. height: math.unit(1, "mile")
  9550. },
  9551. {
  9552. name: "Megamacro+",
  9553. height: math.unit(10, "miles")
  9554. },
  9555. ]
  9556. ))
  9557. characterMakers.push(() => makeCharacter(
  9558. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9559. {
  9560. front: {
  9561. height: math.unit(4, "feet"),
  9562. weight: math.unit(50, "lb"),
  9563. name: "Front",
  9564. image: {
  9565. source: "./media/characters/mal/front.svg",
  9566. extra: 785 / 724,
  9567. bottom: 0.07
  9568. }
  9569. },
  9570. },
  9571. [
  9572. {
  9573. name: "Micro",
  9574. height: math.unit(4, "inches")
  9575. },
  9576. {
  9577. name: "Normal",
  9578. height: math.unit(4, "feet"),
  9579. default: true
  9580. },
  9581. {
  9582. name: "Macro",
  9583. height: math.unit(200, "feet")
  9584. },
  9585. ]
  9586. ))
  9587. characterMakers.push(() => makeCharacter(
  9588. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9589. {
  9590. front: {
  9591. height: math.unit(6, "feet"),
  9592. weight: math.unit(150, "lb"),
  9593. name: "Front",
  9594. image: {
  9595. source: "./media/characters/jordan-deware/front.svg",
  9596. extra: 1191 / 1012
  9597. }
  9598. },
  9599. },
  9600. [
  9601. {
  9602. name: "Nano",
  9603. height: math.unit(0.01, "mm")
  9604. },
  9605. {
  9606. name: "Minimicro",
  9607. height: math.unit(1, "mm")
  9608. },
  9609. {
  9610. name: "Micro",
  9611. height: math.unit(0.5, "inches")
  9612. },
  9613. {
  9614. name: "Normal",
  9615. height: math.unit(4, "feet"),
  9616. default: true
  9617. },
  9618. {
  9619. name: "Minimacro",
  9620. height: math.unit(40, "meters")
  9621. },
  9622. {
  9623. name: "Small Macro",
  9624. height: math.unit(400, "meters")
  9625. },
  9626. {
  9627. name: "Macro",
  9628. height: math.unit(4, "miles")
  9629. },
  9630. {
  9631. name: "Megamacro",
  9632. height: math.unit(40, "miles")
  9633. },
  9634. {
  9635. name: "Megamacro+",
  9636. height: math.unit(400, "miles")
  9637. },
  9638. {
  9639. name: "Gigamacro",
  9640. height: math.unit(400000, "miles")
  9641. },
  9642. ]
  9643. ))
  9644. characterMakers.push(() => makeCharacter(
  9645. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9646. {
  9647. side: {
  9648. height: math.unit(6, "feet"),
  9649. weight: math.unit(150, "lb"),
  9650. name: "Side",
  9651. image: {
  9652. source: "./media/characters/kimiko/side.svg",
  9653. extra: 600 / 358
  9654. }
  9655. },
  9656. },
  9657. [
  9658. {
  9659. name: "Normal",
  9660. height: math.unit(15, "feet"),
  9661. default: true
  9662. },
  9663. {
  9664. name: "Macro",
  9665. height: math.unit(220, "feet")
  9666. },
  9667. {
  9668. name: "Macro+",
  9669. height: math.unit(1450, "feet")
  9670. },
  9671. {
  9672. name: "Megamacro",
  9673. height: math.unit(11500, "feet")
  9674. },
  9675. {
  9676. name: "Gigamacro",
  9677. height: math.unit(9500, "miles")
  9678. },
  9679. {
  9680. name: "Teramacro",
  9681. height: math.unit(2208005005, "miles")
  9682. },
  9683. {
  9684. name: "Examacro",
  9685. height: math.unit(2750, "parsecs")
  9686. },
  9687. {
  9688. name: "Zettamacro",
  9689. height: math.unit(101500, "parsecs")
  9690. },
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9695. {
  9696. front: {
  9697. height: math.unit(6, "feet"),
  9698. weight: math.unit(70, "kg"),
  9699. name: "Front",
  9700. image: {
  9701. source: "./media/characters/andrew-sleepy/front.svg"
  9702. }
  9703. },
  9704. side: {
  9705. height: math.unit(6, "feet"),
  9706. weight: math.unit(70, "kg"),
  9707. name: "Side",
  9708. image: {
  9709. source: "./media/characters/andrew-sleepy/side.svg"
  9710. }
  9711. },
  9712. },
  9713. [
  9714. {
  9715. name: "Micro",
  9716. height: math.unit(1, "mm"),
  9717. default: true
  9718. },
  9719. ]
  9720. ))
  9721. characterMakers.push(() => makeCharacter(
  9722. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9723. {
  9724. front: {
  9725. height: math.unit(6, "feet"),
  9726. weight: math.unit(150, "lb"),
  9727. name: "Front",
  9728. image: {
  9729. source: "./media/characters/judio/front.svg",
  9730. extra: 1258 / 1110
  9731. }
  9732. },
  9733. },
  9734. [
  9735. {
  9736. name: "Normal",
  9737. height: math.unit(5 + 6 / 12, "feet")
  9738. },
  9739. {
  9740. name: "Macro",
  9741. height: math.unit(1000, "feet"),
  9742. default: true
  9743. },
  9744. {
  9745. name: "Megamacro",
  9746. height: math.unit(10, "miles")
  9747. },
  9748. ]
  9749. ))
  9750. characterMakers.push(() => makeCharacter(
  9751. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9752. {
  9753. front: {
  9754. height: math.unit(6, "feet"),
  9755. weight: math.unit(68, "kg"),
  9756. name: "Front",
  9757. image: {
  9758. source: "./media/characters/nomaxice/front.svg",
  9759. extra: 1498 / 1073,
  9760. bottom: 0.075
  9761. }
  9762. },
  9763. foot: {
  9764. height: math.unit(1.1, "feet"),
  9765. name: "Foot",
  9766. image: {
  9767. source: "./media/characters/nomaxice/foot.svg"
  9768. }
  9769. },
  9770. },
  9771. [
  9772. {
  9773. name: "Micro",
  9774. height: math.unit(8, "cm")
  9775. },
  9776. {
  9777. name: "Norm",
  9778. height: math.unit(1.82, "m")
  9779. },
  9780. {
  9781. name: "Norm+",
  9782. height: math.unit(8.8, "feet")
  9783. },
  9784. {
  9785. name: "Big",
  9786. height: math.unit(8, "meters"),
  9787. default: true
  9788. },
  9789. {
  9790. name: "Macro",
  9791. height: math.unit(18, "meters")
  9792. },
  9793. {
  9794. name: "Macro+",
  9795. height: math.unit(88, "meters")
  9796. },
  9797. ]
  9798. ))
  9799. characterMakers.push(() => makeCharacter(
  9800. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9801. {
  9802. front: {
  9803. height: math.unit(12, "feet"),
  9804. weight: math.unit(1.5, "tons"),
  9805. name: "Front",
  9806. image: {
  9807. source: "./media/characters/dydros/front.svg",
  9808. extra: 863 / 800,
  9809. bottom: 0.015
  9810. }
  9811. },
  9812. back: {
  9813. height: math.unit(12, "feet"),
  9814. weight: math.unit(1.5, "tons"),
  9815. name: "Back",
  9816. image: {
  9817. source: "./media/characters/dydros/back.svg",
  9818. extra: 900 / 843,
  9819. bottom: 0.005
  9820. }
  9821. },
  9822. },
  9823. [
  9824. {
  9825. name: "Normal",
  9826. height: math.unit(12, "feet"),
  9827. default: true
  9828. },
  9829. ]
  9830. ))
  9831. characterMakers.push(() => makeCharacter(
  9832. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9833. {
  9834. front: {
  9835. height: math.unit(6, "feet"),
  9836. weight: math.unit(100, "kg"),
  9837. name: "Front",
  9838. image: {
  9839. source: "./media/characters/riggi/front.svg",
  9840. extra: 5787 / 5303
  9841. }
  9842. },
  9843. hyper: {
  9844. height: math.unit(6 * 5 / 3, "feet"),
  9845. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9846. name: "Hyper",
  9847. image: {
  9848. source: "./media/characters/riggi/hyper.svg",
  9849. extra: 3595 / 3485
  9850. }
  9851. },
  9852. },
  9853. [
  9854. {
  9855. name: "Small Macro",
  9856. height: math.unit(50, "feet")
  9857. },
  9858. {
  9859. name: "Default",
  9860. height: math.unit(200, "feet"),
  9861. default: true
  9862. },
  9863. {
  9864. name: "Loom",
  9865. height: math.unit(10000, "feet")
  9866. },
  9867. {
  9868. name: "Cruising Altitude",
  9869. height: math.unit(30000, "feet")
  9870. },
  9871. {
  9872. name: "Megamacro",
  9873. height: math.unit(100, "miles")
  9874. },
  9875. {
  9876. name: "Continent Sized",
  9877. height: math.unit(2800, "miles")
  9878. },
  9879. {
  9880. name: "Earth Sized",
  9881. height: math.unit(8000, "miles")
  9882. },
  9883. ]
  9884. ))
  9885. characterMakers.push(() => makeCharacter(
  9886. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9887. {
  9888. front: {
  9889. height: math.unit(6, "feet"),
  9890. weight: math.unit(250, "lb"),
  9891. name: "Front",
  9892. image: {
  9893. source: "./media/characters/alexi/front.svg",
  9894. extra: 3483 / 3291,
  9895. bottom: 0.04
  9896. }
  9897. },
  9898. back: {
  9899. height: math.unit(6, "feet"),
  9900. weight: math.unit(250, "lb"),
  9901. name: "Back",
  9902. image: {
  9903. source: "./media/characters/alexi/back.svg",
  9904. extra: 3533 / 3356,
  9905. bottom: 0.021
  9906. }
  9907. },
  9908. frontTransforming: {
  9909. height: math.unit(8.58, "feet"),
  9910. weight: math.unit(1300, "lb"),
  9911. name: "Transforming",
  9912. image: {
  9913. source: "./media/characters/alexi/front-transforming.svg",
  9914. extra: 437 / 409,
  9915. bottom: 19 / 458.66
  9916. }
  9917. },
  9918. frontTransformed: {
  9919. height: math.unit(12.5, "feet"),
  9920. weight: math.unit(4000, "lb"),
  9921. name: "Transformed",
  9922. image: {
  9923. source: "./media/characters/alexi/front-transformed.svg",
  9924. extra: 639 / 614,
  9925. bottom: 30.55 / 671
  9926. }
  9927. },
  9928. },
  9929. [
  9930. {
  9931. name: "Normal",
  9932. height: math.unit(3, "meters"),
  9933. default: true
  9934. },
  9935. {
  9936. name: "Minimacro",
  9937. height: math.unit(30, "meters")
  9938. },
  9939. {
  9940. name: "Macro",
  9941. height: math.unit(500, "meters")
  9942. },
  9943. {
  9944. name: "Megamacro",
  9945. height: math.unit(9000, "km")
  9946. },
  9947. {
  9948. name: "Teramacro",
  9949. height: math.unit(384000, "km")
  9950. },
  9951. ]
  9952. ))
  9953. characterMakers.push(() => makeCharacter(
  9954. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9955. {
  9956. front: {
  9957. height: math.unit(6, "feet"),
  9958. weight: math.unit(150, "lb"),
  9959. name: "Front",
  9960. image: {
  9961. source: "./media/characters/kayroo/front.svg",
  9962. extra: 1153 / 1038,
  9963. bottom: 0.06
  9964. }
  9965. },
  9966. foot: {
  9967. height: math.unit(6, "feet"),
  9968. weight: math.unit(150, "lb"),
  9969. name: "Foot",
  9970. image: {
  9971. source: "./media/characters/kayroo/foot.svg"
  9972. }
  9973. },
  9974. },
  9975. [
  9976. {
  9977. name: "Normal",
  9978. height: math.unit(8, "feet"),
  9979. default: true
  9980. },
  9981. {
  9982. name: "Minimacro",
  9983. height: math.unit(250, "feet")
  9984. },
  9985. {
  9986. name: "Macro",
  9987. height: math.unit(2800, "feet")
  9988. },
  9989. {
  9990. name: "Megamacro",
  9991. height: math.unit(5200, "feet")
  9992. },
  9993. {
  9994. name: "Gigamacro",
  9995. height: math.unit(27000, "feet")
  9996. },
  9997. {
  9998. name: "Omega",
  9999. height: math.unit(45000, "feet")
  10000. },
  10001. ]
  10002. ))
  10003. characterMakers.push(() => makeCharacter(
  10004. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10005. {
  10006. front: {
  10007. height: math.unit(18, "feet"),
  10008. weight: math.unit(5800, "lb"),
  10009. name: "Front",
  10010. image: {
  10011. source: "./media/characters/rhys/front.svg",
  10012. extra: 3386 / 3090,
  10013. bottom: 0.07
  10014. }
  10015. },
  10016. },
  10017. [
  10018. {
  10019. name: "Normal",
  10020. height: math.unit(18, "feet"),
  10021. default: true
  10022. },
  10023. {
  10024. name: "Working Size",
  10025. height: math.unit(200, "feet")
  10026. },
  10027. {
  10028. name: "Demolition Size",
  10029. height: math.unit(2000, "feet")
  10030. },
  10031. {
  10032. name: "Maximum Licensed Size",
  10033. height: math.unit(5, "miles")
  10034. },
  10035. {
  10036. name: "Maximum Observed Size",
  10037. height: math.unit(10, "yottameters")
  10038. },
  10039. ]
  10040. ))
  10041. characterMakers.push(() => makeCharacter(
  10042. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10043. {
  10044. front: {
  10045. height: math.unit(6, "feet"),
  10046. weight: math.unit(250, "lb"),
  10047. name: "Front",
  10048. image: {
  10049. source: "./media/characters/toto/front.svg",
  10050. extra: 527 / 479,
  10051. bottom: 0.05
  10052. }
  10053. },
  10054. },
  10055. [
  10056. {
  10057. name: "Micro",
  10058. height: math.unit(3, "feet")
  10059. },
  10060. {
  10061. name: "Normal",
  10062. height: math.unit(10, "feet")
  10063. },
  10064. {
  10065. name: "Macro",
  10066. height: math.unit(150, "feet"),
  10067. default: true
  10068. },
  10069. {
  10070. name: "Megamacro",
  10071. height: math.unit(1200, "feet")
  10072. },
  10073. ]
  10074. ))
  10075. characterMakers.push(() => makeCharacter(
  10076. { name: "King", species: ["lion"], tags: ["anthro"] },
  10077. {
  10078. back: {
  10079. height: math.unit(6, "feet"),
  10080. weight: math.unit(150, "lb"),
  10081. name: "Back",
  10082. image: {
  10083. source: "./media/characters/king/back.svg"
  10084. }
  10085. },
  10086. },
  10087. [
  10088. {
  10089. name: "Micro",
  10090. height: math.unit(2, "inches")
  10091. },
  10092. {
  10093. name: "Normal",
  10094. height: math.unit(8, "feet")
  10095. },
  10096. {
  10097. name: "Macro",
  10098. height: math.unit(200, "feet"),
  10099. default: true
  10100. },
  10101. {
  10102. name: "Megamacro",
  10103. height: math.unit(50, "miles")
  10104. },
  10105. ]
  10106. ))
  10107. characterMakers.push(() => makeCharacter(
  10108. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10109. {
  10110. anthro: {
  10111. height: math.unit(6 + 5 / 12, "feet"),
  10112. weight: math.unit(280, "lb"),
  10113. name: "Anthro",
  10114. image: {
  10115. source: "./media/characters/cordite/anthro.svg",
  10116. extra: 1986 / 1905,
  10117. bottom: 0.025
  10118. }
  10119. },
  10120. feral: {
  10121. height: math.unit(2, "feet"),
  10122. weight: math.unit(90, "lb"),
  10123. name: "Feral",
  10124. image: {
  10125. source: "./media/characters/cordite/feral.svg",
  10126. extra: 1260 / 755,
  10127. bottom: 0.05
  10128. }
  10129. },
  10130. },
  10131. [
  10132. {
  10133. name: "Normal",
  10134. height: math.unit(6 + 5 / 12, "feet"),
  10135. default: true
  10136. },
  10137. ]
  10138. ))
  10139. characterMakers.push(() => makeCharacter(
  10140. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10141. {
  10142. front: {
  10143. height: math.unit(6, "feet"),
  10144. weight: math.unit(150, "lb"),
  10145. name: "Front",
  10146. image: {
  10147. source: "./media/characters/pianostrong/front.svg",
  10148. extra: 6577 / 6254,
  10149. bottom: 0.02
  10150. }
  10151. },
  10152. side: {
  10153. height: math.unit(6, "feet"),
  10154. weight: math.unit(150, "lb"),
  10155. name: "Side",
  10156. image: {
  10157. source: "./media/characters/pianostrong/side.svg",
  10158. extra: 6106 / 5730
  10159. }
  10160. },
  10161. back: {
  10162. height: math.unit(6, "feet"),
  10163. weight: math.unit(150, "lb"),
  10164. name: "Back",
  10165. image: {
  10166. source: "./media/characters/pianostrong/back.svg",
  10167. extra: 6085 / 5733,
  10168. bottom: 0.01
  10169. }
  10170. },
  10171. },
  10172. [
  10173. {
  10174. name: "Macro",
  10175. height: math.unit(100, "feet")
  10176. },
  10177. {
  10178. name: "Macro+",
  10179. height: math.unit(300, "feet"),
  10180. default: true
  10181. },
  10182. {
  10183. name: "Macro++",
  10184. height: math.unit(1000, "feet")
  10185. },
  10186. ]
  10187. ))
  10188. characterMakers.push(() => makeCharacter(
  10189. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10190. {
  10191. front: {
  10192. height: math.unit(6, "feet"),
  10193. weight: math.unit(150, "lb"),
  10194. name: "Front",
  10195. image: {
  10196. source: "./media/characters/kona/front.svg",
  10197. extra: 2960 / 2629,
  10198. bottom: 0.005
  10199. }
  10200. },
  10201. },
  10202. [
  10203. {
  10204. name: "Normal",
  10205. height: math.unit(11 + 8 / 12, "feet")
  10206. },
  10207. {
  10208. name: "Macro",
  10209. height: math.unit(850, "feet"),
  10210. default: true
  10211. },
  10212. {
  10213. name: "Macro+",
  10214. height: math.unit(1.5, "km"),
  10215. default: true
  10216. },
  10217. {
  10218. name: "Megamacro",
  10219. height: math.unit(80, "miles")
  10220. },
  10221. {
  10222. name: "Gigamacro",
  10223. height: math.unit(3500, "miles")
  10224. },
  10225. ]
  10226. ))
  10227. characterMakers.push(() => makeCharacter(
  10228. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10229. {
  10230. side: {
  10231. height: math.unit(1.9, "meters"),
  10232. weight: math.unit(326, "kg"),
  10233. name: "Side",
  10234. image: {
  10235. source: "./media/characters/levi/side.svg",
  10236. extra: 1704 / 1334,
  10237. bottom: 0.02
  10238. }
  10239. },
  10240. },
  10241. [
  10242. {
  10243. name: "Normal",
  10244. height: math.unit(1.9, "meters"),
  10245. default: true
  10246. },
  10247. {
  10248. name: "Macro",
  10249. height: math.unit(20, "meters")
  10250. },
  10251. {
  10252. name: "Macro+",
  10253. height: math.unit(200, "meters")
  10254. },
  10255. {
  10256. name: "Megamacro",
  10257. height: math.unit(2, "km")
  10258. },
  10259. {
  10260. name: "Megamacro+",
  10261. height: math.unit(20, "km")
  10262. },
  10263. {
  10264. name: "Gigamacro",
  10265. height: math.unit(2500, "km")
  10266. },
  10267. {
  10268. name: "Gigamacro+",
  10269. height: math.unit(120000, "km")
  10270. },
  10271. {
  10272. name: "Teramacro",
  10273. height: math.unit(7.77e6, "km")
  10274. },
  10275. ]
  10276. ))
  10277. characterMakers.push(() => makeCharacter(
  10278. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10279. {
  10280. front: {
  10281. height: math.unit(6 + 4 / 12, "feet"),
  10282. weight: math.unit(188, "lb"),
  10283. name: "Front",
  10284. image: {
  10285. source: "./media/characters/bmc/front.svg",
  10286. extra: 1067 / 1022,
  10287. bottom: 0.047
  10288. }
  10289. },
  10290. },
  10291. [
  10292. {
  10293. name: "Human-sized",
  10294. height: math.unit(6 + 4 / 12, "feet")
  10295. },
  10296. {
  10297. name: "Small",
  10298. height: math.unit(250, "feet")
  10299. },
  10300. {
  10301. name: "Normal",
  10302. height: math.unit(1250, "feet"),
  10303. default: true
  10304. },
  10305. {
  10306. name: "Good Day",
  10307. height: math.unit(88, "miles")
  10308. },
  10309. {
  10310. name: "Largest Measured Size",
  10311. height: math.unit(11.2e6, "lightyears")
  10312. },
  10313. ]
  10314. ))
  10315. characterMakers.push(() => makeCharacter(
  10316. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10317. {
  10318. front: {
  10319. height: math.unit(20, "feet"),
  10320. weight: math.unit(2016, "kg"),
  10321. name: "Front",
  10322. image: {
  10323. source: "./media/characters/sven-the-kaiju/front.svg",
  10324. extra: 1479 / 1449,
  10325. bottom: 0.05
  10326. }
  10327. },
  10328. },
  10329. [
  10330. {
  10331. name: "Fairy",
  10332. height: math.unit(6, "inches")
  10333. },
  10334. {
  10335. name: "Normal",
  10336. height: math.unit(20, "feet"),
  10337. default: true
  10338. },
  10339. {
  10340. name: "Rampage",
  10341. height: math.unit(200, "feet")
  10342. },
  10343. {
  10344. name: "Archfey Forest Guardian",
  10345. height: math.unit(1, "mile")
  10346. },
  10347. ]
  10348. ))
  10349. characterMakers.push(() => makeCharacter(
  10350. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10351. {
  10352. front: {
  10353. height: math.unit(4, "meters"),
  10354. weight: math.unit(2, "tons"),
  10355. name: "Front",
  10356. image: {
  10357. source: "./media/characters/marik/front.svg",
  10358. extra: 1057 / 1003,
  10359. bottom: 0.08
  10360. }
  10361. },
  10362. },
  10363. [
  10364. {
  10365. name: "Normal",
  10366. height: math.unit(4, "meters"),
  10367. default: true
  10368. },
  10369. {
  10370. name: "Macro",
  10371. height: math.unit(20, "meters")
  10372. },
  10373. {
  10374. name: "Megamacro",
  10375. height: math.unit(50, "km")
  10376. },
  10377. {
  10378. name: "Gigamacro",
  10379. height: math.unit(100, "km")
  10380. },
  10381. {
  10382. name: "Alpha Macro",
  10383. height: math.unit(7.88e7, "yottameters")
  10384. },
  10385. ]
  10386. ))
  10387. characterMakers.push(() => makeCharacter(
  10388. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10389. {
  10390. front: {
  10391. height: math.unit(6, "feet"),
  10392. weight: math.unit(110, "lb"),
  10393. name: "Front",
  10394. image: {
  10395. source: "./media/characters/mel/front.svg",
  10396. extra: 736 / 617,
  10397. bottom: 0.017
  10398. }
  10399. },
  10400. },
  10401. [
  10402. {
  10403. name: "Pico",
  10404. height: math.unit(3, "pm")
  10405. },
  10406. {
  10407. name: "Nano",
  10408. height: math.unit(3, "nm")
  10409. },
  10410. {
  10411. name: "Micro",
  10412. height: math.unit(0.3, "mm"),
  10413. default: true
  10414. },
  10415. {
  10416. name: "Micro+",
  10417. height: math.unit(3, "mm")
  10418. },
  10419. {
  10420. name: "Normal",
  10421. height: math.unit(5 + 10.5 / 12, "feet")
  10422. },
  10423. ]
  10424. ))
  10425. characterMakers.push(() => makeCharacter(
  10426. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10427. {
  10428. kaiju: {
  10429. height: math.unit(1.75, "meters"),
  10430. weight: math.unit(55, "kg"),
  10431. name: "Kaiju",
  10432. image: {
  10433. source: "./media/characters/lykonous/kaiju.svg",
  10434. extra: 1055 / 946,
  10435. bottom: 0.135
  10436. }
  10437. },
  10438. },
  10439. [
  10440. {
  10441. name: "Normal",
  10442. height: math.unit(2.5, "meters"),
  10443. default: true
  10444. },
  10445. {
  10446. name: "Kaiju Dragon",
  10447. height: math.unit(60, "meters")
  10448. },
  10449. {
  10450. name: "Mega Kaiju",
  10451. height: math.unit(120, "km")
  10452. },
  10453. {
  10454. name: "Giga Kaiju",
  10455. height: math.unit(200, "megameters")
  10456. },
  10457. {
  10458. name: "Terra Kaiju",
  10459. height: math.unit(400, "gigameters")
  10460. },
  10461. {
  10462. name: "Kaiju Dragon God",
  10463. height: math.unit(13000, "exaparsecs")
  10464. },
  10465. ]
  10466. ))
  10467. characterMakers.push(() => makeCharacter(
  10468. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10469. {
  10470. front: {
  10471. height: math.unit(6, "feet"),
  10472. weight: math.unit(150, "lb"),
  10473. name: "Front",
  10474. image: {
  10475. source: "./media/characters/blü/front.svg",
  10476. extra: 1883 / 1564,
  10477. bottom: 0.031
  10478. }
  10479. },
  10480. },
  10481. [
  10482. {
  10483. name: "Normal",
  10484. height: math.unit(13, "feet"),
  10485. default: true
  10486. },
  10487. {
  10488. name: "Big Boi",
  10489. height: math.unit(150, "meters")
  10490. },
  10491. {
  10492. name: "Mini Stomper",
  10493. height: math.unit(300, "meters")
  10494. },
  10495. {
  10496. name: "Macro",
  10497. height: math.unit(1000, "meters")
  10498. },
  10499. {
  10500. name: "Megamacro",
  10501. height: math.unit(11000, "meters")
  10502. },
  10503. {
  10504. name: "Gigamacro",
  10505. height: math.unit(11000, "km")
  10506. },
  10507. {
  10508. name: "Teramacro",
  10509. height: math.unit(420000, "km")
  10510. },
  10511. {
  10512. name: "Examacro",
  10513. height: math.unit(120, "parsecs")
  10514. },
  10515. {
  10516. name: "God Tho",
  10517. height: math.unit(98000000000, "parsecs")
  10518. },
  10519. ]
  10520. ))
  10521. characterMakers.push(() => makeCharacter(
  10522. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10523. {
  10524. taurFront: {
  10525. height: math.unit(6, "feet"),
  10526. weight: math.unit(200, "lb"),
  10527. name: "Taur (Front)",
  10528. image: {
  10529. source: "./media/characters/scales/taur-front.svg",
  10530. extra: 1,
  10531. bottom: 0.05
  10532. }
  10533. },
  10534. taurBack: {
  10535. height: math.unit(6, "feet"),
  10536. weight: math.unit(200, "lb"),
  10537. name: "Taur (Back)",
  10538. image: {
  10539. source: "./media/characters/scales/taur-back.svg",
  10540. extra: 1,
  10541. bottom: 0.08
  10542. }
  10543. },
  10544. anthro: {
  10545. height: math.unit(6 * 7 / 12, "feet"),
  10546. weight: math.unit(100, "lb"),
  10547. name: "Anthro",
  10548. image: {
  10549. source: "./media/characters/scales/anthro.svg",
  10550. extra: 1,
  10551. bottom: 0.06
  10552. }
  10553. },
  10554. },
  10555. [
  10556. {
  10557. name: "Normal",
  10558. height: math.unit(12, "feet"),
  10559. default: true
  10560. },
  10561. ]
  10562. ))
  10563. characterMakers.push(() => makeCharacter(
  10564. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10565. {
  10566. front: {
  10567. height: math.unit(6, "feet"),
  10568. weight: math.unit(150, "lb"),
  10569. name: "Front",
  10570. image: {
  10571. source: "./media/characters/koragos/front.svg",
  10572. extra: 841 / 794,
  10573. bottom: 0.035
  10574. }
  10575. },
  10576. back: {
  10577. height: math.unit(6, "feet"),
  10578. weight: math.unit(150, "lb"),
  10579. name: "Back",
  10580. image: {
  10581. source: "./media/characters/koragos/back.svg",
  10582. extra: 841 / 810,
  10583. bottom: 0.022
  10584. }
  10585. },
  10586. },
  10587. [
  10588. {
  10589. name: "Normal",
  10590. height: math.unit(6 + 11 / 12, "feet"),
  10591. default: true
  10592. },
  10593. {
  10594. name: "Macro",
  10595. height: math.unit(490, "feet")
  10596. },
  10597. {
  10598. name: "Megamacro",
  10599. height: math.unit(10, "miles")
  10600. },
  10601. {
  10602. name: "Gigamacro",
  10603. height: math.unit(50, "miles")
  10604. },
  10605. ]
  10606. ))
  10607. characterMakers.push(() => makeCharacter(
  10608. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10609. {
  10610. front: {
  10611. height: math.unit(6, "feet"),
  10612. weight: math.unit(250, "lb"),
  10613. name: "Front",
  10614. image: {
  10615. source: "./media/characters/xylrem/front.svg",
  10616. extra: 3323 / 3050,
  10617. bottom: 0.065
  10618. }
  10619. },
  10620. },
  10621. [
  10622. {
  10623. name: "Micro",
  10624. height: math.unit(4, "feet")
  10625. },
  10626. {
  10627. name: "Normal",
  10628. height: math.unit(16, "feet"),
  10629. default: true
  10630. },
  10631. {
  10632. name: "Macro",
  10633. height: math.unit(2720, "feet")
  10634. },
  10635. {
  10636. name: "Megamacro",
  10637. height: math.unit(25000, "miles")
  10638. },
  10639. ]
  10640. ))
  10641. characterMakers.push(() => makeCharacter(
  10642. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10643. {
  10644. front: {
  10645. height: math.unit(8, "feet"),
  10646. weight: math.unit(250, "kg"),
  10647. name: "Front",
  10648. image: {
  10649. source: "./media/characters/ikideru/front.svg",
  10650. extra: 930 / 870,
  10651. bottom: 0.087
  10652. }
  10653. },
  10654. back: {
  10655. height: math.unit(8, "feet"),
  10656. weight: math.unit(250, "kg"),
  10657. name: "Back",
  10658. image: {
  10659. source: "./media/characters/ikideru/back.svg",
  10660. extra: 919 / 852,
  10661. bottom: 0.055
  10662. }
  10663. },
  10664. },
  10665. [
  10666. {
  10667. name: "Rare",
  10668. height: math.unit(8, "feet"),
  10669. default: true
  10670. },
  10671. {
  10672. name: "Playful Loom",
  10673. height: math.unit(80, "feet")
  10674. },
  10675. {
  10676. name: "City Leaner",
  10677. height: math.unit(230, "feet")
  10678. },
  10679. {
  10680. name: "Megamacro",
  10681. height: math.unit(2500, "feet")
  10682. },
  10683. {
  10684. name: "Gigamacro",
  10685. height: math.unit(26400, "feet")
  10686. },
  10687. {
  10688. name: "Tectonic Shifter",
  10689. height: math.unit(1.7, "megameters")
  10690. },
  10691. {
  10692. name: "Planet Carer",
  10693. height: math.unit(21, "megameters")
  10694. },
  10695. {
  10696. name: "God",
  10697. height: math.unit(11157.22, "parsecs")
  10698. },
  10699. ]
  10700. ))
  10701. characterMakers.push(() => makeCharacter(
  10702. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10703. {
  10704. front: {
  10705. height: math.unit(6, "feet"),
  10706. weight: math.unit(120, "lb"),
  10707. name: "Front",
  10708. image: {
  10709. source: "./media/characters/neo/front.svg"
  10710. }
  10711. },
  10712. },
  10713. [
  10714. {
  10715. name: "Micro",
  10716. height: math.unit(2, "inches"),
  10717. default: true
  10718. },
  10719. {
  10720. name: "Human Size",
  10721. height: math.unit(5 + 8 / 12, "feet")
  10722. },
  10723. ]
  10724. ))
  10725. characterMakers.push(() => makeCharacter(
  10726. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10727. {
  10728. front: {
  10729. height: math.unit(13 + 10 / 12, "feet"),
  10730. weight: math.unit(5320, "lb"),
  10731. name: "Front",
  10732. image: {
  10733. source: "./media/characters/chauncey-chantz/front.svg",
  10734. extra: 1587 / 1435,
  10735. bottom: 0.02
  10736. }
  10737. },
  10738. },
  10739. [
  10740. {
  10741. name: "Normal",
  10742. height: math.unit(13 + 10 / 12, "feet"),
  10743. default: true
  10744. },
  10745. {
  10746. name: "Macro",
  10747. height: math.unit(45, "feet")
  10748. },
  10749. {
  10750. name: "Megamacro",
  10751. height: math.unit(250, "miles")
  10752. },
  10753. {
  10754. name: "Planetary",
  10755. height: math.unit(10000, "miles")
  10756. },
  10757. {
  10758. name: "Galactic",
  10759. height: math.unit(40000, "parsecs")
  10760. },
  10761. {
  10762. name: "Universal",
  10763. height: math.unit(1, "yottameter")
  10764. },
  10765. ]
  10766. ))
  10767. characterMakers.push(() => makeCharacter(
  10768. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10769. {
  10770. front: {
  10771. height: math.unit(6, "feet"),
  10772. weight: math.unit(150, "lb"),
  10773. name: "Front",
  10774. image: {
  10775. source: "./media/characters/epifox/front.svg",
  10776. extra: 1,
  10777. bottom: 0.075
  10778. }
  10779. },
  10780. },
  10781. [
  10782. {
  10783. name: "Micro",
  10784. height: math.unit(6, "inches")
  10785. },
  10786. {
  10787. name: "Normal",
  10788. height: math.unit(12, "feet"),
  10789. default: true
  10790. },
  10791. {
  10792. name: "Macro",
  10793. height: math.unit(3810, "feet")
  10794. },
  10795. {
  10796. name: "Megamacro",
  10797. height: math.unit(500, "miles")
  10798. },
  10799. ]
  10800. ))
  10801. characterMakers.push(() => makeCharacter(
  10802. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10803. {
  10804. front: {
  10805. height: math.unit(1.8796, "m"),
  10806. weight: math.unit(230, "lb"),
  10807. name: "Front",
  10808. image: {
  10809. source: "./media/characters/colin-t/front.svg",
  10810. extra: 1272 / 1193,
  10811. bottom: 0.07
  10812. }
  10813. },
  10814. },
  10815. [
  10816. {
  10817. name: "Micro",
  10818. height: math.unit(0.571, "meters")
  10819. },
  10820. {
  10821. name: "Normal",
  10822. height: math.unit(1.8796, "meters"),
  10823. default: true
  10824. },
  10825. {
  10826. name: "Tall",
  10827. height: math.unit(4, "meters")
  10828. },
  10829. {
  10830. name: "Macro",
  10831. height: math.unit(67.241, "meters")
  10832. },
  10833. {
  10834. name: "Megamacro",
  10835. height: math.unit(371.856, "meters")
  10836. },
  10837. {
  10838. name: "Planetary",
  10839. height: math.unit(12631.5689, "km")
  10840. },
  10841. ]
  10842. ))
  10843. characterMakers.push(() => makeCharacter(
  10844. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10845. {
  10846. front: {
  10847. height: math.unit(1.85, "meters"),
  10848. weight: math.unit(80, "kg"),
  10849. name: "Front",
  10850. image: {
  10851. source: "./media/characters/matvei/front.svg",
  10852. extra: 614 / 594,
  10853. bottom: 0.01
  10854. }
  10855. },
  10856. },
  10857. [
  10858. {
  10859. name: "Normal",
  10860. height: math.unit(1.85, "meters"),
  10861. default: true
  10862. },
  10863. ]
  10864. ))
  10865. characterMakers.push(() => makeCharacter(
  10866. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10867. {
  10868. front: {
  10869. height: math.unit(5 + 9 / 12, "feet"),
  10870. weight: math.unit(70, "lb"),
  10871. name: "Front",
  10872. image: {
  10873. source: "./media/characters/quincy/front.svg",
  10874. extra: 3041 / 2751
  10875. }
  10876. },
  10877. back: {
  10878. height: math.unit(5 + 9 / 12, "feet"),
  10879. weight: math.unit(70, "lb"),
  10880. name: "Back",
  10881. image: {
  10882. source: "./media/characters/quincy/back.svg",
  10883. extra: 3041 / 2751
  10884. }
  10885. },
  10886. flying: {
  10887. height: math.unit(5 + 4 / 12, "feet"),
  10888. weight: math.unit(70, "lb"),
  10889. name: "Flying",
  10890. image: {
  10891. source: "./media/characters/quincy/flying.svg",
  10892. extra: 1044 / 930
  10893. }
  10894. },
  10895. },
  10896. [
  10897. {
  10898. name: "Micro",
  10899. height: math.unit(3, "cm")
  10900. },
  10901. {
  10902. name: "Normal",
  10903. height: math.unit(5 + 9 / 12, "feet")
  10904. },
  10905. {
  10906. name: "Macro",
  10907. height: math.unit(200, "meters"),
  10908. default: true
  10909. },
  10910. {
  10911. name: "Megamacro",
  10912. height: math.unit(1000, "meters")
  10913. },
  10914. ]
  10915. ))
  10916. characterMakers.push(() => makeCharacter(
  10917. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10918. {
  10919. front: {
  10920. height: math.unit(4 + 7 / 12, "feet"),
  10921. weight: math.unit(150, "lb"),
  10922. name: "Front",
  10923. image: {
  10924. source: "./media/characters/vanrel/front.svg",
  10925. extra: 1,
  10926. bottom: 0.02
  10927. }
  10928. },
  10929. elemental: {
  10930. height: math.unit(3, "feet"),
  10931. weight: math.unit(150, "lb"),
  10932. name: "Elemental",
  10933. image: {
  10934. source: "./media/characters/vanrel/elemental.svg",
  10935. extra: 192.3 / 162.8,
  10936. bottom: 1.79 / 194.17
  10937. }
  10938. },
  10939. side: {
  10940. height: math.unit(4 + 7 / 12, "feet"),
  10941. weight: math.unit(150, "lb"),
  10942. name: "Side",
  10943. image: {
  10944. source: "./media/characters/vanrel/side.svg",
  10945. extra: 1,
  10946. bottom: 0.025
  10947. }
  10948. },
  10949. tome: {
  10950. height: math.unit(1.35, "feet"),
  10951. weight: math.unit(10, "lb"),
  10952. name: "Vanrel's Tome",
  10953. rename: true,
  10954. image: {
  10955. source: "./media/characters/vanrel/tome.svg"
  10956. }
  10957. },
  10958. beans: {
  10959. height: math.unit(0.89, "feet"),
  10960. name: "Beans",
  10961. image: {
  10962. source: "./media/characters/vanrel/beans.svg"
  10963. }
  10964. },
  10965. },
  10966. [
  10967. {
  10968. name: "Normal",
  10969. height: math.unit(4 + 7 / 12, "feet"),
  10970. default: true
  10971. },
  10972. ]
  10973. ))
  10974. characterMakers.push(() => makeCharacter(
  10975. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  10976. {
  10977. front: {
  10978. height: math.unit(7 + 5 / 12, "feet"),
  10979. weight: math.unit(150, "lb"),
  10980. name: "Front",
  10981. image: {
  10982. source: "./media/characters/kuiper-vanrel/front.svg",
  10983. extra: 1118 / 1068,
  10984. bottom: 0.09
  10985. }
  10986. },
  10987. foot: {
  10988. height: math.unit(0.55, "meters"),
  10989. name: "Foot",
  10990. image: {
  10991. source: "./media/characters/kuiper-vanrel/foot.svg",
  10992. }
  10993. },
  10994. battle: {
  10995. height: math.unit(6.824, "feet"),
  10996. weight: math.unit(150, "lb"),
  10997. name: "Battle",
  10998. image: {
  10999. source: "./media/characters/kuiper-vanrel/battle.svg",
  11000. extra: 1466 / 1327,
  11001. bottom: 29 / 1492.5
  11002. }
  11003. },
  11004. },
  11005. [
  11006. {
  11007. name: "Normal",
  11008. height: math.unit(7 + 5 / 12, "feet"),
  11009. default: true
  11010. },
  11011. ]
  11012. ))
  11013. characterMakers.push(() => makeCharacter(
  11014. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11015. {
  11016. front: {
  11017. height: math.unit(8 + 5 / 12, "feet"),
  11018. weight: math.unit(150, "lb"),
  11019. name: "Front",
  11020. image: {
  11021. source: "./media/characters/keset-vanrel/front.svg",
  11022. extra: 1150 / 1084,
  11023. bottom: 0.05
  11024. }
  11025. },
  11026. hand: {
  11027. height: math.unit(0.6, "meters"),
  11028. name: "Hand",
  11029. image: {
  11030. source: "./media/characters/keset-vanrel/hand.svg"
  11031. }
  11032. },
  11033. foot: {
  11034. height: math.unit(0.94978, "meters"),
  11035. name: "Foot",
  11036. image: {
  11037. source: "./media/characters/keset-vanrel/foot.svg"
  11038. }
  11039. },
  11040. battle: {
  11041. height: math.unit(7.408, "feet"),
  11042. weight: math.unit(150, "lb"),
  11043. name: "Battle",
  11044. image: {
  11045. source: "./media/characters/keset-vanrel/battle.svg",
  11046. extra: 1890 / 1386,
  11047. bottom: 73.28 / 1970
  11048. }
  11049. },
  11050. },
  11051. [
  11052. {
  11053. name: "Normal",
  11054. height: math.unit(8 + 5 / 12, "feet"),
  11055. default: true
  11056. },
  11057. ]
  11058. ))
  11059. characterMakers.push(() => makeCharacter(
  11060. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11061. {
  11062. front: {
  11063. height: math.unit(6, "feet"),
  11064. weight: math.unit(150, "lb"),
  11065. name: "Front",
  11066. image: {
  11067. source: "./media/characters/neos/front.svg",
  11068. extra: 1696 / 992,
  11069. bottom: 0.14
  11070. }
  11071. },
  11072. },
  11073. [
  11074. {
  11075. name: "Normal",
  11076. height: math.unit(54, "cm"),
  11077. default: true
  11078. },
  11079. {
  11080. name: "Macro",
  11081. height: math.unit(100, "m")
  11082. },
  11083. {
  11084. name: "Megamacro",
  11085. height: math.unit(10, "km")
  11086. },
  11087. {
  11088. name: "Megamacro+",
  11089. height: math.unit(100, "km")
  11090. },
  11091. {
  11092. name: "Gigamacro",
  11093. height: math.unit(100, "Mm")
  11094. },
  11095. {
  11096. name: "Teramacro",
  11097. height: math.unit(100, "Gm")
  11098. },
  11099. {
  11100. name: "Examacro",
  11101. height: math.unit(100, "Em")
  11102. },
  11103. {
  11104. name: "Godly",
  11105. height: math.unit(10000, "Ym")
  11106. },
  11107. {
  11108. name: "Beyond Godly",
  11109. height: math.unit(25, "multiverses")
  11110. },
  11111. ]
  11112. ))
  11113. characterMakers.push(() => makeCharacter(
  11114. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11115. {
  11116. feminine: {
  11117. height: math.unit(5, "feet"),
  11118. weight: math.unit(100, "lb"),
  11119. name: "Feminine",
  11120. image: {
  11121. source: "./media/characters/sammy-mouse/feminine.svg",
  11122. extra: 2526 / 2425,
  11123. bottom: 0.123
  11124. }
  11125. },
  11126. masculine: {
  11127. height: math.unit(5, "feet"),
  11128. weight: math.unit(100, "lb"),
  11129. name: "Masculine",
  11130. image: {
  11131. source: "./media/characters/sammy-mouse/masculine.svg",
  11132. extra: 2526 / 2425,
  11133. bottom: 0.123
  11134. }
  11135. },
  11136. },
  11137. [
  11138. {
  11139. name: "Micro",
  11140. height: math.unit(5, "inches")
  11141. },
  11142. {
  11143. name: "Normal",
  11144. height: math.unit(5, "feet"),
  11145. default: true
  11146. },
  11147. {
  11148. name: "Macro",
  11149. height: math.unit(60, "feet")
  11150. },
  11151. ]
  11152. ))
  11153. characterMakers.push(() => makeCharacter(
  11154. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11155. {
  11156. front: {
  11157. height: math.unit(4, "feet"),
  11158. weight: math.unit(50, "lb"),
  11159. name: "Front",
  11160. image: {
  11161. source: "./media/characters/kole/front.svg",
  11162. extra: 1423 / 1303,
  11163. bottom: 0.025
  11164. }
  11165. },
  11166. back: {
  11167. height: math.unit(4, "feet"),
  11168. weight: math.unit(50, "lb"),
  11169. name: "Back",
  11170. image: {
  11171. source: "./media/characters/kole/back.svg",
  11172. extra: 1426 / 1280,
  11173. bottom: 0.02
  11174. }
  11175. },
  11176. },
  11177. [
  11178. {
  11179. name: "Normal",
  11180. height: math.unit(4, "feet"),
  11181. default: true
  11182. },
  11183. ]
  11184. ))
  11185. characterMakers.push(() => makeCharacter(
  11186. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11187. {
  11188. front: {
  11189. height: math.unit(2 + 6 / 12, "feet"),
  11190. weight: math.unit(20, "lb"),
  11191. name: "Front",
  11192. image: {
  11193. source: "./media/characters/rufran/front.svg",
  11194. extra: 2041 / 1839,
  11195. bottom: 0.055
  11196. }
  11197. },
  11198. back: {
  11199. height: math.unit(2 + 6 / 12, "feet"),
  11200. weight: math.unit(20, "lb"),
  11201. name: "Back",
  11202. image: {
  11203. source: "./media/characters/rufran/back.svg",
  11204. extra: 2054 / 1839,
  11205. bottom: 0.01
  11206. }
  11207. },
  11208. hand: {
  11209. height: math.unit(0.2166, "meters"),
  11210. name: "Hand",
  11211. image: {
  11212. source: "./media/characters/rufran/hand.svg"
  11213. }
  11214. },
  11215. foot: {
  11216. height: math.unit(0.185, "meters"),
  11217. name: "Foot",
  11218. image: {
  11219. source: "./media/characters/rufran/foot.svg"
  11220. }
  11221. },
  11222. },
  11223. [
  11224. {
  11225. name: "Micro",
  11226. height: math.unit(1, "inch")
  11227. },
  11228. {
  11229. name: "Normal",
  11230. height: math.unit(2 + 6 / 12, "feet"),
  11231. default: true
  11232. },
  11233. {
  11234. name: "Big",
  11235. height: math.unit(60, "feet")
  11236. },
  11237. {
  11238. name: "Macro",
  11239. height: math.unit(325, "feet")
  11240. },
  11241. ]
  11242. ))
  11243. characterMakers.push(() => makeCharacter(
  11244. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11245. {
  11246. front: {
  11247. height: math.unit(0.3, "meters"),
  11248. weight: math.unit(3.5, "kg"),
  11249. name: "Front",
  11250. image: {
  11251. source: "./media/characters/chip/front.svg",
  11252. extra: 748 / 674
  11253. }
  11254. },
  11255. },
  11256. [
  11257. {
  11258. name: "Micro",
  11259. height: math.unit(1, "inch"),
  11260. default: true
  11261. },
  11262. ]
  11263. ))
  11264. characterMakers.push(() => makeCharacter(
  11265. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11266. {
  11267. side: {
  11268. height: math.unit(2.3, "meters"),
  11269. weight: math.unit(3500, "lb"),
  11270. name: "Side",
  11271. image: {
  11272. source: "./media/characters/torvid/side.svg",
  11273. extra: 1972 / 722,
  11274. bottom: 0.035
  11275. }
  11276. },
  11277. },
  11278. [
  11279. {
  11280. name: "Normal",
  11281. height: math.unit(2.3, "meters"),
  11282. default: true
  11283. },
  11284. ]
  11285. ))
  11286. characterMakers.push(() => makeCharacter(
  11287. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11288. {
  11289. front: {
  11290. height: math.unit(2, "meters"),
  11291. weight: math.unit(150.5, "kg"),
  11292. name: "Front",
  11293. image: {
  11294. source: "./media/characters/susan/front.svg",
  11295. extra: 693 / 635,
  11296. bottom: 0.05
  11297. }
  11298. },
  11299. },
  11300. [
  11301. {
  11302. name: "Megamacro",
  11303. height: math.unit(505, "miles"),
  11304. default: true
  11305. },
  11306. ]
  11307. ))
  11308. characterMakers.push(() => makeCharacter(
  11309. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11310. {
  11311. front: {
  11312. height: math.unit(6, "feet"),
  11313. weight: math.unit(150, "lb"),
  11314. name: "Front",
  11315. image: {
  11316. source: "./media/characters/raindrops/front.svg",
  11317. extra: 2655 / 2461,
  11318. bottom: 0.02
  11319. }
  11320. },
  11321. back: {
  11322. height: math.unit(6, "feet"),
  11323. weight: math.unit(150, "lb"),
  11324. name: "Back",
  11325. image: {
  11326. source: "./media/characters/raindrops/back.svg",
  11327. extra: 2574 / 2400,
  11328. bottom: 0.03
  11329. }
  11330. },
  11331. },
  11332. [
  11333. {
  11334. name: "Micro",
  11335. height: math.unit(6, "inches")
  11336. },
  11337. {
  11338. name: "Normal",
  11339. height: math.unit(6 + 2 / 12, "feet")
  11340. },
  11341. {
  11342. name: "Macro",
  11343. height: math.unit(131, "feet"),
  11344. default: true
  11345. },
  11346. {
  11347. name: "Megamacro",
  11348. height: math.unit(15, "miles")
  11349. },
  11350. {
  11351. name: "Gigamacro",
  11352. height: math.unit(4000, "miles")
  11353. },
  11354. {
  11355. name: "Teramacro",
  11356. height: math.unit(315000, "miles")
  11357. },
  11358. ]
  11359. ))
  11360. characterMakers.push(() => makeCharacter(
  11361. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11362. {
  11363. front: {
  11364. height: math.unit(2.794, "meters"),
  11365. weight: math.unit(325, "kg"),
  11366. name: "Front",
  11367. image: {
  11368. source: "./media/characters/tezwa/front.svg",
  11369. extra: 2083 / 1906,
  11370. bottom: 0.031
  11371. }
  11372. },
  11373. foot: {
  11374. height: math.unit(0.687, "meters"),
  11375. name: "Foot",
  11376. image: {
  11377. source: "./media/characters/tezwa/foot.svg"
  11378. }
  11379. },
  11380. },
  11381. [
  11382. {
  11383. name: "Normal",
  11384. height: math.unit(9 + 2 / 12, "feet"),
  11385. default: true
  11386. },
  11387. ]
  11388. ))
  11389. characterMakers.push(() => makeCharacter(
  11390. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11391. {
  11392. front: {
  11393. height: math.unit(58, "feet"),
  11394. weight: math.unit(89000, "lb"),
  11395. name: "Front",
  11396. image: {
  11397. source: "./media/characters/typhus/front.svg",
  11398. extra: 816 / 800,
  11399. bottom: 0.065
  11400. }
  11401. },
  11402. },
  11403. [
  11404. {
  11405. name: "Macro",
  11406. height: math.unit(58, "feet"),
  11407. default: true
  11408. },
  11409. ]
  11410. ))
  11411. characterMakers.push(() => makeCharacter(
  11412. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11413. {
  11414. front: {
  11415. height: math.unit(12, "feet"),
  11416. weight: math.unit(6, "tonnes"),
  11417. name: "Front",
  11418. image: {
  11419. source: "./media/characters/lyra-von-wulf/front.svg",
  11420. extra: 1,
  11421. bottom: 0.10
  11422. }
  11423. },
  11424. frontMecha: {
  11425. height: math.unit(12, "feet"),
  11426. weight: math.unit(12, "tonnes"),
  11427. name: "Front (Mecha)",
  11428. image: {
  11429. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11430. extra: 1,
  11431. bottom: 0.042
  11432. }
  11433. },
  11434. maw: {
  11435. height: math.unit(2.2, "feet"),
  11436. name: "Maw",
  11437. image: {
  11438. source: "./media/characters/lyra-von-wulf/maw.svg"
  11439. }
  11440. },
  11441. },
  11442. [
  11443. {
  11444. name: "Normal",
  11445. height: math.unit(12, "feet"),
  11446. default: true
  11447. },
  11448. {
  11449. name: "Classic",
  11450. height: math.unit(50, "feet")
  11451. },
  11452. {
  11453. name: "Macro",
  11454. height: math.unit(500, "feet")
  11455. },
  11456. {
  11457. name: "Megamacro",
  11458. height: math.unit(1, "mile")
  11459. },
  11460. {
  11461. name: "Gigamacro",
  11462. height: math.unit(400, "miles")
  11463. },
  11464. {
  11465. name: "Teramacro",
  11466. height: math.unit(22000, "miles")
  11467. },
  11468. {
  11469. name: "Solarmacro",
  11470. height: math.unit(8600000, "miles")
  11471. },
  11472. {
  11473. name: "Galactic",
  11474. height: math.unit(1057000, "lightyears")
  11475. },
  11476. ]
  11477. ))
  11478. characterMakers.push(() => makeCharacter(
  11479. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11480. {
  11481. front: {
  11482. height: math.unit(6 + 10 / 12, "feet"),
  11483. weight: math.unit(150, "lb"),
  11484. name: "Front",
  11485. image: {
  11486. source: "./media/characters/dixon/front.svg",
  11487. extra: 3361 / 3209,
  11488. bottom: 0.01
  11489. }
  11490. },
  11491. },
  11492. [
  11493. {
  11494. name: "Normal",
  11495. height: math.unit(6 + 10 / 12, "feet"),
  11496. default: true
  11497. },
  11498. {
  11499. name: "Big",
  11500. height: math.unit(12, "meters")
  11501. },
  11502. {
  11503. name: "Macro",
  11504. height: math.unit(500, "meters")
  11505. },
  11506. {
  11507. name: "Megamacro",
  11508. height: math.unit(2, "km")
  11509. },
  11510. ]
  11511. ))
  11512. characterMakers.push(() => makeCharacter(
  11513. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11514. {
  11515. front: {
  11516. height: math.unit(185, "cm"),
  11517. weight: math.unit(68, "kg"),
  11518. name: "Front",
  11519. image: {
  11520. source: "./media/characters/kauko/front.svg",
  11521. extra: 1455 / 1421,
  11522. bottom: 0.03
  11523. }
  11524. },
  11525. back: {
  11526. height: math.unit(185, "cm"),
  11527. weight: math.unit(68, "kg"),
  11528. name: "Back",
  11529. image: {
  11530. source: "./media/characters/kauko/back.svg",
  11531. extra: 1455 / 1421,
  11532. bottom: 0.004
  11533. }
  11534. },
  11535. },
  11536. [
  11537. {
  11538. name: "Normal",
  11539. height: math.unit(185, "cm"),
  11540. default: true
  11541. },
  11542. ]
  11543. ))
  11544. characterMakers.push(() => makeCharacter(
  11545. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11546. {
  11547. front: {
  11548. height: math.unit(6, "feet"),
  11549. weight: math.unit(150, "kg"),
  11550. name: "Front",
  11551. image: {
  11552. source: "./media/characters/varg/front.svg",
  11553. extra: 1108 / 1018,
  11554. bottom: 0.0375
  11555. }
  11556. },
  11557. },
  11558. [
  11559. {
  11560. name: "Normal",
  11561. height: math.unit(5, "meters")
  11562. },
  11563. {
  11564. name: "Macro",
  11565. height: math.unit(200, "meters")
  11566. },
  11567. {
  11568. name: "Megamacro",
  11569. height: math.unit(20, "kilometers")
  11570. },
  11571. {
  11572. name: "True Size",
  11573. height: math.unit(211, "km"),
  11574. default: true
  11575. },
  11576. {
  11577. name: "Gigamacro",
  11578. height: math.unit(1000, "km")
  11579. },
  11580. {
  11581. name: "Gigamacro+",
  11582. height: math.unit(8000, "km")
  11583. },
  11584. {
  11585. name: "Teramacro",
  11586. height: math.unit(1000000, "km")
  11587. },
  11588. ]
  11589. ))
  11590. characterMakers.push(() => makeCharacter(
  11591. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11592. {
  11593. front: {
  11594. height: math.unit(7 + 7 / 12, "feet"),
  11595. weight: math.unit(267, "lb"),
  11596. name: "Front",
  11597. image: {
  11598. source: "./media/characters/dayza/front.svg",
  11599. extra: 1262 / 1200,
  11600. bottom: 0.035
  11601. }
  11602. },
  11603. side: {
  11604. height: math.unit(7 + 7 / 12, "feet"),
  11605. weight: math.unit(267, "lb"),
  11606. name: "Side",
  11607. image: {
  11608. source: "./media/characters/dayza/side.svg",
  11609. extra: 1295 / 1245,
  11610. bottom: 0.05
  11611. }
  11612. },
  11613. back: {
  11614. height: math.unit(7 + 7 / 12, "feet"),
  11615. weight: math.unit(267, "lb"),
  11616. name: "Back",
  11617. image: {
  11618. source: "./media/characters/dayza/back.svg",
  11619. extra: 1241 / 1170
  11620. }
  11621. },
  11622. },
  11623. [
  11624. {
  11625. name: "Normal",
  11626. height: math.unit(7 + 7 / 12, "feet"),
  11627. default: true
  11628. },
  11629. {
  11630. name: "Macro",
  11631. height: math.unit(155, "feet")
  11632. },
  11633. ]
  11634. ))
  11635. characterMakers.push(() => makeCharacter(
  11636. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11637. {
  11638. front: {
  11639. height: math.unit(6 + 5 / 12, "feet"),
  11640. weight: math.unit(160, "lb"),
  11641. name: "Front",
  11642. image: {
  11643. source: "./media/characters/xanthos/front.svg",
  11644. extra: 1,
  11645. bottom: 0.04
  11646. }
  11647. },
  11648. back: {
  11649. height: math.unit(6 + 5 / 12, "feet"),
  11650. weight: math.unit(160, "lb"),
  11651. name: "Back",
  11652. image: {
  11653. source: "./media/characters/xanthos/back.svg",
  11654. extra: 1,
  11655. bottom: 0.03
  11656. }
  11657. },
  11658. hand: {
  11659. height: math.unit(0.928, "feet"),
  11660. name: "Hand",
  11661. image: {
  11662. source: "./media/characters/xanthos/hand.svg"
  11663. }
  11664. },
  11665. foot: {
  11666. height: math.unit(1.286, "feet"),
  11667. name: "Foot",
  11668. image: {
  11669. source: "./media/characters/xanthos/foot.svg"
  11670. }
  11671. },
  11672. },
  11673. [
  11674. {
  11675. name: "Normal",
  11676. height: math.unit(6 + 5 / 12, "feet"),
  11677. default: true
  11678. },
  11679. {
  11680. name: "Normal+",
  11681. height: math.unit(6, "meters")
  11682. },
  11683. {
  11684. name: "Macro",
  11685. height: math.unit(40, "feet")
  11686. },
  11687. {
  11688. name: "Macro+",
  11689. height: math.unit(200, "meters")
  11690. },
  11691. {
  11692. name: "Megamacro",
  11693. height: math.unit(20, "km")
  11694. },
  11695. {
  11696. name: "Megamacro+",
  11697. height: math.unit(100, "km")
  11698. },
  11699. ]
  11700. ))
  11701. characterMakers.push(() => makeCharacter(
  11702. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11703. {
  11704. front: {
  11705. height: math.unit(6 + 3 / 12, "feet"),
  11706. weight: math.unit(215, "lb"),
  11707. name: "Front",
  11708. image: {
  11709. source: "./media/characters/grynn/front.svg",
  11710. extra: 4627 / 4209,
  11711. bottom: 0.047
  11712. }
  11713. },
  11714. },
  11715. [
  11716. {
  11717. name: "Micro",
  11718. height: math.unit(6, "inches")
  11719. },
  11720. {
  11721. name: "Normal",
  11722. height: math.unit(6 + 3 / 12, "feet"),
  11723. default: true
  11724. },
  11725. {
  11726. name: "Big",
  11727. height: math.unit(104, "feet")
  11728. },
  11729. {
  11730. name: "Macro",
  11731. height: math.unit(944, "feet")
  11732. },
  11733. {
  11734. name: "Macro+",
  11735. height: math.unit(9480, "feet")
  11736. },
  11737. {
  11738. name: "Megamacro",
  11739. height: math.unit(78752, "feet")
  11740. },
  11741. {
  11742. name: "Megamacro+",
  11743. height: math.unit(630128, "feet")
  11744. },
  11745. {
  11746. name: "Megamacro++",
  11747. height: math.unit(3150695, "feet")
  11748. },
  11749. ]
  11750. ))
  11751. characterMakers.push(() => makeCharacter(
  11752. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11753. {
  11754. front: {
  11755. height: math.unit(7 + 5 / 12, "feet"),
  11756. weight: math.unit(450, "lb"),
  11757. name: "Front",
  11758. image: {
  11759. source: "./media/characters/mocha-aura/front.svg",
  11760. extra: 1907 / 1817,
  11761. bottom: 0.04
  11762. }
  11763. },
  11764. back: {
  11765. height: math.unit(7 + 5 / 12, "feet"),
  11766. weight: math.unit(450, "lb"),
  11767. name: "Back",
  11768. image: {
  11769. source: "./media/characters/mocha-aura/back.svg",
  11770. extra: 1900 / 1825,
  11771. bottom: 0.045
  11772. }
  11773. },
  11774. },
  11775. [
  11776. {
  11777. name: "Nano",
  11778. height: math.unit(1, "nm")
  11779. },
  11780. {
  11781. name: "Megamicro",
  11782. height: math.unit(1, "mm")
  11783. },
  11784. {
  11785. name: "Micro",
  11786. height: math.unit(3, "inches")
  11787. },
  11788. {
  11789. name: "Normal",
  11790. height: math.unit(7 + 5 / 12, "feet"),
  11791. default: true
  11792. },
  11793. {
  11794. name: "Macro",
  11795. height: math.unit(30, "feet")
  11796. },
  11797. {
  11798. name: "Megamacro",
  11799. height: math.unit(3500, "feet")
  11800. },
  11801. {
  11802. name: "Teramacro",
  11803. height: math.unit(500000, "miles")
  11804. },
  11805. {
  11806. name: "Petamacro",
  11807. height: math.unit(50000000000000000, "parsecs")
  11808. },
  11809. ]
  11810. ))
  11811. characterMakers.push(() => makeCharacter(
  11812. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11813. {
  11814. front: {
  11815. height: math.unit(6, "feet"),
  11816. weight: math.unit(150, "lb"),
  11817. name: "Front",
  11818. image: {
  11819. source: "./media/characters/ilisha-devya/front.svg",
  11820. extra: 1,
  11821. bottom: 0.175
  11822. }
  11823. },
  11824. back: {
  11825. height: math.unit(6, "feet"),
  11826. weight: math.unit(150, "lb"),
  11827. name: "Back",
  11828. image: {
  11829. source: "./media/characters/ilisha-devya/back.svg",
  11830. extra: 1,
  11831. bottom: 0.015
  11832. }
  11833. },
  11834. },
  11835. [
  11836. {
  11837. name: "Macro",
  11838. height: math.unit(500, "feet"),
  11839. default: true
  11840. },
  11841. {
  11842. name: "Megamacro",
  11843. height: math.unit(10, "miles")
  11844. },
  11845. {
  11846. name: "Gigamacro",
  11847. height: math.unit(100000, "miles")
  11848. },
  11849. {
  11850. name: "Examacro",
  11851. height: math.unit(1e9, "lightyears")
  11852. },
  11853. {
  11854. name: "Omniversal",
  11855. height: math.unit(1e33, "lightyears")
  11856. },
  11857. {
  11858. name: "Beyond Infinite",
  11859. height: math.unit(1e100, "lightyears")
  11860. },
  11861. ]
  11862. ))
  11863. characterMakers.push(() => makeCharacter(
  11864. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11865. {
  11866. Side: {
  11867. height: math.unit(6, "feet"),
  11868. weight: math.unit(150, "lb"),
  11869. name: "Side",
  11870. image: {
  11871. source: "./media/characters/mira/side.svg",
  11872. extra: 900 / 799,
  11873. bottom: 0.02
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Human Size",
  11880. height: math.unit(6, "feet")
  11881. },
  11882. {
  11883. name: "Macro",
  11884. height: math.unit(100, "feet"),
  11885. default: true
  11886. },
  11887. {
  11888. name: "Megamacro",
  11889. height: math.unit(10, "miles")
  11890. },
  11891. {
  11892. name: "Gigamacro",
  11893. height: math.unit(25000, "miles")
  11894. },
  11895. {
  11896. name: "Teramacro",
  11897. height: math.unit(300, "AU")
  11898. },
  11899. {
  11900. name: "Full Size",
  11901. height: math.unit(4.5e10, "lightyears")
  11902. },
  11903. ]
  11904. ))
  11905. characterMakers.push(() => makeCharacter(
  11906. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11907. {
  11908. front: {
  11909. height: math.unit(6, "feet"),
  11910. weight: math.unit(150, "lb"),
  11911. name: "Front",
  11912. image: {
  11913. source: "./media/characters/holly/front.svg",
  11914. extra: 639 / 606
  11915. }
  11916. },
  11917. back: {
  11918. height: math.unit(6, "feet"),
  11919. weight: math.unit(150, "lb"),
  11920. name: "Back",
  11921. image: {
  11922. source: "./media/characters/holly/back.svg",
  11923. extra: 623 / 598
  11924. }
  11925. },
  11926. frontWorking: {
  11927. height: math.unit(6, "feet"),
  11928. weight: math.unit(150, "lb"),
  11929. name: "Front (Working)",
  11930. image: {
  11931. source: "./media/characters/holly/front-working.svg",
  11932. extra: 607 / 577,
  11933. bottom: 0.048
  11934. }
  11935. },
  11936. },
  11937. [
  11938. {
  11939. name: "Normal",
  11940. height: math.unit(12 + 3 / 12, "feet"),
  11941. default: true
  11942. },
  11943. ]
  11944. ))
  11945. characterMakers.push(() => makeCharacter(
  11946. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11947. {
  11948. front: {
  11949. height: math.unit(6, "feet"),
  11950. weight: math.unit(150, "lb"),
  11951. name: "Front",
  11952. image: {
  11953. source: "./media/characters/porter/front.svg",
  11954. extra: 1,
  11955. bottom: 0.01
  11956. }
  11957. },
  11958. frontRobes: {
  11959. height: math.unit(6, "feet"),
  11960. weight: math.unit(150, "lb"),
  11961. name: "Front (Robes)",
  11962. image: {
  11963. source: "./media/characters/porter/front-robes.svg",
  11964. extra: 1.01,
  11965. bottom: 0.01
  11966. }
  11967. },
  11968. },
  11969. [
  11970. {
  11971. name: "Normal",
  11972. height: math.unit(11 + 9 / 12, "feet"),
  11973. default: true
  11974. },
  11975. ]
  11976. ))
  11977. characterMakers.push(() => makeCharacter(
  11978. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  11979. {
  11980. legendary: {
  11981. height: math.unit(6, "feet"),
  11982. weight: math.unit(150, "lb"),
  11983. name: "Legendary",
  11984. image: {
  11985. source: "./media/characters/lucy/legendary.svg",
  11986. extra: 1355 / 1100,
  11987. bottom: 0.045
  11988. }
  11989. },
  11990. },
  11991. [
  11992. {
  11993. name: "Legendary",
  11994. height: math.unit(86882 * 2, "miles"),
  11995. default: true
  11996. },
  11997. ]
  11998. ))
  11999. characterMakers.push(() => makeCharacter(
  12000. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12001. {
  12002. front: {
  12003. height: math.unit(6, "feet"),
  12004. weight: math.unit(150, "lb"),
  12005. name: "Front",
  12006. image: {
  12007. source: "./media/characters/drusilla/front.svg",
  12008. extra: 678 / 635,
  12009. bottom: 0.03
  12010. }
  12011. },
  12012. back: {
  12013. height: math.unit(6, "feet"),
  12014. weight: math.unit(150, "lb"),
  12015. name: "Back",
  12016. image: {
  12017. source: "./media/characters/drusilla/back.svg",
  12018. extra: 678 / 635,
  12019. bottom: 0.005
  12020. }
  12021. },
  12022. },
  12023. [
  12024. {
  12025. name: "Macro",
  12026. height: math.unit(100, "feet")
  12027. },
  12028. {
  12029. name: "Canon Height",
  12030. height: math.unit(2000, "feet"),
  12031. default: true
  12032. },
  12033. ]
  12034. ))
  12035. characterMakers.push(() => makeCharacter(
  12036. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12037. {
  12038. front: {
  12039. height: math.unit(6, "feet"),
  12040. weight: math.unit(180, "lb"),
  12041. name: "Front",
  12042. image: {
  12043. source: "./media/characters/renard-thatch/front.svg",
  12044. extra: 2411 / 2275,
  12045. bottom: 0.01
  12046. }
  12047. },
  12048. frontPosing: {
  12049. height: math.unit(6, "feet"),
  12050. weight: math.unit(180, "lb"),
  12051. name: "Front (Posing)",
  12052. image: {
  12053. source: "./media/characters/renard-thatch/front-posing.svg",
  12054. extra: 2381 / 2261,
  12055. bottom: 0.01
  12056. }
  12057. },
  12058. back: {
  12059. height: math.unit(6, "feet"),
  12060. weight: math.unit(180, "lb"),
  12061. name: "Back",
  12062. image: {
  12063. source: "./media/characters/renard-thatch/back.svg",
  12064. extra: 2428 / 2288
  12065. }
  12066. },
  12067. },
  12068. [
  12069. {
  12070. name: "Micro",
  12071. height: math.unit(3, "inches")
  12072. },
  12073. {
  12074. name: "Default",
  12075. height: math.unit(6, "feet"),
  12076. default: true
  12077. },
  12078. {
  12079. name: "Macro",
  12080. height: math.unit(75, "feet")
  12081. },
  12082. ]
  12083. ))
  12084. characterMakers.push(() => makeCharacter(
  12085. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12086. {
  12087. front: {
  12088. height: math.unit(1450, "feet"),
  12089. weight: math.unit(1.21e6, "tons"),
  12090. name: "Front",
  12091. image: {
  12092. source: "./media/characters/sekvra/front.svg",
  12093. extra: 1,
  12094. bottom: 0.03
  12095. }
  12096. },
  12097. frontClothed: {
  12098. height: math.unit(1450, "feet"),
  12099. weight: math.unit(1.21e6, "tons"),
  12100. name: "Front (Clothed)",
  12101. image: {
  12102. source: "./media/characters/sekvra/front-clothed.svg",
  12103. extra: 1,
  12104. bottom: 0.03
  12105. }
  12106. },
  12107. side: {
  12108. height: math.unit(1450, "feet"),
  12109. weight: math.unit(1.21e6, "tons"),
  12110. name: "Side",
  12111. image: {
  12112. source: "./media/characters/sekvra/side.svg",
  12113. extra: 1,
  12114. bottom: 0.025
  12115. }
  12116. },
  12117. back: {
  12118. height: math.unit(1450, "feet"),
  12119. weight: math.unit(1.21e6, "tons"),
  12120. name: "Back",
  12121. image: {
  12122. source: "./media/characters/sekvra/back.svg",
  12123. extra: 1,
  12124. bottom: 0.005
  12125. }
  12126. },
  12127. },
  12128. [
  12129. {
  12130. name: "Macro",
  12131. height: math.unit(1450, "feet"),
  12132. default: true
  12133. },
  12134. {
  12135. name: "Megamacro",
  12136. height: math.unit(15000, "feet")
  12137. },
  12138. ]
  12139. ))
  12140. characterMakers.push(() => makeCharacter(
  12141. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12142. {
  12143. front: {
  12144. height: math.unit(6, "feet"),
  12145. weight: math.unit(150, "lb"),
  12146. name: "Front",
  12147. image: {
  12148. source: "./media/characters/carmine/front.svg",
  12149. extra: 1,
  12150. bottom: 0.035
  12151. }
  12152. },
  12153. frontArmor: {
  12154. height: math.unit(6, "feet"),
  12155. weight: math.unit(150, "lb"),
  12156. name: "Front (Armor)",
  12157. image: {
  12158. source: "./media/characters/carmine/front-armor.svg",
  12159. extra: 1,
  12160. bottom: 0.035
  12161. }
  12162. },
  12163. },
  12164. [
  12165. {
  12166. name: "Large",
  12167. height: math.unit(1, "mile")
  12168. },
  12169. {
  12170. name: "Huge",
  12171. height: math.unit(40, "miles"),
  12172. default: true
  12173. },
  12174. {
  12175. name: "Colossal",
  12176. height: math.unit(2500, "miles")
  12177. },
  12178. ]
  12179. ))
  12180. characterMakers.push(() => makeCharacter(
  12181. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12182. {
  12183. front: {
  12184. height: math.unit(6, "feet"),
  12185. weight: math.unit(150, "lb"),
  12186. name: "Front",
  12187. image: {
  12188. source: "./media/characters/elyssia/front.svg",
  12189. extra: 2201 / 2035,
  12190. bottom: 0.05
  12191. }
  12192. },
  12193. frontClothed: {
  12194. height: math.unit(6, "feet"),
  12195. weight: math.unit(150, "lb"),
  12196. name: "Front (Clothed)",
  12197. image: {
  12198. source: "./media/characters/elyssia/front-clothed.svg",
  12199. extra: 2201 / 2035,
  12200. bottom: 0.05
  12201. }
  12202. },
  12203. back: {
  12204. height: math.unit(6, "feet"),
  12205. weight: math.unit(150, "lb"),
  12206. name: "Back",
  12207. image: {
  12208. source: "./media/characters/elyssia/back.svg",
  12209. extra: 2201 / 2035,
  12210. bottom: 0.013
  12211. }
  12212. },
  12213. },
  12214. [
  12215. {
  12216. name: "Smaller",
  12217. height: math.unit(150, "feet")
  12218. },
  12219. {
  12220. name: "Standard",
  12221. height: math.unit(1400, "feet"),
  12222. default: true
  12223. },
  12224. {
  12225. name: "Distracted",
  12226. height: math.unit(15000, "feet")
  12227. },
  12228. ]
  12229. ))
  12230. characterMakers.push(() => makeCharacter(
  12231. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12232. {
  12233. front: {
  12234. height: math.unit(7 + 4 / 12, "feet"),
  12235. weight: math.unit(500, "lb"),
  12236. name: "Front",
  12237. image: {
  12238. source: "./media/characters/geno-maxwell/front.svg",
  12239. extra: 2207 / 2040,
  12240. bottom: 0.015
  12241. }
  12242. },
  12243. },
  12244. [
  12245. {
  12246. name: "Micro",
  12247. height: math.unit(3, "inches")
  12248. },
  12249. {
  12250. name: "Normal",
  12251. height: math.unit(7 + 4 / 12, "feet"),
  12252. default: true
  12253. },
  12254. {
  12255. name: "Macro",
  12256. height: math.unit(220, "feet")
  12257. },
  12258. {
  12259. name: "Megamacro",
  12260. height: math.unit(11, "miles")
  12261. },
  12262. ]
  12263. ))
  12264. characterMakers.push(() => makeCharacter(
  12265. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12266. {
  12267. front: {
  12268. height: math.unit(7 + 4 / 12, "feet"),
  12269. weight: math.unit(500, "lb"),
  12270. name: "Front",
  12271. image: {
  12272. source: "./media/characters/regena-maxwell/front.svg",
  12273. extra: 3115 / 2770,
  12274. bottom: 0.02
  12275. }
  12276. },
  12277. },
  12278. [
  12279. {
  12280. name: "Normal",
  12281. height: math.unit(7 + 4 / 12, "feet"),
  12282. default: true
  12283. },
  12284. {
  12285. name: "Macro",
  12286. height: math.unit(220, "feet")
  12287. },
  12288. {
  12289. name: "Megamacro",
  12290. height: math.unit(11, "miles")
  12291. },
  12292. ]
  12293. ))
  12294. characterMakers.push(() => makeCharacter(
  12295. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12296. {
  12297. front: {
  12298. height: math.unit(6, "feet"),
  12299. weight: math.unit(150, "lb"),
  12300. name: "Front",
  12301. image: {
  12302. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12303. extra: 860 / 690,
  12304. bottom: 0.03
  12305. }
  12306. },
  12307. },
  12308. [
  12309. {
  12310. name: "Normal",
  12311. height: math.unit(1.7, "meters"),
  12312. default: true
  12313. },
  12314. ]
  12315. ))
  12316. characterMakers.push(() => makeCharacter(
  12317. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12318. {
  12319. front: {
  12320. height: math.unit(6, "feet"),
  12321. weight: math.unit(150, "lb"),
  12322. name: "Front",
  12323. image: {
  12324. source: "./media/characters/quilly/front.svg",
  12325. extra: 890 / 776
  12326. }
  12327. },
  12328. },
  12329. [
  12330. {
  12331. name: "Gigamacro",
  12332. height: math.unit(404090, "miles"),
  12333. default: true
  12334. },
  12335. ]
  12336. ))
  12337. characterMakers.push(() => makeCharacter(
  12338. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12339. {
  12340. front: {
  12341. height: math.unit(7 + 8 / 12, "feet"),
  12342. weight: math.unit(350, "lb"),
  12343. name: "Front",
  12344. image: {
  12345. source: "./media/characters/tempest/front.svg",
  12346. extra: 1175 / 1086,
  12347. bottom: 0.02
  12348. }
  12349. },
  12350. },
  12351. [
  12352. {
  12353. name: "Normal",
  12354. height: math.unit(7 + 8 / 12, "feet"),
  12355. default: true
  12356. },
  12357. ]
  12358. ))
  12359. characterMakers.push(() => makeCharacter(
  12360. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12361. {
  12362. side: {
  12363. height: math.unit(4 + 5 / 12, "feet"),
  12364. weight: math.unit(80, "lb"),
  12365. name: "Side",
  12366. image: {
  12367. source: "./media/characters/rodger/side.svg",
  12368. extra: 1235 / 1118
  12369. }
  12370. },
  12371. },
  12372. [
  12373. {
  12374. name: "Micro",
  12375. height: math.unit(1, "inch")
  12376. },
  12377. {
  12378. name: "Normal",
  12379. height: math.unit(4 + 5 / 12, "feet"),
  12380. default: true
  12381. },
  12382. {
  12383. name: "Macro",
  12384. height: math.unit(120, "feet")
  12385. },
  12386. ]
  12387. ))
  12388. characterMakers.push(() => makeCharacter(
  12389. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12390. {
  12391. front: {
  12392. height: math.unit(6, "feet"),
  12393. weight: math.unit(150, "lb"),
  12394. name: "Front",
  12395. image: {
  12396. source: "./media/characters/danyel/front.svg",
  12397. extra: 1185 / 1123,
  12398. bottom: 0.05
  12399. }
  12400. },
  12401. },
  12402. [
  12403. {
  12404. name: "Shrunken",
  12405. height: math.unit(0.5, "mm")
  12406. },
  12407. {
  12408. name: "Micro",
  12409. height: math.unit(1, "mm"),
  12410. default: true
  12411. },
  12412. {
  12413. name: "Upsized",
  12414. height: math.unit(5 + 5 / 12, "feet")
  12415. },
  12416. ]
  12417. ))
  12418. characterMakers.push(() => makeCharacter(
  12419. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12420. {
  12421. front: {
  12422. height: math.unit(5 + 6 / 12, "feet"),
  12423. weight: math.unit(200, "lb"),
  12424. name: "Front",
  12425. image: {
  12426. source: "./media/characters/vivian-bijoux/front.svg",
  12427. extra: 1,
  12428. bottom: 0.072
  12429. }
  12430. },
  12431. },
  12432. [
  12433. {
  12434. name: "Normal",
  12435. height: math.unit(5 + 6 / 12, "feet"),
  12436. default: true
  12437. },
  12438. {
  12439. name: "Bad Dream",
  12440. height: math.unit(500, "feet")
  12441. },
  12442. {
  12443. name: "Nightmare",
  12444. height: math.unit(500, "miles")
  12445. },
  12446. ]
  12447. ))
  12448. characterMakers.push(() => makeCharacter(
  12449. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12450. {
  12451. front: {
  12452. height: math.unit(6 + 1 / 12, "feet"),
  12453. weight: math.unit(260, "lb"),
  12454. name: "Front",
  12455. image: {
  12456. source: "./media/characters/zeta/front.svg",
  12457. extra: 1968 / 1889,
  12458. bottom: 0.06
  12459. }
  12460. },
  12461. back: {
  12462. height: math.unit(6 + 1 / 12, "feet"),
  12463. weight: math.unit(260, "lb"),
  12464. name: "Back",
  12465. image: {
  12466. source: "./media/characters/zeta/back.svg",
  12467. extra: 1944 / 1858,
  12468. bottom: 0.03
  12469. }
  12470. },
  12471. hand: {
  12472. height: math.unit(1.112, "feet"),
  12473. name: "Hand",
  12474. image: {
  12475. source: "./media/characters/zeta/hand.svg"
  12476. }
  12477. },
  12478. foot: {
  12479. height: math.unit(1.48, "feet"),
  12480. name: "Foot",
  12481. image: {
  12482. source: "./media/characters/zeta/foot.svg"
  12483. }
  12484. },
  12485. },
  12486. [
  12487. {
  12488. name: "Micro",
  12489. height: math.unit(6, "inches")
  12490. },
  12491. {
  12492. name: "Normal",
  12493. height: math.unit(6 + 1 / 12, "feet"),
  12494. default: true
  12495. },
  12496. {
  12497. name: "Macro",
  12498. height: math.unit(20, "feet")
  12499. },
  12500. ]
  12501. ))
  12502. characterMakers.push(() => makeCharacter(
  12503. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12504. {
  12505. front: {
  12506. height: math.unit(6, "feet"),
  12507. weight: math.unit(150, "lb"),
  12508. name: "Front",
  12509. image: {
  12510. source: "./media/characters/jamie-larsen/front.svg",
  12511. extra: 962 / 933,
  12512. bottom: 0.02
  12513. }
  12514. },
  12515. back: {
  12516. height: math.unit(6, "feet"),
  12517. weight: math.unit(150, "lb"),
  12518. name: "Back",
  12519. image: {
  12520. source: "./media/characters/jamie-larsen/back.svg",
  12521. extra: 997 / 946
  12522. }
  12523. },
  12524. },
  12525. [
  12526. {
  12527. name: "Macro",
  12528. height: math.unit(28 + 7 / 12, "feet"),
  12529. default: true
  12530. },
  12531. {
  12532. name: "Macro+",
  12533. height: math.unit(180, "feet")
  12534. },
  12535. {
  12536. name: "Megamacro",
  12537. height: math.unit(10, "miles")
  12538. },
  12539. {
  12540. name: "Gigamacro",
  12541. height: math.unit(200000, "miles")
  12542. },
  12543. ]
  12544. ))
  12545. characterMakers.push(() => makeCharacter(
  12546. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12547. {
  12548. front: {
  12549. height: math.unit(6, "feet"),
  12550. weight: math.unit(120, "lb"),
  12551. name: "Front",
  12552. image: {
  12553. source: "./media/characters/vance/front.svg",
  12554. extra: 1980 / 1890,
  12555. bottom: 0.09
  12556. }
  12557. },
  12558. back: {
  12559. height: math.unit(6, "feet"),
  12560. weight: math.unit(120, "lb"),
  12561. name: "Back",
  12562. image: {
  12563. source: "./media/characters/vance/back.svg",
  12564. extra: 2081 / 1994,
  12565. bottom: 0.014
  12566. }
  12567. },
  12568. hand: {
  12569. height: math.unit(0.88, "feet"),
  12570. name: "Hand",
  12571. image: {
  12572. source: "./media/characters/vance/hand.svg"
  12573. }
  12574. },
  12575. foot: {
  12576. height: math.unit(0.64, "feet"),
  12577. name: "Foot",
  12578. image: {
  12579. source: "./media/characters/vance/foot.svg"
  12580. }
  12581. },
  12582. },
  12583. [
  12584. {
  12585. name: "Small",
  12586. height: math.unit(90, "feet"),
  12587. default: true
  12588. },
  12589. {
  12590. name: "Macro",
  12591. height: math.unit(100, "meters")
  12592. },
  12593. {
  12594. name: "Megamacro",
  12595. height: math.unit(15, "miles")
  12596. },
  12597. ]
  12598. ))
  12599. characterMakers.push(() => makeCharacter(
  12600. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12601. {
  12602. front: {
  12603. height: math.unit(6, "feet"),
  12604. weight: math.unit(180, "lb"),
  12605. name: "Front",
  12606. image: {
  12607. source: "./media/characters/xochitl/front.svg",
  12608. extra: 2297 / 2261,
  12609. bottom: 0.065
  12610. }
  12611. },
  12612. back: {
  12613. height: math.unit(6, "feet"),
  12614. weight: math.unit(180, "lb"),
  12615. name: "Back",
  12616. image: {
  12617. source: "./media/characters/xochitl/back.svg",
  12618. extra: 2386 / 2354,
  12619. bottom: 0.01
  12620. }
  12621. },
  12622. foot: {
  12623. height: math.unit(6 / 5 * 1.15, "feet"),
  12624. weight: math.unit(150, "lb"),
  12625. name: "Foot",
  12626. image: {
  12627. source: "./media/characters/xochitl/foot.svg"
  12628. }
  12629. },
  12630. },
  12631. [
  12632. {
  12633. name: "Macro",
  12634. height: math.unit(80, "feet")
  12635. },
  12636. {
  12637. name: "Macro+",
  12638. height: math.unit(400, "feet"),
  12639. default: true
  12640. },
  12641. {
  12642. name: "Gigamacro",
  12643. height: math.unit(80000, "miles")
  12644. },
  12645. {
  12646. name: "Gigamacro+",
  12647. height: math.unit(400000, "miles")
  12648. },
  12649. {
  12650. name: "Teramacro",
  12651. height: math.unit(300, "AU")
  12652. },
  12653. ]
  12654. ))
  12655. characterMakers.push(() => makeCharacter(
  12656. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12657. {
  12658. front: {
  12659. height: math.unit(6, "feet"),
  12660. weight: math.unit(150, "lb"),
  12661. name: "Front",
  12662. image: {
  12663. source: "./media/characters/vincent/front.svg",
  12664. extra: 1130 / 1080,
  12665. bottom: 0.055
  12666. }
  12667. },
  12668. beak: {
  12669. height: math.unit(6 * 0.1, "feet"),
  12670. name: "Beak",
  12671. image: {
  12672. source: "./media/characters/vincent/beak.svg"
  12673. }
  12674. },
  12675. hand: {
  12676. height: math.unit(6 * 0.85, "feet"),
  12677. weight: math.unit(150, "lb"),
  12678. name: "Hand",
  12679. image: {
  12680. source: "./media/characters/vincent/hand.svg"
  12681. }
  12682. },
  12683. foot: {
  12684. height: math.unit(6 * 0.19, "feet"),
  12685. weight: math.unit(150, "lb"),
  12686. name: "Foot",
  12687. image: {
  12688. source: "./media/characters/vincent/foot.svg"
  12689. }
  12690. },
  12691. },
  12692. [
  12693. {
  12694. name: "Base",
  12695. height: math.unit(6 + 5 / 12, "feet"),
  12696. default: true
  12697. },
  12698. {
  12699. name: "Macro",
  12700. height: math.unit(300, "feet")
  12701. },
  12702. {
  12703. name: "Megamacro",
  12704. height: math.unit(2, "miles")
  12705. },
  12706. {
  12707. name: "Gigamacro",
  12708. height: math.unit(1000, "miles")
  12709. },
  12710. ]
  12711. ))
  12712. characterMakers.push(() => makeCharacter(
  12713. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12714. {
  12715. front: {
  12716. height: math.unit(6 + 2 / 12, "feet"),
  12717. weight: math.unit(265, "lb"),
  12718. name: "Front",
  12719. image: {
  12720. source: "./media/characters/jay/front.svg",
  12721. extra: 1510 / 1430,
  12722. bottom: 0.042
  12723. }
  12724. },
  12725. back: {
  12726. height: math.unit(6 + 2 / 12, "feet"),
  12727. weight: math.unit(265, "lb"),
  12728. name: "Back",
  12729. image: {
  12730. source: "./media/characters/jay/back.svg",
  12731. extra: 1510 / 1430,
  12732. bottom: 0.025
  12733. }
  12734. },
  12735. clothed: {
  12736. height: math.unit(6 + 2 / 12, "feet"),
  12737. weight: math.unit(265, "lb"),
  12738. name: "Front (Clothed)",
  12739. image: {
  12740. source: "./media/characters/jay/clothed.svg",
  12741. extra: 744 / 699,
  12742. bottom: 0.043
  12743. }
  12744. },
  12745. head: {
  12746. height: math.unit(1.772, "feet"),
  12747. name: "Head",
  12748. image: {
  12749. source: "./media/characters/jay/head.svg"
  12750. }
  12751. },
  12752. sizeRay: {
  12753. height: math.unit(1.331, "feet"),
  12754. name: "Size Ray",
  12755. image: {
  12756. source: "./media/characters/jay/size-ray.svg"
  12757. }
  12758. },
  12759. },
  12760. [
  12761. {
  12762. name: "Micro",
  12763. height: math.unit(1, "inch")
  12764. },
  12765. {
  12766. name: "Normal",
  12767. height: math.unit(6 + 2 / 12, "feet"),
  12768. default: true
  12769. },
  12770. {
  12771. name: "Macro",
  12772. height: math.unit(1, "mile")
  12773. },
  12774. {
  12775. name: "Megamacro",
  12776. height: math.unit(100, "miles")
  12777. },
  12778. ]
  12779. ))
  12780. characterMakers.push(() => makeCharacter(
  12781. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12782. {
  12783. front: {
  12784. height: math.unit(2, "meters"),
  12785. weight: math.unit(500, "kg"),
  12786. name: "Front",
  12787. image: {
  12788. source: "./media/characters/coatl/front.svg",
  12789. extra: 3948 / 3500,
  12790. bottom: 0.082
  12791. }
  12792. },
  12793. },
  12794. [
  12795. {
  12796. name: "Normal",
  12797. height: math.unit(4, "meters")
  12798. },
  12799. {
  12800. name: "Macro",
  12801. height: math.unit(100, "meters"),
  12802. default: true
  12803. },
  12804. {
  12805. name: "Macro+",
  12806. height: math.unit(300, "meters")
  12807. },
  12808. {
  12809. name: "Megamacro",
  12810. height: math.unit(3, "gigameters")
  12811. },
  12812. {
  12813. name: "Megamacro+",
  12814. height: math.unit(300, "terameters")
  12815. },
  12816. {
  12817. name: "Megamacro++",
  12818. height: math.unit(3, "lightyears")
  12819. },
  12820. ]
  12821. ))
  12822. characterMakers.push(() => makeCharacter(
  12823. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12824. {
  12825. front: {
  12826. height: math.unit(6, "feet"),
  12827. weight: math.unit(50, "kg"),
  12828. name: "front",
  12829. image: {
  12830. source: "./media/characters/shiroryu/front.svg",
  12831. extra: 1990 / 1935
  12832. }
  12833. },
  12834. },
  12835. [
  12836. {
  12837. name: "Mortal Mingling",
  12838. height: math.unit(3, "meters")
  12839. },
  12840. {
  12841. name: "Kaiju-ish",
  12842. height: math.unit(250, "meters")
  12843. },
  12844. {
  12845. name: "Somewhat Godly",
  12846. height: math.unit(400, "km"),
  12847. default: true
  12848. },
  12849. {
  12850. name: "Planetary",
  12851. height: math.unit(300, "megameters")
  12852. },
  12853. {
  12854. name: "Galaxy-dwarfing",
  12855. height: math.unit(450, "kiloparsecs")
  12856. },
  12857. {
  12858. name: "Universe Eater",
  12859. height: math.unit(150, "gigaparsecs")
  12860. },
  12861. {
  12862. name: "Almost Immeasurable",
  12863. height: math.unit(1.3e266, "yottaparsecs")
  12864. },
  12865. ]
  12866. ))
  12867. characterMakers.push(() => makeCharacter(
  12868. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12869. {
  12870. front: {
  12871. height: math.unit(6, "feet"),
  12872. weight: math.unit(150, "lb"),
  12873. name: "Front",
  12874. image: {
  12875. source: "./media/characters/umeko/front.svg",
  12876. extra: 1,
  12877. bottom: 0.019
  12878. }
  12879. },
  12880. frontArmored: {
  12881. height: math.unit(6, "feet"),
  12882. weight: math.unit(150, "lb"),
  12883. name: "Front (Armored)",
  12884. image: {
  12885. source: "./media/characters/umeko/front-armored.svg",
  12886. extra: 1,
  12887. bottom: 0.021
  12888. }
  12889. },
  12890. },
  12891. [
  12892. {
  12893. name: "Macro",
  12894. height: math.unit(220, "feet"),
  12895. default: true
  12896. },
  12897. {
  12898. name: "Guardian Dragon",
  12899. height: math.unit(50, "miles")
  12900. },
  12901. {
  12902. name: "Cosmic",
  12903. height: math.unit(800000, "miles")
  12904. },
  12905. ]
  12906. ))
  12907. characterMakers.push(() => makeCharacter(
  12908. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12909. {
  12910. front: {
  12911. height: math.unit(6, "feet"),
  12912. weight: math.unit(150, "lb"),
  12913. name: "Front",
  12914. image: {
  12915. source: "./media/characters/cassidy/front.svg",
  12916. extra: 1,
  12917. bottom: 0.043
  12918. }
  12919. },
  12920. },
  12921. [
  12922. {
  12923. name: "Canon Height",
  12924. height: math.unit(120, "feet"),
  12925. default: true
  12926. },
  12927. {
  12928. name: "Macro+",
  12929. height: math.unit(400, "feet")
  12930. },
  12931. {
  12932. name: "Macro++",
  12933. height: math.unit(4000, "feet")
  12934. },
  12935. {
  12936. name: "Megamacro",
  12937. height: math.unit(3, "miles")
  12938. },
  12939. ]
  12940. ))
  12941. characterMakers.push(() => makeCharacter(
  12942. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12943. {
  12944. front: {
  12945. height: math.unit(6, "feet"),
  12946. weight: math.unit(150, "lb"),
  12947. name: "Front",
  12948. image: {
  12949. source: "./media/characters/isaac/front.svg",
  12950. extra: 896 / 815,
  12951. bottom: 0.11
  12952. }
  12953. },
  12954. },
  12955. [
  12956. {
  12957. name: "Human Size",
  12958. height: math.unit(8, "feet"),
  12959. default: true
  12960. },
  12961. {
  12962. name: "Macro",
  12963. height: math.unit(400, "feet")
  12964. },
  12965. {
  12966. name: "Megamacro",
  12967. height: math.unit(50, "miles")
  12968. },
  12969. {
  12970. name: "Canon Height",
  12971. height: math.unit(200, "AU")
  12972. },
  12973. ]
  12974. ))
  12975. characterMakers.push(() => makeCharacter(
  12976. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  12977. {
  12978. front: {
  12979. height: math.unit(6, "feet"),
  12980. weight: math.unit(72, "kg"),
  12981. name: "Front",
  12982. image: {
  12983. source: "./media/characters/sleekit/front.svg",
  12984. extra: 4693 / 4487,
  12985. bottom: 0.012
  12986. }
  12987. },
  12988. },
  12989. [
  12990. {
  12991. name: "Minimum Height",
  12992. height: math.unit(10, "meters")
  12993. },
  12994. {
  12995. name: "Smaller",
  12996. height: math.unit(25, "meters")
  12997. },
  12998. {
  12999. name: "Larger",
  13000. height: math.unit(38, "meters"),
  13001. default: true
  13002. },
  13003. {
  13004. name: "Maximum height",
  13005. height: math.unit(100, "meters")
  13006. },
  13007. ]
  13008. ))
  13009. characterMakers.push(() => makeCharacter(
  13010. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13011. {
  13012. front: {
  13013. height: math.unit(6, "feet"),
  13014. weight: math.unit(150, "lb"),
  13015. name: "Front",
  13016. image: {
  13017. source: "./media/characters/nillia/front.svg",
  13018. extra: 2195 / 2037,
  13019. bottom: 0.005
  13020. }
  13021. },
  13022. back: {
  13023. height: math.unit(6, "feet"),
  13024. weight: math.unit(150, "lb"),
  13025. name: "Back",
  13026. image: {
  13027. source: "./media/characters/nillia/back.svg",
  13028. extra: 2195 / 2037,
  13029. bottom: 0.005
  13030. }
  13031. },
  13032. },
  13033. [
  13034. {
  13035. name: "Canon Height",
  13036. height: math.unit(489, "feet"),
  13037. default: true
  13038. }
  13039. ]
  13040. ))
  13041. characterMakers.push(() => makeCharacter(
  13042. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13043. {
  13044. front: {
  13045. height: math.unit(6, "feet"),
  13046. weight: math.unit(150, "lb"),
  13047. name: "Front",
  13048. image: {
  13049. source: "./media/characters/mesmyriza/front.svg",
  13050. extra: 2067 / 1784,
  13051. bottom: 0.035
  13052. }
  13053. },
  13054. foot: {
  13055. height: math.unit(6 / (250 / 35), "feet"),
  13056. name: "Foot",
  13057. image: {
  13058. source: "./media/characters/mesmyriza/foot.svg"
  13059. }
  13060. },
  13061. },
  13062. [
  13063. {
  13064. name: "Macro",
  13065. height: math.unit(457, "meters"),
  13066. default: true
  13067. },
  13068. {
  13069. name: "Megamacro",
  13070. height: math.unit(8, "megameters")
  13071. },
  13072. ]
  13073. ))
  13074. characterMakers.push(() => makeCharacter(
  13075. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13076. {
  13077. front: {
  13078. height: math.unit(6, "feet"),
  13079. weight: math.unit(250, "lb"),
  13080. name: "Front",
  13081. image: {
  13082. source: "./media/characters/saudade/front.svg",
  13083. extra: 1172 / 1139,
  13084. bottom: 0.035
  13085. }
  13086. },
  13087. },
  13088. [
  13089. {
  13090. name: "Micro",
  13091. height: math.unit(3, "inches")
  13092. },
  13093. {
  13094. name: "Normal",
  13095. height: math.unit(6, "feet"),
  13096. default: true
  13097. },
  13098. {
  13099. name: "Macro",
  13100. height: math.unit(50, "feet")
  13101. },
  13102. {
  13103. name: "Megamacro",
  13104. height: math.unit(2800, "feet")
  13105. },
  13106. ]
  13107. ))
  13108. characterMakers.push(() => makeCharacter(
  13109. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13110. {
  13111. front: {
  13112. height: math.unit(5 + 4 / 12, "feet"),
  13113. weight: math.unit(100, "lb"),
  13114. name: "Front",
  13115. image: {
  13116. source: "./media/characters/keireer/front.svg",
  13117. extra: 716 / 666,
  13118. bottom: 0.05
  13119. }
  13120. },
  13121. },
  13122. [
  13123. {
  13124. name: "Normal",
  13125. height: math.unit(5 + 4 / 12, "feet"),
  13126. default: true
  13127. },
  13128. ]
  13129. ))
  13130. characterMakers.push(() => makeCharacter(
  13131. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13132. {
  13133. front: {
  13134. height: math.unit(6, "feet"),
  13135. weight: math.unit(90, "kg"),
  13136. name: "Front",
  13137. image: {
  13138. source: "./media/characters/mirja/front.svg",
  13139. extra: 1789 / 1683,
  13140. bottom: 0.05
  13141. }
  13142. },
  13143. frontDressed: {
  13144. height: math.unit(6, "feet"),
  13145. weight: math.unit(90, "lb"),
  13146. name: "Front (Dressed)",
  13147. image: {
  13148. source: "./media/characters/mirja/front-dressed.svg",
  13149. extra: 1789 / 1683,
  13150. bottom: 0.05
  13151. }
  13152. },
  13153. back: {
  13154. height: math.unit(6, "feet"),
  13155. weight: math.unit(90, "lb"),
  13156. name: "Back",
  13157. image: {
  13158. source: "./media/characters/mirja/back.svg",
  13159. extra: 953 / 917,
  13160. bottom: 0.017
  13161. }
  13162. },
  13163. },
  13164. [
  13165. {
  13166. name: "\"Incognito\"",
  13167. height: math.unit(3, "meters")
  13168. },
  13169. {
  13170. name: "Strolling Size",
  13171. height: math.unit(15, "km")
  13172. },
  13173. {
  13174. name: "Larger Strolling Size",
  13175. height: math.unit(400, "km")
  13176. },
  13177. {
  13178. name: "Preferred Size",
  13179. height: math.unit(5000, "km")
  13180. },
  13181. {
  13182. name: "True Size",
  13183. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13184. default: true
  13185. },
  13186. ]
  13187. ))
  13188. characterMakers.push(() => makeCharacter(
  13189. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13190. {
  13191. front: {
  13192. height: math.unit(15, "feet"),
  13193. weight: math.unit(880, "kg"),
  13194. name: "Front",
  13195. image: {
  13196. source: "./media/characters/nightraver/front.svg",
  13197. extra: 2444 / 2160,
  13198. bottom: 0.027
  13199. }
  13200. },
  13201. back: {
  13202. height: math.unit(15, "feet"),
  13203. weight: math.unit(880, "kg"),
  13204. name: "Back",
  13205. image: {
  13206. source: "./media/characters/nightraver/back.svg",
  13207. extra: 2309 / 2180,
  13208. bottom: 0.005
  13209. }
  13210. },
  13211. sole: {
  13212. height: math.unit(2.878, "feet"),
  13213. name: "Sole",
  13214. image: {
  13215. source: "./media/characters/nightraver/sole.svg"
  13216. }
  13217. },
  13218. foot: {
  13219. height: math.unit(2.285, "feet"),
  13220. name: "Foot",
  13221. image: {
  13222. source: "./media/characters/nightraver/foot.svg"
  13223. }
  13224. },
  13225. maw: {
  13226. height: math.unit(2.67, "feet"),
  13227. name: "Maw",
  13228. image: {
  13229. source: "./media/characters/nightraver/maw.svg"
  13230. }
  13231. },
  13232. },
  13233. [
  13234. {
  13235. name: "Micro",
  13236. height: math.unit(1, "cm")
  13237. },
  13238. {
  13239. name: "Normal",
  13240. height: math.unit(15, "feet"),
  13241. default: true
  13242. },
  13243. {
  13244. name: "Macro",
  13245. height: math.unit(300, "feet")
  13246. },
  13247. {
  13248. name: "Megamacro",
  13249. height: math.unit(300, "miles")
  13250. },
  13251. {
  13252. name: "Gigamacro",
  13253. height: math.unit(10000, "miles")
  13254. },
  13255. ]
  13256. ))
  13257. characterMakers.push(() => makeCharacter(
  13258. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13259. {
  13260. side: {
  13261. height: math.unit(2, "inches"),
  13262. weight: math.unit(5, "grams"),
  13263. name: "Side",
  13264. image: {
  13265. source: "./media/characters/arc/side.svg"
  13266. }
  13267. },
  13268. },
  13269. [
  13270. {
  13271. name: "Micro",
  13272. height: math.unit(2, "inches"),
  13273. default: true
  13274. },
  13275. ]
  13276. ))
  13277. characterMakers.push(() => makeCharacter(
  13278. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13279. {
  13280. front: {
  13281. height: math.unit(1.1938, "meters"),
  13282. weight: math.unit(54, "kg"),
  13283. name: "Front",
  13284. image: {
  13285. source: "./media/characters/nebula-shahar/front.svg",
  13286. extra: 1642 / 1436,
  13287. bottom: 0.06
  13288. }
  13289. },
  13290. },
  13291. [
  13292. {
  13293. name: "Megamicro",
  13294. height: math.unit(0.3, "mm")
  13295. },
  13296. {
  13297. name: "Micro",
  13298. height: math.unit(3, "cm")
  13299. },
  13300. {
  13301. name: "Normal",
  13302. height: math.unit(138, "cm"),
  13303. default: true
  13304. },
  13305. {
  13306. name: "Macro",
  13307. height: math.unit(30, "m")
  13308. },
  13309. ]
  13310. ))
  13311. characterMakers.push(() => makeCharacter(
  13312. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13313. {
  13314. front: {
  13315. height: math.unit(5.24, "feet"),
  13316. weight: math.unit(150, "lb"),
  13317. name: "Front",
  13318. image: {
  13319. source: "./media/characters/shayla/front.svg",
  13320. extra: 1512 / 1414,
  13321. bottom: 0.01
  13322. }
  13323. },
  13324. back: {
  13325. height: math.unit(5.24, "feet"),
  13326. weight: math.unit(150, "lb"),
  13327. name: "Back",
  13328. image: {
  13329. source: "./media/characters/shayla/back.svg",
  13330. extra: 1512 / 1414
  13331. }
  13332. },
  13333. hand: {
  13334. height: math.unit(0.7781496062992126, "feet"),
  13335. name: "Hand",
  13336. image: {
  13337. source: "./media/characters/shayla/hand.svg"
  13338. }
  13339. },
  13340. foot: {
  13341. height: math.unit(1.4206036745406823, "feet"),
  13342. name: "Foot",
  13343. image: {
  13344. source: "./media/characters/shayla/foot.svg"
  13345. }
  13346. },
  13347. },
  13348. [
  13349. {
  13350. name: "Micro",
  13351. height: math.unit(0.32, "feet")
  13352. },
  13353. {
  13354. name: "Normal",
  13355. height: math.unit(5.24, "feet"),
  13356. default: true
  13357. },
  13358. {
  13359. name: "Macro",
  13360. height: math.unit(492.12, "feet")
  13361. },
  13362. {
  13363. name: "Megamacro",
  13364. height: math.unit(186.41, "miles")
  13365. },
  13366. ]
  13367. ))
  13368. characterMakers.push(() => makeCharacter(
  13369. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13370. {
  13371. front: {
  13372. height: math.unit(2.2, "m"),
  13373. weight: math.unit(120, "kg"),
  13374. name: "Front",
  13375. image: {
  13376. source: "./media/characters/pia-jr/front.svg",
  13377. extra: 1000 / 970,
  13378. bottom: 0.035
  13379. }
  13380. },
  13381. hand: {
  13382. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13383. name: "Hand",
  13384. image: {
  13385. source: "./media/characters/pia-jr/hand.svg"
  13386. }
  13387. },
  13388. paw: {
  13389. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13390. name: "Paw",
  13391. image: {
  13392. source: "./media/characters/pia-jr/paw.svg"
  13393. }
  13394. },
  13395. },
  13396. [
  13397. {
  13398. name: "Micro",
  13399. height: math.unit(1.2, "cm")
  13400. },
  13401. {
  13402. name: "Normal",
  13403. height: math.unit(2.2, "m"),
  13404. default: true
  13405. },
  13406. {
  13407. name: "Macro",
  13408. height: math.unit(180, "m")
  13409. },
  13410. {
  13411. name: "Megamacro",
  13412. height: math.unit(420, "km")
  13413. },
  13414. ]
  13415. ))
  13416. characterMakers.push(() => makeCharacter(
  13417. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13418. {
  13419. front: {
  13420. height: math.unit(2, "m"),
  13421. weight: math.unit(115, "kg"),
  13422. name: "Front",
  13423. image: {
  13424. source: "./media/characters/pia-sr/front.svg",
  13425. extra: 760 / 730,
  13426. bottom: 0.015
  13427. }
  13428. },
  13429. back: {
  13430. height: math.unit(2, "m"),
  13431. weight: math.unit(115, "kg"),
  13432. name: "Back",
  13433. image: {
  13434. source: "./media/characters/pia-sr/back.svg",
  13435. extra: 760 / 730,
  13436. bottom: 0.01
  13437. }
  13438. },
  13439. hand: {
  13440. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13441. name: "Hand",
  13442. image: {
  13443. source: "./media/characters/pia-sr/hand.svg"
  13444. }
  13445. },
  13446. foot: {
  13447. height: math.unit(1.83, "feet"),
  13448. name: "Foot",
  13449. image: {
  13450. source: "./media/characters/pia-sr/foot.svg"
  13451. }
  13452. },
  13453. },
  13454. [
  13455. {
  13456. name: "Micro",
  13457. height: math.unit(88, "mm")
  13458. },
  13459. {
  13460. name: "Normal",
  13461. height: math.unit(2, "m"),
  13462. default: true
  13463. },
  13464. {
  13465. name: "Macro",
  13466. height: math.unit(200, "m")
  13467. },
  13468. {
  13469. name: "Megamacro",
  13470. height: math.unit(420, "km")
  13471. },
  13472. ]
  13473. ))
  13474. characterMakers.push(() => makeCharacter(
  13475. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13476. {
  13477. front: {
  13478. height: math.unit(8 + 2 / 12, "feet"),
  13479. weight: math.unit(300, "lb"),
  13480. name: "Front",
  13481. image: {
  13482. source: "./media/characters/kibibyte/front.svg",
  13483. extra: 2221 / 2098,
  13484. bottom: 0.04
  13485. }
  13486. },
  13487. },
  13488. [
  13489. {
  13490. name: "Normal",
  13491. height: math.unit(8 + 2 / 12, "feet"),
  13492. default: true
  13493. },
  13494. {
  13495. name: "Socialable Macro",
  13496. height: math.unit(50, "feet")
  13497. },
  13498. {
  13499. name: "Macro",
  13500. height: math.unit(300, "feet")
  13501. },
  13502. {
  13503. name: "Megamacro",
  13504. height: math.unit(500, "miles")
  13505. },
  13506. ]
  13507. ))
  13508. characterMakers.push(() => makeCharacter(
  13509. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13510. {
  13511. front: {
  13512. height: math.unit(6, "feet"),
  13513. weight: math.unit(150, "lb"),
  13514. name: "Front",
  13515. image: {
  13516. source: "./media/characters/felix/front.svg",
  13517. extra: 762 / 722,
  13518. bottom: 0.02
  13519. }
  13520. },
  13521. frontClothed: {
  13522. height: math.unit(6, "feet"),
  13523. weight: math.unit(150, "lb"),
  13524. name: "Front (Clothed)",
  13525. image: {
  13526. source: "./media/characters/felix/front-clothed.svg",
  13527. extra: 762 / 722,
  13528. bottom: 0.02
  13529. }
  13530. },
  13531. },
  13532. [
  13533. {
  13534. name: "Normal",
  13535. height: math.unit(6 + 8 / 12, "feet"),
  13536. default: true
  13537. },
  13538. {
  13539. name: "Macro",
  13540. height: math.unit(2600, "feet")
  13541. },
  13542. {
  13543. name: "Megamacro",
  13544. height: math.unit(450, "miles")
  13545. },
  13546. ]
  13547. ))
  13548. characterMakers.push(() => makeCharacter(
  13549. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13550. {
  13551. front: {
  13552. height: math.unit(6 + 1 / 12, "feet"),
  13553. weight: math.unit(250, "lb"),
  13554. name: "Front",
  13555. image: {
  13556. source: "./media/characters/tobo/front.svg",
  13557. extra: 608 / 586,
  13558. bottom: 0.023
  13559. }
  13560. },
  13561. back: {
  13562. height: math.unit(6 + 1 / 12, "feet"),
  13563. weight: math.unit(250, "lb"),
  13564. name: "Back",
  13565. image: {
  13566. source: "./media/characters/tobo/back.svg",
  13567. extra: 608 / 586
  13568. }
  13569. },
  13570. },
  13571. [
  13572. {
  13573. name: "Nano",
  13574. height: math.unit(2, "nm")
  13575. },
  13576. {
  13577. name: "Megamicro",
  13578. height: math.unit(0.1, "mm")
  13579. },
  13580. {
  13581. name: "Micro",
  13582. height: math.unit(1, "inch"),
  13583. default: true
  13584. },
  13585. {
  13586. name: "Human-sized",
  13587. height: math.unit(6 + 1 / 12, "feet")
  13588. },
  13589. {
  13590. name: "Macro",
  13591. height: math.unit(250, "feet")
  13592. },
  13593. {
  13594. name: "Megamacro",
  13595. height: math.unit(75, "miles")
  13596. },
  13597. {
  13598. name: "Texas-sized",
  13599. height: math.unit(750, "miles")
  13600. },
  13601. {
  13602. name: "Teramacro",
  13603. height: math.unit(50000, "miles")
  13604. },
  13605. ]
  13606. ))
  13607. characterMakers.push(() => makeCharacter(
  13608. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13609. {
  13610. front: {
  13611. height: math.unit(6, "feet"),
  13612. weight: math.unit(269, "lb"),
  13613. name: "Front",
  13614. image: {
  13615. source: "./media/characters/danny-kapowsky/front.svg",
  13616. extra: 766 / 736,
  13617. bottom: 0.044
  13618. }
  13619. },
  13620. back: {
  13621. height: math.unit(6, "feet"),
  13622. weight: math.unit(269, "lb"),
  13623. name: "Back",
  13624. image: {
  13625. source: "./media/characters/danny-kapowsky/back.svg",
  13626. extra: 797 / 760,
  13627. bottom: 0.025
  13628. }
  13629. },
  13630. },
  13631. [
  13632. {
  13633. name: "Macro",
  13634. height: math.unit(150, "feet"),
  13635. default: true
  13636. },
  13637. {
  13638. name: "Macro+",
  13639. height: math.unit(200, "feet")
  13640. },
  13641. {
  13642. name: "Macro++",
  13643. height: math.unit(300, "feet")
  13644. },
  13645. {
  13646. name: "Macro+++",
  13647. height: math.unit(400, "feet")
  13648. },
  13649. ]
  13650. ))
  13651. characterMakers.push(() => makeCharacter(
  13652. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13653. {
  13654. side: {
  13655. height: math.unit(6, "feet"),
  13656. weight: math.unit(170, "lb"),
  13657. name: "Side",
  13658. image: {
  13659. source: "./media/characters/finn/side.svg",
  13660. extra: 1953 / 1807,
  13661. bottom: 0.057
  13662. }
  13663. },
  13664. },
  13665. [
  13666. {
  13667. name: "Megamacro",
  13668. height: math.unit(14445, "feet"),
  13669. default: true
  13670. },
  13671. ]
  13672. ))
  13673. characterMakers.push(() => makeCharacter(
  13674. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13675. {
  13676. front: {
  13677. height: math.unit(5 + 6 / 12, "feet"),
  13678. weight: math.unit(125, "lb"),
  13679. name: "Front",
  13680. image: {
  13681. source: "./media/characters/roy/front.svg",
  13682. extra: 1,
  13683. bottom: 0.11
  13684. }
  13685. },
  13686. },
  13687. [
  13688. {
  13689. name: "Micro",
  13690. height: math.unit(3, "inches"),
  13691. default: true
  13692. },
  13693. {
  13694. name: "Normal",
  13695. height: math.unit(5 + 6 / 12, "feet")
  13696. },
  13697. {
  13698. name: "Lesser Macro",
  13699. height: math.unit(60, "feet")
  13700. },
  13701. {
  13702. name: "Greater Macro",
  13703. height: math.unit(120, "feet")
  13704. },
  13705. ]
  13706. ))
  13707. characterMakers.push(() => makeCharacter(
  13708. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13709. {
  13710. front: {
  13711. height: math.unit(6, "feet"),
  13712. weight: math.unit(100, "lb"),
  13713. name: "Front",
  13714. image: {
  13715. source: "./media/characters/aevsivs/front.svg",
  13716. extra: 1,
  13717. bottom: 0.03
  13718. }
  13719. },
  13720. back: {
  13721. height: math.unit(6, "feet"),
  13722. weight: math.unit(100, "lb"),
  13723. name: "Back",
  13724. image: {
  13725. source: "./media/characters/aevsivs/back.svg"
  13726. }
  13727. },
  13728. },
  13729. [
  13730. {
  13731. name: "Micro",
  13732. height: math.unit(2, "inches"),
  13733. default: true
  13734. },
  13735. {
  13736. name: "Normal",
  13737. height: math.unit(5, "feet")
  13738. },
  13739. ]
  13740. ))
  13741. characterMakers.push(() => makeCharacter(
  13742. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13743. {
  13744. front: {
  13745. height: math.unit(5 + 7 / 12, "feet"),
  13746. weight: math.unit(159, "lb"),
  13747. name: "Front",
  13748. image: {
  13749. source: "./media/characters/hildegard/front.svg",
  13750. extra: 312 / 286,
  13751. bottom: 0.005
  13752. }
  13753. },
  13754. },
  13755. [
  13756. {
  13757. name: "Normal",
  13758. height: math.unit(5 + 7 / 12, "feet"),
  13759. default: true
  13760. },
  13761. ]
  13762. ))
  13763. characterMakers.push(() => makeCharacter(
  13764. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13765. {
  13766. bernard: {
  13767. height: math.unit(2 + 7 / 12, "feet"),
  13768. weight: math.unit(66, "lb"),
  13769. name: "Bernard",
  13770. rename: true,
  13771. image: {
  13772. source: "./media/characters/bernard-wilder/bernard.svg",
  13773. extra: 192 / 128,
  13774. bottom: 0.05
  13775. }
  13776. },
  13777. wilder: {
  13778. height: math.unit(5 + 8 / 12, "feet"),
  13779. weight: math.unit(143, "lb"),
  13780. name: "Wilder",
  13781. rename: true,
  13782. image: {
  13783. source: "./media/characters/bernard-wilder/wilder.svg",
  13784. extra: 361 / 312,
  13785. bottom: 0.02
  13786. }
  13787. },
  13788. },
  13789. [
  13790. {
  13791. name: "Normal",
  13792. height: math.unit(2 + 7 / 12, "feet"),
  13793. default: true
  13794. },
  13795. ]
  13796. ))
  13797. characterMakers.push(() => makeCharacter(
  13798. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13799. {
  13800. anthro: {
  13801. height: math.unit(6 + 1 / 12, "feet"),
  13802. weight: math.unit(155, "lb"),
  13803. name: "Anthro",
  13804. image: {
  13805. source: "./media/characters/hearth/anthro.svg",
  13806. extra: 260 / 250,
  13807. bottom: 0.02
  13808. }
  13809. },
  13810. feral: {
  13811. height: math.unit(3.78, "feet"),
  13812. weight: math.unit(35, "kg"),
  13813. name: "Feral",
  13814. image: {
  13815. source: "./media/characters/hearth/feral.svg",
  13816. extra: 153 / 135,
  13817. bottom: 0.03
  13818. }
  13819. },
  13820. },
  13821. [
  13822. {
  13823. name: "Normal",
  13824. height: math.unit(6 + 1 / 12, "feet"),
  13825. default: true
  13826. },
  13827. ]
  13828. ))
  13829. characterMakers.push(() => makeCharacter(
  13830. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13831. {
  13832. front: {
  13833. height: math.unit(6, "feet"),
  13834. weight: math.unit(182, "lb"),
  13835. name: "Front",
  13836. image: {
  13837. source: "./media/characters/ingrid/front.svg",
  13838. extra: 294 / 268,
  13839. bottom: 0.027
  13840. }
  13841. },
  13842. },
  13843. [
  13844. {
  13845. name: "Normal",
  13846. height: math.unit(6, "feet"),
  13847. default: true
  13848. },
  13849. ]
  13850. ))
  13851. characterMakers.push(() => makeCharacter(
  13852. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13853. {
  13854. eevee: {
  13855. height: math.unit(2 + 10 / 12, "feet"),
  13856. weight: math.unit(86, "lb"),
  13857. name: "Malgam",
  13858. image: {
  13859. source: "./media/characters/malgam/eevee.svg",
  13860. extra: 218 / 180,
  13861. bottom: 0.2
  13862. }
  13863. },
  13864. sylveon: {
  13865. height: math.unit(4, "feet"),
  13866. weight: math.unit(101, "lb"),
  13867. name: "Future Malgam",
  13868. rename: true,
  13869. image: {
  13870. source: "./media/characters/malgam/sylveon.svg",
  13871. extra: 371 / 325,
  13872. bottom: 0.015
  13873. }
  13874. },
  13875. gigantamax: {
  13876. height: math.unit(50, "feet"),
  13877. name: "Gigantamax Malgam",
  13878. rename: true,
  13879. image: {
  13880. source: "./media/characters/malgam/gigantamax.svg"
  13881. }
  13882. },
  13883. },
  13884. [
  13885. {
  13886. name: "Normal",
  13887. height: math.unit(2 + 10 / 12, "feet"),
  13888. default: true
  13889. },
  13890. ]
  13891. ))
  13892. characterMakers.push(() => makeCharacter(
  13893. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13894. {
  13895. front: {
  13896. height: math.unit(5 + 11 / 12, "feet"),
  13897. weight: math.unit(188, "lb"),
  13898. name: "Front",
  13899. image: {
  13900. source: "./media/characters/fleur/front.svg",
  13901. extra: 309 / 283,
  13902. bottom: 0.007
  13903. }
  13904. },
  13905. },
  13906. [
  13907. {
  13908. name: "Normal",
  13909. height: math.unit(5 + 11 / 12, "feet"),
  13910. default: true
  13911. },
  13912. ]
  13913. ))
  13914. characterMakers.push(() => makeCharacter(
  13915. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13916. {
  13917. front: {
  13918. height: math.unit(5 + 4 / 12, "feet"),
  13919. weight: math.unit(122, "lb"),
  13920. name: "Front",
  13921. image: {
  13922. source: "./media/characters/jude/front.svg",
  13923. extra: 288 / 273,
  13924. bottom: 0.03
  13925. }
  13926. },
  13927. },
  13928. [
  13929. {
  13930. name: "Normal",
  13931. height: math.unit(5 + 4 / 12, "feet"),
  13932. default: true
  13933. },
  13934. ]
  13935. ))
  13936. characterMakers.push(() => makeCharacter(
  13937. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13938. {
  13939. front: {
  13940. height: math.unit(5 + 11 / 12, "feet"),
  13941. weight: math.unit(190, "lb"),
  13942. name: "Front",
  13943. image: {
  13944. source: "./media/characters/seara/front.svg",
  13945. extra: 1,
  13946. bottom: 0.05
  13947. }
  13948. },
  13949. },
  13950. [
  13951. {
  13952. name: "Normal",
  13953. height: math.unit(5 + 11 / 12, "feet"),
  13954. default: true
  13955. },
  13956. ]
  13957. ))
  13958. characterMakers.push(() => makeCharacter(
  13959. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  13960. {
  13961. front: {
  13962. height: math.unit(16 + 5 / 12, "feet"),
  13963. weight: math.unit(524, "lb"),
  13964. name: "Front",
  13965. image: {
  13966. source: "./media/characters/caspian/front.svg",
  13967. extra: 1,
  13968. bottom: 0.04
  13969. }
  13970. },
  13971. },
  13972. [
  13973. {
  13974. name: "Normal",
  13975. height: math.unit(16 + 5 / 12, "feet"),
  13976. default: true
  13977. },
  13978. ]
  13979. ))
  13980. characterMakers.push(() => makeCharacter(
  13981. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  13982. {
  13983. front: {
  13984. height: math.unit(5 + 7 / 12, "feet"),
  13985. weight: math.unit(170, "lb"),
  13986. name: "Front",
  13987. image: {
  13988. source: "./media/characters/mika/front.svg",
  13989. extra: 1,
  13990. bottom: 0.016
  13991. }
  13992. },
  13993. },
  13994. [
  13995. {
  13996. name: "Normal",
  13997. height: math.unit(5 + 7 / 12, "feet"),
  13998. default: true
  13999. },
  14000. ]
  14001. ))
  14002. characterMakers.push(() => makeCharacter(
  14003. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14004. {
  14005. front: {
  14006. height: math.unit(6 + 2 / 12, "feet"),
  14007. weight: math.unit(268, "lb"),
  14008. name: "Front",
  14009. image: {
  14010. source: "./media/characters/sol/front.svg",
  14011. extra: 247 / 231,
  14012. bottom: 0.05
  14013. }
  14014. },
  14015. },
  14016. [
  14017. {
  14018. name: "Normal",
  14019. height: math.unit(6 + 2 / 12, "feet"),
  14020. default: true
  14021. },
  14022. ]
  14023. ))
  14024. characterMakers.push(() => makeCharacter(
  14025. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14026. {
  14027. buizel: {
  14028. height: math.unit(2 + 5 / 12, "feet"),
  14029. weight: math.unit(87, "lb"),
  14030. name: "Buizel",
  14031. image: {
  14032. source: "./media/characters/umiko/buizel.svg",
  14033. extra: 172 / 157,
  14034. bottom: 0.01
  14035. }
  14036. },
  14037. floatzel: {
  14038. height: math.unit(5 + 9 / 12, "feet"),
  14039. weight: math.unit(250, "lb"),
  14040. name: "Floatzel",
  14041. image: {
  14042. source: "./media/characters/umiko/floatzel.svg",
  14043. extra: 262 / 248
  14044. }
  14045. },
  14046. },
  14047. [
  14048. {
  14049. name: "Normal",
  14050. height: math.unit(2 + 5 / 12, "feet"),
  14051. default: true
  14052. },
  14053. ]
  14054. ))
  14055. characterMakers.push(() => makeCharacter(
  14056. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14057. {
  14058. front: {
  14059. height: math.unit(6 + 2 / 12, "feet"),
  14060. weight: math.unit(146, "lb"),
  14061. name: "Front",
  14062. image: {
  14063. source: "./media/characters/iliac/front.svg",
  14064. extra: 389 / 365,
  14065. bottom: 0.035
  14066. }
  14067. },
  14068. },
  14069. [
  14070. {
  14071. name: "Normal",
  14072. height: math.unit(6 + 2 / 12, "feet"),
  14073. default: true
  14074. },
  14075. ]
  14076. ))
  14077. characterMakers.push(() => makeCharacter(
  14078. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14079. {
  14080. front: {
  14081. height: math.unit(6, "feet"),
  14082. weight: math.unit(170, "lb"),
  14083. name: "Front",
  14084. image: {
  14085. source: "./media/characters/topaz/front.svg",
  14086. extra: 317 / 303,
  14087. bottom: 0.055
  14088. }
  14089. },
  14090. },
  14091. [
  14092. {
  14093. name: "Normal",
  14094. height: math.unit(6, "feet"),
  14095. default: true
  14096. },
  14097. ]
  14098. ))
  14099. characterMakers.push(() => makeCharacter(
  14100. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14101. {
  14102. front: {
  14103. height: math.unit(5 + 11 / 12, "feet"),
  14104. weight: math.unit(144, "lb"),
  14105. name: "Front",
  14106. image: {
  14107. source: "./media/characters/gabriel/front.svg",
  14108. extra: 285 / 262,
  14109. bottom: 0.004
  14110. }
  14111. },
  14112. },
  14113. [
  14114. {
  14115. name: "Normal",
  14116. height: math.unit(5 + 11 / 12, "feet"),
  14117. default: true
  14118. },
  14119. ]
  14120. ))
  14121. characterMakers.push(() => makeCharacter(
  14122. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14123. {
  14124. side: {
  14125. height: math.unit(6 + 5 / 12, "feet"),
  14126. weight: math.unit(300, "lb"),
  14127. name: "Side",
  14128. image: {
  14129. source: "./media/characters/tempest-suicune/side.svg",
  14130. extra: 195 / 154,
  14131. bottom: 0.04
  14132. }
  14133. },
  14134. },
  14135. [
  14136. {
  14137. name: "Normal",
  14138. height: math.unit(6 + 5 / 12, "feet"),
  14139. default: true
  14140. },
  14141. ]
  14142. ))
  14143. characterMakers.push(() => makeCharacter(
  14144. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14145. {
  14146. front: {
  14147. height: math.unit(7 + 2 / 12, "feet"),
  14148. weight: math.unit(322, "lb"),
  14149. name: "Front",
  14150. image: {
  14151. source: "./media/characters/vulcan/front.svg",
  14152. extra: 154 / 147,
  14153. bottom: 0.04
  14154. }
  14155. },
  14156. },
  14157. [
  14158. {
  14159. name: "Normal",
  14160. height: math.unit(7 + 2 / 12, "feet"),
  14161. default: true
  14162. },
  14163. ]
  14164. ))
  14165. characterMakers.push(() => makeCharacter(
  14166. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14167. {
  14168. front: {
  14169. height: math.unit(5 + 10 / 12, "feet"),
  14170. weight: math.unit(264, "lb"),
  14171. name: "Front",
  14172. image: {
  14173. source: "./media/characters/gault/front.svg",
  14174. extra: 161 / 140,
  14175. bottom: 0.028
  14176. }
  14177. },
  14178. },
  14179. [
  14180. {
  14181. name: "Normal",
  14182. height: math.unit(5 + 10 / 12, "feet"),
  14183. default: true
  14184. },
  14185. ]
  14186. ))
  14187. characterMakers.push(() => makeCharacter(
  14188. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14189. {
  14190. front: {
  14191. height: math.unit(6, "feet"),
  14192. weight: math.unit(150, "lb"),
  14193. name: "Front",
  14194. image: {
  14195. source: "./media/characters/shard/front.svg",
  14196. extra: 273 / 238,
  14197. bottom: 0.02
  14198. }
  14199. },
  14200. },
  14201. [
  14202. {
  14203. name: "Normal",
  14204. height: math.unit(3 + 6 / 12, "feet"),
  14205. default: true
  14206. },
  14207. ]
  14208. ))
  14209. characterMakers.push(() => makeCharacter(
  14210. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14211. {
  14212. front: {
  14213. height: math.unit(5 + 11 / 12, "feet"),
  14214. weight: math.unit(146, "lb"),
  14215. name: "Front",
  14216. image: {
  14217. source: "./media/characters/ashe/front.svg",
  14218. extra: 400 / 373,
  14219. bottom: 0.01
  14220. }
  14221. },
  14222. },
  14223. [
  14224. {
  14225. name: "Normal",
  14226. height: math.unit(5 + 11 / 12, "feet"),
  14227. default: true
  14228. },
  14229. ]
  14230. ))
  14231. characterMakers.push(() => makeCharacter(
  14232. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14233. {
  14234. front: {
  14235. height: math.unit(5 + 5 / 12, "feet"),
  14236. weight: math.unit(135, "lb"),
  14237. name: "Front",
  14238. image: {
  14239. source: "./media/characters/beatrix/front.svg",
  14240. extra: 392 / 379,
  14241. bottom: 0.01
  14242. }
  14243. },
  14244. },
  14245. [
  14246. {
  14247. name: "Normal",
  14248. height: math.unit(6, "feet"),
  14249. default: true
  14250. },
  14251. ]
  14252. ))
  14253. characterMakers.push(() => makeCharacter(
  14254. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14255. {
  14256. front: {
  14257. height: math.unit(6, "feet"),
  14258. weight: math.unit(150, "lb"),
  14259. name: "Front",
  14260. image: {
  14261. source: "./media/characters/ignatius/front.svg",
  14262. extra: 245 / 222,
  14263. bottom: 0.01
  14264. }
  14265. },
  14266. },
  14267. [
  14268. {
  14269. name: "Normal",
  14270. height: math.unit(5 + 5 / 12, "feet"),
  14271. default: true
  14272. },
  14273. ]
  14274. ))
  14275. characterMakers.push(() => makeCharacter(
  14276. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14277. {
  14278. front: {
  14279. height: math.unit(6 + 2 / 12, "feet"),
  14280. weight: math.unit(138, "lb"),
  14281. name: "Front",
  14282. image: {
  14283. source: "./media/characters/mei-li/front.svg",
  14284. extra: 237 / 229,
  14285. bottom: 0.03
  14286. }
  14287. },
  14288. },
  14289. [
  14290. {
  14291. name: "Normal",
  14292. height: math.unit(6 + 2 / 12, "feet"),
  14293. default: true
  14294. },
  14295. ]
  14296. ))
  14297. characterMakers.push(() => makeCharacter(
  14298. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14299. {
  14300. front: {
  14301. height: math.unit(2 + 4 / 12, "feet"),
  14302. weight: math.unit(62, "lb"),
  14303. name: "Front",
  14304. image: {
  14305. source: "./media/characters/puru/front.svg",
  14306. extra: 206 / 149,
  14307. bottom: 0.06
  14308. }
  14309. },
  14310. },
  14311. [
  14312. {
  14313. name: "Normal",
  14314. height: math.unit(2 + 4 / 12, "feet"),
  14315. default: true
  14316. },
  14317. ]
  14318. ))
  14319. characterMakers.push(() => makeCharacter(
  14320. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14321. {
  14322. taur: {
  14323. height: math.unit(11, "feet"),
  14324. weight: math.unit(500, "lb"),
  14325. name: "Taur",
  14326. image: {
  14327. source: "./media/characters/kee/taur.svg",
  14328. extra: 1,
  14329. bottom: 0.04
  14330. }
  14331. },
  14332. },
  14333. [
  14334. {
  14335. name: "Normal",
  14336. height: math.unit(11, "feet"),
  14337. default: true
  14338. },
  14339. ]
  14340. ))
  14341. characterMakers.push(() => makeCharacter(
  14342. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14343. {
  14344. anthro: {
  14345. height: math.unit(7, "feet"),
  14346. weight: math.unit(190, "lb"),
  14347. name: "Anthro",
  14348. image: {
  14349. source: "./media/characters/cobalt-dracha/anthro.svg",
  14350. extra: 231 / 225,
  14351. bottom: 0.04
  14352. }
  14353. },
  14354. feral: {
  14355. height: math.unit(9 + 7 / 12, "feet"),
  14356. weight: math.unit(294, "lb"),
  14357. name: "Feral",
  14358. image: {
  14359. source: "./media/characters/cobalt-dracha/feral.svg",
  14360. extra: 692 / 633,
  14361. bottom: 0.05
  14362. }
  14363. },
  14364. },
  14365. [
  14366. {
  14367. name: "Normal",
  14368. height: math.unit(7, "feet"),
  14369. default: true
  14370. },
  14371. ]
  14372. ))
  14373. characterMakers.push(() => makeCharacter(
  14374. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14375. {
  14376. fallen: {
  14377. height: math.unit(11 + 8 / 12, "feet"),
  14378. weight: math.unit(485, "lb"),
  14379. name: "Java (Fallen)",
  14380. rename: true,
  14381. image: {
  14382. source: "./media/characters/java/fallen.svg",
  14383. extra: 226 / 208,
  14384. bottom: 0.005
  14385. }
  14386. },
  14387. godkin: {
  14388. height: math.unit(10 + 6 / 12, "feet"),
  14389. weight: math.unit(328, "lb"),
  14390. name: "Java (Godkin)",
  14391. rename: true,
  14392. image: {
  14393. source: "./media/characters/java/godkin.svg",
  14394. extra: 270 / 262,
  14395. bottom: 0.02
  14396. }
  14397. },
  14398. },
  14399. [
  14400. {
  14401. name: "Normal",
  14402. height: math.unit(11 + 8 / 12, "feet"),
  14403. default: true
  14404. },
  14405. ]
  14406. ))
  14407. characterMakers.push(() => makeCharacter(
  14408. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14409. {
  14410. front: {
  14411. height: math.unit(7 + 8 / 12, "feet"),
  14412. weight: math.unit(320, "lb"),
  14413. name: "Front",
  14414. image: {
  14415. source: "./media/characters/skoll/front.svg",
  14416. extra: 232 / 220,
  14417. bottom: 0.02
  14418. }
  14419. },
  14420. },
  14421. [
  14422. {
  14423. name: "Normal",
  14424. height: math.unit(7 + 8 / 12, "feet"),
  14425. default: true
  14426. },
  14427. ]
  14428. ))
  14429. characterMakers.push(() => makeCharacter(
  14430. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14431. {
  14432. front: {
  14433. height: math.unit(5 + 9 / 12, "feet"),
  14434. weight: math.unit(170, "lb"),
  14435. name: "Front",
  14436. image: {
  14437. source: "./media/characters/purna/front.svg",
  14438. extra: 239 / 229,
  14439. bottom: 0.01
  14440. }
  14441. },
  14442. },
  14443. [
  14444. {
  14445. name: "Normal",
  14446. height: math.unit(5 + 9 / 12, "feet"),
  14447. default: true
  14448. },
  14449. ]
  14450. ))
  14451. characterMakers.push(() => makeCharacter(
  14452. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14453. {
  14454. front: {
  14455. height: math.unit(5 + 9 / 12, "feet"),
  14456. weight: math.unit(142, "lb"),
  14457. name: "Front",
  14458. image: {
  14459. source: "./media/characters/kuva/front.svg",
  14460. extra: 281 / 271,
  14461. bottom: 0.006
  14462. }
  14463. },
  14464. },
  14465. [
  14466. {
  14467. name: "Normal",
  14468. height: math.unit(5 + 9 / 12, "feet"),
  14469. default: true
  14470. },
  14471. ]
  14472. ))
  14473. characterMakers.push(() => makeCharacter(
  14474. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14475. {
  14476. anthro: {
  14477. height: math.unit(9 + 2 / 12, "feet"),
  14478. weight: math.unit(270, "lb"),
  14479. name: "Anthro",
  14480. image: {
  14481. source: "./media/characters/embra/anthro.svg",
  14482. extra: 200 / 187,
  14483. bottom: 0.02
  14484. }
  14485. },
  14486. feral: {
  14487. height: math.unit(18 + 8 / 12, "feet"),
  14488. weight: math.unit(576, "lb"),
  14489. name: "Feral",
  14490. image: {
  14491. source: "./media/characters/embra/feral.svg",
  14492. extra: 152 / 137,
  14493. bottom: 0.037
  14494. }
  14495. },
  14496. },
  14497. [
  14498. {
  14499. name: "Normal",
  14500. height: math.unit(9 + 2 / 12, "feet"),
  14501. default: true
  14502. },
  14503. ]
  14504. ))
  14505. characterMakers.push(() => makeCharacter(
  14506. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14507. {
  14508. anthro: {
  14509. height: math.unit(10 + 9 / 12, "feet"),
  14510. weight: math.unit(224, "lb"),
  14511. name: "Anthro",
  14512. image: {
  14513. source: "./media/characters/grottos/anthro.svg",
  14514. extra: 350 / 332,
  14515. bottom: 0.045
  14516. }
  14517. },
  14518. feral: {
  14519. height: math.unit(20 + 7 / 12, "feet"),
  14520. weight: math.unit(629, "lb"),
  14521. name: "Feral",
  14522. image: {
  14523. source: "./media/characters/grottos/feral.svg",
  14524. extra: 207 / 190,
  14525. bottom: 0.05
  14526. }
  14527. },
  14528. },
  14529. [
  14530. {
  14531. name: "Normal",
  14532. height: math.unit(10 + 9 / 12, "feet"),
  14533. default: true
  14534. },
  14535. ]
  14536. ))
  14537. characterMakers.push(() => makeCharacter(
  14538. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14539. {
  14540. anthro: {
  14541. height: math.unit(9 + 6 / 12, "feet"),
  14542. weight: math.unit(298, "lb"),
  14543. name: "Anthro",
  14544. image: {
  14545. source: "./media/characters/frifna/anthro.svg",
  14546. extra: 282 / 269,
  14547. bottom: 0.015
  14548. }
  14549. },
  14550. feral: {
  14551. height: math.unit(16 + 2 / 12, "feet"),
  14552. weight: math.unit(624, "lb"),
  14553. name: "Feral",
  14554. image: {
  14555. source: "./media/characters/frifna/feral.svg"
  14556. }
  14557. },
  14558. },
  14559. [
  14560. {
  14561. name: "Normal",
  14562. height: math.unit(9 + 6 / 12, "feet"),
  14563. default: true
  14564. },
  14565. ]
  14566. ))
  14567. characterMakers.push(() => makeCharacter(
  14568. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14569. {
  14570. front: {
  14571. height: math.unit(6 + 2 / 12, "feet"),
  14572. weight: math.unit(168, "lb"),
  14573. name: "Front",
  14574. image: {
  14575. source: "./media/characters/elise/front.svg",
  14576. extra: 276 / 271
  14577. }
  14578. },
  14579. },
  14580. [
  14581. {
  14582. name: "Normal",
  14583. height: math.unit(6 + 2 / 12, "feet"),
  14584. default: true
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14590. {
  14591. front: {
  14592. height: math.unit(5 + 10 / 12, "feet"),
  14593. weight: math.unit(210, "lb"),
  14594. name: "Front",
  14595. image: {
  14596. source: "./media/characters/glade/front.svg",
  14597. extra: 258 / 247,
  14598. bottom: 0.008
  14599. }
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Normal",
  14605. height: math.unit(5 + 10 / 12, "feet"),
  14606. default: true
  14607. },
  14608. ]
  14609. ))
  14610. characterMakers.push(() => makeCharacter(
  14611. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14612. {
  14613. front: {
  14614. height: math.unit(5 + 10 / 12, "feet"),
  14615. weight: math.unit(129, "lb"),
  14616. name: "Front",
  14617. image: {
  14618. source: "./media/characters/rina/front.svg",
  14619. extra: 266 / 255,
  14620. bottom: 0.005
  14621. }
  14622. },
  14623. },
  14624. [
  14625. {
  14626. name: "Normal",
  14627. height: math.unit(5 + 10 / 12, "feet"),
  14628. default: true
  14629. },
  14630. ]
  14631. ))
  14632. characterMakers.push(() => makeCharacter(
  14633. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14634. {
  14635. front: {
  14636. height: math.unit(6 + 1 / 12, "feet"),
  14637. weight: math.unit(192, "lb"),
  14638. name: "Front",
  14639. image: {
  14640. source: "./media/characters/veronica/front.svg",
  14641. extra: 319 / 309,
  14642. bottom: 0.005
  14643. }
  14644. },
  14645. },
  14646. [
  14647. {
  14648. name: "Normal",
  14649. height: math.unit(6 + 1 / 12, "feet"),
  14650. default: true
  14651. },
  14652. ]
  14653. ))
  14654. characterMakers.push(() => makeCharacter(
  14655. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14656. {
  14657. front: {
  14658. height: math.unit(9 + 3 / 12, "feet"),
  14659. weight: math.unit(1100, "lb"),
  14660. name: "Front",
  14661. image: {
  14662. source: "./media/characters/braxton/front.svg",
  14663. extra: 1057 / 984,
  14664. bottom: 0.05
  14665. }
  14666. },
  14667. },
  14668. [
  14669. {
  14670. name: "Normal",
  14671. height: math.unit(9 + 3 / 12, "feet")
  14672. },
  14673. {
  14674. name: "Giant",
  14675. height: math.unit(300, "feet"),
  14676. default: true
  14677. },
  14678. {
  14679. name: "Macro",
  14680. height: math.unit(700, "feet")
  14681. },
  14682. {
  14683. name: "Megamacro",
  14684. height: math.unit(6000, "feet")
  14685. },
  14686. ]
  14687. ))
  14688. characterMakers.push(() => makeCharacter(
  14689. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14690. {
  14691. front: {
  14692. height: math.unit(6 + 7 / 12, "feet"),
  14693. weight: math.unit(150, "lb"),
  14694. name: "Front",
  14695. image: {
  14696. source: "./media/characters/blue-feyonics/front.svg",
  14697. extra: 1403 / 1306,
  14698. bottom: 0.047
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Normal",
  14705. height: math.unit(6 + 7 / 12, "feet"),
  14706. default: true
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14712. {
  14713. front: {
  14714. height: math.unit(1.8, "meters"),
  14715. weight: math.unit(60, "kg"),
  14716. name: "Front",
  14717. image: {
  14718. source: "./media/characters/maxwell/front.svg",
  14719. extra: 2060 / 1873
  14720. }
  14721. },
  14722. },
  14723. [
  14724. {
  14725. name: "Micro",
  14726. height: math.unit(1, "mm")
  14727. },
  14728. {
  14729. name: "Normal",
  14730. height: math.unit(1.8, "meter"),
  14731. default: true
  14732. },
  14733. {
  14734. name: "Macro",
  14735. height: math.unit(30, "meters")
  14736. },
  14737. {
  14738. name: "Megamacro",
  14739. height: math.unit(10, "km")
  14740. },
  14741. ]
  14742. ))
  14743. characterMakers.push(() => makeCharacter(
  14744. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14745. {
  14746. front: {
  14747. height: math.unit(6, "feet"),
  14748. weight: math.unit(150, "lb"),
  14749. name: "Front",
  14750. image: {
  14751. source: "./media/characters/jack/front.svg",
  14752. extra: 1754 / 1640,
  14753. bottom: 0.01
  14754. }
  14755. },
  14756. },
  14757. [
  14758. {
  14759. name: "Normal",
  14760. height: math.unit(80000, "feet"),
  14761. default: true
  14762. },
  14763. {
  14764. name: "Max size",
  14765. height: math.unit(10, "lightyears")
  14766. },
  14767. ]
  14768. ))
  14769. characterMakers.push(() => makeCharacter(
  14770. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14771. {
  14772. upright: {
  14773. height: math.unit(7, "feet"),
  14774. weight: math.unit(170, "lb"),
  14775. name: "Upright",
  14776. image: {
  14777. source: "./media/characters/cafat/upright.svg",
  14778. bottom: 0.01
  14779. }
  14780. },
  14781. uprightFull: {
  14782. height: math.unit(7, "feet"),
  14783. weight: math.unit(170, "lb"),
  14784. name: "Upright (Full)",
  14785. image: {
  14786. source: "./media/characters/cafat/upright-full.svg",
  14787. bottom: 0.01
  14788. }
  14789. },
  14790. side: {
  14791. height: math.unit(5, "feet"),
  14792. weight: math.unit(150, "lb"),
  14793. name: "Side",
  14794. image: {
  14795. source: "./media/characters/cafat/side.svg"
  14796. }
  14797. },
  14798. },
  14799. [
  14800. {
  14801. name: "Small",
  14802. height: math.unit(7, "feet"),
  14803. default: true
  14804. },
  14805. {
  14806. name: "Large",
  14807. height: math.unit(15.5, "feet")
  14808. },
  14809. ]
  14810. ))
  14811. characterMakers.push(() => makeCharacter(
  14812. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14813. {
  14814. front: {
  14815. height: math.unit(6, "feet"),
  14816. weight: math.unit(150, "lb"),
  14817. name: "Front",
  14818. image: {
  14819. source: "./media/characters/verin-raharra/front.svg",
  14820. extra: 5019 / 4835,
  14821. bottom: 0.023
  14822. }
  14823. },
  14824. },
  14825. [
  14826. {
  14827. name: "Normal",
  14828. height: math.unit(7 + 5 / 12, "feet"),
  14829. default: true
  14830. },
  14831. {
  14832. name: "Upsized",
  14833. height: math.unit(20, "feet")
  14834. },
  14835. ]
  14836. ))
  14837. characterMakers.push(() => makeCharacter(
  14838. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14839. {
  14840. front: {
  14841. height: math.unit(7, "feet"),
  14842. weight: math.unit(230, "lb"),
  14843. name: "Front",
  14844. image: {
  14845. source: "./media/characters/nakata/front.svg",
  14846. extra: 1.005,
  14847. bottom: 0.01
  14848. }
  14849. },
  14850. },
  14851. [
  14852. {
  14853. name: "Normal",
  14854. height: math.unit(7, "feet"),
  14855. default: true
  14856. },
  14857. {
  14858. name: "Big",
  14859. height: math.unit(14, "feet")
  14860. },
  14861. {
  14862. name: "Macro",
  14863. height: math.unit(400, "feet")
  14864. },
  14865. ]
  14866. ))
  14867. characterMakers.push(() => makeCharacter(
  14868. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14869. {
  14870. front: {
  14871. height: math.unit(4.91, "feet"),
  14872. weight: math.unit(100, "lb"),
  14873. name: "Front",
  14874. image: {
  14875. source: "./media/characters/lily/front.svg",
  14876. extra: 1585 / 1415,
  14877. bottom: 0.02
  14878. }
  14879. },
  14880. },
  14881. [
  14882. {
  14883. name: "Normal",
  14884. height: math.unit(4.91, "feet"),
  14885. default: true
  14886. },
  14887. ]
  14888. ))
  14889. characterMakers.push(() => makeCharacter(
  14890. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14891. {
  14892. laying: {
  14893. height: math.unit(4 + 4 / 12, "feet"),
  14894. weight: math.unit(600, "lb"),
  14895. name: "Laying",
  14896. image: {
  14897. source: "./media/characters/sheila/laying.svg",
  14898. extra: 1333 / 1265,
  14899. bottom: 0.16
  14900. }
  14901. },
  14902. },
  14903. [
  14904. {
  14905. name: "Normal",
  14906. height: math.unit(4 + 4 / 12, "feet"),
  14907. default: true
  14908. },
  14909. ]
  14910. ))
  14911. characterMakers.push(() => makeCharacter(
  14912. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14913. {
  14914. front: {
  14915. height: math.unit(6, "feet"),
  14916. weight: math.unit(190, "lb"),
  14917. name: "Front",
  14918. image: {
  14919. source: "./media/characters/sax/front.svg",
  14920. extra: 1187 / 973,
  14921. bottom: 0.042
  14922. }
  14923. },
  14924. },
  14925. [
  14926. {
  14927. name: "Micro",
  14928. height: math.unit(4, "inches"),
  14929. default: true
  14930. },
  14931. ]
  14932. ))
  14933. characterMakers.push(() => makeCharacter(
  14934. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14935. {
  14936. front: {
  14937. height: math.unit(6, "feet"),
  14938. weight: math.unit(150, "lb"),
  14939. name: "Front",
  14940. image: {
  14941. source: "./media/characters/pandora/front.svg",
  14942. extra: 2720 / 2556,
  14943. bottom: 0.015
  14944. }
  14945. },
  14946. back: {
  14947. height: math.unit(6, "feet"),
  14948. weight: math.unit(150, "lb"),
  14949. name: "Back",
  14950. image: {
  14951. source: "./media/characters/pandora/back.svg",
  14952. extra: 2720 / 2556,
  14953. bottom: 0.01
  14954. }
  14955. },
  14956. beans: {
  14957. height: math.unit(6 / 8, "feet"),
  14958. name: "Beans",
  14959. image: {
  14960. source: "./media/characters/pandora/beans.svg"
  14961. }
  14962. },
  14963. skirt: {
  14964. height: math.unit(6, "feet"),
  14965. weight: math.unit(150, "lb"),
  14966. name: "Skirt",
  14967. image: {
  14968. source: "./media/characters/pandora/skirt.svg",
  14969. extra: 1622 / 1525,
  14970. bottom: 0.015
  14971. }
  14972. },
  14973. hoodie: {
  14974. height: math.unit(6, "feet"),
  14975. weight: math.unit(150, "lb"),
  14976. name: "Hoodie",
  14977. image: {
  14978. source: "./media/characters/pandora/hoodie.svg",
  14979. extra: 1622 / 1525,
  14980. bottom: 0.015
  14981. }
  14982. },
  14983. casual: {
  14984. height: math.unit(6, "feet"),
  14985. weight: math.unit(150, "lb"),
  14986. name: "Casual",
  14987. image: {
  14988. source: "./media/characters/pandora/casual.svg",
  14989. extra: 1622 / 1525,
  14990. bottom: 0.015
  14991. }
  14992. },
  14993. },
  14994. [
  14995. {
  14996. name: "Normal",
  14997. height: math.unit(6, "feet")
  14998. },
  14999. {
  15000. name: "Big Steppy",
  15001. height: math.unit(1, "km"),
  15002. default: true
  15003. },
  15004. ]
  15005. ))
  15006. characterMakers.push(() => makeCharacter(
  15007. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15008. {
  15009. side: {
  15010. height: math.unit(10, "feet"),
  15011. weight: math.unit(800, "kg"),
  15012. name: "Side",
  15013. image: {
  15014. source: "./media/characters/venio-darcony/side.svg",
  15015. extra: 1373 / 1003,
  15016. bottom: 0.037
  15017. }
  15018. },
  15019. front: {
  15020. height: math.unit(19, "feet"),
  15021. weight: math.unit(800, "kg"),
  15022. name: "Front",
  15023. image: {
  15024. source: "./media/characters/venio-darcony/front.svg"
  15025. }
  15026. },
  15027. back: {
  15028. height: math.unit(19, "feet"),
  15029. weight: math.unit(800, "kg"),
  15030. name: "Back",
  15031. image: {
  15032. source: "./media/characters/venio-darcony/back.svg"
  15033. }
  15034. },
  15035. sideNsfw: {
  15036. height: math.unit(10, "feet"),
  15037. weight: math.unit(800, "kg"),
  15038. name: "Side (NSFW)",
  15039. image: {
  15040. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15041. extra: 1373 / 1003,
  15042. bottom: 0.037
  15043. }
  15044. },
  15045. frontNsfw: {
  15046. height: math.unit(19, "feet"),
  15047. weight: math.unit(800, "kg"),
  15048. name: "Front (NSFW)",
  15049. image: {
  15050. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15051. }
  15052. },
  15053. backNsfw: {
  15054. height: math.unit(19, "feet"),
  15055. weight: math.unit(800, "kg"),
  15056. name: "Back (NSFW)",
  15057. image: {
  15058. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15059. }
  15060. },
  15061. sideArmored: {
  15062. height: math.unit(10, "feet"),
  15063. weight: math.unit(800, "kg"),
  15064. name: "Side (Armored)",
  15065. image: {
  15066. source: "./media/characters/venio-darcony/side-armored.svg",
  15067. extra: 1373 / 1003,
  15068. bottom: 0.037
  15069. }
  15070. },
  15071. frontArmored: {
  15072. height: math.unit(19, "feet"),
  15073. weight: math.unit(900, "kg"),
  15074. name: "Front (Armored)",
  15075. image: {
  15076. source: "./media/characters/venio-darcony/front-armored.svg"
  15077. }
  15078. },
  15079. backArmored: {
  15080. height: math.unit(19, "feet"),
  15081. weight: math.unit(900, "kg"),
  15082. name: "Back (Armored)",
  15083. image: {
  15084. source: "./media/characters/venio-darcony/back-armored.svg"
  15085. }
  15086. },
  15087. sword: {
  15088. height: math.unit(10, "feet"),
  15089. weight: math.unit(50, "lb"),
  15090. name: "Sword",
  15091. image: {
  15092. source: "./media/characters/venio-darcony/sword.svg"
  15093. }
  15094. },
  15095. },
  15096. [
  15097. {
  15098. name: "Normal",
  15099. height: math.unit(10, "feet")
  15100. },
  15101. {
  15102. name: "Macro",
  15103. height: math.unit(130, "feet"),
  15104. default: true
  15105. },
  15106. {
  15107. name: "Macro+",
  15108. height: math.unit(240, "feet")
  15109. },
  15110. ]
  15111. ))
  15112. characterMakers.push(() => makeCharacter(
  15113. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15114. {
  15115. front: {
  15116. height: math.unit(6, "feet"),
  15117. weight: math.unit(150, "lb"),
  15118. name: "Front",
  15119. image: {
  15120. source: "./media/characters/veski/front.svg",
  15121. extra: 1299 / 1225,
  15122. bottom: 0.04
  15123. }
  15124. },
  15125. back: {
  15126. height: math.unit(6, "feet"),
  15127. weight: math.unit(150, "lb"),
  15128. name: "Back",
  15129. image: {
  15130. source: "./media/characters/veski/back.svg",
  15131. extra: 1299 / 1225,
  15132. bottom: 0.008
  15133. }
  15134. },
  15135. maw: {
  15136. height: math.unit(1.5 * 1.21, "feet"),
  15137. name: "Maw",
  15138. image: {
  15139. source: "./media/characters/veski/maw.svg"
  15140. }
  15141. },
  15142. },
  15143. [
  15144. {
  15145. name: "Macro",
  15146. height: math.unit(2, "km"),
  15147. default: true
  15148. },
  15149. ]
  15150. ))
  15151. characterMakers.push(() => makeCharacter(
  15152. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15153. {
  15154. front: {
  15155. height: math.unit(5 + 7 / 12, "feet"),
  15156. name: "Front",
  15157. image: {
  15158. source: "./media/characters/isabelle/front.svg",
  15159. extra: 2130 / 1976,
  15160. bottom: 0.05
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Supermicro",
  15167. height: math.unit(10, "micrometers")
  15168. },
  15169. {
  15170. name: "Micro",
  15171. height: math.unit(1, "inch")
  15172. },
  15173. {
  15174. name: "Tiny",
  15175. height: math.unit(5, "inches")
  15176. },
  15177. {
  15178. name: "Standard",
  15179. height: math.unit(5 + 7 / 12, "inches")
  15180. },
  15181. {
  15182. name: "Macro",
  15183. height: math.unit(80, "meters"),
  15184. default: true
  15185. },
  15186. {
  15187. name: "Megamacro",
  15188. height: math.unit(250, "meters")
  15189. },
  15190. {
  15191. name: "Gigamacro",
  15192. height: math.unit(5, "km")
  15193. },
  15194. {
  15195. name: "Cosmic",
  15196. height: math.unit(2.5e6, "miles")
  15197. },
  15198. ]
  15199. ))
  15200. characterMakers.push(() => makeCharacter(
  15201. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15202. {
  15203. front: {
  15204. height: math.unit(6, "feet"),
  15205. weight: math.unit(150, "lb"),
  15206. name: "Front",
  15207. image: {
  15208. source: "./media/characters/hanzo/front.svg",
  15209. extra: 374 / 344,
  15210. bottom: 0.02
  15211. }
  15212. },
  15213. },
  15214. [
  15215. {
  15216. name: "Normal",
  15217. height: math.unit(8, "feet"),
  15218. default: true
  15219. },
  15220. ]
  15221. ))
  15222. characterMakers.push(() => makeCharacter(
  15223. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15224. {
  15225. front: {
  15226. height: math.unit(7, "feet"),
  15227. weight: math.unit(130, "lb"),
  15228. name: "Front",
  15229. image: {
  15230. source: "./media/characters/anna/front.svg",
  15231. extra: 169 / 145,
  15232. bottom: 0.06
  15233. }
  15234. },
  15235. full: {
  15236. height: math.unit(4.96, "feet"),
  15237. weight: math.unit(220, "lb"),
  15238. name: "Full",
  15239. image: {
  15240. source: "./media/characters/anna/full.svg",
  15241. extra: 138 / 114,
  15242. bottom: 0.15
  15243. }
  15244. },
  15245. tongue: {
  15246. height: math.unit(2.53, "feet"),
  15247. name: "Tongue",
  15248. image: {
  15249. source: "./media/characters/anna/tongue.svg"
  15250. }
  15251. },
  15252. },
  15253. [
  15254. {
  15255. name: "Normal",
  15256. height: math.unit(7, "feet"),
  15257. default: true
  15258. },
  15259. ]
  15260. ))
  15261. characterMakers.push(() => makeCharacter(
  15262. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15263. {
  15264. front: {
  15265. height: math.unit(7, "feet"),
  15266. weight: math.unit(150, "lb"),
  15267. name: "Front",
  15268. image: {
  15269. source: "./media/characters/ian-corvid/front.svg",
  15270. extra: 150 / 142,
  15271. bottom: 0.02
  15272. }
  15273. },
  15274. back: {
  15275. height: math.unit(7, "feet"),
  15276. weight: math.unit(150, "lb"),
  15277. name: "Back",
  15278. image: {
  15279. source: "./media/characters/ian-corvid/back.svg",
  15280. extra: 150 / 143,
  15281. bottom: 0.01
  15282. }
  15283. },
  15284. stomping: {
  15285. height: math.unit(7, "feet"),
  15286. weight: math.unit(150, "lb"),
  15287. name: "Stomping",
  15288. image: {
  15289. source: "./media/characters/ian-corvid/stomping.svg",
  15290. extra: 76 / 72
  15291. }
  15292. },
  15293. sitting: {
  15294. height: math.unit(7 / 1.8, "feet"),
  15295. weight: math.unit(150, "lb"),
  15296. name: "Sitting",
  15297. image: {
  15298. source: "./media/characters/ian-corvid/sitting.svg",
  15299. extra: 1400 / 1269,
  15300. bottom: 0.15
  15301. }
  15302. },
  15303. },
  15304. [
  15305. {
  15306. name: "Tiny Microw",
  15307. height: math.unit(1, "inch")
  15308. },
  15309. {
  15310. name: "Microw",
  15311. height: math.unit(6, "inches")
  15312. },
  15313. {
  15314. name: "Crow",
  15315. height: math.unit(7 + 1 / 12, "feet"),
  15316. default: true
  15317. },
  15318. {
  15319. name: "Macrow",
  15320. height: math.unit(176, "feet")
  15321. },
  15322. ]
  15323. ))
  15324. characterMakers.push(() => makeCharacter(
  15325. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15326. {
  15327. front: {
  15328. height: math.unit(5 + 7 / 12, "feet"),
  15329. weight: math.unit(147, "lb"),
  15330. name: "Front",
  15331. image: {
  15332. source: "./media/characters/natalie-kellon/front.svg",
  15333. extra: 1214 / 1141,
  15334. bottom: 0.02
  15335. }
  15336. },
  15337. },
  15338. [
  15339. {
  15340. name: "Micro",
  15341. height: math.unit(1 / 16, "inch")
  15342. },
  15343. {
  15344. name: "Tiny",
  15345. height: math.unit(4, "inches")
  15346. },
  15347. {
  15348. name: "Normal",
  15349. height: math.unit(5 + 7 / 12, "feet"),
  15350. default: true
  15351. },
  15352. {
  15353. name: "Amazon",
  15354. height: math.unit(12, "feet")
  15355. },
  15356. {
  15357. name: "Giantess",
  15358. height: math.unit(160, "meters")
  15359. },
  15360. {
  15361. name: "Titaness",
  15362. height: math.unit(800, "meters")
  15363. },
  15364. ]
  15365. ))
  15366. characterMakers.push(() => makeCharacter(
  15367. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15368. {
  15369. front: {
  15370. height: math.unit(6, "feet"),
  15371. weight: math.unit(150, "lb"),
  15372. name: "Front",
  15373. image: {
  15374. source: "./media/characters/alluria/front.svg",
  15375. extra: 806 / 738,
  15376. bottom: 0.01
  15377. }
  15378. },
  15379. side: {
  15380. height: math.unit(6, "feet"),
  15381. weight: math.unit(150, "lb"),
  15382. name: "Side",
  15383. image: {
  15384. source: "./media/characters/alluria/side.svg",
  15385. extra: 800 / 750,
  15386. }
  15387. },
  15388. back: {
  15389. height: math.unit(6, "feet"),
  15390. weight: math.unit(150, "lb"),
  15391. name: "Back",
  15392. image: {
  15393. source: "./media/characters/alluria/back.svg",
  15394. extra: 806 / 738,
  15395. }
  15396. },
  15397. frontMaid: {
  15398. height: math.unit(6, "feet"),
  15399. weight: math.unit(150, "lb"),
  15400. name: "Front (Maid)",
  15401. image: {
  15402. source: "./media/characters/alluria/front-maid.svg",
  15403. extra: 806 / 738,
  15404. bottom: 0.01
  15405. }
  15406. },
  15407. sideMaid: {
  15408. height: math.unit(6, "feet"),
  15409. weight: math.unit(150, "lb"),
  15410. name: "Side (Maid)",
  15411. image: {
  15412. source: "./media/characters/alluria/side-maid.svg",
  15413. extra: 800 / 750,
  15414. bottom: 0.005
  15415. }
  15416. },
  15417. backMaid: {
  15418. height: math.unit(6, "feet"),
  15419. weight: math.unit(150, "lb"),
  15420. name: "Back (Maid)",
  15421. image: {
  15422. source: "./media/characters/alluria/back-maid.svg",
  15423. extra: 806 / 738,
  15424. }
  15425. },
  15426. },
  15427. [
  15428. {
  15429. name: "Micro",
  15430. height: math.unit(6, "inches"),
  15431. default: true
  15432. },
  15433. ]
  15434. ))
  15435. characterMakers.push(() => makeCharacter(
  15436. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15437. {
  15438. front: {
  15439. height: math.unit(6, "feet"),
  15440. weight: math.unit(150, "lb"),
  15441. name: "Front",
  15442. image: {
  15443. source: "./media/characters/kyle/front.svg",
  15444. extra: 1069 / 962,
  15445. bottom: 77.228 / 1727.45
  15446. }
  15447. },
  15448. },
  15449. [
  15450. {
  15451. name: "Macro",
  15452. height: math.unit(150, "feet"),
  15453. default: true
  15454. },
  15455. ]
  15456. ))
  15457. characterMakers.push(() => makeCharacter(
  15458. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15459. {
  15460. front: {
  15461. height: math.unit(6, "feet"),
  15462. weight: math.unit(300, "lb"),
  15463. name: "Front",
  15464. image: {
  15465. source: "./media/characters/duncan/front.svg",
  15466. extra: 1650 / 1482,
  15467. bottom: 0.05
  15468. }
  15469. },
  15470. },
  15471. [
  15472. {
  15473. name: "Macro",
  15474. height: math.unit(100, "feet"),
  15475. default: true
  15476. },
  15477. ]
  15478. ))
  15479. characterMakers.push(() => makeCharacter(
  15480. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15481. {
  15482. front: {
  15483. height: math.unit(5 + 4 / 12, "feet"),
  15484. weight: math.unit(220, "lb"),
  15485. name: "Front",
  15486. image: {
  15487. source: "./media/characters/memory/front.svg",
  15488. extra: 3641 / 3545,
  15489. bottom: 0.03
  15490. }
  15491. },
  15492. back: {
  15493. height: math.unit(5 + 4 / 12, "feet"),
  15494. weight: math.unit(220, "lb"),
  15495. name: "Back",
  15496. image: {
  15497. source: "./media/characters/memory/back.svg",
  15498. extra: 3641 / 3545,
  15499. bottom: 0.025
  15500. }
  15501. },
  15502. frontSkirt: {
  15503. height: math.unit(5 + 4 / 12, "feet"),
  15504. weight: math.unit(220, "lb"),
  15505. name: "Front (Skirt)",
  15506. image: {
  15507. source: "./media/characters/memory/front-skirt.svg",
  15508. extra: 3641 / 3545,
  15509. bottom: 0.03
  15510. }
  15511. },
  15512. frontDress: {
  15513. height: math.unit(5 + 4 / 12, "feet"),
  15514. weight: math.unit(220, "lb"),
  15515. name: "Front (Dress)",
  15516. image: {
  15517. source: "./media/characters/memory/front-dress.svg",
  15518. extra: 3641 / 3545,
  15519. bottom: 0.03
  15520. }
  15521. },
  15522. },
  15523. [
  15524. {
  15525. name: "Micro",
  15526. height: math.unit(6, "inches"),
  15527. default: true
  15528. },
  15529. {
  15530. name: "Normal",
  15531. height: math.unit(5 + 4 / 12, "feet")
  15532. },
  15533. ]
  15534. ))
  15535. characterMakers.push(() => makeCharacter(
  15536. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15537. {
  15538. front: {
  15539. height: math.unit(4 + 11 / 12, "feet"),
  15540. weight: math.unit(100, "lb"),
  15541. name: "Front",
  15542. image: {
  15543. source: "./media/characters/luno/front.svg",
  15544. extra: 1535 / 1487,
  15545. bottom: 0.03
  15546. }
  15547. },
  15548. },
  15549. [
  15550. {
  15551. name: "Micro",
  15552. height: math.unit(3, "inches")
  15553. },
  15554. {
  15555. name: "Normal",
  15556. height: math.unit(4 + 11 / 12, "feet"),
  15557. default: true
  15558. },
  15559. {
  15560. name: "Macro",
  15561. height: math.unit(300, "feet")
  15562. },
  15563. {
  15564. name: "Megamacro",
  15565. height: math.unit(700, "miles")
  15566. },
  15567. ]
  15568. ))
  15569. characterMakers.push(() => makeCharacter(
  15570. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15571. {
  15572. front: {
  15573. height: math.unit(6 + 2 / 12, "feet"),
  15574. weight: math.unit(170, "lb"),
  15575. name: "Front",
  15576. image: {
  15577. source: "./media/characters/jamesy/front.svg",
  15578. extra: 440 / 382,
  15579. bottom: 0.005
  15580. }
  15581. },
  15582. },
  15583. [
  15584. {
  15585. name: "Micro",
  15586. height: math.unit(3, "inches")
  15587. },
  15588. {
  15589. name: "Normal",
  15590. height: math.unit(6 + 2 / 12, "feet"),
  15591. default: true
  15592. },
  15593. {
  15594. name: "Macro",
  15595. height: math.unit(300, "feet")
  15596. },
  15597. {
  15598. name: "Megamacro",
  15599. height: math.unit(700, "miles")
  15600. },
  15601. ]
  15602. ))
  15603. characterMakers.push(() => makeCharacter(
  15604. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15605. {
  15606. front: {
  15607. height: math.unit(6, "feet"),
  15608. weight: math.unit(160, "lb"),
  15609. name: "Front",
  15610. image: {
  15611. source: "./media/characters/mark/front.svg",
  15612. extra: 3300 / 3100,
  15613. bottom: 136.42 / 3440.47
  15614. }
  15615. },
  15616. },
  15617. [
  15618. {
  15619. name: "Macro",
  15620. height: math.unit(120, "meters")
  15621. },
  15622. {
  15623. name: "Bigger Macro",
  15624. height: math.unit(350, "meters")
  15625. },
  15626. {
  15627. name: "Megamacro",
  15628. height: math.unit(8, "km"),
  15629. default: true
  15630. },
  15631. {
  15632. name: "Continental",
  15633. height: math.unit(4550, "km")
  15634. },
  15635. {
  15636. name: "Planetary",
  15637. height: math.unit(65000, "km")
  15638. },
  15639. ]
  15640. ))
  15641. characterMakers.push(() => makeCharacter(
  15642. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15643. {
  15644. front: {
  15645. height: math.unit(6, "feet"),
  15646. weight: math.unit(400, "lb"),
  15647. name: "Front",
  15648. image: {
  15649. source: "./media/characters/mac/front.svg",
  15650. extra: 1048 / 987.7,
  15651. bottom: 60 / 1107.6,
  15652. }
  15653. },
  15654. },
  15655. [
  15656. {
  15657. name: "Macro",
  15658. height: math.unit(500, "feet"),
  15659. default: true
  15660. },
  15661. ]
  15662. ))
  15663. characterMakers.push(() => makeCharacter(
  15664. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15665. {
  15666. front: {
  15667. height: math.unit(5 + 2 / 12, "feet"),
  15668. weight: math.unit(190, "lb"),
  15669. name: "Front",
  15670. image: {
  15671. source: "./media/characters/bari/front.svg",
  15672. extra: 3156 / 2880,
  15673. bottom: 0.03
  15674. }
  15675. },
  15676. back: {
  15677. height: math.unit(5 + 2 / 12, "feet"),
  15678. weight: math.unit(190, "lb"),
  15679. name: "Back",
  15680. image: {
  15681. source: "./media/characters/bari/back.svg",
  15682. extra: 3260 / 2834,
  15683. bottom: 0.025
  15684. }
  15685. },
  15686. frontPlush: {
  15687. height: math.unit(5 + 2 / 12, "feet"),
  15688. weight: math.unit(190, "lb"),
  15689. name: "Front (Plush)",
  15690. image: {
  15691. source: "./media/characters/bari/front-plush.svg",
  15692. extra: 1112 / 1061,
  15693. bottom: 0.002
  15694. }
  15695. },
  15696. },
  15697. [
  15698. {
  15699. name: "Micro",
  15700. height: math.unit(3, "inches")
  15701. },
  15702. {
  15703. name: "Normal",
  15704. height: math.unit(5 + 2 / 12, "feet"),
  15705. default: true
  15706. },
  15707. {
  15708. name: "Macro",
  15709. height: math.unit(20, "feet")
  15710. },
  15711. ]
  15712. ))
  15713. characterMakers.push(() => makeCharacter(
  15714. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15715. {
  15716. front: {
  15717. height: math.unit(6 + 1 / 12, "feet"),
  15718. weight: math.unit(275, "lb"),
  15719. name: "Front",
  15720. image: {
  15721. source: "./media/characters/hunter-misha-raven/front.svg"
  15722. }
  15723. },
  15724. },
  15725. [
  15726. {
  15727. name: "Mortal",
  15728. height: math.unit(6 + 1 / 12, "feet")
  15729. },
  15730. {
  15731. name: "Divine",
  15732. height: math.unit(1.12134e34, "parsecs"),
  15733. default: true
  15734. },
  15735. ]
  15736. ))
  15737. characterMakers.push(() => makeCharacter(
  15738. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15739. {
  15740. front: {
  15741. height: math.unit(6 + 3 / 12, "feet"),
  15742. weight: math.unit(220, "lb"),
  15743. name: "Front",
  15744. image: {
  15745. source: "./media/characters/max-calore/front.svg",
  15746. extra: 1700 / 1648,
  15747. bottom: 0.01
  15748. }
  15749. },
  15750. back: {
  15751. height: math.unit(6 + 3 / 12, "feet"),
  15752. weight: math.unit(220, "lb"),
  15753. name: "Back",
  15754. image: {
  15755. source: "./media/characters/max-calore/back.svg",
  15756. extra: 1700 / 1648,
  15757. bottom: 0.01
  15758. }
  15759. },
  15760. },
  15761. [
  15762. {
  15763. name: "Normal",
  15764. height: math.unit(6 + 3 / 12, "feet"),
  15765. default: true
  15766. },
  15767. ]
  15768. ))
  15769. characterMakers.push(() => makeCharacter(
  15770. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15771. {
  15772. side: {
  15773. height: math.unit(2 + 8 / 12, "feet"),
  15774. weight: math.unit(99, "lb"),
  15775. name: "Side",
  15776. image: {
  15777. source: "./media/characters/aspen/side.svg",
  15778. extra: 152 / 138,
  15779. bottom: 0.032
  15780. }
  15781. },
  15782. },
  15783. [
  15784. {
  15785. name: "Normal",
  15786. height: math.unit(2 + 8 / 12, "feet"),
  15787. default: true
  15788. },
  15789. ]
  15790. ))
  15791. characterMakers.push(() => makeCharacter(
  15792. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15793. {
  15794. side: {
  15795. height: math.unit(3 + 2 / 12, "feet"),
  15796. weight: math.unit(224, "lb"),
  15797. name: "Side",
  15798. image: {
  15799. source: "./media/characters/sheila-feral-wolf/side.svg",
  15800. extra: 179 / 166,
  15801. bottom: 0.03
  15802. }
  15803. },
  15804. },
  15805. [
  15806. {
  15807. name: "Normal",
  15808. height: math.unit(3 + 2 / 12, "feet"),
  15809. default: true
  15810. },
  15811. ]
  15812. ))
  15813. characterMakers.push(() => makeCharacter(
  15814. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15815. {
  15816. side: {
  15817. height: math.unit(1 + 9 / 12, "feet"),
  15818. weight: math.unit(38, "lb"),
  15819. name: "Side",
  15820. image: {
  15821. source: "./media/characters/michelle/side.svg",
  15822. extra: 147 / 136.7,
  15823. bottom: 0.03
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Normal",
  15830. height: math.unit(1 + 9 / 12, "feet"),
  15831. default: true
  15832. },
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15837. {
  15838. front: {
  15839. height: math.unit(1 + 1 / 12, "feet"),
  15840. weight: math.unit(18, "lb"),
  15841. name: "Front",
  15842. image: {
  15843. source: "./media/characters/nino/front.svg"
  15844. }
  15845. },
  15846. },
  15847. [
  15848. {
  15849. name: "Normal",
  15850. height: math.unit(1 + 1 / 12, "feet"),
  15851. default: true
  15852. },
  15853. ]
  15854. ))
  15855. characterMakers.push(() => makeCharacter(
  15856. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15857. {
  15858. front: {
  15859. height: math.unit(1, "feet"),
  15860. weight: math.unit(16, "lb"),
  15861. name: "Front",
  15862. image: {
  15863. source: "./media/characters/viola/front.svg"
  15864. }
  15865. },
  15866. },
  15867. [
  15868. {
  15869. name: "Normal",
  15870. height: math.unit(1, "feet"),
  15871. default: true
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15877. {
  15878. front: {
  15879. height: math.unit(6 + 5 / 12, "feet"),
  15880. weight: math.unit(580, "lb"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/atlas/front.svg",
  15884. extra: 298.5 / 290,
  15885. bottom: 0.015
  15886. }
  15887. },
  15888. },
  15889. [
  15890. {
  15891. name: "Normal",
  15892. height: math.unit(6 + 5 / 12, "feet"),
  15893. default: true
  15894. },
  15895. ]
  15896. ))
  15897. characterMakers.push(() => makeCharacter(
  15898. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15899. {
  15900. side: {
  15901. height: math.unit(1 + 10 / 12, "feet"),
  15902. weight: math.unit(25, "lb"),
  15903. name: "Side",
  15904. image: {
  15905. source: "./media/characters/davy/side.svg",
  15906. extra: 200 / 170,
  15907. bottom: 0.01
  15908. }
  15909. },
  15910. },
  15911. [
  15912. {
  15913. name: "Normal",
  15914. height: math.unit(1 + 10 / 12, "feet"),
  15915. default: true
  15916. },
  15917. ]
  15918. ))
  15919. characterMakers.push(() => makeCharacter(
  15920. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15921. {
  15922. side: {
  15923. height: math.unit(4 + 8 / 12, "feet"),
  15924. weight: math.unit(166, "lb"),
  15925. name: "Side",
  15926. image: {
  15927. source: "./media/characters/fiona/side.svg",
  15928. extra: 232 / 220,
  15929. bottom: 0.03
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Normal",
  15936. height: math.unit(4 + 8 / 12, "feet"),
  15937. default: true
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15943. {
  15944. front: {
  15945. height: math.unit(2, "feet"),
  15946. weight: math.unit(62, "lb"),
  15947. name: "Front",
  15948. image: {
  15949. source: "./media/characters/lyla/front.svg",
  15950. bottom: 0.1
  15951. }
  15952. },
  15953. },
  15954. [
  15955. {
  15956. name: "Normal",
  15957. height: math.unit(2, "feet"),
  15958. default: true
  15959. },
  15960. ]
  15961. ))
  15962. characterMakers.push(() => makeCharacter(
  15963. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  15964. {
  15965. side: {
  15966. height: math.unit(1.8, "feet"),
  15967. weight: math.unit(44, "lb"),
  15968. name: "Side",
  15969. image: {
  15970. source: "./media/characters/perseus/side.svg",
  15971. bottom: 0.21
  15972. }
  15973. },
  15974. },
  15975. [
  15976. {
  15977. name: "Normal",
  15978. height: math.unit(1.8, "feet"),
  15979. default: true
  15980. },
  15981. ]
  15982. ))
  15983. characterMakers.push(() => makeCharacter(
  15984. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  15985. {
  15986. side: {
  15987. height: math.unit(4 + 2 / 12, "feet"),
  15988. weight: math.unit(20, "lb"),
  15989. name: "Side",
  15990. image: {
  15991. source: "./media/characters/remus/side.svg"
  15992. }
  15993. },
  15994. },
  15995. [
  15996. {
  15997. name: "Normal",
  15998. height: math.unit(4 + 2 / 12, "feet"),
  15999. default: true
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(4 + 11 / 12, "feet"),
  16008. weight: math.unit(114, "lb"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/raf/front.svg",
  16012. bottom: 0.01
  16013. }
  16014. },
  16015. side: {
  16016. height: math.unit(4 + 11 / 12, "feet"),
  16017. weight: math.unit(114, "lb"),
  16018. name: "Side",
  16019. image: {
  16020. source: "./media/characters/raf/side.svg",
  16021. bottom: 0.005
  16022. }
  16023. },
  16024. },
  16025. [
  16026. {
  16027. name: "Micro",
  16028. height: math.unit(2, "inches")
  16029. },
  16030. {
  16031. name: "Normal",
  16032. height: math.unit(4 + 11 / 12, "feet"),
  16033. default: true
  16034. },
  16035. {
  16036. name: "Macro",
  16037. height: math.unit(70, "feet")
  16038. },
  16039. ]
  16040. ))
  16041. characterMakers.push(() => makeCharacter(
  16042. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16043. {
  16044. front: {
  16045. height: math.unit(1.5, "meters"),
  16046. weight: math.unit(68, "kg"),
  16047. name: "Front",
  16048. image: {
  16049. source: "./media/characters/liam-einarr/front.svg",
  16050. extra: 2822 / 2666
  16051. }
  16052. },
  16053. back: {
  16054. height: math.unit(1.5, "meters"),
  16055. weight: math.unit(68, "kg"),
  16056. name: "Back",
  16057. image: {
  16058. source: "./media/characters/liam-einarr/back.svg",
  16059. extra: 2822 / 2666,
  16060. bottom: 0.015
  16061. }
  16062. },
  16063. },
  16064. [
  16065. {
  16066. name: "Normal",
  16067. height: math.unit(1.5, "meters"),
  16068. default: true
  16069. },
  16070. {
  16071. name: "Macro",
  16072. height: math.unit(150, "meters")
  16073. },
  16074. {
  16075. name: "Megamacro",
  16076. height: math.unit(35, "km")
  16077. },
  16078. ]
  16079. ))
  16080. characterMakers.push(() => makeCharacter(
  16081. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16082. {
  16083. front: {
  16084. height: math.unit(6, "feet"),
  16085. weight: math.unit(75, "kg"),
  16086. name: "Front",
  16087. image: {
  16088. source: "./media/characters/linda/front.svg",
  16089. extra: 930 / 874,
  16090. bottom: 0.004
  16091. }
  16092. },
  16093. },
  16094. [
  16095. {
  16096. name: "Normal",
  16097. height: math.unit(6, "feet"),
  16098. default: true
  16099. },
  16100. ]
  16101. ))
  16102. characterMakers.push(() => makeCharacter(
  16103. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16104. {
  16105. front: {
  16106. height: math.unit(6 + 8 / 12, "feet"),
  16107. weight: math.unit(220, "lb"),
  16108. name: "Front",
  16109. image: {
  16110. source: "./media/characters/caylex/front.svg",
  16111. extra: 821 / 772,
  16112. bottom: 0.07
  16113. }
  16114. },
  16115. back: {
  16116. height: math.unit(6 + 8 / 12, "feet"),
  16117. weight: math.unit(220, "lb"),
  16118. name: "Back",
  16119. image: {
  16120. source: "./media/characters/caylex/back.svg",
  16121. extra: 821 / 772,
  16122. bottom: 0.022
  16123. }
  16124. },
  16125. hand: {
  16126. height: math.unit(1.25, "feet"),
  16127. name: "Hand",
  16128. image: {
  16129. source: "./media/characters/caylex/hand.svg"
  16130. }
  16131. },
  16132. foot: {
  16133. height: math.unit(1.6, "feet"),
  16134. name: "Foot",
  16135. image: {
  16136. source: "./media/characters/caylex/foot.svg"
  16137. }
  16138. },
  16139. armored: {
  16140. height: math.unit(6 + 8 / 12, "feet"),
  16141. weight: math.unit(250, "lb"),
  16142. name: "Armored",
  16143. image: {
  16144. source: "./media/characters/caylex/armored.svg",
  16145. extra: 1420 / 1310,
  16146. bottom: 0.045
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Normal",
  16153. height: math.unit(6 + 8 / 12, "feet"),
  16154. default: true
  16155. },
  16156. {
  16157. name: "Normal+",
  16158. height: math.unit(12, "feet")
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(7 + 6 / 12, "feet"),
  16167. weight: math.unit(288, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/alana/front.svg",
  16171. extra: 679 / 653,
  16172. bottom: 22.5 / 701
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Normal",
  16179. height: math.unit(7 + 6 / 12, "feet")
  16180. },
  16181. {
  16182. name: "Large",
  16183. height: math.unit(50, "feet")
  16184. },
  16185. {
  16186. name: "Macro",
  16187. height: math.unit(100, "feet"),
  16188. default: true
  16189. },
  16190. {
  16191. name: "Macro+",
  16192. height: math.unit(200, "feet")
  16193. },
  16194. ]
  16195. ))
  16196. characterMakers.push(() => makeCharacter(
  16197. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16198. {
  16199. front: {
  16200. height: math.unit(6 + 1 / 12, "feet"),
  16201. weight: math.unit(210, "lb"),
  16202. name: "Front",
  16203. image: {
  16204. source: "./media/characters/hasani/front.svg",
  16205. extra: 244 / 232,
  16206. bottom: 0.01
  16207. }
  16208. },
  16209. back: {
  16210. height: math.unit(6 + 1 / 12, "feet"),
  16211. weight: math.unit(210, "lb"),
  16212. name: "Back",
  16213. image: {
  16214. source: "./media/characters/hasani/back.svg",
  16215. extra: 244 / 232,
  16216. bottom: 0.01
  16217. }
  16218. },
  16219. },
  16220. [
  16221. {
  16222. name: "Normal",
  16223. height: math.unit(6 + 1 / 12, "feet")
  16224. },
  16225. {
  16226. name: "Macro",
  16227. height: math.unit(175, "feet"),
  16228. default: true
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16234. {
  16235. front: {
  16236. height: math.unit(1.82, "meters"),
  16237. weight: math.unit(140, "lb"),
  16238. name: "Front",
  16239. image: {
  16240. source: "./media/characters/nita/front.svg",
  16241. extra: 2473 / 2363,
  16242. bottom: 0.01
  16243. }
  16244. },
  16245. },
  16246. [
  16247. {
  16248. name: "Normal",
  16249. height: math.unit(1.82, "m")
  16250. },
  16251. {
  16252. name: "Macro",
  16253. height: math.unit(300, "m")
  16254. },
  16255. {
  16256. name: "Mistake Canon",
  16257. height: math.unit(0.5, "miles"),
  16258. default: true
  16259. },
  16260. {
  16261. name: "Big Mistake",
  16262. height: math.unit(13, "miles")
  16263. },
  16264. {
  16265. name: "Playing God",
  16266. height: math.unit(2450, "miles")
  16267. },
  16268. ]
  16269. ))
  16270. characterMakers.push(() => makeCharacter(
  16271. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16272. {
  16273. front: {
  16274. height: math.unit(4, "feet"),
  16275. weight: math.unit(120, "lb"),
  16276. name: "Front",
  16277. image: {
  16278. source: "./media/characters/shiriko/front.svg",
  16279. extra: 195 / 188
  16280. }
  16281. },
  16282. },
  16283. [
  16284. {
  16285. name: "Normal",
  16286. height: math.unit(4, "feet"),
  16287. default: true
  16288. },
  16289. ]
  16290. ))
  16291. characterMakers.push(() => makeCharacter(
  16292. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16293. {
  16294. front: {
  16295. height: math.unit(6, "feet"),
  16296. name: "front",
  16297. image: {
  16298. source: "./media/characters/deja/front.svg",
  16299. extra: 926 / 840,
  16300. bottom: 0.07
  16301. }
  16302. },
  16303. },
  16304. [
  16305. {
  16306. name: "Planck Length",
  16307. height: math.unit(1.6e-35, "meters")
  16308. },
  16309. {
  16310. name: "Normal",
  16311. height: math.unit(30.48, "meters"),
  16312. default: true
  16313. },
  16314. {
  16315. name: "Universal",
  16316. height: math.unit(8.8e26, "meters")
  16317. },
  16318. ]
  16319. ))
  16320. characterMakers.push(() => makeCharacter(
  16321. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16322. {
  16323. side: {
  16324. height: math.unit(8, "feet"),
  16325. weight: math.unit(6300, "lb"),
  16326. name: "Side",
  16327. image: {
  16328. source: "./media/characters/anima/side.svg",
  16329. bottom: 0.035
  16330. }
  16331. },
  16332. },
  16333. [
  16334. {
  16335. name: "Normal",
  16336. height: math.unit(8, "feet"),
  16337. default: true
  16338. },
  16339. ]
  16340. ))
  16341. characterMakers.push(() => makeCharacter(
  16342. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16343. {
  16344. front: {
  16345. height: math.unit(8, "feet"),
  16346. weight: math.unit(350, "lb"),
  16347. name: "Front",
  16348. image: {
  16349. source: "./media/characters/bianca/front.svg",
  16350. extra: 234 / 225,
  16351. bottom: 0.03
  16352. }
  16353. },
  16354. },
  16355. [
  16356. {
  16357. name: "Normal",
  16358. height: math.unit(8, "feet"),
  16359. default: true
  16360. },
  16361. ]
  16362. ))
  16363. characterMakers.push(() => makeCharacter(
  16364. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16365. {
  16366. front: {
  16367. height: math.unit(6, "feet"),
  16368. weight: math.unit(150, "lb"),
  16369. name: "Front",
  16370. image: {
  16371. source: "./media/characters/adinia/front.svg",
  16372. extra: 1845 / 1672,
  16373. bottom: 0.02
  16374. }
  16375. },
  16376. back: {
  16377. height: math.unit(6, "feet"),
  16378. weight: math.unit(150, "lb"),
  16379. name: "Back",
  16380. image: {
  16381. source: "./media/characters/adinia/back.svg",
  16382. extra: 1845 / 1672,
  16383. bottom: 0.002
  16384. }
  16385. },
  16386. },
  16387. [
  16388. {
  16389. name: "Normal",
  16390. height: math.unit(11 + 5 / 12, "feet"),
  16391. default: true
  16392. },
  16393. ]
  16394. ))
  16395. characterMakers.push(() => makeCharacter(
  16396. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16397. {
  16398. front: {
  16399. height: math.unit(3, "meters"),
  16400. weight: math.unit(200, "kg"),
  16401. name: "Front",
  16402. image: {
  16403. source: "./media/characters/lykasa/front.svg",
  16404. extra: 1076 / 976,
  16405. bottom: 0.06
  16406. }
  16407. },
  16408. },
  16409. [
  16410. {
  16411. name: "Normal",
  16412. height: math.unit(3, "meters")
  16413. },
  16414. {
  16415. name: "Kaiju",
  16416. height: math.unit(120, "meters"),
  16417. default: true
  16418. },
  16419. {
  16420. name: "Mega Kaiju",
  16421. height: math.unit(240, "km")
  16422. },
  16423. {
  16424. name: "Giga Kaiju",
  16425. height: math.unit(400, "megameters")
  16426. },
  16427. {
  16428. name: "Tera Kaiju",
  16429. height: math.unit(800, "gigameters")
  16430. },
  16431. {
  16432. name: "Kaiju Dragon Goddess",
  16433. height: math.unit(26, "zettaparsecs")
  16434. },
  16435. ]
  16436. ))
  16437. characterMakers.push(() => makeCharacter(
  16438. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16439. {
  16440. side: {
  16441. height: math.unit(283 / 124 * 6, "feet"),
  16442. weight: math.unit(35000, "lb"),
  16443. name: "Side",
  16444. image: {
  16445. source: "./media/characters/malfaren/side.svg",
  16446. extra: 2500 / 1010,
  16447. bottom: 0.01
  16448. }
  16449. },
  16450. front: {
  16451. height: math.unit(22.36, "feet"),
  16452. weight: math.unit(35000, "lb"),
  16453. name: "Front",
  16454. image: {
  16455. source: "./media/characters/malfaren/front.svg",
  16456. extra: 1631 / 1476,
  16457. bottom: 0.01
  16458. }
  16459. },
  16460. maw: {
  16461. height: math.unit(6.9, "feet"),
  16462. name: "Maw",
  16463. image: {
  16464. source: "./media/characters/malfaren/maw.svg"
  16465. }
  16466. },
  16467. },
  16468. [
  16469. {
  16470. name: "Big",
  16471. height: math.unit(283 / 162 * 6, "feet"),
  16472. },
  16473. {
  16474. name: "Bigger",
  16475. height: math.unit(283 / 124 * 6, "feet")
  16476. },
  16477. {
  16478. name: "Massive",
  16479. height: math.unit(283 / 92 * 6, "feet"),
  16480. default: true
  16481. },
  16482. {
  16483. name: "👀💦",
  16484. height: math.unit(283 / 73 * 6, "feet"),
  16485. },
  16486. ]
  16487. ))
  16488. characterMakers.push(() => makeCharacter(
  16489. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16490. {
  16491. front: {
  16492. height: math.unit(1.7, "m"),
  16493. weight: math.unit(70, "kg"),
  16494. name: "Front",
  16495. image: {
  16496. source: "./media/characters/kernel/front.svg",
  16497. extra: 222 / 210,
  16498. bottom: 0.007
  16499. }
  16500. },
  16501. },
  16502. [
  16503. {
  16504. name: "Nano",
  16505. height: math.unit(17, "micrometers")
  16506. },
  16507. {
  16508. name: "Micro",
  16509. height: math.unit(1.7, "mm")
  16510. },
  16511. {
  16512. name: "Small",
  16513. height: math.unit(1.7, "cm")
  16514. },
  16515. {
  16516. name: "Normal",
  16517. height: math.unit(1.7, "m"),
  16518. default: true
  16519. },
  16520. ]
  16521. ))
  16522. characterMakers.push(() => makeCharacter(
  16523. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16524. {
  16525. front: {
  16526. height: math.unit(1.75, "meters"),
  16527. weight: math.unit(65, "kg"),
  16528. name: "Front",
  16529. image: {
  16530. source: "./media/characters/jayne-folest/front.svg",
  16531. extra: 2115 / 2007,
  16532. bottom: 0.02
  16533. }
  16534. },
  16535. back: {
  16536. height: math.unit(1.75, "meters"),
  16537. weight: math.unit(65, "kg"),
  16538. name: "Back",
  16539. image: {
  16540. source: "./media/characters/jayne-folest/back.svg",
  16541. extra: 2115 / 2007,
  16542. bottom: 0.005
  16543. }
  16544. },
  16545. frontClothed: {
  16546. height: math.unit(1.75, "meters"),
  16547. weight: math.unit(65, "kg"),
  16548. name: "Front (Clothed)",
  16549. image: {
  16550. source: "./media/characters/jayne-folest/front-clothed.svg",
  16551. extra: 2115 / 2007,
  16552. bottom: 0.035
  16553. }
  16554. },
  16555. hand: {
  16556. height: math.unit(1 / 1.260, "feet"),
  16557. name: "Hand",
  16558. image: {
  16559. source: "./media/characters/jayne-folest/hand.svg"
  16560. }
  16561. },
  16562. foot: {
  16563. height: math.unit(1 / 0.918, "feet"),
  16564. name: "Foot",
  16565. image: {
  16566. source: "./media/characters/jayne-folest/foot.svg"
  16567. }
  16568. },
  16569. },
  16570. [
  16571. {
  16572. name: "Micro",
  16573. height: math.unit(4, "cm")
  16574. },
  16575. {
  16576. name: "Normal",
  16577. height: math.unit(1.75, "meters")
  16578. },
  16579. {
  16580. name: "Macro",
  16581. height: math.unit(47.5, "meters"),
  16582. default: true
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16588. {
  16589. front: {
  16590. height: math.unit(180, "cm"),
  16591. weight: math.unit(70, "kg"),
  16592. name: "Front",
  16593. image: {
  16594. source: "./media/characters/algier/front.svg",
  16595. extra: 596 / 572,
  16596. bottom: 0.04
  16597. }
  16598. },
  16599. back: {
  16600. height: math.unit(180, "cm"),
  16601. weight: math.unit(70, "kg"),
  16602. name: "Back",
  16603. image: {
  16604. source: "./media/characters/algier/back.svg",
  16605. extra: 596 / 572,
  16606. bottom: 0.025
  16607. }
  16608. },
  16609. frontdressed: {
  16610. height: math.unit(180, "cm"),
  16611. weight: math.unit(150, "kg"),
  16612. name: "Front-dressed",
  16613. image: {
  16614. source: "./media/characters/algier/front-dressed.svg",
  16615. extra: 596 / 572,
  16616. bottom: 0.038
  16617. }
  16618. },
  16619. },
  16620. [
  16621. {
  16622. name: "Micro",
  16623. height: math.unit(5, "cm")
  16624. },
  16625. {
  16626. name: "Normal",
  16627. height: math.unit(180, "cm"),
  16628. default: true
  16629. },
  16630. {
  16631. name: "Macro",
  16632. height: math.unit(64, "m")
  16633. },
  16634. ]
  16635. ))
  16636. characterMakers.push(() => makeCharacter(
  16637. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16638. {
  16639. upright: {
  16640. height: math.unit(7, "feet"),
  16641. weight: math.unit(300, "lb"),
  16642. name: "Upright",
  16643. image: {
  16644. source: "./media/characters/pretzel/upright.svg",
  16645. extra: 534 / 522,
  16646. bottom: 0.065
  16647. }
  16648. },
  16649. sprawling: {
  16650. height: math.unit(3.75, "feet"),
  16651. weight: math.unit(300, "lb"),
  16652. name: "Sprawling",
  16653. image: {
  16654. source: "./media/characters/pretzel/sprawling.svg",
  16655. extra: 314 / 281,
  16656. bottom: 0.1
  16657. }
  16658. },
  16659. tongue: {
  16660. height: math.unit(2, "feet"),
  16661. name: "Tongue",
  16662. image: {
  16663. source: "./media/characters/pretzel/tongue.svg"
  16664. }
  16665. },
  16666. },
  16667. [
  16668. {
  16669. name: "Normal",
  16670. height: math.unit(7, "feet"),
  16671. default: true
  16672. },
  16673. {
  16674. name: "Oversized",
  16675. height: math.unit(15, "feet")
  16676. },
  16677. {
  16678. name: "Huge",
  16679. height: math.unit(30, "feet")
  16680. },
  16681. {
  16682. name: "Macro",
  16683. height: math.unit(250, "feet")
  16684. },
  16685. ]
  16686. ))
  16687. characterMakers.push(() => makeCharacter(
  16688. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16689. {
  16690. sideFront: {
  16691. height: math.unit(5 + 2 / 12, "feet"),
  16692. weight: math.unit(120, "lb"),
  16693. name: "Front Side",
  16694. image: {
  16695. source: "./media/characters/roxi/side-front.svg",
  16696. extra: 2924 / 2717,
  16697. bottom: 0.08
  16698. }
  16699. },
  16700. sideBack: {
  16701. height: math.unit(5 + 2 / 12, "feet"),
  16702. weight: math.unit(120, "lb"),
  16703. name: "Back Side",
  16704. image: {
  16705. source: "./media/characters/roxi/side-back.svg",
  16706. extra: 2904 / 2693,
  16707. bottom: 0.06
  16708. }
  16709. },
  16710. front: {
  16711. height: math.unit(5 + 2 / 12, "feet"),
  16712. weight: math.unit(120, "lb"),
  16713. name: "Front",
  16714. image: {
  16715. source: "./media/characters/roxi/front.svg",
  16716. extra: 2028 / 1907,
  16717. bottom: 0.01
  16718. }
  16719. },
  16720. frontAlt: {
  16721. height: math.unit(5 + 2 / 12, "feet"),
  16722. weight: math.unit(120, "lb"),
  16723. name: "Front (Alt)",
  16724. image: {
  16725. source: "./media/characters/roxi/front-alt.svg",
  16726. extra: 1828 / 1798,
  16727. bottom: 0.01
  16728. }
  16729. },
  16730. sitting: {
  16731. height: math.unit(2.8, "feet"),
  16732. weight: math.unit(120, "lb"),
  16733. name: "Sitting",
  16734. image: {
  16735. source: "./media/characters/roxi/sitting.svg",
  16736. extra: 2660 / 2462,
  16737. bottom: 0.1
  16738. }
  16739. },
  16740. },
  16741. [
  16742. {
  16743. name: "Normal",
  16744. height: math.unit(5 + 2 / 12, "feet"),
  16745. default: true
  16746. },
  16747. ]
  16748. ))
  16749. characterMakers.push(() => makeCharacter(
  16750. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16751. {
  16752. side: {
  16753. height: math.unit(55, "feet"),
  16754. weight: math.unit(153, "tons"),
  16755. name: "Side",
  16756. image: {
  16757. source: "./media/characters/shadow/side.svg",
  16758. extra: 701 / 628,
  16759. bottom: 0.02
  16760. }
  16761. },
  16762. flying: {
  16763. height: math.unit(145, "feet"),
  16764. weight: math.unit(153, "tons"),
  16765. name: "Flying",
  16766. image: {
  16767. source: "./media/characters/shadow/flying.svg"
  16768. }
  16769. },
  16770. },
  16771. [
  16772. {
  16773. name: "Normal",
  16774. height: math.unit(55, "feet"),
  16775. default: true
  16776. },
  16777. ]
  16778. ))
  16779. characterMakers.push(() => makeCharacter(
  16780. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16781. {
  16782. front: {
  16783. height: math.unit(6, "feet"),
  16784. weight: math.unit(200, "lb"),
  16785. name: "Front",
  16786. image: {
  16787. source: "./media/characters/marcie/front.svg",
  16788. extra: 960 / 876,
  16789. bottom: 58 / 1017.87
  16790. }
  16791. },
  16792. },
  16793. [
  16794. {
  16795. name: "Macro",
  16796. height: math.unit(1, "mile"),
  16797. default: true
  16798. },
  16799. ]
  16800. ))
  16801. characterMakers.push(() => makeCharacter(
  16802. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16803. {
  16804. front: {
  16805. height: math.unit(7, "feet"),
  16806. weight: math.unit(200, "lb"),
  16807. name: "Front",
  16808. image: {
  16809. source: "./media/characters/kachina/front.svg",
  16810. extra: 1290.68 / 1119,
  16811. bottom: 36.5 / 1327.18
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Normal",
  16818. height: math.unit(7, "feet"),
  16819. default: true
  16820. },
  16821. ]
  16822. ))
  16823. characterMakers.push(() => makeCharacter(
  16824. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16825. {
  16826. looking: {
  16827. height: math.unit(2, "meters"),
  16828. weight: math.unit(300, "kg"),
  16829. name: "Looking",
  16830. image: {
  16831. source: "./media/characters/kash/looking.svg",
  16832. extra: 474 / 344,
  16833. bottom: 0.03
  16834. }
  16835. },
  16836. side: {
  16837. height: math.unit(2, "meters"),
  16838. weight: math.unit(300, "kg"),
  16839. name: "Side",
  16840. image: {
  16841. source: "./media/characters/kash/side.svg",
  16842. extra: 302 / 251,
  16843. bottom: 0.03
  16844. }
  16845. },
  16846. front: {
  16847. height: math.unit(2, "meters"),
  16848. weight: math.unit(300, "kg"),
  16849. name: "Front",
  16850. image: {
  16851. source: "./media/characters/kash/front.svg",
  16852. extra: 495 / 360,
  16853. bottom: 0.015
  16854. }
  16855. },
  16856. },
  16857. [
  16858. {
  16859. name: "Normal",
  16860. height: math.unit(2, "meters"),
  16861. default: true
  16862. },
  16863. {
  16864. name: "Big",
  16865. height: math.unit(3, "meters")
  16866. },
  16867. {
  16868. name: "Large",
  16869. height: math.unit(5, "meters")
  16870. },
  16871. ]
  16872. ))
  16873. characterMakers.push(() => makeCharacter(
  16874. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16875. {
  16876. feeding: {
  16877. height: math.unit(6.7, "feet"),
  16878. weight: math.unit(350, "lb"),
  16879. name: "Feeding",
  16880. image: {
  16881. source: "./media/characters/lalim/feeding.svg",
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Normal",
  16888. height: math.unit(6.7, "feet"),
  16889. default: true
  16890. },
  16891. ]
  16892. ))
  16893. characterMakers.push(() => makeCharacter(
  16894. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16895. {
  16896. front: {
  16897. height: math.unit(9.5, "feet"),
  16898. weight: math.unit(600, "lb"),
  16899. name: "Front",
  16900. image: {
  16901. source: "./media/characters/de'vout/front.svg",
  16902. extra: 1443 / 1328,
  16903. bottom: 0.025
  16904. }
  16905. },
  16906. back: {
  16907. height: math.unit(9.5, "feet"),
  16908. weight: math.unit(600, "lb"),
  16909. name: "Back",
  16910. image: {
  16911. source: "./media/characters/de'vout/back.svg",
  16912. extra: 1443 / 1328
  16913. }
  16914. },
  16915. frontDressed: {
  16916. height: math.unit(9.5, "feet"),
  16917. weight: math.unit(600, "lb"),
  16918. name: "Front (Dressed",
  16919. image: {
  16920. source: "./media/characters/de'vout/front-dressed.svg",
  16921. extra: 1443 / 1328,
  16922. bottom: 0.025
  16923. }
  16924. },
  16925. backDressed: {
  16926. height: math.unit(9.5, "feet"),
  16927. weight: math.unit(600, "lb"),
  16928. name: "Back (Dressed",
  16929. image: {
  16930. source: "./media/characters/de'vout/back-dressed.svg",
  16931. extra: 1443 / 1328
  16932. }
  16933. },
  16934. },
  16935. [
  16936. {
  16937. name: "Normal",
  16938. height: math.unit(9.5, "feet"),
  16939. default: true
  16940. },
  16941. ]
  16942. ))
  16943. characterMakers.push(() => makeCharacter(
  16944. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16945. {
  16946. front: {
  16947. height: math.unit(8, "feet"),
  16948. weight: math.unit(225, "lb"),
  16949. name: "Front",
  16950. image: {
  16951. source: "./media/characters/talana/front.svg",
  16952. extra: 1410 / 1300,
  16953. bottom: 0.015
  16954. }
  16955. },
  16956. frontDressed: {
  16957. height: math.unit(8, "feet"),
  16958. weight: math.unit(225, "lb"),
  16959. name: "Front (Dressed",
  16960. image: {
  16961. source: "./media/characters/talana/front-dressed.svg",
  16962. extra: 1410 / 1300,
  16963. bottom: 0.015
  16964. }
  16965. },
  16966. },
  16967. [
  16968. {
  16969. name: "Normal",
  16970. height: math.unit(8, "feet"),
  16971. default: true
  16972. },
  16973. ]
  16974. ))
  16975. characterMakers.push(() => makeCharacter(
  16976. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  16977. {
  16978. side: {
  16979. height: math.unit(7.2, "feet"),
  16980. weight: math.unit(150, "lb"),
  16981. name: "Side",
  16982. image: {
  16983. source: "./media/characters/xeauvok/side.svg",
  16984. extra: 1975 / 1523,
  16985. bottom: 0.07
  16986. }
  16987. },
  16988. },
  16989. [
  16990. {
  16991. name: "Normal",
  16992. height: math.unit(7.2, "feet"),
  16993. default: true
  16994. },
  16995. ]
  16996. ))
  16997. characterMakers.push(() => makeCharacter(
  16998. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  16999. {
  17000. side: {
  17001. height: math.unit(10, "feet"),
  17002. weight: math.unit(900, "kg"),
  17003. name: "Side",
  17004. image: {
  17005. source: "./media/characters/zara/side.svg",
  17006. extra: 504 / 498
  17007. }
  17008. },
  17009. },
  17010. [
  17011. {
  17012. name: "Normal",
  17013. height: math.unit(10, "feet"),
  17014. default: true
  17015. },
  17016. ]
  17017. ))
  17018. characterMakers.push(() => makeCharacter(
  17019. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17020. {
  17021. side: {
  17022. height: math.unit(6, "feet"),
  17023. weight: math.unit(150, "lb"),
  17024. name: "Side",
  17025. image: {
  17026. source: "./media/characters/richard-dragon/side.svg",
  17027. extra: 845 / 340,
  17028. bottom: 0.017
  17029. }
  17030. },
  17031. maw: {
  17032. height: math.unit(2.97, "feet"),
  17033. name: "Maw",
  17034. image: {
  17035. source: "./media/characters/richard-dragon/maw.svg"
  17036. }
  17037. },
  17038. },
  17039. [
  17040. ]
  17041. ))
  17042. characterMakers.push(() => makeCharacter(
  17043. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17044. {
  17045. front: {
  17046. height: math.unit(4, "feet"),
  17047. weight: math.unit(100, "lb"),
  17048. name: "Front",
  17049. image: {
  17050. source: "./media/characters/richard-smeargle/front.svg",
  17051. extra: 2952 / 2820,
  17052. bottom: 0.028
  17053. }
  17054. },
  17055. },
  17056. [
  17057. {
  17058. name: "Normal",
  17059. height: math.unit(4, "feet"),
  17060. default: true
  17061. },
  17062. {
  17063. name: "Dynamax",
  17064. height: math.unit(20, "meters")
  17065. },
  17066. ]
  17067. ))
  17068. characterMakers.push(() => makeCharacter(
  17069. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17070. {
  17071. front: {
  17072. height: math.unit(6, "feet"),
  17073. weight: math.unit(110, "lb"),
  17074. name: "Front",
  17075. image: {
  17076. source: "./media/characters/klay/front.svg",
  17077. extra: 962 / 883,
  17078. bottom: 0.04
  17079. }
  17080. },
  17081. back: {
  17082. height: math.unit(6, "feet"),
  17083. weight: math.unit(110, "lb"),
  17084. name: "Back",
  17085. image: {
  17086. source: "./media/characters/klay/back.svg",
  17087. extra: 962 / 883
  17088. }
  17089. },
  17090. beans: {
  17091. height: math.unit(1.15, "feet"),
  17092. name: "Beans",
  17093. image: {
  17094. source: "./media/characters/klay/beans.svg"
  17095. }
  17096. },
  17097. },
  17098. [
  17099. {
  17100. name: "Micro",
  17101. height: math.unit(6, "inches")
  17102. },
  17103. {
  17104. name: "Mini",
  17105. height: math.unit(3, "feet")
  17106. },
  17107. {
  17108. name: "Normal",
  17109. height: math.unit(6, "feet"),
  17110. default: true
  17111. },
  17112. {
  17113. name: "Big",
  17114. height: math.unit(25, "feet")
  17115. },
  17116. {
  17117. name: "Macro",
  17118. height: math.unit(100, "feet")
  17119. },
  17120. {
  17121. name: "Megamacro",
  17122. height: math.unit(400, "feet")
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17128. {
  17129. front: {
  17130. height: math.unit(6, "feet"),
  17131. weight: math.unit(160, "lb"),
  17132. name: "Front",
  17133. image: {
  17134. source: "./media/characters/marcus/front.svg",
  17135. extra: 734 / 676,
  17136. bottom: 0.03
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Little",
  17143. height: math.unit(6, "feet")
  17144. },
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(110, "feet"),
  17148. default: true
  17149. },
  17150. {
  17151. name: "Macro",
  17152. height: math.unit(250, "feet")
  17153. },
  17154. {
  17155. name: "Megamacro",
  17156. height: math.unit(1000, "feet")
  17157. },
  17158. ]
  17159. ))
  17160. characterMakers.push(() => makeCharacter(
  17161. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17162. {
  17163. front: {
  17164. height: math.unit(7, "feet"),
  17165. weight: math.unit(275, "lb"),
  17166. name: "Front",
  17167. image: {
  17168. source: "./media/characters/claude-delroute/front.svg",
  17169. extra: 230 / 214,
  17170. bottom: 0.007
  17171. }
  17172. },
  17173. side: {
  17174. height: math.unit(7, "feet"),
  17175. weight: math.unit(275, "lb"),
  17176. name: "Side",
  17177. image: {
  17178. source: "./media/characters/claude-delroute/side.svg",
  17179. extra: 222 / 214,
  17180. bottom: 0.01
  17181. }
  17182. },
  17183. back: {
  17184. height: math.unit(7, "feet"),
  17185. weight: math.unit(275, "lb"),
  17186. name: "Back",
  17187. image: {
  17188. source: "./media/characters/claude-delroute/back.svg",
  17189. extra: 230 / 214,
  17190. bottom: 0.015
  17191. }
  17192. },
  17193. maw: {
  17194. height: math.unit(0.6407, "meters"),
  17195. name: "Maw",
  17196. image: {
  17197. source: "./media/characters/claude-delroute/maw.svg"
  17198. }
  17199. },
  17200. },
  17201. [
  17202. {
  17203. name: "Normal",
  17204. height: math.unit(7, "feet"),
  17205. default: true
  17206. },
  17207. {
  17208. name: "Lorge",
  17209. height: math.unit(20, "feet")
  17210. },
  17211. ]
  17212. ))
  17213. characterMakers.push(() => makeCharacter(
  17214. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17215. {
  17216. front: {
  17217. height: math.unit(8 + 4 / 12, "feet"),
  17218. weight: math.unit(600, "lb"),
  17219. name: "Front",
  17220. image: {
  17221. source: "./media/characters/dragonien/front.svg",
  17222. extra: 100 / 94,
  17223. bottom: 3.3 / 103.3445
  17224. }
  17225. },
  17226. back: {
  17227. height: math.unit(8 + 4 / 12, "feet"),
  17228. weight: math.unit(600, "lb"),
  17229. name: "Back",
  17230. image: {
  17231. source: "./media/characters/dragonien/back.svg",
  17232. extra: 776 / 746,
  17233. bottom: 6.4 / 782.0616
  17234. }
  17235. },
  17236. foot: {
  17237. height: math.unit(1.54, "feet"),
  17238. name: "Foot",
  17239. image: {
  17240. source: "./media/characters/dragonien/foot.svg",
  17241. }
  17242. },
  17243. },
  17244. [
  17245. {
  17246. name: "Normal",
  17247. height: math.unit(8 + 4 / 12, "feet"),
  17248. default: true
  17249. },
  17250. {
  17251. name: "Macro",
  17252. height: math.unit(200, "feet")
  17253. },
  17254. {
  17255. name: "Megamacro",
  17256. height: math.unit(1, "mile")
  17257. },
  17258. {
  17259. name: "Gigamacro",
  17260. height: math.unit(1000, "miles")
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17266. {
  17267. front: {
  17268. height: math.unit(5 + 2 / 12, "feet"),
  17269. weight: math.unit(110, "lb"),
  17270. name: "Front",
  17271. image: {
  17272. source: "./media/characters/desta/front.svg",
  17273. extra: 767/726,
  17274. bottom: 11.7/779
  17275. }
  17276. },
  17277. back: {
  17278. height: math.unit(5 + 2 / 12, "feet"),
  17279. weight: math.unit(110, "lb"),
  17280. name: "Back",
  17281. image: {
  17282. source: "./media/characters/desta/back.svg",
  17283. extra: 777/728,
  17284. bottom: 6/784
  17285. }
  17286. },
  17287. frontAlt: {
  17288. height: math.unit(5 + 2 / 12, "feet"),
  17289. weight: math.unit(110, "lb"),
  17290. name: "Front",
  17291. image: {
  17292. source: "./media/characters/desta/front-alt.svg",
  17293. extra: 1482 / 1417
  17294. }
  17295. },
  17296. side: {
  17297. height: math.unit(5 + 2 / 12, "feet"),
  17298. weight: math.unit(110, "lb"),
  17299. name: "Side",
  17300. image: {
  17301. source: "./media/characters/desta/side.svg",
  17302. extra: 2579 / 2491,
  17303. bottom: 0.053
  17304. }
  17305. },
  17306. },
  17307. [
  17308. {
  17309. name: "Micro",
  17310. height: math.unit(6, "inches")
  17311. },
  17312. {
  17313. name: "Normal",
  17314. height: math.unit(5 + 2 / 12, "feet"),
  17315. default: true
  17316. },
  17317. {
  17318. name: "Macro",
  17319. height: math.unit(62, "feet")
  17320. },
  17321. {
  17322. name: "Megamacro",
  17323. height: math.unit(1800, "feet")
  17324. },
  17325. ]
  17326. ))
  17327. characterMakers.push(() => makeCharacter(
  17328. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17329. {
  17330. front: {
  17331. height: math.unit(10, "feet"),
  17332. weight: math.unit(700, "lb"),
  17333. name: "Front",
  17334. image: {
  17335. source: "./media/characters/storm-alystar/front.svg",
  17336. extra: 2112 / 1898,
  17337. bottom: 0.034
  17338. }
  17339. },
  17340. },
  17341. [
  17342. {
  17343. name: "Micro",
  17344. height: math.unit(3.5, "inches")
  17345. },
  17346. {
  17347. name: "Normal",
  17348. height: math.unit(10, "feet"),
  17349. default: true
  17350. },
  17351. {
  17352. name: "Macro",
  17353. height: math.unit(400, "feet")
  17354. },
  17355. {
  17356. name: "Deific",
  17357. height: math.unit(60, "miles")
  17358. },
  17359. ]
  17360. ))
  17361. characterMakers.push(() => makeCharacter(
  17362. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17363. {
  17364. front: {
  17365. height: math.unit(2.35, "meters"),
  17366. weight: math.unit(119, "kg"),
  17367. name: "Front",
  17368. image: {
  17369. source: "./media/characters/ilia/front.svg",
  17370. extra: 1285 / 1255,
  17371. bottom: 0.06
  17372. }
  17373. },
  17374. },
  17375. [
  17376. {
  17377. name: "Normal",
  17378. height: math.unit(2.35, "meters")
  17379. },
  17380. {
  17381. name: "Macro",
  17382. height: math.unit(140, "meters"),
  17383. default: true
  17384. },
  17385. {
  17386. name: "Megamacro",
  17387. height: math.unit(100, "miles")
  17388. },
  17389. ]
  17390. ))
  17391. characterMakers.push(() => makeCharacter(
  17392. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17393. {
  17394. front: {
  17395. height: math.unit(6 + 5 / 12, "feet"),
  17396. weight: math.unit(190, "lb"),
  17397. name: "Front",
  17398. image: {
  17399. source: "./media/characters/kingdead/front.svg",
  17400. extra: 1228 / 1177
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Micro",
  17407. height: math.unit(7, "inches")
  17408. },
  17409. {
  17410. name: "Normal",
  17411. height: math.unit(6 + 5 / 12, "feet")
  17412. },
  17413. {
  17414. name: "Macro",
  17415. height: math.unit(150, "feet"),
  17416. default: true
  17417. },
  17418. {
  17419. name: "Megamacro",
  17420. height: math.unit(200, "miles")
  17421. },
  17422. ]
  17423. ))
  17424. characterMakers.push(() => makeCharacter(
  17425. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17426. {
  17427. front: {
  17428. height: math.unit(8, "feet"),
  17429. weight: math.unit(600, "lb"),
  17430. name: "Front",
  17431. image: {
  17432. source: "./media/characters/kyrehx/front.svg",
  17433. extra: 1195 / 1095,
  17434. bottom: 0.034
  17435. }
  17436. },
  17437. },
  17438. [
  17439. {
  17440. name: "Micro",
  17441. height: math.unit(2, "inches")
  17442. },
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(8, "feet"),
  17446. default: true
  17447. },
  17448. {
  17449. name: "Macro",
  17450. height: math.unit(255, "feet")
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17456. {
  17457. front: {
  17458. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17459. weight: math.unit(184, "lb"),
  17460. name: "Front",
  17461. image: {
  17462. source: "./media/characters/xang/front.svg",
  17463. extra: 845 / 755
  17464. }
  17465. },
  17466. },
  17467. [
  17468. {
  17469. name: "Normal",
  17470. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17471. default: true
  17472. },
  17473. {
  17474. name: "Macro",
  17475. height: math.unit(0.935 * 146, "feet")
  17476. },
  17477. {
  17478. name: "Megamacro",
  17479. height: math.unit(0.935 * 3, "miles")
  17480. },
  17481. ]
  17482. ))
  17483. characterMakers.push(() => makeCharacter(
  17484. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17485. {
  17486. frontDressed: {
  17487. height: math.unit(5 + 7 / 12, "feet"),
  17488. weight: math.unit(140, "lb"),
  17489. name: "Front (Dressed)",
  17490. image: {
  17491. source: "./media/characters/doc-weardno/front-dressed.svg",
  17492. extra: 263 / 234
  17493. }
  17494. },
  17495. backDressed: {
  17496. height: math.unit(5 + 7 / 12, "feet"),
  17497. weight: math.unit(140, "lb"),
  17498. name: "Back (Dressed)",
  17499. image: {
  17500. source: "./media/characters/doc-weardno/back-dressed.svg",
  17501. extra: 266 / 238
  17502. }
  17503. },
  17504. front: {
  17505. height: math.unit(5 + 7 / 12, "feet"),
  17506. weight: math.unit(140, "lb"),
  17507. name: "Front",
  17508. image: {
  17509. source: "./media/characters/doc-weardno/front.svg",
  17510. extra: 254 / 233
  17511. }
  17512. },
  17513. },
  17514. [
  17515. {
  17516. name: "Micro",
  17517. height: math.unit(3, "inches")
  17518. },
  17519. {
  17520. name: "Normal",
  17521. height: math.unit(5 + 7 / 12, "feet"),
  17522. default: true
  17523. },
  17524. {
  17525. name: "Macro",
  17526. height: math.unit(25, "feet")
  17527. },
  17528. {
  17529. name: "Megamacro",
  17530. height: math.unit(2, "miles")
  17531. },
  17532. ]
  17533. ))
  17534. characterMakers.push(() => makeCharacter(
  17535. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17536. {
  17537. front: {
  17538. height: math.unit(6 + 2 / 12, "feet"),
  17539. weight: math.unit(153, "lb"),
  17540. name: "Front",
  17541. image: {
  17542. source: "./media/characters/seth-whilst/front.svg",
  17543. bottom: 0.07
  17544. }
  17545. },
  17546. },
  17547. [
  17548. {
  17549. name: "Micro",
  17550. height: math.unit(5, "inches")
  17551. },
  17552. {
  17553. name: "Normal",
  17554. height: math.unit(6 + 2 / 12, "feet"),
  17555. default: true
  17556. },
  17557. ]
  17558. ))
  17559. characterMakers.push(() => makeCharacter(
  17560. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17561. {
  17562. front: {
  17563. height: math.unit(3, "inches"),
  17564. weight: math.unit(8, "grams"),
  17565. name: "Front",
  17566. image: {
  17567. source: "./media/characters/pocket-jabari/front.svg",
  17568. extra: 1024 / 974,
  17569. bottom: 0.039
  17570. }
  17571. },
  17572. },
  17573. [
  17574. {
  17575. name: "Minimicro",
  17576. height: math.unit(8, "mm")
  17577. },
  17578. {
  17579. name: "Micro",
  17580. height: math.unit(3, "inches"),
  17581. default: true
  17582. },
  17583. {
  17584. name: "Normal",
  17585. height: math.unit(3, "feet")
  17586. },
  17587. ]
  17588. ))
  17589. characterMakers.push(() => makeCharacter(
  17590. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17591. {
  17592. front: {
  17593. height: math.unit(15, "feet"),
  17594. weight: math.unit(3280, "lb"),
  17595. name: "Front",
  17596. image: {
  17597. source: "./media/characters/sapphy/front.svg",
  17598. extra: 671 / 577,
  17599. bottom: 0.085
  17600. }
  17601. },
  17602. back: {
  17603. height: math.unit(15, "feet"),
  17604. weight: math.unit(3280, "lb"),
  17605. name: "Back",
  17606. image: {
  17607. source: "./media/characters/sapphy/back.svg",
  17608. extra: 631 / 607,
  17609. bottom: 0.045
  17610. }
  17611. },
  17612. },
  17613. [
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(15, "feet")
  17617. },
  17618. {
  17619. name: "Casual Macro",
  17620. height: math.unit(120, "feet")
  17621. },
  17622. {
  17623. name: "Macro",
  17624. height: math.unit(2150, "feet"),
  17625. default: true
  17626. },
  17627. {
  17628. name: "Megamacro",
  17629. height: math.unit(8, "miles")
  17630. },
  17631. {
  17632. name: "Galaxy Mom",
  17633. height: math.unit(6, "megalightyears")
  17634. },
  17635. ]
  17636. ))
  17637. characterMakers.push(() => makeCharacter(
  17638. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17639. {
  17640. front: {
  17641. height: math.unit(6, "feet"),
  17642. weight: math.unit(170, "lb"),
  17643. name: "Front",
  17644. image: {
  17645. source: "./media/characters/kiro/front.svg",
  17646. extra: 1064 / 1012,
  17647. bottom: 0.052
  17648. }
  17649. },
  17650. },
  17651. [
  17652. {
  17653. name: "Micro",
  17654. height: math.unit(6, "inches")
  17655. },
  17656. {
  17657. name: "Normal",
  17658. height: math.unit(6, "feet"),
  17659. default: true
  17660. },
  17661. {
  17662. name: "Macro",
  17663. height: math.unit(72, "feet")
  17664. },
  17665. ]
  17666. ))
  17667. characterMakers.push(() => makeCharacter(
  17668. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17669. {
  17670. front: {
  17671. height: math.unit(5 + 9 / 12, "feet"),
  17672. weight: math.unit(175, "lb"),
  17673. name: "Front",
  17674. image: {
  17675. source: "./media/characters/irishfox/front.svg",
  17676. extra: 1912 / 1680,
  17677. bottom: 0.02
  17678. }
  17679. },
  17680. },
  17681. [
  17682. {
  17683. name: "Nano",
  17684. height: math.unit(1, "mm")
  17685. },
  17686. {
  17687. name: "Micro",
  17688. height: math.unit(2, "inches")
  17689. },
  17690. {
  17691. name: "Normal",
  17692. height: math.unit(5 + 9 / 12, "feet"),
  17693. default: true
  17694. },
  17695. {
  17696. name: "Macro",
  17697. height: math.unit(45, "feet")
  17698. },
  17699. ]
  17700. ))
  17701. characterMakers.push(() => makeCharacter(
  17702. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17703. {
  17704. front: {
  17705. height: math.unit(6 + 1 / 12, "feet"),
  17706. weight: math.unit(150, "lb"),
  17707. name: "Front",
  17708. image: {
  17709. source: "./media/characters/aronai-sieyes/front.svg",
  17710. extra: 1556 / 1480,
  17711. bottom: 0.015
  17712. }
  17713. },
  17714. side: {
  17715. height: math.unit(6 + 1 / 12, "feet"),
  17716. weight: math.unit(150, "lb"),
  17717. name: "Side",
  17718. image: {
  17719. source: "./media/characters/aronai-sieyes/side.svg",
  17720. extra: 1433 / 1390,
  17721. bottom: 0.0393
  17722. }
  17723. },
  17724. back: {
  17725. height: math.unit(6 + 1 / 12, "feet"),
  17726. weight: math.unit(150, "lb"),
  17727. name: "Back",
  17728. image: {
  17729. source: "./media/characters/aronai-sieyes/back.svg",
  17730. extra: 1544 / 1494,
  17731. bottom: 0.02
  17732. }
  17733. },
  17734. frontClothed: {
  17735. height: math.unit(6 + 1 / 12, "feet"),
  17736. weight: math.unit(150, "lb"),
  17737. name: "Front (Clothed)",
  17738. image: {
  17739. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17740. extra: 1582 / 1527
  17741. }
  17742. },
  17743. feral: {
  17744. height: math.unit(18, "feet"),
  17745. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17746. name: "Feral",
  17747. image: {
  17748. source: "./media/characters/aronai-sieyes/feral.svg",
  17749. extra: 1530 / 1240,
  17750. bottom: 0.035
  17751. }
  17752. },
  17753. },
  17754. [
  17755. {
  17756. name: "Micro",
  17757. height: math.unit(2, "inches")
  17758. },
  17759. {
  17760. name: "Normal",
  17761. height: math.unit(6 + 1 / 12, "feet"),
  17762. default: true
  17763. }
  17764. ]
  17765. ))
  17766. characterMakers.push(() => makeCharacter(
  17767. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17768. {
  17769. front: {
  17770. height: math.unit(12, "feet"),
  17771. weight: math.unit(410, "kg"),
  17772. name: "Front",
  17773. image: {
  17774. source: "./media/characters/xuna/front.svg",
  17775. extra: 2184 / 1980
  17776. }
  17777. },
  17778. side: {
  17779. height: math.unit(12, "feet"),
  17780. weight: math.unit(410, "kg"),
  17781. name: "Side",
  17782. image: {
  17783. source: "./media/characters/xuna/side.svg",
  17784. extra: 2184 / 1980
  17785. }
  17786. },
  17787. back: {
  17788. height: math.unit(12, "feet"),
  17789. weight: math.unit(410, "kg"),
  17790. name: "Back",
  17791. image: {
  17792. source: "./media/characters/xuna/back.svg",
  17793. extra: 2184 / 1980
  17794. }
  17795. },
  17796. },
  17797. [
  17798. {
  17799. name: "Nano glow",
  17800. height: math.unit(10, "nm")
  17801. },
  17802. {
  17803. name: "Micro floof",
  17804. height: math.unit(0.3, "m")
  17805. },
  17806. {
  17807. name: "Huggable softy boi",
  17808. height: math.unit(3.6576, "m"),
  17809. default: true
  17810. },
  17811. {
  17812. name: "Admirable floof",
  17813. height: math.unit(80, "meters")
  17814. },
  17815. {
  17816. name: "Gentle macro",
  17817. height: math.unit(300, "meters")
  17818. },
  17819. {
  17820. name: "Very careful floof",
  17821. height: math.unit(3200, "meters")
  17822. },
  17823. {
  17824. name: "The mega floof",
  17825. height: math.unit(36000, "meters")
  17826. },
  17827. {
  17828. name: "Giga-fur-Wicker",
  17829. height: math.unit(4800000, "meters")
  17830. },
  17831. {
  17832. name: "Licky world",
  17833. height: math.unit(20000000, "meters")
  17834. },
  17835. {
  17836. name: "Floofy cyan sun",
  17837. height: math.unit(1500000000, "meters")
  17838. },
  17839. {
  17840. name: "Milky Wicker",
  17841. height: math.unit(1000000000000000000000, "meters")
  17842. },
  17843. {
  17844. name: "The observing Wicker",
  17845. height: math.unit(999999999999999999999999999, "meters")
  17846. },
  17847. ]
  17848. ))
  17849. characterMakers.push(() => makeCharacter(
  17850. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17851. {
  17852. front: {
  17853. height: math.unit(5 + 9 / 12, "feet"),
  17854. weight: math.unit(150, "lb"),
  17855. name: "Front",
  17856. image: {
  17857. source: "./media/characters/arokha-sieyes/front.svg",
  17858. extra: 1425 / 1284,
  17859. bottom: 0.05
  17860. }
  17861. },
  17862. },
  17863. [
  17864. {
  17865. name: "Normal",
  17866. height: math.unit(5 + 9 / 12, "feet")
  17867. },
  17868. {
  17869. name: "Macro",
  17870. height: math.unit(30, "meters"),
  17871. default: true
  17872. },
  17873. ]
  17874. ))
  17875. characterMakers.push(() => makeCharacter(
  17876. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17877. {
  17878. front: {
  17879. height: math.unit(6, "feet"),
  17880. weight: math.unit(180, "lb"),
  17881. name: "Front",
  17882. image: {
  17883. source: "./media/characters/arokh-sieyes/front.svg",
  17884. extra: 1830 / 1769,
  17885. bottom: 0.01
  17886. }
  17887. },
  17888. },
  17889. [
  17890. {
  17891. name: "Normal",
  17892. height: math.unit(6, "feet")
  17893. },
  17894. {
  17895. name: "Macro",
  17896. height: math.unit(30, "meters"),
  17897. default: true
  17898. },
  17899. ]
  17900. ))
  17901. characterMakers.push(() => makeCharacter(
  17902. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17903. {
  17904. side: {
  17905. height: math.unit(13 + 1 / 12, "feet"),
  17906. weight: math.unit(8.5, "tonnes"),
  17907. name: "Side",
  17908. image: {
  17909. source: "./media/characters/goldeneye/side.svg",
  17910. extra: 1182 / 778,
  17911. bottom: 0.067
  17912. }
  17913. },
  17914. paw: {
  17915. height: math.unit(3.4, "feet"),
  17916. name: "Paw",
  17917. image: {
  17918. source: "./media/characters/goldeneye/paw.svg"
  17919. }
  17920. },
  17921. },
  17922. [
  17923. {
  17924. name: "Normal",
  17925. height: math.unit(13 + 1 / 12, "feet"),
  17926. default: true
  17927. },
  17928. ]
  17929. ))
  17930. characterMakers.push(() => makeCharacter(
  17931. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17932. {
  17933. front: {
  17934. height: math.unit(6 + 1 / 12, "feet"),
  17935. weight: math.unit(210, "lb"),
  17936. name: "Front",
  17937. image: {
  17938. source: "./media/characters/leonardo-lycheborne/front.svg",
  17939. extra: 390 / 365,
  17940. bottom: 0.032
  17941. }
  17942. },
  17943. side: {
  17944. height: math.unit(6 + 1 / 12, "feet"),
  17945. weight: math.unit(210, "lb"),
  17946. name: "Side",
  17947. image: {
  17948. source: "./media/characters/leonardo-lycheborne/side.svg",
  17949. extra: 390 / 365,
  17950. bottom: 0.005
  17951. }
  17952. },
  17953. back: {
  17954. height: math.unit(6 + 1 / 12, "feet"),
  17955. weight: math.unit(210, "lb"),
  17956. name: "Back",
  17957. image: {
  17958. source: "./media/characters/leonardo-lycheborne/back.svg",
  17959. extra: 392 / 366,
  17960. bottom: 0.01
  17961. }
  17962. },
  17963. hand: {
  17964. height: math.unit(1.08, "feet"),
  17965. name: "Hand",
  17966. image: {
  17967. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17968. }
  17969. },
  17970. foot: {
  17971. height: math.unit(1.32, "feet"),
  17972. name: "Foot",
  17973. image: {
  17974. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17975. }
  17976. },
  17977. were: {
  17978. height: math.unit(20, "feet"),
  17979. weight: math.unit(7800, "lb"),
  17980. name: "Were",
  17981. image: {
  17982. source: "./media/characters/leonardo-lycheborne/were.svg",
  17983. extra: 308 / 294,
  17984. bottom: 0.048
  17985. }
  17986. },
  17987. feral: {
  17988. height: math.unit(7.5, "feet"),
  17989. weight: math.unit(600, "lb"),
  17990. name: "Feral",
  17991. image: {
  17992. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17993. extra: 210 / 186,
  17994. bottom: 0.108
  17995. }
  17996. },
  17997. taur: {
  17998. height: math.unit(11, "feet"),
  17999. weight: math.unit(3300, "lb"),
  18000. name: "Taur",
  18001. image: {
  18002. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18003. extra: 320 / 303,
  18004. bottom: 0.025
  18005. }
  18006. },
  18007. barghest: {
  18008. height: math.unit(11, "feet"),
  18009. weight: math.unit(1300, "lb"),
  18010. name: "Barghest",
  18011. image: {
  18012. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18013. extra: 323 / 302,
  18014. bottom: 0.027
  18015. }
  18016. },
  18017. dick: {
  18018. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18019. name: "Dick",
  18020. image: {
  18021. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18022. }
  18023. },
  18024. dickWere: {
  18025. height: math.unit((20) / 3.8, "feet"),
  18026. name: "Dick (Were)",
  18027. image: {
  18028. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18029. }
  18030. },
  18031. },
  18032. [
  18033. {
  18034. name: "Normal",
  18035. height: math.unit(6 + 1 / 12, "feet"),
  18036. default: true
  18037. },
  18038. ]
  18039. ))
  18040. characterMakers.push(() => makeCharacter(
  18041. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18042. {
  18043. front: {
  18044. height: math.unit(10, "feet"),
  18045. weight: math.unit(350, "lb"),
  18046. name: "Front",
  18047. image: {
  18048. source: "./media/characters/jet/front.svg",
  18049. extra: 2050 / 1980,
  18050. bottom: 0.013
  18051. }
  18052. },
  18053. back: {
  18054. height: math.unit(10, "feet"),
  18055. weight: math.unit(350, "lb"),
  18056. name: "Back",
  18057. image: {
  18058. source: "./media/characters/jet/back.svg",
  18059. extra: 2050 / 1980,
  18060. bottom: 0.013
  18061. }
  18062. },
  18063. },
  18064. [
  18065. {
  18066. name: "Micro",
  18067. height: math.unit(6, "inches")
  18068. },
  18069. {
  18070. name: "Normal",
  18071. height: math.unit(10, "feet"),
  18072. default: true
  18073. },
  18074. {
  18075. name: "Macro",
  18076. height: math.unit(100, "feet")
  18077. },
  18078. ]
  18079. ))
  18080. characterMakers.push(() => makeCharacter(
  18081. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18082. {
  18083. front: {
  18084. height: math.unit(15, "feet"),
  18085. weight: math.unit(2800, "lb"),
  18086. name: "Front",
  18087. image: {
  18088. source: "./media/characters/tanarath/front.svg",
  18089. extra: 2392 / 2220,
  18090. bottom: 0.03
  18091. }
  18092. },
  18093. back: {
  18094. height: math.unit(15, "feet"),
  18095. weight: math.unit(2800, "lb"),
  18096. name: "Back",
  18097. image: {
  18098. source: "./media/characters/tanarath/back.svg",
  18099. extra: 2392 / 2220,
  18100. bottom: 0.03
  18101. }
  18102. },
  18103. },
  18104. [
  18105. {
  18106. name: "Normal",
  18107. height: math.unit(15, "feet"),
  18108. default: true
  18109. },
  18110. ]
  18111. ))
  18112. characterMakers.push(() => makeCharacter(
  18113. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18114. {
  18115. front: {
  18116. height: math.unit(7 + 1 / 12, "feet"),
  18117. weight: math.unit(175, "lb"),
  18118. name: "Front",
  18119. image: {
  18120. source: "./media/characters/patty-cattybatty/front.svg",
  18121. extra: 908 / 874,
  18122. bottom: 0.025
  18123. }
  18124. },
  18125. },
  18126. [
  18127. {
  18128. name: "Micro",
  18129. height: math.unit(1, "inch")
  18130. },
  18131. {
  18132. name: "Normal",
  18133. height: math.unit(7 + 1 / 12, "feet")
  18134. },
  18135. {
  18136. name: "Mini Macro",
  18137. height: math.unit(155, "feet")
  18138. },
  18139. {
  18140. name: "Macro",
  18141. height: math.unit(1077, "feet")
  18142. },
  18143. {
  18144. name: "Mega Macro",
  18145. height: math.unit(47650, "feet"),
  18146. default: true
  18147. },
  18148. {
  18149. name: "Giga Macro",
  18150. height: math.unit(440, "miles")
  18151. },
  18152. {
  18153. name: "Tera Macro",
  18154. height: math.unit(8700, "miles")
  18155. },
  18156. {
  18157. name: "Planetary Macro",
  18158. height: math.unit(32700, "miles")
  18159. },
  18160. {
  18161. name: "Solar Macro",
  18162. height: math.unit(550000, "miles")
  18163. },
  18164. {
  18165. name: "Celestial Macro",
  18166. height: math.unit(2.5, "AU")
  18167. },
  18168. ]
  18169. ))
  18170. characterMakers.push(() => makeCharacter(
  18171. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18172. {
  18173. front: {
  18174. height: math.unit(4 + 5 / 12, "feet"),
  18175. weight: math.unit(90, "lb"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/cappu/front.svg",
  18179. extra: 1247 / 1152,
  18180. bottom: 0.012
  18181. }
  18182. },
  18183. },
  18184. [
  18185. {
  18186. name: "Normal",
  18187. height: math.unit(4 + 5 / 12, "feet"),
  18188. default: true
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18194. {
  18195. frontDressed: {
  18196. height: math.unit(70, "cm"),
  18197. weight: math.unit(6, "kg"),
  18198. name: "Front (Dressed)",
  18199. image: {
  18200. source: "./media/characters/sebi/front-dressed.svg",
  18201. extra: 713.5 / 686.5,
  18202. bottom: 0.003
  18203. }
  18204. },
  18205. front: {
  18206. height: math.unit(70, "cm"),
  18207. weight: math.unit(5, "kg"),
  18208. name: "Front",
  18209. image: {
  18210. source: "./media/characters/sebi/front.svg",
  18211. extra: 713.5 / 686.5,
  18212. bottom: 0.003
  18213. }
  18214. }
  18215. },
  18216. [
  18217. {
  18218. name: "Normal",
  18219. height: math.unit(70, "cm"),
  18220. default: true
  18221. },
  18222. {
  18223. name: "Macro",
  18224. height: math.unit(8, "meters")
  18225. },
  18226. ]
  18227. ))
  18228. characterMakers.push(() => makeCharacter(
  18229. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18230. {
  18231. front: {
  18232. height: math.unit(6, "feet"),
  18233. weight: math.unit(150, "lb"),
  18234. name: "Front",
  18235. image: {
  18236. source: "./media/characters/typhek/front.svg",
  18237. extra: 1948 / 1929,
  18238. bottom: 0.025
  18239. }
  18240. },
  18241. side: {
  18242. height: math.unit(6, "feet"),
  18243. weight: math.unit(150, "lb"),
  18244. name: "Side",
  18245. image: {
  18246. source: "./media/characters/typhek/side.svg",
  18247. extra: 2034 / 2010,
  18248. bottom: 0.003
  18249. }
  18250. },
  18251. back: {
  18252. height: math.unit(6, "feet"),
  18253. weight: math.unit(150, "lb"),
  18254. name: "Back",
  18255. image: {
  18256. source: "./media/characters/typhek/back.svg",
  18257. extra: 2005 / 1978,
  18258. bottom: 0.004
  18259. }
  18260. },
  18261. palm: {
  18262. height: math.unit(1.2, "feet"),
  18263. name: "Palm",
  18264. image: {
  18265. source: "./media/characters/typhek/palm.svg"
  18266. }
  18267. },
  18268. fist: {
  18269. height: math.unit(1.1, "feet"),
  18270. name: "Fist",
  18271. image: {
  18272. source: "./media/characters/typhek/fist.svg"
  18273. }
  18274. },
  18275. foot: {
  18276. height: math.unit(1.57, "feet"),
  18277. name: "Foot",
  18278. image: {
  18279. source: "./media/characters/typhek/foot.svg"
  18280. }
  18281. },
  18282. sole: {
  18283. height: math.unit(2.05, "feet"),
  18284. name: "Sole",
  18285. image: {
  18286. source: "./media/characters/typhek/sole.svg"
  18287. }
  18288. },
  18289. },
  18290. [
  18291. {
  18292. name: "Macro",
  18293. height: math.unit(40, "stories"),
  18294. default: true
  18295. },
  18296. {
  18297. name: "Megamacro",
  18298. height: math.unit(1, "mile")
  18299. },
  18300. {
  18301. name: "Gigamacro",
  18302. height: math.unit(4000, "solarradii")
  18303. },
  18304. {
  18305. name: "Universal",
  18306. height: math.unit(1.1, "universes")
  18307. }
  18308. ]
  18309. ))
  18310. characterMakers.push(() => makeCharacter(
  18311. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18312. {
  18313. side: {
  18314. height: math.unit(5 + 7 / 12, "feet"),
  18315. weight: math.unit(150, "lb"),
  18316. name: "Side",
  18317. image: {
  18318. source: "./media/characters/kassy/side.svg",
  18319. extra: 1280 / 1225,
  18320. bottom: 0.002
  18321. }
  18322. },
  18323. front: {
  18324. height: math.unit(5 + 7 / 12, "feet"),
  18325. weight: math.unit(150, "lb"),
  18326. name: "Front",
  18327. image: {
  18328. source: "./media/characters/kassy/front.svg",
  18329. extra: 1280 / 1225,
  18330. bottom: 0.025
  18331. }
  18332. },
  18333. back: {
  18334. height: math.unit(5 + 7 / 12, "feet"),
  18335. weight: math.unit(150, "lb"),
  18336. name: "Back",
  18337. image: {
  18338. source: "./media/characters/kassy/back.svg",
  18339. extra: 1280 / 1225,
  18340. bottom: 0.002
  18341. }
  18342. },
  18343. foot: {
  18344. height: math.unit(1.266, "feet"),
  18345. name: "Foot",
  18346. image: {
  18347. source: "./media/characters/kassy/foot.svg"
  18348. }
  18349. },
  18350. },
  18351. [
  18352. {
  18353. name: "Normal",
  18354. height: math.unit(5 + 7 / 12, "feet")
  18355. },
  18356. {
  18357. name: "Macro",
  18358. height: math.unit(137, "feet"),
  18359. default: true
  18360. },
  18361. {
  18362. name: "Megamacro",
  18363. height: math.unit(1, "mile")
  18364. },
  18365. ]
  18366. ))
  18367. characterMakers.push(() => makeCharacter(
  18368. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18369. {
  18370. front: {
  18371. height: math.unit(6 + 1 / 12, "feet"),
  18372. weight: math.unit(200, "lb"),
  18373. name: "Front",
  18374. image: {
  18375. source: "./media/characters/neil/front.svg",
  18376. extra: 1326 / 1250,
  18377. bottom: 0.023
  18378. }
  18379. },
  18380. },
  18381. [
  18382. {
  18383. name: "Normal",
  18384. height: math.unit(6 + 1 / 12, "feet"),
  18385. default: true
  18386. },
  18387. {
  18388. name: "Macro",
  18389. height: math.unit(200, "feet")
  18390. },
  18391. ]
  18392. ))
  18393. characterMakers.push(() => makeCharacter(
  18394. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18395. {
  18396. front: {
  18397. height: math.unit(5 + 9 / 12, "feet"),
  18398. weight: math.unit(190, "lb"),
  18399. name: "Front",
  18400. image: {
  18401. source: "./media/characters/atticus/front.svg",
  18402. extra: 2934 / 2785,
  18403. bottom: 0.025
  18404. }
  18405. },
  18406. },
  18407. [
  18408. {
  18409. name: "Normal",
  18410. height: math.unit(5 + 9 / 12, "feet"),
  18411. default: true
  18412. },
  18413. {
  18414. name: "Macro",
  18415. height: math.unit(180, "feet")
  18416. },
  18417. ]
  18418. ))
  18419. characterMakers.push(() => makeCharacter(
  18420. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18421. {
  18422. side: {
  18423. height: math.unit(9, "feet"),
  18424. weight: math.unit(650, "lb"),
  18425. name: "Side",
  18426. image: {
  18427. source: "./media/characters/milo/side.svg",
  18428. extra: 2644 / 2310,
  18429. bottom: 0.032
  18430. }
  18431. },
  18432. },
  18433. [
  18434. {
  18435. name: "Normal",
  18436. height: math.unit(9, "feet"),
  18437. default: true
  18438. },
  18439. {
  18440. name: "Macro",
  18441. height: math.unit(300, "feet")
  18442. },
  18443. ]
  18444. ))
  18445. characterMakers.push(() => makeCharacter(
  18446. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18447. {
  18448. side: {
  18449. height: math.unit(8, "meters"),
  18450. weight: math.unit(90000, "kg"),
  18451. name: "Side",
  18452. image: {
  18453. source: "./media/characters/ijzer/side.svg",
  18454. extra: 2756 / 1600,
  18455. bottom: 0.01
  18456. }
  18457. },
  18458. },
  18459. [
  18460. {
  18461. name: "Small",
  18462. height: math.unit(3, "meters")
  18463. },
  18464. {
  18465. name: "Normal",
  18466. height: math.unit(8, "meters"),
  18467. default: true
  18468. },
  18469. {
  18470. name: "Normal+",
  18471. height: math.unit(10, "meters")
  18472. },
  18473. {
  18474. name: "Bigger",
  18475. height: math.unit(24, "meters")
  18476. },
  18477. {
  18478. name: "Huge",
  18479. height: math.unit(80, "meters")
  18480. },
  18481. ]
  18482. ))
  18483. characterMakers.push(() => makeCharacter(
  18484. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18485. {
  18486. front: {
  18487. height: math.unit(6 + 2 / 12, "feet"),
  18488. weight: math.unit(153, "lb"),
  18489. name: "Front",
  18490. image: {
  18491. source: "./media/characters/luca-cervicum/front.svg",
  18492. extra: 370 / 327,
  18493. bottom: 0.015
  18494. }
  18495. },
  18496. back: {
  18497. height: math.unit(6 + 2 / 12, "feet"),
  18498. weight: math.unit(153, "lb"),
  18499. name: "Back",
  18500. image: {
  18501. source: "./media/characters/luca-cervicum/back.svg",
  18502. extra: 367 / 333,
  18503. bottom: 0.005
  18504. }
  18505. },
  18506. frontGear: {
  18507. height: math.unit(6 + 2 / 12, "feet"),
  18508. weight: math.unit(173, "lb"),
  18509. name: "Front (Gear)",
  18510. image: {
  18511. source: "./media/characters/luca-cervicum/front-gear.svg",
  18512. extra: 377 / 333,
  18513. bottom: 0.006
  18514. }
  18515. },
  18516. },
  18517. [
  18518. {
  18519. name: "Normal",
  18520. height: math.unit(6 + 2 / 12, "feet"),
  18521. default: true
  18522. },
  18523. ]
  18524. ))
  18525. characterMakers.push(() => makeCharacter(
  18526. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18527. {
  18528. front: {
  18529. height: math.unit(6 + 1 / 12, "feet"),
  18530. weight: math.unit(304, "lb"),
  18531. name: "Front",
  18532. image: {
  18533. source: "./media/characters/oliver/front.svg",
  18534. extra: 157 / 143,
  18535. bottom: 0.08
  18536. }
  18537. },
  18538. },
  18539. [
  18540. {
  18541. name: "Normal",
  18542. height: math.unit(6 + 1 / 12, "feet"),
  18543. default: true
  18544. },
  18545. ]
  18546. ))
  18547. characterMakers.push(() => makeCharacter(
  18548. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18549. {
  18550. front: {
  18551. height: math.unit(5 + 7 / 12, "feet"),
  18552. weight: math.unit(140, "lb"),
  18553. name: "Front",
  18554. image: {
  18555. source: "./media/characters/shane/front.svg",
  18556. extra: 304 / 289,
  18557. bottom: 0.005
  18558. }
  18559. },
  18560. },
  18561. [
  18562. {
  18563. name: "Normal",
  18564. height: math.unit(5 + 7 / 12, "feet"),
  18565. default: true
  18566. },
  18567. ]
  18568. ))
  18569. characterMakers.push(() => makeCharacter(
  18570. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18571. {
  18572. front: {
  18573. height: math.unit(5 + 9 / 12, "feet"),
  18574. weight: math.unit(178, "lb"),
  18575. name: "Front",
  18576. image: {
  18577. source: "./media/characters/shin/front.svg",
  18578. extra: 159 / 151,
  18579. bottom: 0.015
  18580. }
  18581. },
  18582. },
  18583. [
  18584. {
  18585. name: "Normal",
  18586. height: math.unit(5 + 9 / 12, "feet"),
  18587. default: true
  18588. },
  18589. ]
  18590. ))
  18591. characterMakers.push(() => makeCharacter(
  18592. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18593. {
  18594. front: {
  18595. height: math.unit(5 + 10 / 12, "feet"),
  18596. weight: math.unit(168, "lb"),
  18597. name: "Front",
  18598. image: {
  18599. source: "./media/characters/xerxes/front.svg",
  18600. extra: 282 / 260,
  18601. bottom: 0.045
  18602. }
  18603. },
  18604. },
  18605. [
  18606. {
  18607. name: "Normal",
  18608. height: math.unit(5 + 10 / 12, "feet"),
  18609. default: true
  18610. },
  18611. ]
  18612. ))
  18613. characterMakers.push(() => makeCharacter(
  18614. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18615. {
  18616. front: {
  18617. height: math.unit(6 + 7 / 12, "feet"),
  18618. weight: math.unit(208, "lb"),
  18619. name: "Front",
  18620. image: {
  18621. source: "./media/characters/chaska/front.svg",
  18622. extra: 332 / 319,
  18623. bottom: 0.015
  18624. }
  18625. },
  18626. },
  18627. [
  18628. {
  18629. name: "Normal",
  18630. height: math.unit(6 + 7 / 12, "feet"),
  18631. default: true
  18632. },
  18633. ]
  18634. ))
  18635. characterMakers.push(() => makeCharacter(
  18636. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18637. {
  18638. front: {
  18639. height: math.unit(5 + 8 / 12, "feet"),
  18640. weight: math.unit(208, "lb"),
  18641. name: "Front",
  18642. image: {
  18643. source: "./media/characters/enuk/front.svg",
  18644. extra: 437 / 406,
  18645. bottom: 0.02
  18646. }
  18647. },
  18648. },
  18649. [
  18650. {
  18651. name: "Normal",
  18652. height: math.unit(5 + 8 / 12, "feet"),
  18653. default: true
  18654. },
  18655. ]
  18656. ))
  18657. characterMakers.push(() => makeCharacter(
  18658. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18659. {
  18660. front: {
  18661. height: math.unit(5 + 10 / 12, "feet"),
  18662. weight: math.unit(252, "lb"),
  18663. name: "Front",
  18664. image: {
  18665. source: "./media/characters/bruun/front.svg",
  18666. extra: 197 / 187,
  18667. bottom: 0.012
  18668. }
  18669. },
  18670. },
  18671. [
  18672. {
  18673. name: "Normal",
  18674. height: math.unit(5 + 10 / 12, "feet"),
  18675. default: true
  18676. },
  18677. ]
  18678. ))
  18679. characterMakers.push(() => makeCharacter(
  18680. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18681. {
  18682. front: {
  18683. height: math.unit(6 + 10 / 12, "feet"),
  18684. weight: math.unit(255, "lb"),
  18685. name: "Front",
  18686. image: {
  18687. source: "./media/characters/alexeev/front.svg",
  18688. extra: 213 / 200,
  18689. bottom: 0.05
  18690. }
  18691. },
  18692. },
  18693. [
  18694. {
  18695. name: "Normal",
  18696. height: math.unit(6 + 10 / 12, "feet"),
  18697. default: true
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18703. {
  18704. front: {
  18705. height: math.unit(2 + 8 / 12, "feet"),
  18706. weight: math.unit(22, "lb"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/evelyn/front.svg",
  18710. extra: 208 / 180
  18711. }
  18712. },
  18713. },
  18714. [
  18715. {
  18716. name: "Normal",
  18717. height: math.unit(2 + 8 / 12, "feet"),
  18718. default: true
  18719. },
  18720. ]
  18721. ))
  18722. characterMakers.push(() => makeCharacter(
  18723. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18724. {
  18725. front: {
  18726. height: math.unit(5 + 9 / 12, "feet"),
  18727. weight: math.unit(139, "lb"),
  18728. name: "Front",
  18729. image: {
  18730. source: "./media/characters/inca/front.svg",
  18731. extra: 294 / 291,
  18732. bottom: 0.03
  18733. }
  18734. },
  18735. },
  18736. [
  18737. {
  18738. name: "Normal",
  18739. height: math.unit(5 + 9 / 12, "feet"),
  18740. default: true
  18741. },
  18742. ]
  18743. ))
  18744. characterMakers.push(() => makeCharacter(
  18745. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18746. {
  18747. front: {
  18748. height: math.unit(5 + 1 / 12, "feet"),
  18749. weight: math.unit(84, "lb"),
  18750. name: "Front",
  18751. image: {
  18752. source: "./media/characters/magdalene/front.svg",
  18753. extra: 293 / 273
  18754. }
  18755. },
  18756. },
  18757. [
  18758. {
  18759. name: "Normal",
  18760. height: math.unit(5 + 1 / 12, "feet"),
  18761. default: true
  18762. },
  18763. ]
  18764. ))
  18765. characterMakers.push(() => makeCharacter(
  18766. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18767. {
  18768. front: {
  18769. height: math.unit(6 + 3 / 12, "feet"),
  18770. weight: math.unit(185, "lb"),
  18771. name: "Front",
  18772. image: {
  18773. source: "./media/characters/mera/front.svg",
  18774. extra: 291 / 277,
  18775. bottom: 0.03
  18776. }
  18777. },
  18778. },
  18779. [
  18780. {
  18781. name: "Normal",
  18782. height: math.unit(6 + 3 / 12, "feet"),
  18783. default: true
  18784. },
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18789. {
  18790. front: {
  18791. height: math.unit(6 + 7 / 12, "feet"),
  18792. weight: math.unit(160, "lb"),
  18793. name: "Front",
  18794. image: {
  18795. source: "./media/characters/ceres/front.svg",
  18796. extra: 1023 / 950,
  18797. bottom: 0.027
  18798. }
  18799. },
  18800. back: {
  18801. height: math.unit(6 + 7 / 12, "feet"),
  18802. weight: math.unit(160, "lb"),
  18803. name: "Back",
  18804. image: {
  18805. source: "./media/characters/ceres/back.svg",
  18806. extra: 1023 / 950
  18807. }
  18808. },
  18809. },
  18810. [
  18811. {
  18812. name: "Normal",
  18813. height: math.unit(6 + 7 / 12, "feet"),
  18814. default: true
  18815. },
  18816. ]
  18817. ))
  18818. characterMakers.push(() => makeCharacter(
  18819. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18820. {
  18821. front: {
  18822. height: math.unit(5 + 10 / 12, "feet"),
  18823. weight: math.unit(150, "lb"),
  18824. name: "Front",
  18825. image: {
  18826. source: "./media/characters/kris/front.svg",
  18827. extra: 885 / 803,
  18828. bottom: 0.03
  18829. }
  18830. },
  18831. },
  18832. [
  18833. {
  18834. name: "Normal",
  18835. height: math.unit(5 + 10 / 12, "feet"),
  18836. default: true
  18837. },
  18838. ]
  18839. ))
  18840. characterMakers.push(() => makeCharacter(
  18841. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18842. {
  18843. front: {
  18844. height: math.unit(7, "feet"),
  18845. weight: math.unit(120, "kg"),
  18846. name: "Front",
  18847. image: {
  18848. source: "./media/characters/taluthus/front.svg",
  18849. extra: 903 / 833,
  18850. bottom: 0.015
  18851. }
  18852. },
  18853. },
  18854. [
  18855. {
  18856. name: "Normal",
  18857. height: math.unit(7, "feet"),
  18858. default: true
  18859. },
  18860. {
  18861. name: "Macro",
  18862. height: math.unit(300, "feet")
  18863. },
  18864. ]
  18865. ))
  18866. characterMakers.push(() => makeCharacter(
  18867. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18868. {
  18869. front: {
  18870. height: math.unit(5 + 9 / 12, "feet"),
  18871. weight: math.unit(145, "lb"),
  18872. name: "Front",
  18873. image: {
  18874. source: "./media/characters/dawn/front.svg",
  18875. extra: 2094 / 2016,
  18876. bottom: 0.025
  18877. }
  18878. },
  18879. back: {
  18880. height: math.unit(5 + 9 / 12, "feet"),
  18881. weight: math.unit(160, "lb"),
  18882. name: "Back",
  18883. image: {
  18884. source: "./media/characters/dawn/back.svg",
  18885. extra: 2112 / 2080,
  18886. bottom: 0.005
  18887. }
  18888. },
  18889. },
  18890. [
  18891. {
  18892. name: "Normal",
  18893. height: math.unit(6 + 7 / 12, "feet"),
  18894. default: true
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18900. {
  18901. anthro: {
  18902. height: math.unit(8 + 3 / 12, "feet"),
  18903. weight: math.unit(450, "lb"),
  18904. name: "Anthro",
  18905. image: {
  18906. source: "./media/characters/arador/anthro.svg",
  18907. extra: 1835 / 1718,
  18908. bottom: 0.025
  18909. }
  18910. },
  18911. feral: {
  18912. height: math.unit(4, "feet"),
  18913. weight: math.unit(200, "lb"),
  18914. name: "Feral",
  18915. image: {
  18916. source: "./media/characters/arador/feral.svg",
  18917. extra: 1683 / 1514,
  18918. bottom: 0.07
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Normal",
  18925. height: math.unit(8 + 3 / 12, "feet")
  18926. },
  18927. {
  18928. name: "Macro",
  18929. height: math.unit(82.5, "feet"),
  18930. default: true
  18931. },
  18932. ]
  18933. ))
  18934. characterMakers.push(() => makeCharacter(
  18935. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18936. {
  18937. front: {
  18938. height: math.unit(5 + 10 / 12, "feet"),
  18939. weight: math.unit(125, "lb"),
  18940. name: "Front",
  18941. image: {
  18942. source: "./media/characters/dharsi/front.svg",
  18943. extra: 716 / 630,
  18944. bottom: 0.035
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Nano",
  18951. height: math.unit(100, "nm")
  18952. },
  18953. {
  18954. name: "Micro",
  18955. height: math.unit(2, "inches")
  18956. },
  18957. {
  18958. name: "Normal",
  18959. height: math.unit(5 + 10 / 12, "feet"),
  18960. default: true
  18961. },
  18962. {
  18963. name: "Macro",
  18964. height: math.unit(1000, "feet")
  18965. },
  18966. {
  18967. name: "Megamacro",
  18968. height: math.unit(10, "miles")
  18969. },
  18970. {
  18971. name: "Gigamacro",
  18972. height: math.unit(3000, "miles")
  18973. },
  18974. {
  18975. name: "Teramacro",
  18976. height: math.unit(500000, "miles")
  18977. },
  18978. {
  18979. name: "Teramacro+",
  18980. height: math.unit(30, "galaxies")
  18981. },
  18982. ]
  18983. ))
  18984. characterMakers.push(() => makeCharacter(
  18985. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  18986. {
  18987. front: {
  18988. height: math.unit(6, "feet"),
  18989. weight: math.unit(150, "lb"),
  18990. name: "Front",
  18991. image: {
  18992. source: "./media/characters/deathy/front.svg",
  18993. extra: 1552 / 1463,
  18994. bottom: 0.025
  18995. }
  18996. },
  18997. side: {
  18998. height: math.unit(6, "feet"),
  18999. weight: math.unit(150, "lb"),
  19000. name: "Side",
  19001. image: {
  19002. source: "./media/characters/deathy/side.svg",
  19003. extra: 1604 / 1455,
  19004. bottom: 0.025
  19005. }
  19006. },
  19007. back: {
  19008. height: math.unit(6, "feet"),
  19009. weight: math.unit(150, "lb"),
  19010. name: "Back",
  19011. image: {
  19012. source: "./media/characters/deathy/back.svg",
  19013. extra: 1580 / 1463,
  19014. bottom: 0.005
  19015. }
  19016. },
  19017. },
  19018. [
  19019. {
  19020. name: "Micro",
  19021. height: math.unit(5, "millimeters")
  19022. },
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(6 + 5 / 12, "feet"),
  19026. default: true
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19032. {
  19033. front: {
  19034. height: math.unit(16, "feet"),
  19035. weight: math.unit(4000, "lb"),
  19036. name: "Front",
  19037. image: {
  19038. source: "./media/characters/juniper/front.svg",
  19039. bottom: 0.04
  19040. }
  19041. },
  19042. },
  19043. [
  19044. {
  19045. name: "Normal",
  19046. height: math.unit(16, "feet"),
  19047. default: true
  19048. },
  19049. ]
  19050. ))
  19051. characterMakers.push(() => makeCharacter(
  19052. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19053. {
  19054. front: {
  19055. height: math.unit(6, "feet"),
  19056. weight: math.unit(150, "lb"),
  19057. name: "Front",
  19058. image: {
  19059. source: "./media/characters/hipster/front.svg",
  19060. extra: 1312 / 1209,
  19061. bottom: 0.025
  19062. }
  19063. },
  19064. back: {
  19065. height: math.unit(6, "feet"),
  19066. weight: math.unit(150, "lb"),
  19067. name: "Back",
  19068. image: {
  19069. source: "./media/characters/hipster/back.svg",
  19070. extra: 1281 / 1196,
  19071. bottom: 0.01
  19072. }
  19073. },
  19074. },
  19075. [
  19076. {
  19077. name: "Micro",
  19078. height: math.unit(1, "mm")
  19079. },
  19080. {
  19081. name: "Normal",
  19082. height: math.unit(4, "inches"),
  19083. default: true
  19084. },
  19085. {
  19086. name: "Macro",
  19087. height: math.unit(500, "feet")
  19088. },
  19089. {
  19090. name: "Megamacro",
  19091. height: math.unit(1000, "miles")
  19092. },
  19093. ]
  19094. ))
  19095. characterMakers.push(() => makeCharacter(
  19096. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19097. {
  19098. front: {
  19099. height: math.unit(6, "feet"),
  19100. weight: math.unit(150, "lb"),
  19101. name: "Front",
  19102. image: {
  19103. source: "./media/characters/tendirmuldr/front.svg",
  19104. extra: 1878 / 1772,
  19105. bottom: 0.015
  19106. }
  19107. },
  19108. },
  19109. [
  19110. {
  19111. name: "Megamacro",
  19112. height: math.unit(1500, "miles"),
  19113. default: true
  19114. },
  19115. ]
  19116. ))
  19117. characterMakers.push(() => makeCharacter(
  19118. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19119. {
  19120. front: {
  19121. height: math.unit(14, "feet"),
  19122. weight: math.unit(12000, "lb"),
  19123. name: "Front",
  19124. image: {
  19125. source: "./media/characters/mort/front.svg",
  19126. extra: 365 / 318,
  19127. bottom: 0.01
  19128. }
  19129. },
  19130. side: {
  19131. height: math.unit(14, "feet"),
  19132. weight: math.unit(12000, "lb"),
  19133. name: "Side",
  19134. image: {
  19135. source: "./media/characters/mort/side.svg",
  19136. extra: 365 / 318,
  19137. bottom: 0.052
  19138. },
  19139. default: true
  19140. },
  19141. back: {
  19142. height: math.unit(14, "feet"),
  19143. weight: math.unit(12000, "lb"),
  19144. name: "Back",
  19145. image: {
  19146. source: "./media/characters/mort/back.svg",
  19147. extra: 371 / 332,
  19148. bottom: 0.18
  19149. }
  19150. },
  19151. },
  19152. [
  19153. {
  19154. name: "Normal",
  19155. height: math.unit(14, "feet"),
  19156. default: true
  19157. },
  19158. ]
  19159. ))
  19160. characterMakers.push(() => makeCharacter(
  19161. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19162. {
  19163. front: {
  19164. height: math.unit(8, "feet"),
  19165. weight: math.unit(1, "ton"),
  19166. name: "Front",
  19167. image: {
  19168. source: "./media/characters/lycoa/front.svg",
  19169. extra: 1875 / 1789,
  19170. bottom: 0.022
  19171. }
  19172. },
  19173. back: {
  19174. height: math.unit(8, "feet"),
  19175. weight: math.unit(1, "ton"),
  19176. name: "Back",
  19177. image: {
  19178. source: "./media/characters/lycoa/back.svg",
  19179. extra: 1835 / 1781,
  19180. bottom: 0.03
  19181. }
  19182. },
  19183. head: {
  19184. height: math.unit(2.1, "feet"),
  19185. name: "Head",
  19186. image: {
  19187. source: "./media/characters/lycoa/head.svg"
  19188. }
  19189. },
  19190. tailmaw: {
  19191. height: math.unit(1.9, "feet"),
  19192. name: "Tailmaw",
  19193. image: {
  19194. source: "./media/characters/lycoa/tailmaw.svg"
  19195. }
  19196. },
  19197. tentacles: {
  19198. height: math.unit(2.1, "feet"),
  19199. name: "Tentacles",
  19200. image: {
  19201. source: "./media/characters/lycoa/tentacles.svg"
  19202. }
  19203. },
  19204. dick: {
  19205. height: math.unit(1.73, "feet"),
  19206. name: "Dick",
  19207. image: {
  19208. source: "./media/characters/lycoa/dick.svg"
  19209. }
  19210. },
  19211. },
  19212. [
  19213. {
  19214. name: "Normal",
  19215. height: math.unit(8, "feet"),
  19216. default: true
  19217. },
  19218. {
  19219. name: "Macro",
  19220. height: math.unit(30, "feet")
  19221. },
  19222. ]
  19223. ))
  19224. characterMakers.push(() => makeCharacter(
  19225. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19226. {
  19227. front: {
  19228. height: math.unit(4 + 2 / 12, "feet"),
  19229. weight: math.unit(70, "lb"),
  19230. name: "Front",
  19231. image: {
  19232. source: "./media/characters/naldara/front.svg",
  19233. extra: 841 / 720,
  19234. bottom: 0.04
  19235. }
  19236. },
  19237. naga: {
  19238. height: math.unit(23, "feet"),
  19239. weight: math.unit(15000, "kg"),
  19240. name: "Naga",
  19241. image: {
  19242. source: "./media/characters/naldara/naga.svg",
  19243. extra: 3290/2959,
  19244. bottom: 124/3432
  19245. }
  19246. },
  19247. },
  19248. [
  19249. {
  19250. name: "Normal",
  19251. height: math.unit(4 + 2 / 12, "feet"),
  19252. default: true
  19253. },
  19254. ]
  19255. ))
  19256. characterMakers.push(() => makeCharacter(
  19257. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19258. {
  19259. front: {
  19260. height: math.unit(13 + 7 / 12, "feet"),
  19261. weight: math.unit(1500, "lb"),
  19262. name: "Front",
  19263. image: {
  19264. source: "./media/characters/briar/front.svg",
  19265. extra: 626 / 596,
  19266. bottom: 0.08
  19267. }
  19268. },
  19269. },
  19270. [
  19271. {
  19272. name: "Normal",
  19273. height: math.unit(13 + 7 / 12, "feet"),
  19274. default: true
  19275. },
  19276. ]
  19277. ))
  19278. characterMakers.push(() => makeCharacter(
  19279. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19280. {
  19281. side: {
  19282. height: math.unit(10, "feet"),
  19283. weight: math.unit(500, "lb"),
  19284. name: "Side",
  19285. image: {
  19286. source: "./media/characters/vanguard/side.svg",
  19287. extra: 502 / 425,
  19288. bottom: 0.087
  19289. }
  19290. },
  19291. },
  19292. [
  19293. {
  19294. name: "Normal",
  19295. height: math.unit(10, "feet"),
  19296. default: true
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19302. {
  19303. front: {
  19304. height: math.unit(7.5, "feet"),
  19305. weight: math.unit(2, "lb"),
  19306. name: "Front",
  19307. image: {
  19308. source: "./media/characters/artemis/front.svg",
  19309. extra: 1192 / 1075,
  19310. bottom: 0.07
  19311. }
  19312. },
  19313. frontNsfw: {
  19314. height: math.unit(7.5, "feet"),
  19315. weight: math.unit(2, "lb"),
  19316. name: "Front (NSFW)",
  19317. image: {
  19318. source: "./media/characters/artemis/front-nsfw.svg",
  19319. extra: 1192 / 1075,
  19320. bottom: 0.07
  19321. }
  19322. },
  19323. frontNsfwer: {
  19324. height: math.unit(7.5, "feet"),
  19325. weight: math.unit(2, "lb"),
  19326. name: "Front (NSFW-er)",
  19327. image: {
  19328. source: "./media/characters/artemis/front-nsfwer.svg",
  19329. extra: 1192 / 1075,
  19330. bottom: 0.07
  19331. }
  19332. },
  19333. side: {
  19334. height: math.unit(7.5, "feet"),
  19335. weight: math.unit(2, "lb"),
  19336. name: "Side",
  19337. image: {
  19338. source: "./media/characters/artemis/side.svg",
  19339. extra: 1192 / 1075,
  19340. bottom: 0.07
  19341. }
  19342. },
  19343. sideNsfw: {
  19344. height: math.unit(7.5, "feet"),
  19345. weight: math.unit(2, "lb"),
  19346. name: "Side (NSFW)",
  19347. image: {
  19348. source: "./media/characters/artemis/side-nsfw.svg",
  19349. extra: 1192 / 1075,
  19350. bottom: 0.07
  19351. }
  19352. },
  19353. sideNsfwer: {
  19354. height: math.unit(7.5, "feet"),
  19355. weight: math.unit(2, "lb"),
  19356. name: "Side (NSFW-er)",
  19357. image: {
  19358. source: "./media/characters/artemis/side-nsfwer.svg",
  19359. extra: 1192 / 1075,
  19360. bottom: 0.07
  19361. }
  19362. },
  19363. maw: {
  19364. height: math.unit(1.1, "feet"),
  19365. name: "Maw",
  19366. image: {
  19367. source: "./media/characters/artemis/maw.svg"
  19368. }
  19369. },
  19370. stomach: {
  19371. height: math.unit(0.95, "feet"),
  19372. name: "Stomach",
  19373. image: {
  19374. source: "./media/characters/artemis/stomach.svg"
  19375. }
  19376. },
  19377. dickCanine: {
  19378. height: math.unit(1, "feet"),
  19379. name: "Dick (Canine)",
  19380. image: {
  19381. source: "./media/characters/artemis/dick-canine.svg"
  19382. }
  19383. },
  19384. dickEquine: {
  19385. height: math.unit(0.85, "feet"),
  19386. name: "Dick (Equine)",
  19387. image: {
  19388. source: "./media/characters/artemis/dick-equine.svg"
  19389. }
  19390. },
  19391. dickExotic: {
  19392. height: math.unit(0.85, "feet"),
  19393. name: "Dick (Exotic)",
  19394. image: {
  19395. source: "./media/characters/artemis/dick-exotic.svg"
  19396. }
  19397. },
  19398. },
  19399. [
  19400. {
  19401. name: "Normal",
  19402. height: math.unit(7.5, "feet"),
  19403. default: true
  19404. },
  19405. {
  19406. name: "Enlarged",
  19407. height: math.unit(12, "feet")
  19408. },
  19409. ]
  19410. ))
  19411. characterMakers.push(() => makeCharacter(
  19412. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19413. {
  19414. front: {
  19415. height: math.unit(5 + 3 / 12, "feet"),
  19416. weight: math.unit(160, "lb"),
  19417. name: "Front",
  19418. image: {
  19419. source: "./media/characters/kira/front.svg",
  19420. extra: 906 / 786,
  19421. bottom: 0.01
  19422. }
  19423. },
  19424. back: {
  19425. height: math.unit(5 + 3 / 12, "feet"),
  19426. weight: math.unit(160, "lb"),
  19427. name: "Back",
  19428. image: {
  19429. source: "./media/characters/kira/back.svg",
  19430. extra: 882 / 757,
  19431. bottom: 0.005
  19432. }
  19433. },
  19434. frontDressed: {
  19435. height: math.unit(5 + 3 / 12, "feet"),
  19436. weight: math.unit(160, "lb"),
  19437. name: "Front (Dressed)",
  19438. image: {
  19439. source: "./media/characters/kira/front-dressed.svg",
  19440. extra: 906 / 786,
  19441. bottom: 0.01
  19442. }
  19443. },
  19444. beans: {
  19445. height: math.unit(0.92, "feet"),
  19446. name: "Beans",
  19447. image: {
  19448. source: "./media/characters/kira/beans.svg"
  19449. }
  19450. },
  19451. },
  19452. [
  19453. {
  19454. name: "Normal",
  19455. height: math.unit(5 + 3 / 12, "feet"),
  19456. default: true
  19457. },
  19458. ]
  19459. ))
  19460. characterMakers.push(() => makeCharacter(
  19461. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19462. {
  19463. front: {
  19464. height: math.unit(5 + 4 / 12, "feet"),
  19465. weight: math.unit(145, "lb"),
  19466. name: "Front",
  19467. image: {
  19468. source: "./media/characters/scramble/front.svg",
  19469. extra: 763 / 727,
  19470. bottom: 0.05
  19471. }
  19472. },
  19473. back: {
  19474. height: math.unit(5 + 4 / 12, "feet"),
  19475. weight: math.unit(145, "lb"),
  19476. name: "Back",
  19477. image: {
  19478. source: "./media/characters/scramble/back.svg",
  19479. extra: 826 / 737,
  19480. bottom: 0.002
  19481. }
  19482. },
  19483. },
  19484. [
  19485. {
  19486. name: "Normal",
  19487. height: math.unit(5 + 4 / 12, "feet"),
  19488. default: true
  19489. },
  19490. ]
  19491. ))
  19492. characterMakers.push(() => makeCharacter(
  19493. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19494. {
  19495. side: {
  19496. height: math.unit(6 + 2 / 12, "feet"),
  19497. weight: math.unit(190, "lb"),
  19498. name: "Side",
  19499. image: {
  19500. source: "./media/characters/biscuit/side.svg",
  19501. extra: 858 / 791,
  19502. bottom: 0.044
  19503. }
  19504. },
  19505. },
  19506. [
  19507. {
  19508. name: "Normal",
  19509. height: math.unit(6 + 2 / 12, "feet"),
  19510. default: true
  19511. },
  19512. ]
  19513. ))
  19514. characterMakers.push(() => makeCharacter(
  19515. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19516. {
  19517. front: {
  19518. height: math.unit(5 + 2 / 12, "feet"),
  19519. weight: math.unit(120, "lb"),
  19520. name: "Front",
  19521. image: {
  19522. source: "./media/characters/poffin/front.svg",
  19523. extra: 786 / 680,
  19524. bottom: 0.005
  19525. }
  19526. },
  19527. },
  19528. [
  19529. {
  19530. name: "Normal",
  19531. height: math.unit(5 + 2 / 12, "feet"),
  19532. default: true
  19533. },
  19534. ]
  19535. ))
  19536. characterMakers.push(() => makeCharacter(
  19537. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19538. {
  19539. front: {
  19540. height: math.unit(6 + 3 / 12, "feet"),
  19541. weight: math.unit(519, "lb"),
  19542. name: "Front",
  19543. image: {
  19544. source: "./media/characters/dhari/front.svg",
  19545. extra: 1048 / 946,
  19546. bottom: 0.015
  19547. }
  19548. },
  19549. back: {
  19550. height: math.unit(6 + 3 / 12, "feet"),
  19551. weight: math.unit(519, "lb"),
  19552. name: "Back",
  19553. image: {
  19554. source: "./media/characters/dhari/back.svg",
  19555. extra: 1048 / 931,
  19556. bottom: 0.005
  19557. }
  19558. },
  19559. frontDressed: {
  19560. height: math.unit(6 + 3 / 12, "feet"),
  19561. weight: math.unit(519, "lb"),
  19562. name: "Front (Dressed)",
  19563. image: {
  19564. source: "./media/characters/dhari/front-dressed.svg",
  19565. extra: 1713 / 1546,
  19566. bottom: 0.02
  19567. }
  19568. },
  19569. backDressed: {
  19570. height: math.unit(6 + 3 / 12, "feet"),
  19571. weight: math.unit(519, "lb"),
  19572. name: "Back (Dressed)",
  19573. image: {
  19574. source: "./media/characters/dhari/back-dressed.svg",
  19575. extra: 1699 / 1537,
  19576. bottom: 0.01
  19577. }
  19578. },
  19579. maw: {
  19580. height: math.unit(0.95, "feet"),
  19581. name: "Maw",
  19582. image: {
  19583. source: "./media/characters/dhari/maw.svg"
  19584. }
  19585. },
  19586. wereFront: {
  19587. height: math.unit(12 + 8 / 12, "feet"),
  19588. weight: math.unit(4000, "lb"),
  19589. name: "Front (Were)",
  19590. image: {
  19591. source: "./media/characters/dhari/were-front.svg",
  19592. extra: 1065 / 969,
  19593. bottom: 0.015
  19594. }
  19595. },
  19596. wereBack: {
  19597. height: math.unit(12 + 8 / 12, "feet"),
  19598. weight: math.unit(4000, "lb"),
  19599. name: "Back (Were)",
  19600. image: {
  19601. source: "./media/characters/dhari/were-back.svg",
  19602. extra: 1065 / 969,
  19603. bottom: 0.012
  19604. }
  19605. },
  19606. wereMaw: {
  19607. height: math.unit(0.625, "meters"),
  19608. name: "Maw (Were)",
  19609. image: {
  19610. source: "./media/characters/dhari/were-maw.svg"
  19611. }
  19612. },
  19613. },
  19614. [
  19615. {
  19616. name: "Normal",
  19617. height: math.unit(6 + 3 / 12, "feet"),
  19618. default: true
  19619. },
  19620. ]
  19621. ))
  19622. characterMakers.push(() => makeCharacter(
  19623. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19624. {
  19625. anthro: {
  19626. height: math.unit(5 + 7 / 12, "feet"),
  19627. weight: math.unit(175, "lb"),
  19628. name: "Anthro",
  19629. image: {
  19630. source: "./media/characters/rena-dyne/anthro.svg",
  19631. extra: 1849 / 1785,
  19632. bottom: 0.005
  19633. }
  19634. },
  19635. taur: {
  19636. height: math.unit(15 + 6 / 12, "feet"),
  19637. weight: math.unit(8000, "lb"),
  19638. name: "Taur",
  19639. image: {
  19640. source: "./media/characters/rena-dyne/taur.svg",
  19641. extra: 2315 / 2234,
  19642. bottom: 0.033
  19643. }
  19644. },
  19645. },
  19646. [
  19647. {
  19648. name: "Normal",
  19649. height: math.unit(5 + 7 / 12, "feet"),
  19650. default: true
  19651. },
  19652. ]
  19653. ))
  19654. characterMakers.push(() => makeCharacter(
  19655. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19656. {
  19657. front: {
  19658. height: math.unit(8, "feet"),
  19659. weight: math.unit(600, "lb"),
  19660. name: "Front",
  19661. image: {
  19662. source: "./media/characters/weremeep/front.svg",
  19663. extra: 967 / 862,
  19664. bottom: 0.01
  19665. }
  19666. },
  19667. },
  19668. [
  19669. {
  19670. name: "Normal",
  19671. height: math.unit(8, "feet"),
  19672. default: true
  19673. },
  19674. {
  19675. name: "Lorg",
  19676. height: math.unit(12, "feet")
  19677. },
  19678. {
  19679. name: "Oh Lawd She Comin'",
  19680. height: math.unit(20, "feet")
  19681. },
  19682. ]
  19683. ))
  19684. characterMakers.push(() => makeCharacter(
  19685. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19686. {
  19687. front: {
  19688. height: math.unit(4, "feet"),
  19689. weight: math.unit(90, "lb"),
  19690. name: "Front",
  19691. image: {
  19692. source: "./media/characters/reza/front.svg",
  19693. extra: 1183 / 1111,
  19694. bottom: 0.017
  19695. }
  19696. },
  19697. back: {
  19698. height: math.unit(4, "feet"),
  19699. weight: math.unit(90, "lb"),
  19700. name: "Back",
  19701. image: {
  19702. source: "./media/characters/reza/back.svg",
  19703. extra: 1183 / 1111,
  19704. bottom: 0.01
  19705. }
  19706. },
  19707. drake: {
  19708. height: math.unit(30, "feet"),
  19709. weight: math.unit(246960, "lb"),
  19710. name: "Drake",
  19711. image: {
  19712. source: "./media/characters/reza/drake.svg",
  19713. extra: 2350 / 2024,
  19714. bottom: 60.7 / 2403
  19715. }
  19716. },
  19717. },
  19718. [
  19719. {
  19720. name: "Normal",
  19721. height: math.unit(4, "feet"),
  19722. default: true
  19723. },
  19724. ]
  19725. ))
  19726. characterMakers.push(() => makeCharacter(
  19727. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19728. {
  19729. side: {
  19730. height: math.unit(15, "feet"),
  19731. weight: math.unit(14, "tons"),
  19732. name: "Side",
  19733. image: {
  19734. source: "./media/characters/athea/side.svg",
  19735. extra: 960 / 540,
  19736. bottom: 0.003
  19737. }
  19738. },
  19739. sitting: {
  19740. height: math.unit(6 * 2.85, "feet"),
  19741. weight: math.unit(14, "tons"),
  19742. name: "Sitting",
  19743. image: {
  19744. source: "./media/characters/athea/sitting.svg",
  19745. extra: 621 / 581,
  19746. bottom: 0.075
  19747. }
  19748. },
  19749. maw: {
  19750. height: math.unit(7.59498031496063, "feet"),
  19751. name: "Maw",
  19752. image: {
  19753. source: "./media/characters/athea/maw.svg"
  19754. }
  19755. },
  19756. },
  19757. [
  19758. {
  19759. name: "Lap Cat",
  19760. height: math.unit(2.5, "feet")
  19761. },
  19762. {
  19763. name: "Minimacro",
  19764. height: math.unit(15, "feet"),
  19765. default: true
  19766. },
  19767. {
  19768. name: "Macro",
  19769. height: math.unit(120, "feet")
  19770. },
  19771. {
  19772. name: "Macro+",
  19773. height: math.unit(640, "feet")
  19774. },
  19775. {
  19776. name: "Colossus",
  19777. height: math.unit(2.2, "miles")
  19778. },
  19779. ]
  19780. ))
  19781. characterMakers.push(() => makeCharacter(
  19782. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19783. {
  19784. front: {
  19785. height: math.unit(8 + 8 / 12, "feet"),
  19786. weight: math.unit(130, "kg"),
  19787. name: "Front",
  19788. image: {
  19789. source: "./media/characters/seroko/front.svg",
  19790. extra: 1385 / 1280,
  19791. bottom: 0.025
  19792. }
  19793. },
  19794. back: {
  19795. height: math.unit(8 + 8 / 12, "feet"),
  19796. weight: math.unit(130, "kg"),
  19797. name: "Back",
  19798. image: {
  19799. source: "./media/characters/seroko/back.svg",
  19800. extra: 1369 / 1238,
  19801. bottom: 0.018
  19802. }
  19803. },
  19804. frontDressed: {
  19805. height: math.unit(8 + 8 / 12, "feet"),
  19806. weight: math.unit(130, "kg"),
  19807. name: "Front (Dressed)",
  19808. image: {
  19809. source: "./media/characters/seroko/front-dressed.svg",
  19810. extra: 1366 / 1275,
  19811. bottom: 0.03
  19812. }
  19813. },
  19814. },
  19815. [
  19816. {
  19817. name: "Normal",
  19818. height: math.unit(8 + 8 / 12, "feet"),
  19819. default: true
  19820. },
  19821. ]
  19822. ))
  19823. characterMakers.push(() => makeCharacter(
  19824. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19825. {
  19826. front: {
  19827. height: math.unit(5.5, "feet"),
  19828. weight: math.unit(160, "lb"),
  19829. name: "Front",
  19830. image: {
  19831. source: "./media/characters/quatzi/front.svg",
  19832. extra: 2346 / 2242,
  19833. bottom: 0.015
  19834. }
  19835. },
  19836. },
  19837. [
  19838. {
  19839. name: "Normal",
  19840. height: math.unit(5.5, "feet"),
  19841. default: true
  19842. },
  19843. {
  19844. name: "Big",
  19845. height: math.unit(7.7, "feet")
  19846. },
  19847. ]
  19848. ))
  19849. characterMakers.push(() => makeCharacter(
  19850. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19851. {
  19852. front: {
  19853. height: math.unit(5 + 11 / 12, "feet"),
  19854. weight: math.unit(180, "lb"),
  19855. name: "Front",
  19856. image: {
  19857. source: "./media/characters/sen/front.svg",
  19858. extra: 1321 / 1254,
  19859. bottom: 0.015
  19860. }
  19861. },
  19862. side: {
  19863. height: math.unit(5 + 11 / 12, "feet"),
  19864. weight: math.unit(180, "lb"),
  19865. name: "Side",
  19866. image: {
  19867. source: "./media/characters/sen/side.svg",
  19868. extra: 1321 / 1254,
  19869. bottom: 0.007
  19870. }
  19871. },
  19872. back: {
  19873. height: math.unit(5 + 11 / 12, "feet"),
  19874. weight: math.unit(180, "lb"),
  19875. name: "Back",
  19876. image: {
  19877. source: "./media/characters/sen/back.svg",
  19878. extra: 1321 / 1254
  19879. }
  19880. },
  19881. },
  19882. [
  19883. {
  19884. name: "Normal",
  19885. height: math.unit(5 + 11 / 12, "feet"),
  19886. default: true
  19887. },
  19888. ]
  19889. ))
  19890. characterMakers.push(() => makeCharacter(
  19891. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19892. {
  19893. front: {
  19894. height: math.unit(166.6, "cm"),
  19895. weight: math.unit(66.6, "kg"),
  19896. name: "Front",
  19897. image: {
  19898. source: "./media/characters/fruity/front.svg",
  19899. extra: 1510 / 1386,
  19900. bottom: 0.04
  19901. }
  19902. },
  19903. back: {
  19904. height: math.unit(166.6, "cm"),
  19905. weight: math.unit(66.6, "lb"),
  19906. name: "Back",
  19907. image: {
  19908. source: "./media/characters/fruity/back.svg",
  19909. extra: 1563 / 1435,
  19910. bottom: 0.005
  19911. }
  19912. },
  19913. },
  19914. [
  19915. {
  19916. name: "Normal",
  19917. height: math.unit(166.6, "cm"),
  19918. default: true
  19919. },
  19920. {
  19921. name: "Demonic",
  19922. height: math.unit(166.6, "feet")
  19923. },
  19924. ]
  19925. ))
  19926. characterMakers.push(() => makeCharacter(
  19927. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19928. {
  19929. side: {
  19930. height: math.unit(10, "feet"),
  19931. weight: math.unit(500, "lb"),
  19932. name: "Side",
  19933. image: {
  19934. source: "./media/characters/zost/side.svg",
  19935. extra: 966 / 880,
  19936. bottom: 0.075
  19937. }
  19938. },
  19939. mawFront: {
  19940. height: math.unit(1.08, "meters"),
  19941. name: "Maw (Front)",
  19942. image: {
  19943. source: "./media/characters/zost/maw-front.svg"
  19944. }
  19945. },
  19946. mawSide: {
  19947. height: math.unit(2.66, "feet"),
  19948. name: "Maw (Side)",
  19949. image: {
  19950. source: "./media/characters/zost/maw-side.svg"
  19951. }
  19952. },
  19953. },
  19954. [
  19955. {
  19956. name: "Normal",
  19957. height: math.unit(10, "feet"),
  19958. default: true
  19959. },
  19960. ]
  19961. ))
  19962. characterMakers.push(() => makeCharacter(
  19963. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  19964. {
  19965. front: {
  19966. height: math.unit(5 + 4 / 12, "feet"),
  19967. weight: math.unit(120, "lb"),
  19968. name: "Front",
  19969. image: {
  19970. source: "./media/characters/luci/front.svg",
  19971. extra: 1985 / 1884,
  19972. bottom: 0.04
  19973. }
  19974. },
  19975. back: {
  19976. height: math.unit(5 + 4 / 12, "feet"),
  19977. weight: math.unit(120, "lb"),
  19978. name: "Back",
  19979. image: {
  19980. source: "./media/characters/luci/back.svg",
  19981. extra: 1892 / 1791,
  19982. bottom: 0.002
  19983. }
  19984. },
  19985. },
  19986. [
  19987. {
  19988. name: "Normal",
  19989. height: math.unit(5 + 4 / 12, "feet"),
  19990. default: true
  19991. },
  19992. ]
  19993. ))
  19994. characterMakers.push(() => makeCharacter(
  19995. { name: "2th", species: ["monster"], tags: ["anthro"] },
  19996. {
  19997. front: {
  19998. height: math.unit(1500, "feet"),
  19999. weight: math.unit(3.8e6, "tons"),
  20000. name: "Front",
  20001. image: {
  20002. source: "./media/characters/2th/front.svg",
  20003. extra: 3489 / 3350,
  20004. bottom: 0.1
  20005. }
  20006. },
  20007. foot: {
  20008. height: math.unit(461, "feet"),
  20009. name: "Foot",
  20010. image: {
  20011. source: "./media/characters/2th/foot.svg"
  20012. }
  20013. },
  20014. },
  20015. [
  20016. {
  20017. name: "\"Micro\"",
  20018. height: math.unit(15 + 7 / 12, "feet")
  20019. },
  20020. {
  20021. name: "Normal",
  20022. height: math.unit(1500, "feet"),
  20023. default: true
  20024. },
  20025. {
  20026. name: "Macro",
  20027. height: math.unit(5000, "feet")
  20028. },
  20029. {
  20030. name: "Megamacro",
  20031. height: math.unit(15, "miles")
  20032. },
  20033. {
  20034. name: "Gigamacro",
  20035. height: math.unit(4000, "miles")
  20036. },
  20037. {
  20038. name: "Galactic",
  20039. height: math.unit(50, "AU")
  20040. },
  20041. ]
  20042. ))
  20043. characterMakers.push(() => makeCharacter(
  20044. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20045. {
  20046. front: {
  20047. height: math.unit(5 + 6 / 12, "feet"),
  20048. weight: math.unit(220, "lb"),
  20049. name: "Front",
  20050. image: {
  20051. source: "./media/characters/amethyst/front.svg",
  20052. extra: 2078 / 2040,
  20053. bottom: 0.045
  20054. }
  20055. },
  20056. back: {
  20057. height: math.unit(5 + 6 / 12, "feet"),
  20058. weight: math.unit(220, "lb"),
  20059. name: "Back",
  20060. image: {
  20061. source: "./media/characters/amethyst/back.svg",
  20062. extra: 2021 / 1989,
  20063. bottom: 0.02
  20064. }
  20065. },
  20066. },
  20067. [
  20068. {
  20069. name: "Normal",
  20070. height: math.unit(5 + 6 / 12, "feet"),
  20071. default: true
  20072. },
  20073. ]
  20074. ))
  20075. characterMakers.push(() => makeCharacter(
  20076. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20077. {
  20078. front: {
  20079. height: math.unit(4 + 11 / 12, "feet"),
  20080. weight: math.unit(120, "lb"),
  20081. name: "Front",
  20082. image: {
  20083. source: "./media/characters/yumi-akiyama/front.svg",
  20084. extra: 1327 / 1235,
  20085. bottom: 0.02
  20086. }
  20087. },
  20088. back: {
  20089. height: math.unit(4 + 11 / 12, "feet"),
  20090. weight: math.unit(120, "lb"),
  20091. name: "Back",
  20092. image: {
  20093. source: "./media/characters/yumi-akiyama/back.svg",
  20094. extra: 1287 / 1245,
  20095. bottom: 0.002
  20096. }
  20097. },
  20098. },
  20099. [
  20100. {
  20101. name: "Galactic",
  20102. height: math.unit(50, "galaxies"),
  20103. default: true
  20104. },
  20105. {
  20106. name: "Universal",
  20107. height: math.unit(100, "universes")
  20108. },
  20109. ]
  20110. ))
  20111. characterMakers.push(() => makeCharacter(
  20112. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20113. {
  20114. front: {
  20115. height: math.unit(8, "feet"),
  20116. weight: math.unit(500, "lb"),
  20117. name: "Front",
  20118. image: {
  20119. source: "./media/characters/rifter-yrmori/front.svg",
  20120. extra: 1180 / 1125,
  20121. bottom: 0.02
  20122. }
  20123. },
  20124. back: {
  20125. height: math.unit(8, "feet"),
  20126. weight: math.unit(500, "lb"),
  20127. name: "Back",
  20128. image: {
  20129. source: "./media/characters/rifter-yrmori/back.svg",
  20130. extra: 1190 / 1145,
  20131. bottom: 0.001
  20132. }
  20133. },
  20134. wings: {
  20135. height: math.unit(7.75, "feet"),
  20136. weight: math.unit(500, "lb"),
  20137. name: "Wings",
  20138. image: {
  20139. source: "./media/characters/rifter-yrmori/wings.svg",
  20140. extra: 1357 / 1285
  20141. }
  20142. },
  20143. maw: {
  20144. height: math.unit(0.8, "feet"),
  20145. name: "Maw",
  20146. image: {
  20147. source: "./media/characters/rifter-yrmori/maw.svg"
  20148. }
  20149. },
  20150. },
  20151. [
  20152. {
  20153. name: "Normal",
  20154. height: math.unit(8, "feet"),
  20155. default: true
  20156. },
  20157. {
  20158. name: "Macro",
  20159. height: math.unit(42, "meters")
  20160. },
  20161. ]
  20162. ))
  20163. characterMakers.push(() => makeCharacter(
  20164. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20165. {
  20166. were: {
  20167. height: math.unit(25 + 6 / 12, "feet"),
  20168. weight: math.unit(10000, "lb"),
  20169. name: "Were",
  20170. image: {
  20171. source: "./media/characters/tahajin/were.svg",
  20172. extra: 801 / 770,
  20173. bottom: 0.042
  20174. }
  20175. },
  20176. aquatic: {
  20177. height: math.unit(6 + 4 / 12, "feet"),
  20178. weight: math.unit(160, "lb"),
  20179. name: "Aquatic",
  20180. image: {
  20181. source: "./media/characters/tahajin/aquatic.svg",
  20182. extra: 572 / 542,
  20183. bottom: 0.04
  20184. }
  20185. },
  20186. chow: {
  20187. height: math.unit(8 + 11 / 12, "feet"),
  20188. weight: math.unit(450, "lb"),
  20189. name: "Chow",
  20190. image: {
  20191. source: "./media/characters/tahajin/chow.svg",
  20192. extra: 660 / 640,
  20193. bottom: 0.015
  20194. }
  20195. },
  20196. demiNaga: {
  20197. height: math.unit(6 + 8 / 12, "feet"),
  20198. weight: math.unit(300, "lb"),
  20199. name: "Demi Naga",
  20200. image: {
  20201. source: "./media/characters/tahajin/demi-naga.svg",
  20202. extra: 643 / 615,
  20203. bottom: 0.1
  20204. }
  20205. },
  20206. data: {
  20207. height: math.unit(5, "inches"),
  20208. weight: math.unit(0.1, "lb"),
  20209. name: "Data",
  20210. image: {
  20211. source: "./media/characters/tahajin/data.svg"
  20212. }
  20213. },
  20214. fluu: {
  20215. height: math.unit(5 + 7 / 12, "feet"),
  20216. weight: math.unit(140, "lb"),
  20217. name: "Fluu",
  20218. image: {
  20219. source: "./media/characters/tahajin/fluu.svg",
  20220. extra: 628 / 592,
  20221. bottom: 0.02
  20222. }
  20223. },
  20224. starWarrior: {
  20225. height: math.unit(4 + 5 / 12, "feet"),
  20226. weight: math.unit(50, "lb"),
  20227. name: "Star Warrior",
  20228. image: {
  20229. source: "./media/characters/tahajin/star-warrior.svg"
  20230. }
  20231. },
  20232. },
  20233. [
  20234. {
  20235. name: "Normal",
  20236. height: math.unit(25 + 6 / 12, "feet"),
  20237. default: true
  20238. },
  20239. ]
  20240. ))
  20241. characterMakers.push(() => makeCharacter(
  20242. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20243. {
  20244. front: {
  20245. height: math.unit(8, "feet"),
  20246. weight: math.unit(350, "lb"),
  20247. name: "Front",
  20248. image: {
  20249. source: "./media/characters/gabira/front.svg",
  20250. extra: 608 / 580,
  20251. bottom: 0.03
  20252. }
  20253. },
  20254. back: {
  20255. height: math.unit(8, "feet"),
  20256. weight: math.unit(350, "lb"),
  20257. name: "Back",
  20258. image: {
  20259. source: "./media/characters/gabira/back.svg",
  20260. extra: 608 / 580,
  20261. bottom: 0.03
  20262. }
  20263. },
  20264. },
  20265. [
  20266. {
  20267. name: "Normal",
  20268. height: math.unit(8, "feet"),
  20269. default: true
  20270. },
  20271. ]
  20272. ))
  20273. characterMakers.push(() => makeCharacter(
  20274. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20275. {
  20276. front: {
  20277. height: math.unit(5 + 3 / 12, "feet"),
  20278. weight: math.unit(137, "lb"),
  20279. name: "Front",
  20280. image: {
  20281. source: "./media/characters/sasha-katraine/front.svg",
  20282. bottom: 0.045
  20283. }
  20284. },
  20285. },
  20286. [
  20287. {
  20288. name: "Micro",
  20289. height: math.unit(5, "inches")
  20290. },
  20291. {
  20292. name: "Normal",
  20293. height: math.unit(5 + 3 / 12, "feet"),
  20294. default: true
  20295. },
  20296. ]
  20297. ))
  20298. characterMakers.push(() => makeCharacter(
  20299. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20300. {
  20301. side: {
  20302. height: math.unit(4, "inches"),
  20303. weight: math.unit(200, "grams"),
  20304. name: "Side",
  20305. image: {
  20306. source: "./media/characters/der/side.svg",
  20307. extra: 719 / 400,
  20308. bottom: 30.6 / 749.9187
  20309. }
  20310. },
  20311. },
  20312. [
  20313. {
  20314. name: "Micro",
  20315. height: math.unit(4, "inches"),
  20316. default: true
  20317. },
  20318. ]
  20319. ))
  20320. characterMakers.push(() => makeCharacter(
  20321. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20322. {
  20323. side: {
  20324. height: math.unit(30, "meters"),
  20325. weight: math.unit(700, "tonnes"),
  20326. name: "Side",
  20327. image: {
  20328. source: "./media/characters/fixerdragon/side.svg",
  20329. extra: (1293.0514 - 116.03) / 1106.86,
  20330. bottom: 116.03 / 1293.0514
  20331. }
  20332. },
  20333. },
  20334. [
  20335. {
  20336. name: "Planck",
  20337. height: math.unit(1.6e-35, "meters")
  20338. },
  20339. {
  20340. name: "Micro",
  20341. height: math.unit(0.4, "meters")
  20342. },
  20343. {
  20344. name: "Normal",
  20345. height: math.unit(30, "meters"),
  20346. default: true
  20347. },
  20348. {
  20349. name: "Megamacro",
  20350. height: math.unit(1.2, "megameters")
  20351. },
  20352. {
  20353. name: "Teramacro",
  20354. height: math.unit(130, "terameters")
  20355. },
  20356. {
  20357. name: "Yottamacro",
  20358. height: math.unit(6200, "yottameters")
  20359. },
  20360. ]
  20361. ));
  20362. characterMakers.push(() => makeCharacter(
  20363. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20364. {
  20365. front: {
  20366. height: math.unit(8, "feet"),
  20367. weight: math.unit(250, "lb"),
  20368. name: "Front",
  20369. image: {
  20370. source: "./media/characters/kite/front.svg",
  20371. extra: 2796 / 2659,
  20372. bottom: 0.002
  20373. }
  20374. },
  20375. },
  20376. [
  20377. {
  20378. name: "Normal",
  20379. height: math.unit(8, "feet"),
  20380. default: true
  20381. },
  20382. {
  20383. name: "Macro",
  20384. height: math.unit(360, "feet")
  20385. },
  20386. {
  20387. name: "Megamacro",
  20388. height: math.unit(1500, "feet")
  20389. },
  20390. ]
  20391. ))
  20392. characterMakers.push(() => makeCharacter(
  20393. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20394. {
  20395. front: {
  20396. height: math.unit(5 + 10 / 12, "feet"),
  20397. weight: math.unit(150, "lb"),
  20398. name: "Front",
  20399. image: {
  20400. source: "./media/characters/poojawa-vynar/front.svg",
  20401. extra: (1506.1547 - 55) / 1356.6,
  20402. bottom: 55 / 1506.1547
  20403. }
  20404. },
  20405. frontTailless: {
  20406. height: math.unit(5 + 10 / 12, "feet"),
  20407. weight: math.unit(150, "lb"),
  20408. name: "Front (Tailless)",
  20409. image: {
  20410. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20411. extra: (1506.1547 - 55) / 1356.6,
  20412. bottom: 55 / 1506.1547
  20413. }
  20414. },
  20415. },
  20416. [
  20417. {
  20418. name: "Normal",
  20419. height: math.unit(5 + 10 / 12, "feet"),
  20420. default: true
  20421. },
  20422. ]
  20423. ))
  20424. characterMakers.push(() => makeCharacter(
  20425. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20426. {
  20427. front: {
  20428. height: math.unit(293, "meters"),
  20429. weight: math.unit(70400, "tons"),
  20430. name: "Front",
  20431. image: {
  20432. source: "./media/characters/violette/front.svg",
  20433. extra: 1227 / 1180,
  20434. bottom: 0.005
  20435. }
  20436. },
  20437. back: {
  20438. height: math.unit(293, "meters"),
  20439. weight: math.unit(70400, "tons"),
  20440. name: "Back",
  20441. image: {
  20442. source: "./media/characters/violette/back.svg",
  20443. extra: 1227 / 1180,
  20444. bottom: 0.005
  20445. }
  20446. },
  20447. },
  20448. [
  20449. {
  20450. name: "Macro",
  20451. height: math.unit(293, "meters"),
  20452. default: true
  20453. },
  20454. ]
  20455. ))
  20456. characterMakers.push(() => makeCharacter(
  20457. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20458. {
  20459. front: {
  20460. height: math.unit(1050, "feet"),
  20461. weight: math.unit(200000, "tons"),
  20462. name: "Front",
  20463. image: {
  20464. source: "./media/characters/alessandra/front.svg",
  20465. extra: 960 / 912,
  20466. bottom: 0.06
  20467. }
  20468. },
  20469. },
  20470. [
  20471. {
  20472. name: "Macro",
  20473. height: math.unit(1050, "feet")
  20474. },
  20475. {
  20476. name: "Macro+",
  20477. height: math.unit(900, "meters"),
  20478. default: true
  20479. },
  20480. ]
  20481. ))
  20482. characterMakers.push(() => makeCharacter(
  20483. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20484. {
  20485. front: {
  20486. height: math.unit(5, "feet"),
  20487. weight: math.unit(187, "lb"),
  20488. name: "Front",
  20489. image: {
  20490. source: "./media/characters/person/front.svg",
  20491. extra: 3087 / 2945,
  20492. bottom: 91 / 3181
  20493. }
  20494. },
  20495. },
  20496. [
  20497. {
  20498. name: "Micro",
  20499. height: math.unit(3, "inches")
  20500. },
  20501. {
  20502. name: "Normal",
  20503. height: math.unit(5, "feet"),
  20504. default: true
  20505. },
  20506. {
  20507. name: "Macro",
  20508. height: math.unit(90, "feet")
  20509. },
  20510. {
  20511. name: "Max Size",
  20512. height: math.unit(280, "feet")
  20513. },
  20514. ]
  20515. ))
  20516. characterMakers.push(() => makeCharacter(
  20517. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20518. {
  20519. front: {
  20520. height: math.unit(4.5, "meters"),
  20521. weight: math.unit(3200, "lb"),
  20522. name: "Front",
  20523. image: {
  20524. source: "./media/characters/ty/front.svg",
  20525. extra: 1038 / 960,
  20526. bottom: 31.156 / 1068
  20527. }
  20528. },
  20529. back: {
  20530. height: math.unit(4.5, "meters"),
  20531. weight: math.unit(3200, "lb"),
  20532. name: "Back",
  20533. image: {
  20534. source: "./media/characters/ty/back.svg",
  20535. extra: 1044 / 966,
  20536. bottom: 7.48 / 1049
  20537. }
  20538. },
  20539. },
  20540. [
  20541. {
  20542. name: "Normal",
  20543. height: math.unit(4.5, "meters"),
  20544. default: true
  20545. },
  20546. ]
  20547. ))
  20548. characterMakers.push(() => makeCharacter(
  20549. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20550. {
  20551. front: {
  20552. height: math.unit(5 + 4 / 12, "feet"),
  20553. weight: math.unit(115, "lb"),
  20554. name: "Front",
  20555. image: {
  20556. source: "./media/characters/rocky/front.svg",
  20557. extra: 1012 / 975,
  20558. bottom: 54 / 1066
  20559. }
  20560. },
  20561. },
  20562. [
  20563. {
  20564. name: "Normal",
  20565. height: math.unit(5 + 4 / 12, "feet"),
  20566. default: true
  20567. },
  20568. ]
  20569. ))
  20570. characterMakers.push(() => makeCharacter(
  20571. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20572. {
  20573. upright: {
  20574. height: math.unit(6, "meters"),
  20575. weight: math.unit(4000, "kg"),
  20576. name: "Upright",
  20577. image: {
  20578. source: "./media/characters/ruin/upright.svg",
  20579. extra: 668 / 661,
  20580. bottom: 42 / 799.8396
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "Normal",
  20587. height: math.unit(6, "meters"),
  20588. default: true
  20589. },
  20590. ]
  20591. ))
  20592. characterMakers.push(() => makeCharacter(
  20593. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20594. {
  20595. front: {
  20596. height: math.unit(5, "feet"),
  20597. weight: math.unit(106, "lb"),
  20598. name: "Front",
  20599. image: {
  20600. source: "./media/characters/robin/front.svg",
  20601. extra: 862 / 799,
  20602. bottom: 42.4 / 914.8856
  20603. }
  20604. },
  20605. },
  20606. [
  20607. {
  20608. name: "Normal",
  20609. height: math.unit(5, "feet"),
  20610. default: true
  20611. },
  20612. ]
  20613. ))
  20614. characterMakers.push(() => makeCharacter(
  20615. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20616. {
  20617. side: {
  20618. height: math.unit(3, "feet"),
  20619. weight: math.unit(225, "lb"),
  20620. name: "Side",
  20621. image: {
  20622. source: "./media/characters/saian/side.svg",
  20623. extra: 566 / 356,
  20624. bottom: 79.7 / 643
  20625. }
  20626. },
  20627. maw: {
  20628. height: math.unit(2.85, "feet"),
  20629. name: "Maw",
  20630. image: {
  20631. source: "./media/characters/saian/maw.svg"
  20632. }
  20633. },
  20634. },
  20635. [
  20636. {
  20637. name: "Normal",
  20638. height: math.unit(3, "feet"),
  20639. default: true
  20640. },
  20641. ]
  20642. ))
  20643. characterMakers.push(() => makeCharacter(
  20644. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20645. {
  20646. side: {
  20647. height: math.unit(8, "feet"),
  20648. weight: math.unit(300, "lb"),
  20649. name: "Side",
  20650. image: {
  20651. source: "./media/characters/equus-silvermane/side.svg",
  20652. extra: 2176 / 2050,
  20653. bottom: 65.7 / 2245
  20654. }
  20655. },
  20656. front: {
  20657. height: math.unit(8, "feet"),
  20658. weight: math.unit(300, "lb"),
  20659. name: "Front",
  20660. image: {
  20661. source: "./media/characters/equus-silvermane/front.svg",
  20662. extra: 4633 / 4400,
  20663. bottom: 71.3 / 4706.915
  20664. }
  20665. },
  20666. sideStepping: {
  20667. height: math.unit(8, "feet"),
  20668. weight: math.unit(300, "lb"),
  20669. name: "Side (Stepping)",
  20670. image: {
  20671. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20672. extra: 1968 / 1860,
  20673. bottom: 16.4 / 1989
  20674. }
  20675. },
  20676. },
  20677. [
  20678. {
  20679. name: "Normal",
  20680. height: math.unit(8, "feet")
  20681. },
  20682. {
  20683. name: "Minimacro",
  20684. height: math.unit(75, "feet"),
  20685. default: true
  20686. },
  20687. {
  20688. name: "Macro",
  20689. height: math.unit(150, "feet")
  20690. },
  20691. {
  20692. name: "Macro+",
  20693. height: math.unit(1000, "feet")
  20694. },
  20695. {
  20696. name: "Megamacro",
  20697. height: math.unit(1, "mile")
  20698. },
  20699. ]
  20700. ))
  20701. characterMakers.push(() => makeCharacter(
  20702. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20703. {
  20704. side: {
  20705. height: math.unit(20, "feet"),
  20706. weight: math.unit(30000, "kg"),
  20707. name: "Side",
  20708. image: {
  20709. source: "./media/characters/windar/side.svg",
  20710. extra: 1491 / 1248,
  20711. bottom: 82.56 / 1568
  20712. }
  20713. },
  20714. },
  20715. [
  20716. {
  20717. name: "Normal",
  20718. height: math.unit(20, "feet"),
  20719. default: true
  20720. },
  20721. ]
  20722. ))
  20723. characterMakers.push(() => makeCharacter(
  20724. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20725. {
  20726. side: {
  20727. height: math.unit(15.66, "feet"),
  20728. weight: math.unit(150, "lb"),
  20729. name: "Side",
  20730. image: {
  20731. source: "./media/characters/melody/side.svg",
  20732. extra: 1097 / 944,
  20733. bottom: 11.8 / 1109
  20734. }
  20735. },
  20736. sideOutfit: {
  20737. height: math.unit(15.66, "feet"),
  20738. weight: math.unit(150, "lb"),
  20739. name: "Side (Outfit)",
  20740. image: {
  20741. source: "./media/characters/melody/side-outfit.svg",
  20742. extra: 1097 / 944,
  20743. bottom: 11.8 / 1109
  20744. }
  20745. },
  20746. },
  20747. [
  20748. {
  20749. name: "Normal",
  20750. height: math.unit(15.66, "feet"),
  20751. default: true
  20752. },
  20753. ]
  20754. ))
  20755. characterMakers.push(() => makeCharacter(
  20756. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20757. {
  20758. front: {
  20759. height: math.unit(8, "feet"),
  20760. weight: math.unit(325, "lb"),
  20761. name: "Front",
  20762. image: {
  20763. source: "./media/characters/windera/front.svg",
  20764. extra: 3180 / 2845,
  20765. bottom: 178 / 3365
  20766. }
  20767. },
  20768. },
  20769. [
  20770. {
  20771. name: "Normal",
  20772. height: math.unit(8, "feet"),
  20773. default: true
  20774. },
  20775. ]
  20776. ))
  20777. characterMakers.push(() => makeCharacter(
  20778. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20779. {
  20780. front: {
  20781. height: math.unit(28.75, "feet"),
  20782. weight: math.unit(2000, "kg"),
  20783. name: "Front",
  20784. image: {
  20785. source: "./media/characters/sonear/front.svg",
  20786. extra: 1041.1 / 964.9,
  20787. bottom: 53.7 / 1096.6
  20788. }
  20789. },
  20790. },
  20791. [
  20792. {
  20793. name: "Normal",
  20794. height: math.unit(28.75, "feet"),
  20795. default: true
  20796. },
  20797. ]
  20798. ))
  20799. characterMakers.push(() => makeCharacter(
  20800. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20801. {
  20802. side: {
  20803. height: math.unit(25.5, "feet"),
  20804. weight: math.unit(23000, "kg"),
  20805. name: "Side",
  20806. image: {
  20807. source: "./media/characters/kanara/side.svg"
  20808. }
  20809. },
  20810. },
  20811. [
  20812. {
  20813. name: "Normal",
  20814. height: math.unit(25.5, "feet"),
  20815. default: true
  20816. },
  20817. ]
  20818. ))
  20819. characterMakers.push(() => makeCharacter(
  20820. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20821. {
  20822. side: {
  20823. height: math.unit(10, "feet"),
  20824. weight: math.unit(1000, "kg"),
  20825. name: "Side",
  20826. image: {
  20827. source: "./media/characters/ereus/side.svg",
  20828. extra: 1157 / 959,
  20829. bottom: 153 / 1312.5
  20830. }
  20831. },
  20832. },
  20833. [
  20834. {
  20835. name: "Normal",
  20836. height: math.unit(10, "feet"),
  20837. default: true
  20838. },
  20839. ]
  20840. ))
  20841. characterMakers.push(() => makeCharacter(
  20842. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20843. {
  20844. side: {
  20845. height: math.unit(4.5, "feet"),
  20846. weight: math.unit(500, "lb"),
  20847. name: "Side",
  20848. image: {
  20849. source: "./media/characters/e-ter/side.svg",
  20850. extra: 1550 / 1248,
  20851. bottom: 146 / 1694
  20852. }
  20853. },
  20854. },
  20855. [
  20856. {
  20857. name: "Normal",
  20858. height: math.unit(4.5, "feet"),
  20859. default: true
  20860. },
  20861. ]
  20862. ))
  20863. characterMakers.push(() => makeCharacter(
  20864. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20865. {
  20866. side: {
  20867. height: math.unit(9.7, "feet"),
  20868. weight: math.unit(4000, "kg"),
  20869. name: "Side",
  20870. image: {
  20871. source: "./media/characters/yamie/side.svg"
  20872. }
  20873. },
  20874. },
  20875. [
  20876. {
  20877. name: "Normal",
  20878. height: math.unit(9.7, "feet"),
  20879. default: true
  20880. },
  20881. ]
  20882. ))
  20883. characterMakers.push(() => makeCharacter(
  20884. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20885. {
  20886. front: {
  20887. height: math.unit(50, "feet"),
  20888. weight: math.unit(50000, "kg"),
  20889. name: "Front",
  20890. image: {
  20891. source: "./media/characters/anders/front.svg",
  20892. extra: 570 / 539,
  20893. bottom: 14.7 / 586.7
  20894. }
  20895. },
  20896. },
  20897. [
  20898. {
  20899. name: "Large",
  20900. height: math.unit(50, "feet")
  20901. },
  20902. {
  20903. name: "Macro",
  20904. height: math.unit(2000, "feet"),
  20905. default: true
  20906. },
  20907. {
  20908. name: "Megamacro",
  20909. height: math.unit(12, "miles")
  20910. },
  20911. ]
  20912. ))
  20913. characterMakers.push(() => makeCharacter(
  20914. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20915. {
  20916. front: {
  20917. height: math.unit(7 + 2 / 12, "feet"),
  20918. weight: math.unit(300, "lb"),
  20919. name: "Front",
  20920. image: {
  20921. source: "./media/characters/reban/front.svg",
  20922. extra: 516 / 487,
  20923. bottom: 42.82 / 558.356
  20924. }
  20925. },
  20926. dick: {
  20927. height: math.unit(7 / 5, "feet"),
  20928. name: "Dick",
  20929. image: {
  20930. source: "./media/characters/reban/dick.svg"
  20931. }
  20932. },
  20933. },
  20934. [
  20935. {
  20936. name: "Natural Height",
  20937. height: math.unit(7 + 2 / 12, "feet")
  20938. },
  20939. {
  20940. name: "Macro",
  20941. height: math.unit(500, "feet"),
  20942. default: true
  20943. },
  20944. {
  20945. name: "Canon Height",
  20946. height: math.unit(50, "AU")
  20947. },
  20948. ]
  20949. ))
  20950. characterMakers.push(() => makeCharacter(
  20951. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20952. {
  20953. front: {
  20954. height: math.unit(6, "feet"),
  20955. weight: math.unit(150, "lb"),
  20956. name: "Front",
  20957. image: {
  20958. source: "./media/characters/terrance-keayes/front.svg",
  20959. extra: 1.005,
  20960. bottom: 151 / 1615
  20961. }
  20962. },
  20963. side: {
  20964. height: math.unit(6, "feet"),
  20965. weight: math.unit(150, "lb"),
  20966. name: "Side",
  20967. image: {
  20968. source: "./media/characters/terrance-keayes/side.svg",
  20969. extra: 1.005,
  20970. bottom: 129.4 / 1544
  20971. }
  20972. },
  20973. back: {
  20974. height: math.unit(6, "feet"),
  20975. weight: math.unit(150, "lb"),
  20976. name: "Back",
  20977. image: {
  20978. source: "./media/characters/terrance-keayes/back.svg",
  20979. extra: 1.005,
  20980. bottom: 58.4 / 1557.3
  20981. }
  20982. },
  20983. dick: {
  20984. height: math.unit(6 * 0.208, "feet"),
  20985. name: "Dick",
  20986. image: {
  20987. source: "./media/characters/terrance-keayes/dick.svg"
  20988. }
  20989. },
  20990. },
  20991. [
  20992. {
  20993. name: "Canon Height",
  20994. height: math.unit(35, "miles"),
  20995. default: true
  20996. },
  20997. ]
  20998. ))
  20999. characterMakers.push(() => makeCharacter(
  21000. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21001. {
  21002. front: {
  21003. height: math.unit(6, "feet"),
  21004. weight: math.unit(150, "lb"),
  21005. name: "Front",
  21006. image: {
  21007. source: "./media/characters/ofelia/front.svg",
  21008. extra: 546 / 541,
  21009. bottom: 39 / 583
  21010. }
  21011. },
  21012. back: {
  21013. height: math.unit(6, "feet"),
  21014. weight: math.unit(150, "lb"),
  21015. name: "Back",
  21016. image: {
  21017. source: "./media/characters/ofelia/back.svg",
  21018. extra: 564 / 559.5,
  21019. bottom: 8.69 / 573.02
  21020. }
  21021. },
  21022. maw: {
  21023. height: math.unit(1, "feet"),
  21024. name: "Maw",
  21025. image: {
  21026. source: "./media/characters/ofelia/maw.svg"
  21027. }
  21028. },
  21029. foot: {
  21030. height: math.unit(1.949, "feet"),
  21031. name: "Foot",
  21032. image: {
  21033. source: "./media/characters/ofelia/foot.svg"
  21034. }
  21035. },
  21036. },
  21037. [
  21038. {
  21039. name: "Canon Height",
  21040. height: math.unit(2000, "miles"),
  21041. default: true
  21042. },
  21043. ]
  21044. ))
  21045. characterMakers.push(() => makeCharacter(
  21046. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21047. {
  21048. front: {
  21049. height: math.unit(6, "feet"),
  21050. weight: math.unit(150, "lb"),
  21051. name: "Front",
  21052. image: {
  21053. source: "./media/characters/samuel/front.svg",
  21054. extra: 265 / 258,
  21055. bottom: 2 / 266.1566
  21056. }
  21057. },
  21058. },
  21059. [
  21060. {
  21061. name: "Macro",
  21062. height: math.unit(100, "feet"),
  21063. default: true
  21064. },
  21065. {
  21066. name: "Full Size",
  21067. height: math.unit(1000, "miles")
  21068. },
  21069. ]
  21070. ))
  21071. characterMakers.push(() => makeCharacter(
  21072. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21073. {
  21074. front: {
  21075. height: math.unit(6, "feet"),
  21076. weight: math.unit(300, "lb"),
  21077. name: "Front",
  21078. image: {
  21079. source: "./media/characters/beishir-kiel/front.svg",
  21080. extra: 569 / 547,
  21081. bottom: 41.9 / 609
  21082. }
  21083. },
  21084. maw: {
  21085. height: math.unit(6 * 0.202, "feet"),
  21086. name: "Maw",
  21087. image: {
  21088. source: "./media/characters/beishir-kiel/maw.svg"
  21089. }
  21090. },
  21091. },
  21092. [
  21093. {
  21094. name: "Macro",
  21095. height: math.unit(300, "feet"),
  21096. default: true
  21097. },
  21098. ]
  21099. ))
  21100. characterMakers.push(() => makeCharacter(
  21101. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21102. {
  21103. front: {
  21104. height: math.unit(5 + 8 / 12, "feet"),
  21105. weight: math.unit(120, "lb"),
  21106. name: "Front",
  21107. image: {
  21108. source: "./media/characters/logan-grey/front.svg",
  21109. extra: 2539 / 2393,
  21110. bottom: 97.6 / 2636.37
  21111. }
  21112. },
  21113. frontAlt: {
  21114. height: math.unit(5 + 8 / 12, "feet"),
  21115. weight: math.unit(120, "lb"),
  21116. name: "Front (Alt)",
  21117. image: {
  21118. source: "./media/characters/logan-grey/front-alt.svg",
  21119. extra: 958 / 893,
  21120. bottom: 15 / 970.768
  21121. }
  21122. },
  21123. back: {
  21124. height: math.unit(5 + 8 / 12, "feet"),
  21125. weight: math.unit(120, "lb"),
  21126. name: "Back",
  21127. image: {
  21128. source: "./media/characters/logan-grey/back.svg",
  21129. extra: 958 / 893,
  21130. bottom: 2.1881 / 970.9788
  21131. }
  21132. },
  21133. dick: {
  21134. height: math.unit(1.437, "feet"),
  21135. name: "Dick",
  21136. image: {
  21137. source: "./media/characters/logan-grey/dick.svg"
  21138. }
  21139. },
  21140. },
  21141. [
  21142. {
  21143. name: "Normal",
  21144. height: math.unit(5 + 8 / 12, "feet")
  21145. },
  21146. {
  21147. name: "The 500 Foot Femboy",
  21148. height: math.unit(500, "feet"),
  21149. default: true
  21150. },
  21151. {
  21152. name: "Megmacro",
  21153. height: math.unit(20, "miles")
  21154. },
  21155. ]
  21156. ))
  21157. characterMakers.push(() => makeCharacter(
  21158. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21159. {
  21160. front: {
  21161. height: math.unit(8 + 2 / 12, "feet"),
  21162. weight: math.unit(275, "lb"),
  21163. name: "Front",
  21164. image: {
  21165. source: "./media/characters/draganta/front.svg",
  21166. extra: 1177 / 1135,
  21167. bottom: 33.46 / 1212.1
  21168. }
  21169. },
  21170. },
  21171. [
  21172. {
  21173. name: "Normal",
  21174. height: math.unit(8 + 6 / 12, "feet"),
  21175. default: true
  21176. },
  21177. {
  21178. name: "Macro",
  21179. height: math.unit(150, "feet")
  21180. },
  21181. {
  21182. name: "Megamacro",
  21183. height: math.unit(1000, "miles")
  21184. },
  21185. ]
  21186. ))
  21187. characterMakers.push(() => makeCharacter(
  21188. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21189. {
  21190. front: {
  21191. height: math.unit(1.72, "m"),
  21192. weight: math.unit(80, "lb"),
  21193. name: "Front",
  21194. image: {
  21195. source: "./media/characters/voski/front.svg",
  21196. extra: 2076.22 / 2022.4,
  21197. bottom: 102.7 / 2177.3866
  21198. }
  21199. },
  21200. frontNsfw: {
  21201. height: math.unit(1.72, "m"),
  21202. weight: math.unit(80, "lb"),
  21203. name: "Front (NSFW)",
  21204. image: {
  21205. source: "./media/characters/voski/front-nsfw.svg",
  21206. extra: 2076.22 / 2022.4,
  21207. bottom: 102.7 / 2177.3866
  21208. }
  21209. },
  21210. back: {
  21211. height: math.unit(1.72, "m"),
  21212. weight: math.unit(80, "lb"),
  21213. name: "Back",
  21214. image: {
  21215. source: "./media/characters/voski/back.svg",
  21216. extra: 2104 / 2051,
  21217. bottom: 10.45 / 2113.63
  21218. }
  21219. },
  21220. },
  21221. [
  21222. {
  21223. name: "Normal",
  21224. height: math.unit(1.72, "m")
  21225. },
  21226. {
  21227. name: "Macro",
  21228. height: math.unit(55, "m"),
  21229. default: true
  21230. },
  21231. {
  21232. name: "Macro+",
  21233. height: math.unit(300, "m")
  21234. },
  21235. {
  21236. name: "Macro++",
  21237. height: math.unit(700, "m")
  21238. },
  21239. {
  21240. name: "Macro+++",
  21241. height: math.unit(4500, "m")
  21242. },
  21243. {
  21244. name: "Macro++++",
  21245. height: math.unit(45, "km")
  21246. },
  21247. {
  21248. name: "Macro+++++",
  21249. height: math.unit(1220, "km")
  21250. },
  21251. ]
  21252. ))
  21253. characterMakers.push(() => makeCharacter(
  21254. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21255. {
  21256. front: {
  21257. height: math.unit(2.3, "m"),
  21258. weight: math.unit(304, "kg"),
  21259. name: "Front",
  21260. image: {
  21261. source: "./media/characters/icowom-lee/front.svg",
  21262. extra: 985 / 955,
  21263. bottom: 25.4 / 1012
  21264. }
  21265. },
  21266. fronttentacles: {
  21267. height: math.unit(2.3, "m"),
  21268. weight: math.unit(304, "kg"),
  21269. name: "Front-tentacles",
  21270. image: {
  21271. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21272. extra: 985 / 955,
  21273. bottom: 25.4 / 1012
  21274. }
  21275. },
  21276. back: {
  21277. height: math.unit(2.3, "m"),
  21278. weight: math.unit(304, "kg"),
  21279. name: "Back",
  21280. image: {
  21281. source: "./media/characters/icowom-lee/back.svg",
  21282. extra: 975 / 954,
  21283. bottom: 9.5 / 985
  21284. }
  21285. },
  21286. backtentacles: {
  21287. height: math.unit(2.3, "m"),
  21288. weight: math.unit(304, "kg"),
  21289. name: "Back-tentacles",
  21290. image: {
  21291. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21292. extra: 975 / 954,
  21293. bottom: 9.5 / 985
  21294. }
  21295. },
  21296. frontDressed: {
  21297. height: math.unit(2.3, "m"),
  21298. weight: math.unit(304, "kg"),
  21299. name: "Front (Dressed)",
  21300. image: {
  21301. source: "./media/characters/icowom-lee/front-dressed.svg",
  21302. extra: 3076 / 2933,
  21303. bottom: 51.4 / 3125.1889
  21304. }
  21305. },
  21306. rump: {
  21307. height: math.unit(0.776, "meters"),
  21308. name: "Rump",
  21309. image: {
  21310. source: "./media/characters/icowom-lee/rump.svg"
  21311. }
  21312. },
  21313. genitals: {
  21314. height: math.unit(0.78, "meters"),
  21315. name: "Genitals",
  21316. image: {
  21317. source: "./media/characters/icowom-lee/genitals.svg"
  21318. }
  21319. },
  21320. },
  21321. [
  21322. {
  21323. name: "Normal",
  21324. height: math.unit(2.3, "meters"),
  21325. default: true
  21326. },
  21327. {
  21328. name: "Macro",
  21329. height: math.unit(94, "meters"),
  21330. default: true
  21331. },
  21332. ]
  21333. ))
  21334. characterMakers.push(() => makeCharacter(
  21335. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21336. {
  21337. front: {
  21338. height: math.unit(22, "meters"),
  21339. weight: math.unit(21000, "kg"),
  21340. name: "Front",
  21341. image: {
  21342. source: "./media/characters/shock-diamond/front.svg",
  21343. extra: 2204 / 2053,
  21344. bottom: 65 / 2239.47
  21345. }
  21346. },
  21347. frontNude: {
  21348. height: math.unit(22, "meters"),
  21349. weight: math.unit(21000, "kg"),
  21350. name: "Front (Nude)",
  21351. image: {
  21352. source: "./media/characters/shock-diamond/front-nude.svg",
  21353. extra: 2514 / 2285,
  21354. bottom: 13 / 2527.56
  21355. }
  21356. },
  21357. },
  21358. [
  21359. {
  21360. name: "Normal",
  21361. height: math.unit(3, "meters")
  21362. },
  21363. {
  21364. name: "Macro",
  21365. height: math.unit(22, "meters"),
  21366. default: true
  21367. },
  21368. ]
  21369. ))
  21370. characterMakers.push(() => makeCharacter(
  21371. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21372. {
  21373. front: {
  21374. height: math.unit(5 + 4 / 12, "feet"),
  21375. weight: math.unit(120, "lb"),
  21376. name: "Front",
  21377. image: {
  21378. source: "./media/characters/rory/front.svg",
  21379. extra: 589 / 556,
  21380. bottom: 45.7 / 635.76
  21381. }
  21382. },
  21383. frontNude: {
  21384. height: math.unit(5 + 4 / 12, "feet"),
  21385. weight: math.unit(120, "lb"),
  21386. name: "Front (Nude)",
  21387. image: {
  21388. source: "./media/characters/rory/front-nude.svg",
  21389. extra: 589 / 556,
  21390. bottom: 45.7 / 635.76
  21391. }
  21392. },
  21393. side: {
  21394. height: math.unit(5 + 4 / 12, "feet"),
  21395. weight: math.unit(120, "lb"),
  21396. name: "Side",
  21397. image: {
  21398. source: "./media/characters/rory/side.svg",
  21399. extra: 597 / 564,
  21400. bottom: 55 / 653
  21401. }
  21402. },
  21403. back: {
  21404. height: math.unit(5 + 4 / 12, "feet"),
  21405. weight: math.unit(120, "lb"),
  21406. name: "Back",
  21407. image: {
  21408. source: "./media/characters/rory/back.svg",
  21409. extra: 620 / 585,
  21410. bottom: 8.86 / 630.43
  21411. }
  21412. },
  21413. dick: {
  21414. height: math.unit(0.86, "feet"),
  21415. name: "Dick",
  21416. image: {
  21417. source: "./media/characters/rory/dick.svg"
  21418. }
  21419. },
  21420. },
  21421. [
  21422. {
  21423. name: "Normal",
  21424. height: math.unit(5 + 4 / 12, "feet"),
  21425. default: true
  21426. },
  21427. {
  21428. name: "Macro",
  21429. height: math.unit(100, "feet")
  21430. },
  21431. {
  21432. name: "Macro+",
  21433. height: math.unit(140, "feet")
  21434. },
  21435. {
  21436. name: "Macro++",
  21437. height: math.unit(300, "feet")
  21438. },
  21439. ]
  21440. ))
  21441. characterMakers.push(() => makeCharacter(
  21442. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21443. {
  21444. front: {
  21445. height: math.unit(5 + 9 / 12, "feet"),
  21446. weight: math.unit(190, "lb"),
  21447. name: "Front",
  21448. image: {
  21449. source: "./media/characters/sprisk/front.svg",
  21450. extra: 1225 / 1180,
  21451. bottom: 42.7 / 1266.4
  21452. }
  21453. },
  21454. frontNsfw: {
  21455. height: math.unit(5 + 9 / 12, "feet"),
  21456. weight: math.unit(190, "lb"),
  21457. name: "Front (NSFW)",
  21458. image: {
  21459. source: "./media/characters/sprisk/front-nsfw.svg",
  21460. extra: 1225 / 1180,
  21461. bottom: 42.7 / 1266.4
  21462. }
  21463. },
  21464. back: {
  21465. height: math.unit(5 + 9 / 12, "feet"),
  21466. weight: math.unit(190, "lb"),
  21467. name: "Back",
  21468. image: {
  21469. source: "./media/characters/sprisk/back.svg",
  21470. extra: 1247 / 1200,
  21471. bottom: 5.6 / 1253.04
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Tiny",
  21478. height: math.unit(2, "inches")
  21479. },
  21480. {
  21481. name: "Normal",
  21482. height: math.unit(5 + 9 / 12, "feet"),
  21483. default: true
  21484. },
  21485. {
  21486. name: "Mini Macro",
  21487. height: math.unit(18, "feet")
  21488. },
  21489. {
  21490. name: "Macro",
  21491. height: math.unit(100, "feet")
  21492. },
  21493. {
  21494. name: "MACRO",
  21495. height: math.unit(50, "miles")
  21496. },
  21497. {
  21498. name: "M A C R O",
  21499. height: math.unit(300, "miles")
  21500. },
  21501. ]
  21502. ))
  21503. characterMakers.push(() => makeCharacter(
  21504. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21505. {
  21506. side: {
  21507. height: math.unit(15.6, "meters"),
  21508. weight: math.unit(700000, "kg"),
  21509. name: "Side",
  21510. image: {
  21511. source: "./media/characters/bunsen/side.svg",
  21512. extra: 1644 / 358
  21513. }
  21514. },
  21515. foot: {
  21516. height: math.unit(1.611 * 1644 / 358, "meter"),
  21517. name: "Foot",
  21518. image: {
  21519. source: "./media/characters/bunsen/foot.svg"
  21520. }
  21521. },
  21522. },
  21523. [
  21524. {
  21525. name: "Small",
  21526. height: math.unit(10, "feet")
  21527. },
  21528. {
  21529. name: "Normal",
  21530. height: math.unit(15.6, "meters"),
  21531. default: true
  21532. },
  21533. ]
  21534. ))
  21535. characterMakers.push(() => makeCharacter(
  21536. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21537. {
  21538. front: {
  21539. height: math.unit(4 + 11 / 12, "feet"),
  21540. weight: math.unit(140, "lb"),
  21541. name: "Front",
  21542. image: {
  21543. source: "./media/characters/sesh/front.svg",
  21544. extra: 3420 / 3231,
  21545. bottom: 72 / 3949.5
  21546. }
  21547. },
  21548. },
  21549. [
  21550. {
  21551. name: "Normal",
  21552. height: math.unit(4 + 11 / 12, "feet")
  21553. },
  21554. {
  21555. name: "Grown",
  21556. height: math.unit(15, "feet"),
  21557. default: true
  21558. },
  21559. {
  21560. name: "Macro",
  21561. height: math.unit(1500, "feet")
  21562. },
  21563. {
  21564. name: "Megamacro",
  21565. height: math.unit(30, "miles")
  21566. },
  21567. {
  21568. name: "Continental",
  21569. height: math.unit(3000, "miles")
  21570. },
  21571. {
  21572. name: "Gravity Mass",
  21573. height: math.unit(300000, "miles")
  21574. },
  21575. {
  21576. name: "Planet Buster",
  21577. height: math.unit(30000000, "miles")
  21578. },
  21579. {
  21580. name: "Big",
  21581. height: math.unit(3000000000, "miles")
  21582. },
  21583. ]
  21584. ))
  21585. characterMakers.push(() => makeCharacter(
  21586. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21587. {
  21588. front: {
  21589. height: math.unit(9, "feet"),
  21590. weight: math.unit(350, "lb"),
  21591. name: "Front",
  21592. image: {
  21593. source: "./media/characters/pepper/front.svg",
  21594. extra: 1448 / 1312,
  21595. bottom: 9.4 / 1457.88
  21596. }
  21597. },
  21598. back: {
  21599. height: math.unit(9, "feet"),
  21600. weight: math.unit(350, "lb"),
  21601. name: "Back",
  21602. image: {
  21603. source: "./media/characters/pepper/back.svg",
  21604. extra: 1423 / 1300,
  21605. bottom: 4.6 / 1429
  21606. }
  21607. },
  21608. maw: {
  21609. height: math.unit(0.932, "feet"),
  21610. name: "Maw",
  21611. image: {
  21612. source: "./media/characters/pepper/maw.svg"
  21613. }
  21614. },
  21615. },
  21616. [
  21617. {
  21618. name: "Normal",
  21619. height: math.unit(9, "feet"),
  21620. default: true
  21621. },
  21622. ]
  21623. ))
  21624. characterMakers.push(() => makeCharacter(
  21625. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21626. {
  21627. front: {
  21628. height: math.unit(6, "feet"),
  21629. weight: math.unit(150, "lb"),
  21630. name: "Front",
  21631. image: {
  21632. source: "./media/characters/maelstrom/front.svg",
  21633. extra: 2100 / 1883,
  21634. bottom: 94 / 2196.7
  21635. }
  21636. },
  21637. },
  21638. [
  21639. {
  21640. name: "Less Kaiju",
  21641. height: math.unit(200, "feet")
  21642. },
  21643. {
  21644. name: "Kaiju",
  21645. height: math.unit(400, "feet"),
  21646. default: true
  21647. },
  21648. {
  21649. name: "Kaiju-er",
  21650. height: math.unit(600, "feet")
  21651. },
  21652. ]
  21653. ))
  21654. characterMakers.push(() => makeCharacter(
  21655. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21656. {
  21657. front: {
  21658. height: math.unit(6 + 5 / 12, "feet"),
  21659. weight: math.unit(180, "lb"),
  21660. name: "Front",
  21661. image: {
  21662. source: "./media/characters/lexir/front.svg",
  21663. extra: 180 / 172,
  21664. bottom: 12 / 192
  21665. }
  21666. },
  21667. back: {
  21668. height: math.unit(6 + 5 / 12, "feet"),
  21669. weight: math.unit(180, "lb"),
  21670. name: "Back",
  21671. image: {
  21672. source: "./media/characters/lexir/back.svg",
  21673. extra: 183.84 / 175.5,
  21674. bottom: 3.1 / 187
  21675. }
  21676. },
  21677. },
  21678. [
  21679. {
  21680. name: "Very Smal",
  21681. height: math.unit(1, "nm")
  21682. },
  21683. {
  21684. name: "Normal",
  21685. height: math.unit(6 + 5 / 12, "feet"),
  21686. default: true
  21687. },
  21688. {
  21689. name: "Macro",
  21690. height: math.unit(1, "mile")
  21691. },
  21692. {
  21693. name: "Megamacro",
  21694. height: math.unit(50, "miles")
  21695. },
  21696. ]
  21697. ))
  21698. characterMakers.push(() => makeCharacter(
  21699. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21700. {
  21701. front: {
  21702. height: math.unit(1.5, "meters"),
  21703. weight: math.unit(100, "lb"),
  21704. name: "Front",
  21705. image: {
  21706. source: "./media/characters/maksio/front.svg",
  21707. extra: 1549 / 1531,
  21708. bottom: 123.7 / 1674.5429
  21709. }
  21710. },
  21711. back: {
  21712. height: math.unit(1.5, "meters"),
  21713. weight: math.unit(100, "lb"),
  21714. name: "Back",
  21715. image: {
  21716. source: "./media/characters/maksio/back.svg",
  21717. extra: 1541 / 1509,
  21718. bottom: 97 / 1639
  21719. }
  21720. },
  21721. hand: {
  21722. height: math.unit(0.621, "feet"),
  21723. name: "Hand",
  21724. image: {
  21725. source: "./media/characters/maksio/hand.svg"
  21726. }
  21727. },
  21728. foot: {
  21729. height: math.unit(1.611, "feet"),
  21730. name: "Foot",
  21731. image: {
  21732. source: "./media/characters/maksio/foot.svg"
  21733. }
  21734. },
  21735. },
  21736. [
  21737. {
  21738. name: "Shrunken",
  21739. height: math.unit(10, "cm")
  21740. },
  21741. {
  21742. name: "Normal",
  21743. height: math.unit(150, "cm"),
  21744. default: true
  21745. },
  21746. ]
  21747. ))
  21748. characterMakers.push(() => makeCharacter(
  21749. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21750. {
  21751. front: {
  21752. height: math.unit(100, "feet"),
  21753. name: "Front",
  21754. image: {
  21755. source: "./media/characters/erza-bear/front.svg",
  21756. extra: 2449 / 2390,
  21757. bottom: 46 / 2494
  21758. }
  21759. },
  21760. back: {
  21761. height: math.unit(100, "feet"),
  21762. name: "Back",
  21763. image: {
  21764. source: "./media/characters/erza-bear/back.svg",
  21765. extra: 2489 / 2430,
  21766. bottom: 85.4 / 2480
  21767. }
  21768. },
  21769. tail: {
  21770. height: math.unit(42, "feet"),
  21771. name: "Tail",
  21772. image: {
  21773. source: "./media/characters/erza-bear/tail.svg"
  21774. }
  21775. },
  21776. tongue: {
  21777. height: math.unit(8, "feet"),
  21778. name: "Tongue",
  21779. image: {
  21780. source: "./media/characters/erza-bear/tongue.svg"
  21781. }
  21782. },
  21783. dick: {
  21784. height: math.unit(10.5, "feet"),
  21785. name: "Dick",
  21786. image: {
  21787. source: "./media/characters/erza-bear/dick.svg"
  21788. }
  21789. },
  21790. dickVertical: {
  21791. height: math.unit(16.9, "feet"),
  21792. name: "Dick (Vertical)",
  21793. image: {
  21794. source: "./media/characters/erza-bear/dick-vertical.svg"
  21795. }
  21796. },
  21797. },
  21798. [
  21799. {
  21800. name: "Macro",
  21801. height: math.unit(100, "feet"),
  21802. default: true
  21803. },
  21804. ]
  21805. ))
  21806. characterMakers.push(() => makeCharacter(
  21807. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21808. {
  21809. front: {
  21810. height: math.unit(172, "cm"),
  21811. weight: math.unit(73, "kg"),
  21812. name: "Front",
  21813. image: {
  21814. source: "./media/characters/violet-flor/front.svg",
  21815. extra: 1530 / 1442,
  21816. bottom: 61.9 / 1588.8
  21817. }
  21818. },
  21819. back: {
  21820. height: math.unit(180, "cm"),
  21821. weight: math.unit(73, "kg"),
  21822. name: "Back",
  21823. image: {
  21824. source: "./media/characters/violet-flor/back.svg",
  21825. extra: 1692 / 1630,
  21826. bottom: 20 / 1712
  21827. }
  21828. },
  21829. },
  21830. [
  21831. {
  21832. name: "Normal",
  21833. height: math.unit(172, "cm"),
  21834. default: true
  21835. },
  21836. ]
  21837. ))
  21838. characterMakers.push(() => makeCharacter(
  21839. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21840. {
  21841. front: {
  21842. height: math.unit(6, "feet"),
  21843. weight: math.unit(220, "lb"),
  21844. name: "Front",
  21845. image: {
  21846. source: "./media/characters/lynn-rhea/front.svg",
  21847. extra: 310 / 273
  21848. }
  21849. },
  21850. back: {
  21851. height: math.unit(6, "feet"),
  21852. weight: math.unit(220, "lb"),
  21853. name: "Back",
  21854. image: {
  21855. source: "./media/characters/lynn-rhea/back.svg",
  21856. extra: 310 / 273
  21857. }
  21858. },
  21859. dicks: {
  21860. height: math.unit(0.9, "feet"),
  21861. name: "Dicks",
  21862. image: {
  21863. source: "./media/characters/lynn-rhea/dicks.svg"
  21864. }
  21865. },
  21866. slit: {
  21867. height: math.unit(0.4, "feet"),
  21868. name: "Slit",
  21869. image: {
  21870. source: "./media/characters/lynn-rhea/slit.svg"
  21871. }
  21872. },
  21873. },
  21874. [
  21875. {
  21876. name: "Micro",
  21877. height: math.unit(1, "inch")
  21878. },
  21879. {
  21880. name: "Macro",
  21881. height: math.unit(60, "feet"),
  21882. default: true
  21883. },
  21884. {
  21885. name: "Megamacro",
  21886. height: math.unit(2, "miles")
  21887. },
  21888. {
  21889. name: "Gigamacro",
  21890. height: math.unit(3, "earths")
  21891. },
  21892. {
  21893. name: "Galactic",
  21894. height: math.unit(0.8, "galaxies")
  21895. },
  21896. ]
  21897. ))
  21898. characterMakers.push(() => makeCharacter(
  21899. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21900. {
  21901. front: {
  21902. height: math.unit(1600, "feet"),
  21903. weight: math.unit(85758785169, "kg"),
  21904. name: "Front",
  21905. image: {
  21906. source: "./media/characters/valathos/front.svg",
  21907. extra: 1451 / 1339
  21908. }
  21909. },
  21910. },
  21911. [
  21912. {
  21913. name: "Macro",
  21914. height: math.unit(1600, "feet"),
  21915. default: true
  21916. },
  21917. ]
  21918. ))
  21919. characterMakers.push(() => makeCharacter(
  21920. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21921. {
  21922. front: {
  21923. height: math.unit(7 + 5 / 12, "feet"),
  21924. weight: math.unit(300, "lb"),
  21925. name: "Front",
  21926. image: {
  21927. source: "./media/characters/azula/front.svg",
  21928. extra: 3208 / 2880,
  21929. bottom: 80.2 / 3277
  21930. }
  21931. },
  21932. back: {
  21933. height: math.unit(7 + 5 / 12, "feet"),
  21934. weight: math.unit(300, "lb"),
  21935. name: "Back",
  21936. image: {
  21937. source: "./media/characters/azula/back.svg",
  21938. extra: 3169 / 2822,
  21939. bottom: 150.6 / 3321
  21940. }
  21941. },
  21942. },
  21943. [
  21944. {
  21945. name: "Normal",
  21946. height: math.unit(7 + 5 / 12, "feet"),
  21947. default: true
  21948. },
  21949. {
  21950. name: "Big",
  21951. height: math.unit(20, "feet")
  21952. },
  21953. ]
  21954. ))
  21955. characterMakers.push(() => makeCharacter(
  21956. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  21957. {
  21958. front: {
  21959. height: math.unit(5 + 1 / 12, "feet"),
  21960. weight: math.unit(110, "lb"),
  21961. name: "Front",
  21962. image: {
  21963. source: "./media/characters/rupert/front.svg",
  21964. extra: 1549 / 1495,
  21965. bottom: 54.2 / 1604.4
  21966. }
  21967. },
  21968. },
  21969. [
  21970. {
  21971. name: "Normal",
  21972. height: math.unit(5 + 1 / 12, "feet"),
  21973. default: true
  21974. },
  21975. ]
  21976. ))
  21977. characterMakers.push(() => makeCharacter(
  21978. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  21979. {
  21980. front: {
  21981. height: math.unit(8 + 4 / 12, "feet"),
  21982. weight: math.unit(350, "lb"),
  21983. name: "Front",
  21984. image: {
  21985. source: "./media/characters/sheera-castellar/front.svg",
  21986. extra: 1957 / 1894,
  21987. bottom: 26.97 / 1975.017
  21988. }
  21989. },
  21990. side: {
  21991. height: math.unit(8 + 4 / 12, "feet"),
  21992. weight: math.unit(350, "lb"),
  21993. name: "Side",
  21994. image: {
  21995. source: "./media/characters/sheera-castellar/side.svg",
  21996. extra: 1957 / 1894
  21997. }
  21998. },
  21999. back: {
  22000. height: math.unit(8 + 4 / 12, "feet"),
  22001. weight: math.unit(350, "lb"),
  22002. name: "Back",
  22003. image: {
  22004. source: "./media/characters/sheera-castellar/back.svg",
  22005. extra: 1957 / 1894
  22006. }
  22007. },
  22008. angled: {
  22009. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22010. weight: math.unit(350, "lb"),
  22011. name: "Angled",
  22012. image: {
  22013. source: "./media/characters/sheera-castellar/angled.svg",
  22014. extra: 1807 / 1707,
  22015. bottom: 68 / 1875
  22016. }
  22017. },
  22018. genitals: {
  22019. height: math.unit(2.2, "feet"),
  22020. name: "Genitals",
  22021. image: {
  22022. source: "./media/characters/sheera-castellar/genitals.svg"
  22023. }
  22024. },
  22025. },
  22026. [
  22027. {
  22028. name: "Normal",
  22029. height: math.unit(8 + 4 / 12, "feet")
  22030. },
  22031. {
  22032. name: "Macro",
  22033. height: math.unit(150, "feet"),
  22034. default: true
  22035. },
  22036. {
  22037. name: "Macro+",
  22038. height: math.unit(800, "feet")
  22039. },
  22040. ]
  22041. ))
  22042. characterMakers.push(() => makeCharacter(
  22043. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22044. {
  22045. front: {
  22046. height: math.unit(6, "feet"),
  22047. weight: math.unit(150, "lb"),
  22048. name: "Front",
  22049. image: {
  22050. source: "./media/characters/jaipur/front.svg",
  22051. extra: 3860 / 3731,
  22052. bottom: 287 / 4140
  22053. }
  22054. },
  22055. back: {
  22056. height: math.unit(6, "feet"),
  22057. weight: math.unit(150, "lb"),
  22058. name: "Back",
  22059. image: {
  22060. source: "./media/characters/jaipur/back.svg",
  22061. extra: 4060 / 3930,
  22062. bottom: 151 / 4200
  22063. }
  22064. },
  22065. },
  22066. [
  22067. {
  22068. name: "Normal",
  22069. height: math.unit(1.85, "meters"),
  22070. default: true
  22071. },
  22072. {
  22073. name: "Macro",
  22074. height: math.unit(150, "meters")
  22075. },
  22076. {
  22077. name: "Macro+",
  22078. height: math.unit(0.5, "miles")
  22079. },
  22080. {
  22081. name: "Macro++",
  22082. height: math.unit(2.5, "miles")
  22083. },
  22084. {
  22085. name: "Macro+++",
  22086. height: math.unit(12, "miles")
  22087. },
  22088. {
  22089. name: "Macro++++",
  22090. height: math.unit(120, "miles")
  22091. },
  22092. {
  22093. name: "Macro+++++",
  22094. height: math.unit(1200, "miles")
  22095. },
  22096. ]
  22097. ))
  22098. characterMakers.push(() => makeCharacter(
  22099. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22100. {
  22101. front: {
  22102. height: math.unit(6, "feet"),
  22103. weight: math.unit(150, "lb"),
  22104. name: "Front",
  22105. image: {
  22106. source: "./media/characters/sheila-wolf/front.svg",
  22107. extra: 1931 / 1808,
  22108. bottom: 29.5 / 1960
  22109. }
  22110. },
  22111. dick: {
  22112. height: math.unit(1.464, "feet"),
  22113. name: "Dick",
  22114. image: {
  22115. source: "./media/characters/sheila-wolf/dick.svg"
  22116. }
  22117. },
  22118. muzzle: {
  22119. height: math.unit(0.513, "feet"),
  22120. name: "Muzzle",
  22121. image: {
  22122. source: "./media/characters/sheila-wolf/muzzle.svg"
  22123. }
  22124. },
  22125. },
  22126. [
  22127. {
  22128. name: "Macro",
  22129. height: math.unit(70, "feet"),
  22130. default: true
  22131. },
  22132. ]
  22133. ))
  22134. characterMakers.push(() => makeCharacter(
  22135. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22136. {
  22137. front: {
  22138. height: math.unit(32, "meters"),
  22139. weight: math.unit(300000, "kg"),
  22140. name: "Front",
  22141. image: {
  22142. source: "./media/characters/almor/front.svg",
  22143. extra: 1408 / 1322,
  22144. bottom: 94.6 / 1506.5
  22145. }
  22146. },
  22147. },
  22148. [
  22149. {
  22150. name: "Macro",
  22151. height: math.unit(32, "meters"),
  22152. default: true
  22153. },
  22154. ]
  22155. ))
  22156. characterMakers.push(() => makeCharacter(
  22157. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22158. {
  22159. front: {
  22160. height: math.unit(7, "feet"),
  22161. weight: math.unit(200, "lb"),
  22162. name: "Front",
  22163. image: {
  22164. source: "./media/characters/silver/front.svg",
  22165. extra: 472.1 / 450.5,
  22166. bottom: 26.5 / 499.424
  22167. }
  22168. },
  22169. },
  22170. [
  22171. {
  22172. name: "Normal",
  22173. height: math.unit(7, "feet"),
  22174. default: true
  22175. },
  22176. {
  22177. name: "Macro",
  22178. height: math.unit(800, "feet")
  22179. },
  22180. {
  22181. name: "Megamacro",
  22182. height: math.unit(250, "miles")
  22183. },
  22184. ]
  22185. ))
  22186. characterMakers.push(() => makeCharacter(
  22187. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22188. {
  22189. front: {
  22190. height: math.unit(6, "feet"),
  22191. weight: math.unit(150, "lb"),
  22192. name: "Front",
  22193. image: {
  22194. source: "./media/characters/pliskin/front.svg",
  22195. extra: 1469 / 1359,
  22196. bottom: 70 / 1540
  22197. }
  22198. },
  22199. },
  22200. [
  22201. {
  22202. name: "Micro",
  22203. height: math.unit(3, "inches")
  22204. },
  22205. {
  22206. name: "Normal",
  22207. height: math.unit(5 + 11 / 12, "feet"),
  22208. default: true
  22209. },
  22210. {
  22211. name: "Macro",
  22212. height: math.unit(120, "feet")
  22213. },
  22214. ]
  22215. ))
  22216. characterMakers.push(() => makeCharacter(
  22217. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22218. {
  22219. front: {
  22220. height: math.unit(6, "feet"),
  22221. weight: math.unit(150, "lb"),
  22222. name: "Front",
  22223. image: {
  22224. source: "./media/characters/sammy/front.svg",
  22225. extra: 1193 / 1089,
  22226. bottom: 30.5 / 1226
  22227. }
  22228. },
  22229. },
  22230. [
  22231. {
  22232. name: "Macro",
  22233. height: math.unit(1700, "feet"),
  22234. default: true
  22235. },
  22236. {
  22237. name: "Examacro",
  22238. height: math.unit(2.5e9, "lightyears")
  22239. },
  22240. ]
  22241. ))
  22242. characterMakers.push(() => makeCharacter(
  22243. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22244. {
  22245. front: {
  22246. height: math.unit(21, "meters"),
  22247. weight: math.unit(12, "tonnes"),
  22248. name: "Front",
  22249. image: {
  22250. source: "./media/characters/kuru/front.svg",
  22251. extra: 4301 / 3785,
  22252. bottom: 371.3 / 4691
  22253. }
  22254. },
  22255. },
  22256. [
  22257. {
  22258. name: "Macro",
  22259. height: math.unit(21, "meters"),
  22260. default: true
  22261. },
  22262. ]
  22263. ))
  22264. characterMakers.push(() => makeCharacter(
  22265. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22266. {
  22267. front: {
  22268. height: math.unit(23, "meters"),
  22269. weight: math.unit(12.2, "tonnes"),
  22270. name: "Front",
  22271. image: {
  22272. source: "./media/characters/rakka/front.svg",
  22273. extra: 4670 / 4169,
  22274. bottom: 301 / 4968.7
  22275. }
  22276. },
  22277. },
  22278. [
  22279. {
  22280. name: "Macro",
  22281. height: math.unit(23, "meters"),
  22282. default: true
  22283. },
  22284. ]
  22285. ))
  22286. characterMakers.push(() => makeCharacter(
  22287. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22288. {
  22289. front: {
  22290. height: math.unit(6, "feet"),
  22291. weight: math.unit(150, "lb"),
  22292. name: "Front",
  22293. image: {
  22294. source: "./media/characters/rhys-feline/front.svg",
  22295. extra: 2488 / 2308,
  22296. bottom: 35.67 / 2519.19
  22297. }
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Really Small",
  22303. height: math.unit(1, "nm")
  22304. },
  22305. {
  22306. name: "Micro",
  22307. height: math.unit(4, "inches")
  22308. },
  22309. {
  22310. name: "Normal",
  22311. height: math.unit(4 + 10 / 12, "feet"),
  22312. default: true
  22313. },
  22314. {
  22315. name: "Macro",
  22316. height: math.unit(100, "feet")
  22317. },
  22318. {
  22319. name: "Megamacto",
  22320. height: math.unit(50, "miles")
  22321. },
  22322. ]
  22323. ))
  22324. characterMakers.push(() => makeCharacter(
  22325. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22326. {
  22327. side: {
  22328. height: math.unit(30, "feet"),
  22329. weight: math.unit(35000, "kg"),
  22330. name: "Side",
  22331. image: {
  22332. source: "./media/characters/alydar/side.svg",
  22333. extra: 234 / 222,
  22334. bottom: 6.5 / 241
  22335. }
  22336. },
  22337. front: {
  22338. height: math.unit(30, "feet"),
  22339. weight: math.unit(35000, "kg"),
  22340. name: "Front",
  22341. image: {
  22342. source: "./media/characters/alydar/front.svg",
  22343. extra: 223.37 / 210.2,
  22344. bottom: 22.3 / 246.76
  22345. }
  22346. },
  22347. top: {
  22348. height: math.unit(64.54, "feet"),
  22349. weight: math.unit(35000, "kg"),
  22350. name: "Top",
  22351. image: {
  22352. source: "./media/characters/alydar/top.svg"
  22353. }
  22354. },
  22355. anthro: {
  22356. height: math.unit(30, "feet"),
  22357. weight: math.unit(9000, "kg"),
  22358. name: "Anthro",
  22359. image: {
  22360. source: "./media/characters/alydar/anthro.svg",
  22361. extra: 432 / 421,
  22362. bottom: 7.18 / 440
  22363. }
  22364. },
  22365. maw: {
  22366. height: math.unit(11.693, "feet"),
  22367. name: "Maw",
  22368. image: {
  22369. source: "./media/characters/alydar/maw.svg"
  22370. }
  22371. },
  22372. head: {
  22373. height: math.unit(11.693, "feet"),
  22374. name: "Head",
  22375. image: {
  22376. source: "./media/characters/alydar/head.svg"
  22377. }
  22378. },
  22379. headAlt: {
  22380. height: math.unit(12.861, "feet"),
  22381. name: "Head (Alt)",
  22382. image: {
  22383. source: "./media/characters/alydar/head-alt.svg"
  22384. }
  22385. },
  22386. wing: {
  22387. height: math.unit(20.712, "feet"),
  22388. name: "Wing",
  22389. image: {
  22390. source: "./media/characters/alydar/wing.svg"
  22391. }
  22392. },
  22393. wingFeather: {
  22394. height: math.unit(9.662, "feet"),
  22395. name: "Wing Feather",
  22396. image: {
  22397. source: "./media/characters/alydar/wing-feather.svg"
  22398. }
  22399. },
  22400. countourFeather: {
  22401. height: math.unit(4.154, "feet"),
  22402. name: "Contour Feather",
  22403. image: {
  22404. source: "./media/characters/alydar/contour-feather.svg"
  22405. }
  22406. },
  22407. },
  22408. [
  22409. {
  22410. name: "Diplomatic",
  22411. height: math.unit(13, "feet"),
  22412. default: true
  22413. },
  22414. {
  22415. name: "Small",
  22416. height: math.unit(30, "feet")
  22417. },
  22418. {
  22419. name: "Normal",
  22420. height: math.unit(95, "feet"),
  22421. default: true
  22422. },
  22423. {
  22424. name: "Large",
  22425. height: math.unit(285, "feet")
  22426. },
  22427. {
  22428. name: "Incomprehensible",
  22429. height: math.unit(450, "megameters")
  22430. },
  22431. ]
  22432. ))
  22433. characterMakers.push(() => makeCharacter(
  22434. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22435. {
  22436. side: {
  22437. height: math.unit(11, "feet"),
  22438. weight: math.unit(1750, "kg"),
  22439. name: "Side",
  22440. image: {
  22441. source: "./media/characters/selicia/side.svg",
  22442. extra: 440 / 396,
  22443. bottom: 24.8 / 465.979
  22444. }
  22445. },
  22446. maw: {
  22447. height: math.unit(4.665, "feet"),
  22448. name: "Maw",
  22449. image: {
  22450. source: "./media/characters/selicia/maw.svg"
  22451. }
  22452. },
  22453. },
  22454. [
  22455. {
  22456. name: "Normal",
  22457. height: math.unit(11, "feet"),
  22458. default: true
  22459. },
  22460. ]
  22461. ))
  22462. characterMakers.push(() => makeCharacter(
  22463. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22464. {
  22465. side: {
  22466. height: math.unit(2 + 6 / 12, "feet"),
  22467. weight: math.unit(30, "lb"),
  22468. name: "Side",
  22469. image: {
  22470. source: "./media/characters/layla/side.svg",
  22471. extra: 244 / 188,
  22472. bottom: 18.2 / 262.1
  22473. }
  22474. },
  22475. back: {
  22476. height: math.unit(2 + 6 / 12, "feet"),
  22477. weight: math.unit(30, "lb"),
  22478. name: "Back",
  22479. image: {
  22480. source: "./media/characters/layla/back.svg",
  22481. extra: 308 / 241.5,
  22482. bottom: 8.9 / 316.8
  22483. }
  22484. },
  22485. cumming: {
  22486. height: math.unit(2 + 6 / 12, "feet"),
  22487. weight: math.unit(30, "lb"),
  22488. name: "Cumming",
  22489. image: {
  22490. source: "./media/characters/layla/cumming.svg",
  22491. extra: 342 / 279,
  22492. bottom: 595 / 938
  22493. }
  22494. },
  22495. dickFlaccid: {
  22496. height: math.unit(2.595, "feet"),
  22497. name: "Flaccid Genitals",
  22498. image: {
  22499. source: "./media/characters/layla/dick-flaccid.svg"
  22500. }
  22501. },
  22502. dickErect: {
  22503. height: math.unit(2.359, "feet"),
  22504. name: "Erect Genitals",
  22505. image: {
  22506. source: "./media/characters/layla/dick-erect.svg"
  22507. }
  22508. },
  22509. },
  22510. [
  22511. {
  22512. name: "Micro",
  22513. height: math.unit(1, "inch")
  22514. },
  22515. {
  22516. name: "Small",
  22517. height: math.unit(1, "foot")
  22518. },
  22519. {
  22520. name: "Normal",
  22521. height: math.unit(2 + 6 / 12, "feet"),
  22522. default: true
  22523. },
  22524. {
  22525. name: "Macro",
  22526. height: math.unit(200, "feet")
  22527. },
  22528. {
  22529. name: "Megamacro",
  22530. height: math.unit(1000, "miles")
  22531. },
  22532. {
  22533. name: "Planetary",
  22534. height: math.unit(8000, "miles")
  22535. },
  22536. {
  22537. name: "True Layla",
  22538. height: math.unit(200000 * 7, "multiverses")
  22539. },
  22540. ]
  22541. ))
  22542. characterMakers.push(() => makeCharacter(
  22543. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22544. {
  22545. back: {
  22546. height: math.unit(10.5, "feet"),
  22547. weight: math.unit(800, "lb"),
  22548. name: "Back",
  22549. image: {
  22550. source: "./media/characters/knox/back.svg",
  22551. extra: 1486 / 1089,
  22552. bottom: 107 / 1601.4
  22553. }
  22554. },
  22555. side: {
  22556. height: math.unit(10.5, "feet"),
  22557. weight: math.unit(800, "lb"),
  22558. name: "Side",
  22559. image: {
  22560. source: "./media/characters/knox/side.svg",
  22561. extra: 244 / 218,
  22562. bottom: 14 / 260
  22563. }
  22564. },
  22565. },
  22566. [
  22567. {
  22568. name: "Compact",
  22569. height: math.unit(10.5, "feet"),
  22570. default: true
  22571. },
  22572. {
  22573. name: "Dynamax",
  22574. height: math.unit(210, "feet")
  22575. },
  22576. {
  22577. name: "Full Macro",
  22578. height: math.unit(850, "feet")
  22579. },
  22580. ]
  22581. ))
  22582. characterMakers.push(() => makeCharacter(
  22583. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22584. {
  22585. front: {
  22586. height: math.unit(6, "feet"),
  22587. weight: math.unit(152, "lb"),
  22588. name: "Front",
  22589. image: {
  22590. source: "./media/characters/shin-pikachu/front.svg",
  22591. extra: 1574 / 1480,
  22592. bottom: 53.3 / 1626
  22593. }
  22594. },
  22595. hand: {
  22596. height: math.unit(1.055, "feet"),
  22597. name: "Hand",
  22598. image: {
  22599. source: "./media/characters/shin-pikachu/hand.svg"
  22600. }
  22601. },
  22602. foot: {
  22603. height: math.unit(1.1, "feet"),
  22604. name: "Foot",
  22605. image: {
  22606. source: "./media/characters/shin-pikachu/foot.svg"
  22607. }
  22608. },
  22609. collar: {
  22610. height: math.unit(0.386, "feet"),
  22611. name: "Collar",
  22612. image: {
  22613. source: "./media/characters/shin-pikachu/collar.svg"
  22614. }
  22615. },
  22616. },
  22617. [
  22618. {
  22619. name: "Smallest",
  22620. height: math.unit(0.5, "inches")
  22621. },
  22622. {
  22623. name: "Micro",
  22624. height: math.unit(6, "inches")
  22625. },
  22626. {
  22627. name: "Normal",
  22628. height: math.unit(6, "feet"),
  22629. default: true
  22630. },
  22631. {
  22632. name: "Macro",
  22633. height: math.unit(150, "feet")
  22634. },
  22635. ]
  22636. ))
  22637. characterMakers.push(() => makeCharacter(
  22638. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22639. {
  22640. front: {
  22641. height: math.unit(28, "feet"),
  22642. weight: math.unit(10500, "lb"),
  22643. name: "Front",
  22644. image: {
  22645. source: "./media/characters/kayda/front.svg",
  22646. extra: 1536 / 1428,
  22647. bottom: 68.7 / 1603
  22648. }
  22649. },
  22650. back: {
  22651. height: math.unit(28, "feet"),
  22652. weight: math.unit(10500, "lb"),
  22653. name: "Back",
  22654. image: {
  22655. source: "./media/characters/kayda/back.svg",
  22656. extra: 1557 / 1464,
  22657. bottom: 39.5 / 1597.49
  22658. }
  22659. },
  22660. dick: {
  22661. height: math.unit(3.858, "feet"),
  22662. name: "Dick",
  22663. image: {
  22664. source: "./media/characters/kayda/dick.svg"
  22665. }
  22666. },
  22667. },
  22668. [
  22669. {
  22670. name: "Macro",
  22671. height: math.unit(28, "feet"),
  22672. default: true
  22673. },
  22674. ]
  22675. ))
  22676. characterMakers.push(() => makeCharacter(
  22677. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22678. {
  22679. front: {
  22680. height: math.unit(10 + 11 / 12, "feet"),
  22681. weight: math.unit(1400, "lb"),
  22682. name: "Front",
  22683. image: {
  22684. source: "./media/characters/brian/front.svg",
  22685. extra: 737 / 692,
  22686. bottom: 55.4 / 785
  22687. }
  22688. },
  22689. },
  22690. [
  22691. {
  22692. name: "Normal",
  22693. height: math.unit(10 + 11 / 12, "feet"),
  22694. default: true
  22695. },
  22696. ]
  22697. ))
  22698. characterMakers.push(() => makeCharacter(
  22699. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22700. {
  22701. front: {
  22702. height: math.unit(5 + 8 / 12, "feet"),
  22703. weight: math.unit(140, "lb"),
  22704. name: "Front",
  22705. image: {
  22706. source: "./media/characters/khemri/front.svg",
  22707. extra: 4780 / 4059,
  22708. bottom: 80.1 / 4859.25
  22709. }
  22710. },
  22711. },
  22712. [
  22713. {
  22714. name: "Micro",
  22715. height: math.unit(6, "inches")
  22716. },
  22717. {
  22718. name: "Normal",
  22719. height: math.unit(5 + 8 / 12, "feet"),
  22720. default: true
  22721. },
  22722. ]
  22723. ))
  22724. characterMakers.push(() => makeCharacter(
  22725. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22726. {
  22727. front: {
  22728. height: math.unit(13, "feet"),
  22729. weight: math.unit(1700, "lb"),
  22730. name: "Front",
  22731. image: {
  22732. source: "./media/characters/felix-braveheart/front.svg",
  22733. extra: 1222 / 1157,
  22734. bottom: 53.2 / 1280
  22735. }
  22736. },
  22737. back: {
  22738. height: math.unit(13, "feet"),
  22739. weight: math.unit(1700, "lb"),
  22740. name: "Back",
  22741. image: {
  22742. source: "./media/characters/felix-braveheart/back.svg",
  22743. extra: 1277 / 1203,
  22744. bottom: 50.2 / 1327
  22745. }
  22746. },
  22747. feral: {
  22748. height: math.unit(6, "feet"),
  22749. weight: math.unit(400, "lb"),
  22750. name: "Feral",
  22751. image: {
  22752. source: "./media/characters/felix-braveheart/feral.svg",
  22753. extra: 682 / 625,
  22754. bottom: 6.9 / 688
  22755. }
  22756. },
  22757. },
  22758. [
  22759. {
  22760. name: "Normal",
  22761. height: math.unit(13, "feet"),
  22762. default: true
  22763. },
  22764. ]
  22765. ))
  22766. characterMakers.push(() => makeCharacter(
  22767. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22768. {
  22769. side: {
  22770. height: math.unit(5 + 11 / 12, "feet"),
  22771. weight: math.unit(1400, "lb"),
  22772. name: "Side",
  22773. image: {
  22774. source: "./media/characters/shadow-blade/side.svg",
  22775. extra: 1726 / 1267,
  22776. bottom: 58.4 / 1785
  22777. }
  22778. },
  22779. },
  22780. [
  22781. {
  22782. name: "Normal",
  22783. height: math.unit(5 + 11 / 12, "feet"),
  22784. default: true
  22785. },
  22786. ]
  22787. ))
  22788. characterMakers.push(() => makeCharacter(
  22789. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22790. {
  22791. front: {
  22792. height: math.unit(1 + 6 / 12, "feet"),
  22793. weight: math.unit(25, "lb"),
  22794. name: "Front",
  22795. image: {
  22796. source: "./media/characters/karla-halldor/front.svg",
  22797. extra: 1459 / 1383,
  22798. bottom: 12 / 1472
  22799. }
  22800. },
  22801. },
  22802. [
  22803. {
  22804. name: "Normal",
  22805. height: math.unit(1 + 6 / 12, "feet"),
  22806. default: true
  22807. },
  22808. ]
  22809. ))
  22810. characterMakers.push(() => makeCharacter(
  22811. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22812. {
  22813. front: {
  22814. height: math.unit(6 + 2 / 12, "feet"),
  22815. weight: math.unit(160, "lb"),
  22816. name: "Front",
  22817. image: {
  22818. source: "./media/characters/ariam/front.svg",
  22819. extra: 714 / 617,
  22820. bottom: 23.4 / 737,
  22821. }
  22822. },
  22823. squatting: {
  22824. height: math.unit(4.1, "feet"),
  22825. weight: math.unit(160, "lb"),
  22826. name: "Squatting",
  22827. image: {
  22828. source: "./media/characters/ariam/squatting.svg",
  22829. extra: 2617 / 2112,
  22830. bottom: 61.2 / 2681,
  22831. }
  22832. },
  22833. },
  22834. [
  22835. {
  22836. name: "Normal",
  22837. height: math.unit(6 + 2 / 12, "feet"),
  22838. default: true
  22839. },
  22840. {
  22841. name: "Normal+",
  22842. height: math.unit(4, "meters")
  22843. },
  22844. {
  22845. name: "Macro",
  22846. height: math.unit(50, "meters")
  22847. },
  22848. {
  22849. name: "Macro+",
  22850. height: math.unit(100, "meters")
  22851. },
  22852. {
  22853. name: "Megamacro",
  22854. height: math.unit(20, "km")
  22855. },
  22856. ]
  22857. ))
  22858. characterMakers.push(() => makeCharacter(
  22859. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22860. {
  22861. front: {
  22862. height: math.unit(1.67, "meters"),
  22863. weight: math.unit(140, "lb"),
  22864. name: "Front",
  22865. image: {
  22866. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22867. extra: 438 / 410,
  22868. bottom: 0.75 / 439
  22869. }
  22870. },
  22871. },
  22872. [
  22873. {
  22874. name: "Shrunken",
  22875. height: math.unit(7.6, "cm")
  22876. },
  22877. {
  22878. name: "Human Scale",
  22879. height: math.unit(1.67, "meters")
  22880. },
  22881. {
  22882. name: "Wolxi Scale",
  22883. height: math.unit(36.7, "meters"),
  22884. default: true
  22885. },
  22886. ]
  22887. ))
  22888. characterMakers.push(() => makeCharacter(
  22889. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22890. {
  22891. front: {
  22892. height: math.unit(1.73, "meters"),
  22893. weight: math.unit(240, "lb"),
  22894. name: "Front",
  22895. image: {
  22896. source: "./media/characters/izue-two-mothers/front.svg",
  22897. extra: 469 / 437,
  22898. bottom: 1.24 / 470.6
  22899. }
  22900. },
  22901. },
  22902. [
  22903. {
  22904. name: "Shrunken",
  22905. height: math.unit(7.86, "cm")
  22906. },
  22907. {
  22908. name: "Human Scale",
  22909. height: math.unit(1.73, "meters")
  22910. },
  22911. {
  22912. name: "Wolxi Scale",
  22913. height: math.unit(38, "meters"),
  22914. default: true
  22915. },
  22916. ]
  22917. ))
  22918. characterMakers.push(() => makeCharacter(
  22919. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22920. {
  22921. front: {
  22922. height: math.unit(1.55, "meters"),
  22923. weight: math.unit(120, "lb"),
  22924. name: "Front",
  22925. image: {
  22926. source: "./media/characters/teeku-love-shack/front.svg",
  22927. extra: 387 / 362,
  22928. bottom: 1.51 / 388
  22929. }
  22930. },
  22931. },
  22932. [
  22933. {
  22934. name: "Shrunken",
  22935. height: math.unit(7, "cm")
  22936. },
  22937. {
  22938. name: "Human Scale",
  22939. height: math.unit(1.55, "meters")
  22940. },
  22941. {
  22942. name: "Wolxi Scale",
  22943. height: math.unit(34.1, "meters"),
  22944. default: true
  22945. },
  22946. ]
  22947. ))
  22948. characterMakers.push(() => makeCharacter(
  22949. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22950. {
  22951. front: {
  22952. height: math.unit(1.83, "meters"),
  22953. weight: math.unit(135, "lb"),
  22954. name: "Front",
  22955. image: {
  22956. source: "./media/characters/dejma-the-red/front.svg",
  22957. extra: 480 / 458,
  22958. bottom: 1.8 / 482
  22959. }
  22960. },
  22961. },
  22962. [
  22963. {
  22964. name: "Shrunken",
  22965. height: math.unit(8.3, "cm")
  22966. },
  22967. {
  22968. name: "Human Scale",
  22969. height: math.unit(1.83, "meters")
  22970. },
  22971. {
  22972. name: "Wolxi Scale",
  22973. height: math.unit(40, "meters"),
  22974. default: true
  22975. },
  22976. ]
  22977. ))
  22978. characterMakers.push(() => makeCharacter(
  22979. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  22980. {
  22981. front: {
  22982. height: math.unit(1.78, "meters"),
  22983. weight: math.unit(65, "kg"),
  22984. name: "Front",
  22985. image: {
  22986. source: "./media/characters/aki/front.svg",
  22987. extra: 452 / 415
  22988. }
  22989. },
  22990. frontNsfw: {
  22991. height: math.unit(1.78, "meters"),
  22992. weight: math.unit(65, "kg"),
  22993. name: "Front (NSFW)",
  22994. image: {
  22995. source: "./media/characters/aki/front-nsfw.svg",
  22996. extra: 452 / 415
  22997. }
  22998. },
  22999. back: {
  23000. height: math.unit(1.78, "meters"),
  23001. weight: math.unit(65, "kg"),
  23002. name: "Back",
  23003. image: {
  23004. source: "./media/characters/aki/back.svg",
  23005. extra: 452 / 415
  23006. }
  23007. },
  23008. rump: {
  23009. height: math.unit(2.05, "feet"),
  23010. name: "Rump",
  23011. image: {
  23012. source: "./media/characters/aki/rump.svg"
  23013. }
  23014. },
  23015. dick: {
  23016. height: math.unit(0.95, "feet"),
  23017. name: "Dick",
  23018. image: {
  23019. source: "./media/characters/aki/dick.svg"
  23020. }
  23021. },
  23022. },
  23023. [
  23024. {
  23025. name: "Micro",
  23026. height: math.unit(15, "cm")
  23027. },
  23028. {
  23029. name: "Normal",
  23030. height: math.unit(178, "cm"),
  23031. default: true
  23032. },
  23033. {
  23034. name: "Macro",
  23035. height: math.unit(214, "m")
  23036. },
  23037. {
  23038. name: "Macro+",
  23039. height: math.unit(534, "m")
  23040. },
  23041. ]
  23042. ))
  23043. characterMakers.push(() => makeCharacter(
  23044. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23045. {
  23046. front: {
  23047. height: math.unit(5 + 5 / 12, "feet"),
  23048. weight: math.unit(120, "lb"),
  23049. name: "Front",
  23050. image: {
  23051. source: "./media/characters/ari/front.svg",
  23052. extra: 714.5 / 682,
  23053. bottom: 8 / 722.5
  23054. }
  23055. },
  23056. },
  23057. [
  23058. {
  23059. name: "Normal",
  23060. height: math.unit(5 + 5 / 12, "feet")
  23061. },
  23062. {
  23063. name: "Macro",
  23064. height: math.unit(100, "feet"),
  23065. default: true
  23066. },
  23067. {
  23068. name: "Megamacro",
  23069. height: math.unit(100, "miles")
  23070. },
  23071. {
  23072. name: "Gigamacro",
  23073. height: math.unit(80000, "miles")
  23074. },
  23075. ]
  23076. ))
  23077. characterMakers.push(() => makeCharacter(
  23078. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23079. {
  23080. side: {
  23081. height: math.unit(9, "feet"),
  23082. weight: math.unit(400, "kg"),
  23083. name: "Side",
  23084. image: {
  23085. source: "./media/characters/bolt/side.svg",
  23086. extra: 1126 / 896,
  23087. bottom: 60 / 1187.3,
  23088. }
  23089. },
  23090. },
  23091. [
  23092. {
  23093. name: "Micro",
  23094. height: math.unit(5, "inches")
  23095. },
  23096. {
  23097. name: "Normal",
  23098. height: math.unit(9, "feet"),
  23099. default: true
  23100. },
  23101. {
  23102. name: "Macro",
  23103. height: math.unit(700, "feet")
  23104. },
  23105. {
  23106. name: "Max Size",
  23107. height: math.unit(1.52e22, "yottameters")
  23108. },
  23109. ]
  23110. ))
  23111. characterMakers.push(() => makeCharacter(
  23112. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23113. {
  23114. front: {
  23115. height: math.unit(4.53, "meters"),
  23116. weight: math.unit(3, "tons"),
  23117. name: "Front",
  23118. image: {
  23119. source: "./media/characters/draekon-sylviar/front.svg",
  23120. extra: 1228 / 1068,
  23121. bottom: 41 / 1270
  23122. }
  23123. },
  23124. tail: {
  23125. height: math.unit(1.772, "meter"),
  23126. name: "Tail",
  23127. image: {
  23128. source: "./media/characters/draekon-sylviar/tail.svg"
  23129. }
  23130. },
  23131. head: {
  23132. height: math.unit(1.331, "meter"),
  23133. name: "Head",
  23134. image: {
  23135. source: "./media/characters/draekon-sylviar/head.svg"
  23136. }
  23137. },
  23138. hand: {
  23139. height: math.unit(0.564, "meter"),
  23140. name: "Hand",
  23141. image: {
  23142. source: "./media/characters/draekon-sylviar/hand.svg"
  23143. }
  23144. },
  23145. foot: {
  23146. height: math.unit(0.621, "meter"),
  23147. name: "Foot",
  23148. image: {
  23149. source: "./media/characters/draekon-sylviar/foot.svg",
  23150. bottom: 32 / 324
  23151. }
  23152. },
  23153. dick: {
  23154. height: math.unit(61, "cm"),
  23155. name: "Dick",
  23156. image: {
  23157. source: "./media/characters/draekon-sylviar/dick.svg"
  23158. }
  23159. },
  23160. dickseparated: {
  23161. height: math.unit(61, "cm"),
  23162. name: "Dick-separated",
  23163. image: {
  23164. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23165. }
  23166. },
  23167. },
  23168. [
  23169. {
  23170. name: "Small",
  23171. height: math.unit(4.53 / 2, "meters"),
  23172. default: true
  23173. },
  23174. {
  23175. name: "Normal",
  23176. height: math.unit(4.53, "meters"),
  23177. default: true
  23178. },
  23179. {
  23180. name: "Large",
  23181. height: math.unit(4.53 * 2, "meters"),
  23182. },
  23183. ]
  23184. ))
  23185. characterMakers.push(() => makeCharacter(
  23186. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23187. {
  23188. front: {
  23189. height: math.unit(6 + 2 / 12, "feet"),
  23190. weight: math.unit(180, "lb"),
  23191. name: "Front",
  23192. image: {
  23193. source: "./media/characters/brawler/front.svg",
  23194. extra: 3301 / 3027,
  23195. bottom: 138 / 3439
  23196. }
  23197. },
  23198. },
  23199. [
  23200. {
  23201. name: "Normal",
  23202. height: math.unit(6 + 2 / 12, "feet"),
  23203. default: true
  23204. },
  23205. ]
  23206. ))
  23207. characterMakers.push(() => makeCharacter(
  23208. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23209. {
  23210. front: {
  23211. height: math.unit(11, "feet"),
  23212. weight: math.unit(1000, "lb"),
  23213. name: "Front",
  23214. image: {
  23215. source: "./media/characters/alex/front.svg",
  23216. bottom: 44.5 / 620
  23217. }
  23218. },
  23219. },
  23220. [
  23221. {
  23222. name: "Micro",
  23223. height: math.unit(5, "inches")
  23224. },
  23225. {
  23226. name: "Normal",
  23227. height: math.unit(11, "feet"),
  23228. default: true
  23229. },
  23230. {
  23231. name: "Macro",
  23232. height: math.unit(9.5e9, "feet")
  23233. },
  23234. {
  23235. name: "Max Size",
  23236. height: math.unit(1.4e283, "yottameters")
  23237. },
  23238. ]
  23239. ))
  23240. characterMakers.push(() => makeCharacter(
  23241. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23242. {
  23243. female: {
  23244. height: math.unit(29.9, "m"),
  23245. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23246. name: "Female",
  23247. image: {
  23248. source: "./media/characters/zenari/female.svg",
  23249. extra: 3281.6 / 3217,
  23250. bottom: 72.2 / 3353
  23251. }
  23252. },
  23253. male: {
  23254. height: math.unit(27.7, "m"),
  23255. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23256. name: "Male",
  23257. image: {
  23258. source: "./media/characters/zenari/male.svg",
  23259. extra: 3008 / 2991,
  23260. bottom: 54.6 / 3069
  23261. }
  23262. },
  23263. },
  23264. [
  23265. {
  23266. name: "Macro",
  23267. height: math.unit(29.7, "meters"),
  23268. default: true
  23269. },
  23270. ]
  23271. ))
  23272. characterMakers.push(() => makeCharacter(
  23273. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23274. {
  23275. female: {
  23276. height: math.unit(23.8, "m"),
  23277. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23278. name: "Female",
  23279. image: {
  23280. source: "./media/characters/mactarian/female.svg",
  23281. extra: 2662 / 2569,
  23282. bottom: 73 / 2736
  23283. }
  23284. },
  23285. male: {
  23286. height: math.unit(23.8, "m"),
  23287. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23288. name: "Male",
  23289. image: {
  23290. source: "./media/characters/mactarian/male.svg",
  23291. extra: 2673 / 2600,
  23292. bottom: 76 / 2750
  23293. }
  23294. },
  23295. },
  23296. [
  23297. {
  23298. name: "Macro",
  23299. height: math.unit(23.8, "meters"),
  23300. default: true
  23301. },
  23302. ]
  23303. ))
  23304. characterMakers.push(() => makeCharacter(
  23305. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23306. {
  23307. female: {
  23308. height: math.unit(19.3, "m"),
  23309. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23310. name: "Female",
  23311. image: {
  23312. source: "./media/characters/umok/female.svg",
  23313. extra: 2186 / 2078,
  23314. bottom: 87 / 2277
  23315. }
  23316. },
  23317. male: {
  23318. height: math.unit(19.5, "m"),
  23319. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23320. name: "Male",
  23321. image: {
  23322. source: "./media/characters/umok/male.svg",
  23323. extra: 2233 / 2140,
  23324. bottom: 24.4 / 2258
  23325. }
  23326. },
  23327. },
  23328. [
  23329. {
  23330. name: "Macro",
  23331. height: math.unit(19.3, "meters"),
  23332. default: true
  23333. },
  23334. ]
  23335. ))
  23336. characterMakers.push(() => makeCharacter(
  23337. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23338. {
  23339. female: {
  23340. height: math.unit(26.15, "m"),
  23341. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23342. name: "Female",
  23343. image: {
  23344. source: "./media/characters/joraxian/female.svg",
  23345. extra: 2912 / 2824,
  23346. bottom: 36 / 2956
  23347. }
  23348. },
  23349. male: {
  23350. height: math.unit(25.4, "m"),
  23351. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23352. name: "Male",
  23353. image: {
  23354. source: "./media/characters/joraxian/male.svg",
  23355. extra: 2877 / 2721,
  23356. bottom: 82 / 2967
  23357. }
  23358. },
  23359. },
  23360. [
  23361. {
  23362. name: "Macro",
  23363. height: math.unit(26.15, "meters"),
  23364. default: true
  23365. },
  23366. ]
  23367. ))
  23368. characterMakers.push(() => makeCharacter(
  23369. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23370. {
  23371. female: {
  23372. height: math.unit(21.6, "m"),
  23373. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23374. name: "Female",
  23375. image: {
  23376. source: "./media/characters/sthara/female.svg",
  23377. extra: 2516 / 2347,
  23378. bottom: 21.5 / 2537
  23379. }
  23380. },
  23381. male: {
  23382. height: math.unit(24, "m"),
  23383. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23384. name: "Male",
  23385. image: {
  23386. source: "./media/characters/sthara/male.svg",
  23387. extra: 2732 / 2607,
  23388. bottom: 23 / 2732
  23389. }
  23390. },
  23391. },
  23392. [
  23393. {
  23394. name: "Macro",
  23395. height: math.unit(21.6, "meters"),
  23396. default: true
  23397. },
  23398. ]
  23399. ))
  23400. characterMakers.push(() => makeCharacter(
  23401. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23402. {
  23403. front: {
  23404. height: math.unit(6 + 4 / 12, "feet"),
  23405. weight: math.unit(175, "lb"),
  23406. name: "Front",
  23407. image: {
  23408. source: "./media/characters/luka-bryzant/front.svg",
  23409. extra: 311 / 289,
  23410. bottom: 4 / 315
  23411. }
  23412. },
  23413. back: {
  23414. height: math.unit(6 + 4 / 12, "feet"),
  23415. weight: math.unit(175, "lb"),
  23416. name: "Back",
  23417. image: {
  23418. source: "./media/characters/luka-bryzant/back.svg",
  23419. extra: 311 / 289,
  23420. bottom: 3.8 / 313.7
  23421. }
  23422. },
  23423. },
  23424. [
  23425. {
  23426. name: "Micro",
  23427. height: math.unit(10, "inches")
  23428. },
  23429. {
  23430. name: "Normal",
  23431. height: math.unit(6 + 4 / 12, "feet"),
  23432. default: true
  23433. },
  23434. {
  23435. name: "Large",
  23436. height: math.unit(12, "feet")
  23437. },
  23438. ]
  23439. ))
  23440. characterMakers.push(() => makeCharacter(
  23441. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23442. {
  23443. front: {
  23444. height: math.unit(5 + 7 / 12, "feet"),
  23445. weight: math.unit(185, "lb"),
  23446. name: "Front",
  23447. image: {
  23448. source: "./media/characters/aman-aquila/front.svg",
  23449. extra: 1013 / 976,
  23450. bottom: 45.6 / 1057
  23451. }
  23452. },
  23453. side: {
  23454. height: math.unit(5 + 7 / 12, "feet"),
  23455. weight: math.unit(185, "lb"),
  23456. name: "Side",
  23457. image: {
  23458. source: "./media/characters/aman-aquila/side.svg",
  23459. extra: 1054 / 1011,
  23460. bottom: 15 / 1070
  23461. }
  23462. },
  23463. back: {
  23464. height: math.unit(5 + 7 / 12, "feet"),
  23465. weight: math.unit(185, "lb"),
  23466. name: "Back",
  23467. image: {
  23468. source: "./media/characters/aman-aquila/back.svg",
  23469. extra: 1026 / 970,
  23470. bottom: 12 / 1039
  23471. }
  23472. },
  23473. head: {
  23474. height: math.unit(1.211, "feet"),
  23475. name: "Head",
  23476. image: {
  23477. source: "./media/characters/aman-aquila/head.svg",
  23478. }
  23479. },
  23480. },
  23481. [
  23482. {
  23483. name: "Minimicro",
  23484. height: math.unit(0.057, "inches")
  23485. },
  23486. {
  23487. name: "Micro",
  23488. height: math.unit(7, "inches")
  23489. },
  23490. {
  23491. name: "Mini",
  23492. height: math.unit(3 + 7 / 12, "feet")
  23493. },
  23494. {
  23495. name: "Normal",
  23496. height: math.unit(5 + 7 / 12, "feet"),
  23497. default: true
  23498. },
  23499. {
  23500. name: "Macro",
  23501. height: math.unit(157 + 7 / 12, "feet")
  23502. },
  23503. {
  23504. name: "Megamacro",
  23505. height: math.unit(1557 + 7 / 12, "feet")
  23506. },
  23507. {
  23508. name: "Gigamacro",
  23509. height: math.unit(15557 + 7 / 12, "feet")
  23510. },
  23511. ]
  23512. ))
  23513. characterMakers.push(() => makeCharacter(
  23514. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23515. {
  23516. front: {
  23517. height: math.unit(3 + 2 / 12, "inches"),
  23518. weight: math.unit(0.3, "ounces"),
  23519. name: "Front",
  23520. image: {
  23521. source: "./media/characters/hiphae/front.svg",
  23522. extra: 1931 / 1683,
  23523. bottom: 24 / 1955
  23524. }
  23525. },
  23526. },
  23527. [
  23528. {
  23529. name: "Normal",
  23530. height: math.unit(3 + 1 / 2, "inches"),
  23531. default: true
  23532. },
  23533. ]
  23534. ))
  23535. characterMakers.push(() => makeCharacter(
  23536. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23537. {
  23538. front: {
  23539. height: math.unit(5 + 10 / 12, "feet"),
  23540. weight: math.unit(165, "lb"),
  23541. name: "Front",
  23542. image: {
  23543. source: "./media/characters/nicky/front.svg",
  23544. extra: 3144 / 2886,
  23545. bottom: 45.6 / 3192
  23546. }
  23547. },
  23548. back: {
  23549. height: math.unit(5 + 10 / 12, "feet"),
  23550. weight: math.unit(165, "lb"),
  23551. name: "Back",
  23552. image: {
  23553. source: "./media/characters/nicky/back.svg",
  23554. extra: 3055 / 2804,
  23555. bottom: 28.4 / 3087
  23556. }
  23557. },
  23558. frontclothed: {
  23559. height: math.unit(5 + 10 / 12, "feet"),
  23560. weight: math.unit(165, "lb"),
  23561. name: "Front-clothed",
  23562. image: {
  23563. source: "./media/characters/nicky/front-clothed.svg",
  23564. extra: 3184.9 / 2926.9,
  23565. bottom: 86.5 / 3239.9
  23566. }
  23567. },
  23568. foot: {
  23569. height: math.unit(1.16, "feet"),
  23570. name: "Foot",
  23571. image: {
  23572. source: "./media/characters/nicky/foot.svg"
  23573. }
  23574. },
  23575. feet: {
  23576. height: math.unit(1.34, "feet"),
  23577. name: "Feet",
  23578. image: {
  23579. source: "./media/characters/nicky/feet.svg"
  23580. }
  23581. },
  23582. maw: {
  23583. height: math.unit(0.9, "feet"),
  23584. name: "Maw",
  23585. image: {
  23586. source: "./media/characters/nicky/maw.svg"
  23587. }
  23588. },
  23589. },
  23590. [
  23591. {
  23592. name: "Normal",
  23593. height: math.unit(5 + 10 / 12, "feet"),
  23594. default: true
  23595. },
  23596. {
  23597. name: "Macro",
  23598. height: math.unit(60, "feet")
  23599. },
  23600. {
  23601. name: "Megamacro",
  23602. height: math.unit(1, "mile")
  23603. },
  23604. ]
  23605. ))
  23606. characterMakers.push(() => makeCharacter(
  23607. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23608. {
  23609. side: {
  23610. height: math.unit(10, "feet"),
  23611. weight: math.unit(600, "lb"),
  23612. name: "Side",
  23613. image: {
  23614. source: "./media/characters/blair/side.svg",
  23615. bottom: 16.6 / 475,
  23616. extra: 458 / 431
  23617. }
  23618. },
  23619. },
  23620. [
  23621. {
  23622. name: "Micro",
  23623. height: math.unit(8, "inches")
  23624. },
  23625. {
  23626. name: "Normal",
  23627. height: math.unit(10, "feet"),
  23628. default: true
  23629. },
  23630. {
  23631. name: "Macro",
  23632. height: math.unit(180, "feet")
  23633. },
  23634. ]
  23635. ))
  23636. characterMakers.push(() => makeCharacter(
  23637. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23638. {
  23639. front: {
  23640. height: math.unit(5 + 4 / 12, "feet"),
  23641. weight: math.unit(125, "lb"),
  23642. name: "Front",
  23643. image: {
  23644. source: "./media/characters/fisher/front.svg",
  23645. extra: 444 / 390,
  23646. bottom: 2 / 444.8
  23647. }
  23648. },
  23649. },
  23650. [
  23651. {
  23652. name: "Micro",
  23653. height: math.unit(4, "inches")
  23654. },
  23655. {
  23656. name: "Normal",
  23657. height: math.unit(5 + 4 / 12, "feet"),
  23658. default: true
  23659. },
  23660. {
  23661. name: "Macro",
  23662. height: math.unit(100, "feet")
  23663. },
  23664. ]
  23665. ))
  23666. characterMakers.push(() => makeCharacter(
  23667. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23668. {
  23669. front: {
  23670. height: math.unit(6.71, "feet"),
  23671. weight: math.unit(200, "lb"),
  23672. capacity: math.unit(1000000, "people"),
  23673. name: "Front",
  23674. image: {
  23675. source: "./media/characters/gliss/front.svg",
  23676. extra: 2347 / 2231,
  23677. bottom: 113 / 2462
  23678. }
  23679. },
  23680. hammerspaceSize: {
  23681. height: math.unit(6.71 * 717, "feet"),
  23682. weight: math.unit(200, "lb"),
  23683. capacity: math.unit(1000000, "people"),
  23684. name: "Hammerspace Size",
  23685. image: {
  23686. source: "./media/characters/gliss/front.svg",
  23687. extra: 2347 / 2231,
  23688. bottom: 113 / 2462
  23689. }
  23690. },
  23691. },
  23692. [
  23693. {
  23694. name: "Normal",
  23695. height: math.unit(6.71, "feet"),
  23696. default: true
  23697. },
  23698. ]
  23699. ))
  23700. characterMakers.push(() => makeCharacter(
  23701. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23702. {
  23703. side: {
  23704. height: math.unit(1.44, "m"),
  23705. weight: math.unit(80, "kg"),
  23706. name: "Side",
  23707. image: {
  23708. source: "./media/characters/dune-anderson/side.svg",
  23709. bottom: 49 / 1426
  23710. }
  23711. },
  23712. },
  23713. [
  23714. {
  23715. name: "Wolf-sized",
  23716. height: math.unit(1.44, "meters")
  23717. },
  23718. {
  23719. name: "Normal",
  23720. height: math.unit(5.05, "meters"),
  23721. default: true
  23722. },
  23723. {
  23724. name: "Big",
  23725. height: math.unit(14.4, "meters")
  23726. },
  23727. {
  23728. name: "Huge",
  23729. height: math.unit(144, "meters")
  23730. },
  23731. ]
  23732. ))
  23733. characterMakers.push(() => makeCharacter(
  23734. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23735. {
  23736. front: {
  23737. height: math.unit(7, "feet"),
  23738. weight: math.unit(425, "lb"),
  23739. name: "Front",
  23740. image: {
  23741. source: "./media/characters/hind/front.svg",
  23742. extra: 2091 / 1860,
  23743. bottom: 129 / 2220
  23744. }
  23745. },
  23746. back: {
  23747. height: math.unit(7, "feet"),
  23748. weight: math.unit(425, "lb"),
  23749. name: "Back",
  23750. image: {
  23751. source: "./media/characters/hind/back.svg",
  23752. extra: 2091 / 1860,
  23753. bottom: 24.6 / 2309
  23754. }
  23755. },
  23756. tail: {
  23757. height: math.unit(2.8, "feet"),
  23758. name: "Tail",
  23759. image: {
  23760. source: "./media/characters/hind/tail.svg"
  23761. }
  23762. },
  23763. head: {
  23764. height: math.unit(2.55, "feet"),
  23765. name: "Head",
  23766. image: {
  23767. source: "./media/characters/hind/head.svg"
  23768. }
  23769. },
  23770. },
  23771. [
  23772. {
  23773. name: "XS",
  23774. height: math.unit(0.7, "feet")
  23775. },
  23776. {
  23777. name: "Normal",
  23778. height: math.unit(7, "feet"),
  23779. default: true
  23780. },
  23781. {
  23782. name: "XL",
  23783. height: math.unit(70, "feet")
  23784. },
  23785. ]
  23786. ))
  23787. characterMakers.push(() => makeCharacter(
  23788. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23789. {
  23790. front: {
  23791. height: math.unit(6, "feet"),
  23792. weight: math.unit(150, "lb"),
  23793. name: "Front",
  23794. image: {
  23795. source: "./media/characters/dylan-skaven/front.svg",
  23796. extra: 2318 / 2063,
  23797. bottom: 93.4 / 2410
  23798. }
  23799. },
  23800. },
  23801. [
  23802. {
  23803. name: "Nano",
  23804. height: math.unit(1, "mm")
  23805. },
  23806. {
  23807. name: "Micro",
  23808. height: math.unit(1, "cm")
  23809. },
  23810. {
  23811. name: "Normal",
  23812. height: math.unit(2.1, "meters"),
  23813. default: true
  23814. },
  23815. ]
  23816. ))
  23817. characterMakers.push(() => makeCharacter(
  23818. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23819. {
  23820. front: {
  23821. height: math.unit(7 + 5 / 12, "feet"),
  23822. weight: math.unit(357, "lb"),
  23823. name: "Front",
  23824. image: {
  23825. source: "./media/characters/solex-draconov/front.svg",
  23826. extra: 1993 / 1865,
  23827. bottom: 117 / 2111
  23828. }
  23829. },
  23830. },
  23831. [
  23832. {
  23833. name: "Natural Height",
  23834. height: math.unit(7 + 5 / 12, "feet"),
  23835. default: true
  23836. },
  23837. {
  23838. name: "Macro",
  23839. height: math.unit(350, "feet")
  23840. },
  23841. {
  23842. name: "Macro+",
  23843. height: math.unit(1000, "feet")
  23844. },
  23845. {
  23846. name: "Megamacro",
  23847. height: math.unit(20, "km")
  23848. },
  23849. {
  23850. name: "Megamacro+",
  23851. height: math.unit(1000, "km")
  23852. },
  23853. {
  23854. name: "Gigamacro",
  23855. height: math.unit(2.5, "Gm")
  23856. },
  23857. {
  23858. name: "Teramacro",
  23859. height: math.unit(15, "Tm")
  23860. },
  23861. {
  23862. name: "Galactic",
  23863. height: math.unit(30, "Zm")
  23864. },
  23865. {
  23866. name: "Universal",
  23867. height: math.unit(21000, "Ym")
  23868. },
  23869. {
  23870. name: "Omniversal",
  23871. height: math.unit(9.861e50, "Ym")
  23872. },
  23873. {
  23874. name: "Existential",
  23875. height: math.unit(1e300, "meters")
  23876. },
  23877. ]
  23878. ))
  23879. characterMakers.push(() => makeCharacter(
  23880. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23881. {
  23882. side: {
  23883. height: math.unit(25, "feet"),
  23884. weight: math.unit(90000, "lb"),
  23885. name: "Side",
  23886. image: {
  23887. source: "./media/characters/mandarax/side.svg",
  23888. extra: 614 / 332,
  23889. bottom: 55 / 630
  23890. }
  23891. },
  23892. head: {
  23893. height: math.unit(11.4, "feet"),
  23894. name: "Head",
  23895. image: {
  23896. source: "./media/characters/mandarax/head.svg"
  23897. }
  23898. },
  23899. belly: {
  23900. height: math.unit(33, "feet"),
  23901. name: "Belly",
  23902. capacity: math.unit(500, "people"),
  23903. image: {
  23904. source: "./media/characters/mandarax/belly.svg"
  23905. }
  23906. },
  23907. dick: {
  23908. height: math.unit(8.46, "feet"),
  23909. name: "Dick",
  23910. image: {
  23911. source: "./media/characters/mandarax/dick.svg"
  23912. }
  23913. },
  23914. top: {
  23915. height: math.unit(28, "meters"),
  23916. name: "Top",
  23917. image: {
  23918. source: "./media/characters/mandarax/top.svg"
  23919. }
  23920. },
  23921. },
  23922. [
  23923. {
  23924. name: "Normal",
  23925. height: math.unit(25, "feet"),
  23926. default: true
  23927. },
  23928. ]
  23929. ))
  23930. characterMakers.push(() => makeCharacter(
  23931. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23932. {
  23933. front: {
  23934. height: math.unit(5, "feet"),
  23935. weight: math.unit(90, "lb"),
  23936. name: "Front",
  23937. image: {
  23938. source: "./media/characters/pixil/front.svg",
  23939. extra: 2000 / 1618,
  23940. bottom: 12.3 / 2011
  23941. }
  23942. },
  23943. },
  23944. [
  23945. {
  23946. name: "Normal",
  23947. height: math.unit(5, "feet"),
  23948. default: true
  23949. },
  23950. {
  23951. name: "Megamacro",
  23952. height: math.unit(10, "miles"),
  23953. },
  23954. ]
  23955. ))
  23956. characterMakers.push(() => makeCharacter(
  23957. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23958. {
  23959. front: {
  23960. height: math.unit(7 + 2 / 12, "feet"),
  23961. weight: math.unit(200, "lb"),
  23962. name: "Front",
  23963. image: {
  23964. source: "./media/characters/angel/front.svg",
  23965. extra: 1830 / 1737,
  23966. bottom: 22.6 / 1854,
  23967. }
  23968. },
  23969. },
  23970. [
  23971. {
  23972. name: "Normal",
  23973. height: math.unit(7 + 2 / 12, "feet"),
  23974. default: true
  23975. },
  23976. {
  23977. name: "Macro",
  23978. height: math.unit(1000, "feet")
  23979. },
  23980. {
  23981. name: "Megamacro",
  23982. height: math.unit(2, "miles")
  23983. },
  23984. {
  23985. name: "Gigamacro",
  23986. height: math.unit(20, "earths")
  23987. },
  23988. ]
  23989. ))
  23990. characterMakers.push(() => makeCharacter(
  23991. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  23992. {
  23993. front: {
  23994. height: math.unit(5, "feet"),
  23995. weight: math.unit(180, "lb"),
  23996. name: "Front",
  23997. image: {
  23998. source: "./media/characters/mekana/front.svg",
  23999. extra: 1671 / 1605,
  24000. bottom: 3.5 / 1691
  24001. }
  24002. },
  24003. side: {
  24004. height: math.unit(5, "feet"),
  24005. weight: math.unit(180, "lb"),
  24006. name: "Side",
  24007. image: {
  24008. source: "./media/characters/mekana/side.svg",
  24009. extra: 1671 / 1605,
  24010. bottom: 3.5 / 1691
  24011. }
  24012. },
  24013. back: {
  24014. height: math.unit(5, "feet"),
  24015. weight: math.unit(180, "lb"),
  24016. name: "Back",
  24017. image: {
  24018. source: "./media/characters/mekana/back.svg",
  24019. extra: 1671 / 1605,
  24020. bottom: 3.5 / 1691
  24021. }
  24022. },
  24023. },
  24024. [
  24025. {
  24026. name: "Normal",
  24027. height: math.unit(5, "feet"),
  24028. default: true
  24029. },
  24030. ]
  24031. ))
  24032. characterMakers.push(() => makeCharacter(
  24033. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24034. {
  24035. front: {
  24036. height: math.unit(4 + 6 / 12, "feet"),
  24037. weight: math.unit(80, "lb"),
  24038. name: "Front",
  24039. image: {
  24040. source: "./media/characters/pixie/front.svg",
  24041. extra: 1924 / 1825,
  24042. bottom: 22.4 / 1946
  24043. }
  24044. },
  24045. },
  24046. [
  24047. {
  24048. name: "Normal",
  24049. height: math.unit(4 + 6 / 12, "feet"),
  24050. default: true
  24051. },
  24052. {
  24053. name: "Macro",
  24054. height: math.unit(40, "feet")
  24055. },
  24056. ]
  24057. ))
  24058. characterMakers.push(() => makeCharacter(
  24059. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24060. {
  24061. front: {
  24062. height: math.unit(2.1, "meters"),
  24063. weight: math.unit(200, "lb"),
  24064. name: "Front",
  24065. image: {
  24066. source: "./media/characters/the-lascivious/front.svg",
  24067. extra: 1 / 0.893,
  24068. bottom: 3.5 / 573.7
  24069. }
  24070. },
  24071. },
  24072. [
  24073. {
  24074. name: "Human Scale",
  24075. height: math.unit(2.1, "meters")
  24076. },
  24077. {
  24078. name: "Wolxi Scale",
  24079. height: math.unit(46.2, "m"),
  24080. default: true
  24081. },
  24082. {
  24083. name: "Boinker of Buildings",
  24084. height: math.unit(10, "km")
  24085. },
  24086. {
  24087. name: "Shagger of Skyscrapers",
  24088. height: math.unit(40, "km")
  24089. },
  24090. {
  24091. name: "Banger of Boroughs",
  24092. height: math.unit(4000, "km")
  24093. },
  24094. {
  24095. name: "Screwer of States",
  24096. height: math.unit(100000, "km")
  24097. },
  24098. {
  24099. name: "Pounder of Planets",
  24100. height: math.unit(2000000, "km")
  24101. },
  24102. ]
  24103. ))
  24104. characterMakers.push(() => makeCharacter(
  24105. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24106. {
  24107. front: {
  24108. height: math.unit(6, "feet"),
  24109. weight: math.unit(150, "lb"),
  24110. name: "Front",
  24111. image: {
  24112. source: "./media/characters/aj/front.svg",
  24113. extra: 2039 / 1562,
  24114. bottom: 40 / 2079
  24115. }
  24116. },
  24117. },
  24118. [
  24119. {
  24120. name: "Normal",
  24121. height: math.unit(11 + 6 / 12, "feet"),
  24122. default: true
  24123. },
  24124. {
  24125. name: "Megamacro",
  24126. height: math.unit(60, "megameters")
  24127. },
  24128. ]
  24129. ))
  24130. characterMakers.push(() => makeCharacter(
  24131. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24132. {
  24133. side: {
  24134. height: math.unit(31 + 8/12, "feet"),
  24135. weight: math.unit(75000, "kg"),
  24136. name: "Side",
  24137. image: {
  24138. source: "./media/characters/koros/side.svg",
  24139. extra: 1442/1297,
  24140. bottom: 122.7/1562
  24141. }
  24142. },
  24143. dicksKingsCrown: {
  24144. height: math.unit(6, "feet"),
  24145. name: "Dicks (King's Crown)",
  24146. image: {
  24147. source: "./media/characters/koros/dicks-kings-crown.svg"
  24148. }
  24149. },
  24150. dicksTailSet: {
  24151. height: math.unit(3, "feet"),
  24152. name: "Dicks (Tail Set)",
  24153. image: {
  24154. source: "./media/characters/koros/dicks-tail-set.svg"
  24155. }
  24156. },
  24157. dickCumming: {
  24158. height: math.unit(7.98, "feet"),
  24159. name: "Dick (Cumming)",
  24160. image: {
  24161. source: "./media/characters/koros/dick-cumming.svg"
  24162. }
  24163. },
  24164. dicksBack: {
  24165. height: math.unit(5.9, "feet"),
  24166. name: "Dicks (Back)",
  24167. image: {
  24168. source: "./media/characters/koros/dicks-back.svg"
  24169. }
  24170. },
  24171. dicksFront: {
  24172. height: math.unit(3.72, "feet"),
  24173. name: "Dicks (Front)",
  24174. image: {
  24175. source: "./media/characters/koros/dicks-front.svg"
  24176. }
  24177. },
  24178. dicksPeeking: {
  24179. height: math.unit(3.0, "feet"),
  24180. name: "Dicks (Peeking)",
  24181. image: {
  24182. source: "./media/characters/koros/dicks-peeking.svg"
  24183. }
  24184. },
  24185. eye: {
  24186. height: math.unit(1.7, "feet"),
  24187. name: "Eye",
  24188. image: {
  24189. source: "./media/characters/koros/eye.svg"
  24190. }
  24191. },
  24192. headFront: {
  24193. height: math.unit(11.69, "feet"),
  24194. name: "Head (Front)",
  24195. image: {
  24196. source: "./media/characters/koros/head-front.svg"
  24197. }
  24198. },
  24199. headSide: {
  24200. height: math.unit(14, "feet"),
  24201. name: "Head (Side)",
  24202. image: {
  24203. source: "./media/characters/koros/head-side.svg"
  24204. }
  24205. },
  24206. leg: {
  24207. height: math.unit(17, "feet"),
  24208. name: "Leg",
  24209. image: {
  24210. source: "./media/characters/koros/leg.svg"
  24211. }
  24212. },
  24213. mawSide: {
  24214. height: math.unit(12.8, "feet"),
  24215. name: "Maw (Side)",
  24216. image: {
  24217. source: "./media/characters/koros/maw-side.svg"
  24218. }
  24219. },
  24220. mawSpitting: {
  24221. height: math.unit(17, "feet"),
  24222. name: "Maw (Spitting)",
  24223. image: {
  24224. source: "./media/characters/koros/maw-spitting.svg"
  24225. }
  24226. },
  24227. slit: {
  24228. height: math.unit(2.8, "feet"),
  24229. name: "Slit",
  24230. image: {
  24231. source: "./media/characters/koros/slit.svg"
  24232. }
  24233. },
  24234. stomach: {
  24235. height: math.unit(6.8, "feet"),
  24236. capacity: math.unit(20, "people"),
  24237. name: "Stomach",
  24238. image: {
  24239. source: "./media/characters/koros/stomach.svg"
  24240. }
  24241. },
  24242. wingspanBottom: {
  24243. height: math.unit(114, "feet"),
  24244. name: "Wingspan (Bottom)",
  24245. image: {
  24246. source: "./media/characters/koros/wingspan-bottom.svg"
  24247. }
  24248. },
  24249. wingspanTop: {
  24250. height: math.unit(104, "feet"),
  24251. name: "Wingspan (Top)",
  24252. image: {
  24253. source: "./media/characters/koros/wingspan-top.svg"
  24254. }
  24255. },
  24256. },
  24257. [
  24258. {
  24259. name: "Normal",
  24260. height: math.unit(31 + 8/12, "feet"),
  24261. default: true
  24262. },
  24263. ]
  24264. ))
  24265. characterMakers.push(() => makeCharacter(
  24266. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24267. {
  24268. front: {
  24269. height: math.unit(18 + 5/12, "feet"),
  24270. weight: math.unit(3750, "kg"),
  24271. name: "Front",
  24272. image: {
  24273. source: "./media/characters/vexx/front.svg",
  24274. extra: 426/396,
  24275. bottom: 31.5/458
  24276. }
  24277. },
  24278. maw: {
  24279. height: math.unit(6, "feet"),
  24280. name: "Maw",
  24281. image: {
  24282. source: "./media/characters/vexx/maw.svg"
  24283. }
  24284. },
  24285. },
  24286. [
  24287. {
  24288. name: "Normal",
  24289. height: math.unit(18 + 5/12, "feet"),
  24290. default: true
  24291. },
  24292. ]
  24293. ))
  24294. characterMakers.push(() => makeCharacter(
  24295. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24296. {
  24297. front: {
  24298. height: math.unit(17 + 6/12, "feet"),
  24299. weight: math.unit(150, "lb"),
  24300. name: "Front",
  24301. image: {
  24302. source: "./media/characters/baadra/front.svg",
  24303. extra: 3137/2890,
  24304. bottom: 168.4/3305
  24305. }
  24306. },
  24307. back: {
  24308. height: math.unit(17 + 6/12, "feet"),
  24309. weight: math.unit(150, "lb"),
  24310. name: "Back",
  24311. image: {
  24312. source: "./media/characters/baadra/back.svg",
  24313. extra: 3142/2890,
  24314. bottom: 220/3371
  24315. }
  24316. },
  24317. head: {
  24318. height: math.unit(5.45, "feet"),
  24319. name: "Head",
  24320. image: {
  24321. source: "./media/characters/baadra/head.svg"
  24322. }
  24323. },
  24324. headAngry: {
  24325. height: math.unit(4.95, "feet"),
  24326. name: "Head (Angry)",
  24327. image: {
  24328. source: "./media/characters/baadra/head-angry.svg"
  24329. }
  24330. },
  24331. headOpen: {
  24332. height: math.unit(6, "feet"),
  24333. name: "Head (Open)",
  24334. image: {
  24335. source: "./media/characters/baadra/head-open.svg"
  24336. }
  24337. },
  24338. },
  24339. [
  24340. {
  24341. name: "Normal",
  24342. height: math.unit(17 + 6/12, "feet"),
  24343. default: true
  24344. },
  24345. ]
  24346. ))
  24347. characterMakers.push(() => makeCharacter(
  24348. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24349. {
  24350. front: {
  24351. height: math.unit(7 + 3/12, "feet"),
  24352. weight: math.unit(180, "lb"),
  24353. name: "Front",
  24354. image: {
  24355. source: "./media/characters/juri/front.svg",
  24356. extra: 1401/1237,
  24357. bottom: 18.5/1418
  24358. }
  24359. },
  24360. side: {
  24361. height: math.unit(7 + 3/12, "feet"),
  24362. weight: math.unit(180, "lb"),
  24363. name: "Side",
  24364. image: {
  24365. source: "./media/characters/juri/side.svg",
  24366. extra: 1424/1242,
  24367. bottom: 18.5/1447
  24368. }
  24369. },
  24370. sitting: {
  24371. height: math.unit(6, "feet"),
  24372. weight: math.unit(180, "lb"),
  24373. name: "Sitting",
  24374. image: {
  24375. source: "./media/characters/juri/sitting.svg",
  24376. extra: 1270/1143,
  24377. bottom: 100/1343
  24378. }
  24379. },
  24380. back: {
  24381. height: math.unit(7 + 3/12, "feet"),
  24382. weight: math.unit(180, "lb"),
  24383. name: "Back",
  24384. image: {
  24385. source: "./media/characters/juri/back.svg",
  24386. extra: 1377/1240,
  24387. bottom: 23.7/1405
  24388. }
  24389. },
  24390. maw: {
  24391. height: math.unit(2.8, "feet"),
  24392. name: "Maw",
  24393. image: {
  24394. source: "./media/characters/juri/maw.svg"
  24395. }
  24396. },
  24397. stomach: {
  24398. height: math.unit(0.89, "feet"),
  24399. capacity: math.unit(4, "liters"),
  24400. name: "Stomach",
  24401. image: {
  24402. source: "./media/characters/juri/stomach.svg"
  24403. }
  24404. },
  24405. },
  24406. [
  24407. {
  24408. name: "Normal",
  24409. height: math.unit(7 + 3/12, "feet"),
  24410. default: true
  24411. },
  24412. ]
  24413. ))
  24414. characterMakers.push(() => makeCharacter(
  24415. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24416. {
  24417. fox: {
  24418. height: math.unit(5 + 6/12, "feet"),
  24419. weight: math.unit(140, "lb"),
  24420. name: "Fox",
  24421. image: {
  24422. source: "./media/characters/maxene-sita/fox.svg",
  24423. extra: 146/138,
  24424. bottom: 2.1/148.19
  24425. }
  24426. },
  24427. kitsune: {
  24428. height: math.unit(10, "feet"),
  24429. weight: math.unit(800, "lb"),
  24430. name: "Kitsune",
  24431. image: {
  24432. source: "./media/characters/maxene-sita/kitsune.svg",
  24433. extra: 185/176,
  24434. bottom: 4.7/189.9
  24435. }
  24436. },
  24437. },
  24438. [
  24439. {
  24440. name: "Normal",
  24441. height: math.unit(5 + 6/12, "feet"),
  24442. default: true
  24443. },
  24444. ]
  24445. ))
  24446. characterMakers.push(() => makeCharacter(
  24447. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24448. {
  24449. front: {
  24450. height: math.unit(3 + 4/12, "feet"),
  24451. weight: math.unit(70, "lb"),
  24452. name: "Front",
  24453. image: {
  24454. source: "./media/characters/maia/front.svg",
  24455. extra: 227/219.5,
  24456. bottom: 40 / 267
  24457. }
  24458. },
  24459. back: {
  24460. height: math.unit(3 + 4/12, "feet"),
  24461. weight: math.unit(70, "lb"),
  24462. name: "Back",
  24463. image: {
  24464. source: "./media/characters/maia/back.svg",
  24465. extra: 237/225
  24466. }
  24467. },
  24468. },
  24469. [
  24470. {
  24471. name: "Normal",
  24472. height: math.unit(3 + 4/12, "feet"),
  24473. default: true
  24474. },
  24475. ]
  24476. ))
  24477. characterMakers.push(() => makeCharacter(
  24478. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24479. {
  24480. front: {
  24481. height: math.unit(5 + 10/12, "feet"),
  24482. weight: math.unit(197, "lb"),
  24483. name: "Front",
  24484. image: {
  24485. source: "./media/characters/jabaro/front.svg",
  24486. extra: 225/216,
  24487. bottom: 5.06/230
  24488. }
  24489. },
  24490. back: {
  24491. height: math.unit(5 + 10/12, "feet"),
  24492. weight: math.unit(197, "lb"),
  24493. name: "Back",
  24494. image: {
  24495. source: "./media/characters/jabaro/back.svg",
  24496. extra: 225/219,
  24497. bottom: 1.9/227
  24498. }
  24499. },
  24500. },
  24501. [
  24502. {
  24503. name: "Normal",
  24504. height: math.unit(5 + 10/12, "feet"),
  24505. default: true
  24506. },
  24507. ]
  24508. ))
  24509. characterMakers.push(() => makeCharacter(
  24510. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24511. {
  24512. front: {
  24513. height: math.unit(5 + 8/12, "feet"),
  24514. weight: math.unit(139, "lb"),
  24515. name: "Front",
  24516. image: {
  24517. source: "./media/characters/risa/front.svg",
  24518. extra: 270/260,
  24519. bottom: 11.2/282
  24520. }
  24521. },
  24522. back: {
  24523. height: math.unit(5 + 8/12, "feet"),
  24524. weight: math.unit(139, "lb"),
  24525. name: "Back",
  24526. image: {
  24527. source: "./media/characters/risa/back.svg",
  24528. extra: 264/255,
  24529. bottom: 4/268
  24530. }
  24531. },
  24532. },
  24533. [
  24534. {
  24535. name: "Normal",
  24536. height: math.unit(5 + 8/12, "feet"),
  24537. default: true
  24538. },
  24539. ]
  24540. ))
  24541. characterMakers.push(() => makeCharacter(
  24542. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24543. {
  24544. front: {
  24545. height: math.unit(2 + 11/12, "feet"),
  24546. weight: math.unit(30, "lb"),
  24547. name: "Front",
  24548. image: {
  24549. source: "./media/characters/weatley/front.svg",
  24550. bottom: 10.7/414,
  24551. extra: 403.5/362
  24552. }
  24553. },
  24554. back: {
  24555. height: math.unit(2 + 11/12, "feet"),
  24556. weight: math.unit(30, "lb"),
  24557. name: "Back",
  24558. image: {
  24559. source: "./media/characters/weatley/back.svg",
  24560. bottom: 10.7/414,
  24561. extra: 403.5/362
  24562. }
  24563. },
  24564. },
  24565. [
  24566. {
  24567. name: "Normal",
  24568. height: math.unit(2 + 11/12, "feet"),
  24569. default: true
  24570. },
  24571. ]
  24572. ))
  24573. characterMakers.push(() => makeCharacter(
  24574. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24575. {
  24576. front: {
  24577. height: math.unit(5 + 2/12, "feet"),
  24578. weight: math.unit(50, "kg"),
  24579. name: "Front",
  24580. image: {
  24581. source: "./media/characters/mercury-crescent/front.svg",
  24582. extra: 1088/1033,
  24583. bottom: 18.9/1109
  24584. }
  24585. },
  24586. },
  24587. [
  24588. {
  24589. name: "Normal",
  24590. height: math.unit(5 + 2/12, "feet"),
  24591. default: true
  24592. },
  24593. ]
  24594. ))
  24595. characterMakers.push(() => makeCharacter(
  24596. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24597. {
  24598. front: {
  24599. height: math.unit(2, "feet"),
  24600. weight: math.unit(15, "kg"),
  24601. name: "Front",
  24602. image: {
  24603. source: "./media/characters/diamond-jones/front.svg",
  24604. bottom: 16/568
  24605. }
  24606. },
  24607. },
  24608. [
  24609. {
  24610. name: "Normal",
  24611. height: math.unit(2, "feet"),
  24612. default: true
  24613. },
  24614. ]
  24615. ))
  24616. characterMakers.push(() => makeCharacter(
  24617. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24618. {
  24619. front: {
  24620. height: math.unit(3, "feet"),
  24621. weight: math.unit(30, "kg"),
  24622. name: "Front",
  24623. image: {
  24624. source: "./media/characters/sweet-bit/front.svg",
  24625. extra: 675/567,
  24626. bottom: 27.7/703
  24627. }
  24628. },
  24629. },
  24630. [
  24631. {
  24632. name: "Normal",
  24633. height: math.unit(3, "feet"),
  24634. default: true
  24635. },
  24636. ]
  24637. ))
  24638. characterMakers.push(() => makeCharacter(
  24639. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24640. {
  24641. side: {
  24642. height: math.unit(9.178, "feet"),
  24643. weight: math.unit(500, "lb"),
  24644. name: "Side",
  24645. image: {
  24646. source: "./media/characters/umbrazen/side.svg",
  24647. extra: 1730/1473,
  24648. bottom: 34.6/1765
  24649. }
  24650. },
  24651. },
  24652. [
  24653. {
  24654. name: "Normal",
  24655. height: math.unit(9.178, "feet"),
  24656. default: true
  24657. },
  24658. ]
  24659. ))
  24660. characterMakers.push(() => makeCharacter(
  24661. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24662. {
  24663. front: {
  24664. height: math.unit(10, "feet"),
  24665. weight: math.unit(750, "lb"),
  24666. name: "Front",
  24667. image: {
  24668. source: "./media/characters/arlist/front.svg",
  24669. extra: 961/778,
  24670. bottom: 6.2/986
  24671. }
  24672. },
  24673. },
  24674. [
  24675. {
  24676. name: "Normal",
  24677. height: math.unit(10, "feet"),
  24678. default: true
  24679. },
  24680. ]
  24681. ))
  24682. characterMakers.push(() => makeCharacter(
  24683. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24684. {
  24685. front: {
  24686. height: math.unit(5 + 1/12, "feet"),
  24687. weight: math.unit(110, "lb"),
  24688. name: "Front",
  24689. image: {
  24690. source: "./media/characters/aradel/front.svg",
  24691. extra: 324/303,
  24692. bottom: 3.6/329.4
  24693. }
  24694. },
  24695. },
  24696. [
  24697. {
  24698. name: "Normal",
  24699. height: math.unit(5 + 1/12, "feet"),
  24700. default: true
  24701. },
  24702. ]
  24703. ))
  24704. characterMakers.push(() => makeCharacter(
  24705. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24706. {
  24707. front: {
  24708. height: math.unit(3 + 8/12, "feet"),
  24709. weight: math.unit(50, "lb"),
  24710. name: "Front",
  24711. image: {
  24712. source: "./media/characters/serryn/front.svg",
  24713. extra: 1792/1656,
  24714. bottom: 43.5/1840
  24715. }
  24716. },
  24717. },
  24718. [
  24719. {
  24720. name: "Normal",
  24721. height: math.unit(3 + 8/12, "feet"),
  24722. default: true
  24723. },
  24724. ]
  24725. ))
  24726. characterMakers.push(() => makeCharacter(
  24727. { name: "Xavier Thyme" },
  24728. {
  24729. front: {
  24730. height: math.unit(7 + 10/12, "feet"),
  24731. weight: math.unit(255, "lb"),
  24732. name: "Front",
  24733. image: {
  24734. source: "./media/characters/xavier-thyme/front.svg",
  24735. extra: 3733/3642,
  24736. bottom: 131/3869
  24737. }
  24738. },
  24739. frontRaven: {
  24740. height: math.unit(7 + 10/12, "feet"),
  24741. weight: math.unit(255, "lb"),
  24742. name: "Front (Raven)",
  24743. image: {
  24744. source: "./media/characters/xavier-thyme/front-raven.svg",
  24745. extra: 4385/3642,
  24746. bottom: 131/4517
  24747. }
  24748. },
  24749. },
  24750. [
  24751. {
  24752. name: "Normal",
  24753. height: math.unit(7 + 10/12, "feet"),
  24754. default: true
  24755. },
  24756. ]
  24757. ))
  24758. characterMakers.push(() => makeCharacter(
  24759. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24760. {
  24761. front: {
  24762. height: math.unit(1.6, "m"),
  24763. weight: math.unit(50, "kg"),
  24764. name: "Front",
  24765. image: {
  24766. source: "./media/characters/kiki/front.svg",
  24767. extra: 4682/3610,
  24768. bottom: 115/4777
  24769. }
  24770. },
  24771. },
  24772. [
  24773. {
  24774. name: "Normal",
  24775. height: math.unit(1.6, "meters"),
  24776. default: true
  24777. },
  24778. ]
  24779. ))
  24780. characterMakers.push(() => makeCharacter(
  24781. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24782. {
  24783. front: {
  24784. height: math.unit(50, "m"),
  24785. weight: math.unit(500, "tonnes"),
  24786. name: "Front",
  24787. image: {
  24788. source: "./media/characters/ryoko/front.svg",
  24789. extra: 4632/3926,
  24790. bottom: 193/4823
  24791. }
  24792. },
  24793. },
  24794. [
  24795. {
  24796. name: "Normal",
  24797. height: math.unit(50, "meters"),
  24798. default: true
  24799. },
  24800. ]
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24804. {
  24805. front: {
  24806. height: math.unit(30, "m"),
  24807. weight: math.unit(22, "tonnes"),
  24808. name: "Front",
  24809. image: {
  24810. source: "./media/characters/elio/front.svg",
  24811. extra: 4582/3720,
  24812. bottom: 236/4828
  24813. }
  24814. },
  24815. },
  24816. [
  24817. {
  24818. name: "Normal",
  24819. height: math.unit(30, "meters"),
  24820. default: true
  24821. },
  24822. ]
  24823. ))
  24824. characterMakers.push(() => makeCharacter(
  24825. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  24826. {
  24827. front: {
  24828. height: math.unit(6 + 3/12, "feet"),
  24829. weight: math.unit(120, "lb"),
  24830. name: "Front",
  24831. image: {
  24832. source: "./media/characters/azura/front.svg",
  24833. extra: 1149/1135,
  24834. bottom: 45/1194
  24835. }
  24836. },
  24837. frontClothed: {
  24838. height: math.unit(6 + 3/12, "feet"),
  24839. weight: math.unit(120, "lb"),
  24840. name: "Front (Clothed)",
  24841. image: {
  24842. source: "./media/characters/azura/front-clothed.svg",
  24843. extra: 1149/1135,
  24844. bottom: 45/1194
  24845. }
  24846. },
  24847. },
  24848. [
  24849. {
  24850. name: "Normal",
  24851. height: math.unit(6 + 3/12, "feet"),
  24852. default: true
  24853. },
  24854. {
  24855. name: "Macro",
  24856. height: math.unit(20 + 6/12, "feet")
  24857. },
  24858. {
  24859. name: "Megamacro",
  24860. height: math.unit(12, "miles")
  24861. },
  24862. {
  24863. name: "Gigamacro",
  24864. height: math.unit(10000, "miles")
  24865. },
  24866. {
  24867. name: "Teramacro",
  24868. height: math.unit(900000, "miles")
  24869. },
  24870. ]
  24871. ))
  24872. characterMakers.push(() => makeCharacter(
  24873. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  24874. {
  24875. front: {
  24876. height: math.unit(12, "feet"),
  24877. weight: math.unit(1, "ton"),
  24878. capacity: math.unit(660000, "gallons"),
  24879. name: "Front",
  24880. image: {
  24881. source: "./media/characters/zeus/front.svg",
  24882. extra: 5005/4717,
  24883. bottom: 363/5388
  24884. }
  24885. },
  24886. },
  24887. [
  24888. {
  24889. name: "Normal",
  24890. height: math.unit(12, "feet")
  24891. },
  24892. {
  24893. name: "Preferred Size",
  24894. height: math.unit(0.5, "miles"),
  24895. default: true
  24896. },
  24897. {
  24898. name: "Giga Horse",
  24899. height: math.unit(300, "miles")
  24900. },
  24901. {
  24902. name: "Riding Planets",
  24903. height: math.unit(30, "megameters")
  24904. },
  24905. {
  24906. name: "Cosmic Giant",
  24907. height: math.unit(3, "zettameters")
  24908. },
  24909. {
  24910. name: "Breeding God",
  24911. height: math.unit(9.92e22, "yottameters")
  24912. },
  24913. ]
  24914. ))
  24915. characterMakers.push(() => makeCharacter(
  24916. { name: "Fang", species: ["monster"], tags: ["feral"] },
  24917. {
  24918. side: {
  24919. height: math.unit(9, "feet"),
  24920. weight: math.unit(1500, "kg"),
  24921. name: "Side",
  24922. image: {
  24923. source: "./media/characters/fang/side.svg",
  24924. extra: 924/866,
  24925. bottom: 47.5/972.3
  24926. }
  24927. },
  24928. },
  24929. [
  24930. {
  24931. name: "Normal",
  24932. height: math.unit(9, "feet"),
  24933. default: true
  24934. },
  24935. {
  24936. name: "Macro",
  24937. height: math.unit(75 + 6/12, "feet")
  24938. },
  24939. {
  24940. name: "Teramacro",
  24941. height: math.unit(50000, "miles")
  24942. },
  24943. ]
  24944. ))
  24945. characterMakers.push(() => makeCharacter(
  24946. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  24947. {
  24948. front: {
  24949. height: math.unit(10, "feet"),
  24950. weight: math.unit(2, "tons"),
  24951. name: "Front",
  24952. image: {
  24953. source: "./media/characters/rekhit/front.svg",
  24954. extra: 2796/2590,
  24955. bottom: 225/3022
  24956. }
  24957. },
  24958. },
  24959. [
  24960. {
  24961. name: "Normal",
  24962. height: math.unit(10, "feet"),
  24963. default: true
  24964. },
  24965. {
  24966. name: "Macro",
  24967. height: math.unit(500, "feet")
  24968. },
  24969. ]
  24970. ))
  24971. characterMakers.push(() => makeCharacter(
  24972. { name: "Dahlia Verrick" },
  24973. {
  24974. front: {
  24975. height: math.unit(7 + 6.451/12, "feet"),
  24976. weight: math.unit(310, "lb"),
  24977. name: "Front",
  24978. image: {
  24979. source: "./media/characters/dahlia-verrick/front.svg",
  24980. extra: 1488/1365,
  24981. bottom: 6.2/1495
  24982. }
  24983. },
  24984. back: {
  24985. height: math.unit(7 + 6.451/12, "feet"),
  24986. weight: math.unit(310, "lb"),
  24987. name: "Back",
  24988. image: {
  24989. source: "./media/characters/dahlia-verrick/back.svg",
  24990. extra: 1472/1351,
  24991. bottom: 5.28/1477
  24992. }
  24993. },
  24994. frontBusiness: {
  24995. height: math.unit(7 + 6.451/12, "feet"),
  24996. weight: math.unit(200, "lb"),
  24997. name: "Front (Business)",
  24998. image: {
  24999. source: "./media/characters/dahlia-verrick/front-business.svg",
  25000. extra: 1478/1381,
  25001. bottom: 5.5/1484
  25002. }
  25003. },
  25004. frontCasual: {
  25005. height: math.unit(7 + 6.451/12, "feet"),
  25006. weight: math.unit(200, "lb"),
  25007. name: "Front (Casual)",
  25008. image: {
  25009. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25010. extra: 1478/1381,
  25011. bottom: 5.5/1484
  25012. }
  25013. },
  25014. },
  25015. [
  25016. {
  25017. name: "Travel-Sized",
  25018. height: math.unit(7.45, "inches")
  25019. },
  25020. {
  25021. name: "Normal",
  25022. height: math.unit(7 + 6.451/12, "feet"),
  25023. default: true
  25024. },
  25025. {
  25026. name: "Hitting the Town",
  25027. height: math.unit(37 + 8/12, "feet")
  25028. },
  25029. {
  25030. name: "Stomp in the Suburbs",
  25031. height: math.unit(964 + 9.728/12, "feet")
  25032. },
  25033. {
  25034. name: "Sit on the City",
  25035. height: math.unit(61747 + 10.592/12, "feet")
  25036. },
  25037. {
  25038. name: "Glomp the Globe",
  25039. height: math.unit(252919327 + 4.832/12, "feet")
  25040. },
  25041. ]
  25042. ))
  25043. characterMakers.push(() => makeCharacter(
  25044. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25045. {
  25046. front: {
  25047. height: math.unit(6 + 4/12, "feet"),
  25048. weight: math.unit(320, "lb"),
  25049. name: "Front",
  25050. image: {
  25051. source: "./media/characters/balina-mahigan/front.svg",
  25052. extra: 447/428,
  25053. bottom: 18/466
  25054. }
  25055. },
  25056. back: {
  25057. height: math.unit(6 + 4/12, "feet"),
  25058. weight: math.unit(320, "lb"),
  25059. name: "Back",
  25060. image: {
  25061. source: "./media/characters/balina-mahigan/back.svg",
  25062. extra: 445/428,
  25063. bottom: 4.07/448
  25064. }
  25065. },
  25066. arm: {
  25067. height: math.unit(1.88, "feet"),
  25068. name: "Arm",
  25069. image: {
  25070. source: "./media/characters/balina-mahigan/arm.svg"
  25071. }
  25072. },
  25073. backPort: {
  25074. height: math.unit(0.685, "feet"),
  25075. name: "Back Port",
  25076. image: {
  25077. source: "./media/characters/balina-mahigan/back-port.svg"
  25078. }
  25079. },
  25080. hoofpaw: {
  25081. height: math.unit(1.41, "feet"),
  25082. name: "Hoofpaw",
  25083. image: {
  25084. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25085. }
  25086. },
  25087. leftHandBack: {
  25088. height: math.unit(0.938, "feet"),
  25089. name: "Left Hand (Back)",
  25090. image: {
  25091. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25092. }
  25093. },
  25094. leftHandFront: {
  25095. height: math.unit(0.938, "feet"),
  25096. name: "Left Hand (Front)",
  25097. image: {
  25098. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25099. }
  25100. },
  25101. rightHandBack: {
  25102. height: math.unit(0.95, "feet"),
  25103. name: "Right Hand (Back)",
  25104. image: {
  25105. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25106. }
  25107. },
  25108. rightHandFront: {
  25109. height: math.unit(0.95, "feet"),
  25110. name: "Right Hand (Front)",
  25111. image: {
  25112. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25113. }
  25114. },
  25115. },
  25116. [
  25117. {
  25118. name: "Normal",
  25119. height: math.unit(6 + 4/12, "feet"),
  25120. default: true
  25121. },
  25122. ]
  25123. ))
  25124. characterMakers.push(() => makeCharacter(
  25125. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25126. {
  25127. front: {
  25128. height: math.unit(6, "feet"),
  25129. weight: math.unit(320, "lb"),
  25130. name: "Front",
  25131. image: {
  25132. source: "./media/characters/balina-mejeri/front.svg",
  25133. extra: 517/488,
  25134. bottom: 44.2/561
  25135. }
  25136. },
  25137. },
  25138. [
  25139. {
  25140. name: "Normal",
  25141. height: math.unit(6 + 4/12, "feet")
  25142. },
  25143. {
  25144. name: "Business",
  25145. height: math.unit(155, "feet"),
  25146. default: true
  25147. },
  25148. ]
  25149. ))
  25150. characterMakers.push(() => makeCharacter(
  25151. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25152. {
  25153. kneeling: {
  25154. height: math.unit(6 + 4/12, "feet"),
  25155. weight: math.unit(300*20, "lb"),
  25156. name: "Kneeling",
  25157. image: {
  25158. source: "./media/characters/balbarian/kneeling.svg",
  25159. extra: 922/862,
  25160. bottom: 42.4/965
  25161. }
  25162. },
  25163. },
  25164. [
  25165. {
  25166. name: "Normal",
  25167. height: math.unit(6 + 4/12, "feet")
  25168. },
  25169. {
  25170. name: "Treasured",
  25171. height: math.unit(18 + 9/12, "feet"),
  25172. default: true
  25173. },
  25174. {
  25175. name: "Macro",
  25176. height: math.unit(900, "feet")
  25177. },
  25178. ]
  25179. ))
  25180. characterMakers.push(() => makeCharacter(
  25181. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25182. {
  25183. front: {
  25184. height: math.unit(6 + 4/12, "feet"),
  25185. weight: math.unit(325, "lb"),
  25186. name: "Front",
  25187. image: {
  25188. source: "./media/characters/balina-amarini/front.svg",
  25189. extra: 415/403,
  25190. bottom: 19/433.4
  25191. }
  25192. },
  25193. back: {
  25194. height: math.unit(6 + 4/12, "feet"),
  25195. weight: math.unit(325, "lb"),
  25196. name: "Back",
  25197. image: {
  25198. source: "./media/characters/balina-amarini/back.svg",
  25199. extra: 415/403,
  25200. bottom: 13.5/432
  25201. }
  25202. },
  25203. overdrive: {
  25204. height: math.unit(6 + 4/12, "feet"),
  25205. weight: math.unit(400, "lb"),
  25206. name: "Overdrive",
  25207. image: {
  25208. source: "./media/characters/balina-amarini/overdrive.svg",
  25209. extra: 269/259,
  25210. bottom: 12/282
  25211. }
  25212. },
  25213. },
  25214. [
  25215. {
  25216. name: "Boom",
  25217. height: math.unit(9 + 10/12, "feet"),
  25218. default: true
  25219. },
  25220. {
  25221. name: "Macro",
  25222. height: math.unit(280, "feet")
  25223. },
  25224. ]
  25225. ))
  25226. characterMakers.push(() => makeCharacter(
  25227. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25228. {
  25229. goddess: {
  25230. height: math.unit(600, "feet"),
  25231. weight: math.unit(2000000, "tons"),
  25232. name: "Goddess",
  25233. image: {
  25234. source: "./media/characters/lady-kubwa/goddess.svg",
  25235. extra: 1240.5/1223,
  25236. bottom: 22/1263
  25237. }
  25238. },
  25239. goddesser: {
  25240. height: math.unit(900, "feet"),
  25241. weight: math.unit(20000000, "lb"),
  25242. name: "Goddess-er",
  25243. image: {
  25244. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25245. extra: 899/888,
  25246. bottom: 12.6/912
  25247. }
  25248. },
  25249. },
  25250. [
  25251. {
  25252. name: "Macro",
  25253. height: math.unit(600, "feet"),
  25254. default: true
  25255. },
  25256. {
  25257. name: "Megamacro",
  25258. height: math.unit(250, "miles")
  25259. },
  25260. ]
  25261. ))
  25262. characterMakers.push(() => makeCharacter(
  25263. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25264. {
  25265. front: {
  25266. height: math.unit(7 + 7/12, "feet"),
  25267. weight: math.unit(250, "lb"),
  25268. name: "Front",
  25269. image: {
  25270. source: "./media/characters/tala-grovehorn/front.svg",
  25271. extra: 2636/2525,
  25272. bottom: 147/2781
  25273. }
  25274. },
  25275. back: {
  25276. height: math.unit(7 + 7/12, "feet"),
  25277. weight: math.unit(250, "lb"),
  25278. name: "Back",
  25279. image: {
  25280. source: "./media/characters/tala-grovehorn/back.svg",
  25281. extra: 2635/2539,
  25282. bottom: 100/2732.8
  25283. }
  25284. },
  25285. mouth: {
  25286. height: math.unit(1.15, "feet"),
  25287. name: "Mouth",
  25288. image: {
  25289. source: "./media/characters/tala-grovehorn/mouth.svg"
  25290. }
  25291. },
  25292. dick: {
  25293. height: math.unit(2.36, "feet"),
  25294. name: "Dick",
  25295. image: {
  25296. source: "./media/characters/tala-grovehorn/dick.svg"
  25297. }
  25298. },
  25299. slit: {
  25300. height: math.unit(0.61, "feet"),
  25301. name: "Slit",
  25302. image: {
  25303. source: "./media/characters/tala-grovehorn/slit.svg"
  25304. }
  25305. },
  25306. },
  25307. [
  25308. ]
  25309. ))
  25310. characterMakers.push(() => makeCharacter(
  25311. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25312. {
  25313. front: {
  25314. height: math.unit(7 + 7/12, "feet"),
  25315. weight: math.unit(225, "lb"),
  25316. name: "Front",
  25317. image: {
  25318. source: "./media/characters/epona/front.svg",
  25319. extra: 2445/2290,
  25320. bottom: 251/2696
  25321. }
  25322. },
  25323. back: {
  25324. height: math.unit(7 + 7/12, "feet"),
  25325. weight: math.unit(225, "lb"),
  25326. name: "Back",
  25327. image: {
  25328. source: "./media/characters/epona/back.svg",
  25329. extra: 2546/2408,
  25330. bottom: 44/2589
  25331. }
  25332. },
  25333. genitals: {
  25334. height: math.unit(1.5, "feet"),
  25335. name: "Genitals",
  25336. image: {
  25337. source: "./media/characters/epona/genitals.svg"
  25338. }
  25339. },
  25340. },
  25341. [
  25342. {
  25343. name: "Normal",
  25344. height: math.unit(7 + 7/12, "feet")
  25345. },
  25346. ]
  25347. ))
  25348. characterMakers.push(() => makeCharacter(
  25349. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25350. {
  25351. front: {
  25352. height: math.unit(7, "feet"),
  25353. weight: math.unit(518, "lb"),
  25354. name: "Front",
  25355. image: {
  25356. source: "./media/characters/avia-bloodbourn/front.svg",
  25357. extra: 1466/1350,
  25358. bottom: 65/1527
  25359. }
  25360. },
  25361. },
  25362. [
  25363. ]
  25364. ))
  25365. characterMakers.push(() => makeCharacter(
  25366. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25367. {
  25368. front: {
  25369. height: math.unit(9.35, "feet"),
  25370. weight: math.unit(600, "lb"),
  25371. name: "Front",
  25372. image: {
  25373. source: "./media/characters/amera/front.svg",
  25374. extra: 891/818,
  25375. bottom: 30/922.7
  25376. }
  25377. },
  25378. back: {
  25379. height: math.unit(9.35, "feet"),
  25380. weight: math.unit(600, "lb"),
  25381. name: "Back",
  25382. image: {
  25383. source: "./media/characters/amera/back.svg",
  25384. extra: 876/824,
  25385. bottom: 6.8/884
  25386. }
  25387. },
  25388. dick: {
  25389. height: math.unit(2.14, "feet"),
  25390. name: "Dick",
  25391. image: {
  25392. source: "./media/characters/amera/dick.svg"
  25393. }
  25394. },
  25395. },
  25396. [
  25397. {
  25398. name: "Normal",
  25399. height: math.unit(9.35, "feet"),
  25400. default: true
  25401. },
  25402. ]
  25403. ))
  25404. characterMakers.push(() => makeCharacter(
  25405. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25406. {
  25407. kneeling: {
  25408. height: math.unit(3 + 4/12, "feet"),
  25409. weight: math.unit(90, "lb"),
  25410. name: "Kneeling",
  25411. image: {
  25412. source: "./media/characters/rosewen/kneeling.svg",
  25413. extra: 1835/1571,
  25414. bottom: 27.7/1862
  25415. }
  25416. },
  25417. },
  25418. [
  25419. {
  25420. name: "Normal",
  25421. height: math.unit(3 + 4/12, "feet"),
  25422. default: true
  25423. },
  25424. ]
  25425. ))
  25426. characterMakers.push(() => makeCharacter(
  25427. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25428. {
  25429. front: {
  25430. height: math.unit(5 + 10/12, "feet"),
  25431. weight: math.unit(200, "lb"),
  25432. name: "Front",
  25433. image: {
  25434. source: "./media/characters/sabah/front.svg",
  25435. extra: 849/763,
  25436. bottom: 33.9/881
  25437. }
  25438. },
  25439. },
  25440. [
  25441. {
  25442. name: "Normal",
  25443. height: math.unit(5 + 10/12, "feet"),
  25444. default: true
  25445. },
  25446. ]
  25447. ))
  25448. characterMakers.push(() => makeCharacter(
  25449. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25450. {
  25451. front: {
  25452. height: math.unit(3 + 5/12, "feet"),
  25453. weight: math.unit(40, "kg"),
  25454. name: "Front",
  25455. image: {
  25456. source: "./media/characters/purple-flame/front.svg",
  25457. extra: 1577/1412,
  25458. bottom: 97/1694
  25459. }
  25460. },
  25461. frontDressed: {
  25462. height: math.unit(3 + 5/12, "feet"),
  25463. weight: math.unit(40, "kg"),
  25464. name: "Front (Dressed)",
  25465. image: {
  25466. source: "./media/characters/purple-flame/front-dressed.svg",
  25467. extra: 1577/1412,
  25468. bottom: 97/1694
  25469. }
  25470. },
  25471. headphones: {
  25472. height: math.unit(0.85, "feet"),
  25473. name: "Headphones",
  25474. image: {
  25475. source: "./media/characters/purple-flame/headphones.svg"
  25476. }
  25477. },
  25478. },
  25479. [
  25480. {
  25481. name: "Really Small",
  25482. height: math.unit(5, "cm")
  25483. },
  25484. {
  25485. name: "Micro",
  25486. height: math.unit(1 + 5/12, "feet")
  25487. },
  25488. {
  25489. name: "Normal",
  25490. height: math.unit(3 + 5/12, "feet"),
  25491. default: true
  25492. },
  25493. {
  25494. name: "Minimacro",
  25495. height: math.unit(125, "feet")
  25496. },
  25497. {
  25498. name: "Macro",
  25499. height: math.unit(0.5, "miles")
  25500. },
  25501. {
  25502. name: "Megamacro",
  25503. height: math.unit(50, "miles")
  25504. },
  25505. {
  25506. name: "Gigantic",
  25507. height: math.unit(750, "miles")
  25508. },
  25509. {
  25510. name: "Planetary",
  25511. height: math.unit(15000, "miles")
  25512. },
  25513. ]
  25514. ))
  25515. //characters
  25516. function makeCharacters() {
  25517. const results = [];
  25518. characterMakers.forEach(character => {
  25519. results.push(character());
  25520. });
  25521. return results;
  25522. }