less copy protection, more size visualization
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

26933 řádky
670 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. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. }
  1300. //species
  1301. function getSpeciesInfo(speciesList) {
  1302. let result = new Set();
  1303. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1304. result.add(entry)
  1305. });
  1306. return Array.from(result);
  1307. };
  1308. function getSpeciesInfoHelper(species) {
  1309. if (!speciesData[species]) {
  1310. console.warn(species + " doesn't exist");
  1311. return [];
  1312. }
  1313. if (speciesData[species].parents) {
  1314. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1315. } else {
  1316. return [species];
  1317. }
  1318. }
  1319. characterMakers.push(() => makeCharacter(
  1320. {
  1321. name: "Fen",
  1322. species: ["crux"],
  1323. description: {
  1324. title: "Bio",
  1325. text: "Very furry. Sheds on everything."
  1326. },
  1327. tags: [
  1328. "anthro",
  1329. "goo"
  1330. ]
  1331. },
  1332. {
  1333. back: {
  1334. height: math.unit(2.2428, "meter"),
  1335. weight: math.unit(124.738, "kg"),
  1336. name: "Back",
  1337. image: {
  1338. source: "./media/characters/fen/back.svg",
  1339. extra: 1025 / 935,
  1340. bottom: 0.01
  1341. },
  1342. info: {
  1343. description: {
  1344. mode: "append",
  1345. text: "\n\nHe is not currently looking at you."
  1346. }
  1347. }
  1348. },
  1349. full: {
  1350. height: math.unit(1.34, "meter"),
  1351. weight: math.unit(225, "kg"),
  1352. name: "Full",
  1353. image: {
  1354. source: "./media/characters/fen/full.svg"
  1355. },
  1356. info: {
  1357. description: {
  1358. mode: "append",
  1359. text: "\n\nMunch."
  1360. }
  1361. }
  1362. },
  1363. kneeling: {
  1364. height: math.unit(5.4, "feet"),
  1365. weight: math.unit(124.738, "kg"),
  1366. name: "Kneeling",
  1367. image: {
  1368. source: "./media/characters/fen/kneeling.svg",
  1369. extra: 563 / 507
  1370. }
  1371. },
  1372. goo: {
  1373. height: math.unit(2.8, "feet"),
  1374. weight: math.unit(125, "kg"),
  1375. capacity: math.unit(1, "people"),
  1376. name: "Goo",
  1377. image: {
  1378. source: "./media/characters/fen/goo.svg",
  1379. bottom: 116 / 613
  1380. }
  1381. },
  1382. lounging: {
  1383. height: math.unit(6.5, "feet"),
  1384. weight: math.unit(125, "kg"),
  1385. name: "Lounging",
  1386. image: {
  1387. source: "./media/characters/fen/lounging.svg"
  1388. }
  1389. },
  1390. },
  1391. [
  1392. {
  1393. name: "Normal",
  1394. height: math.unit(2.2428, "meter")
  1395. },
  1396. {
  1397. name: "Big",
  1398. height: math.unit(12, "feet")
  1399. },
  1400. {
  1401. name: "Minimacro",
  1402. height: math.unit(40, "feet"),
  1403. default: true,
  1404. info: {
  1405. description: {
  1406. mode: "append",
  1407. text: "\n\nTOO DAMN BIG"
  1408. }
  1409. }
  1410. },
  1411. {
  1412. name: "Macro",
  1413. height: math.unit(100, "feet"),
  1414. info: {
  1415. description: {
  1416. mode: "append",
  1417. text: "\n\nTOO DAMN BIG"
  1418. }
  1419. }
  1420. },
  1421. {
  1422. name: "Macro+",
  1423. height: math.unit(300, "feet")
  1424. },
  1425. {
  1426. name: "Megamacro",
  1427. height: math.unit(2, "miles")
  1428. }
  1429. ]
  1430. ))
  1431. characterMakers.push(() => makeCharacter(
  1432. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1433. {
  1434. front: {
  1435. height: math.unit(183, "cm"),
  1436. weight: math.unit(80, "kg"),
  1437. name: "Front",
  1438. image: {
  1439. source: "./media/characters/sofia-fluttertail/front.svg",
  1440. bottom: 0.01,
  1441. extra: 2154 / 2081
  1442. }
  1443. },
  1444. frontAlt: {
  1445. height: math.unit(183, "cm"),
  1446. weight: math.unit(80, "kg"),
  1447. name: "Front (alt)",
  1448. image: {
  1449. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1450. }
  1451. },
  1452. back: {
  1453. height: math.unit(183, "cm"),
  1454. weight: math.unit(80, "kg"),
  1455. name: "Back",
  1456. image: {
  1457. source: "./media/characters/sofia-fluttertail/back.svg"
  1458. }
  1459. },
  1460. kneeling: {
  1461. height: math.unit(125, "cm"),
  1462. weight: math.unit(80, "kg"),
  1463. name: "Kneeling",
  1464. image: {
  1465. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1466. extra: 1033 / 977,
  1467. bottom: 23.7 / 1057
  1468. }
  1469. },
  1470. maw: {
  1471. height: math.unit(183 / 5, "cm"),
  1472. name: "Maw",
  1473. image: {
  1474. source: "./media/characters/sofia-fluttertail/maw.svg"
  1475. }
  1476. },
  1477. mawcloseup: {
  1478. height: math.unit(183 / 5 * 0.41, "cm"),
  1479. name: "Maw (Closeup)",
  1480. image: {
  1481. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1482. }
  1483. },
  1484. },
  1485. [
  1486. {
  1487. name: "Normal",
  1488. height: math.unit(1.83, "meter")
  1489. },
  1490. {
  1491. name: "Size Thief",
  1492. height: math.unit(18, "feet")
  1493. },
  1494. {
  1495. name: "50 Foot Collie",
  1496. height: math.unit(50, "feet")
  1497. },
  1498. {
  1499. name: "Macro",
  1500. height: math.unit(96, "feet"),
  1501. default: true
  1502. },
  1503. {
  1504. name: "Megamerger",
  1505. height: math.unit(650, "feet")
  1506. },
  1507. ]
  1508. ))
  1509. characterMakers.push(() => makeCharacter(
  1510. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1511. {
  1512. front: {
  1513. height: math.unit(7, "feet"),
  1514. weight: math.unit(100, "kg"),
  1515. name: "Front",
  1516. image: {
  1517. source: "./media/characters/march/front.svg",
  1518. extra: 1,
  1519. bottom: 0.015
  1520. }
  1521. },
  1522. foot: {
  1523. height: math.unit(0.9, "feet"),
  1524. name: "Foot",
  1525. image: {
  1526. source: "./media/characters/march/foot.svg"
  1527. }
  1528. },
  1529. },
  1530. [
  1531. {
  1532. name: "Normal",
  1533. height: math.unit(7.9, "feet")
  1534. },
  1535. {
  1536. name: "Macro",
  1537. height: math.unit(220, "meters")
  1538. },
  1539. {
  1540. name: "Megamacro",
  1541. height: math.unit(2.98, "km"),
  1542. default: true
  1543. },
  1544. {
  1545. name: "Gigamacro",
  1546. height: math.unit(15963, "km")
  1547. },
  1548. {
  1549. name: "Teramacro",
  1550. height: math.unit(2980000000, "km")
  1551. },
  1552. {
  1553. name: "Examacro",
  1554. height: math.unit(250, "parsecs")
  1555. },
  1556. ]
  1557. ))
  1558. characterMakers.push(() => makeCharacter(
  1559. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1560. {
  1561. front: {
  1562. height: math.unit(6, "feet"),
  1563. weight: math.unit(60, "kg"),
  1564. name: "Front",
  1565. image: {
  1566. source: "./media/characters/noir/front.svg",
  1567. extra: 1,
  1568. bottom: 0.032
  1569. }
  1570. },
  1571. },
  1572. [
  1573. {
  1574. name: "Normal",
  1575. height: math.unit(6.6, "feet")
  1576. },
  1577. {
  1578. name: "Macro",
  1579. height: math.unit(500, "feet")
  1580. },
  1581. {
  1582. name: "Megamacro",
  1583. height: math.unit(2.5, "km"),
  1584. default: true
  1585. },
  1586. {
  1587. name: "Gigamacro",
  1588. height: math.unit(22500, "km")
  1589. },
  1590. {
  1591. name: "Teramacro",
  1592. height: math.unit(2500000000, "km")
  1593. },
  1594. {
  1595. name: "Examacro",
  1596. height: math.unit(200, "parsecs")
  1597. },
  1598. ]
  1599. ))
  1600. characterMakers.push(() => makeCharacter(
  1601. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1602. {
  1603. front: {
  1604. height: math.unit(7, "feet"),
  1605. weight: math.unit(100, "kg"),
  1606. name: "Front",
  1607. image: {
  1608. source: "./media/characters/okuri/front.svg",
  1609. extra: 1,
  1610. bottom: 0.037
  1611. }
  1612. },
  1613. back: {
  1614. height: math.unit(7, "feet"),
  1615. weight: math.unit(100, "kg"),
  1616. name: "Back",
  1617. image: {
  1618. source: "./media/characters/okuri/back.svg",
  1619. extra: 1,
  1620. bottom: 0.007
  1621. }
  1622. },
  1623. },
  1624. [
  1625. {
  1626. name: "Megamacro",
  1627. height: math.unit(100, "miles"),
  1628. default: true
  1629. },
  1630. ]
  1631. ))
  1632. characterMakers.push(() => makeCharacter(
  1633. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1634. {
  1635. front: {
  1636. height: math.unit(7, "feet"),
  1637. weight: math.unit(100, "kg"),
  1638. name: "Front",
  1639. image: {
  1640. source: "./media/characters/manny/front.svg",
  1641. extra: 1,
  1642. bottom: 0.06
  1643. }
  1644. },
  1645. back: {
  1646. height: math.unit(7, "feet"),
  1647. weight: math.unit(100, "kg"),
  1648. name: "Back",
  1649. image: {
  1650. source: "./media/characters/manny/back.svg",
  1651. extra: 1,
  1652. bottom: 0.014
  1653. }
  1654. },
  1655. },
  1656. [
  1657. {
  1658. name: "Normal",
  1659. height: math.unit(7, "feet"),
  1660. },
  1661. {
  1662. name: "Macro",
  1663. height: math.unit(78, "feet"),
  1664. default: true
  1665. },
  1666. {
  1667. name: "Macro+",
  1668. height: math.unit(300, "meters")
  1669. },
  1670. {
  1671. name: "Macro++",
  1672. height: math.unit(2400, "meters")
  1673. },
  1674. {
  1675. name: "Megamacro",
  1676. height: math.unit(5167, "meters")
  1677. },
  1678. {
  1679. name: "Gigamacro",
  1680. height: math.unit(41769, "miles")
  1681. },
  1682. ]
  1683. ))
  1684. characterMakers.push(() => makeCharacter(
  1685. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1686. {
  1687. front: {
  1688. height: math.unit(7, "feet"),
  1689. weight: math.unit(100, "kg"),
  1690. name: "Front",
  1691. image: {
  1692. source: "./media/characters/adake/front-1.svg"
  1693. }
  1694. },
  1695. frontAlt: {
  1696. height: math.unit(7, "feet"),
  1697. weight: math.unit(100, "kg"),
  1698. name: "Front (Alt)",
  1699. image: {
  1700. source: "./media/characters/adake/front-2.svg",
  1701. extra: 1,
  1702. bottom: 0.01
  1703. }
  1704. },
  1705. back: {
  1706. height: math.unit(7, "feet"),
  1707. weight: math.unit(100, "kg"),
  1708. name: "Back",
  1709. image: {
  1710. source: "./media/characters/adake/back.svg",
  1711. }
  1712. },
  1713. kneel: {
  1714. height: math.unit(5.385, "feet"),
  1715. weight: math.unit(100, "kg"),
  1716. name: "Kneeling",
  1717. image: {
  1718. source: "./media/characters/adake/kneel.svg",
  1719. bottom: 0.052
  1720. }
  1721. },
  1722. },
  1723. [
  1724. {
  1725. name: "Normal",
  1726. height: math.unit(7, "feet"),
  1727. },
  1728. {
  1729. name: "Macro",
  1730. height: math.unit(78, "feet"),
  1731. default: true
  1732. },
  1733. {
  1734. name: "Macro+",
  1735. height: math.unit(300, "meters")
  1736. },
  1737. {
  1738. name: "Macro++",
  1739. height: math.unit(2400, "meters")
  1740. },
  1741. {
  1742. name: "Megamacro",
  1743. height: math.unit(5167, "meters")
  1744. },
  1745. {
  1746. name: "Gigamacro",
  1747. height: math.unit(41769, "miles")
  1748. },
  1749. ]
  1750. ))
  1751. characterMakers.push(() => makeCharacter(
  1752. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1753. {
  1754. front: {
  1755. height: math.unit(1.65, "meters"),
  1756. weight: math.unit(50, "kg"),
  1757. name: "Front",
  1758. image: {
  1759. source: "./media/characters/elijah/front.svg",
  1760. extra: 858 / 830,
  1761. bottom: 95.5 / 953.8559
  1762. }
  1763. },
  1764. back: {
  1765. height: math.unit(1.65, "meters"),
  1766. weight: math.unit(50, "kg"),
  1767. name: "Back",
  1768. image: {
  1769. source: "./media/characters/elijah/back.svg",
  1770. extra: 895 / 850,
  1771. bottom: 5.3 / 897.956
  1772. }
  1773. },
  1774. frontNsfw: {
  1775. height: math.unit(1.65, "meters"),
  1776. weight: math.unit(50, "kg"),
  1777. name: "Front (NSFW)",
  1778. image: {
  1779. source: "./media/characters/elijah/front-nsfw.svg",
  1780. extra: 858 / 830,
  1781. bottom: 95.5 / 953.8559
  1782. }
  1783. },
  1784. backNsfw: {
  1785. height: math.unit(1.65, "meters"),
  1786. weight: math.unit(50, "kg"),
  1787. name: "Back (NSFW)",
  1788. image: {
  1789. source: "./media/characters/elijah/back-nsfw.svg",
  1790. extra: 895 / 850,
  1791. bottom: 5.3 / 897.956
  1792. }
  1793. },
  1794. dick: {
  1795. height: math.unit(1, "feet"),
  1796. name: "Dick",
  1797. image: {
  1798. source: "./media/characters/elijah/dick.svg"
  1799. }
  1800. },
  1801. beakOpen: {
  1802. height: math.unit(1.25, "feet"),
  1803. name: "Beak (Open)",
  1804. image: {
  1805. source: "./media/characters/elijah/beak-open.svg"
  1806. }
  1807. },
  1808. beakShut: {
  1809. height: math.unit(1.25, "feet"),
  1810. name: "Beak (Shut)",
  1811. image: {
  1812. source: "./media/characters/elijah/beak-shut.svg"
  1813. }
  1814. },
  1815. footFlexing: {
  1816. height: math.unit(1.61, "feet"),
  1817. name: "Foot (Flexing)",
  1818. image: {
  1819. source: "./media/characters/elijah/foot-flexing.svg"
  1820. }
  1821. },
  1822. footStepping: {
  1823. height: math.unit(1.44, "feet"),
  1824. name: "Foot (Stepping)",
  1825. image: {
  1826. source: "./media/characters/elijah/foot-stepping.svg"
  1827. }
  1828. },
  1829. plantigradeLeg: {
  1830. height: math.unit(2.34, "feet"),
  1831. name: "Plantigrade Leg",
  1832. image: {
  1833. source: "./media/characters/elijah/plantigrade-leg.svg"
  1834. }
  1835. },
  1836. plantigradeFootLeft: {
  1837. height: math.unit(0.9, "feet"),
  1838. name: "Plantigrade Foot (Left)",
  1839. image: {
  1840. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1841. }
  1842. },
  1843. plantigradeFootRight: {
  1844. height: math.unit(0.9, "feet"),
  1845. name: "Plantigrade Foot (Right)",
  1846. image: {
  1847. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1848. }
  1849. },
  1850. },
  1851. [
  1852. {
  1853. name: "Normal",
  1854. height: math.unit(1.65, "meters")
  1855. },
  1856. {
  1857. name: "Macro",
  1858. height: math.unit(55, "meters"),
  1859. default: true
  1860. },
  1861. {
  1862. name: "Macro+",
  1863. height: math.unit(105, "meters")
  1864. },
  1865. ]
  1866. ))
  1867. characterMakers.push(() => makeCharacter(
  1868. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1869. {
  1870. front: {
  1871. height: math.unit(11, "feet"),
  1872. weight: math.unit(80, "kg"),
  1873. name: "Front",
  1874. image: {
  1875. source: "./media/characters/rai/front.svg",
  1876. extra: 1,
  1877. bottom: 0.03
  1878. }
  1879. },
  1880. side: {
  1881. height: math.unit(11, "feet"),
  1882. weight: math.unit(80, "kg"),
  1883. name: "Side",
  1884. image: {
  1885. source: "./media/characters/rai/side.svg"
  1886. }
  1887. },
  1888. back: {
  1889. height: math.unit(11, "feet"),
  1890. weight: math.unit(80, "lb"),
  1891. name: "Back",
  1892. image: {
  1893. source: "./media/characters/rai/back.svg",
  1894. extra: 1,
  1895. bottom: 0.01
  1896. }
  1897. },
  1898. feral: {
  1899. height: math.unit(11, "feet"),
  1900. weight: math.unit(800, "lb"),
  1901. name: "Feral",
  1902. image: {
  1903. source: "./media/characters/rai/feral.svg",
  1904. extra: 1050 / 659,
  1905. bottom: 0.07
  1906. }
  1907. },
  1908. dragon: {
  1909. height: math.unit(23, "feet"),
  1910. weight: math.unit(50000, "lb"),
  1911. name: "Dragon",
  1912. image: {
  1913. source: "./media/characters/rai/dragon.svg",
  1914. extra: 2498 / 2030,
  1915. bottom: 85.2 / 2584
  1916. }
  1917. },
  1918. maw: {
  1919. height: math.unit(6 / 3.81416, "feet"),
  1920. name: "Maw",
  1921. image: {
  1922. source: "./media/characters/rai/maw.svg"
  1923. }
  1924. },
  1925. },
  1926. [
  1927. {
  1928. name: "Normal",
  1929. height: math.unit(11, "feet")
  1930. },
  1931. {
  1932. name: "Macro",
  1933. height: math.unit(302, "feet"),
  1934. default: true
  1935. },
  1936. ]
  1937. ))
  1938. characterMakers.push(() => makeCharacter(
  1939. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1940. {
  1941. frontDressed: {
  1942. height: math.unit(216, "feet"),
  1943. weight: math.unit(7000000, "lb"),
  1944. name: "Front (Dressed)",
  1945. image: {
  1946. source: "./media/characters/jazzy/front-dressed.svg",
  1947. extra: 2738 / 2651,
  1948. bottom: 41.8 / 2786
  1949. }
  1950. },
  1951. backDressed: {
  1952. height: math.unit(216, "feet"),
  1953. weight: math.unit(7000000, "lb"),
  1954. name: "Back (Dressed)",
  1955. image: {
  1956. source: "./media/characters/jazzy/back-dressed.svg",
  1957. extra: 2775 / 2673,
  1958. bottom: 36.8 / 2817
  1959. }
  1960. },
  1961. front: {
  1962. height: math.unit(216, "feet"),
  1963. weight: math.unit(7000000, "lb"),
  1964. name: "Front",
  1965. image: {
  1966. source: "./media/characters/jazzy/front.svg",
  1967. extra: 2738 / 2651,
  1968. bottom: 41.8 / 2786
  1969. }
  1970. },
  1971. back: {
  1972. height: math.unit(216, "feet"),
  1973. weight: math.unit(7000000, "lb"),
  1974. name: "Back",
  1975. image: {
  1976. source: "./media/characters/jazzy/back.svg",
  1977. extra: 2775 / 2673,
  1978. bottom: 36.8 / 2817
  1979. }
  1980. },
  1981. maw: {
  1982. height: math.unit(20, "feet"),
  1983. name: "Maw",
  1984. image: {
  1985. source: "./media/characters/jazzy/maw.svg"
  1986. }
  1987. },
  1988. paws: {
  1989. height: math.unit(27.5, "feet"),
  1990. name: "Paws",
  1991. image: {
  1992. source: "./media/characters/jazzy/paws.svg"
  1993. }
  1994. },
  1995. eye: {
  1996. height: math.unit(4.4, "feet"),
  1997. name: "Eye",
  1998. image: {
  1999. source: "./media/characters/jazzy/eye.svg"
  2000. }
  2001. },
  2002. droneOffense: {
  2003. height: math.unit(9.5, "inches"),
  2004. name: "Drone (Offense)",
  2005. image: {
  2006. source: "./media/characters/jazzy/drone-offense.svg"
  2007. }
  2008. },
  2009. droneRecon: {
  2010. height: math.unit(9.5, "inches"),
  2011. name: "Drone (Recon)",
  2012. image: {
  2013. source: "./media/characters/jazzy/drone-recon.svg"
  2014. }
  2015. },
  2016. droneDefense: {
  2017. height: math.unit(9.5, "inches"),
  2018. name: "Drone (Defense)",
  2019. image: {
  2020. source: "./media/characters/jazzy/drone-defense.svg"
  2021. }
  2022. },
  2023. },
  2024. [
  2025. {
  2026. name: "Macro",
  2027. height: math.unit(216, "feet"),
  2028. default: true
  2029. },
  2030. ]
  2031. ))
  2032. characterMakers.push(() => makeCharacter(
  2033. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2034. {
  2035. front: {
  2036. height: math.unit(7, "feet"),
  2037. weight: math.unit(80, "kg"),
  2038. name: "Front",
  2039. image: {
  2040. source: "./media/characters/flamm/front.svg",
  2041. extra: 1794 / 1677,
  2042. bottom: 31.7 / 1828.5
  2043. }
  2044. },
  2045. },
  2046. [
  2047. {
  2048. name: "Normal",
  2049. height: math.unit(9.5, "feet")
  2050. },
  2051. {
  2052. name: "Macro",
  2053. height: math.unit(200, "feet"),
  2054. default: true
  2055. },
  2056. ]
  2057. ))
  2058. characterMakers.push(() => makeCharacter(
  2059. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2060. {
  2061. front: {
  2062. height: math.unit(7, "feet"),
  2063. weight: math.unit(80, "kg"),
  2064. name: "Front",
  2065. image: {
  2066. source: "./media/characters/zephiro/front.svg",
  2067. extra: 2309 / 2162,
  2068. bottom: 0.069
  2069. }
  2070. },
  2071. side: {
  2072. height: math.unit(7, "feet"),
  2073. weight: math.unit(80, "kg"),
  2074. name: "Side",
  2075. image: {
  2076. source: "./media/characters/zephiro/side.svg",
  2077. extra: 2403 / 2279,
  2078. bottom: 0.015
  2079. }
  2080. },
  2081. back: {
  2082. height: math.unit(7, "feet"),
  2083. weight: math.unit(80, "kg"),
  2084. name: "Back",
  2085. image: {
  2086. source: "./media/characters/zephiro/back.svg",
  2087. extra: 2373 / 2244,
  2088. bottom: 0.013
  2089. }
  2090. },
  2091. },
  2092. [
  2093. {
  2094. name: "Micro",
  2095. height: math.unit(3, "inches")
  2096. },
  2097. {
  2098. name: "Normal",
  2099. height: math.unit(5 + 3 / 12, "feet"),
  2100. default: true
  2101. },
  2102. {
  2103. name: "Macro",
  2104. height: math.unit(118, "feet")
  2105. },
  2106. ]
  2107. ))
  2108. characterMakers.push(() => makeCharacter(
  2109. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2110. {
  2111. front: {
  2112. height: math.unit(5, "feet"),
  2113. weight: math.unit(90, "kg"),
  2114. name: "Front",
  2115. image: {
  2116. source: "./media/characters/fory/front.svg",
  2117. extra: 2862 / 2674,
  2118. bottom: 180 / 3043.8
  2119. }
  2120. },
  2121. back: {
  2122. height: math.unit(5, "feet"),
  2123. weight: math.unit(90, "kg"),
  2124. name: "Back",
  2125. image: {
  2126. source: "./media/characters/fory/back.svg",
  2127. extra: 2962 / 2791,
  2128. bottom: 106 / 3071.8
  2129. }
  2130. },
  2131. foot: {
  2132. height: math.unit(2.14, "feet"),
  2133. name: "Foot",
  2134. image: {
  2135. source: "./media/characters/fory/foot.svg"
  2136. }
  2137. },
  2138. },
  2139. [
  2140. {
  2141. name: "Normal",
  2142. height: math.unit(5, "feet")
  2143. },
  2144. {
  2145. name: "Macro",
  2146. height: math.unit(50, "feet"),
  2147. default: true
  2148. },
  2149. {
  2150. name: "Megamacro",
  2151. height: math.unit(10, "miles")
  2152. },
  2153. {
  2154. name: "Gigamacro",
  2155. height: math.unit(5, "earths")
  2156. },
  2157. ]
  2158. ))
  2159. characterMakers.push(() => makeCharacter(
  2160. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2161. {
  2162. front: {
  2163. height: math.unit(7, "feet"),
  2164. weight: math.unit(90, "kg"),
  2165. name: "Front",
  2166. image: {
  2167. source: "./media/characters/kurrikage/front.svg",
  2168. extra: 1,
  2169. bottom: 0.035
  2170. }
  2171. },
  2172. back: {
  2173. height: math.unit(7, "feet"),
  2174. weight: math.unit(90, "lb"),
  2175. name: "Back",
  2176. image: {
  2177. source: "./media/characters/kurrikage/back.svg"
  2178. }
  2179. },
  2180. paw: {
  2181. height: math.unit(1.5, "feet"),
  2182. name: "Paw",
  2183. image: {
  2184. source: "./media/characters/kurrikage/paw.svg"
  2185. }
  2186. },
  2187. staff: {
  2188. height: math.unit(6.7, "feet"),
  2189. name: "Staff",
  2190. image: {
  2191. source: "./media/characters/kurrikage/staff.svg"
  2192. }
  2193. },
  2194. peek: {
  2195. height: math.unit(1.05, "feet"),
  2196. name: "Peeking",
  2197. image: {
  2198. source: "./media/characters/kurrikage/peek.svg",
  2199. bottom: 0.08
  2200. }
  2201. },
  2202. },
  2203. [
  2204. {
  2205. name: "Normal",
  2206. height: math.unit(12, "feet"),
  2207. default: true
  2208. },
  2209. {
  2210. name: "Big",
  2211. height: math.unit(20, "feet")
  2212. },
  2213. {
  2214. name: "Macro",
  2215. height: math.unit(500, "feet")
  2216. },
  2217. {
  2218. name: "Megamacro",
  2219. height: math.unit(20, "miles")
  2220. },
  2221. ]
  2222. ))
  2223. characterMakers.push(() => makeCharacter(
  2224. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2225. {
  2226. front: {
  2227. height: math.unit(6, "feet"),
  2228. weight: math.unit(75, "kg"),
  2229. name: "Front",
  2230. image: {
  2231. source: "./media/characters/shingo/front.svg",
  2232. extra: 3511 / 3338,
  2233. bottom: 0.005
  2234. }
  2235. },
  2236. paw: {
  2237. height: math.unit(1, "feet"),
  2238. name: "Paw",
  2239. image: {
  2240. source: "./media/characters/shingo/paw.svg"
  2241. }
  2242. },
  2243. },
  2244. [
  2245. {
  2246. name: "Micro",
  2247. height: math.unit(4, "inches")
  2248. },
  2249. {
  2250. name: "Normal",
  2251. height: math.unit(6, "feet"),
  2252. default: true
  2253. },
  2254. {
  2255. name: "Macro",
  2256. height: math.unit(108, "feet")
  2257. }
  2258. ]
  2259. ))
  2260. characterMakers.push(() => makeCharacter(
  2261. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2262. {
  2263. side: {
  2264. height: math.unit(6, "feet"),
  2265. weight: math.unit(75, "kg"),
  2266. name: "Side",
  2267. image: {
  2268. source: "./media/characters/aigey/side.svg"
  2269. }
  2270. },
  2271. },
  2272. [
  2273. {
  2274. name: "Macro",
  2275. height: math.unit(200, "feet"),
  2276. default: true
  2277. },
  2278. {
  2279. name: "Megamacro",
  2280. height: math.unit(100, "miles")
  2281. },
  2282. ]
  2283. )
  2284. )
  2285. characterMakers.push(() => makeCharacter(
  2286. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2287. {
  2288. front: {
  2289. height: math.unit(5 + 5 / 12, "feet"),
  2290. weight: math.unit(75, "kg"),
  2291. name: "Front",
  2292. image: {
  2293. source: "./media/characters/natasha/front.svg",
  2294. extra: 859 / 824,
  2295. bottom: 23 / 879.6
  2296. }
  2297. },
  2298. frontNsfw: {
  2299. height: math.unit(5 + 5 / 12, "feet"),
  2300. weight: math.unit(75, "kg"),
  2301. name: "Front (NSFW)",
  2302. image: {
  2303. source: "./media/characters/natasha/front-nsfw.svg",
  2304. extra: 859 / 824,
  2305. bottom: 23 / 879.6
  2306. }
  2307. },
  2308. frontErect: {
  2309. height: math.unit(5 + 5 / 12, "feet"),
  2310. weight: math.unit(75, "kg"),
  2311. name: "Front (Erect)",
  2312. image: {
  2313. source: "./media/characters/natasha/front-erect.svg",
  2314. extra: 859 / 824,
  2315. bottom: 23 / 879.6
  2316. }
  2317. },
  2318. back: {
  2319. height: math.unit(5 + 5 / 12, "feet"),
  2320. weight: math.unit(75, "kg"),
  2321. name: "Back",
  2322. image: {
  2323. source: "./media/characters/natasha/back.svg",
  2324. extra: 887.9 / 852.6,
  2325. bottom: 9.7 / 896.4
  2326. }
  2327. },
  2328. backAlt: {
  2329. height: math.unit(5 + 5 / 12, "feet"),
  2330. weight: math.unit(75, "kg"),
  2331. name: "Back (Alt)",
  2332. image: {
  2333. source: "./media/characters/natasha/back-alt.svg",
  2334. extra: 1236.7 / 1192,
  2335. bottom: 22.3 / 1258.2
  2336. }
  2337. },
  2338. dick: {
  2339. height: math.unit(1.772, "feet"),
  2340. name: "Dick",
  2341. image: {
  2342. source: "./media/characters/natasha/dick.svg"
  2343. }
  2344. },
  2345. },
  2346. [
  2347. {
  2348. name: "Normal",
  2349. height: math.unit(5 + 5 / 12, "feet")
  2350. },
  2351. {
  2352. name: "Large",
  2353. height: math.unit(12, "feet")
  2354. },
  2355. {
  2356. name: "Macro",
  2357. height: math.unit(100, "feet"),
  2358. default: true
  2359. },
  2360. {
  2361. name: "Macro+",
  2362. height: math.unit(260, "feet")
  2363. },
  2364. {
  2365. name: "Macro++",
  2366. height: math.unit(1, "mile")
  2367. },
  2368. ]
  2369. ))
  2370. characterMakers.push(() => makeCharacter(
  2371. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2372. {
  2373. front: {
  2374. height: math.unit(6, "feet"),
  2375. weight: math.unit(75, "kg"),
  2376. name: "Front",
  2377. image: {
  2378. source: "./media/characters/malik/front.svg"
  2379. }
  2380. },
  2381. side: {
  2382. height: math.unit(6, "feet"),
  2383. weight: math.unit(75, "kg"),
  2384. name: "Side",
  2385. image: {
  2386. source: "./media/characters/malik/side.svg",
  2387. extra: 1.1539
  2388. }
  2389. },
  2390. back: {
  2391. height: math.unit(6, "feet"),
  2392. weight: math.unit(75, "kg"),
  2393. name: "Back",
  2394. image: {
  2395. source: "./media/characters/malik/back.svg"
  2396. }
  2397. },
  2398. },
  2399. [
  2400. {
  2401. name: "Macro",
  2402. height: math.unit(156, "feet"),
  2403. default: true
  2404. },
  2405. {
  2406. name: "Macro+",
  2407. height: math.unit(1188, "feet")
  2408. },
  2409. ]
  2410. ))
  2411. characterMakers.push(() => makeCharacter(
  2412. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2413. {
  2414. front: {
  2415. height: math.unit(6, "feet"),
  2416. weight: math.unit(75, "kg"),
  2417. name: "Front",
  2418. image: {
  2419. source: "./media/characters/sefer/front.svg",
  2420. extra: 848 / 659,
  2421. bottom: 28.3 / 876.442
  2422. }
  2423. },
  2424. back: {
  2425. height: math.unit(6, "feet"),
  2426. weight: math.unit(75, "kg"),
  2427. name: "Back",
  2428. image: {
  2429. source: "./media/characters/sefer/back.svg",
  2430. extra: 864 / 695,
  2431. bottom: 10 / 871
  2432. }
  2433. },
  2434. frontDressed: {
  2435. height: math.unit(6, "feet"),
  2436. weight: math.unit(75, "kg"),
  2437. name: "Front (Dressed)",
  2438. image: {
  2439. source: "./media/characters/sefer/front-dressed.svg",
  2440. extra: 839 / 653,
  2441. bottom: 37.6 / 878
  2442. }
  2443. },
  2444. },
  2445. [
  2446. {
  2447. name: "Normal",
  2448. height: math.unit(6, "feet"),
  2449. default: true
  2450. },
  2451. ]
  2452. ))
  2453. characterMakers.push(() => makeCharacter(
  2454. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2455. {
  2456. body: {
  2457. height: math.unit(2.2428, "meter"),
  2458. weight: math.unit(124.738, "kg"),
  2459. name: "Body",
  2460. image: {
  2461. extra: 1225 / 1050,
  2462. source: "./media/characters/north/front.svg"
  2463. }
  2464. }
  2465. },
  2466. [
  2467. {
  2468. name: "Micro",
  2469. height: math.unit(4, "inches")
  2470. },
  2471. {
  2472. name: "Macro",
  2473. height: math.unit(63, "meters")
  2474. },
  2475. {
  2476. name: "Megamacro",
  2477. height: math.unit(101, "miles"),
  2478. default: true
  2479. }
  2480. ]
  2481. ))
  2482. characterMakers.push(() => makeCharacter(
  2483. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2484. {
  2485. angled: {
  2486. height: math.unit(4, "meter"),
  2487. weight: math.unit(150, "kg"),
  2488. name: "Angled",
  2489. image: {
  2490. source: "./media/characters/talan/angled-sfw.svg",
  2491. bottom: 29 / 3734
  2492. }
  2493. },
  2494. angledNsfw: {
  2495. height: math.unit(4, "meter"),
  2496. weight: math.unit(150, "kg"),
  2497. name: "Angled (NSFW)",
  2498. image: {
  2499. source: "./media/characters/talan/angled-nsfw.svg",
  2500. bottom: 29 / 3734
  2501. }
  2502. },
  2503. frontNsfw: {
  2504. height: math.unit(4, "meter"),
  2505. weight: math.unit(150, "kg"),
  2506. name: "Front (NSFW)",
  2507. image: {
  2508. source: "./media/characters/talan/front-nsfw.svg",
  2509. bottom: 29 / 3734
  2510. }
  2511. },
  2512. sideNsfw: {
  2513. height: math.unit(4, "meter"),
  2514. weight: math.unit(150, "kg"),
  2515. name: "Side (NSFW)",
  2516. image: {
  2517. source: "./media/characters/talan/side-nsfw.svg",
  2518. bottom: 29 / 3734
  2519. }
  2520. },
  2521. back: {
  2522. height: math.unit(4, "meter"),
  2523. weight: math.unit(150, "kg"),
  2524. name: "Back",
  2525. image: {
  2526. source: "./media/characters/talan/back.svg"
  2527. }
  2528. },
  2529. dickBottom: {
  2530. height: math.unit(0.621, "meter"),
  2531. name: "Dick (Bottom)",
  2532. image: {
  2533. source: "./media/characters/talan/dick-bottom.svg"
  2534. }
  2535. },
  2536. dickTop: {
  2537. height: math.unit(0.621, "meter"),
  2538. name: "Dick (Top)",
  2539. image: {
  2540. source: "./media/characters/talan/dick-top.svg"
  2541. }
  2542. },
  2543. dickSide: {
  2544. height: math.unit(0.305, "meter"),
  2545. name: "Dick (Side)",
  2546. image: {
  2547. source: "./media/characters/talan/dick-side.svg"
  2548. }
  2549. },
  2550. dickFront: {
  2551. height: math.unit(0.305, "meter"),
  2552. name: "Dick (Front)",
  2553. image: {
  2554. source: "./media/characters/talan/dick-front.svg"
  2555. }
  2556. },
  2557. },
  2558. [
  2559. {
  2560. name: "Normal",
  2561. height: math.unit(4, "meters")
  2562. },
  2563. {
  2564. name: "Macro",
  2565. height: math.unit(100, "meters")
  2566. },
  2567. {
  2568. name: "Megamacro",
  2569. height: math.unit(2, "miles"),
  2570. default: true
  2571. },
  2572. {
  2573. name: "Gigamacro",
  2574. height: math.unit(5000, "miles")
  2575. },
  2576. {
  2577. name: "Teramacro",
  2578. height: math.unit(100, "parsecs")
  2579. }
  2580. ]
  2581. ))
  2582. characterMakers.push(() => makeCharacter(
  2583. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2584. {
  2585. front: {
  2586. height: math.unit(2, "meter"),
  2587. weight: math.unit(90, "kg"),
  2588. name: "Front",
  2589. image: {
  2590. source: "./media/characters/gael'rathus/front.svg"
  2591. }
  2592. },
  2593. frontAlt: {
  2594. height: math.unit(2, "meter"),
  2595. weight: math.unit(90, "kg"),
  2596. name: "Front (alt)",
  2597. image: {
  2598. source: "./media/characters/gael'rathus/front-alt.svg"
  2599. }
  2600. },
  2601. frontAlt2: {
  2602. height: math.unit(2, "meter"),
  2603. weight: math.unit(90, "kg"),
  2604. name: "Front (alt 2)",
  2605. image: {
  2606. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2607. }
  2608. }
  2609. },
  2610. [
  2611. {
  2612. name: "Normal",
  2613. height: math.unit(9, "feet"),
  2614. default: true
  2615. },
  2616. {
  2617. name: "Large",
  2618. height: math.unit(25, "feet")
  2619. },
  2620. {
  2621. name: "Macro",
  2622. height: math.unit(0.25, "miles")
  2623. },
  2624. {
  2625. name: "Megamacro",
  2626. height: math.unit(10, "miles")
  2627. }
  2628. ]
  2629. ))
  2630. characterMakers.push(() => makeCharacter(
  2631. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2632. {
  2633. side: {
  2634. height: math.unit(2, "meter"),
  2635. weight: math.unit(140, "kg"),
  2636. name: "Side",
  2637. image: {
  2638. source: "./media/characters/sosha/side.svg",
  2639. bottom: 0.042
  2640. }
  2641. },
  2642. },
  2643. [
  2644. {
  2645. name: "Normal",
  2646. height: math.unit(12, "feet"),
  2647. default: true
  2648. }
  2649. ]
  2650. ))
  2651. characterMakers.push(() => makeCharacter(
  2652. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2653. {
  2654. side: {
  2655. height: math.unit(5 + 5 / 12, "feet"),
  2656. weight: math.unit(170, "kg"),
  2657. name: "Side",
  2658. image: {
  2659. source: "./media/characters/runnola/side.svg",
  2660. extra: 741 / 448,
  2661. bottom: 0.05
  2662. }
  2663. },
  2664. },
  2665. [
  2666. {
  2667. name: "Small",
  2668. height: math.unit(3, "feet")
  2669. },
  2670. {
  2671. name: "Normal",
  2672. height: math.unit(5 + 5 / 12, "feet"),
  2673. default: true
  2674. },
  2675. {
  2676. name: "Big",
  2677. height: math.unit(10, "feet")
  2678. },
  2679. ]
  2680. ))
  2681. characterMakers.push(() => makeCharacter(
  2682. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2683. {
  2684. front: {
  2685. height: math.unit(2, "meter"),
  2686. weight: math.unit(50, "kg"),
  2687. name: "Front",
  2688. image: {
  2689. source: "./media/characters/kurribird/front.svg",
  2690. bottom: 0.015
  2691. }
  2692. },
  2693. frontAlt: {
  2694. height: math.unit(1.5, "meter"),
  2695. weight: math.unit(50, "kg"),
  2696. name: "Front (Alt)",
  2697. image: {
  2698. source: "./media/characters/kurribird/front-alt.svg",
  2699. extra: 1.45
  2700. }
  2701. },
  2702. },
  2703. [
  2704. {
  2705. name: "Normal",
  2706. height: math.unit(7, "feet")
  2707. },
  2708. {
  2709. name: "Big",
  2710. height: math.unit(12, "feet"),
  2711. default: true
  2712. },
  2713. {
  2714. name: "Macro",
  2715. height: math.unit(1500, "feet")
  2716. },
  2717. {
  2718. name: "Megamacro",
  2719. height: math.unit(2, "miles")
  2720. }
  2721. ]
  2722. ))
  2723. characterMakers.push(() => makeCharacter(
  2724. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2725. {
  2726. front: {
  2727. height: math.unit(2, "meter"),
  2728. weight: math.unit(80, "kg"),
  2729. name: "Front",
  2730. image: {
  2731. source: "./media/characters/elbial/front.svg",
  2732. extra: 1643 / 1556,
  2733. bottom: 60.2 / 1696
  2734. }
  2735. },
  2736. side: {
  2737. height: math.unit(2, "meter"),
  2738. weight: math.unit(80, "kg"),
  2739. name: "Side",
  2740. image: {
  2741. source: "./media/characters/elbial/side.svg",
  2742. extra: 1630 / 1565,
  2743. bottom: 71.5 / 1697
  2744. }
  2745. },
  2746. back: {
  2747. height: math.unit(2, "meter"),
  2748. weight: math.unit(80, "kg"),
  2749. name: "Back",
  2750. image: {
  2751. source: "./media/characters/elbial/back.svg",
  2752. extra: 1668 / 1595,
  2753. bottom: 5.6 / 1672
  2754. }
  2755. },
  2756. frontDressed: {
  2757. height: math.unit(2, "meter"),
  2758. weight: math.unit(80, "kg"),
  2759. name: "Front (Dressed)",
  2760. image: {
  2761. source: "./media/characters/elbial/front-dressed.svg",
  2762. extra: 1653 / 1584,
  2763. bottom: 57 / 1708
  2764. }
  2765. },
  2766. genitals: {
  2767. height: math.unit(2 / 3.367, "meter"),
  2768. name: "Genitals",
  2769. image: {
  2770. source: "./media/characters/elbial/genitals.svg"
  2771. }
  2772. },
  2773. },
  2774. [
  2775. {
  2776. name: "Large",
  2777. height: math.unit(100, "feet")
  2778. },
  2779. {
  2780. name: "Macro",
  2781. height: math.unit(500, "feet"),
  2782. default: true
  2783. },
  2784. {
  2785. name: "Megamacro",
  2786. height: math.unit(10, "miles")
  2787. },
  2788. {
  2789. name: "Gigamacro",
  2790. height: math.unit(25000, "miles")
  2791. },
  2792. {
  2793. name: "Full-Size",
  2794. height: math.unit(8000000, "gigaparsecs")
  2795. }
  2796. ]
  2797. ))
  2798. characterMakers.push(() => makeCharacter(
  2799. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2800. {
  2801. front: {
  2802. height: math.unit(2, "meter"),
  2803. weight: math.unit(60, "kg"),
  2804. name: "Front",
  2805. image: {
  2806. source: "./media/characters/noah/front.svg"
  2807. }
  2808. },
  2809. talons: {
  2810. height: math.unit(0.315, "meter"),
  2811. name: "Talons",
  2812. image: {
  2813. source: "./media/characters/noah/talons.svg"
  2814. }
  2815. }
  2816. },
  2817. [
  2818. {
  2819. name: "Large",
  2820. height: math.unit(50, "feet")
  2821. },
  2822. {
  2823. name: "Macro",
  2824. height: math.unit(750, "feet"),
  2825. default: true
  2826. },
  2827. {
  2828. name: "Megamacro",
  2829. height: math.unit(50, "miles")
  2830. },
  2831. {
  2832. name: "Gigamacro",
  2833. height: math.unit(100000, "miles")
  2834. },
  2835. {
  2836. name: "Full-Size",
  2837. height: math.unit(3000000000, "miles")
  2838. }
  2839. ]
  2840. ))
  2841. characterMakers.push(() => makeCharacter(
  2842. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2843. {
  2844. front: {
  2845. height: math.unit(2, "meter"),
  2846. weight: math.unit(80, "kg"),
  2847. name: "Front",
  2848. image: {
  2849. source: "./media/characters/natalya/front.svg"
  2850. }
  2851. },
  2852. back: {
  2853. height: math.unit(2, "meter"),
  2854. weight: math.unit(80, "kg"),
  2855. name: "Back",
  2856. image: {
  2857. source: "./media/characters/natalya/back.svg"
  2858. }
  2859. }
  2860. },
  2861. [
  2862. {
  2863. name: "Normal",
  2864. height: math.unit(150, "feet"),
  2865. default: true
  2866. },
  2867. {
  2868. name: "Megamacro",
  2869. height: math.unit(5, "miles")
  2870. },
  2871. {
  2872. name: "Full-Size",
  2873. height: math.unit(600, "kiloparsecs")
  2874. }
  2875. ]
  2876. ))
  2877. characterMakers.push(() => makeCharacter(
  2878. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2879. {
  2880. front: {
  2881. height: math.unit(2, "meter"),
  2882. weight: math.unit(50, "kg"),
  2883. name: "Front",
  2884. image: {
  2885. source: "./media/characters/erestrebah/front.svg",
  2886. extra: 208 / 193,
  2887. bottom: 0.055
  2888. }
  2889. },
  2890. back: {
  2891. height: math.unit(2, "meter"),
  2892. weight: math.unit(50, "kg"),
  2893. name: "Back",
  2894. image: {
  2895. source: "./media/characters/erestrebah/back.svg",
  2896. extra: 1.3
  2897. }
  2898. }
  2899. },
  2900. [
  2901. {
  2902. name: "Normal",
  2903. height: math.unit(10, "feet")
  2904. },
  2905. {
  2906. name: "Large",
  2907. height: math.unit(50, "feet"),
  2908. default: true
  2909. },
  2910. {
  2911. name: "Macro",
  2912. height: math.unit(300, "feet")
  2913. },
  2914. {
  2915. name: "Macro+",
  2916. height: math.unit(750, "feet")
  2917. },
  2918. {
  2919. name: "Megamacro",
  2920. height: math.unit(3, "miles")
  2921. }
  2922. ]
  2923. ))
  2924. characterMakers.push(() => makeCharacter(
  2925. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2926. {
  2927. front: {
  2928. height: math.unit(2, "meter"),
  2929. weight: math.unit(80, "kg"),
  2930. name: "Front",
  2931. image: {
  2932. source: "./media/characters/jennifer/front.svg",
  2933. bottom: 0.11,
  2934. extra: 1.16
  2935. }
  2936. },
  2937. frontAlt: {
  2938. height: math.unit(2, "meter"),
  2939. weight: math.unit(80, "kg"),
  2940. name: "Front (Alt)",
  2941. image: {
  2942. source: "./media/characters/jennifer/front-alt.svg"
  2943. }
  2944. }
  2945. },
  2946. [
  2947. {
  2948. name: "Canon Height",
  2949. height: math.unit(120, "feet"),
  2950. default: true
  2951. },
  2952. {
  2953. name: "Macro+",
  2954. height: math.unit(300, "feet")
  2955. },
  2956. {
  2957. name: "Megamacro",
  2958. height: math.unit(20000, "feet")
  2959. }
  2960. ]
  2961. ))
  2962. characterMakers.push(() => makeCharacter(
  2963. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2964. {
  2965. front: {
  2966. height: math.unit(2, "meter"),
  2967. weight: math.unit(50, "kg"),
  2968. name: "Front",
  2969. image: {
  2970. source: "./media/characters/kalista/front.svg",
  2971. extra: 1947 / 1700,
  2972. bottom: 76.6 / 1412.98
  2973. }
  2974. },
  2975. back: {
  2976. height: math.unit(2, "meter"),
  2977. weight: math.unit(50, "kg"),
  2978. name: "Back",
  2979. image: {
  2980. source: "./media/characters/kalista/back.svg",
  2981. extra: 1366 / 1156,
  2982. bottom: 33.9 / 1362.78
  2983. }
  2984. }
  2985. },
  2986. [
  2987. {
  2988. name: "Uncomfortably Small",
  2989. height: math.unit(10, "feet")
  2990. },
  2991. {
  2992. name: "Small",
  2993. height: math.unit(30, "feet")
  2994. },
  2995. {
  2996. name: "Macro",
  2997. height: math.unit(100, "feet"),
  2998. default: true
  2999. },
  3000. {
  3001. name: "Macro+",
  3002. height: math.unit(2000, "feet")
  3003. },
  3004. {
  3005. name: "True Form",
  3006. height: math.unit(8924, "miles")
  3007. }
  3008. ]
  3009. ))
  3010. characterMakers.push(() => makeCharacter(
  3011. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3012. {
  3013. front: {
  3014. height: math.unit(2, "meter"),
  3015. weight: math.unit(120, "kg"),
  3016. name: "Front",
  3017. image: {
  3018. source: "./media/characters/ggv/front.svg"
  3019. }
  3020. },
  3021. side: {
  3022. height: math.unit(2, "meter"),
  3023. weight: math.unit(120, "kg"),
  3024. name: "Side",
  3025. image: {
  3026. source: "./media/characters/ggv/side.svg"
  3027. }
  3028. }
  3029. },
  3030. [
  3031. {
  3032. name: "Extremely Puny",
  3033. height: math.unit(9 + 5 / 12, "feet")
  3034. },
  3035. {
  3036. name: "Horribly Small",
  3037. height: math.unit(47.7, "miles"),
  3038. default: true
  3039. },
  3040. {
  3041. name: "Reasonably Sized",
  3042. height: math.unit(25000, "parsecs")
  3043. },
  3044. {
  3045. name: "Slightly Uncompressed",
  3046. height: math.unit(7.77e31, "parsecs")
  3047. },
  3048. {
  3049. name: "Omniversal",
  3050. height: math.unit(1e300, "meters")
  3051. },
  3052. ]
  3053. ))
  3054. characterMakers.push(() => makeCharacter(
  3055. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3056. {
  3057. front: {
  3058. height: math.unit(2, "meter"),
  3059. weight: math.unit(75, "lb"),
  3060. name: "Front",
  3061. image: {
  3062. source: "./media/characters/napalm/front.svg"
  3063. }
  3064. },
  3065. back: {
  3066. height: math.unit(2, "meter"),
  3067. weight: math.unit(75, "lb"),
  3068. name: "Back",
  3069. image: {
  3070. source: "./media/characters/napalm/back.svg"
  3071. }
  3072. }
  3073. },
  3074. [
  3075. {
  3076. name: "Standard",
  3077. height: math.unit(55, "feet"),
  3078. default: true
  3079. }
  3080. ]
  3081. ))
  3082. characterMakers.push(() => makeCharacter(
  3083. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3084. {
  3085. front: {
  3086. height: math.unit(7 + 5 / 6, "feet"),
  3087. weight: math.unit(325, "lb"),
  3088. name: "Front",
  3089. image: {
  3090. source: "./media/characters/asana/front.svg",
  3091. extra: 1133 / 1060,
  3092. bottom: 15.2/1148.6
  3093. }
  3094. },
  3095. back: {
  3096. height: math.unit(7 + 5 / 6, "feet"),
  3097. weight: math.unit(325, "lb"),
  3098. name: "Back",
  3099. image: {
  3100. source: "./media/characters/asana/back.svg",
  3101. extra: 1114 / 1043,
  3102. bottom: 5/1120
  3103. }
  3104. },
  3105. dressedDark: {
  3106. height: math.unit(7 + 5 / 6, "feet"),
  3107. weight: math.unit(325, "lb"),
  3108. name: "Dressed (Dark)",
  3109. image: {
  3110. source: "./media/characters/asana/dressed-dark.svg",
  3111. extra: 1133 / 1060,
  3112. bottom: 15.2/1148.6
  3113. }
  3114. },
  3115. dressedLight: {
  3116. height: math.unit(7 + 5 / 6, "feet"),
  3117. weight: math.unit(325, "lb"),
  3118. name: "Dressed (Light)",
  3119. image: {
  3120. source: "./media/characters/asana/dressed-light.svg",
  3121. extra: 1133 / 1060,
  3122. bottom: 15.2/1148.6
  3123. }
  3124. },
  3125. },
  3126. [
  3127. {
  3128. name: "Standard",
  3129. height: math.unit(7 + 5 / 6, "feet"),
  3130. default: true
  3131. },
  3132. {
  3133. name: "Large",
  3134. height: math.unit(10, "meters")
  3135. },
  3136. {
  3137. name: "Macro",
  3138. height: math.unit(2500, "meters")
  3139. },
  3140. {
  3141. name: "Megamacro",
  3142. height: math.unit(5e6, "meters")
  3143. },
  3144. {
  3145. name: "Examacro",
  3146. height: math.unit(5e12, "lightyears")
  3147. },
  3148. {
  3149. name: "Max Size",
  3150. height: math.unit(1e31, "lightyears")
  3151. }
  3152. ]
  3153. ))
  3154. characterMakers.push(() => makeCharacter(
  3155. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3156. {
  3157. front: {
  3158. height: math.unit(2, "meter"),
  3159. weight: math.unit(60, "kg"),
  3160. name: "Front",
  3161. image: {
  3162. source: "./media/characters/ebony/front.svg",
  3163. bottom: 0.03,
  3164. extra: 1045 / 810 + 0.03
  3165. }
  3166. },
  3167. side: {
  3168. height: math.unit(2, "meter"),
  3169. weight: math.unit(60, "kg"),
  3170. name: "Side",
  3171. image: {
  3172. source: "./media/characters/ebony/side.svg",
  3173. bottom: 0.03,
  3174. extra: 1045 / 810 + 0.03
  3175. }
  3176. },
  3177. back: {
  3178. height: math.unit(2, "meter"),
  3179. weight: math.unit(60, "kg"),
  3180. name: "Back",
  3181. image: {
  3182. source: "./media/characters/ebony/back.svg",
  3183. bottom: 0.01,
  3184. extra: 1045 / 810 + 0.01
  3185. }
  3186. },
  3187. },
  3188. [
  3189. // TODO check why I did this lol
  3190. {
  3191. name: "Standard",
  3192. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3193. default: true
  3194. },
  3195. {
  3196. name: "Macro",
  3197. height: math.unit(200, "feet")
  3198. },
  3199. {
  3200. name: "Gigamacro",
  3201. height: math.unit(13000, "km")
  3202. }
  3203. ]
  3204. ))
  3205. characterMakers.push(() => makeCharacter(
  3206. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3207. {
  3208. front: {
  3209. height: math.unit(6, "feet"),
  3210. weight: math.unit(175, "lb"),
  3211. name: "Front",
  3212. image: {
  3213. source: "./media/characters/mountain/front.svg",
  3214. extra: 972/955,
  3215. bottom: 64/1036.6
  3216. }
  3217. },
  3218. back: {
  3219. height: math.unit(6, "feet"),
  3220. weight: math.unit(175, "lb"),
  3221. name: "Back",
  3222. image: {
  3223. source: "./media/characters/mountain/back.svg",
  3224. extra: 970/950,
  3225. bottom: 28.25/999
  3226. }
  3227. },
  3228. },
  3229. [
  3230. {
  3231. name: "Large",
  3232. height: math.unit(20, "meters")
  3233. },
  3234. {
  3235. name: "Macro",
  3236. height: math.unit(300, "meters")
  3237. },
  3238. {
  3239. name: "Gigamacro",
  3240. height: math.unit(10000, "km"),
  3241. default: true
  3242. },
  3243. {
  3244. name: "Examacro",
  3245. height: math.unit(10e9, "lightyears")
  3246. }
  3247. ]
  3248. ))
  3249. characterMakers.push(() => makeCharacter(
  3250. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3251. {
  3252. front: {
  3253. height: math.unit(8, "feet"),
  3254. weight: math.unit(500, "lb"),
  3255. name: "Front",
  3256. image: {
  3257. source: "./media/characters/rick/front.svg"
  3258. }
  3259. }
  3260. },
  3261. [
  3262. {
  3263. name: "Normal",
  3264. height: math.unit(8, "feet"),
  3265. default: true
  3266. },
  3267. {
  3268. name: "Macro",
  3269. height: math.unit(5, "km")
  3270. }
  3271. ]
  3272. ))
  3273. characterMakers.push(() => makeCharacter(
  3274. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3275. {
  3276. front: {
  3277. height: math.unit(8, "feet"),
  3278. weight: math.unit(120, "lb"),
  3279. name: "Front",
  3280. image: {
  3281. source: "./media/characters/ona/front.svg"
  3282. }
  3283. },
  3284. frontAlt: {
  3285. height: math.unit(8, "feet"),
  3286. weight: math.unit(120, "lb"),
  3287. name: "Front (Alt)",
  3288. image: {
  3289. source: "./media/characters/ona/front-alt.svg"
  3290. }
  3291. },
  3292. back: {
  3293. height: math.unit(8, "feet"),
  3294. weight: math.unit(120, "lb"),
  3295. name: "Back",
  3296. image: {
  3297. source: "./media/characters/ona/back.svg"
  3298. }
  3299. },
  3300. foot: {
  3301. height: math.unit(1.1, "feet"),
  3302. name: "Foot",
  3303. image: {
  3304. source: "./media/characters/ona/foot.svg"
  3305. }
  3306. }
  3307. },
  3308. [
  3309. {
  3310. name: "Megamacro",
  3311. height: math.unit(70, "km"),
  3312. default: true
  3313. },
  3314. {
  3315. name: "Gigamacro",
  3316. height: math.unit(681818, "miles")
  3317. },
  3318. {
  3319. name: "Examacro",
  3320. height: math.unit(3800000, "lightyears")
  3321. },
  3322. ]
  3323. ))
  3324. characterMakers.push(() => makeCharacter(
  3325. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3326. {
  3327. front: {
  3328. height: math.unit(12, "feet"),
  3329. weight: math.unit(3000, "lb"),
  3330. name: "Front",
  3331. image: {
  3332. source: "./media/characters/mech/front.svg",
  3333. bottom: 0.025,
  3334. }
  3335. },
  3336. back: {
  3337. height: math.unit(12, "feet"),
  3338. weight: math.unit(3000, "lb"),
  3339. name: "Back",
  3340. image: {
  3341. source: "./media/characters/mech/back.svg",
  3342. bottom: 0.03,
  3343. }
  3344. }
  3345. },
  3346. [
  3347. {
  3348. name: "Normal",
  3349. height: math.unit(12, "feet")
  3350. },
  3351. {
  3352. name: "Macro",
  3353. height: math.unit(300, "feet"),
  3354. default: true
  3355. },
  3356. {
  3357. name: "Macro+",
  3358. height: math.unit(1500, "feet")
  3359. },
  3360. ]
  3361. ))
  3362. characterMakers.push(() => makeCharacter(
  3363. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3364. {
  3365. front: {
  3366. height: math.unit(1.3, "meter"),
  3367. weight: math.unit(30, "kg"),
  3368. name: "Front",
  3369. image: {
  3370. source: "./media/characters/gregory/front.svg",
  3371. }
  3372. }
  3373. },
  3374. [
  3375. {
  3376. name: "Normal",
  3377. height: math.unit(1.3, "meter"),
  3378. default: true
  3379. },
  3380. {
  3381. name: "Macro",
  3382. height: math.unit(20, "meter")
  3383. }
  3384. ]
  3385. ))
  3386. characterMakers.push(() => makeCharacter(
  3387. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3388. {
  3389. front: {
  3390. height: math.unit(2.8, "meter"),
  3391. weight: math.unit(200, "kg"),
  3392. name: "Front",
  3393. image: {
  3394. source: "./media/characters/elory/front.svg",
  3395. }
  3396. }
  3397. },
  3398. [
  3399. {
  3400. name: "Normal",
  3401. height: math.unit(2.8, "meter"),
  3402. default: true
  3403. },
  3404. {
  3405. name: "Macro",
  3406. height: math.unit(38, "meter")
  3407. }
  3408. ]
  3409. ))
  3410. characterMakers.push(() => makeCharacter(
  3411. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3412. {
  3413. front: {
  3414. height: math.unit(470, "feet"),
  3415. weight: math.unit(924, "tons"),
  3416. name: "Front",
  3417. image: {
  3418. source: "./media/characters/angelpatamon/front.svg",
  3419. }
  3420. }
  3421. },
  3422. [
  3423. {
  3424. name: "Normal",
  3425. height: math.unit(470, "feet"),
  3426. default: true
  3427. },
  3428. {
  3429. name: "Deity Size I",
  3430. height: math.unit(28651.2, "km")
  3431. },
  3432. {
  3433. name: "Deity Size II",
  3434. height: math.unit(171907.2, "km")
  3435. }
  3436. ]
  3437. ))
  3438. characterMakers.push(() => makeCharacter(
  3439. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3440. {
  3441. side: {
  3442. height: math.unit(7.2, "meter"),
  3443. weight: math.unit(8.2, "tons"),
  3444. name: "Side",
  3445. image: {
  3446. source: "./media/characters/cryae/side.svg",
  3447. extra: 3500 / 1500
  3448. }
  3449. }
  3450. },
  3451. [
  3452. {
  3453. name: "Normal",
  3454. height: math.unit(7.2, "meter"),
  3455. default: true
  3456. }
  3457. ]
  3458. ))
  3459. characterMakers.push(() => makeCharacter(
  3460. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3461. {
  3462. front: {
  3463. height: math.unit(6, "feet"),
  3464. weight: math.unit(175, "lb"),
  3465. name: "Front",
  3466. image: {
  3467. source: "./media/characters/xera/front.svg",
  3468. extra: 2377 / 1972,
  3469. bottom: 75.5/2452
  3470. }
  3471. },
  3472. side: {
  3473. height: math.unit(6, "feet"),
  3474. weight: math.unit(175, "lb"),
  3475. name: "Side",
  3476. image: {
  3477. source: "./media/characters/xera/side.svg",
  3478. extra: 2345/2019,
  3479. bottom: 39.7/2384
  3480. }
  3481. },
  3482. back: {
  3483. height: math.unit(6, "feet"),
  3484. weight: math.unit(175, "lb"),
  3485. name: "Back",
  3486. image: {
  3487. source: "./media/characters/xera/back.svg",
  3488. extra: 2095/1984,
  3489. bottom: 67/2166
  3490. }
  3491. },
  3492. },
  3493. [
  3494. {
  3495. name: "Small",
  3496. height: math.unit(10, "feet")
  3497. },
  3498. {
  3499. name: "Macro",
  3500. height: math.unit(500, "meters"),
  3501. default: true
  3502. },
  3503. {
  3504. name: "Macro+",
  3505. height: math.unit(10, "km")
  3506. },
  3507. {
  3508. name: "Gigamacro",
  3509. height: math.unit(25000, "km")
  3510. },
  3511. {
  3512. name: "Teramacro",
  3513. height: math.unit(3e6, "km")
  3514. }
  3515. ]
  3516. ))
  3517. characterMakers.push(() => makeCharacter(
  3518. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3519. {
  3520. front: {
  3521. height: math.unit(6, "feet"),
  3522. weight: math.unit(175, "lb"),
  3523. name: "Front",
  3524. image: {
  3525. source: "./media/characters/nebula/front.svg",
  3526. extra: 2566/2362,
  3527. bottom: 81/2644
  3528. }
  3529. }
  3530. },
  3531. [
  3532. {
  3533. name: "Small",
  3534. height: math.unit(4.5, "meters")
  3535. },
  3536. {
  3537. name: "Macro",
  3538. height: math.unit(1500, "meters"),
  3539. default: true
  3540. },
  3541. {
  3542. name: "Megamacro",
  3543. height: math.unit(150, "km")
  3544. },
  3545. {
  3546. name: "Gigamacro",
  3547. height: math.unit(27000, "km")
  3548. }
  3549. ]
  3550. ))
  3551. characterMakers.push(() => makeCharacter(
  3552. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3553. {
  3554. front: {
  3555. height: math.unit(6, "feet"),
  3556. weight: math.unit(225, "lb"),
  3557. name: "Front",
  3558. image: {
  3559. source: "./media/characters/abysgar/front.svg"
  3560. }
  3561. }
  3562. },
  3563. [
  3564. {
  3565. name: "Small",
  3566. height: math.unit(4.5, "meters")
  3567. },
  3568. {
  3569. name: "Macro",
  3570. height: math.unit(1250, "meters"),
  3571. default: true
  3572. },
  3573. {
  3574. name: "Megamacro",
  3575. height: math.unit(125, "km")
  3576. },
  3577. {
  3578. name: "Gigamacro",
  3579. height: math.unit(26000, "km")
  3580. }
  3581. ]
  3582. ))
  3583. characterMakers.push(() => makeCharacter(
  3584. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3585. {
  3586. front: {
  3587. height: math.unit(6, "feet"),
  3588. weight: math.unit(180, "lb"),
  3589. name: "Front",
  3590. image: {
  3591. source: "./media/characters/yakuz/front.svg"
  3592. }
  3593. }
  3594. },
  3595. [
  3596. {
  3597. name: "Small",
  3598. height: math.unit(5, "meters")
  3599. },
  3600. {
  3601. name: "Macro",
  3602. height: math.unit(1500, "meters"),
  3603. default: true
  3604. },
  3605. {
  3606. name: "Megamacro",
  3607. height: math.unit(200, "km")
  3608. },
  3609. {
  3610. name: "Gigamacro",
  3611. height: math.unit(100000, "km")
  3612. }
  3613. ]
  3614. ))
  3615. characterMakers.push(() => makeCharacter(
  3616. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3617. {
  3618. front: {
  3619. height: math.unit(6, "feet"),
  3620. weight: math.unit(175, "lb"),
  3621. name: "Front",
  3622. image: {
  3623. source: "./media/characters/mirova/front.svg",
  3624. extra: 3334/3071,
  3625. bottom: 42/3375.6
  3626. }
  3627. }
  3628. },
  3629. [
  3630. {
  3631. name: "Small",
  3632. height: math.unit(5, "meters")
  3633. },
  3634. {
  3635. name: "Macro",
  3636. height: math.unit(900, "meters"),
  3637. default: true
  3638. },
  3639. {
  3640. name: "Megamacro",
  3641. height: math.unit(135, "km")
  3642. },
  3643. {
  3644. name: "Gigamacro",
  3645. height: math.unit(20000, "km")
  3646. }
  3647. ]
  3648. ))
  3649. characterMakers.push(() => makeCharacter(
  3650. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3651. {
  3652. side: {
  3653. height: math.unit(28.35, "feet"),
  3654. weight: math.unit(99.75, "tons"),
  3655. name: "Side",
  3656. image: {
  3657. source: "./media/characters/asana-mech/side.svg",
  3658. extra: 923/699,
  3659. bottom: 50/975
  3660. }
  3661. },
  3662. chaingun: {
  3663. height: math.unit(7, "feet"),
  3664. weight: math.unit(2400, "lb"),
  3665. name: "Chaingun",
  3666. image: {
  3667. source: "./media/characters/asana-mech/chaingun.svg"
  3668. }
  3669. },
  3670. laser: {
  3671. height: math.unit(7.12, "feet"),
  3672. weight: math.unit(2000, "lb"),
  3673. name: "Laser",
  3674. image: {
  3675. source: "./media/characters/asana-mech/laser.svg"
  3676. }
  3677. },
  3678. },
  3679. [
  3680. {
  3681. name: "Normal",
  3682. height: math.unit(28.35, "feet"),
  3683. default: true
  3684. },
  3685. {
  3686. name: "Macro",
  3687. height: math.unit(2500, "feet")
  3688. },
  3689. {
  3690. name: "Megamacro",
  3691. height: math.unit(25, "miles")
  3692. },
  3693. {
  3694. name: "Examacro",
  3695. height: math.unit(6e8, "lightyears")
  3696. },
  3697. ]
  3698. ))
  3699. characterMakers.push(() => makeCharacter(
  3700. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3701. {
  3702. front: {
  3703. height: math.unit(5, "meters"),
  3704. weight: math.unit(1000, "kg"),
  3705. name: "Front",
  3706. image: {
  3707. source: "./media/characters/asche/front.svg",
  3708. extra: 1258/1190,
  3709. bottom: 47/1305
  3710. }
  3711. },
  3712. frontUnderwear: {
  3713. height: math.unit(5, "meters"),
  3714. weight: math.unit(1000, "kg"),
  3715. name: "Front (Underwear)",
  3716. image: {
  3717. source: "./media/characters/asche/front-underwear.svg",
  3718. extra: 1258/1190,
  3719. bottom: 47/1305
  3720. }
  3721. },
  3722. frontDressed: {
  3723. height: math.unit(5, "meters"),
  3724. weight: math.unit(1000, "kg"),
  3725. name: "Front (Dressed)",
  3726. image: {
  3727. source: "./media/characters/asche/front-dressed.svg",
  3728. extra: 1258/1190,
  3729. bottom: 47/1305
  3730. }
  3731. },
  3732. frontArmor: {
  3733. height: math.unit(5, "meters"),
  3734. weight: math.unit(1000, "kg"),
  3735. name: "Front (Armored)",
  3736. image: {
  3737. source: "./media/characters/asche/front-armored.svg",
  3738. extra: 1374 / 1308,
  3739. bottom: 23/1397
  3740. }
  3741. },
  3742. mp724: {
  3743. height: math.unit(0.96, "meters"),
  3744. weight: math.unit(38, "kg"),
  3745. name: "H&K MP724",
  3746. image: {
  3747. source: "./media/characters/asche/h&k-mp724.svg"
  3748. }
  3749. },
  3750. side: {
  3751. height: math.unit(5, "meters"),
  3752. weight: math.unit(1000, "kg"),
  3753. name: "Side",
  3754. image: {
  3755. source: "./media/characters/asche/side.svg",
  3756. extra: 1717 / 1609,
  3757. bottom: 0.005
  3758. }
  3759. },
  3760. back: {
  3761. height: math.unit(5, "meters"),
  3762. weight: math.unit(1000, "kg"),
  3763. name: "Back",
  3764. image: {
  3765. source: "./media/characters/asche/back.svg",
  3766. extra: 1570 / 1501
  3767. }
  3768. },
  3769. },
  3770. [
  3771. {
  3772. name: "DEFCON 5",
  3773. height: math.unit(5, "meters")
  3774. },
  3775. {
  3776. name: "DEFCON 4",
  3777. height: math.unit(500, "meters"),
  3778. default: true
  3779. },
  3780. {
  3781. name: "DEFCON 3",
  3782. height: math.unit(5, "km")
  3783. },
  3784. {
  3785. name: "DEFCON 2",
  3786. height: math.unit(500, "km")
  3787. },
  3788. {
  3789. name: "DEFCON 1",
  3790. height: math.unit(500000, "km")
  3791. },
  3792. {
  3793. name: "DEFCON 0",
  3794. height: math.unit(3, "gigaparsecs")
  3795. },
  3796. ]
  3797. ))
  3798. characterMakers.push(() => makeCharacter(
  3799. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3800. {
  3801. front: {
  3802. height: math.unit(2, "meters"),
  3803. weight: math.unit(76, "kg"),
  3804. name: "Front",
  3805. image: {
  3806. source: "./media/characters/gale/front.svg"
  3807. }
  3808. },
  3809. frontAlt1: {
  3810. height: math.unit(2, "meters"),
  3811. weight: math.unit(76, "kg"),
  3812. name: "Front (Alt 1)",
  3813. image: {
  3814. source: "./media/characters/gale/front-alt-1.svg"
  3815. }
  3816. },
  3817. frontAlt2: {
  3818. height: math.unit(2, "meters"),
  3819. weight: math.unit(76, "kg"),
  3820. name: "Front (Alt 2)",
  3821. image: {
  3822. source: "./media/characters/gale/front-alt-2.svg"
  3823. }
  3824. },
  3825. },
  3826. [
  3827. {
  3828. name: "Normal",
  3829. height: math.unit(7, "feet")
  3830. },
  3831. {
  3832. name: "Macro",
  3833. height: math.unit(150, "feet"),
  3834. default: true
  3835. },
  3836. {
  3837. name: "Macro+",
  3838. height: math.unit(300, "feet")
  3839. },
  3840. ]
  3841. ))
  3842. characterMakers.push(() => makeCharacter(
  3843. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3844. {
  3845. front: {
  3846. height: math.unit(2, "meters"),
  3847. weight: math.unit(76, "kg"),
  3848. name: "Front",
  3849. image: {
  3850. source: "./media/characters/draylen/front.svg"
  3851. }
  3852. }
  3853. },
  3854. [
  3855. {
  3856. name: "Macro",
  3857. height: math.unit(150, "feet"),
  3858. default: true
  3859. }
  3860. ]
  3861. ))
  3862. characterMakers.push(() => makeCharacter(
  3863. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3864. {
  3865. front: {
  3866. height: math.unit(7 + 9 / 12, "feet"),
  3867. weight: math.unit(379, "lbs"),
  3868. name: "Front",
  3869. image: {
  3870. source: "./media/characters/chez/front.svg"
  3871. }
  3872. },
  3873. side: {
  3874. height: math.unit(7 + 9 / 12, "feet"),
  3875. weight: math.unit(379, "lbs"),
  3876. name: "Side",
  3877. image: {
  3878. source: "./media/characters/chez/side.svg"
  3879. }
  3880. }
  3881. },
  3882. [
  3883. {
  3884. name: "Normal",
  3885. height: math.unit(7 + 9 / 12, "feet"),
  3886. default: true
  3887. },
  3888. {
  3889. name: "God King",
  3890. height: math.unit(9750000, "meters")
  3891. }
  3892. ]
  3893. ))
  3894. characterMakers.push(() => makeCharacter(
  3895. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3896. {
  3897. front: {
  3898. height: math.unit(6, "feet"),
  3899. weight: math.unit(275, "lbs"),
  3900. name: "Front",
  3901. image: {
  3902. source: "./media/characters/kaylum/front.svg",
  3903. bottom: 0.01,
  3904. extra: 1166 / 1031
  3905. }
  3906. },
  3907. frontWingless: {
  3908. height: math.unit(6, "feet"),
  3909. weight: math.unit(275, "lbs"),
  3910. name: "Front (Wingless)",
  3911. image: {
  3912. source: "./media/characters/kaylum/front-wingless.svg",
  3913. bottom: 0.01,
  3914. extra: 1117 / 1031
  3915. }
  3916. }
  3917. },
  3918. [
  3919. {
  3920. name: "Normal",
  3921. height: math.unit(3.05, "meters")
  3922. },
  3923. {
  3924. name: "Master",
  3925. height: math.unit(5.5, "meters")
  3926. },
  3927. {
  3928. name: "Rampage",
  3929. height: math.unit(19, "meters")
  3930. },
  3931. {
  3932. name: "Macro Lite",
  3933. height: math.unit(37, "meters")
  3934. },
  3935. {
  3936. name: "Hyper Predator",
  3937. height: math.unit(61, "meters")
  3938. },
  3939. {
  3940. name: "Macro",
  3941. height: math.unit(138, "meters"),
  3942. default: true
  3943. }
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3948. {
  3949. front: {
  3950. height: math.unit(6, "feet"),
  3951. weight: math.unit(150, "lbs"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/geta/front.svg"
  3955. }
  3956. }
  3957. },
  3958. [
  3959. {
  3960. name: "Micro",
  3961. height: math.unit(3, "inches"),
  3962. default: true
  3963. },
  3964. {
  3965. name: "Normal",
  3966. height: math.unit(5 + 5 / 12, "feet")
  3967. }
  3968. ]
  3969. ))
  3970. characterMakers.push(() => makeCharacter(
  3971. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3972. {
  3973. front: {
  3974. height: math.unit(6, "feet"),
  3975. weight: math.unit(300, "lbs"),
  3976. name: "Front",
  3977. image: {
  3978. source: "./media/characters/tyrnn/front.svg"
  3979. }
  3980. }
  3981. },
  3982. [
  3983. {
  3984. name: "Main Height",
  3985. height: math.unit(355, "feet"),
  3986. default: true
  3987. },
  3988. {
  3989. name: "Fave. Height",
  3990. height: math.unit(2400, "feet")
  3991. }
  3992. ]
  3993. ))
  3994. characterMakers.push(() => makeCharacter(
  3995. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3996. {
  3997. front: {
  3998. height: math.unit(6, "feet"),
  3999. weight: math.unit(300, "lbs"),
  4000. name: "Front",
  4001. image: {
  4002. source: "./media/characters/appledectomy/front.svg"
  4003. }
  4004. }
  4005. },
  4006. [
  4007. {
  4008. name: "Macro",
  4009. height: math.unit(2500, "feet")
  4010. },
  4011. {
  4012. name: "Megamacro",
  4013. height: math.unit(50, "miles"),
  4014. default: true
  4015. },
  4016. {
  4017. name: "Gigamacro",
  4018. height: math.unit(5000, "miles")
  4019. },
  4020. {
  4021. name: "Teramacro",
  4022. height: math.unit(250000, "miles")
  4023. },
  4024. ]
  4025. ))
  4026. characterMakers.push(() => makeCharacter(
  4027. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4028. {
  4029. front: {
  4030. height: math.unit(6, "feet"),
  4031. weight: math.unit(200, "lbs"),
  4032. name: "Front",
  4033. image: {
  4034. source: "./media/characters/vulpes/front.svg",
  4035. extra: 573 / 543,
  4036. bottom: 0.033
  4037. }
  4038. },
  4039. side: {
  4040. height: math.unit(6, "feet"),
  4041. weight: math.unit(200, "lbs"),
  4042. name: "Side",
  4043. image: {
  4044. source: "./media/characters/vulpes/side.svg",
  4045. extra: 573 / 543,
  4046. bottom: 0.01
  4047. }
  4048. },
  4049. back: {
  4050. height: math.unit(6, "feet"),
  4051. weight: math.unit(200, "lbs"),
  4052. name: "Back",
  4053. image: {
  4054. source: "./media/characters/vulpes/back.svg",
  4055. extra: 573 / 543,
  4056. }
  4057. },
  4058. feet: {
  4059. height: math.unit(1.276, "feet"),
  4060. name: "Feet",
  4061. image: {
  4062. source: "./media/characters/vulpes/feet.svg"
  4063. }
  4064. },
  4065. maw: {
  4066. height: math.unit(1.18, "feet"),
  4067. name: "Maw",
  4068. image: {
  4069. source: "./media/characters/vulpes/maw.svg"
  4070. }
  4071. },
  4072. },
  4073. [
  4074. {
  4075. name: "Micro",
  4076. height: math.unit(2, "inches")
  4077. },
  4078. {
  4079. name: "Normal",
  4080. height: math.unit(6.3, "feet")
  4081. },
  4082. {
  4083. name: "Macro",
  4084. height: math.unit(850, "feet")
  4085. },
  4086. {
  4087. name: "Megamacro",
  4088. height: math.unit(7500, "feet"),
  4089. default: true
  4090. },
  4091. {
  4092. name: "Gigamacro",
  4093. height: math.unit(570000, "miles")
  4094. }
  4095. ]
  4096. ))
  4097. characterMakers.push(() => makeCharacter(
  4098. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4099. {
  4100. front: {
  4101. height: math.unit(6, "feet"),
  4102. weight: math.unit(210, "lbs"),
  4103. name: "Front",
  4104. image: {
  4105. source: "./media/characters/rain-fallen/front.svg"
  4106. }
  4107. },
  4108. side: {
  4109. height: math.unit(6, "feet"),
  4110. weight: math.unit(210, "lbs"),
  4111. name: "Side",
  4112. image: {
  4113. source: "./media/characters/rain-fallen/side.svg"
  4114. }
  4115. },
  4116. back: {
  4117. height: math.unit(6, "feet"),
  4118. weight: math.unit(210, "lbs"),
  4119. name: "Back",
  4120. image: {
  4121. source: "./media/characters/rain-fallen/back.svg"
  4122. }
  4123. },
  4124. feral: {
  4125. height: math.unit(9, "feet"),
  4126. weight: math.unit(700, "lbs"),
  4127. name: "Feral",
  4128. image: {
  4129. source: "./media/characters/rain-fallen/feral.svg"
  4130. }
  4131. },
  4132. },
  4133. [
  4134. {
  4135. name: "Normal",
  4136. height: math.unit(5, "meter")
  4137. },
  4138. {
  4139. name: "Macro",
  4140. height: math.unit(150, "meter"),
  4141. default: true
  4142. },
  4143. {
  4144. name: "Megamacro",
  4145. height: math.unit(278e6, "meter")
  4146. },
  4147. {
  4148. name: "Gigamacro",
  4149. height: math.unit(2e9, "meter")
  4150. },
  4151. {
  4152. name: "Teramacro",
  4153. height: math.unit(8e12, "meter")
  4154. },
  4155. {
  4156. name: "Devourer",
  4157. height: math.unit(14, "zettameters")
  4158. },
  4159. {
  4160. name: "Scarlet King",
  4161. height: math.unit(18, "yottameters")
  4162. },
  4163. {
  4164. name: "Void",
  4165. height: math.unit(6.66e66, "yottameters")
  4166. }
  4167. ]
  4168. ))
  4169. characterMakers.push(() => makeCharacter(
  4170. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4171. {
  4172. standing: {
  4173. height: math.unit(6, "feet"),
  4174. weight: math.unit(180, "lbs"),
  4175. name: "Standing",
  4176. image: {
  4177. source: "./media/characters/zaakira/standing.svg"
  4178. }
  4179. },
  4180. laying: {
  4181. height: math.unit(3, "feet"),
  4182. weight: math.unit(180, "lbs"),
  4183. name: "Laying",
  4184. image: {
  4185. source: "./media/characters/zaakira/laying.svg"
  4186. }
  4187. },
  4188. },
  4189. [
  4190. {
  4191. name: "Normal",
  4192. height: math.unit(12, "feet")
  4193. },
  4194. {
  4195. name: "Macro",
  4196. height: math.unit(279, "feet"),
  4197. default: true
  4198. }
  4199. ]
  4200. ))
  4201. characterMakers.push(() => makeCharacter(
  4202. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4203. {
  4204. femSfw: {
  4205. height: math.unit(8, "feet"),
  4206. weight: math.unit(350, "lb"),
  4207. name: "Fem",
  4208. image: {
  4209. source: "./media/characters/sigvald/fem-sfw.svg",
  4210. extra: 182/164,
  4211. bottom: 8.7/190.5
  4212. }
  4213. },
  4214. femNsfw: {
  4215. height: math.unit(8, "feet"),
  4216. weight: math.unit(350, "lb"),
  4217. name: "Fem (NSFW)",
  4218. image: {
  4219. source: "./media/characters/sigvald/fem-nsfw.svg",
  4220. extra: 182/164,
  4221. bottom: 8.7/190.5
  4222. }
  4223. },
  4224. maleNsfw: {
  4225. height: math.unit(8, "feet"),
  4226. weight: math.unit(350, "lb"),
  4227. name: "Male (NSFW)",
  4228. image: {
  4229. source: "./media/characters/sigvald/male-nsfw.svg",
  4230. extra: 182/164,
  4231. bottom: 8.7/190.5
  4232. }
  4233. },
  4234. hermNsfw: {
  4235. height: math.unit(8, "feet"),
  4236. weight: math.unit(350, "lb"),
  4237. name: "Herm (NSFW)",
  4238. image: {
  4239. source: "./media/characters/sigvald/herm-nsfw.svg",
  4240. extra: 182/164,
  4241. bottom: 8.7/190.5
  4242. }
  4243. },
  4244. dick: {
  4245. height: math.unit(2.36, "feet"),
  4246. name: "Dick",
  4247. image: {
  4248. source: "./media/characters/sigvald/dick.svg"
  4249. }
  4250. },
  4251. eye: {
  4252. height: math.unit(0.31, "feet"),
  4253. name: "Eye",
  4254. image: {
  4255. source: "./media/characters/sigvald/eye.svg"
  4256. }
  4257. },
  4258. mouth: {
  4259. height: math.unit(0.92, "feet"),
  4260. name: "Mouth",
  4261. image: {
  4262. source: "./media/characters/sigvald/mouth.svg"
  4263. }
  4264. },
  4265. paws: {
  4266. height: math.unit(2.2, "feet"),
  4267. name: "Paws",
  4268. image: {
  4269. source: "./media/characters/sigvald/paws.svg"
  4270. }
  4271. }
  4272. },
  4273. [
  4274. {
  4275. name: "Normal",
  4276. height: math.unit(8, "feet")
  4277. },
  4278. {
  4279. name: "Large",
  4280. height: math.unit(12, "feet")
  4281. },
  4282. {
  4283. name: "Larger",
  4284. height: math.unit(20, "feet")
  4285. },
  4286. {
  4287. name: "Macro",
  4288. height: math.unit(150, "feet")
  4289. },
  4290. {
  4291. name: "Macro+",
  4292. height: math.unit(200, "feet"),
  4293. default: true
  4294. },
  4295. ]
  4296. ))
  4297. characterMakers.push(() => makeCharacter(
  4298. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4299. {
  4300. side: {
  4301. height: math.unit(12, "feet"),
  4302. weight: math.unit(2000, "kg"),
  4303. name: "Side",
  4304. image: {
  4305. source: "./media/characters/scott/side.svg",
  4306. extra: 754 / 724,
  4307. bottom: 0.069
  4308. }
  4309. },
  4310. upright: {
  4311. height: math.unit(12, "feet"),
  4312. weight: math.unit(2000, "kg"),
  4313. name: "Upright",
  4314. image: {
  4315. source: "./media/characters/scott/upright.svg",
  4316. extra: 3881 / 3722,
  4317. bottom: 0.05
  4318. }
  4319. },
  4320. },
  4321. [
  4322. {
  4323. name: "Normal",
  4324. height: math.unit(12, "feet"),
  4325. default: true
  4326. },
  4327. ]
  4328. ))
  4329. characterMakers.push(() => makeCharacter(
  4330. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4331. {
  4332. side: {
  4333. height: math.unit(8, "meters"),
  4334. weight: math.unit(84755, "lbs"),
  4335. name: "Side",
  4336. image: {
  4337. source: "./media/characters/tobias/side.svg",
  4338. extra: 1474 / 1096,
  4339. bottom: 38.9 / 1513.1235
  4340. }
  4341. },
  4342. },
  4343. [
  4344. {
  4345. name: "Normal",
  4346. height: math.unit(8, "meters"),
  4347. default: true
  4348. },
  4349. ]
  4350. ))
  4351. characterMakers.push(() => makeCharacter(
  4352. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4353. {
  4354. front: {
  4355. height: math.unit(5.5, "feet"),
  4356. weight: math.unit(400, "lbs"),
  4357. name: "Front",
  4358. image: {
  4359. source: "./media/characters/kieran/front.svg",
  4360. extra: 2694 / 2364,
  4361. bottom: 217 / 2908
  4362. }
  4363. },
  4364. side: {
  4365. height: math.unit(5.5, "feet"),
  4366. weight: math.unit(400, "lbs"),
  4367. name: "Side",
  4368. image: {
  4369. source: "./media/characters/kieran/side.svg",
  4370. extra: 875 / 777,
  4371. bottom: 84.6 / 959
  4372. }
  4373. },
  4374. },
  4375. [
  4376. {
  4377. name: "Normal",
  4378. height: math.unit(5.5, "feet"),
  4379. default: true
  4380. },
  4381. ]
  4382. ))
  4383. characterMakers.push(() => makeCharacter(
  4384. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4385. {
  4386. side: {
  4387. height: math.unit(2, "meters"),
  4388. weight: math.unit(70, "kg"),
  4389. name: "Side",
  4390. image: {
  4391. source: "./media/characters/sanya/side.svg",
  4392. bottom: 0.02,
  4393. extra: 1.02
  4394. }
  4395. },
  4396. },
  4397. [
  4398. {
  4399. name: "Small",
  4400. height: math.unit(2, "meters")
  4401. },
  4402. {
  4403. name: "Normal",
  4404. height: math.unit(3, "meters")
  4405. },
  4406. {
  4407. name: "Macro",
  4408. height: math.unit(16, "meters"),
  4409. default: true
  4410. },
  4411. ]
  4412. ))
  4413. characterMakers.push(() => makeCharacter(
  4414. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4415. {
  4416. front: {
  4417. height: math.unit(2, "meters"),
  4418. weight: math.unit(120, "kg"),
  4419. name: "Front",
  4420. image: {
  4421. source: "./media/characters/miranda/front.svg",
  4422. extra: 195/185,
  4423. bottom: 10.9/206.5
  4424. }
  4425. },
  4426. back: {
  4427. height: math.unit(2, "meters"),
  4428. weight: math.unit(120, "kg"),
  4429. name: "Back",
  4430. image: {
  4431. source: "./media/characters/miranda/back.svg",
  4432. extra: 201/193,
  4433. bottom: 2.3/203.7
  4434. }
  4435. },
  4436. },
  4437. [
  4438. {
  4439. name: "Normal",
  4440. height: math.unit(10, "feet"),
  4441. default: true
  4442. }
  4443. ]
  4444. ))
  4445. characterMakers.push(() => makeCharacter(
  4446. { name: "James", species: ["deer"], tags: ["anthro"] },
  4447. {
  4448. side: {
  4449. height: math.unit(2, "meters"),
  4450. weight: math.unit(100, "kg"),
  4451. name: "Front",
  4452. image: {
  4453. source: "./media/characters/james/front.svg",
  4454. extra: 10 / 8.5
  4455. }
  4456. },
  4457. },
  4458. [
  4459. {
  4460. name: "Normal",
  4461. height: math.unit(8.5, "feet"),
  4462. default: true
  4463. }
  4464. ]
  4465. ))
  4466. characterMakers.push(() => makeCharacter(
  4467. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4468. {
  4469. side: {
  4470. height: math.unit(9.5, "feet"),
  4471. weight: math.unit(2500, "lbs"),
  4472. name: "Side",
  4473. image: {
  4474. source: "./media/characters/heather/side.svg"
  4475. }
  4476. },
  4477. },
  4478. [
  4479. {
  4480. name: "Normal",
  4481. height: math.unit(9.5, "feet"),
  4482. default: true
  4483. }
  4484. ]
  4485. ))
  4486. characterMakers.push(() => makeCharacter(
  4487. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4488. {
  4489. side: {
  4490. height: math.unit(6.5, "feet"),
  4491. weight: math.unit(400, "lbs"),
  4492. name: "Side",
  4493. image: {
  4494. source: "./media/characters/lukas/side.svg",
  4495. extra: 7.25 / 6.5
  4496. }
  4497. },
  4498. },
  4499. [
  4500. {
  4501. name: "Normal",
  4502. height: math.unit(6.5, "feet"),
  4503. default: true
  4504. }
  4505. ]
  4506. ))
  4507. characterMakers.push(() => makeCharacter(
  4508. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4509. {
  4510. side: {
  4511. height: math.unit(5, "feet"),
  4512. weight: math.unit(3000, "lbs"),
  4513. name: "Side",
  4514. image: {
  4515. source: "./media/characters/louise/side.svg"
  4516. }
  4517. },
  4518. },
  4519. [
  4520. {
  4521. name: "Normal",
  4522. height: math.unit(5, "feet"),
  4523. default: true
  4524. }
  4525. ]
  4526. ))
  4527. characterMakers.push(() => makeCharacter(
  4528. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4529. {
  4530. side: {
  4531. height: math.unit(6, "feet"),
  4532. weight: math.unit(150, "lbs"),
  4533. name: "Side",
  4534. image: {
  4535. source: "./media/characters/ramona/side.svg"
  4536. }
  4537. },
  4538. },
  4539. [
  4540. {
  4541. name: "Normal",
  4542. height: math.unit(5.3, "meters"),
  4543. default: true
  4544. },
  4545. {
  4546. name: "Macro",
  4547. height: math.unit(20, "stories")
  4548. },
  4549. {
  4550. name: "Macro+",
  4551. height: math.unit(50, "stories")
  4552. },
  4553. ]
  4554. ))
  4555. characterMakers.push(() => makeCharacter(
  4556. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4557. {
  4558. standing: {
  4559. height: math.unit(5.75, "feet"),
  4560. weight: math.unit(160, "lbs"),
  4561. name: "Standing",
  4562. image: {
  4563. source: "./media/characters/deerpuff/standing.svg",
  4564. extra: 682 / 624
  4565. }
  4566. },
  4567. sitting: {
  4568. height: math.unit(5.75 / 1.79, "feet"),
  4569. weight: math.unit(160, "lbs"),
  4570. name: "Sitting",
  4571. image: {
  4572. source: "./media/characters/deerpuff/sitting.svg",
  4573. bottom: 44 / 400,
  4574. extra: 1
  4575. }
  4576. },
  4577. taurLaying: {
  4578. height: math.unit(6, "feet"),
  4579. weight: math.unit(400, "lbs"),
  4580. name: "Taur (Laying)",
  4581. image: {
  4582. source: "./media/characters/deerpuff/taur-laying.svg"
  4583. }
  4584. },
  4585. },
  4586. [
  4587. {
  4588. name: "Puffball",
  4589. height: math.unit(6, "inches")
  4590. },
  4591. {
  4592. name: "Normalpuff",
  4593. height: math.unit(5.75, "feet")
  4594. },
  4595. {
  4596. name: "Macropuff",
  4597. height: math.unit(1500, "feet"),
  4598. default: true
  4599. },
  4600. {
  4601. name: "Megapuff",
  4602. height: math.unit(500, "miles")
  4603. },
  4604. {
  4605. name: "Gigapuff",
  4606. height: math.unit(250000, "miles")
  4607. },
  4608. {
  4609. name: "Omegapuff",
  4610. height: math.unit(1000, "lightyears")
  4611. },
  4612. ]
  4613. ))
  4614. characterMakers.push(() => makeCharacter(
  4615. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4616. {
  4617. stomping: {
  4618. height: math.unit(6, "feet"),
  4619. weight: math.unit(170, "lbs"),
  4620. name: "Stomping",
  4621. image: {
  4622. source: "./media/characters/vivian/stomping.svg"
  4623. }
  4624. },
  4625. sitting: {
  4626. height: math.unit(6 / 1.75, "feet"),
  4627. weight: math.unit(170, "lbs"),
  4628. name: "Sitting",
  4629. image: {
  4630. source: "./media/characters/vivian/sitting.svg",
  4631. bottom: 1 / 6.4,
  4632. extra: 1,
  4633. }
  4634. },
  4635. },
  4636. [
  4637. {
  4638. name: "Normal",
  4639. height: math.unit(7, "feet"),
  4640. default: true
  4641. },
  4642. {
  4643. name: "Macro",
  4644. height: math.unit(10, "stories")
  4645. },
  4646. {
  4647. name: "Macro+",
  4648. height: math.unit(30, "stories")
  4649. },
  4650. {
  4651. name: "Megamacro",
  4652. height: math.unit(10, "miles")
  4653. },
  4654. {
  4655. name: "Megamacro+",
  4656. height: math.unit(2750000, "meters")
  4657. },
  4658. ]
  4659. ))
  4660. characterMakers.push(() => makeCharacter(
  4661. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4662. {
  4663. front: {
  4664. height: math.unit(6, "feet"),
  4665. weight: math.unit(160, "lbs"),
  4666. name: "Front",
  4667. image: {
  4668. source: "./media/characters/prince/front.svg",
  4669. extra: 3400 / 3000
  4670. }
  4671. },
  4672. jumping: {
  4673. height: math.unit(6, "feet"),
  4674. weight: math.unit(160, "lbs"),
  4675. name: "Jumping",
  4676. image: {
  4677. source: "./media/characters/prince/jump.svg",
  4678. extra: 2555 / 2134
  4679. }
  4680. },
  4681. },
  4682. [
  4683. {
  4684. name: "Normal",
  4685. height: math.unit(7.75, "feet"),
  4686. default: true
  4687. },
  4688. {
  4689. name: "Not cute",
  4690. height: math.unit(17, "feet")
  4691. },
  4692. {
  4693. name: "I said NOT",
  4694. height: math.unit(91, "feet")
  4695. },
  4696. {
  4697. name: "Please stop",
  4698. height: math.unit(560, "feet")
  4699. },
  4700. {
  4701. name: "What have you done",
  4702. height: math.unit(2200, "feet")
  4703. },
  4704. {
  4705. name: "Deer God",
  4706. height: math.unit(3.6, "miles")
  4707. },
  4708. ]
  4709. ))
  4710. characterMakers.push(() => makeCharacter(
  4711. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4712. {
  4713. standing: {
  4714. height: math.unit(6, "feet"),
  4715. weight: math.unit(300, "lbs"),
  4716. name: "Standing",
  4717. image: {
  4718. source: "./media/characters/psymon/standing.svg",
  4719. extra: 1888 / 1810,
  4720. bottom: 0.05
  4721. }
  4722. },
  4723. slithering: {
  4724. height: math.unit(6, "feet"),
  4725. weight: math.unit(300, "lbs"),
  4726. name: "Slithering",
  4727. image: {
  4728. source: "./media/characters/psymon/slithering.svg",
  4729. extra: 1330 / 1224
  4730. }
  4731. },
  4732. slitheringAlt: {
  4733. height: math.unit(6, "feet"),
  4734. weight: math.unit(300, "lbs"),
  4735. name: "Slithering (Alt)",
  4736. image: {
  4737. source: "./media/characters/psymon/slithering-alt.svg",
  4738. extra: 1330 / 1224
  4739. }
  4740. },
  4741. },
  4742. [
  4743. {
  4744. name: "Normal",
  4745. height: math.unit(11.25, "feet"),
  4746. default: true
  4747. },
  4748. {
  4749. name: "Large",
  4750. height: math.unit(27, "feet")
  4751. },
  4752. {
  4753. name: "Giant",
  4754. height: math.unit(87, "feet")
  4755. },
  4756. {
  4757. name: "Macro",
  4758. height: math.unit(365, "feet")
  4759. },
  4760. {
  4761. name: "Megamacro",
  4762. height: math.unit(3, "miles")
  4763. },
  4764. {
  4765. name: "World Serpent",
  4766. height: math.unit(8000, "miles")
  4767. },
  4768. ]
  4769. ))
  4770. characterMakers.push(() => makeCharacter(
  4771. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4772. {
  4773. front: {
  4774. height: math.unit(6, "feet"),
  4775. weight: math.unit(180, "lbs"),
  4776. name: "Front",
  4777. image: {
  4778. source: "./media/characters/daimos/front.svg",
  4779. extra: 4160 / 3897,
  4780. bottom: 0.021
  4781. }
  4782. }
  4783. },
  4784. [
  4785. {
  4786. name: "Normal",
  4787. height: math.unit(8, "feet"),
  4788. default: true
  4789. },
  4790. {
  4791. name: "Big Dog",
  4792. height: math.unit(22, "feet")
  4793. },
  4794. {
  4795. name: "Macro",
  4796. height: math.unit(127, "feet")
  4797. },
  4798. {
  4799. name: "Megamacro",
  4800. height: math.unit(3600, "feet")
  4801. },
  4802. ]
  4803. ))
  4804. characterMakers.push(() => makeCharacter(
  4805. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4806. {
  4807. side: {
  4808. height: math.unit(6, "feet"),
  4809. weight: math.unit(180, "lbs"),
  4810. name: "Side",
  4811. image: {
  4812. source: "./media/characters/blake/side.svg",
  4813. extra: 1212 / 1120,
  4814. bottom: 0.05
  4815. }
  4816. },
  4817. crouched: {
  4818. height: math.unit(6 * 0.57, "feet"),
  4819. weight: math.unit(180, "lbs"),
  4820. name: "Crouched",
  4821. image: {
  4822. source: "./media/characters/blake/crouched.svg",
  4823. extra: 840 / 587,
  4824. bottom: 0.04
  4825. }
  4826. },
  4827. bent: {
  4828. height: math.unit(6 * 0.75, "feet"),
  4829. weight: math.unit(180, "lbs"),
  4830. name: "Bent",
  4831. image: {
  4832. source: "./media/characters/blake/bent.svg",
  4833. extra: 592 / 544,
  4834. bottom: 0.035
  4835. }
  4836. },
  4837. },
  4838. [
  4839. {
  4840. name: "Normal",
  4841. height: math.unit(8 + 1 / 6, "feet"),
  4842. default: true
  4843. },
  4844. {
  4845. name: "Big Backside",
  4846. height: math.unit(37, "feet")
  4847. },
  4848. {
  4849. name: "Subway Shredder",
  4850. height: math.unit(72, "feet")
  4851. },
  4852. {
  4853. name: "City Carver",
  4854. height: math.unit(1675, "feet")
  4855. },
  4856. {
  4857. name: "Tectonic Tweaker",
  4858. height: math.unit(2300, "miles")
  4859. },
  4860. ]
  4861. ))
  4862. characterMakers.push(() => makeCharacter(
  4863. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4864. {
  4865. front: {
  4866. height: math.unit(6, "feet"),
  4867. weight: math.unit(180, "lbs"),
  4868. name: "Front",
  4869. image: {
  4870. source: "./media/characters/guisetto/front.svg",
  4871. extra: 856 / 817,
  4872. bottom: 0.06
  4873. }
  4874. },
  4875. airborne: {
  4876. height: math.unit(6, "feet"),
  4877. weight: math.unit(180, "lbs"),
  4878. name: "Airborne",
  4879. image: {
  4880. source: "./media/characters/guisetto/airborne.svg",
  4881. extra: 584 / 525
  4882. }
  4883. },
  4884. },
  4885. [
  4886. {
  4887. name: "Normal",
  4888. height: math.unit(10 + 11 / 12, "feet"),
  4889. default: true
  4890. },
  4891. {
  4892. name: "Large",
  4893. height: math.unit(35, "feet")
  4894. },
  4895. {
  4896. name: "Macro",
  4897. height: math.unit(475, "feet")
  4898. },
  4899. ]
  4900. ))
  4901. characterMakers.push(() => makeCharacter(
  4902. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4903. {
  4904. front: {
  4905. height: math.unit(6, "feet"),
  4906. weight: math.unit(180, "lbs"),
  4907. name: "Front",
  4908. image: {
  4909. source: "./media/characters/luxor/front.svg",
  4910. extra: 2940 / 2152
  4911. }
  4912. },
  4913. back: {
  4914. height: math.unit(6, "feet"),
  4915. weight: math.unit(180, "lbs"),
  4916. name: "Back",
  4917. image: {
  4918. source: "./media/characters/luxor/back.svg",
  4919. extra: 1083 / 960
  4920. }
  4921. },
  4922. },
  4923. [
  4924. {
  4925. name: "Normal",
  4926. height: math.unit(5 + 5 / 6, "feet"),
  4927. default: true
  4928. },
  4929. {
  4930. name: "Lamp",
  4931. height: math.unit(50, "feet")
  4932. },
  4933. {
  4934. name: "Lämp",
  4935. height: math.unit(300, "feet")
  4936. },
  4937. {
  4938. name: "The sun is a lamp",
  4939. height: math.unit(250000, "miles")
  4940. },
  4941. ]
  4942. ))
  4943. characterMakers.push(() => makeCharacter(
  4944. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4945. {
  4946. front: {
  4947. height: math.unit(6, "feet"),
  4948. weight: math.unit(50, "lbs"),
  4949. name: "Front",
  4950. image: {
  4951. source: "./media/characters/huoyan/front.svg"
  4952. }
  4953. },
  4954. side: {
  4955. height: math.unit(6, "feet"),
  4956. weight: math.unit(180, "lbs"),
  4957. name: "Side",
  4958. image: {
  4959. source: "./media/characters/huoyan/side.svg"
  4960. }
  4961. },
  4962. },
  4963. [
  4964. {
  4965. name: "Chef",
  4966. height: math.unit(9, "feet")
  4967. },
  4968. {
  4969. name: "Normal",
  4970. height: math.unit(65, "feet"),
  4971. default: true
  4972. },
  4973. {
  4974. name: "Macro",
  4975. height: math.unit(780, "feet")
  4976. },
  4977. {
  4978. name: "Flaming Mountain",
  4979. height: math.unit(4.8, "miles")
  4980. },
  4981. {
  4982. name: "Celestial",
  4983. height: math.unit(765000, "miles")
  4984. },
  4985. ]
  4986. ))
  4987. characterMakers.push(() => makeCharacter(
  4988. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4989. {
  4990. front: {
  4991. height: math.unit(5 + 3 / 4, "feet"),
  4992. weight: math.unit(120, "lbs"),
  4993. name: "Front",
  4994. image: {
  4995. source: "./media/characters/tails/front.svg"
  4996. }
  4997. }
  4998. },
  4999. [
  5000. {
  5001. name: "Normal",
  5002. height: math.unit(5 + 3 / 4, "feet"),
  5003. default: true
  5004. }
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5009. {
  5010. front: {
  5011. height: math.unit(4, "feet"),
  5012. weight: math.unit(50, "lbs"),
  5013. name: "Front",
  5014. image: {
  5015. source: "./media/characters/rainy/front.svg"
  5016. }
  5017. }
  5018. },
  5019. [
  5020. {
  5021. name: "Macro",
  5022. height: math.unit(800, "feet"),
  5023. default: true
  5024. }
  5025. ]
  5026. ))
  5027. characterMakers.push(() => makeCharacter(
  5028. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5029. {
  5030. front: {
  5031. height: math.unit(6, "feet"),
  5032. weight: math.unit(150, "lbs"),
  5033. name: "Front",
  5034. image: {
  5035. source: "./media/characters/rainier/front.svg"
  5036. }
  5037. }
  5038. },
  5039. [
  5040. {
  5041. name: "Micro",
  5042. height: math.unit(2, "mm"),
  5043. default: true
  5044. }
  5045. ]
  5046. ))
  5047. characterMakers.push(() => makeCharacter(
  5048. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5049. {
  5050. front: {
  5051. height: math.unit(6, "feet"),
  5052. weight: math.unit(180, "lbs"),
  5053. name: "Front",
  5054. image: {
  5055. source: "./media/characters/andy/front.svg"
  5056. }
  5057. }
  5058. },
  5059. [
  5060. {
  5061. name: "Normal",
  5062. height: math.unit(8, "feet"),
  5063. default: true
  5064. },
  5065. {
  5066. name: "Macro",
  5067. height: math.unit(1000, "feet")
  5068. },
  5069. {
  5070. name: "Megamacro",
  5071. height: math.unit(5, "miles")
  5072. },
  5073. {
  5074. name: "Gigamacro",
  5075. height: math.unit(5000, "miles")
  5076. },
  5077. ]
  5078. ))
  5079. characterMakers.push(() => makeCharacter(
  5080. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5081. {
  5082. front: {
  5083. height: math.unit(6, "feet"),
  5084. weight: math.unit(210, "lbs"),
  5085. name: "Front",
  5086. image: {
  5087. source: "./media/characters/cimmaron/front-sfw.svg",
  5088. extra: 701 / 676,
  5089. bottom: 0.046
  5090. }
  5091. },
  5092. back: {
  5093. height: math.unit(6, "feet"),
  5094. weight: math.unit(210, "lbs"),
  5095. name: "Back",
  5096. image: {
  5097. source: "./media/characters/cimmaron/back-sfw.svg",
  5098. extra: 701 / 676,
  5099. bottom: 0.046
  5100. }
  5101. },
  5102. frontNsfw: {
  5103. height: math.unit(6, "feet"),
  5104. weight: math.unit(210, "lbs"),
  5105. name: "Front (NSFW)",
  5106. image: {
  5107. source: "./media/characters/cimmaron/front-nsfw.svg",
  5108. extra: 701 / 676,
  5109. bottom: 0.046
  5110. }
  5111. },
  5112. backNsfw: {
  5113. height: math.unit(6, "feet"),
  5114. weight: math.unit(210, "lbs"),
  5115. name: "Back (NSFW)",
  5116. image: {
  5117. source: "./media/characters/cimmaron/back-nsfw.svg",
  5118. extra: 701 / 676,
  5119. bottom: 0.046
  5120. }
  5121. },
  5122. dick: {
  5123. height: math.unit(1.714, "feet"),
  5124. name: "Dick",
  5125. image: {
  5126. source: "./media/characters/cimmaron/dick.svg"
  5127. }
  5128. },
  5129. },
  5130. [
  5131. {
  5132. name: "Normal",
  5133. height: math.unit(6, "feet"),
  5134. default: true
  5135. },
  5136. {
  5137. name: "Macro Mayor",
  5138. height: math.unit(350, "meters")
  5139. },
  5140. ]
  5141. ))
  5142. characterMakers.push(() => makeCharacter(
  5143. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5144. {
  5145. front: {
  5146. height: math.unit(6, "feet"),
  5147. weight: math.unit(200, "lbs"),
  5148. name: "Front",
  5149. image: {
  5150. source: "./media/characters/akari/front.svg",
  5151. extra: 962 / 901,
  5152. bottom: 0.04
  5153. }
  5154. }
  5155. },
  5156. [
  5157. {
  5158. name: "Micro",
  5159. height: math.unit(5, "inches"),
  5160. default: true
  5161. },
  5162. {
  5163. name: "Normal",
  5164. height: math.unit(7, "feet")
  5165. },
  5166. ]
  5167. ))
  5168. characterMakers.push(() => makeCharacter(
  5169. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5170. {
  5171. front: {
  5172. height: math.unit(6, "feet"),
  5173. weight: math.unit(140, "lbs"),
  5174. name: "Front",
  5175. image: {
  5176. source: "./media/characters/cynosura/front.svg",
  5177. extra: 896 / 847
  5178. }
  5179. },
  5180. back: {
  5181. height: math.unit(6, "feet"),
  5182. weight: math.unit(140, "lbs"),
  5183. name: "Back",
  5184. image: {
  5185. source: "./media/characters/cynosura/back.svg",
  5186. extra: 1365 / 1250
  5187. }
  5188. },
  5189. },
  5190. [
  5191. {
  5192. name: "Micro",
  5193. height: math.unit(4, "inches")
  5194. },
  5195. {
  5196. name: "Normal",
  5197. height: math.unit(5.75, "feet"),
  5198. default: true
  5199. },
  5200. {
  5201. name: "Tall",
  5202. height: math.unit(10, "feet")
  5203. },
  5204. {
  5205. name: "Big",
  5206. height: math.unit(20, "feet")
  5207. },
  5208. {
  5209. name: "Macro",
  5210. height: math.unit(50, "feet")
  5211. },
  5212. ]
  5213. ))
  5214. characterMakers.push(() => makeCharacter(
  5215. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5216. {
  5217. front: {
  5218. height: math.unit(6, "feet"),
  5219. weight: math.unit(170, "lbs"),
  5220. name: "Front",
  5221. image: {
  5222. source: "./media/characters/gin/front.svg",
  5223. extra: 1.053,
  5224. bottom: 0.025
  5225. }
  5226. },
  5227. foot: {
  5228. height: math.unit(6 / 4.25, "feet"),
  5229. name: "Foot",
  5230. image: {
  5231. source: "./media/characters/gin/foot.svg"
  5232. }
  5233. },
  5234. sole: {
  5235. height: math.unit(6 / 4.40, "feet"),
  5236. name: "Sole",
  5237. image: {
  5238. source: "./media/characters/gin/sole.svg"
  5239. }
  5240. },
  5241. },
  5242. [
  5243. {
  5244. name: "Normal",
  5245. height: math.unit(13 + 2 / 12, "feet")
  5246. },
  5247. {
  5248. name: "Macro",
  5249. height: math.unit(1500, "feet")
  5250. },
  5251. {
  5252. name: "Megamacro",
  5253. height: math.unit(200, "miles"),
  5254. default: true
  5255. },
  5256. {
  5257. name: "Gigamacro",
  5258. height: math.unit(500, "megameters")
  5259. },
  5260. {
  5261. name: "Teramacro",
  5262. height: math.unit(15, "lightyears")
  5263. }
  5264. ]
  5265. ))
  5266. characterMakers.push(() => makeCharacter(
  5267. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5268. {
  5269. front: {
  5270. height: math.unit(6 + 1 / 6, "feet"),
  5271. weight: math.unit(178, "lbs"),
  5272. name: "Front",
  5273. image: {
  5274. source: "./media/characters/guy/front.svg"
  5275. }
  5276. }
  5277. },
  5278. [
  5279. {
  5280. name: "Normal",
  5281. height: math.unit(6 + 1 / 6, "feet"),
  5282. default: true
  5283. },
  5284. {
  5285. name: "Large",
  5286. height: math.unit(25 + 7 / 12, "feet")
  5287. },
  5288. {
  5289. name: "Macro",
  5290. height: math.unit(60 + 9 / 12, "feet")
  5291. },
  5292. {
  5293. name: "Macro+",
  5294. height: math.unit(246, "feet")
  5295. },
  5296. {
  5297. name: "Macro++",
  5298. height: math.unit(878, "feet")
  5299. }
  5300. ]
  5301. ))
  5302. characterMakers.push(() => makeCharacter(
  5303. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5304. {
  5305. front: {
  5306. height: math.unit(9, "feet"),
  5307. weight: math.unit(800, "lbs"),
  5308. name: "Front",
  5309. image: {
  5310. source: "./media/characters/tiberius/front.svg",
  5311. extra: 2295 / 2071
  5312. }
  5313. },
  5314. back: {
  5315. height: math.unit(9, "feet"),
  5316. weight: math.unit(800, "lbs"),
  5317. name: "Back",
  5318. image: {
  5319. source: "./media/characters/tiberius/back.svg",
  5320. extra: 2373 / 2160
  5321. }
  5322. },
  5323. },
  5324. [
  5325. {
  5326. name: "Normal",
  5327. height: math.unit(9, "feet"),
  5328. default: true
  5329. }
  5330. ]
  5331. ))
  5332. characterMakers.push(() => makeCharacter(
  5333. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5334. {
  5335. front: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(600, "lbs"),
  5338. name: "Front",
  5339. image: {
  5340. source: "./media/characters/surgo/front.svg",
  5341. extra: 3591 / 2227
  5342. }
  5343. },
  5344. back: {
  5345. height: math.unit(6, "feet"),
  5346. weight: math.unit(600, "lbs"),
  5347. name: "Back",
  5348. image: {
  5349. source: "./media/characters/surgo/back.svg",
  5350. extra: 3557 / 2228
  5351. }
  5352. },
  5353. laying: {
  5354. height: math.unit(6 * 0.85, "feet"),
  5355. weight: math.unit(600, "lbs"),
  5356. name: "Laying",
  5357. image: {
  5358. source: "./media/characters/surgo/laying.svg"
  5359. }
  5360. },
  5361. },
  5362. [
  5363. {
  5364. name: "Normal",
  5365. height: math.unit(6, "feet"),
  5366. default: true
  5367. }
  5368. ]
  5369. ))
  5370. characterMakers.push(() => makeCharacter(
  5371. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5372. {
  5373. side: {
  5374. height: math.unit(6, "feet"),
  5375. weight: math.unit(150, "lbs"),
  5376. name: "Side",
  5377. image: {
  5378. source: "./media/characters/cibus/side.svg",
  5379. extra: 800 / 400
  5380. }
  5381. },
  5382. },
  5383. [
  5384. {
  5385. name: "Normal",
  5386. height: math.unit(6, "feet"),
  5387. default: true
  5388. }
  5389. ]
  5390. ))
  5391. characterMakers.push(() => makeCharacter(
  5392. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5393. {
  5394. front: {
  5395. height: math.unit(6, "feet"),
  5396. weight: math.unit(240, "lbs"),
  5397. name: "Front",
  5398. image: {
  5399. source: "./media/characters/nibbles/front.svg"
  5400. }
  5401. },
  5402. side: {
  5403. height: math.unit(6, "feet"),
  5404. weight: math.unit(240, "lbs"),
  5405. name: "Side",
  5406. image: {
  5407. source: "./media/characters/nibbles/side.svg"
  5408. }
  5409. },
  5410. },
  5411. [
  5412. {
  5413. name: "Normal",
  5414. height: math.unit(9, "feet"),
  5415. default: true
  5416. }
  5417. ]
  5418. ))
  5419. characterMakers.push(() => makeCharacter(
  5420. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5421. {
  5422. side: {
  5423. height: math.unit(5 + 1 / 6, "feet"),
  5424. weight: math.unit(130, "lbs"),
  5425. name: "Side",
  5426. image: {
  5427. source: "./media/characters/rikky/side.svg"
  5428. }
  5429. },
  5430. },
  5431. [
  5432. {
  5433. name: "Normal",
  5434. height: math.unit(5 + 1 / 6, "feet")
  5435. },
  5436. {
  5437. name: "Macro",
  5438. height: math.unit(152, "feet"),
  5439. default: true
  5440. },
  5441. {
  5442. name: "Megamacro",
  5443. height: math.unit(7, "miles")
  5444. }
  5445. ]
  5446. ))
  5447. characterMakers.push(() => makeCharacter(
  5448. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5449. {
  5450. side: {
  5451. height: math.unit(370, "cm"),
  5452. weight: math.unit(350, "lbs"),
  5453. name: "Side",
  5454. image: {
  5455. source: "./media/characters/malfressa/side.svg"
  5456. }
  5457. },
  5458. walking: {
  5459. height: math.unit(370, "cm"),
  5460. weight: math.unit(350, "lbs"),
  5461. name: "Walking",
  5462. image: {
  5463. source: "./media/characters/malfressa/walking.svg"
  5464. }
  5465. },
  5466. feral: {
  5467. height: math.unit(2500, "cm"),
  5468. weight: math.unit(100000, "lbs"),
  5469. name: "Feral",
  5470. image: {
  5471. source: "./media/characters/malfressa/feral.svg",
  5472. extra: 2108 / 837,
  5473. bottom: 0.02
  5474. }
  5475. },
  5476. },
  5477. [
  5478. {
  5479. name: "Normal",
  5480. height: math.unit(370, "cm")
  5481. },
  5482. {
  5483. name: "Macro",
  5484. height: math.unit(300, "meters"),
  5485. default: true
  5486. }
  5487. ]
  5488. ))
  5489. characterMakers.push(() => makeCharacter(
  5490. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5491. {
  5492. front: {
  5493. height: math.unit(6, "feet"),
  5494. weight: math.unit(60, "kg"),
  5495. name: "Front",
  5496. image: {
  5497. source: "./media/characters/jaro/front.svg"
  5498. }
  5499. },
  5500. back: {
  5501. height: math.unit(6, "feet"),
  5502. weight: math.unit(60, "kg"),
  5503. name: "Back",
  5504. image: {
  5505. source: "./media/characters/jaro/back.svg"
  5506. }
  5507. },
  5508. },
  5509. [
  5510. {
  5511. name: "Micro",
  5512. height: math.unit(7, "inches")
  5513. },
  5514. {
  5515. name: "Normal",
  5516. height: math.unit(5.5, "feet"),
  5517. default: true
  5518. },
  5519. {
  5520. name: "Minimacro",
  5521. height: math.unit(20, "feet")
  5522. },
  5523. {
  5524. name: "Macro",
  5525. height: math.unit(200, "meters")
  5526. }
  5527. ]
  5528. ))
  5529. characterMakers.push(() => makeCharacter(
  5530. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5531. {
  5532. front: {
  5533. height: math.unit(6, "feet"),
  5534. weight: math.unit(195, "lb"),
  5535. name: "Front",
  5536. image: {
  5537. source: "./media/characters/rogue/front.svg"
  5538. }
  5539. },
  5540. },
  5541. [
  5542. {
  5543. name: "Macro",
  5544. height: math.unit(90, "feet"),
  5545. default: true
  5546. },
  5547. ]
  5548. ))
  5549. characterMakers.push(() => makeCharacter(
  5550. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5551. {
  5552. front: {
  5553. height: math.unit(5 + 8 / 12, "feet"),
  5554. weight: math.unit(140, "lb"),
  5555. name: "Front",
  5556. image: {
  5557. source: "./media/characters/piper/front.svg",
  5558. extra: 3928 / 3681
  5559. }
  5560. },
  5561. },
  5562. [
  5563. {
  5564. name: "Micro",
  5565. height: math.unit(2, "inches")
  5566. },
  5567. {
  5568. name: "Normal",
  5569. height: math.unit(5 + 8 / 12, "feet")
  5570. },
  5571. {
  5572. name: "Macro",
  5573. height: math.unit(250, "feet"),
  5574. default: true
  5575. },
  5576. {
  5577. name: "Megamacro",
  5578. height: math.unit(7, "miles")
  5579. },
  5580. ]
  5581. ))
  5582. characterMakers.push(() => makeCharacter(
  5583. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5584. {
  5585. front: {
  5586. height: math.unit(6, "feet"),
  5587. weight: math.unit(220, "lb"),
  5588. name: "Front",
  5589. image: {
  5590. source: "./media/characters/gemini/front.svg"
  5591. }
  5592. },
  5593. back: {
  5594. height: math.unit(6, "feet"),
  5595. weight: math.unit(220, "lb"),
  5596. name: "Back",
  5597. image: {
  5598. source: "./media/characters/gemini/back.svg"
  5599. }
  5600. },
  5601. kneeling: {
  5602. height: math.unit(6 / 1.5, "feet"),
  5603. weight: math.unit(220, "lb"),
  5604. name: "Kneeling",
  5605. image: {
  5606. source: "./media/characters/gemini/kneeling.svg",
  5607. bottom: 0.02
  5608. }
  5609. },
  5610. },
  5611. [
  5612. {
  5613. name: "Macro",
  5614. height: math.unit(300, "meters"),
  5615. default: true
  5616. },
  5617. {
  5618. name: "Megamacro",
  5619. height: math.unit(6900, "meters")
  5620. },
  5621. ]
  5622. ))
  5623. characterMakers.push(() => makeCharacter(
  5624. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5625. {
  5626. anthro: {
  5627. height: math.unit(2.35, "meters"),
  5628. weight: math.unit(73, "kg"),
  5629. name: "Anthro",
  5630. image: {
  5631. source: "./media/characters/alicia/anthro.svg",
  5632. extra: 2571 / 2385,
  5633. bottom: 75 / 2648
  5634. }
  5635. },
  5636. paw: {
  5637. height: math.unit(1.32, "feet"),
  5638. name: "Paw",
  5639. image: {
  5640. source: "./media/characters/alicia/paw.svg"
  5641. }
  5642. },
  5643. feral: {
  5644. height: math.unit(1.69, "meters"),
  5645. weight: math.unit(73, "kg"),
  5646. name: "Feral",
  5647. image: {
  5648. source: "./media/characters/alicia/feral.svg",
  5649. extra: 2123 / 1715,
  5650. bottom: 222 / 2349
  5651. }
  5652. },
  5653. },
  5654. [
  5655. {
  5656. name: "Normal",
  5657. height: math.unit(2.35, "meters")
  5658. },
  5659. {
  5660. name: "Macro",
  5661. height: math.unit(60, "meters"),
  5662. default: true
  5663. },
  5664. {
  5665. name: "Megamacro",
  5666. height: math.unit(10000, "kilometers")
  5667. },
  5668. ]
  5669. ))
  5670. characterMakers.push(() => makeCharacter(
  5671. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5672. {
  5673. front: {
  5674. height: math.unit(7, "feet"),
  5675. weight: math.unit(250, "lbs"),
  5676. name: "Front",
  5677. image: {
  5678. source: "./media/characters/archy/front.svg"
  5679. }
  5680. }
  5681. },
  5682. [
  5683. {
  5684. name: "Micro",
  5685. height: math.unit(1, "inch")
  5686. },
  5687. {
  5688. name: "Shorty",
  5689. height: math.unit(5, "feet")
  5690. },
  5691. {
  5692. name: "Normal",
  5693. height: math.unit(7, "feet")
  5694. },
  5695. {
  5696. name: "Macro",
  5697. height: math.unit(600, "meters"),
  5698. default: true
  5699. },
  5700. {
  5701. name: "Megamacro",
  5702. height: math.unit(1, "mile")
  5703. },
  5704. ]
  5705. ))
  5706. characterMakers.push(() => makeCharacter(
  5707. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5708. {
  5709. front: {
  5710. height: math.unit(1.65, "meters"),
  5711. weight: math.unit(74, "kg"),
  5712. name: "Front",
  5713. image: {
  5714. source: "./media/characters/berri/front.svg",
  5715. extra: 857 / 837,
  5716. bottom: 18 / 877
  5717. }
  5718. },
  5719. bum: {
  5720. height: math.unit(1.46, "feet"),
  5721. name: "Bum",
  5722. image: {
  5723. source: "./media/characters/berri/bum.svg"
  5724. }
  5725. },
  5726. mouth: {
  5727. height: math.unit(0.44, "feet"),
  5728. name: "Mouth",
  5729. image: {
  5730. source: "./media/characters/berri/mouth.svg"
  5731. }
  5732. },
  5733. paw: {
  5734. height: math.unit(0.826, "feet"),
  5735. name: "Paw",
  5736. image: {
  5737. source: "./media/characters/berri/paw.svg"
  5738. }
  5739. },
  5740. },
  5741. [
  5742. {
  5743. name: "Normal",
  5744. height: math.unit(1.65, "meters")
  5745. },
  5746. {
  5747. name: "Macro",
  5748. height: math.unit(60, "m"),
  5749. default: true
  5750. },
  5751. {
  5752. name: "Megamacro",
  5753. height: math.unit(9.213, "km")
  5754. },
  5755. {
  5756. name: "Planet Eater",
  5757. height: math.unit(489, "megameters")
  5758. },
  5759. {
  5760. name: "Teramacro",
  5761. height: math.unit(2471635000000, "meters")
  5762. },
  5763. {
  5764. name: "Examacro",
  5765. height: math.unit(8.0624e+26, "meters")
  5766. }
  5767. ]
  5768. ))
  5769. characterMakers.push(() => makeCharacter(
  5770. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5771. {
  5772. front: {
  5773. height: math.unit(1.72, "meters"),
  5774. weight: math.unit(68, "kg"),
  5775. name: "Front",
  5776. image: {
  5777. source: "./media/characters/lexi/front.svg"
  5778. }
  5779. }
  5780. },
  5781. [
  5782. {
  5783. name: "Very Smol",
  5784. height: math.unit(10, "mm")
  5785. },
  5786. {
  5787. name: "Micro",
  5788. height: math.unit(6.8, "cm"),
  5789. default: true
  5790. },
  5791. {
  5792. name: "Normal",
  5793. height: math.unit(1.72, "m")
  5794. }
  5795. ]
  5796. ))
  5797. characterMakers.push(() => makeCharacter(
  5798. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5799. {
  5800. front: {
  5801. height: math.unit(1.69, "meters"),
  5802. weight: math.unit(68, "kg"),
  5803. name: "Front",
  5804. image: {
  5805. source: "./media/characters/martin/front.svg",
  5806. extra: 596 / 581
  5807. }
  5808. }
  5809. },
  5810. [
  5811. {
  5812. name: "Micro",
  5813. height: math.unit(6.85, "cm"),
  5814. default: true
  5815. },
  5816. {
  5817. name: "Normal",
  5818. height: math.unit(1.69, "m")
  5819. }
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5824. {
  5825. front: {
  5826. height: math.unit(1.69, "meters"),
  5827. weight: math.unit(68, "kg"),
  5828. name: "Front",
  5829. image: {
  5830. source: "./media/characters/juno/front.svg"
  5831. }
  5832. }
  5833. },
  5834. [
  5835. {
  5836. name: "Micro",
  5837. height: math.unit(7, "cm")
  5838. },
  5839. {
  5840. name: "Normal",
  5841. height: math.unit(1.89, "m")
  5842. },
  5843. {
  5844. name: "Macro",
  5845. height: math.unit(353, "meters"),
  5846. default: true
  5847. }
  5848. ]
  5849. ))
  5850. characterMakers.push(() => makeCharacter(
  5851. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5852. {
  5853. front: {
  5854. height: math.unit(1.93, "meters"),
  5855. weight: math.unit(83, "kg"),
  5856. name: "Front",
  5857. image: {
  5858. source: "./media/characters/samantha/front.svg"
  5859. }
  5860. },
  5861. frontClothed: {
  5862. height: math.unit(1.93, "meters"),
  5863. weight: math.unit(83, "kg"),
  5864. name: "Front (Clothed)",
  5865. image: {
  5866. source: "./media/characters/samantha/front-clothed.svg"
  5867. }
  5868. },
  5869. back: {
  5870. height: math.unit(1.93, "meters"),
  5871. weight: math.unit(83, "kg"),
  5872. name: "Back",
  5873. image: {
  5874. source: "./media/characters/samantha/back.svg"
  5875. }
  5876. },
  5877. },
  5878. [
  5879. {
  5880. name: "Normal",
  5881. height: math.unit(1.93, "m")
  5882. },
  5883. {
  5884. name: "Macro",
  5885. height: math.unit(74, "meters"),
  5886. default: true
  5887. },
  5888. {
  5889. name: "Macro+",
  5890. height: math.unit(223, "meters"),
  5891. },
  5892. {
  5893. name: "Megamacro",
  5894. height: math.unit(8381, "meters"),
  5895. },
  5896. {
  5897. name: "Megamacro+",
  5898. height: math.unit(12000, "kilometers")
  5899. },
  5900. ]
  5901. ))
  5902. characterMakers.push(() => makeCharacter(
  5903. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5904. {
  5905. front: {
  5906. height: math.unit(1.92, "meters"),
  5907. weight: math.unit(80, "kg"),
  5908. name: "Front",
  5909. image: {
  5910. source: "./media/characters/dr-clay/front.svg"
  5911. }
  5912. },
  5913. frontClothed: {
  5914. height: math.unit(1.92, "meters"),
  5915. weight: math.unit(80, "kg"),
  5916. name: "Front (Clothed)",
  5917. image: {
  5918. source: "./media/characters/dr-clay/front-clothed.svg"
  5919. }
  5920. }
  5921. },
  5922. [
  5923. {
  5924. name: "Normal",
  5925. height: math.unit(1.92, "m")
  5926. },
  5927. {
  5928. name: "Macro",
  5929. height: math.unit(214, "meters"),
  5930. default: true
  5931. },
  5932. {
  5933. name: "Macro+",
  5934. height: math.unit(12.237, "meters"),
  5935. },
  5936. {
  5937. name: "Megamacro",
  5938. height: math.unit(557, "megameters"),
  5939. },
  5940. {
  5941. name: "Unimaginable",
  5942. height: math.unit(120e9, "lightyears")
  5943. },
  5944. ]
  5945. ))
  5946. characterMakers.push(() => makeCharacter(
  5947. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5948. {
  5949. front: {
  5950. height: math.unit(2, "meters"),
  5951. weight: math.unit(80, "kg"),
  5952. name: "Front",
  5953. image: {
  5954. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5955. }
  5956. }
  5957. },
  5958. [
  5959. {
  5960. name: "Teramacro",
  5961. height: math.unit(500000, "lightyears"),
  5962. default: true
  5963. },
  5964. ]
  5965. ))
  5966. characterMakers.push(() => makeCharacter(
  5967. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5968. {
  5969. front: {
  5970. height: math.unit(2, "meters"),
  5971. weight: math.unit(150, "kg"),
  5972. name: "Front",
  5973. image: {
  5974. source: "./media/characters/vemus/front.svg",
  5975. extra: 2384 / 2084,
  5976. bottom: 0.0123
  5977. }
  5978. }
  5979. },
  5980. [
  5981. {
  5982. name: "Normal",
  5983. height: math.unit(3.75, "meters"),
  5984. default: true
  5985. },
  5986. {
  5987. name: "Big",
  5988. height: math.unit(8, "meters")
  5989. },
  5990. {
  5991. name: "Macro",
  5992. height: math.unit(100, "meters")
  5993. },
  5994. {
  5995. name: "Macro+",
  5996. height: math.unit(1500, "meters")
  5997. },
  5998. {
  5999. name: "Stellar",
  6000. height: math.unit(14e8, "meters")
  6001. },
  6002. ]
  6003. ))
  6004. characterMakers.push(() => makeCharacter(
  6005. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6006. {
  6007. front: {
  6008. height: math.unit(2, "meters"),
  6009. weight: math.unit(70, "kg"),
  6010. name: "Front",
  6011. image: {
  6012. source: "./media/characters/beherit/front.svg",
  6013. extra: 1408 / 1242
  6014. }
  6015. }
  6016. },
  6017. [
  6018. {
  6019. name: "Normal",
  6020. height: math.unit(6, "feet")
  6021. },
  6022. {
  6023. name: "Lorg",
  6024. height: math.unit(25, "feet"),
  6025. default: true
  6026. },
  6027. {
  6028. name: "Lorger",
  6029. height: math.unit(75, "feet")
  6030. },
  6031. {
  6032. name: "Macro",
  6033. height: math.unit(200, "meters")
  6034. },
  6035. ]
  6036. ))
  6037. characterMakers.push(() => makeCharacter(
  6038. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6039. {
  6040. front: {
  6041. height: math.unit(2, "meters"),
  6042. weight: math.unit(150, "kg"),
  6043. name: "Front",
  6044. image: {
  6045. source: "./media/characters/everett/front.svg",
  6046. extra: 2038 / 1737,
  6047. bottom: 0.03
  6048. }
  6049. },
  6050. paw: {
  6051. height: math.unit(2 / 3.6, "meters"),
  6052. name: "Paw",
  6053. image: {
  6054. source: "./media/characters/everett/paw.svg"
  6055. }
  6056. },
  6057. },
  6058. [
  6059. {
  6060. name: "Normal",
  6061. height: math.unit(15, "feet"),
  6062. default: true
  6063. },
  6064. {
  6065. name: "Lorg",
  6066. height: math.unit(70, "feet"),
  6067. default: true
  6068. },
  6069. {
  6070. name: "Lorger",
  6071. height: math.unit(250, "feet")
  6072. },
  6073. {
  6074. name: "Macro",
  6075. height: math.unit(500, "meters")
  6076. },
  6077. ]
  6078. ))
  6079. characterMakers.push(() => makeCharacter(
  6080. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6081. {
  6082. front: {
  6083. height: math.unit(2, "meters"),
  6084. weight: math.unit(86, "kg"),
  6085. name: "Front",
  6086. image: {
  6087. source: "./media/characters/rose-lion/front.svg"
  6088. }
  6089. },
  6090. bent: {
  6091. height: math.unit(2 / 1.4288, "meters"),
  6092. weight: math.unit(86, "kg"),
  6093. name: "Bent",
  6094. image: {
  6095. source: "./media/characters/rose-lion/bent.svg"
  6096. }
  6097. }
  6098. },
  6099. [
  6100. {
  6101. name: "Mini-Micro",
  6102. height: math.unit(1, "cm")
  6103. },
  6104. {
  6105. name: "Micro",
  6106. height: math.unit(3.5, "inches"),
  6107. default: true
  6108. },
  6109. {
  6110. name: "Normal",
  6111. height: math.unit(6 + 1 / 6, "feet")
  6112. },
  6113. {
  6114. name: "Mini-Macro",
  6115. height: math.unit(9 + 10 / 12, "feet")
  6116. },
  6117. ]
  6118. ))
  6119. characterMakers.push(() => makeCharacter(
  6120. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6121. {
  6122. front: {
  6123. height: math.unit(2, "meters"),
  6124. weight: math.unit(350, "lbs"),
  6125. name: "Front",
  6126. image: {
  6127. source: "./media/characters/regal/front.svg"
  6128. }
  6129. },
  6130. back: {
  6131. height: math.unit(2, "meters"),
  6132. weight: math.unit(350, "lbs"),
  6133. name: "Back",
  6134. image: {
  6135. source: "./media/characters/regal/back.svg"
  6136. }
  6137. },
  6138. },
  6139. [
  6140. {
  6141. name: "Macro",
  6142. height: math.unit(350, "feet"),
  6143. default: true
  6144. }
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6149. {
  6150. front: {
  6151. height: math.unit(4 + 11 / 12, "feet"),
  6152. weight: math.unit(100, "lbs"),
  6153. name: "Front",
  6154. image: {
  6155. source: "./media/characters/opal/front.svg"
  6156. }
  6157. },
  6158. frontAlt: {
  6159. height: math.unit(4 + 11 / 12, "feet"),
  6160. weight: math.unit(100, "lbs"),
  6161. name: "Front (Alt)",
  6162. image: {
  6163. source: "./media/characters/opal/front-alt.svg"
  6164. }
  6165. },
  6166. },
  6167. [
  6168. {
  6169. name: "Small",
  6170. height: math.unit(4 + 11 / 12, "feet")
  6171. },
  6172. {
  6173. name: "Normal",
  6174. height: math.unit(20, "feet"),
  6175. default: true
  6176. },
  6177. {
  6178. name: "Macro",
  6179. height: math.unit(120, "feet")
  6180. },
  6181. {
  6182. name: "Megamacro",
  6183. height: math.unit(80, "miles")
  6184. },
  6185. {
  6186. name: "True Size",
  6187. height: math.unit(100000, "lightyears")
  6188. },
  6189. ]
  6190. ))
  6191. characterMakers.push(() => makeCharacter(
  6192. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6193. {
  6194. front: {
  6195. height: math.unit(6, "feet"),
  6196. weight: math.unit(200, "lbs"),
  6197. name: "Front",
  6198. image: {
  6199. source: "./media/characters/vector-wuff/front.svg"
  6200. }
  6201. }
  6202. },
  6203. [
  6204. {
  6205. name: "Normal",
  6206. height: math.unit(2.8, "meters")
  6207. },
  6208. {
  6209. name: "Macro",
  6210. height: math.unit(450, "meters"),
  6211. default: true
  6212. },
  6213. {
  6214. name: "Megamacro",
  6215. height: math.unit(15, "kilometers")
  6216. }
  6217. ]
  6218. ))
  6219. characterMakers.push(() => makeCharacter(
  6220. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6221. {
  6222. front: {
  6223. height: math.unit(6, "feet"),
  6224. weight: math.unit(256, "lbs"),
  6225. name: "Front",
  6226. image: {
  6227. source: "./media/characters/dannik/front.svg"
  6228. }
  6229. }
  6230. },
  6231. [
  6232. {
  6233. name: "Macro",
  6234. height: math.unit(69.57, "meters"),
  6235. default: true
  6236. },
  6237. ]
  6238. ))
  6239. characterMakers.push(() => makeCharacter(
  6240. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6241. {
  6242. front: {
  6243. height: math.unit(6, "feet"),
  6244. weight: math.unit(120, "lbs"),
  6245. name: "Front",
  6246. image: {
  6247. source: "./media/characters/azura-saharah/front.svg"
  6248. }
  6249. },
  6250. back: {
  6251. height: math.unit(6, "feet"),
  6252. weight: math.unit(120, "lbs"),
  6253. name: "Back",
  6254. image: {
  6255. source: "./media/characters/azura-saharah/back.svg"
  6256. }
  6257. },
  6258. },
  6259. [
  6260. {
  6261. name: "Macro",
  6262. height: math.unit(100, "feet"),
  6263. default: true
  6264. },
  6265. ]
  6266. ))
  6267. characterMakers.push(() => makeCharacter(
  6268. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6269. {
  6270. side: {
  6271. height: math.unit(5 + 4 / 12, "feet"),
  6272. weight: math.unit(163, "lbs"),
  6273. name: "Side",
  6274. image: {
  6275. source: "./media/characters/kennedy/side.svg"
  6276. }
  6277. }
  6278. },
  6279. [
  6280. {
  6281. name: "Standard Doggo",
  6282. height: math.unit(5 + 4 / 12, "feet")
  6283. },
  6284. {
  6285. name: "Big Doggo",
  6286. height: math.unit(25 + 3 / 12, "feet"),
  6287. default: true
  6288. },
  6289. ]
  6290. ))
  6291. characterMakers.push(() => makeCharacter(
  6292. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6293. {
  6294. front: {
  6295. height: math.unit(6, "feet"),
  6296. weight: math.unit(90, "lbs"),
  6297. name: "Front",
  6298. image: {
  6299. source: "./media/characters/odi-lunar/front.svg"
  6300. }
  6301. }
  6302. },
  6303. [
  6304. {
  6305. name: "Micro",
  6306. height: math.unit(3, "inches"),
  6307. default: true
  6308. },
  6309. {
  6310. name: "Normal",
  6311. height: math.unit(5.5, "feet")
  6312. }
  6313. ]
  6314. ))
  6315. characterMakers.push(() => makeCharacter(
  6316. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6317. {
  6318. back: {
  6319. height: math.unit(6, "feet"),
  6320. weight: math.unit(220, "lbs"),
  6321. name: "Back",
  6322. image: {
  6323. source: "./media/characters/mandake/back.svg"
  6324. }
  6325. }
  6326. },
  6327. [
  6328. {
  6329. name: "Normal",
  6330. height: math.unit(7, "feet"),
  6331. default: true
  6332. },
  6333. {
  6334. name: "Macro",
  6335. height: math.unit(78, "feet")
  6336. },
  6337. {
  6338. name: "Macro+",
  6339. height: math.unit(300, "meters")
  6340. },
  6341. {
  6342. name: "Macro++",
  6343. height: math.unit(2400, "feet")
  6344. },
  6345. {
  6346. name: "Megamacro",
  6347. height: math.unit(5167, "meters")
  6348. },
  6349. {
  6350. name: "Gigamacro",
  6351. height: math.unit(41769, "miles")
  6352. },
  6353. ]
  6354. ))
  6355. characterMakers.push(() => makeCharacter(
  6356. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6357. {
  6358. front: {
  6359. height: math.unit(6, "feet"),
  6360. weight: math.unit(120, "lbs"),
  6361. name: "Front",
  6362. image: {
  6363. source: "./media/characters/yozey/front.svg"
  6364. }
  6365. },
  6366. frontAlt: {
  6367. height: math.unit(6, "feet"),
  6368. weight: math.unit(120, "lbs"),
  6369. name: "Front (Alt)",
  6370. image: {
  6371. source: "./media/characters/yozey/front-alt.svg"
  6372. }
  6373. },
  6374. side: {
  6375. height: math.unit(6, "feet"),
  6376. weight: math.unit(120, "lbs"),
  6377. name: "Side",
  6378. image: {
  6379. source: "./media/characters/yozey/side.svg"
  6380. }
  6381. },
  6382. },
  6383. [
  6384. {
  6385. name: "Micro",
  6386. height: math.unit(3, "inches"),
  6387. default: true
  6388. },
  6389. {
  6390. name: "Normal",
  6391. height: math.unit(6, "feet")
  6392. }
  6393. ]
  6394. ))
  6395. characterMakers.push(() => makeCharacter(
  6396. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6397. {
  6398. front: {
  6399. height: math.unit(6, "feet"),
  6400. weight: math.unit(103, "lbs"),
  6401. name: "Front",
  6402. image: {
  6403. source: "./media/characters/valeska-voss/front.svg"
  6404. }
  6405. }
  6406. },
  6407. [
  6408. {
  6409. name: "Mini-Sized Sub",
  6410. height: math.unit(3.1, "inches")
  6411. },
  6412. {
  6413. name: "Mid-Sized Sub",
  6414. height: math.unit(6.2, "inches")
  6415. },
  6416. {
  6417. name: "Full-Sized Sub",
  6418. height: math.unit(9.3, "inches")
  6419. },
  6420. {
  6421. name: "Normal",
  6422. height: math.unit(5 + 2 / 12, "foot"),
  6423. default: true
  6424. },
  6425. ]
  6426. ))
  6427. characterMakers.push(() => makeCharacter(
  6428. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6429. {
  6430. front: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(160, "lbs"),
  6433. name: "Front",
  6434. image: {
  6435. source: "./media/characters/gene-zeta/front.svg",
  6436. bottom: 0.03,
  6437. extra: 1
  6438. }
  6439. }
  6440. },
  6441. [
  6442. {
  6443. name: "Normal",
  6444. height: math.unit(6.25, "foot"),
  6445. default: true
  6446. },
  6447. ]
  6448. ))
  6449. characterMakers.push(() => makeCharacter(
  6450. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6451. {
  6452. front: {
  6453. height: math.unit(6, "feet"),
  6454. weight: math.unit(350, "lbs"),
  6455. name: "Front",
  6456. image: {
  6457. source: "./media/characters/razinox/front.svg",
  6458. extra: 1686 / 1548,
  6459. bottom: 28.2 / 1868
  6460. }
  6461. },
  6462. back: {
  6463. height: math.unit(6, "feet"),
  6464. weight: math.unit(350, "lbs"),
  6465. name: "Back",
  6466. image: {
  6467. source: "./media/characters/razinox/back.svg",
  6468. extra: 1660 / 1590,
  6469. bottom: 15 / 1665
  6470. }
  6471. },
  6472. },
  6473. [
  6474. {
  6475. name: "Normal",
  6476. height: math.unit(10 + 8 / 12, "foot")
  6477. },
  6478. {
  6479. name: "Minimacro",
  6480. height: math.unit(15, "foot")
  6481. },
  6482. {
  6483. name: "Macro",
  6484. height: math.unit(60, "foot"),
  6485. default: true
  6486. },
  6487. {
  6488. name: "Megamacro",
  6489. height: math.unit(5, "miles")
  6490. },
  6491. {
  6492. name: "Gigamacro",
  6493. height: math.unit(6000, "miles")
  6494. },
  6495. ]
  6496. ))
  6497. characterMakers.push(() => makeCharacter(
  6498. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6499. {
  6500. front: {
  6501. height: math.unit(6, "feet"),
  6502. weight: math.unit(150, "lbs"),
  6503. name: "Front",
  6504. image: {
  6505. source: "./media/characters/cobalt/front.svg"
  6506. }
  6507. }
  6508. },
  6509. [
  6510. {
  6511. name: "Normal",
  6512. height: math.unit(8 + 1 / 12, "foot")
  6513. },
  6514. {
  6515. name: "Macro",
  6516. height: math.unit(111, "foot"),
  6517. default: true
  6518. },
  6519. {
  6520. name: "Supracosmic",
  6521. height: math.unit(1e42, "feet")
  6522. },
  6523. ]
  6524. ))
  6525. characterMakers.push(() => makeCharacter(
  6526. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6527. {
  6528. front: {
  6529. height: math.unit(6, "feet"),
  6530. weight: math.unit(140, "lbs"),
  6531. name: "Front",
  6532. image: {
  6533. source: "./media/characters/amanda/front.svg"
  6534. }
  6535. }
  6536. },
  6537. [
  6538. {
  6539. name: "Micro",
  6540. height: math.unit(5, "inches"),
  6541. default: true
  6542. },
  6543. ]
  6544. ))
  6545. characterMakers.push(() => makeCharacter(
  6546. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6547. {
  6548. front: {
  6549. height: math.unit(5.59, "feet"),
  6550. weight: math.unit(250, "lbs"),
  6551. name: "Front",
  6552. image: {
  6553. source: "./media/characters/teal/front.svg"
  6554. }
  6555. },
  6556. frontAlt: {
  6557. height: math.unit(6, "feet"),
  6558. weight: math.unit(250, "lbs"),
  6559. name: "Front (Alt)",
  6560. image: {
  6561. source: "./media/characters/teal/front-alt.svg",
  6562. bottom: 0.04,
  6563. extra: 1
  6564. }
  6565. },
  6566. },
  6567. [
  6568. {
  6569. name: "Normal",
  6570. height: math.unit(12, "feet"),
  6571. default: true
  6572. },
  6573. {
  6574. name: "Macro",
  6575. height: math.unit(300, "feet")
  6576. },
  6577. ]
  6578. ))
  6579. characterMakers.push(() => makeCharacter(
  6580. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6581. {
  6582. frontCat: {
  6583. height: math.unit(6, "feet"),
  6584. weight: math.unit(180, "lbs"),
  6585. name: "Front (Cat)",
  6586. image: {
  6587. source: "./media/characters/ravin-amulet/front-cat.svg"
  6588. }
  6589. },
  6590. frontCatAlt: {
  6591. height: math.unit(6, "feet"),
  6592. weight: math.unit(180, "lbs"),
  6593. name: "Front (Alt, Cat)",
  6594. image: {
  6595. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6596. }
  6597. },
  6598. frontWerewolf: {
  6599. height: math.unit(6 * 1.2, "feet"),
  6600. weight: math.unit(225, "lbs"),
  6601. name: "Front (Werewolf)",
  6602. image: {
  6603. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6604. }
  6605. },
  6606. backWerewolf: {
  6607. height: math.unit(6 * 1.2, "feet"),
  6608. weight: math.unit(225, "lbs"),
  6609. name: "Back (Werewolf)",
  6610. image: {
  6611. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6612. }
  6613. },
  6614. },
  6615. [
  6616. {
  6617. name: "Nano",
  6618. height: math.unit(1, "micrometer")
  6619. },
  6620. {
  6621. name: "Micro",
  6622. height: math.unit(1, "inch")
  6623. },
  6624. {
  6625. name: "Normal",
  6626. height: math.unit(6, "feet"),
  6627. default: true
  6628. },
  6629. {
  6630. name: "Macro",
  6631. height: math.unit(60, "feet")
  6632. }
  6633. ]
  6634. ))
  6635. characterMakers.push(() => makeCharacter(
  6636. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6637. {
  6638. front: {
  6639. height: math.unit(6, "feet"),
  6640. weight: math.unit(165, "lbs"),
  6641. name: "Front",
  6642. image: {
  6643. source: "./media/characters/fluoresce/front.svg"
  6644. }
  6645. }
  6646. },
  6647. [
  6648. {
  6649. name: "Micro",
  6650. height: math.unit(6, "cm")
  6651. },
  6652. {
  6653. name: "Normal",
  6654. height: math.unit(5 + 7 / 12, "feet"),
  6655. default: true
  6656. },
  6657. {
  6658. name: "Macro",
  6659. height: math.unit(56, "feet")
  6660. },
  6661. {
  6662. name: "Megamacro",
  6663. height: math.unit(1.9, "miles")
  6664. },
  6665. ]
  6666. ))
  6667. characterMakers.push(() => makeCharacter(
  6668. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6669. {
  6670. front: {
  6671. height: math.unit(9 + 6 / 12, "feet"),
  6672. weight: math.unit(523, "lbs"),
  6673. name: "Side",
  6674. image: {
  6675. source: "./media/characters/aurora/side.svg"
  6676. }
  6677. }
  6678. },
  6679. [
  6680. {
  6681. name: "Normal",
  6682. height: math.unit(9 + 6 / 12, "feet")
  6683. },
  6684. {
  6685. name: "Macro",
  6686. height: math.unit(96, "feet"),
  6687. default: true
  6688. },
  6689. {
  6690. name: "Macro+",
  6691. height: math.unit(243, "feet")
  6692. },
  6693. ]
  6694. ))
  6695. characterMakers.push(() => makeCharacter(
  6696. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6697. {
  6698. front: {
  6699. height: math.unit(194, "cm"),
  6700. weight: math.unit(90, "kg"),
  6701. name: "Front",
  6702. image: {
  6703. source: "./media/characters/ranek/front.svg"
  6704. }
  6705. },
  6706. side: {
  6707. height: math.unit(194, "cm"),
  6708. weight: math.unit(90, "kg"),
  6709. name: "Side",
  6710. image: {
  6711. source: "./media/characters/ranek/side.svg"
  6712. }
  6713. },
  6714. back: {
  6715. height: math.unit(194, "cm"),
  6716. weight: math.unit(90, "kg"),
  6717. name: "Back",
  6718. image: {
  6719. source: "./media/characters/ranek/back.svg"
  6720. }
  6721. },
  6722. feral: {
  6723. height: math.unit(30, "cm"),
  6724. weight: math.unit(1.6, "lbs"),
  6725. name: "Feral",
  6726. image: {
  6727. source: "./media/characters/ranek/feral.svg"
  6728. }
  6729. },
  6730. },
  6731. [
  6732. {
  6733. name: "Normal",
  6734. height: math.unit(194, "cm"),
  6735. default: true
  6736. },
  6737. {
  6738. name: "Macro",
  6739. height: math.unit(100, "meters")
  6740. },
  6741. ]
  6742. ))
  6743. characterMakers.push(() => makeCharacter(
  6744. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6745. {
  6746. front: {
  6747. height: math.unit(5 + 6 / 12, "feet"),
  6748. weight: math.unit(153, "lbs"),
  6749. name: "Front",
  6750. image: {
  6751. source: "./media/characters/andrew-cooper/front.svg"
  6752. }
  6753. },
  6754. },
  6755. [
  6756. {
  6757. name: "Nano",
  6758. height: math.unit(1, "mm")
  6759. },
  6760. {
  6761. name: "Micro",
  6762. height: math.unit(2, "inches")
  6763. },
  6764. {
  6765. name: "Normal",
  6766. height: math.unit(5 + 6 / 12, "feet"),
  6767. default: true
  6768. }
  6769. ]
  6770. ))
  6771. characterMakers.push(() => makeCharacter(
  6772. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6773. {
  6774. front: {
  6775. height: math.unit(6, "feet"),
  6776. weight: math.unit(180, "lbs"),
  6777. name: "Front",
  6778. image: {
  6779. source: "./media/characters/akane-sato/front.svg",
  6780. extra: 1219 / 1140
  6781. }
  6782. },
  6783. back: {
  6784. height: math.unit(6, "feet"),
  6785. weight: math.unit(180, "lbs"),
  6786. name: "Back",
  6787. image: {
  6788. source: "./media/characters/akane-sato/back.svg",
  6789. extra: 1219 / 1170
  6790. }
  6791. },
  6792. },
  6793. [
  6794. {
  6795. name: "Normal",
  6796. height: math.unit(2.5, "meters")
  6797. },
  6798. {
  6799. name: "Macro",
  6800. height: math.unit(250, "meters"),
  6801. default: true
  6802. },
  6803. {
  6804. name: "Megamacro",
  6805. height: math.unit(25, "km")
  6806. },
  6807. ]
  6808. ))
  6809. characterMakers.push(() => makeCharacter(
  6810. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6811. {
  6812. front: {
  6813. height: math.unit(6, "feet"),
  6814. weight: math.unit(65, "kg"),
  6815. name: "Front",
  6816. image: {
  6817. source: "./media/characters/rook/front.svg",
  6818. extra: 960 / 950
  6819. }
  6820. }
  6821. },
  6822. [
  6823. {
  6824. name: "Normal",
  6825. height: math.unit(8.8, "feet")
  6826. },
  6827. {
  6828. name: "Macro",
  6829. height: math.unit(88, "feet"),
  6830. default: true
  6831. },
  6832. {
  6833. name: "Megamacro",
  6834. height: math.unit(8, "miles")
  6835. },
  6836. ]
  6837. ))
  6838. characterMakers.push(() => makeCharacter(
  6839. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6840. {
  6841. front: {
  6842. height: math.unit(12 + 2 / 12, "feet"),
  6843. weight: math.unit(808, "lbs"),
  6844. name: "Front",
  6845. image: {
  6846. source: "./media/characters/prodigy/front.svg"
  6847. }
  6848. }
  6849. },
  6850. [
  6851. {
  6852. name: "Normal",
  6853. height: math.unit(12 + 2 / 12, "feet"),
  6854. default: true
  6855. },
  6856. {
  6857. name: "Macro",
  6858. height: math.unit(143, "feet")
  6859. },
  6860. {
  6861. name: "Macro+",
  6862. height: math.unit(400, "feet")
  6863. },
  6864. ]
  6865. ))
  6866. characterMakers.push(() => makeCharacter(
  6867. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6868. {
  6869. front: {
  6870. height: math.unit(6, "feet"),
  6871. weight: math.unit(225, "lbs"),
  6872. name: "Front",
  6873. image: {
  6874. source: "./media/characters/daniel/front.svg"
  6875. }
  6876. },
  6877. leaning: {
  6878. height: math.unit(6, "feet"),
  6879. weight: math.unit(225, "lbs"),
  6880. name: "Leaning",
  6881. image: {
  6882. source: "./media/characters/daniel/leaning.svg"
  6883. }
  6884. },
  6885. },
  6886. [
  6887. {
  6888. name: "Macro",
  6889. height: math.unit(1000, "feet"),
  6890. default: true
  6891. },
  6892. ]
  6893. ))
  6894. characterMakers.push(() => makeCharacter(
  6895. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6896. {
  6897. front: {
  6898. height: math.unit(6, "feet"),
  6899. weight: math.unit(88, "lbs"),
  6900. name: "Front",
  6901. image: {
  6902. source: "./media/characters/chiros/front.svg",
  6903. extra: 306 / 226
  6904. }
  6905. },
  6906. side: {
  6907. height: math.unit(6, "feet"),
  6908. weight: math.unit(88, "lbs"),
  6909. name: "Side",
  6910. image: {
  6911. source: "./media/characters/chiros/side.svg",
  6912. extra: 306 / 226
  6913. }
  6914. },
  6915. },
  6916. [
  6917. {
  6918. name: "Normal",
  6919. height: math.unit(6, "cm"),
  6920. default: true
  6921. },
  6922. ]
  6923. ))
  6924. characterMakers.push(() => makeCharacter(
  6925. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6926. {
  6927. front: {
  6928. height: math.unit(6, "feet"),
  6929. weight: math.unit(100, "lbs"),
  6930. name: "Front",
  6931. image: {
  6932. source: "./media/characters/selka/front.svg",
  6933. extra: 947 / 887
  6934. }
  6935. }
  6936. },
  6937. [
  6938. {
  6939. name: "Normal",
  6940. height: math.unit(5, "cm"),
  6941. default: true
  6942. },
  6943. ]
  6944. ))
  6945. characterMakers.push(() => makeCharacter(
  6946. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6947. {
  6948. front: {
  6949. height: math.unit(8 + 3 / 12, "feet"),
  6950. weight: math.unit(424, "lbs"),
  6951. name: "Front",
  6952. image: {
  6953. source: "./media/characters/verin/front.svg",
  6954. extra: 1845 / 1550
  6955. }
  6956. },
  6957. frontArmored: {
  6958. height: math.unit(8 + 3 / 12, "feet"),
  6959. weight: math.unit(424, "lbs"),
  6960. name: "Front (Armored)",
  6961. image: {
  6962. source: "./media/characters/verin/front-armor.svg",
  6963. extra: 1845 / 1550,
  6964. bottom: 0.01
  6965. }
  6966. },
  6967. back: {
  6968. height: math.unit(8 + 3 / 12, "feet"),
  6969. weight: math.unit(424, "lbs"),
  6970. name: "Back",
  6971. image: {
  6972. source: "./media/characters/verin/back.svg",
  6973. bottom: 0.1,
  6974. extra: 1
  6975. }
  6976. },
  6977. foot: {
  6978. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6979. name: "Foot",
  6980. image: {
  6981. source: "./media/characters/verin/foot.svg"
  6982. }
  6983. },
  6984. },
  6985. [
  6986. {
  6987. name: "Normal",
  6988. height: math.unit(8 + 3 / 12, "feet")
  6989. },
  6990. {
  6991. name: "Minimacro",
  6992. height: math.unit(21, "feet"),
  6993. default: true
  6994. },
  6995. {
  6996. name: "Macro",
  6997. height: math.unit(626, "feet")
  6998. },
  6999. ]
  7000. ))
  7001. characterMakers.push(() => makeCharacter(
  7002. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7003. {
  7004. front: {
  7005. height: math.unit(2.718, "meters"),
  7006. weight: math.unit(150, "lbs"),
  7007. name: "Front",
  7008. image: {
  7009. source: "./media/characters/sovrim-terraquian/front.svg"
  7010. }
  7011. },
  7012. back: {
  7013. height: math.unit(2.718, "meters"),
  7014. weight: math.unit(150, "lbs"),
  7015. name: "Back",
  7016. image: {
  7017. source: "./media/characters/sovrim-terraquian/back.svg"
  7018. }
  7019. }
  7020. },
  7021. [
  7022. {
  7023. name: "Micro",
  7024. height: math.unit(2, "inches")
  7025. },
  7026. {
  7027. name: "Small",
  7028. height: math.unit(1, "meter")
  7029. },
  7030. {
  7031. name: "Normal",
  7032. height: math.unit(Math.E, "meters"),
  7033. default: true
  7034. },
  7035. {
  7036. name: "Macro",
  7037. height: math.unit(20, "meters")
  7038. },
  7039. {
  7040. name: "Macro+",
  7041. height: math.unit(400, "meters")
  7042. },
  7043. ]
  7044. ))
  7045. characterMakers.push(() => makeCharacter(
  7046. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7047. {
  7048. front: {
  7049. height: math.unit(7, "feet"),
  7050. weight: math.unit(489, "lbs"),
  7051. name: "Front",
  7052. image: {
  7053. source: "./media/characters/reece-silvermane/front.svg",
  7054. bottom: 0.02,
  7055. extra: 1
  7056. }
  7057. },
  7058. },
  7059. [
  7060. {
  7061. name: "Macro",
  7062. height: math.unit(1.5, "miles"),
  7063. default: true
  7064. },
  7065. ]
  7066. ))
  7067. characterMakers.push(() => makeCharacter(
  7068. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7069. {
  7070. front: {
  7071. height: math.unit(6, "feet"),
  7072. weight: math.unit(78, "kg"),
  7073. name: "Front",
  7074. image: {
  7075. source: "./media/characters/kane/front.svg",
  7076. extra: 978 / 899
  7077. }
  7078. },
  7079. },
  7080. [
  7081. {
  7082. name: "Normal",
  7083. height: math.unit(2.1, "m"),
  7084. },
  7085. {
  7086. name: "Macro",
  7087. height: math.unit(1, "km"),
  7088. default: true
  7089. },
  7090. ]
  7091. ))
  7092. characterMakers.push(() => makeCharacter(
  7093. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7094. {
  7095. front: {
  7096. height: math.unit(6, "feet"),
  7097. weight: math.unit(200, "kg"),
  7098. name: "Front",
  7099. image: {
  7100. source: "./media/characters/tegon/front.svg",
  7101. bottom: 0.01,
  7102. extra: 1
  7103. }
  7104. },
  7105. },
  7106. [
  7107. {
  7108. name: "Micro",
  7109. height: math.unit(1, "inch")
  7110. },
  7111. {
  7112. name: "Normal",
  7113. height: math.unit(6 + 3 / 12, "feet"),
  7114. default: true
  7115. },
  7116. {
  7117. name: "Macro",
  7118. height: math.unit(300, "feet")
  7119. },
  7120. {
  7121. name: "Megamacro",
  7122. height: math.unit(69, "miles")
  7123. },
  7124. ]
  7125. ))
  7126. characterMakers.push(() => makeCharacter(
  7127. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7128. {
  7129. side: {
  7130. height: math.unit(6, "feet"),
  7131. weight: math.unit(2304, "lbs"),
  7132. name: "Side",
  7133. image: {
  7134. source: "./media/characters/arcturax/side.svg",
  7135. extra: 790 / 376,
  7136. bottom: 0.01
  7137. }
  7138. },
  7139. },
  7140. [
  7141. {
  7142. name: "Micro",
  7143. height: math.unit(2, "inch")
  7144. },
  7145. {
  7146. name: "Normal",
  7147. height: math.unit(6, "feet")
  7148. },
  7149. {
  7150. name: "Macro",
  7151. height: math.unit(39, "feet"),
  7152. default: true
  7153. },
  7154. {
  7155. name: "Megamacro",
  7156. height: math.unit(7, "miles")
  7157. },
  7158. ]
  7159. ))
  7160. characterMakers.push(() => makeCharacter(
  7161. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7162. {
  7163. front: {
  7164. height: math.unit(6, "feet"),
  7165. weight: math.unit(50, "lbs"),
  7166. name: "Front",
  7167. image: {
  7168. source: "./media/characters/sentri/front.svg",
  7169. extra: 1750 / 1570,
  7170. bottom: 0.025
  7171. }
  7172. },
  7173. frontAlt: {
  7174. height: math.unit(6, "feet"),
  7175. weight: math.unit(50, "lbs"),
  7176. name: "Front (Alt)",
  7177. image: {
  7178. source: "./media/characters/sentri/front-alt.svg",
  7179. extra: 1750 / 1570,
  7180. bottom: 0.025
  7181. }
  7182. },
  7183. },
  7184. [
  7185. {
  7186. name: "Normal",
  7187. height: math.unit(15, "feet"),
  7188. default: true
  7189. },
  7190. {
  7191. name: "Macro",
  7192. height: math.unit(2500, "feet")
  7193. }
  7194. ]
  7195. ))
  7196. characterMakers.push(() => makeCharacter(
  7197. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7198. {
  7199. front: {
  7200. height: math.unit(5 + 8 / 12, "feet"),
  7201. weight: math.unit(130, "lbs"),
  7202. name: "Front",
  7203. image: {
  7204. source: "./media/characters/corvin/front.svg",
  7205. extra: 1803 / 1629
  7206. }
  7207. },
  7208. frontShirt: {
  7209. height: math.unit(5 + 8 / 12, "feet"),
  7210. weight: math.unit(130, "lbs"),
  7211. name: "Front (Shirt)",
  7212. image: {
  7213. source: "./media/characters/corvin/front-shirt.svg",
  7214. extra: 1803 / 1629
  7215. }
  7216. },
  7217. frontPoncho: {
  7218. height: math.unit(5 + 8 / 12, "feet"),
  7219. weight: math.unit(130, "lbs"),
  7220. name: "Front (Poncho)",
  7221. image: {
  7222. source: "./media/characters/corvin/front-poncho.svg",
  7223. extra: 1803 / 1629
  7224. }
  7225. },
  7226. side: {
  7227. height: math.unit(5 + 8 / 12, "feet"),
  7228. weight: math.unit(130, "lbs"),
  7229. name: "Side",
  7230. image: {
  7231. source: "./media/characters/corvin/side.svg",
  7232. extra: 1012 / 945
  7233. }
  7234. },
  7235. back: {
  7236. height: math.unit(5 + 8 / 12, "feet"),
  7237. weight: math.unit(130, "lbs"),
  7238. name: "Back",
  7239. image: {
  7240. source: "./media/characters/corvin/back.svg",
  7241. extra: 1803 / 1629
  7242. }
  7243. },
  7244. },
  7245. [
  7246. {
  7247. name: "Micro",
  7248. height: math.unit(3, "inches")
  7249. },
  7250. {
  7251. name: "Normal",
  7252. height: math.unit(5 + 8 / 12, "feet")
  7253. },
  7254. {
  7255. name: "Macro",
  7256. height: math.unit(300, "feet"),
  7257. default: true
  7258. },
  7259. {
  7260. name: "Megamacro",
  7261. height: math.unit(500, "miles")
  7262. }
  7263. ]
  7264. ))
  7265. characterMakers.push(() => makeCharacter(
  7266. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7267. {
  7268. front: {
  7269. height: math.unit(6, "feet"),
  7270. weight: math.unit(135, "lbs"),
  7271. name: "Front",
  7272. image: {
  7273. source: "./media/characters/q/front.svg",
  7274. extra: 854 / 752,
  7275. bottom: 0.005
  7276. }
  7277. },
  7278. back: {
  7279. height: math.unit(6, "feet"),
  7280. weight: math.unit(130, "lbs"),
  7281. name: "Back",
  7282. image: {
  7283. source: "./media/characters/q/back.svg",
  7284. extra: 854 / 752
  7285. }
  7286. },
  7287. },
  7288. [
  7289. {
  7290. name: "Macro",
  7291. height: math.unit(90, "feet"),
  7292. default: true
  7293. },
  7294. {
  7295. name: "Extra Macro",
  7296. height: math.unit(300, "feet"),
  7297. },
  7298. {
  7299. name: "BIG WALF",
  7300. height: math.unit(750, "feet"),
  7301. },
  7302. ]
  7303. ))
  7304. characterMakers.push(() => makeCharacter(
  7305. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7306. {
  7307. front: {
  7308. height: math.unit(6, "feet"),
  7309. weight: math.unit(150, "lbs"),
  7310. name: "Front",
  7311. image: {
  7312. source: "./media/characters/carley/front.svg",
  7313. extra: 3927 / 3540,
  7314. bottom: 0.03
  7315. }
  7316. }
  7317. },
  7318. [
  7319. {
  7320. name: "Normal",
  7321. height: math.unit(6 + 3 / 12, "feet")
  7322. },
  7323. {
  7324. name: "Macro",
  7325. height: math.unit(185, "feet"),
  7326. default: true
  7327. },
  7328. {
  7329. name: "Megamacro",
  7330. height: math.unit(8, "miles"),
  7331. },
  7332. ]
  7333. ))
  7334. characterMakers.push(() => makeCharacter(
  7335. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7336. {
  7337. front: {
  7338. height: math.unit(3, "feet"),
  7339. weight: math.unit(28, "lbs"),
  7340. name: "Front",
  7341. image: {
  7342. source: "./media/characters/citrine/front.svg"
  7343. }
  7344. }
  7345. },
  7346. [
  7347. {
  7348. name: "Normal",
  7349. height: math.unit(3, "feet"),
  7350. default: true
  7351. }
  7352. ]
  7353. ))
  7354. characterMakers.push(() => makeCharacter(
  7355. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7356. {
  7357. front: {
  7358. height: math.unit(14, "feet"),
  7359. weight: math.unit(1450, "kg"),
  7360. capacity: math.unit(15, "people"),
  7361. name: "Front",
  7362. image: {
  7363. source: "./media/characters/aura-starwind/front.svg",
  7364. extra: 1455 / 1335
  7365. }
  7366. },
  7367. side: {
  7368. height: math.unit(14, "feet"),
  7369. weight: math.unit(1450, "kg"),
  7370. capacity: math.unit(15, "people"),
  7371. name: "Side",
  7372. image: {
  7373. source: "./media/characters/aura-starwind/side.svg",
  7374. extra: 1654 / 1497
  7375. }
  7376. },
  7377. taur: {
  7378. height: math.unit(18, "feet"),
  7379. weight: math.unit(5500, "kg"),
  7380. capacity: math.unit(50, "people"),
  7381. name: "Taur",
  7382. image: {
  7383. source: "./media/characters/aura-starwind/taur.svg",
  7384. extra: 1760 / 1650
  7385. }
  7386. },
  7387. feral: {
  7388. height: math.unit(46, "feet"),
  7389. weight: math.unit(25000, "kg"),
  7390. capacity: math.unit(120, "people"),
  7391. name: "Feral",
  7392. image: {
  7393. source: "./media/characters/aura-starwind/feral.svg"
  7394. }
  7395. },
  7396. },
  7397. [
  7398. {
  7399. name: "Normal",
  7400. height: math.unit(14, "feet"),
  7401. default: true
  7402. },
  7403. {
  7404. name: "Macro",
  7405. height: math.unit(50, "meters")
  7406. },
  7407. {
  7408. name: "Megamacro",
  7409. height: math.unit(5000, "meters")
  7410. },
  7411. {
  7412. name: "Gigamacro",
  7413. height: math.unit(100000, "kilometers")
  7414. },
  7415. ]
  7416. ))
  7417. characterMakers.push(() => makeCharacter(
  7418. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7419. {
  7420. front: {
  7421. height: math.unit(2 + 7 / 12, "feet"),
  7422. weight: math.unit(32, "lbs"),
  7423. name: "Front",
  7424. image: {
  7425. source: "./media/characters/rivet/front.svg",
  7426. extra: 1716 / 1658,
  7427. bottom: 0.03
  7428. }
  7429. },
  7430. foot: {
  7431. height: math.unit(0.551, "feet"),
  7432. name: "Rivet's Foot",
  7433. image: {
  7434. source: "./media/characters/rivet/foot.svg"
  7435. },
  7436. rename: true
  7437. }
  7438. },
  7439. [
  7440. {
  7441. name: "Micro",
  7442. height: math.unit(1.5, "inches"),
  7443. },
  7444. {
  7445. name: "Normal",
  7446. height: math.unit(2 + 7 / 12, "feet"),
  7447. default: true
  7448. },
  7449. {
  7450. name: "Macro",
  7451. height: math.unit(85, "feet")
  7452. },
  7453. {
  7454. name: "Megamacro",
  7455. height: math.unit(2.2, "km")
  7456. }
  7457. ]
  7458. ))
  7459. characterMakers.push(() => makeCharacter(
  7460. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7461. {
  7462. front: {
  7463. height: math.unit(5 + 9 / 12, "feet"),
  7464. weight: math.unit(150, "lbs"),
  7465. name: "Front",
  7466. image: {
  7467. source: "./media/characters/coffee/front.svg",
  7468. extra: 3666 / 3032,
  7469. bottom: 0.04
  7470. }
  7471. },
  7472. foot: {
  7473. height: math.unit(1.29, "feet"),
  7474. name: "Foot",
  7475. image: {
  7476. source: "./media/characters/coffee/foot.svg"
  7477. }
  7478. },
  7479. },
  7480. [
  7481. {
  7482. name: "Micro",
  7483. height: math.unit(2, "inches"),
  7484. },
  7485. {
  7486. name: "Normal",
  7487. height: math.unit(5 + 9 / 12, "feet"),
  7488. default: true
  7489. },
  7490. {
  7491. name: "Macro",
  7492. height: math.unit(800, "feet")
  7493. },
  7494. {
  7495. name: "Megamacro",
  7496. height: math.unit(25, "miles")
  7497. }
  7498. ]
  7499. ))
  7500. characterMakers.push(() => makeCharacter(
  7501. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7502. {
  7503. front: {
  7504. height: math.unit(6, "feet"),
  7505. weight: math.unit(200, "lbs"),
  7506. name: "Front",
  7507. image: {
  7508. source: "./media/characters/chari-gal/front.svg",
  7509. extra: 1568 / 1385,
  7510. bottom: 0.047
  7511. }
  7512. },
  7513. gigantamax: {
  7514. height: math.unit(6 * 16, "feet"),
  7515. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7516. name: "Gigantamax",
  7517. image: {
  7518. source: "./media/characters/chari-gal/gigantamax.svg",
  7519. extra: 1124 / 888,
  7520. bottom: 0.03
  7521. }
  7522. },
  7523. },
  7524. [
  7525. {
  7526. name: "Normal",
  7527. height: math.unit(5 + 7 / 12, "feet")
  7528. },
  7529. {
  7530. name: "Macro",
  7531. height: math.unit(200, "feet"),
  7532. default: true
  7533. }
  7534. ]
  7535. ))
  7536. characterMakers.push(() => makeCharacter(
  7537. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7538. {
  7539. front: {
  7540. height: math.unit(6, "feet"),
  7541. weight: math.unit(150, "lbs"),
  7542. name: "Front",
  7543. image: {
  7544. source: "./media/characters/nova/front.svg",
  7545. extra: 5000 / 4722,
  7546. bottom: 0.02
  7547. }
  7548. }
  7549. },
  7550. [
  7551. {
  7552. name: "Micro-",
  7553. height: math.unit(0.8, "inches")
  7554. },
  7555. {
  7556. name: "Micro",
  7557. height: math.unit(2, "inches"),
  7558. default: true
  7559. },
  7560. ]
  7561. ))
  7562. characterMakers.push(() => makeCharacter(
  7563. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7564. {
  7565. front: {
  7566. height: math.unit(3 + 1 / 12, "feet"),
  7567. weight: math.unit(21.7, "lbs"),
  7568. name: "Front",
  7569. image: {
  7570. source: "./media/characters/argent/front.svg",
  7571. extra: 1471 / 1331,
  7572. bottom: 100.8 / 1575.5
  7573. }
  7574. }
  7575. },
  7576. [
  7577. {
  7578. name: "Micro",
  7579. height: math.unit(2, "inches")
  7580. },
  7581. {
  7582. name: "Normal",
  7583. height: math.unit(3 + 1 / 12, "feet"),
  7584. default: true
  7585. },
  7586. {
  7587. name: "Macro",
  7588. height: math.unit(120, "feet")
  7589. },
  7590. ]
  7591. ))
  7592. characterMakers.push(() => makeCharacter(
  7593. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7594. {
  7595. lamp: {
  7596. height: math.unit(7 * 1559 / 989, "feet"),
  7597. name: "Magic Lamp",
  7598. image: {
  7599. source: "./media/characters/mira-al-cul/lamp.svg",
  7600. extra: 1617 / 1559
  7601. }
  7602. },
  7603. front: {
  7604. height: math.unit(7, "feet"),
  7605. name: "Front",
  7606. image: {
  7607. source: "./media/characters/mira-al-cul/front.svg",
  7608. extra: 1044 / 990
  7609. }
  7610. },
  7611. },
  7612. [
  7613. {
  7614. name: "Heavily Restricted",
  7615. height: math.unit(7 * 1559 / 989, "feet")
  7616. },
  7617. {
  7618. name: "Freshly Freed",
  7619. height: math.unit(50 * 1559 / 989, "feet")
  7620. },
  7621. {
  7622. name: "World Encompassing",
  7623. height: math.unit(10000 * 1559 / 989, "miles")
  7624. },
  7625. {
  7626. name: "Galactic",
  7627. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7628. },
  7629. {
  7630. name: "Palmed Universe",
  7631. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7632. default: true
  7633. },
  7634. {
  7635. name: "Multiversal Matriarch",
  7636. height: math.unit(8.87e10, "yottameters")
  7637. },
  7638. {
  7639. name: "Void Mother",
  7640. height: math.unit(3.14e110, "yottaparsecs")
  7641. },
  7642. ]
  7643. ))
  7644. characterMakers.push(() => makeCharacter(
  7645. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7646. {
  7647. front: {
  7648. height: math.unit(17 + 1 / 12, "feet"),
  7649. weight: math.unit(476.2 * 5, "lbs"),
  7650. name: "Front",
  7651. image: {
  7652. source: "./media/characters/kuro-shi-uchū/front.svg",
  7653. extra: 2329 / 1835,
  7654. bottom: 0.02
  7655. }
  7656. },
  7657. },
  7658. [
  7659. {
  7660. name: "Micro",
  7661. height: math.unit(2, "inches")
  7662. },
  7663. {
  7664. name: "Normal",
  7665. height: math.unit(12, "meters")
  7666. },
  7667. {
  7668. name: "Planetary",
  7669. height: math.unit(0.00929, "AU"),
  7670. default: true
  7671. },
  7672. {
  7673. name: "Universal",
  7674. height: math.unit(20, "gigaparsecs")
  7675. },
  7676. ]
  7677. ))
  7678. characterMakers.push(() => makeCharacter(
  7679. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7680. {
  7681. front: {
  7682. height: math.unit(5 + 2 / 12, "feet"),
  7683. weight: math.unit(120, "lbs"),
  7684. name: "Front",
  7685. image: {
  7686. source: "./media/characters/katherine/front.svg",
  7687. extra: 2075 / 1969
  7688. }
  7689. },
  7690. dress: {
  7691. height: math.unit(5 + 2 / 12, "feet"),
  7692. weight: math.unit(120, "lbs"),
  7693. name: "Dress",
  7694. image: {
  7695. source: "./media/characters/katherine/dress.svg",
  7696. extra: 2258 / 2064
  7697. }
  7698. },
  7699. },
  7700. [
  7701. {
  7702. name: "Micro",
  7703. height: math.unit(1, "inches"),
  7704. default: true
  7705. },
  7706. {
  7707. name: "Normal",
  7708. height: math.unit(5 + 2 / 12, "feet")
  7709. },
  7710. {
  7711. name: "Macro",
  7712. height: math.unit(100, "meters")
  7713. },
  7714. {
  7715. name: "Megamacro",
  7716. height: math.unit(80, "miles")
  7717. },
  7718. ]
  7719. ))
  7720. characterMakers.push(() => makeCharacter(
  7721. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7722. {
  7723. front: {
  7724. height: math.unit(7 + 8 / 12, "feet"),
  7725. weight: math.unit(250, "lbs"),
  7726. name: "Front",
  7727. image: {
  7728. source: "./media/characters/yevis/front.svg",
  7729. extra: 1938 / 1755
  7730. }
  7731. }
  7732. },
  7733. [
  7734. {
  7735. name: "Mortal",
  7736. height: math.unit(7 + 8 / 12, "feet")
  7737. },
  7738. {
  7739. name: "Battle",
  7740. height: math.unit(25 + 11 / 12, "feet")
  7741. },
  7742. {
  7743. name: "Wrath",
  7744. height: math.unit(1654 + 11 / 12, "feet")
  7745. },
  7746. {
  7747. name: "Planet Destroyer",
  7748. height: math.unit(12000, "miles")
  7749. },
  7750. {
  7751. name: "Galaxy Conqueror",
  7752. height: math.unit(1.45, "zettameters"),
  7753. default: true
  7754. },
  7755. {
  7756. name: "Universal War",
  7757. height: math.unit(184, "gigaparsecs")
  7758. },
  7759. {
  7760. name: "Eternity War",
  7761. height: math.unit(1.98e55, "yottaparsecs")
  7762. },
  7763. ]
  7764. ))
  7765. characterMakers.push(() => makeCharacter(
  7766. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7767. {
  7768. front: {
  7769. height: math.unit(5 + 8 / 12, "feet"),
  7770. weight: math.unit(63, "kg"),
  7771. name: "Front",
  7772. image: {
  7773. source: "./media/characters/xavier/front.svg",
  7774. extra: 944 / 883
  7775. }
  7776. },
  7777. frontStretch: {
  7778. height: math.unit(5 + 8 / 12, "feet"),
  7779. weight: math.unit(63, "kg"),
  7780. name: "Stretching",
  7781. image: {
  7782. source: "./media/characters/xavier/front-stretch.svg",
  7783. extra: 962 / 820
  7784. }
  7785. },
  7786. },
  7787. [
  7788. {
  7789. name: "Normal",
  7790. height: math.unit(5 + 8 / 12, "feet")
  7791. },
  7792. {
  7793. name: "Macro",
  7794. height: math.unit(100, "meters"),
  7795. default: true
  7796. },
  7797. {
  7798. name: "McLargeHuge",
  7799. height: math.unit(10, "miles")
  7800. },
  7801. ]
  7802. ))
  7803. characterMakers.push(() => makeCharacter(
  7804. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7805. {
  7806. front: {
  7807. height: math.unit(5 + 5 / 12, "feet"),
  7808. weight: math.unit(150, "lb"),
  7809. name: "Front",
  7810. image: {
  7811. source: "./media/characters/joshii/front.svg"
  7812. }
  7813. },
  7814. foot: {
  7815. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7816. name: "Foot",
  7817. image: {
  7818. source: "./media/characters/joshii/foot.svg"
  7819. }
  7820. },
  7821. },
  7822. [
  7823. {
  7824. name: "Micro",
  7825. height: math.unit(2, "inches")
  7826. },
  7827. {
  7828. name: "Normal",
  7829. height: math.unit(5 + 5 / 12, "feet"),
  7830. default: true
  7831. },
  7832. {
  7833. name: "Macro",
  7834. height: math.unit(785, "feet")
  7835. },
  7836. {
  7837. name: "Megamacro",
  7838. height: math.unit(24.5, "miles")
  7839. },
  7840. ]
  7841. ))
  7842. characterMakers.push(() => makeCharacter(
  7843. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7844. {
  7845. front: {
  7846. height: math.unit(6, "feet"),
  7847. weight: math.unit(150, "lb"),
  7848. name: "Front",
  7849. image: {
  7850. source: "./media/characters/goddess-elizabeth/front.svg",
  7851. extra: 1800 / 1525,
  7852. bottom: 0.005
  7853. }
  7854. },
  7855. foot: {
  7856. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7857. name: "Foot",
  7858. image: {
  7859. source: "./media/characters/goddess-elizabeth/foot.svg"
  7860. }
  7861. },
  7862. mouth: {
  7863. height: math.unit(6, "feet"),
  7864. name: "Mouth",
  7865. image: {
  7866. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7867. }
  7868. },
  7869. },
  7870. [
  7871. {
  7872. name: "Micro",
  7873. height: math.unit(12, "feet")
  7874. },
  7875. {
  7876. name: "Normal",
  7877. height: math.unit(80, "miles"),
  7878. default: true
  7879. },
  7880. {
  7881. name: "Macro",
  7882. height: math.unit(15000, "parsecs")
  7883. },
  7884. ]
  7885. ))
  7886. characterMakers.push(() => makeCharacter(
  7887. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7888. {
  7889. front: {
  7890. height: math.unit(5 + 9 / 12, "feet"),
  7891. weight: math.unit(144, "lb"),
  7892. name: "Front",
  7893. image: {
  7894. source: "./media/characters/kara/front.svg"
  7895. }
  7896. },
  7897. feet: {
  7898. height: math.unit(6 / 6.765, "feet"),
  7899. name: "Kara's Feet",
  7900. rename: true,
  7901. image: {
  7902. source: "./media/characters/kara/feet.svg"
  7903. }
  7904. },
  7905. },
  7906. [
  7907. {
  7908. name: "Normal",
  7909. height: math.unit(5 + 9 / 12, "feet")
  7910. },
  7911. {
  7912. name: "Macro",
  7913. height: math.unit(174, "feet"),
  7914. default: true
  7915. },
  7916. ]
  7917. ))
  7918. characterMakers.push(() => makeCharacter(
  7919. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7920. {
  7921. front: {
  7922. height: math.unit(18, "feet"),
  7923. weight: math.unit(4050, "lb"),
  7924. name: "Front",
  7925. image: {
  7926. source: "./media/characters/tyrone/front.svg",
  7927. extra: 2520 / 2402,
  7928. bottom: 0.025
  7929. }
  7930. },
  7931. },
  7932. [
  7933. {
  7934. name: "Normal",
  7935. height: math.unit(18, "feet"),
  7936. default: true
  7937. },
  7938. {
  7939. name: "Macro",
  7940. height: math.unit(300, "feet")
  7941. },
  7942. ]
  7943. ))
  7944. characterMakers.push(() => makeCharacter(
  7945. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7946. {
  7947. front: {
  7948. height: math.unit(7 + 8 / 12, "feet"),
  7949. weight: math.unit(120, "lb"),
  7950. name: "Front",
  7951. image: {
  7952. source: "./media/characters/danny/front.svg",
  7953. extra: 1490 / 1350
  7954. }
  7955. },
  7956. back: {
  7957. height: math.unit(7 + 8 / 12, "feet"),
  7958. weight: math.unit(120, "lb"),
  7959. name: "Back",
  7960. image: {
  7961. source: "./media/characters/danny/back.svg",
  7962. extra: 1490 / 1350
  7963. }
  7964. },
  7965. },
  7966. [
  7967. {
  7968. name: "Normal",
  7969. height: math.unit(7 + 8 / 12, "feet"),
  7970. default: true
  7971. },
  7972. ]
  7973. ))
  7974. characterMakers.push(() => makeCharacter(
  7975. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7976. {
  7977. front: {
  7978. height: math.unit(3.5, "inches"),
  7979. weight: math.unit(19, "grams"),
  7980. name: "Front",
  7981. image: {
  7982. source: "./media/characters/mallow/front.svg",
  7983. extra: 471 / 431
  7984. }
  7985. },
  7986. back: {
  7987. height: math.unit(3.5, "inches"),
  7988. weight: math.unit(19, "grams"),
  7989. name: "Back",
  7990. image: {
  7991. source: "./media/characters/mallow/back.svg",
  7992. extra: 471 / 431
  7993. }
  7994. },
  7995. },
  7996. [
  7997. {
  7998. name: "Normal",
  7999. height: math.unit(3.5, "inches"),
  8000. default: true
  8001. },
  8002. ]
  8003. ))
  8004. characterMakers.push(() => makeCharacter(
  8005. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8006. {
  8007. front: {
  8008. height: math.unit(9, "feet"),
  8009. weight: math.unit(230, "kg"),
  8010. name: "Front",
  8011. image: {
  8012. source: "./media/characters/starry-aqua/front.svg"
  8013. }
  8014. },
  8015. back: {
  8016. height: math.unit(9, "feet"),
  8017. weight: math.unit(230, "kg"),
  8018. name: "Back",
  8019. image: {
  8020. source: "./media/characters/starry-aqua/back.svg"
  8021. }
  8022. },
  8023. hand: {
  8024. height: math.unit(9 * 0.1168, "feet"),
  8025. name: "Hand",
  8026. image: {
  8027. source: "./media/characters/starry-aqua/hand.svg"
  8028. }
  8029. },
  8030. foot: {
  8031. height: math.unit(9 * 0.18, "feet"),
  8032. name: "Foot",
  8033. image: {
  8034. source: "./media/characters/starry-aqua/foot.svg"
  8035. }
  8036. }
  8037. },
  8038. [
  8039. {
  8040. name: "Micro",
  8041. height: math.unit(3, "inches")
  8042. },
  8043. {
  8044. name: "Normal",
  8045. height: math.unit(9, "feet")
  8046. },
  8047. {
  8048. name: "Macro",
  8049. height: math.unit(300, "feet"),
  8050. default: true
  8051. },
  8052. {
  8053. name: "Megamacro",
  8054. height: math.unit(3200, "feet")
  8055. }
  8056. ]
  8057. ))
  8058. characterMakers.push(() => makeCharacter(
  8059. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8060. {
  8061. front: {
  8062. height: math.unit(6, "feet"),
  8063. weight: math.unit(230, "lb"),
  8064. name: "Front",
  8065. image: {
  8066. source: "./media/characters/luka/front.svg",
  8067. extra: 1,
  8068. bottom: 0.025
  8069. }
  8070. },
  8071. },
  8072. [
  8073. {
  8074. name: "Normal",
  8075. height: math.unit(12 + 8 / 12, "feet"),
  8076. default: true
  8077. },
  8078. {
  8079. name: "Minimacro",
  8080. height: math.unit(20, "feet")
  8081. },
  8082. {
  8083. name: "Macro",
  8084. height: math.unit(250, "feet")
  8085. },
  8086. {
  8087. name: "Megamacro",
  8088. height: math.unit(5, "miles")
  8089. },
  8090. {
  8091. name: "Gigamacro",
  8092. height: math.unit(8000, "miles")
  8093. },
  8094. ]
  8095. ))
  8096. characterMakers.push(() => makeCharacter(
  8097. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8098. {
  8099. front: {
  8100. height: math.unit(6, "feet"),
  8101. weight: math.unit(150, "lb"),
  8102. name: "Front",
  8103. image: {
  8104. source: "./media/characters/natalie-nightring/front.svg",
  8105. extra: 1,
  8106. bottom: 0.06
  8107. }
  8108. },
  8109. },
  8110. [
  8111. {
  8112. name: "Uh Oh",
  8113. height: math.unit(0.1, "mm")
  8114. },
  8115. {
  8116. name: "Small",
  8117. height: math.unit(3, "inches")
  8118. },
  8119. {
  8120. name: "Human Scale",
  8121. height: math.unit(6, "feet")
  8122. },
  8123. {
  8124. name: "Librarian",
  8125. height: math.unit(50, "feet"),
  8126. default: true
  8127. },
  8128. {
  8129. name: "Immense",
  8130. height: math.unit(200, "miles")
  8131. },
  8132. ]
  8133. ))
  8134. characterMakers.push(() => makeCharacter(
  8135. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8136. {
  8137. front: {
  8138. height: math.unit(6, "feet"),
  8139. weight: math.unit(180, "lbs"),
  8140. name: "Front",
  8141. image: {
  8142. source: "./media/characters/danni-rosie/front.svg",
  8143. extra: 1260 / 1128,
  8144. bottom: 0.022
  8145. }
  8146. },
  8147. },
  8148. [
  8149. {
  8150. name: "Micro",
  8151. height: math.unit(2, "inches"),
  8152. default: true
  8153. },
  8154. ]
  8155. ))
  8156. characterMakers.push(() => makeCharacter(
  8157. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8158. {
  8159. front: {
  8160. height: math.unit(5 + 9 / 12, "feet"),
  8161. weight: math.unit(220, "lb"),
  8162. name: "Front",
  8163. image: {
  8164. source: "./media/characters/samantha-kruse/front.svg",
  8165. extra: (985 / 935),
  8166. bottom: 0.03
  8167. }
  8168. },
  8169. frontUndressed: {
  8170. height: math.unit(5 + 9 / 12, "feet"),
  8171. weight: math.unit(220, "lb"),
  8172. name: "Front (Undressed)",
  8173. image: {
  8174. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8175. extra: (973 / 923),
  8176. bottom: 0.025
  8177. }
  8178. },
  8179. fat: {
  8180. height: math.unit(5 + 9 / 12, "feet"),
  8181. weight: math.unit(900, "lb"),
  8182. name: "Front (Fat)",
  8183. image: {
  8184. source: "./media/characters/samantha-kruse/fat.svg",
  8185. extra: 2688 / 2561
  8186. }
  8187. },
  8188. },
  8189. [
  8190. {
  8191. name: "Normal",
  8192. height: math.unit(5 + 9 / 12, "feet"),
  8193. default: true
  8194. }
  8195. ]
  8196. ))
  8197. characterMakers.push(() => makeCharacter(
  8198. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8199. {
  8200. back: {
  8201. height: math.unit(5 + 4 / 12, "feet"),
  8202. weight: math.unit(4963, "lb"),
  8203. name: "Back",
  8204. image: {
  8205. source: "./media/characters/amelia-rosie/back.svg",
  8206. extra: 1113 / 963,
  8207. bottom: 0.01
  8208. }
  8209. },
  8210. },
  8211. [
  8212. {
  8213. name: "Level 0",
  8214. height: math.unit(5 + 4 / 12, "feet")
  8215. },
  8216. {
  8217. name: "Level 1",
  8218. height: math.unit(164597, "feet"),
  8219. default: true
  8220. },
  8221. {
  8222. name: "Level 2",
  8223. height: math.unit(956243, "miles")
  8224. },
  8225. {
  8226. name: "Level 3",
  8227. height: math.unit(29421709423, "miles")
  8228. },
  8229. {
  8230. name: "Level 4",
  8231. height: math.unit(154, "lightyears")
  8232. },
  8233. {
  8234. name: "Level 5",
  8235. height: math.unit(4738272, "lightyears")
  8236. },
  8237. {
  8238. name: "Level 6",
  8239. height: math.unit(145787152896, "lightyears")
  8240. },
  8241. ]
  8242. ))
  8243. characterMakers.push(() => makeCharacter(
  8244. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8245. {
  8246. front: {
  8247. height: math.unit(5 + 11 / 12, "feet"),
  8248. weight: math.unit(65, "kg"),
  8249. name: "Front",
  8250. image: {
  8251. source: "./media/characters/rook-kitara/front.svg",
  8252. extra: 1347 / 1274,
  8253. bottom: 0.005
  8254. }
  8255. },
  8256. },
  8257. [
  8258. {
  8259. name: "Totally Unfair",
  8260. height: math.unit(1.8, "mm")
  8261. },
  8262. {
  8263. name: "Lap Rookie",
  8264. height: math.unit(1.4, "feet")
  8265. },
  8266. {
  8267. name: "Normal",
  8268. height: math.unit(5 + 11 / 12, "feet"),
  8269. default: true
  8270. },
  8271. {
  8272. name: "How Did This Happen",
  8273. height: math.unit(80, "miles")
  8274. }
  8275. ]
  8276. ))
  8277. characterMakers.push(() => makeCharacter(
  8278. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8279. {
  8280. front: {
  8281. height: math.unit(7, "feet"),
  8282. weight: math.unit(300, "lb"),
  8283. name: "Front",
  8284. image: {
  8285. source: "./media/characters/pisces/front.svg",
  8286. extra: 2255 / 2115,
  8287. bottom: 0.03
  8288. }
  8289. },
  8290. back: {
  8291. height: math.unit(7, "feet"),
  8292. weight: math.unit(300, "lb"),
  8293. name: "Back",
  8294. image: {
  8295. source: "./media/characters/pisces/back.svg",
  8296. extra: 2146 / 2055,
  8297. bottom: 0.04
  8298. }
  8299. },
  8300. },
  8301. [
  8302. {
  8303. name: "Normal",
  8304. height: math.unit(7, "feet"),
  8305. default: true
  8306. },
  8307. {
  8308. name: "Swimming Pool",
  8309. height: math.unit(12.2, "meters")
  8310. },
  8311. {
  8312. name: "Olympic Swimming Pool",
  8313. height: math.unit(56.3, "meters")
  8314. },
  8315. {
  8316. name: "Lake Superior",
  8317. height: math.unit(93900, "meters")
  8318. },
  8319. {
  8320. name: "Mediterranean Sea",
  8321. height: math.unit(644457, "meters")
  8322. },
  8323. {
  8324. name: "World's Oceans",
  8325. height: math.unit(4567491, "meters")
  8326. },
  8327. ]
  8328. ))
  8329. characterMakers.push(() => makeCharacter(
  8330. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8331. {
  8332. front: {
  8333. height: math.unit(2.3, "meters"),
  8334. weight: math.unit(120, "kg"),
  8335. name: "Front",
  8336. image: {
  8337. source: "./media/characters/zelas/front.svg"
  8338. }
  8339. },
  8340. side: {
  8341. height: math.unit(2.3, "meters"),
  8342. weight: math.unit(120, "kg"),
  8343. name: "Side",
  8344. image: {
  8345. source: "./media/characters/zelas/side.svg"
  8346. }
  8347. },
  8348. back: {
  8349. height: math.unit(2.3, "meters"),
  8350. weight: math.unit(120, "kg"),
  8351. name: "Back",
  8352. image: {
  8353. source: "./media/characters/zelas/back.svg"
  8354. }
  8355. },
  8356. foot: {
  8357. height: math.unit(1.116, "feet"),
  8358. name: "Foot",
  8359. image: {
  8360. source: "./media/characters/zelas/foot.svg"
  8361. }
  8362. },
  8363. },
  8364. [
  8365. {
  8366. name: "Normal",
  8367. height: math.unit(2.3, "meters")
  8368. },
  8369. {
  8370. name: "Macro",
  8371. height: math.unit(30, "meters"),
  8372. default: true
  8373. },
  8374. ]
  8375. ))
  8376. characterMakers.push(() => makeCharacter(
  8377. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8378. {
  8379. front: {
  8380. height: math.unit(1, "inch"),
  8381. weight: math.unit(0.21, "grams"),
  8382. name: "Front",
  8383. image: {
  8384. source: "./media/characters/talbot/front.svg",
  8385. extra: 594 / 544
  8386. }
  8387. },
  8388. },
  8389. [
  8390. {
  8391. name: "Micro",
  8392. height: math.unit(1, "inch"),
  8393. default: true
  8394. },
  8395. ]
  8396. ))
  8397. characterMakers.push(() => makeCharacter(
  8398. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8399. {
  8400. front: {
  8401. height: math.unit(3 + 3 / 12, "feet"),
  8402. weight: math.unit(51.8, "lb"),
  8403. name: "Front",
  8404. image: {
  8405. source: "./media/characters/fliss/front.svg",
  8406. extra: 840 / 640
  8407. }
  8408. },
  8409. },
  8410. [
  8411. {
  8412. name: "Teeny Tiny",
  8413. height: math.unit(1, "mm")
  8414. },
  8415. {
  8416. name: "Small",
  8417. height: math.unit(1, "inch"),
  8418. default: true
  8419. },
  8420. {
  8421. name: "Standard Sylveon",
  8422. height: math.unit(3 + 3 / 12, "feet")
  8423. },
  8424. {
  8425. name: "Large Nuisance",
  8426. height: math.unit(33, "feet")
  8427. },
  8428. {
  8429. name: "City Filler",
  8430. height: math.unit(3000, "feet")
  8431. },
  8432. {
  8433. name: "New Horizon",
  8434. height: math.unit(6000, "miles")
  8435. },
  8436. ]
  8437. ))
  8438. characterMakers.push(() => makeCharacter(
  8439. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8440. {
  8441. front: {
  8442. height: math.unit(5, "cm"),
  8443. weight: math.unit(1.94, "g"),
  8444. name: "Front",
  8445. image: {
  8446. source: "./media/characters/fleta/front.svg",
  8447. extra: 835 / 803
  8448. }
  8449. },
  8450. back: {
  8451. height: math.unit(5, "cm"),
  8452. weight: math.unit(1.94, "g"),
  8453. name: "Back",
  8454. image: {
  8455. source: "./media/characters/fleta/back.svg",
  8456. extra: 835 / 803
  8457. }
  8458. },
  8459. },
  8460. [
  8461. {
  8462. name: "Micro",
  8463. height: math.unit(5, "cm"),
  8464. default: true
  8465. },
  8466. ]
  8467. ))
  8468. characterMakers.push(() => makeCharacter(
  8469. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8470. {
  8471. front: {
  8472. height: math.unit(6, "feet"),
  8473. weight: math.unit(225, "lb"),
  8474. name: "Front",
  8475. image: {
  8476. source: "./media/characters/dominic/front.svg",
  8477. extra: 1770 / 1620,
  8478. bottom: 0.025
  8479. }
  8480. },
  8481. back: {
  8482. height: math.unit(6, "feet"),
  8483. weight: math.unit(225, "lb"),
  8484. name: "Back",
  8485. image: {
  8486. source: "./media/characters/dominic/back.svg",
  8487. extra: 1745 / 1620,
  8488. bottom: 0.065
  8489. }
  8490. },
  8491. },
  8492. [
  8493. {
  8494. name: "Nano",
  8495. height: math.unit(0.1, "mm")
  8496. },
  8497. {
  8498. name: "Micro-",
  8499. height: math.unit(1, "mm")
  8500. },
  8501. {
  8502. name: "Micro",
  8503. height: math.unit(4, "inches")
  8504. },
  8505. {
  8506. name: "Normal",
  8507. height: math.unit(6 + 4 / 12, "feet"),
  8508. default: true
  8509. },
  8510. {
  8511. name: "Macro",
  8512. height: math.unit(115, "feet")
  8513. },
  8514. {
  8515. name: "Macro+",
  8516. height: math.unit(955, "feet")
  8517. },
  8518. {
  8519. name: "Megamacro",
  8520. height: math.unit(8990, "feet")
  8521. },
  8522. {
  8523. name: "Gigmacro",
  8524. height: math.unit(9310, "miles")
  8525. },
  8526. {
  8527. name: "Teramacro",
  8528. height: math.unit(1567005010, "miles")
  8529. },
  8530. {
  8531. name: "Examacro",
  8532. height: math.unit(1425, "parsecs")
  8533. },
  8534. ]
  8535. ))
  8536. characterMakers.push(() => makeCharacter(
  8537. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8538. {
  8539. front: {
  8540. height: math.unit(400, "feet"),
  8541. weight: math.unit(44444444, "lb"),
  8542. name: "Front",
  8543. image: {
  8544. source: "./media/characters/major-colonel/front.svg"
  8545. }
  8546. },
  8547. back: {
  8548. height: math.unit(400, "feet"),
  8549. weight: math.unit(44444444, "lb"),
  8550. name: "Back",
  8551. image: {
  8552. source: "./media/characters/major-colonel/back.svg"
  8553. }
  8554. },
  8555. },
  8556. [
  8557. {
  8558. name: "Macro",
  8559. height: math.unit(400, "feet"),
  8560. default: true
  8561. },
  8562. ]
  8563. ))
  8564. characterMakers.push(() => makeCharacter(
  8565. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8566. {
  8567. catFront: {
  8568. height: math.unit(6, "feet"),
  8569. weight: math.unit(120, "lb"),
  8570. name: "Front (Cat Side)",
  8571. image: {
  8572. source: "./media/characters/axel-lycan/cat-front.svg",
  8573. extra: 430 / 402,
  8574. bottom: 43 / 472.35
  8575. }
  8576. },
  8577. catBack: {
  8578. height: math.unit(6, "feet"),
  8579. weight: math.unit(120, "lb"),
  8580. name: "Back (Cat Side)",
  8581. image: {
  8582. source: "./media/characters/axel-lycan/cat-back.svg",
  8583. extra: 447 / 419,
  8584. bottom: 23.3 / 469
  8585. }
  8586. },
  8587. wolfFront: {
  8588. height: math.unit(6, "feet"),
  8589. weight: math.unit(120, "lb"),
  8590. name: "Front (Wolf Side)",
  8591. image: {
  8592. source: "./media/characters/axel-lycan/wolf-front.svg",
  8593. extra: 485 / 456,
  8594. bottom: 19 / 504
  8595. }
  8596. },
  8597. wolfBack: {
  8598. height: math.unit(6, "feet"),
  8599. weight: math.unit(120, "lb"),
  8600. name: "Back (Wolf Side)",
  8601. image: {
  8602. source: "./media/characters/axel-lycan/wolf-back.svg",
  8603. extra: 475 / 438,
  8604. bottom: 39.2 / 514
  8605. }
  8606. },
  8607. },
  8608. [
  8609. {
  8610. name: "Macro",
  8611. height: math.unit(1, "km"),
  8612. default: true
  8613. },
  8614. ]
  8615. ))
  8616. characterMakers.push(() => makeCharacter(
  8617. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8618. {
  8619. front: {
  8620. height: math.unit(5 + 9 / 12, "feet"),
  8621. weight: math.unit(175, "lb"),
  8622. name: "Front",
  8623. image: {
  8624. source: "./media/characters/vanrel-hyena/front.svg",
  8625. extra: 1086 / 1010,
  8626. bottom: 0.04
  8627. }
  8628. },
  8629. },
  8630. [
  8631. {
  8632. name: "Normal",
  8633. height: math.unit(5 + 9 / 12, "feet"),
  8634. default: true
  8635. },
  8636. ]
  8637. ))
  8638. characterMakers.push(() => makeCharacter(
  8639. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8640. {
  8641. front: {
  8642. height: math.unit(6, "feet"),
  8643. weight: math.unit(103, "lb"),
  8644. name: "Front",
  8645. image: {
  8646. source: "./media/characters/abbott-absol/front.svg",
  8647. extra: 2010 / 1842
  8648. }
  8649. },
  8650. },
  8651. [
  8652. {
  8653. name: "Megamicro",
  8654. height: math.unit(0.1, "mm")
  8655. },
  8656. {
  8657. name: "Micro",
  8658. height: math.unit(1, "inch")
  8659. },
  8660. {
  8661. name: "Normal",
  8662. height: math.unit(6, "feet"),
  8663. default: true
  8664. },
  8665. ]
  8666. ))
  8667. characterMakers.push(() => makeCharacter(
  8668. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8669. {
  8670. front: {
  8671. height: math.unit(6, "feet"),
  8672. weight: math.unit(264, "lb"),
  8673. name: "Front",
  8674. image: {
  8675. source: "./media/characters/hector/front.svg",
  8676. extra: 2280 / 2130,
  8677. bottom: 0.07
  8678. }
  8679. },
  8680. },
  8681. [
  8682. {
  8683. name: "Normal",
  8684. height: math.unit(12.25, "foot"),
  8685. default: true
  8686. },
  8687. {
  8688. name: "Macro",
  8689. height: math.unit(160, "feet")
  8690. },
  8691. ]
  8692. ))
  8693. characterMakers.push(() => makeCharacter(
  8694. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8695. {
  8696. front: {
  8697. height: math.unit(6, "feet"),
  8698. weight: math.unit(150, "lb"),
  8699. name: "Front",
  8700. image: {
  8701. source: "./media/characters/sal/front.svg",
  8702. extra: 1846 / 1699,
  8703. bottom: 0.04
  8704. }
  8705. },
  8706. },
  8707. [
  8708. {
  8709. name: "Megamacro",
  8710. height: math.unit(10, "miles"),
  8711. default: true
  8712. },
  8713. ]
  8714. ))
  8715. characterMakers.push(() => makeCharacter(
  8716. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8717. {
  8718. front: {
  8719. height: math.unit(3, "meters"),
  8720. weight: math.unit(450, "kg"),
  8721. name: "front",
  8722. image: {
  8723. source: "./media/characters/ranger/front.svg",
  8724. extra: 2401 / 2243,
  8725. bottom: 0.05
  8726. }
  8727. },
  8728. },
  8729. [
  8730. {
  8731. name: "Normal",
  8732. height: math.unit(3, "meters"),
  8733. default: true
  8734. },
  8735. ]
  8736. ))
  8737. characterMakers.push(() => makeCharacter(
  8738. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8739. {
  8740. front: {
  8741. height: math.unit(14, "feet"),
  8742. weight: math.unit(800, "kg"),
  8743. name: "Front",
  8744. image: {
  8745. source: "./media/characters/theresa/front.svg",
  8746. extra: 3575 / 3346,
  8747. bottom: 0.03
  8748. }
  8749. },
  8750. },
  8751. [
  8752. {
  8753. name: "Normal",
  8754. height: math.unit(14, "feet"),
  8755. default: true
  8756. },
  8757. ]
  8758. ))
  8759. characterMakers.push(() => makeCharacter(
  8760. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8761. {
  8762. front: {
  8763. height: math.unit(6, "feet"),
  8764. weight: math.unit(3, "kg"),
  8765. name: "Front",
  8766. image: {
  8767. source: "./media/characters/ine/front.svg",
  8768. extra: 678 / 539,
  8769. bottom: 0.023
  8770. }
  8771. },
  8772. },
  8773. [
  8774. {
  8775. name: "Normal",
  8776. height: math.unit(2.265, "feet"),
  8777. default: true
  8778. },
  8779. ]
  8780. ))
  8781. characterMakers.push(() => makeCharacter(
  8782. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8783. {
  8784. front: {
  8785. height: math.unit(5, "feet"),
  8786. weight: math.unit(30, "kg"),
  8787. name: "Front",
  8788. image: {
  8789. source: "./media/characters/vial/front.svg",
  8790. extra: 1365 / 1277,
  8791. bottom: 0.04
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Normal",
  8798. height: math.unit(5, "feet"),
  8799. default: true
  8800. },
  8801. ]
  8802. ))
  8803. characterMakers.push(() => makeCharacter(
  8804. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8805. {
  8806. side: {
  8807. height: math.unit(3.4, "meters"),
  8808. weight: math.unit(1000, "lb"),
  8809. name: "Side",
  8810. image: {
  8811. source: "./media/characters/rovoska/side.svg",
  8812. extra: 4403 / 1515
  8813. }
  8814. },
  8815. },
  8816. [
  8817. {
  8818. name: "Normal",
  8819. height: math.unit(3.4, "meters"),
  8820. default: true
  8821. },
  8822. ]
  8823. ))
  8824. characterMakers.push(() => makeCharacter(
  8825. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8826. {
  8827. front: {
  8828. height: math.unit(8, "feet"),
  8829. weight: math.unit(315, "lb"),
  8830. name: "Front",
  8831. image: {
  8832. source: "./media/characters/gunner-rotthbauer/front.svg"
  8833. }
  8834. },
  8835. back: {
  8836. height: math.unit(8, "feet"),
  8837. weight: math.unit(315, "lb"),
  8838. name: "Back",
  8839. image: {
  8840. source: "./media/characters/gunner-rotthbauer/back.svg"
  8841. }
  8842. },
  8843. },
  8844. [
  8845. {
  8846. name: "Micro",
  8847. height: math.unit(3.5, "inches")
  8848. },
  8849. {
  8850. name: "Normal",
  8851. height: math.unit(8, "feet"),
  8852. default: true
  8853. },
  8854. {
  8855. name: "Macro",
  8856. height: math.unit(250, "feet")
  8857. },
  8858. {
  8859. name: "Megamacro",
  8860. height: math.unit(1, "AU")
  8861. },
  8862. ]
  8863. ))
  8864. characterMakers.push(() => makeCharacter(
  8865. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8866. {
  8867. front: {
  8868. height: math.unit(5 + 5 / 12, "feet"),
  8869. weight: math.unit(140, "lb"),
  8870. name: "Front",
  8871. image: {
  8872. source: "./media/characters/allatia/front.svg",
  8873. extra: 1227 / 1180,
  8874. bottom: 0.027
  8875. }
  8876. },
  8877. },
  8878. [
  8879. {
  8880. name: "Normal",
  8881. height: math.unit(5 + 5 / 12, "feet")
  8882. },
  8883. {
  8884. name: "Macro",
  8885. height: math.unit(250, "feet"),
  8886. default: true
  8887. },
  8888. {
  8889. name: "Megamacro",
  8890. height: math.unit(8, "miles")
  8891. }
  8892. ]
  8893. ))
  8894. characterMakers.push(() => makeCharacter(
  8895. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8896. {
  8897. front: {
  8898. height: math.unit(6, "feet"),
  8899. weight: math.unit(120, "lb"),
  8900. name: "Front",
  8901. image: {
  8902. source: "./media/characters/tene/front.svg",
  8903. extra: 1728 / 1578,
  8904. bottom: 0.022
  8905. }
  8906. },
  8907. stomping: {
  8908. height: math.unit(2.025, "meters"),
  8909. weight: math.unit(120, "lb"),
  8910. name: "Stomping",
  8911. image: {
  8912. source: "./media/characters/tene/stomping.svg",
  8913. extra: 938 / 873,
  8914. bottom: 0.01
  8915. }
  8916. },
  8917. sitting: {
  8918. height: math.unit(1, "meter"),
  8919. weight: math.unit(120, "lb"),
  8920. name: "Sitting",
  8921. image: {
  8922. source: "./media/characters/tene/sitting.svg",
  8923. extra: 437 / 415,
  8924. bottom: 0.1
  8925. }
  8926. },
  8927. feral: {
  8928. height: math.unit(3.9, "feet"),
  8929. weight: math.unit(250, "lb"),
  8930. name: "Feral",
  8931. image: {
  8932. source: "./media/characters/tene/feral.svg",
  8933. extra: 717 / 458,
  8934. bottom: 0.179
  8935. }
  8936. },
  8937. },
  8938. [
  8939. {
  8940. name: "Normal",
  8941. height: math.unit(6, "feet")
  8942. },
  8943. {
  8944. name: "Macro",
  8945. height: math.unit(300, "feet"),
  8946. default: true
  8947. },
  8948. {
  8949. name: "Megamacro",
  8950. height: math.unit(5, "miles")
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8956. {
  8957. side: {
  8958. height: math.unit(6, "feet"),
  8959. name: "Side",
  8960. image: {
  8961. source: "./media/characters/evander/side.svg",
  8962. extra: 877 / 477
  8963. }
  8964. },
  8965. },
  8966. [
  8967. {
  8968. name: "Normal",
  8969. height: math.unit(0.83, "meters"),
  8970. default: true
  8971. },
  8972. ]
  8973. ))
  8974. characterMakers.push(() => makeCharacter(
  8975. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8976. {
  8977. front: {
  8978. height: math.unit(12, "feet"),
  8979. weight: math.unit(1000, "lb"),
  8980. name: "Front",
  8981. image: {
  8982. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8983. extra: 1762 / 1611
  8984. }
  8985. },
  8986. back: {
  8987. height: math.unit(12, "feet"),
  8988. weight: math.unit(1000, "lb"),
  8989. name: "Back",
  8990. image: {
  8991. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8992. extra: 1762 / 1611
  8993. }
  8994. },
  8995. },
  8996. [
  8997. {
  8998. name: "Normal",
  8999. height: math.unit(12, "feet"),
  9000. default: true
  9001. },
  9002. {
  9003. name: "Kaiju",
  9004. height: math.unit(150, "feet")
  9005. },
  9006. ]
  9007. ))
  9008. characterMakers.push(() => makeCharacter(
  9009. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9010. {
  9011. front: {
  9012. height: math.unit(6, "feet"),
  9013. weight: math.unit(150, "lb"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/zero-alurus/front.svg"
  9017. }
  9018. },
  9019. back: {
  9020. height: math.unit(6, "feet"),
  9021. weight: math.unit(150, "lb"),
  9022. name: "Back",
  9023. image: {
  9024. source: "./media/characters/zero-alurus/back.svg"
  9025. }
  9026. },
  9027. },
  9028. [
  9029. {
  9030. name: "Normal",
  9031. height: math.unit(5 + 10 / 12, "feet")
  9032. },
  9033. {
  9034. name: "Macro",
  9035. height: math.unit(60, "feet"),
  9036. default: true
  9037. },
  9038. {
  9039. name: "Macro+",
  9040. height: math.unit(450, "feet")
  9041. },
  9042. ]
  9043. ))
  9044. characterMakers.push(() => makeCharacter(
  9045. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9046. {
  9047. front: {
  9048. height: math.unit(6, "feet"),
  9049. weight: math.unit(200, "lb"),
  9050. name: "Front",
  9051. image: {
  9052. source: "./media/characters/mega-shi/front.svg",
  9053. extra: 1279 / 1250,
  9054. bottom: 0.02
  9055. }
  9056. },
  9057. back: {
  9058. height: math.unit(6, "feet"),
  9059. weight: math.unit(200, "lb"),
  9060. name: "Back",
  9061. image: {
  9062. source: "./media/characters/mega-shi/back.svg",
  9063. extra: 1279 / 1250,
  9064. bottom: 0.02
  9065. }
  9066. },
  9067. },
  9068. [
  9069. {
  9070. name: "Micro",
  9071. height: math.unit(16 + 6 / 12, "feet")
  9072. },
  9073. {
  9074. name: "Third Dimension",
  9075. height: math.unit(40, "meters")
  9076. },
  9077. {
  9078. name: "Normal",
  9079. height: math.unit(660, "feet"),
  9080. default: true
  9081. },
  9082. {
  9083. name: "Megamacro",
  9084. height: math.unit(10, "miles")
  9085. },
  9086. {
  9087. name: "Planetary Launch",
  9088. height: math.unit(500, "miles")
  9089. },
  9090. {
  9091. name: "Interstellar",
  9092. height: math.unit(1e9, "miles")
  9093. },
  9094. {
  9095. name: "Leaving the Universe",
  9096. height: math.unit(1, "gigaparsec")
  9097. },
  9098. {
  9099. name: "Travelling Universes",
  9100. height: math.unit(30e15, "parsecs")
  9101. },
  9102. ]
  9103. ))
  9104. characterMakers.push(() => makeCharacter(
  9105. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9106. {
  9107. front: {
  9108. height: math.unit(6, "feet"),
  9109. weight: math.unit(150, "lb"),
  9110. name: "Front",
  9111. image: {
  9112. source: "./media/characters/odyssey/front.svg",
  9113. extra: 1782 / 1582,
  9114. bottom: 0.01
  9115. }
  9116. },
  9117. side: {
  9118. height: math.unit(5.7, "feet"),
  9119. weight: math.unit(140, "lb"),
  9120. name: "Side",
  9121. image: {
  9122. source: "./media/characters/odyssey/side.svg",
  9123. extra: 6462 / 5700
  9124. }
  9125. },
  9126. },
  9127. [
  9128. {
  9129. name: "Normal",
  9130. height: math.unit(5 + 4 / 12, "feet")
  9131. },
  9132. {
  9133. name: "Macro",
  9134. height: math.unit(1, "km")
  9135. },
  9136. {
  9137. name: "Megamacro",
  9138. height: math.unit(3000, "km")
  9139. },
  9140. {
  9141. name: "Gigamacro",
  9142. height: math.unit(1, "AU"),
  9143. default: true
  9144. },
  9145. {
  9146. name: "Omniversal",
  9147. height: math.unit(100e14, "lightyears")
  9148. },
  9149. ]
  9150. ))
  9151. characterMakers.push(() => makeCharacter(
  9152. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9153. {
  9154. front: {
  9155. height: math.unit(6, "feet"),
  9156. weight: math.unit(300, "lb"),
  9157. name: "Front",
  9158. image: {
  9159. source: "./media/characters/mekuto/front.svg",
  9160. extra: 921 / 832,
  9161. bottom: 0.03
  9162. }
  9163. },
  9164. hand: {
  9165. height: math.unit(6 / 10.24, "feet"),
  9166. name: "Hand",
  9167. image: {
  9168. source: "./media/characters/mekuto/hand.svg"
  9169. }
  9170. },
  9171. foot: {
  9172. height: math.unit(6 / 5.05, "feet"),
  9173. name: "Foot",
  9174. image: {
  9175. source: "./media/characters/mekuto/foot.svg"
  9176. }
  9177. },
  9178. },
  9179. [
  9180. {
  9181. name: "Minimicro",
  9182. height: math.unit(0.2, "inches")
  9183. },
  9184. {
  9185. name: "Micro",
  9186. height: math.unit(1.5, "inches")
  9187. },
  9188. {
  9189. name: "Normal",
  9190. height: math.unit(5 + 11 / 12, "feet"),
  9191. default: true
  9192. },
  9193. {
  9194. name: "Minimacro",
  9195. height: math.unit(17 + 9 / 12, "feet")
  9196. },
  9197. {
  9198. name: "Macro",
  9199. height: math.unit(177.5, "feet")
  9200. },
  9201. {
  9202. name: "Megamacro",
  9203. height: math.unit(152, "miles")
  9204. },
  9205. ]
  9206. ))
  9207. characterMakers.push(() => makeCharacter(
  9208. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9209. {
  9210. front: {
  9211. height: math.unit(6.5, "inches"),
  9212. weight: math.unit(13, "oz"),
  9213. name: "Front",
  9214. image: {
  9215. source: "./media/characters/dafydd-tomos/front.svg",
  9216. extra: 2990 / 2603,
  9217. bottom: 0.03
  9218. }
  9219. },
  9220. },
  9221. [
  9222. {
  9223. name: "Micro",
  9224. height: math.unit(6.5, "inches"),
  9225. default: true
  9226. },
  9227. ]
  9228. ))
  9229. characterMakers.push(() => makeCharacter(
  9230. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9231. {
  9232. front: {
  9233. height: math.unit(6, "feet"),
  9234. weight: math.unit(150, "lb"),
  9235. name: "Front",
  9236. image: {
  9237. source: "./media/characters/splinter/front.svg",
  9238. extra: 2990 / 2882,
  9239. bottom: 0.04
  9240. }
  9241. },
  9242. back: {
  9243. height: math.unit(6, "feet"),
  9244. weight: math.unit(150, "lb"),
  9245. name: "Back",
  9246. image: {
  9247. source: "./media/characters/splinter/back.svg",
  9248. extra: 2990 / 2882,
  9249. bottom: 0.04
  9250. }
  9251. },
  9252. },
  9253. [
  9254. {
  9255. name: "Normal",
  9256. height: math.unit(6, "feet")
  9257. },
  9258. {
  9259. name: "Macro",
  9260. height: math.unit(230, "meters"),
  9261. default: true
  9262. },
  9263. ]
  9264. ))
  9265. characterMakers.push(() => makeCharacter(
  9266. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9267. {
  9268. front: {
  9269. height: math.unit(4 + 10 / 12, "feet"),
  9270. weight: math.unit(480, "lb"),
  9271. name: "Front",
  9272. image: {
  9273. source: "./media/characters/snow-gabumon/front.svg",
  9274. extra: 1140 / 963,
  9275. bottom: 0.058
  9276. }
  9277. },
  9278. back: {
  9279. height: math.unit(4 + 10 / 12, "feet"),
  9280. weight: math.unit(480, "lb"),
  9281. name: "Back",
  9282. image: {
  9283. source: "./media/characters/snow-gabumon/back.svg",
  9284. extra: 1115 / 962,
  9285. bottom: 0.041
  9286. }
  9287. },
  9288. frontUndresed: {
  9289. height: math.unit(4 + 10 / 12, "feet"),
  9290. weight: math.unit(480, "lb"),
  9291. name: "Front (Undressed)",
  9292. image: {
  9293. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9294. extra: 1061 / 960,
  9295. bottom: 0.045
  9296. }
  9297. },
  9298. },
  9299. [
  9300. {
  9301. name: "Micro",
  9302. height: math.unit(1, "inch")
  9303. },
  9304. {
  9305. name: "Normal",
  9306. height: math.unit(4 + 10 / 12, "feet"),
  9307. default: true
  9308. },
  9309. {
  9310. name: "Macro",
  9311. height: math.unit(200, "feet")
  9312. },
  9313. {
  9314. name: "Megamacro",
  9315. height: math.unit(120, "miles")
  9316. },
  9317. {
  9318. name: "Gigamacro",
  9319. height: math.unit(9800, "miles")
  9320. },
  9321. ]
  9322. ))
  9323. characterMakers.push(() => makeCharacter(
  9324. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9325. {
  9326. front: {
  9327. height: math.unit(1.7, "meters"),
  9328. weight: math.unit(140, "lb"),
  9329. name: "Front",
  9330. image: {
  9331. source: "./media/characters/moody/front.svg",
  9332. extra: 3226 / 3007,
  9333. bottom: 0.087
  9334. }
  9335. },
  9336. },
  9337. [
  9338. {
  9339. name: "Micro",
  9340. height: math.unit(1, "mm")
  9341. },
  9342. {
  9343. name: "Normal",
  9344. height: math.unit(1.7, "meters"),
  9345. default: true
  9346. },
  9347. {
  9348. name: "Macro",
  9349. height: math.unit(80, "meters")
  9350. },
  9351. {
  9352. name: "Macro+",
  9353. height: math.unit(500, "meters")
  9354. },
  9355. ]
  9356. ))
  9357. characterMakers.push(() => makeCharacter(
  9358. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9359. {
  9360. front: {
  9361. height: math.unit(6, "feet"),
  9362. weight: math.unit(150, "lb"),
  9363. name: "Front",
  9364. image: {
  9365. source: "./media/characters/zyas/front.svg",
  9366. extra: 1180 / 1120,
  9367. bottom: 0.045
  9368. }
  9369. },
  9370. },
  9371. [
  9372. {
  9373. name: "Normal",
  9374. height: math.unit(10, "feet"),
  9375. default: true
  9376. },
  9377. {
  9378. name: "Macro",
  9379. height: math.unit(500, "feet")
  9380. },
  9381. {
  9382. name: "Megamacro",
  9383. height: math.unit(5, "miles")
  9384. },
  9385. {
  9386. name: "Teramacro",
  9387. height: math.unit(150000, "miles")
  9388. },
  9389. ]
  9390. ))
  9391. characterMakers.push(() => makeCharacter(
  9392. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9393. {
  9394. front: {
  9395. height: math.unit(6, "feet"),
  9396. weight: math.unit(150, "lb"),
  9397. name: "Front",
  9398. image: {
  9399. source: "./media/characters/cuon/front.svg",
  9400. extra: 1390 / 1320,
  9401. bottom: 0.008
  9402. }
  9403. },
  9404. },
  9405. [
  9406. {
  9407. name: "Micro",
  9408. height: math.unit(3, "inches")
  9409. },
  9410. {
  9411. name: "Normal",
  9412. height: math.unit(18 + 9 / 12, "feet"),
  9413. default: true
  9414. },
  9415. {
  9416. name: "Macro",
  9417. height: math.unit(360, "feet")
  9418. },
  9419. {
  9420. name: "Megamacro",
  9421. height: math.unit(360, "miles")
  9422. },
  9423. ]
  9424. ))
  9425. characterMakers.push(() => makeCharacter(
  9426. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9427. {
  9428. front: {
  9429. height: math.unit(2.4, "meters"),
  9430. weight: math.unit(70, "kg"),
  9431. name: "Front",
  9432. image: {
  9433. source: "./media/characters/nyanuxk/front.svg",
  9434. extra: 1172 / 1084,
  9435. bottom: 0.065
  9436. }
  9437. },
  9438. side: {
  9439. height: math.unit(2.4, "meters"),
  9440. weight: math.unit(70, "kg"),
  9441. name: "Side",
  9442. image: {
  9443. source: "./media/characters/nyanuxk/side.svg",
  9444. extra: 1190 / 1132,
  9445. bottom: 0.007
  9446. }
  9447. },
  9448. back: {
  9449. height: math.unit(2.4, "meters"),
  9450. weight: math.unit(70, "kg"),
  9451. name: "Back",
  9452. image: {
  9453. source: "./media/characters/nyanuxk/back.svg",
  9454. extra: 1200 / 1141,
  9455. bottom: 0.015
  9456. }
  9457. },
  9458. foot: {
  9459. height: math.unit(0.52, "meters"),
  9460. name: "Foot",
  9461. image: {
  9462. source: "./media/characters/nyanuxk/foot.svg"
  9463. }
  9464. },
  9465. },
  9466. [
  9467. {
  9468. name: "Micro",
  9469. height: math.unit(2, "cm")
  9470. },
  9471. {
  9472. name: "Normal",
  9473. height: math.unit(2.4, "meters"),
  9474. default: true
  9475. },
  9476. {
  9477. name: "Smaller Macro",
  9478. height: math.unit(120, "meters")
  9479. },
  9480. {
  9481. name: "Bigger Macro",
  9482. height: math.unit(1.2, "km")
  9483. },
  9484. {
  9485. name: "Megamacro",
  9486. height: math.unit(15, "kilometers")
  9487. },
  9488. {
  9489. name: "Gigamacro",
  9490. height: math.unit(2000, "km")
  9491. },
  9492. {
  9493. name: "Teramacro",
  9494. height: math.unit(500000, "km")
  9495. },
  9496. ]
  9497. ))
  9498. characterMakers.push(() => makeCharacter(
  9499. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9500. {
  9501. side: {
  9502. height: math.unit(6, "feet"),
  9503. name: "Side",
  9504. image: {
  9505. source: "./media/characters/ailbhe/side.svg",
  9506. extra: 757 / 464,
  9507. bottom: 0.041
  9508. }
  9509. },
  9510. },
  9511. [
  9512. {
  9513. name: "Normal",
  9514. height: math.unit(1.07, "meters"),
  9515. default: true
  9516. },
  9517. ]
  9518. ))
  9519. characterMakers.push(() => makeCharacter(
  9520. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9521. {
  9522. front: {
  9523. height: math.unit(6, "feet"),
  9524. weight: math.unit(120, "kg"),
  9525. name: "Front",
  9526. image: {
  9527. source: "./media/characters/zevulfius/front.svg",
  9528. extra: 965 / 903
  9529. }
  9530. },
  9531. side: {
  9532. height: math.unit(6, "feet"),
  9533. weight: math.unit(120, "kg"),
  9534. name: "Side",
  9535. image: {
  9536. source: "./media/characters/zevulfius/side.svg",
  9537. extra: 939 / 900
  9538. }
  9539. },
  9540. back: {
  9541. height: math.unit(6, "feet"),
  9542. weight: math.unit(120, "kg"),
  9543. name: "Back",
  9544. image: {
  9545. source: "./media/characters/zevulfius/back.svg",
  9546. extra: 918 / 854,
  9547. bottom: 0.005
  9548. }
  9549. },
  9550. foot: {
  9551. height: math.unit(6 / 3.72, "feet"),
  9552. name: "Foot",
  9553. image: {
  9554. source: "./media/characters/zevulfius/foot.svg"
  9555. }
  9556. },
  9557. },
  9558. [
  9559. {
  9560. name: "Macro",
  9561. height: math.unit(750, "meters")
  9562. },
  9563. {
  9564. name: "Megamacro",
  9565. height: math.unit(20, "km"),
  9566. default: true
  9567. },
  9568. {
  9569. name: "Gigamacro",
  9570. height: math.unit(2000, "km")
  9571. },
  9572. {
  9573. name: "Teramacro",
  9574. height: math.unit(250000, "km")
  9575. },
  9576. ]
  9577. ))
  9578. characterMakers.push(() => makeCharacter(
  9579. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9580. {
  9581. front: {
  9582. height: math.unit(100, "feet"),
  9583. weight: math.unit(350, "kg"),
  9584. name: "Front",
  9585. image: {
  9586. source: "./media/characters/rikes/front.svg",
  9587. extra: 1565 / 1483,
  9588. bottom: 0.017
  9589. }
  9590. },
  9591. },
  9592. [
  9593. {
  9594. name: "Macro",
  9595. height: math.unit(100, "feet"),
  9596. default: true
  9597. },
  9598. ]
  9599. ))
  9600. characterMakers.push(() => makeCharacter(
  9601. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9602. {
  9603. anthro: {
  9604. height: math.unit(8, "feet"),
  9605. weight: math.unit(120, "kg"),
  9606. name: "Anthro",
  9607. image: {
  9608. source: "./media/characters/adam-silver-mane/anthro.svg",
  9609. extra: 5743 / 5339,
  9610. bottom: 0.07
  9611. }
  9612. },
  9613. taur: {
  9614. height: math.unit(16, "feet"),
  9615. weight: math.unit(1500, "kg"),
  9616. name: "Taur",
  9617. image: {
  9618. source: "./media/characters/adam-silver-mane/taur.svg",
  9619. extra: 1713 / 1571,
  9620. bottom: 0.01
  9621. }
  9622. },
  9623. },
  9624. [
  9625. {
  9626. name: "Normal",
  9627. height: math.unit(8, "feet")
  9628. },
  9629. {
  9630. name: "Minimacro",
  9631. height: math.unit(80, "feet")
  9632. },
  9633. {
  9634. name: "Macro",
  9635. height: math.unit(800, "feet"),
  9636. default: true
  9637. },
  9638. {
  9639. name: "Megamacro",
  9640. height: math.unit(8000, "feet")
  9641. },
  9642. {
  9643. name: "Gigamacro",
  9644. height: math.unit(800, "miles")
  9645. },
  9646. {
  9647. name: "Teramacro",
  9648. height: math.unit(80000, "miles")
  9649. },
  9650. {
  9651. name: "Celestial",
  9652. height: math.unit(8e6, "miles")
  9653. },
  9654. {
  9655. name: "Star Dragon",
  9656. height: math.unit(800000, "parsecs")
  9657. },
  9658. {
  9659. name: "Godly",
  9660. height: math.unit(800, "teraparsecs")
  9661. },
  9662. ]
  9663. ))
  9664. characterMakers.push(() => makeCharacter(
  9665. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9666. {
  9667. front: {
  9668. height: math.unit(6, "feet"),
  9669. weight: math.unit(150, "lb"),
  9670. name: "Front",
  9671. image: {
  9672. source: "./media/characters/ky'owin/front.svg",
  9673. extra: 3888 / 3068,
  9674. bottom: 0.015
  9675. }
  9676. },
  9677. },
  9678. [
  9679. {
  9680. name: "Normal",
  9681. height: math.unit(6 + 8 / 12, "feet")
  9682. },
  9683. {
  9684. name: "Large",
  9685. height: math.unit(68, "feet")
  9686. },
  9687. {
  9688. name: "Macro",
  9689. height: math.unit(132, "feet")
  9690. },
  9691. {
  9692. name: "Macro+",
  9693. height: math.unit(340, "feet")
  9694. },
  9695. {
  9696. name: "Macro++",
  9697. height: math.unit(680, "feet"),
  9698. default: true
  9699. },
  9700. {
  9701. name: "Megamacro",
  9702. height: math.unit(1, "mile")
  9703. },
  9704. {
  9705. name: "Megamacro+",
  9706. height: math.unit(10, "miles")
  9707. },
  9708. ]
  9709. ))
  9710. characterMakers.push(() => makeCharacter(
  9711. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9712. {
  9713. front: {
  9714. height: math.unit(4, "feet"),
  9715. weight: math.unit(50, "lb"),
  9716. name: "Front",
  9717. image: {
  9718. source: "./media/characters/mal/front.svg",
  9719. extra: 785 / 724,
  9720. bottom: 0.07
  9721. }
  9722. },
  9723. },
  9724. [
  9725. {
  9726. name: "Micro",
  9727. height: math.unit(4, "inches")
  9728. },
  9729. {
  9730. name: "Normal",
  9731. height: math.unit(4, "feet"),
  9732. default: true
  9733. },
  9734. {
  9735. name: "Macro",
  9736. height: math.unit(200, "feet")
  9737. },
  9738. ]
  9739. ))
  9740. characterMakers.push(() => makeCharacter(
  9741. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9742. {
  9743. front: {
  9744. height: math.unit(6, "feet"),
  9745. weight: math.unit(150, "lb"),
  9746. name: "Front",
  9747. image: {
  9748. source: "./media/characters/jordan-deware/front.svg",
  9749. extra: 1191 / 1012
  9750. }
  9751. },
  9752. },
  9753. [
  9754. {
  9755. name: "Nano",
  9756. height: math.unit(0.01, "mm")
  9757. },
  9758. {
  9759. name: "Minimicro",
  9760. height: math.unit(1, "mm")
  9761. },
  9762. {
  9763. name: "Micro",
  9764. height: math.unit(0.5, "inches")
  9765. },
  9766. {
  9767. name: "Normal",
  9768. height: math.unit(4, "feet"),
  9769. default: true
  9770. },
  9771. {
  9772. name: "Minimacro",
  9773. height: math.unit(40, "meters")
  9774. },
  9775. {
  9776. name: "Small Macro",
  9777. height: math.unit(400, "meters")
  9778. },
  9779. {
  9780. name: "Macro",
  9781. height: math.unit(4, "miles")
  9782. },
  9783. {
  9784. name: "Megamacro",
  9785. height: math.unit(40, "miles")
  9786. },
  9787. {
  9788. name: "Megamacro+",
  9789. height: math.unit(400, "miles")
  9790. },
  9791. {
  9792. name: "Gigamacro",
  9793. height: math.unit(400000, "miles")
  9794. },
  9795. ]
  9796. ))
  9797. characterMakers.push(() => makeCharacter(
  9798. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9799. {
  9800. side: {
  9801. height: math.unit(6, "feet"),
  9802. weight: math.unit(150, "lb"),
  9803. name: "Side",
  9804. image: {
  9805. source: "./media/characters/kimiko/side.svg",
  9806. extra: 600 / 358
  9807. }
  9808. },
  9809. },
  9810. [
  9811. {
  9812. name: "Normal",
  9813. height: math.unit(15, "feet"),
  9814. default: true
  9815. },
  9816. {
  9817. name: "Macro",
  9818. height: math.unit(220, "feet")
  9819. },
  9820. {
  9821. name: "Macro+",
  9822. height: math.unit(1450, "feet")
  9823. },
  9824. {
  9825. name: "Megamacro",
  9826. height: math.unit(11500, "feet")
  9827. },
  9828. {
  9829. name: "Gigamacro",
  9830. height: math.unit(9500, "miles")
  9831. },
  9832. {
  9833. name: "Teramacro",
  9834. height: math.unit(2208005005, "miles")
  9835. },
  9836. {
  9837. name: "Examacro",
  9838. height: math.unit(2750, "parsecs")
  9839. },
  9840. {
  9841. name: "Zettamacro",
  9842. height: math.unit(101500, "parsecs")
  9843. },
  9844. ]
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9848. {
  9849. front: {
  9850. height: math.unit(6, "feet"),
  9851. weight: math.unit(70, "kg"),
  9852. name: "Front",
  9853. image: {
  9854. source: "./media/characters/andrew-sleepy/front.svg"
  9855. }
  9856. },
  9857. side: {
  9858. height: math.unit(6, "feet"),
  9859. weight: math.unit(70, "kg"),
  9860. name: "Side",
  9861. image: {
  9862. source: "./media/characters/andrew-sleepy/side.svg"
  9863. }
  9864. },
  9865. },
  9866. [
  9867. {
  9868. name: "Micro",
  9869. height: math.unit(1, "mm"),
  9870. default: true
  9871. },
  9872. ]
  9873. ))
  9874. characterMakers.push(() => makeCharacter(
  9875. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9876. {
  9877. front: {
  9878. height: math.unit(6, "feet"),
  9879. weight: math.unit(150, "lb"),
  9880. name: "Front",
  9881. image: {
  9882. source: "./media/characters/judio/front.svg",
  9883. extra: 1258 / 1110
  9884. }
  9885. },
  9886. },
  9887. [
  9888. {
  9889. name: "Normal",
  9890. height: math.unit(5 + 6 / 12, "feet")
  9891. },
  9892. {
  9893. name: "Macro",
  9894. height: math.unit(1000, "feet"),
  9895. default: true
  9896. },
  9897. {
  9898. name: "Megamacro",
  9899. height: math.unit(10, "miles")
  9900. },
  9901. ]
  9902. ))
  9903. characterMakers.push(() => makeCharacter(
  9904. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9905. {
  9906. front: {
  9907. height: math.unit(6, "feet"),
  9908. weight: math.unit(68, "kg"),
  9909. name: "Front",
  9910. image: {
  9911. source: "./media/characters/nomaxice/front.svg",
  9912. extra: 1498 / 1073,
  9913. bottom: 0.075
  9914. }
  9915. },
  9916. foot: {
  9917. height: math.unit(1.1, "feet"),
  9918. name: "Foot",
  9919. image: {
  9920. source: "./media/characters/nomaxice/foot.svg"
  9921. }
  9922. },
  9923. },
  9924. [
  9925. {
  9926. name: "Micro",
  9927. height: math.unit(8, "cm")
  9928. },
  9929. {
  9930. name: "Norm",
  9931. height: math.unit(1.82, "m")
  9932. },
  9933. {
  9934. name: "Norm+",
  9935. height: math.unit(8.8, "feet")
  9936. },
  9937. {
  9938. name: "Big",
  9939. height: math.unit(8, "meters"),
  9940. default: true
  9941. },
  9942. {
  9943. name: "Macro",
  9944. height: math.unit(18, "meters")
  9945. },
  9946. {
  9947. name: "Macro+",
  9948. height: math.unit(88, "meters")
  9949. },
  9950. ]
  9951. ))
  9952. characterMakers.push(() => makeCharacter(
  9953. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9954. {
  9955. front: {
  9956. height: math.unit(12, "feet"),
  9957. weight: math.unit(1.5, "tons"),
  9958. name: "Front",
  9959. image: {
  9960. source: "./media/characters/dydros/front.svg",
  9961. extra: 863 / 800,
  9962. bottom: 0.015
  9963. }
  9964. },
  9965. back: {
  9966. height: math.unit(12, "feet"),
  9967. weight: math.unit(1.5, "tons"),
  9968. name: "Back",
  9969. image: {
  9970. source: "./media/characters/dydros/back.svg",
  9971. extra: 900 / 843,
  9972. bottom: 0.005
  9973. }
  9974. },
  9975. },
  9976. [
  9977. {
  9978. name: "Normal",
  9979. height: math.unit(12, "feet"),
  9980. default: true
  9981. },
  9982. ]
  9983. ))
  9984. characterMakers.push(() => makeCharacter(
  9985. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9986. {
  9987. front: {
  9988. height: math.unit(6, "feet"),
  9989. weight: math.unit(100, "kg"),
  9990. name: "Front",
  9991. image: {
  9992. source: "./media/characters/riggi/front.svg",
  9993. extra: 5787 / 5303
  9994. }
  9995. },
  9996. hyper: {
  9997. height: math.unit(6 * 5 / 3, "feet"),
  9998. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9999. name: "Hyper",
  10000. image: {
  10001. source: "./media/characters/riggi/hyper.svg",
  10002. extra: 3595 / 3485
  10003. }
  10004. },
  10005. },
  10006. [
  10007. {
  10008. name: "Small Macro",
  10009. height: math.unit(50, "feet")
  10010. },
  10011. {
  10012. name: "Default",
  10013. height: math.unit(200, "feet"),
  10014. default: true
  10015. },
  10016. {
  10017. name: "Loom",
  10018. height: math.unit(10000, "feet")
  10019. },
  10020. {
  10021. name: "Cruising Altitude",
  10022. height: math.unit(30000, "feet")
  10023. },
  10024. {
  10025. name: "Megamacro",
  10026. height: math.unit(100, "miles")
  10027. },
  10028. {
  10029. name: "Continent Sized",
  10030. height: math.unit(2800, "miles")
  10031. },
  10032. {
  10033. name: "Earth Sized",
  10034. height: math.unit(8000, "miles")
  10035. },
  10036. ]
  10037. ))
  10038. characterMakers.push(() => makeCharacter(
  10039. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10040. {
  10041. front: {
  10042. height: math.unit(6, "feet"),
  10043. weight: math.unit(250, "lb"),
  10044. name: "Front",
  10045. image: {
  10046. source: "./media/characters/alexi/front.svg",
  10047. extra: 3483 / 3291,
  10048. bottom: 0.04
  10049. }
  10050. },
  10051. back: {
  10052. height: math.unit(6, "feet"),
  10053. weight: math.unit(250, "lb"),
  10054. name: "Back",
  10055. image: {
  10056. source: "./media/characters/alexi/back.svg",
  10057. extra: 3533 / 3356,
  10058. bottom: 0.021
  10059. }
  10060. },
  10061. frontTransforming: {
  10062. height: math.unit(8.58, "feet"),
  10063. weight: math.unit(1300, "lb"),
  10064. name: "Transforming",
  10065. image: {
  10066. source: "./media/characters/alexi/front-transforming.svg",
  10067. extra: 437 / 409,
  10068. bottom: 19 / 458.66
  10069. }
  10070. },
  10071. frontTransformed: {
  10072. height: math.unit(12.5, "feet"),
  10073. weight: math.unit(4000, "lb"),
  10074. name: "Transformed",
  10075. image: {
  10076. source: "./media/characters/alexi/front-transformed.svg",
  10077. extra: 639 / 614,
  10078. bottom: 30.55 / 671
  10079. }
  10080. },
  10081. },
  10082. [
  10083. {
  10084. name: "Normal",
  10085. height: math.unit(3, "meters"),
  10086. default: true
  10087. },
  10088. {
  10089. name: "Minimacro",
  10090. height: math.unit(30, "meters")
  10091. },
  10092. {
  10093. name: "Macro",
  10094. height: math.unit(500, "meters")
  10095. },
  10096. {
  10097. name: "Megamacro",
  10098. height: math.unit(9000, "km")
  10099. },
  10100. {
  10101. name: "Teramacro",
  10102. height: math.unit(384000, "km")
  10103. },
  10104. ]
  10105. ))
  10106. characterMakers.push(() => makeCharacter(
  10107. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10108. {
  10109. front: {
  10110. height: math.unit(6, "feet"),
  10111. weight: math.unit(150, "lb"),
  10112. name: "Front",
  10113. image: {
  10114. source: "./media/characters/kayroo/front.svg",
  10115. extra: 1153 / 1038,
  10116. bottom: 0.06
  10117. }
  10118. },
  10119. foot: {
  10120. height: math.unit(6, "feet"),
  10121. weight: math.unit(150, "lb"),
  10122. name: "Foot",
  10123. image: {
  10124. source: "./media/characters/kayroo/foot.svg"
  10125. }
  10126. },
  10127. },
  10128. [
  10129. {
  10130. name: "Normal",
  10131. height: math.unit(8, "feet"),
  10132. default: true
  10133. },
  10134. {
  10135. name: "Minimacro",
  10136. height: math.unit(250, "feet")
  10137. },
  10138. {
  10139. name: "Macro",
  10140. height: math.unit(2800, "feet")
  10141. },
  10142. {
  10143. name: "Megamacro",
  10144. height: math.unit(5200, "feet")
  10145. },
  10146. {
  10147. name: "Gigamacro",
  10148. height: math.unit(27000, "feet")
  10149. },
  10150. {
  10151. name: "Omega",
  10152. height: math.unit(45000, "feet")
  10153. },
  10154. ]
  10155. ))
  10156. characterMakers.push(() => makeCharacter(
  10157. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10158. {
  10159. front: {
  10160. height: math.unit(18, "feet"),
  10161. weight: math.unit(5800, "lb"),
  10162. name: "Front",
  10163. image: {
  10164. source: "./media/characters/rhys/front.svg",
  10165. extra: 3386 / 3090,
  10166. bottom: 0.07
  10167. }
  10168. },
  10169. },
  10170. [
  10171. {
  10172. name: "Normal",
  10173. height: math.unit(18, "feet"),
  10174. default: true
  10175. },
  10176. {
  10177. name: "Working Size",
  10178. height: math.unit(200, "feet")
  10179. },
  10180. {
  10181. name: "Demolition Size",
  10182. height: math.unit(2000, "feet")
  10183. },
  10184. {
  10185. name: "Maximum Licensed Size",
  10186. height: math.unit(5, "miles")
  10187. },
  10188. {
  10189. name: "Maximum Observed Size",
  10190. height: math.unit(10, "yottameters")
  10191. },
  10192. ]
  10193. ))
  10194. characterMakers.push(() => makeCharacter(
  10195. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10196. {
  10197. front: {
  10198. height: math.unit(6, "feet"),
  10199. weight: math.unit(250, "lb"),
  10200. name: "Front",
  10201. image: {
  10202. source: "./media/characters/toto/front.svg",
  10203. extra: 527 / 479,
  10204. bottom: 0.05
  10205. }
  10206. },
  10207. },
  10208. [
  10209. {
  10210. name: "Micro",
  10211. height: math.unit(3, "feet")
  10212. },
  10213. {
  10214. name: "Normal",
  10215. height: math.unit(10, "feet")
  10216. },
  10217. {
  10218. name: "Macro",
  10219. height: math.unit(150, "feet"),
  10220. default: true
  10221. },
  10222. {
  10223. name: "Megamacro",
  10224. height: math.unit(1200, "feet")
  10225. },
  10226. ]
  10227. ))
  10228. characterMakers.push(() => makeCharacter(
  10229. { name: "King", species: ["lion"], tags: ["anthro"] },
  10230. {
  10231. back: {
  10232. height: math.unit(6, "feet"),
  10233. weight: math.unit(150, "lb"),
  10234. name: "Back",
  10235. image: {
  10236. source: "./media/characters/king/back.svg"
  10237. }
  10238. },
  10239. },
  10240. [
  10241. {
  10242. name: "Micro",
  10243. height: math.unit(2, "inches")
  10244. },
  10245. {
  10246. name: "Normal",
  10247. height: math.unit(8, "feet")
  10248. },
  10249. {
  10250. name: "Macro",
  10251. height: math.unit(200, "feet"),
  10252. default: true
  10253. },
  10254. {
  10255. name: "Megamacro",
  10256. height: math.unit(50, "miles")
  10257. },
  10258. ]
  10259. ))
  10260. characterMakers.push(() => makeCharacter(
  10261. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10262. {
  10263. anthro: {
  10264. height: math.unit(6 + 5 / 12, "feet"),
  10265. weight: math.unit(280, "lb"),
  10266. name: "Anthro",
  10267. image: {
  10268. source: "./media/characters/cordite/anthro.svg",
  10269. extra: 1986 / 1905,
  10270. bottom: 0.025
  10271. }
  10272. },
  10273. feral: {
  10274. height: math.unit(2, "feet"),
  10275. weight: math.unit(90, "lb"),
  10276. name: "Feral",
  10277. image: {
  10278. source: "./media/characters/cordite/feral.svg",
  10279. extra: 1260 / 755,
  10280. bottom: 0.05
  10281. }
  10282. },
  10283. },
  10284. [
  10285. {
  10286. name: "Normal",
  10287. height: math.unit(6 + 5 / 12, "feet"),
  10288. default: true
  10289. },
  10290. ]
  10291. ))
  10292. characterMakers.push(() => makeCharacter(
  10293. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10294. {
  10295. front: {
  10296. height: math.unit(6, "feet"),
  10297. weight: math.unit(150, "lb"),
  10298. name: "Front",
  10299. image: {
  10300. source: "./media/characters/pianostrong/front.svg",
  10301. extra: 6577 / 6254,
  10302. bottom: 0.02
  10303. }
  10304. },
  10305. side: {
  10306. height: math.unit(6, "feet"),
  10307. weight: math.unit(150, "lb"),
  10308. name: "Side",
  10309. image: {
  10310. source: "./media/characters/pianostrong/side.svg",
  10311. extra: 6106 / 5730
  10312. }
  10313. },
  10314. back: {
  10315. height: math.unit(6, "feet"),
  10316. weight: math.unit(150, "lb"),
  10317. name: "Back",
  10318. image: {
  10319. source: "./media/characters/pianostrong/back.svg",
  10320. extra: 6085 / 5733,
  10321. bottom: 0.01
  10322. }
  10323. },
  10324. },
  10325. [
  10326. {
  10327. name: "Macro",
  10328. height: math.unit(100, "feet")
  10329. },
  10330. {
  10331. name: "Macro+",
  10332. height: math.unit(300, "feet"),
  10333. default: true
  10334. },
  10335. {
  10336. name: "Macro++",
  10337. height: math.unit(1000, "feet")
  10338. },
  10339. ]
  10340. ))
  10341. characterMakers.push(() => makeCharacter(
  10342. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10343. {
  10344. front: {
  10345. height: math.unit(6, "feet"),
  10346. weight: math.unit(150, "lb"),
  10347. name: "Front",
  10348. image: {
  10349. source: "./media/characters/kona/front.svg",
  10350. extra: 2960 / 2629,
  10351. bottom: 0.005
  10352. }
  10353. },
  10354. },
  10355. [
  10356. {
  10357. name: "Normal",
  10358. height: math.unit(11 + 8 / 12, "feet")
  10359. },
  10360. {
  10361. name: "Macro",
  10362. height: math.unit(850, "feet"),
  10363. default: true
  10364. },
  10365. {
  10366. name: "Macro+",
  10367. height: math.unit(1.5, "km"),
  10368. default: true
  10369. },
  10370. {
  10371. name: "Megamacro",
  10372. height: math.unit(80, "miles")
  10373. },
  10374. {
  10375. name: "Gigamacro",
  10376. height: math.unit(3500, "miles")
  10377. },
  10378. ]
  10379. ))
  10380. characterMakers.push(() => makeCharacter(
  10381. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10382. {
  10383. side: {
  10384. height: math.unit(1.9, "meters"),
  10385. weight: math.unit(326, "kg"),
  10386. name: "Side",
  10387. image: {
  10388. source: "./media/characters/levi/side.svg",
  10389. extra: 1704 / 1334,
  10390. bottom: 0.02
  10391. }
  10392. },
  10393. },
  10394. [
  10395. {
  10396. name: "Normal",
  10397. height: math.unit(1.9, "meters"),
  10398. default: true
  10399. },
  10400. {
  10401. name: "Macro",
  10402. height: math.unit(20, "meters")
  10403. },
  10404. {
  10405. name: "Macro+",
  10406. height: math.unit(200, "meters")
  10407. },
  10408. {
  10409. name: "Megamacro",
  10410. height: math.unit(2, "km")
  10411. },
  10412. {
  10413. name: "Megamacro+",
  10414. height: math.unit(20, "km")
  10415. },
  10416. {
  10417. name: "Gigamacro",
  10418. height: math.unit(2500, "km")
  10419. },
  10420. {
  10421. name: "Gigamacro+",
  10422. height: math.unit(120000, "km")
  10423. },
  10424. {
  10425. name: "Teramacro",
  10426. height: math.unit(7.77e6, "km")
  10427. },
  10428. ]
  10429. ))
  10430. characterMakers.push(() => makeCharacter(
  10431. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10432. {
  10433. front: {
  10434. height: math.unit(6 + 4 / 12, "feet"),
  10435. weight: math.unit(188, "lb"),
  10436. name: "Front",
  10437. image: {
  10438. source: "./media/characters/bmc/front.svg",
  10439. extra: 1067 / 1022,
  10440. bottom: 0.047
  10441. }
  10442. },
  10443. },
  10444. [
  10445. {
  10446. name: "Human-sized",
  10447. height: math.unit(6 + 4 / 12, "feet")
  10448. },
  10449. {
  10450. name: "Small",
  10451. height: math.unit(250, "feet")
  10452. },
  10453. {
  10454. name: "Normal",
  10455. height: math.unit(1250, "feet"),
  10456. default: true
  10457. },
  10458. {
  10459. name: "Good Day",
  10460. height: math.unit(88, "miles")
  10461. },
  10462. {
  10463. name: "Largest Measured Size",
  10464. height: math.unit(11.2e6, "lightyears")
  10465. },
  10466. ]
  10467. ))
  10468. characterMakers.push(() => makeCharacter(
  10469. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10470. {
  10471. front: {
  10472. height: math.unit(20, "feet"),
  10473. weight: math.unit(2016, "kg"),
  10474. name: "Front",
  10475. image: {
  10476. source: "./media/characters/sven-the-kaiju/front.svg",
  10477. extra: 1479 / 1449,
  10478. bottom: 0.05
  10479. }
  10480. },
  10481. },
  10482. [
  10483. {
  10484. name: "Fairy",
  10485. height: math.unit(6, "inches")
  10486. },
  10487. {
  10488. name: "Normal",
  10489. height: math.unit(20, "feet"),
  10490. default: true
  10491. },
  10492. {
  10493. name: "Rampage",
  10494. height: math.unit(200, "feet")
  10495. },
  10496. {
  10497. name: "Archfey Forest Guardian",
  10498. height: math.unit(1, "mile")
  10499. },
  10500. ]
  10501. ))
  10502. characterMakers.push(() => makeCharacter(
  10503. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10504. {
  10505. front: {
  10506. height: math.unit(4, "meters"),
  10507. weight: math.unit(2, "tons"),
  10508. name: "Front",
  10509. image: {
  10510. source: "./media/characters/marik/front.svg",
  10511. extra: 1057 / 1003,
  10512. bottom: 0.08
  10513. }
  10514. },
  10515. },
  10516. [
  10517. {
  10518. name: "Normal",
  10519. height: math.unit(4, "meters"),
  10520. default: true
  10521. },
  10522. {
  10523. name: "Macro",
  10524. height: math.unit(20, "meters")
  10525. },
  10526. {
  10527. name: "Megamacro",
  10528. height: math.unit(50, "km")
  10529. },
  10530. {
  10531. name: "Gigamacro",
  10532. height: math.unit(100, "km")
  10533. },
  10534. {
  10535. name: "Alpha Macro",
  10536. height: math.unit(7.88e7, "yottameters")
  10537. },
  10538. ]
  10539. ))
  10540. characterMakers.push(() => makeCharacter(
  10541. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10542. {
  10543. front: {
  10544. height: math.unit(6, "feet"),
  10545. weight: math.unit(110, "lb"),
  10546. name: "Front",
  10547. image: {
  10548. source: "./media/characters/mel/front.svg",
  10549. extra: 736 / 617,
  10550. bottom: 0.017
  10551. }
  10552. },
  10553. },
  10554. [
  10555. {
  10556. name: "Pico",
  10557. height: math.unit(3, "pm")
  10558. },
  10559. {
  10560. name: "Nano",
  10561. height: math.unit(3, "nm")
  10562. },
  10563. {
  10564. name: "Micro",
  10565. height: math.unit(0.3, "mm"),
  10566. default: true
  10567. },
  10568. {
  10569. name: "Micro+",
  10570. height: math.unit(3, "mm")
  10571. },
  10572. {
  10573. name: "Normal",
  10574. height: math.unit(5 + 10.5 / 12, "feet")
  10575. },
  10576. ]
  10577. ))
  10578. characterMakers.push(() => makeCharacter(
  10579. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10580. {
  10581. kaiju: {
  10582. height: math.unit(1.75, "meters"),
  10583. weight: math.unit(55, "kg"),
  10584. name: "Kaiju",
  10585. image: {
  10586. source: "./media/characters/lykonous/kaiju.svg",
  10587. extra: 1055 / 946,
  10588. bottom: 0.135
  10589. }
  10590. },
  10591. },
  10592. [
  10593. {
  10594. name: "Normal",
  10595. height: math.unit(2.5, "meters"),
  10596. default: true
  10597. },
  10598. {
  10599. name: "Kaiju Dragon",
  10600. height: math.unit(60, "meters")
  10601. },
  10602. {
  10603. name: "Mega Kaiju",
  10604. height: math.unit(120, "km")
  10605. },
  10606. {
  10607. name: "Giga Kaiju",
  10608. height: math.unit(200, "megameters")
  10609. },
  10610. {
  10611. name: "Terra Kaiju",
  10612. height: math.unit(400, "gigameters")
  10613. },
  10614. {
  10615. name: "Kaiju Dragon God",
  10616. height: math.unit(13000, "exaparsecs")
  10617. },
  10618. ]
  10619. ))
  10620. characterMakers.push(() => makeCharacter(
  10621. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10622. {
  10623. front: {
  10624. height: math.unit(6, "feet"),
  10625. weight: math.unit(150, "lb"),
  10626. name: "Front",
  10627. image: {
  10628. source: "./media/characters/blü/front.svg",
  10629. extra: 1883 / 1564,
  10630. bottom: 0.031
  10631. }
  10632. },
  10633. },
  10634. [
  10635. {
  10636. name: "Normal",
  10637. height: math.unit(13, "feet"),
  10638. default: true
  10639. },
  10640. {
  10641. name: "Big Boi",
  10642. height: math.unit(150, "meters")
  10643. },
  10644. {
  10645. name: "Mini Stomper",
  10646. height: math.unit(300, "meters")
  10647. },
  10648. {
  10649. name: "Macro",
  10650. height: math.unit(1000, "meters")
  10651. },
  10652. {
  10653. name: "Megamacro",
  10654. height: math.unit(11000, "meters")
  10655. },
  10656. {
  10657. name: "Gigamacro",
  10658. height: math.unit(11000, "km")
  10659. },
  10660. {
  10661. name: "Teramacro",
  10662. height: math.unit(420000, "km")
  10663. },
  10664. {
  10665. name: "Examacro",
  10666. height: math.unit(120, "parsecs")
  10667. },
  10668. {
  10669. name: "God Tho",
  10670. height: math.unit(98000000000, "parsecs")
  10671. },
  10672. ]
  10673. ))
  10674. characterMakers.push(() => makeCharacter(
  10675. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10676. {
  10677. taurFront: {
  10678. height: math.unit(6, "feet"),
  10679. weight: math.unit(200, "lb"),
  10680. name: "Taur (Front)",
  10681. image: {
  10682. source: "./media/characters/scales/taur-front.svg",
  10683. extra: 1,
  10684. bottom: 0.05
  10685. }
  10686. },
  10687. taurBack: {
  10688. height: math.unit(6, "feet"),
  10689. weight: math.unit(200, "lb"),
  10690. name: "Taur (Back)",
  10691. image: {
  10692. source: "./media/characters/scales/taur-back.svg",
  10693. extra: 1,
  10694. bottom: 0.08
  10695. }
  10696. },
  10697. anthro: {
  10698. height: math.unit(6 * 7 / 12, "feet"),
  10699. weight: math.unit(100, "lb"),
  10700. name: "Anthro",
  10701. image: {
  10702. source: "./media/characters/scales/anthro.svg",
  10703. extra: 1,
  10704. bottom: 0.06
  10705. }
  10706. },
  10707. },
  10708. [
  10709. {
  10710. name: "Normal",
  10711. height: math.unit(12, "feet"),
  10712. default: true
  10713. },
  10714. ]
  10715. ))
  10716. characterMakers.push(() => makeCharacter(
  10717. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10718. {
  10719. front: {
  10720. height: math.unit(6, "feet"),
  10721. weight: math.unit(150, "lb"),
  10722. name: "Front",
  10723. image: {
  10724. source: "./media/characters/koragos/front.svg",
  10725. extra: 841 / 794,
  10726. bottom: 0.035
  10727. }
  10728. },
  10729. back: {
  10730. height: math.unit(6, "feet"),
  10731. weight: math.unit(150, "lb"),
  10732. name: "Back",
  10733. image: {
  10734. source: "./media/characters/koragos/back.svg",
  10735. extra: 841 / 810,
  10736. bottom: 0.022
  10737. }
  10738. },
  10739. },
  10740. [
  10741. {
  10742. name: "Normal",
  10743. height: math.unit(6 + 11 / 12, "feet"),
  10744. default: true
  10745. },
  10746. {
  10747. name: "Macro",
  10748. height: math.unit(490, "feet")
  10749. },
  10750. {
  10751. name: "Megamacro",
  10752. height: math.unit(10, "miles")
  10753. },
  10754. {
  10755. name: "Gigamacro",
  10756. height: math.unit(50, "miles")
  10757. },
  10758. ]
  10759. ))
  10760. characterMakers.push(() => makeCharacter(
  10761. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10762. {
  10763. front: {
  10764. height: math.unit(6, "feet"),
  10765. weight: math.unit(250, "lb"),
  10766. name: "Front",
  10767. image: {
  10768. source: "./media/characters/xylrem/front.svg",
  10769. extra: 3323 / 3050,
  10770. bottom: 0.065
  10771. }
  10772. },
  10773. },
  10774. [
  10775. {
  10776. name: "Micro",
  10777. height: math.unit(4, "feet")
  10778. },
  10779. {
  10780. name: "Normal",
  10781. height: math.unit(16, "feet"),
  10782. default: true
  10783. },
  10784. {
  10785. name: "Macro",
  10786. height: math.unit(2720, "feet")
  10787. },
  10788. {
  10789. name: "Megamacro",
  10790. height: math.unit(25000, "miles")
  10791. },
  10792. ]
  10793. ))
  10794. characterMakers.push(() => makeCharacter(
  10795. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10796. {
  10797. front: {
  10798. height: math.unit(8, "feet"),
  10799. weight: math.unit(250, "kg"),
  10800. name: "Front",
  10801. image: {
  10802. source: "./media/characters/ikideru/front.svg",
  10803. extra: 930 / 870,
  10804. bottom: 0.087
  10805. }
  10806. },
  10807. back: {
  10808. height: math.unit(8, "feet"),
  10809. weight: math.unit(250, "kg"),
  10810. name: "Back",
  10811. image: {
  10812. source: "./media/characters/ikideru/back.svg",
  10813. extra: 919 / 852,
  10814. bottom: 0.055
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Rare",
  10821. height: math.unit(8, "feet"),
  10822. default: true
  10823. },
  10824. {
  10825. name: "Playful Loom",
  10826. height: math.unit(80, "feet")
  10827. },
  10828. {
  10829. name: "City Leaner",
  10830. height: math.unit(230, "feet")
  10831. },
  10832. {
  10833. name: "Megamacro",
  10834. height: math.unit(2500, "feet")
  10835. },
  10836. {
  10837. name: "Gigamacro",
  10838. height: math.unit(26400, "feet")
  10839. },
  10840. {
  10841. name: "Tectonic Shifter",
  10842. height: math.unit(1.7, "megameters")
  10843. },
  10844. {
  10845. name: "Planet Carer",
  10846. height: math.unit(21, "megameters")
  10847. },
  10848. {
  10849. name: "God",
  10850. height: math.unit(11157.22, "parsecs")
  10851. },
  10852. ]
  10853. ))
  10854. characterMakers.push(() => makeCharacter(
  10855. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10856. {
  10857. front: {
  10858. height: math.unit(6, "feet"),
  10859. weight: math.unit(120, "lb"),
  10860. name: "Front",
  10861. image: {
  10862. source: "./media/characters/neo/front.svg"
  10863. }
  10864. },
  10865. },
  10866. [
  10867. {
  10868. name: "Micro",
  10869. height: math.unit(2, "inches"),
  10870. default: true
  10871. },
  10872. {
  10873. name: "Human Size",
  10874. height: math.unit(5 + 8 / 12, "feet")
  10875. },
  10876. ]
  10877. ))
  10878. characterMakers.push(() => makeCharacter(
  10879. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10880. {
  10881. front: {
  10882. height: math.unit(13 + 10 / 12, "feet"),
  10883. weight: math.unit(5320, "lb"),
  10884. name: "Front",
  10885. image: {
  10886. source: "./media/characters/chauncey-chantz/front.svg",
  10887. extra: 1587 / 1435,
  10888. bottom: 0.02
  10889. }
  10890. },
  10891. },
  10892. [
  10893. {
  10894. name: "Normal",
  10895. height: math.unit(13 + 10 / 12, "feet"),
  10896. default: true
  10897. },
  10898. {
  10899. name: "Macro",
  10900. height: math.unit(45, "feet")
  10901. },
  10902. {
  10903. name: "Megamacro",
  10904. height: math.unit(250, "miles")
  10905. },
  10906. {
  10907. name: "Planetary",
  10908. height: math.unit(10000, "miles")
  10909. },
  10910. {
  10911. name: "Galactic",
  10912. height: math.unit(40000, "parsecs")
  10913. },
  10914. {
  10915. name: "Universal",
  10916. height: math.unit(1, "yottameter")
  10917. },
  10918. ]
  10919. ))
  10920. characterMakers.push(() => makeCharacter(
  10921. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10922. {
  10923. front: {
  10924. height: math.unit(6, "feet"),
  10925. weight: math.unit(150, "lb"),
  10926. name: "Front",
  10927. image: {
  10928. source: "./media/characters/epifox/front.svg",
  10929. extra: 1,
  10930. bottom: 0.075
  10931. }
  10932. },
  10933. },
  10934. [
  10935. {
  10936. name: "Micro",
  10937. height: math.unit(6, "inches")
  10938. },
  10939. {
  10940. name: "Normal",
  10941. height: math.unit(12, "feet"),
  10942. default: true
  10943. },
  10944. {
  10945. name: "Macro",
  10946. height: math.unit(3810, "feet")
  10947. },
  10948. {
  10949. name: "Megamacro",
  10950. height: math.unit(500, "miles")
  10951. },
  10952. ]
  10953. ))
  10954. characterMakers.push(() => makeCharacter(
  10955. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10956. {
  10957. front: {
  10958. height: math.unit(1.8796, "m"),
  10959. weight: math.unit(230, "lb"),
  10960. name: "Front",
  10961. image: {
  10962. source: "./media/characters/colin-t/front.svg",
  10963. extra: 1272 / 1193,
  10964. bottom: 0.07
  10965. }
  10966. },
  10967. },
  10968. [
  10969. {
  10970. name: "Micro",
  10971. height: math.unit(0.571, "meters")
  10972. },
  10973. {
  10974. name: "Normal",
  10975. height: math.unit(1.8796, "meters"),
  10976. default: true
  10977. },
  10978. {
  10979. name: "Tall",
  10980. height: math.unit(4, "meters")
  10981. },
  10982. {
  10983. name: "Macro",
  10984. height: math.unit(67.241, "meters")
  10985. },
  10986. {
  10987. name: "Megamacro",
  10988. height: math.unit(371.856, "meters")
  10989. },
  10990. {
  10991. name: "Planetary",
  10992. height: math.unit(12631.5689, "km")
  10993. },
  10994. ]
  10995. ))
  10996. characterMakers.push(() => makeCharacter(
  10997. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10998. {
  10999. front: {
  11000. height: math.unit(1.85, "meters"),
  11001. weight: math.unit(80, "kg"),
  11002. name: "Front",
  11003. image: {
  11004. source: "./media/characters/matvei/front.svg",
  11005. extra: 614 / 594,
  11006. bottom: 0.01
  11007. }
  11008. },
  11009. },
  11010. [
  11011. {
  11012. name: "Normal",
  11013. height: math.unit(1.85, "meters"),
  11014. default: true
  11015. },
  11016. ]
  11017. ))
  11018. characterMakers.push(() => makeCharacter(
  11019. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11020. {
  11021. front: {
  11022. height: math.unit(5 + 9 / 12, "feet"),
  11023. weight: math.unit(70, "lb"),
  11024. name: "Front",
  11025. image: {
  11026. source: "./media/characters/quincy/front.svg",
  11027. extra: 3041 / 2751
  11028. }
  11029. },
  11030. back: {
  11031. height: math.unit(5 + 9 / 12, "feet"),
  11032. weight: math.unit(70, "lb"),
  11033. name: "Back",
  11034. image: {
  11035. source: "./media/characters/quincy/back.svg",
  11036. extra: 3041 / 2751
  11037. }
  11038. },
  11039. flying: {
  11040. height: math.unit(5 + 4 / 12, "feet"),
  11041. weight: math.unit(70, "lb"),
  11042. name: "Flying",
  11043. image: {
  11044. source: "./media/characters/quincy/flying.svg",
  11045. extra: 1044 / 930
  11046. }
  11047. },
  11048. },
  11049. [
  11050. {
  11051. name: "Micro",
  11052. height: math.unit(3, "cm")
  11053. },
  11054. {
  11055. name: "Normal",
  11056. height: math.unit(5 + 9 / 12, "feet")
  11057. },
  11058. {
  11059. name: "Macro",
  11060. height: math.unit(200, "meters"),
  11061. default: true
  11062. },
  11063. {
  11064. name: "Megamacro",
  11065. height: math.unit(1000, "meters")
  11066. },
  11067. ]
  11068. ))
  11069. characterMakers.push(() => makeCharacter(
  11070. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11071. {
  11072. front: {
  11073. height: math.unit(4 + 7 / 12, "feet"),
  11074. weight: math.unit(150, "lb"),
  11075. name: "Front",
  11076. image: {
  11077. source: "./media/characters/vanrel/front.svg",
  11078. extra: 1,
  11079. bottom: 0.02
  11080. }
  11081. },
  11082. elemental: {
  11083. height: math.unit(3, "feet"),
  11084. weight: math.unit(150, "lb"),
  11085. name: "Elemental",
  11086. image: {
  11087. source: "./media/characters/vanrel/elemental.svg",
  11088. extra: 192.3 / 162.8,
  11089. bottom: 1.79 / 194.17
  11090. }
  11091. },
  11092. side: {
  11093. height: math.unit(4 + 7 / 12, "feet"),
  11094. weight: math.unit(150, "lb"),
  11095. name: "Side",
  11096. image: {
  11097. source: "./media/characters/vanrel/side.svg",
  11098. extra: 1,
  11099. bottom: 0.025
  11100. }
  11101. },
  11102. tome: {
  11103. height: math.unit(1.35, "feet"),
  11104. weight: math.unit(10, "lb"),
  11105. name: "Vanrel's Tome",
  11106. rename: true,
  11107. image: {
  11108. source: "./media/characters/vanrel/tome.svg"
  11109. }
  11110. },
  11111. beans: {
  11112. height: math.unit(0.89, "feet"),
  11113. name: "Beans",
  11114. image: {
  11115. source: "./media/characters/vanrel/beans.svg"
  11116. }
  11117. },
  11118. },
  11119. [
  11120. {
  11121. name: "Normal",
  11122. height: math.unit(4 + 7 / 12, "feet"),
  11123. default: true
  11124. },
  11125. ]
  11126. ))
  11127. characterMakers.push(() => makeCharacter(
  11128. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11129. {
  11130. front: {
  11131. height: math.unit(7 + 5 / 12, "feet"),
  11132. weight: math.unit(150, "lb"),
  11133. name: "Front",
  11134. image: {
  11135. source: "./media/characters/kuiper-vanrel/front.svg",
  11136. extra: 1118 / 1068,
  11137. bottom: 0.09
  11138. }
  11139. },
  11140. foot: {
  11141. height: math.unit(0.55, "meters"),
  11142. name: "Foot",
  11143. image: {
  11144. source: "./media/characters/kuiper-vanrel/foot.svg",
  11145. }
  11146. },
  11147. battle: {
  11148. height: math.unit(6.824, "feet"),
  11149. weight: math.unit(150, "lb"),
  11150. name: "Battle",
  11151. image: {
  11152. source: "./media/characters/kuiper-vanrel/battle.svg",
  11153. extra: 1466 / 1327,
  11154. bottom: 29 / 1492.5
  11155. }
  11156. },
  11157. },
  11158. [
  11159. {
  11160. name: "Normal",
  11161. height: math.unit(7 + 5 / 12, "feet"),
  11162. default: true
  11163. },
  11164. ]
  11165. ))
  11166. characterMakers.push(() => makeCharacter(
  11167. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11168. {
  11169. front: {
  11170. height: math.unit(8 + 5 / 12, "feet"),
  11171. weight: math.unit(150, "lb"),
  11172. name: "Front",
  11173. image: {
  11174. source: "./media/characters/keset-vanrel/front.svg",
  11175. extra: 1150 / 1084,
  11176. bottom: 0.05
  11177. }
  11178. },
  11179. hand: {
  11180. height: math.unit(0.6, "meters"),
  11181. name: "Hand",
  11182. image: {
  11183. source: "./media/characters/keset-vanrel/hand.svg"
  11184. }
  11185. },
  11186. foot: {
  11187. height: math.unit(0.94978, "meters"),
  11188. name: "Foot",
  11189. image: {
  11190. source: "./media/characters/keset-vanrel/foot.svg"
  11191. }
  11192. },
  11193. battle: {
  11194. height: math.unit(7.408, "feet"),
  11195. weight: math.unit(150, "lb"),
  11196. name: "Battle",
  11197. image: {
  11198. source: "./media/characters/keset-vanrel/battle.svg",
  11199. extra: 1890 / 1386,
  11200. bottom: 73.28 / 1970
  11201. }
  11202. },
  11203. },
  11204. [
  11205. {
  11206. name: "Normal",
  11207. height: math.unit(8 + 5 / 12, "feet"),
  11208. default: true
  11209. },
  11210. ]
  11211. ))
  11212. characterMakers.push(() => makeCharacter(
  11213. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11214. {
  11215. front: {
  11216. height: math.unit(6, "feet"),
  11217. weight: math.unit(150, "lb"),
  11218. name: "Front",
  11219. image: {
  11220. source: "./media/characters/neos/front.svg",
  11221. extra: 1696 / 992,
  11222. bottom: 0.14
  11223. }
  11224. },
  11225. },
  11226. [
  11227. {
  11228. name: "Normal",
  11229. height: math.unit(54, "cm"),
  11230. default: true
  11231. },
  11232. {
  11233. name: "Macro",
  11234. height: math.unit(100, "m")
  11235. },
  11236. {
  11237. name: "Megamacro",
  11238. height: math.unit(10, "km")
  11239. },
  11240. {
  11241. name: "Megamacro+",
  11242. height: math.unit(100, "km")
  11243. },
  11244. {
  11245. name: "Gigamacro",
  11246. height: math.unit(100, "Mm")
  11247. },
  11248. {
  11249. name: "Teramacro",
  11250. height: math.unit(100, "Gm")
  11251. },
  11252. {
  11253. name: "Examacro",
  11254. height: math.unit(100, "Em")
  11255. },
  11256. {
  11257. name: "Godly",
  11258. height: math.unit(10000, "Ym")
  11259. },
  11260. {
  11261. name: "Beyond Godly",
  11262. height: math.unit(25, "multiverses")
  11263. },
  11264. ]
  11265. ))
  11266. characterMakers.push(() => makeCharacter(
  11267. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11268. {
  11269. feminine: {
  11270. height: math.unit(5, "feet"),
  11271. weight: math.unit(100, "lb"),
  11272. name: "Feminine",
  11273. image: {
  11274. source: "./media/characters/sammy-mouse/feminine.svg",
  11275. extra: 2526 / 2425,
  11276. bottom: 0.123
  11277. }
  11278. },
  11279. masculine: {
  11280. height: math.unit(5, "feet"),
  11281. weight: math.unit(100, "lb"),
  11282. name: "Masculine",
  11283. image: {
  11284. source: "./media/characters/sammy-mouse/masculine.svg",
  11285. extra: 2526 / 2425,
  11286. bottom: 0.123
  11287. }
  11288. },
  11289. },
  11290. [
  11291. {
  11292. name: "Micro",
  11293. height: math.unit(5, "inches")
  11294. },
  11295. {
  11296. name: "Normal",
  11297. height: math.unit(5, "feet"),
  11298. default: true
  11299. },
  11300. {
  11301. name: "Macro",
  11302. height: math.unit(60, "feet")
  11303. },
  11304. ]
  11305. ))
  11306. characterMakers.push(() => makeCharacter(
  11307. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11308. {
  11309. front: {
  11310. height: math.unit(4, "feet"),
  11311. weight: math.unit(50, "lb"),
  11312. name: "Front",
  11313. image: {
  11314. source: "./media/characters/kole/front.svg",
  11315. extra: 1423 / 1303,
  11316. bottom: 0.025
  11317. }
  11318. },
  11319. back: {
  11320. height: math.unit(4, "feet"),
  11321. weight: math.unit(50, "lb"),
  11322. name: "Back",
  11323. image: {
  11324. source: "./media/characters/kole/back.svg",
  11325. extra: 1426 / 1280,
  11326. bottom: 0.02
  11327. }
  11328. },
  11329. },
  11330. [
  11331. {
  11332. name: "Normal",
  11333. height: math.unit(4, "feet"),
  11334. default: true
  11335. },
  11336. ]
  11337. ))
  11338. characterMakers.push(() => makeCharacter(
  11339. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11340. {
  11341. front: {
  11342. height: math.unit(2 + 6 / 12, "feet"),
  11343. weight: math.unit(20, "lb"),
  11344. name: "Front",
  11345. image: {
  11346. source: "./media/characters/rufran/front.svg",
  11347. extra: 2041 / 1839,
  11348. bottom: 0.055
  11349. }
  11350. },
  11351. back: {
  11352. height: math.unit(2 + 6 / 12, "feet"),
  11353. weight: math.unit(20, "lb"),
  11354. name: "Back",
  11355. image: {
  11356. source: "./media/characters/rufran/back.svg",
  11357. extra: 2054 / 1839,
  11358. bottom: 0.01
  11359. }
  11360. },
  11361. hand: {
  11362. height: math.unit(0.2166, "meters"),
  11363. name: "Hand",
  11364. image: {
  11365. source: "./media/characters/rufran/hand.svg"
  11366. }
  11367. },
  11368. foot: {
  11369. height: math.unit(0.185, "meters"),
  11370. name: "Foot",
  11371. image: {
  11372. source: "./media/characters/rufran/foot.svg"
  11373. }
  11374. },
  11375. },
  11376. [
  11377. {
  11378. name: "Micro",
  11379. height: math.unit(1, "inch")
  11380. },
  11381. {
  11382. name: "Normal",
  11383. height: math.unit(2 + 6 / 12, "feet"),
  11384. default: true
  11385. },
  11386. {
  11387. name: "Big",
  11388. height: math.unit(60, "feet")
  11389. },
  11390. {
  11391. name: "Macro",
  11392. height: math.unit(325, "feet")
  11393. },
  11394. ]
  11395. ))
  11396. characterMakers.push(() => makeCharacter(
  11397. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11398. {
  11399. front: {
  11400. height: math.unit(0.3, "meters"),
  11401. weight: math.unit(3.5, "kg"),
  11402. name: "Front",
  11403. image: {
  11404. source: "./media/characters/chip/front.svg",
  11405. extra: 748 / 674
  11406. }
  11407. },
  11408. },
  11409. [
  11410. {
  11411. name: "Micro",
  11412. height: math.unit(1, "inch"),
  11413. default: true
  11414. },
  11415. ]
  11416. ))
  11417. characterMakers.push(() => makeCharacter(
  11418. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11419. {
  11420. side: {
  11421. height: math.unit(2.3, "meters"),
  11422. weight: math.unit(3500, "lb"),
  11423. name: "Side",
  11424. image: {
  11425. source: "./media/characters/torvid/side.svg",
  11426. extra: 1972 / 722,
  11427. bottom: 0.035
  11428. }
  11429. },
  11430. },
  11431. [
  11432. {
  11433. name: "Normal",
  11434. height: math.unit(2.3, "meters"),
  11435. default: true
  11436. },
  11437. ]
  11438. ))
  11439. characterMakers.push(() => makeCharacter(
  11440. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11441. {
  11442. front: {
  11443. height: math.unit(2, "meters"),
  11444. weight: math.unit(150.5, "kg"),
  11445. name: "Front",
  11446. image: {
  11447. source: "./media/characters/susan/front.svg",
  11448. extra: 693 / 635,
  11449. bottom: 0.05
  11450. }
  11451. },
  11452. },
  11453. [
  11454. {
  11455. name: "Megamacro",
  11456. height: math.unit(505, "miles"),
  11457. default: true
  11458. },
  11459. ]
  11460. ))
  11461. characterMakers.push(() => makeCharacter(
  11462. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11463. {
  11464. front: {
  11465. height: math.unit(6, "feet"),
  11466. weight: math.unit(150, "lb"),
  11467. name: "Front",
  11468. image: {
  11469. source: "./media/characters/raindrops/front.svg",
  11470. extra: 2655 / 2461,
  11471. bottom: 49/2705
  11472. }
  11473. },
  11474. back: {
  11475. height: math.unit(6, "feet"),
  11476. weight: math.unit(150, "lb"),
  11477. name: "Back",
  11478. image: {
  11479. source: "./media/characters/raindrops/back.svg",
  11480. extra: 2574 / 2400,
  11481. bottom: 65/2634
  11482. }
  11483. },
  11484. },
  11485. [
  11486. {
  11487. name: "Micro",
  11488. height: math.unit(6, "inches")
  11489. },
  11490. {
  11491. name: "Normal",
  11492. height: math.unit(6 + 2 / 12, "feet")
  11493. },
  11494. {
  11495. name: "Macro",
  11496. height: math.unit(131, "feet"),
  11497. default: true
  11498. },
  11499. {
  11500. name: "Megamacro",
  11501. height: math.unit(15, "miles")
  11502. },
  11503. {
  11504. name: "Gigamacro",
  11505. height: math.unit(4000, "miles")
  11506. },
  11507. {
  11508. name: "Teramacro",
  11509. height: math.unit(315000, "miles")
  11510. },
  11511. ]
  11512. ))
  11513. characterMakers.push(() => makeCharacter(
  11514. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11515. {
  11516. front: {
  11517. height: math.unit(2.794, "meters"),
  11518. weight: math.unit(325, "kg"),
  11519. name: "Front",
  11520. image: {
  11521. source: "./media/characters/tezwa/front.svg",
  11522. extra: 2083 / 1906,
  11523. bottom: 0.031
  11524. }
  11525. },
  11526. foot: {
  11527. height: math.unit(0.687, "meters"),
  11528. name: "Foot",
  11529. image: {
  11530. source: "./media/characters/tezwa/foot.svg"
  11531. }
  11532. },
  11533. },
  11534. [
  11535. {
  11536. name: "Normal",
  11537. height: math.unit(9 + 2 / 12, "feet"),
  11538. default: true
  11539. },
  11540. ]
  11541. ))
  11542. characterMakers.push(() => makeCharacter(
  11543. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11544. {
  11545. front: {
  11546. height: math.unit(58, "feet"),
  11547. weight: math.unit(89000, "lb"),
  11548. name: "Front",
  11549. image: {
  11550. source: "./media/characters/typhus/front.svg",
  11551. extra: 816 / 800,
  11552. bottom: 0.065
  11553. }
  11554. },
  11555. },
  11556. [
  11557. {
  11558. name: "Macro",
  11559. height: math.unit(58, "feet"),
  11560. default: true
  11561. },
  11562. ]
  11563. ))
  11564. characterMakers.push(() => makeCharacter(
  11565. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11566. {
  11567. front: {
  11568. height: math.unit(12, "feet"),
  11569. weight: math.unit(6, "tonnes"),
  11570. name: "Front",
  11571. image: {
  11572. source: "./media/characters/lyra-von-wulf/front.svg",
  11573. extra: 1,
  11574. bottom: 0.10
  11575. }
  11576. },
  11577. frontMecha: {
  11578. height: math.unit(12, "feet"),
  11579. weight: math.unit(12, "tonnes"),
  11580. name: "Front (Mecha)",
  11581. image: {
  11582. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11583. extra: 1,
  11584. bottom: 0.042
  11585. }
  11586. },
  11587. maw: {
  11588. height: math.unit(2.2, "feet"),
  11589. name: "Maw",
  11590. image: {
  11591. source: "./media/characters/lyra-von-wulf/maw.svg"
  11592. }
  11593. },
  11594. },
  11595. [
  11596. {
  11597. name: "Normal",
  11598. height: math.unit(12, "feet"),
  11599. default: true
  11600. },
  11601. {
  11602. name: "Classic",
  11603. height: math.unit(50, "feet")
  11604. },
  11605. {
  11606. name: "Macro",
  11607. height: math.unit(500, "feet")
  11608. },
  11609. {
  11610. name: "Megamacro",
  11611. height: math.unit(1, "mile")
  11612. },
  11613. {
  11614. name: "Gigamacro",
  11615. height: math.unit(400, "miles")
  11616. },
  11617. {
  11618. name: "Teramacro",
  11619. height: math.unit(22000, "miles")
  11620. },
  11621. {
  11622. name: "Solarmacro",
  11623. height: math.unit(8600000, "miles")
  11624. },
  11625. {
  11626. name: "Galactic",
  11627. height: math.unit(1057000, "lightyears")
  11628. },
  11629. ]
  11630. ))
  11631. characterMakers.push(() => makeCharacter(
  11632. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11633. {
  11634. front: {
  11635. height: math.unit(6 + 10 / 12, "feet"),
  11636. weight: math.unit(150, "lb"),
  11637. name: "Front",
  11638. image: {
  11639. source: "./media/characters/dixon/front.svg",
  11640. extra: 3361 / 3209,
  11641. bottom: 0.01
  11642. }
  11643. },
  11644. },
  11645. [
  11646. {
  11647. name: "Normal",
  11648. height: math.unit(6 + 10 / 12, "feet"),
  11649. default: true
  11650. },
  11651. {
  11652. name: "Big",
  11653. height: math.unit(12, "meters")
  11654. },
  11655. {
  11656. name: "Macro",
  11657. height: math.unit(500, "meters")
  11658. },
  11659. {
  11660. name: "Megamacro",
  11661. height: math.unit(2, "km")
  11662. },
  11663. ]
  11664. ))
  11665. characterMakers.push(() => makeCharacter(
  11666. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11667. {
  11668. front: {
  11669. height: math.unit(185, "cm"),
  11670. weight: math.unit(68, "kg"),
  11671. name: "Front",
  11672. image: {
  11673. source: "./media/characters/kauko/front.svg",
  11674. extra: 1455 / 1421,
  11675. bottom: 0.03
  11676. }
  11677. },
  11678. back: {
  11679. height: math.unit(185, "cm"),
  11680. weight: math.unit(68, "kg"),
  11681. name: "Back",
  11682. image: {
  11683. source: "./media/characters/kauko/back.svg",
  11684. extra: 1455 / 1421,
  11685. bottom: 0.004
  11686. }
  11687. },
  11688. },
  11689. [
  11690. {
  11691. name: "Normal",
  11692. height: math.unit(185, "cm"),
  11693. default: true
  11694. },
  11695. ]
  11696. ))
  11697. characterMakers.push(() => makeCharacter(
  11698. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11699. {
  11700. front: {
  11701. height: math.unit(6, "feet"),
  11702. weight: math.unit(150, "kg"),
  11703. name: "Front",
  11704. image: {
  11705. source: "./media/characters/varg/front.svg",
  11706. extra: 1108 / 1018,
  11707. bottom: 0.0375
  11708. }
  11709. },
  11710. },
  11711. [
  11712. {
  11713. name: "Normal",
  11714. height: math.unit(5, "meters")
  11715. },
  11716. {
  11717. name: "Macro",
  11718. height: math.unit(200, "meters")
  11719. },
  11720. {
  11721. name: "Megamacro",
  11722. height: math.unit(20, "kilometers")
  11723. },
  11724. {
  11725. name: "True Size",
  11726. height: math.unit(211, "km"),
  11727. default: true
  11728. },
  11729. {
  11730. name: "Gigamacro",
  11731. height: math.unit(1000, "km")
  11732. },
  11733. {
  11734. name: "Gigamacro+",
  11735. height: math.unit(8000, "km")
  11736. },
  11737. {
  11738. name: "Teramacro",
  11739. height: math.unit(1000000, "km")
  11740. },
  11741. ]
  11742. ))
  11743. characterMakers.push(() => makeCharacter(
  11744. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11745. {
  11746. front: {
  11747. height: math.unit(7 + 7 / 12, "feet"),
  11748. weight: math.unit(267, "lb"),
  11749. name: "Front",
  11750. image: {
  11751. source: "./media/characters/dayza/front.svg",
  11752. extra: 1262 / 1200,
  11753. bottom: 0.035
  11754. }
  11755. },
  11756. side: {
  11757. height: math.unit(7 + 7 / 12, "feet"),
  11758. weight: math.unit(267, "lb"),
  11759. name: "Side",
  11760. image: {
  11761. source: "./media/characters/dayza/side.svg",
  11762. extra: 1295 / 1245,
  11763. bottom: 0.05
  11764. }
  11765. },
  11766. back: {
  11767. height: math.unit(7 + 7 / 12, "feet"),
  11768. weight: math.unit(267, "lb"),
  11769. name: "Back",
  11770. image: {
  11771. source: "./media/characters/dayza/back.svg",
  11772. extra: 1241 / 1170
  11773. }
  11774. },
  11775. },
  11776. [
  11777. {
  11778. name: "Normal",
  11779. height: math.unit(7 + 7 / 12, "feet"),
  11780. default: true
  11781. },
  11782. {
  11783. name: "Macro",
  11784. height: math.unit(155, "feet")
  11785. },
  11786. ]
  11787. ))
  11788. characterMakers.push(() => makeCharacter(
  11789. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11790. {
  11791. front: {
  11792. height: math.unit(6 + 5 / 12, "feet"),
  11793. weight: math.unit(160, "lb"),
  11794. name: "Front",
  11795. image: {
  11796. source: "./media/characters/xanthos/front.svg",
  11797. extra: 1,
  11798. bottom: 0.04
  11799. }
  11800. },
  11801. back: {
  11802. height: math.unit(6 + 5 / 12, "feet"),
  11803. weight: math.unit(160, "lb"),
  11804. name: "Back",
  11805. image: {
  11806. source: "./media/characters/xanthos/back.svg",
  11807. extra: 1,
  11808. bottom: 0.03
  11809. }
  11810. },
  11811. hand: {
  11812. height: math.unit(0.928, "feet"),
  11813. name: "Hand",
  11814. image: {
  11815. source: "./media/characters/xanthos/hand.svg"
  11816. }
  11817. },
  11818. foot: {
  11819. height: math.unit(1.286, "feet"),
  11820. name: "Foot",
  11821. image: {
  11822. source: "./media/characters/xanthos/foot.svg"
  11823. }
  11824. },
  11825. },
  11826. [
  11827. {
  11828. name: "Normal",
  11829. height: math.unit(6 + 5 / 12, "feet"),
  11830. default: true
  11831. },
  11832. {
  11833. name: "Normal+",
  11834. height: math.unit(6, "meters")
  11835. },
  11836. {
  11837. name: "Macro",
  11838. height: math.unit(40, "feet")
  11839. },
  11840. {
  11841. name: "Macro+",
  11842. height: math.unit(200, "meters")
  11843. },
  11844. {
  11845. name: "Megamacro",
  11846. height: math.unit(20, "km")
  11847. },
  11848. {
  11849. name: "Megamacro+",
  11850. height: math.unit(100, "km")
  11851. },
  11852. ]
  11853. ))
  11854. characterMakers.push(() => makeCharacter(
  11855. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11856. {
  11857. front: {
  11858. height: math.unit(6 + 3 / 12, "feet"),
  11859. weight: math.unit(215, "lb"),
  11860. name: "Front",
  11861. image: {
  11862. source: "./media/characters/grynn/front.svg",
  11863. extra: 4627 / 4209,
  11864. bottom: 0.047
  11865. }
  11866. },
  11867. },
  11868. [
  11869. {
  11870. name: "Micro",
  11871. height: math.unit(6, "inches")
  11872. },
  11873. {
  11874. name: "Normal",
  11875. height: math.unit(6 + 3 / 12, "feet"),
  11876. default: true
  11877. },
  11878. {
  11879. name: "Big",
  11880. height: math.unit(104, "feet")
  11881. },
  11882. {
  11883. name: "Macro",
  11884. height: math.unit(944, "feet")
  11885. },
  11886. {
  11887. name: "Macro+",
  11888. height: math.unit(9480, "feet")
  11889. },
  11890. {
  11891. name: "Megamacro",
  11892. height: math.unit(78752, "feet")
  11893. },
  11894. {
  11895. name: "Megamacro+",
  11896. height: math.unit(630128, "feet")
  11897. },
  11898. {
  11899. name: "Megamacro++",
  11900. height: math.unit(3150695, "feet")
  11901. },
  11902. ]
  11903. ))
  11904. characterMakers.push(() => makeCharacter(
  11905. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11906. {
  11907. front: {
  11908. height: math.unit(7 + 5 / 12, "feet"),
  11909. weight: math.unit(450, "lb"),
  11910. name: "Front",
  11911. image: {
  11912. source: "./media/characters/mocha-aura/front.svg",
  11913. extra: 1907 / 1817,
  11914. bottom: 0.04
  11915. }
  11916. },
  11917. back: {
  11918. height: math.unit(7 + 5 / 12, "feet"),
  11919. weight: math.unit(450, "lb"),
  11920. name: "Back",
  11921. image: {
  11922. source: "./media/characters/mocha-aura/back.svg",
  11923. extra: 1900 / 1825,
  11924. bottom: 0.045
  11925. }
  11926. },
  11927. },
  11928. [
  11929. {
  11930. name: "Nano",
  11931. height: math.unit(1, "nm")
  11932. },
  11933. {
  11934. name: "Megamicro",
  11935. height: math.unit(1, "mm")
  11936. },
  11937. {
  11938. name: "Micro",
  11939. height: math.unit(3, "inches")
  11940. },
  11941. {
  11942. name: "Normal",
  11943. height: math.unit(7 + 5 / 12, "feet"),
  11944. default: true
  11945. },
  11946. {
  11947. name: "Macro",
  11948. height: math.unit(30, "feet")
  11949. },
  11950. {
  11951. name: "Megamacro",
  11952. height: math.unit(3500, "feet")
  11953. },
  11954. {
  11955. name: "Teramacro",
  11956. height: math.unit(500000, "miles")
  11957. },
  11958. {
  11959. name: "Petamacro",
  11960. height: math.unit(50000000000000000, "parsecs")
  11961. },
  11962. ]
  11963. ))
  11964. characterMakers.push(() => makeCharacter(
  11965. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11966. {
  11967. front: {
  11968. height: math.unit(6, "feet"),
  11969. weight: math.unit(150, "lb"),
  11970. name: "Front",
  11971. image: {
  11972. source: "./media/characters/ilisha-devya/front.svg",
  11973. extra: 1,
  11974. bottom: 0.175
  11975. }
  11976. },
  11977. back: {
  11978. height: math.unit(6, "feet"),
  11979. weight: math.unit(150, "lb"),
  11980. name: "Back",
  11981. image: {
  11982. source: "./media/characters/ilisha-devya/back.svg",
  11983. extra: 1,
  11984. bottom: 0.015
  11985. }
  11986. },
  11987. },
  11988. [
  11989. {
  11990. name: "Macro",
  11991. height: math.unit(500, "feet"),
  11992. default: true
  11993. },
  11994. {
  11995. name: "Megamacro",
  11996. height: math.unit(10, "miles")
  11997. },
  11998. {
  11999. name: "Gigamacro",
  12000. height: math.unit(100000, "miles")
  12001. },
  12002. {
  12003. name: "Examacro",
  12004. height: math.unit(1e9, "lightyears")
  12005. },
  12006. {
  12007. name: "Omniversal",
  12008. height: math.unit(1e33, "lightyears")
  12009. },
  12010. {
  12011. name: "Beyond Infinite",
  12012. height: math.unit(1e100, "lightyears")
  12013. },
  12014. ]
  12015. ))
  12016. characterMakers.push(() => makeCharacter(
  12017. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12018. {
  12019. Side: {
  12020. height: math.unit(6, "feet"),
  12021. weight: math.unit(150, "lb"),
  12022. name: "Side",
  12023. image: {
  12024. source: "./media/characters/mira/side.svg",
  12025. extra: 900 / 799,
  12026. bottom: 0.02
  12027. }
  12028. },
  12029. },
  12030. [
  12031. {
  12032. name: "Human Size",
  12033. height: math.unit(6, "feet")
  12034. },
  12035. {
  12036. name: "Macro",
  12037. height: math.unit(100, "feet"),
  12038. default: true
  12039. },
  12040. {
  12041. name: "Megamacro",
  12042. height: math.unit(10, "miles")
  12043. },
  12044. {
  12045. name: "Gigamacro",
  12046. height: math.unit(25000, "miles")
  12047. },
  12048. {
  12049. name: "Teramacro",
  12050. height: math.unit(300, "AU")
  12051. },
  12052. {
  12053. name: "Full Size",
  12054. height: math.unit(4.5e10, "lightyears")
  12055. },
  12056. ]
  12057. ))
  12058. characterMakers.push(() => makeCharacter(
  12059. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12060. {
  12061. front: {
  12062. height: math.unit(6, "feet"),
  12063. weight: math.unit(150, "lb"),
  12064. name: "Front",
  12065. image: {
  12066. source: "./media/characters/holly/front.svg",
  12067. extra: 639 / 606
  12068. }
  12069. },
  12070. back: {
  12071. height: math.unit(6, "feet"),
  12072. weight: math.unit(150, "lb"),
  12073. name: "Back",
  12074. image: {
  12075. source: "./media/characters/holly/back.svg",
  12076. extra: 623 / 598
  12077. }
  12078. },
  12079. frontWorking: {
  12080. height: math.unit(6, "feet"),
  12081. weight: math.unit(150, "lb"),
  12082. name: "Front (Working)",
  12083. image: {
  12084. source: "./media/characters/holly/front-working.svg",
  12085. extra: 607 / 577,
  12086. bottom: 0.048
  12087. }
  12088. },
  12089. },
  12090. [
  12091. {
  12092. name: "Normal",
  12093. height: math.unit(12 + 3 / 12, "feet"),
  12094. default: true
  12095. },
  12096. ]
  12097. ))
  12098. characterMakers.push(() => makeCharacter(
  12099. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12100. {
  12101. front: {
  12102. height: math.unit(6, "feet"),
  12103. weight: math.unit(150, "lb"),
  12104. name: "Front",
  12105. image: {
  12106. source: "./media/characters/porter/front.svg",
  12107. extra: 1,
  12108. bottom: 0.01
  12109. }
  12110. },
  12111. frontRobes: {
  12112. height: math.unit(6, "feet"),
  12113. weight: math.unit(150, "lb"),
  12114. name: "Front (Robes)",
  12115. image: {
  12116. source: "./media/characters/porter/front-robes.svg",
  12117. extra: 1.01,
  12118. bottom: 0.01
  12119. }
  12120. },
  12121. },
  12122. [
  12123. {
  12124. name: "Normal",
  12125. height: math.unit(11 + 9 / 12, "feet"),
  12126. default: true
  12127. },
  12128. ]
  12129. ))
  12130. characterMakers.push(() => makeCharacter(
  12131. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12132. {
  12133. legendary: {
  12134. height: math.unit(6, "feet"),
  12135. weight: math.unit(150, "lb"),
  12136. name: "Legendary",
  12137. image: {
  12138. source: "./media/characters/lucy/legendary.svg",
  12139. extra: 1355 / 1100,
  12140. bottom: 0.045
  12141. }
  12142. },
  12143. },
  12144. [
  12145. {
  12146. name: "Legendary",
  12147. height: math.unit(86882 * 2, "miles"),
  12148. default: true
  12149. },
  12150. ]
  12151. ))
  12152. characterMakers.push(() => makeCharacter(
  12153. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12154. {
  12155. front: {
  12156. height: math.unit(6, "feet"),
  12157. weight: math.unit(150, "lb"),
  12158. name: "Front",
  12159. image: {
  12160. source: "./media/characters/drusilla/front.svg",
  12161. extra: 678 / 635,
  12162. bottom: 0.03
  12163. }
  12164. },
  12165. back: {
  12166. height: math.unit(6, "feet"),
  12167. weight: math.unit(150, "lb"),
  12168. name: "Back",
  12169. image: {
  12170. source: "./media/characters/drusilla/back.svg",
  12171. extra: 678 / 635,
  12172. bottom: 0.005
  12173. }
  12174. },
  12175. },
  12176. [
  12177. {
  12178. name: "Macro",
  12179. height: math.unit(100, "feet")
  12180. },
  12181. {
  12182. name: "Canon Height",
  12183. height: math.unit(2000, "feet"),
  12184. default: true
  12185. },
  12186. ]
  12187. ))
  12188. characterMakers.push(() => makeCharacter(
  12189. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12190. {
  12191. front: {
  12192. height: math.unit(6, "feet"),
  12193. weight: math.unit(180, "lb"),
  12194. name: "Front",
  12195. image: {
  12196. source: "./media/characters/renard-thatch/front.svg",
  12197. extra: 2411 / 2275,
  12198. bottom: 0.01
  12199. }
  12200. },
  12201. frontPosing: {
  12202. height: math.unit(6, "feet"),
  12203. weight: math.unit(180, "lb"),
  12204. name: "Front (Posing)",
  12205. image: {
  12206. source: "./media/characters/renard-thatch/front-posing.svg",
  12207. extra: 2381 / 2261,
  12208. bottom: 0.01
  12209. }
  12210. },
  12211. back: {
  12212. height: math.unit(6, "feet"),
  12213. weight: math.unit(180, "lb"),
  12214. name: "Back",
  12215. image: {
  12216. source: "./media/characters/renard-thatch/back.svg",
  12217. extra: 2428 / 2288
  12218. }
  12219. },
  12220. },
  12221. [
  12222. {
  12223. name: "Micro",
  12224. height: math.unit(3, "inches")
  12225. },
  12226. {
  12227. name: "Default",
  12228. height: math.unit(6, "feet"),
  12229. default: true
  12230. },
  12231. {
  12232. name: "Macro",
  12233. height: math.unit(75, "feet")
  12234. },
  12235. ]
  12236. ))
  12237. characterMakers.push(() => makeCharacter(
  12238. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12239. {
  12240. front: {
  12241. height: math.unit(1450, "feet"),
  12242. weight: math.unit(1.21e6, "tons"),
  12243. name: "Front",
  12244. image: {
  12245. source: "./media/characters/sekvra/front.svg",
  12246. extra: 1,
  12247. bottom: 0.03
  12248. }
  12249. },
  12250. frontClothed: {
  12251. height: math.unit(1450, "feet"),
  12252. weight: math.unit(1.21e6, "tons"),
  12253. name: "Front (Clothed)",
  12254. image: {
  12255. source: "./media/characters/sekvra/front-clothed.svg",
  12256. extra: 1,
  12257. bottom: 0.03
  12258. }
  12259. },
  12260. side: {
  12261. height: math.unit(1450, "feet"),
  12262. weight: math.unit(1.21e6, "tons"),
  12263. name: "Side",
  12264. image: {
  12265. source: "./media/characters/sekvra/side.svg",
  12266. extra: 1,
  12267. bottom: 0.025
  12268. }
  12269. },
  12270. back: {
  12271. height: math.unit(1450, "feet"),
  12272. weight: math.unit(1.21e6, "tons"),
  12273. name: "Back",
  12274. image: {
  12275. source: "./media/characters/sekvra/back.svg",
  12276. extra: 1,
  12277. bottom: 0.005
  12278. }
  12279. },
  12280. },
  12281. [
  12282. {
  12283. name: "Macro",
  12284. height: math.unit(1450, "feet"),
  12285. default: true
  12286. },
  12287. {
  12288. name: "Megamacro",
  12289. height: math.unit(15000, "feet")
  12290. },
  12291. ]
  12292. ))
  12293. characterMakers.push(() => makeCharacter(
  12294. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12295. {
  12296. front: {
  12297. height: math.unit(6, "feet"),
  12298. weight: math.unit(150, "lb"),
  12299. name: "Front",
  12300. image: {
  12301. source: "./media/characters/carmine/front.svg",
  12302. extra: 1,
  12303. bottom: 0.035
  12304. }
  12305. },
  12306. frontArmor: {
  12307. height: math.unit(6, "feet"),
  12308. weight: math.unit(150, "lb"),
  12309. name: "Front (Armor)",
  12310. image: {
  12311. source: "./media/characters/carmine/front-armor.svg",
  12312. extra: 1,
  12313. bottom: 0.035
  12314. }
  12315. },
  12316. },
  12317. [
  12318. {
  12319. name: "Large",
  12320. height: math.unit(1, "mile")
  12321. },
  12322. {
  12323. name: "Huge",
  12324. height: math.unit(40, "miles"),
  12325. default: true
  12326. },
  12327. {
  12328. name: "Colossal",
  12329. height: math.unit(2500, "miles")
  12330. },
  12331. ]
  12332. ))
  12333. characterMakers.push(() => makeCharacter(
  12334. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12335. {
  12336. front: {
  12337. height: math.unit(6, "feet"),
  12338. weight: math.unit(150, "lb"),
  12339. name: "Front",
  12340. image: {
  12341. source: "./media/characters/elyssia/front.svg",
  12342. extra: 2201 / 2035,
  12343. bottom: 0.05
  12344. }
  12345. },
  12346. frontClothed: {
  12347. height: math.unit(6, "feet"),
  12348. weight: math.unit(150, "lb"),
  12349. name: "Front (Clothed)",
  12350. image: {
  12351. source: "./media/characters/elyssia/front-clothed.svg",
  12352. extra: 2201 / 2035,
  12353. bottom: 0.05
  12354. }
  12355. },
  12356. back: {
  12357. height: math.unit(6, "feet"),
  12358. weight: math.unit(150, "lb"),
  12359. name: "Back",
  12360. image: {
  12361. source: "./media/characters/elyssia/back.svg",
  12362. extra: 2201 / 2035,
  12363. bottom: 0.013
  12364. }
  12365. },
  12366. },
  12367. [
  12368. {
  12369. name: "Smaller",
  12370. height: math.unit(150, "feet")
  12371. },
  12372. {
  12373. name: "Standard",
  12374. height: math.unit(1400, "feet"),
  12375. default: true
  12376. },
  12377. {
  12378. name: "Distracted",
  12379. height: math.unit(15000, "feet")
  12380. },
  12381. ]
  12382. ))
  12383. characterMakers.push(() => makeCharacter(
  12384. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12385. {
  12386. front: {
  12387. height: math.unit(7 + 4 / 12, "feet"),
  12388. weight: math.unit(500, "lb"),
  12389. name: "Front",
  12390. image: {
  12391. source: "./media/characters/geno-maxwell/front.svg",
  12392. extra: 2207 / 2040,
  12393. bottom: 0.015
  12394. }
  12395. },
  12396. },
  12397. [
  12398. {
  12399. name: "Micro",
  12400. height: math.unit(3, "inches")
  12401. },
  12402. {
  12403. name: "Normal",
  12404. height: math.unit(7 + 4 / 12, "feet"),
  12405. default: true
  12406. },
  12407. {
  12408. name: "Macro",
  12409. height: math.unit(220, "feet")
  12410. },
  12411. {
  12412. name: "Megamacro",
  12413. height: math.unit(11, "miles")
  12414. },
  12415. ]
  12416. ))
  12417. characterMakers.push(() => makeCharacter(
  12418. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12419. {
  12420. front: {
  12421. height: math.unit(7 + 4 / 12, "feet"),
  12422. weight: math.unit(500, "lb"),
  12423. name: "Front",
  12424. image: {
  12425. source: "./media/characters/regena-maxwell/front.svg",
  12426. extra: 3115 / 2770,
  12427. bottom: 0.02
  12428. }
  12429. },
  12430. },
  12431. [
  12432. {
  12433. name: "Normal",
  12434. height: math.unit(7 + 4 / 12, "feet"),
  12435. default: true
  12436. },
  12437. {
  12438. name: "Macro",
  12439. height: math.unit(220, "feet")
  12440. },
  12441. {
  12442. name: "Megamacro",
  12443. height: math.unit(11, "miles")
  12444. },
  12445. ]
  12446. ))
  12447. characterMakers.push(() => makeCharacter(
  12448. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12449. {
  12450. front: {
  12451. height: math.unit(6, "feet"),
  12452. weight: math.unit(150, "lb"),
  12453. name: "Front",
  12454. image: {
  12455. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12456. extra: 860 / 690,
  12457. bottom: 0.03
  12458. }
  12459. },
  12460. },
  12461. [
  12462. {
  12463. name: "Normal",
  12464. height: math.unit(1.7, "meters"),
  12465. default: true
  12466. },
  12467. ]
  12468. ))
  12469. characterMakers.push(() => makeCharacter(
  12470. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12471. {
  12472. front: {
  12473. height: math.unit(6, "feet"),
  12474. weight: math.unit(150, "lb"),
  12475. name: "Front",
  12476. image: {
  12477. source: "./media/characters/quilly/front.svg",
  12478. extra: 890 / 776
  12479. }
  12480. },
  12481. },
  12482. [
  12483. {
  12484. name: "Gigamacro",
  12485. height: math.unit(404090, "miles"),
  12486. default: true
  12487. },
  12488. ]
  12489. ))
  12490. characterMakers.push(() => makeCharacter(
  12491. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12492. {
  12493. front: {
  12494. height: math.unit(7 + 8 / 12, "feet"),
  12495. weight: math.unit(350, "lb"),
  12496. name: "Front",
  12497. image: {
  12498. source: "./media/characters/tempest/front.svg",
  12499. extra: 1175 / 1086,
  12500. bottom: 0.02
  12501. }
  12502. },
  12503. },
  12504. [
  12505. {
  12506. name: "Normal",
  12507. height: math.unit(7 + 8 / 12, "feet"),
  12508. default: true
  12509. },
  12510. ]
  12511. ))
  12512. characterMakers.push(() => makeCharacter(
  12513. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12514. {
  12515. side: {
  12516. height: math.unit(4 + 5 / 12, "feet"),
  12517. weight: math.unit(80, "lb"),
  12518. name: "Side",
  12519. image: {
  12520. source: "./media/characters/rodger/side.svg",
  12521. extra: 1235 / 1118
  12522. }
  12523. },
  12524. },
  12525. [
  12526. {
  12527. name: "Micro",
  12528. height: math.unit(1, "inch")
  12529. },
  12530. {
  12531. name: "Normal",
  12532. height: math.unit(4 + 5 / 12, "feet"),
  12533. default: true
  12534. },
  12535. {
  12536. name: "Macro",
  12537. height: math.unit(120, "feet")
  12538. },
  12539. ]
  12540. ))
  12541. characterMakers.push(() => makeCharacter(
  12542. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12543. {
  12544. front: {
  12545. height: math.unit(6, "feet"),
  12546. weight: math.unit(150, "lb"),
  12547. name: "Front",
  12548. image: {
  12549. source: "./media/characters/danyel/front.svg",
  12550. extra: 1185 / 1123,
  12551. bottom: 0.05
  12552. }
  12553. },
  12554. },
  12555. [
  12556. {
  12557. name: "Shrunken",
  12558. height: math.unit(0.5, "mm")
  12559. },
  12560. {
  12561. name: "Micro",
  12562. height: math.unit(1, "mm"),
  12563. default: true
  12564. },
  12565. {
  12566. name: "Upsized",
  12567. height: math.unit(5 + 5 / 12, "feet")
  12568. },
  12569. ]
  12570. ))
  12571. characterMakers.push(() => makeCharacter(
  12572. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12573. {
  12574. front: {
  12575. height: math.unit(5 + 6 / 12, "feet"),
  12576. weight: math.unit(200, "lb"),
  12577. name: "Front",
  12578. image: {
  12579. source: "./media/characters/vivian-bijoux/front.svg",
  12580. extra: 1,
  12581. bottom: 0.072
  12582. }
  12583. },
  12584. },
  12585. [
  12586. {
  12587. name: "Normal",
  12588. height: math.unit(5 + 6 / 12, "feet"),
  12589. default: true
  12590. },
  12591. {
  12592. name: "Bad Dream",
  12593. height: math.unit(500, "feet")
  12594. },
  12595. {
  12596. name: "Nightmare",
  12597. height: math.unit(500, "miles")
  12598. },
  12599. ]
  12600. ))
  12601. characterMakers.push(() => makeCharacter(
  12602. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12603. {
  12604. front: {
  12605. height: math.unit(6 + 1 / 12, "feet"),
  12606. weight: math.unit(260, "lb"),
  12607. name: "Front",
  12608. image: {
  12609. source: "./media/characters/zeta/front.svg",
  12610. extra: 1968 / 1889,
  12611. bottom: 0.06
  12612. }
  12613. },
  12614. back: {
  12615. height: math.unit(6 + 1 / 12, "feet"),
  12616. weight: math.unit(260, "lb"),
  12617. name: "Back",
  12618. image: {
  12619. source: "./media/characters/zeta/back.svg",
  12620. extra: 1944 / 1858,
  12621. bottom: 0.03
  12622. }
  12623. },
  12624. hand: {
  12625. height: math.unit(1.112, "feet"),
  12626. name: "Hand",
  12627. image: {
  12628. source: "./media/characters/zeta/hand.svg"
  12629. }
  12630. },
  12631. foot: {
  12632. height: math.unit(1.48, "feet"),
  12633. name: "Foot",
  12634. image: {
  12635. source: "./media/characters/zeta/foot.svg"
  12636. }
  12637. },
  12638. },
  12639. [
  12640. {
  12641. name: "Micro",
  12642. height: math.unit(6, "inches")
  12643. },
  12644. {
  12645. name: "Normal",
  12646. height: math.unit(6 + 1 / 12, "feet"),
  12647. default: true
  12648. },
  12649. {
  12650. name: "Macro",
  12651. height: math.unit(20, "feet")
  12652. },
  12653. ]
  12654. ))
  12655. characterMakers.push(() => makeCharacter(
  12656. { name: "Jamie Larsen", species: ["rabbit"], 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/jamie-larsen/front.svg",
  12664. extra: 962 / 933,
  12665. bottom: 0.02
  12666. }
  12667. },
  12668. back: {
  12669. height: math.unit(6, "feet"),
  12670. weight: math.unit(150, "lb"),
  12671. name: "Back",
  12672. image: {
  12673. source: "./media/characters/jamie-larsen/back.svg",
  12674. extra: 997 / 946
  12675. }
  12676. },
  12677. },
  12678. [
  12679. {
  12680. name: "Macro",
  12681. height: math.unit(28 + 7 / 12, "feet"),
  12682. default: true
  12683. },
  12684. {
  12685. name: "Macro+",
  12686. height: math.unit(180, "feet")
  12687. },
  12688. {
  12689. name: "Megamacro",
  12690. height: math.unit(10, "miles")
  12691. },
  12692. {
  12693. name: "Gigamacro",
  12694. height: math.unit(200000, "miles")
  12695. },
  12696. ]
  12697. ))
  12698. characterMakers.push(() => makeCharacter(
  12699. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12700. {
  12701. front: {
  12702. height: math.unit(6, "feet"),
  12703. weight: math.unit(120, "lb"),
  12704. name: "Front",
  12705. image: {
  12706. source: "./media/characters/vance/front.svg",
  12707. extra: 1980 / 1890,
  12708. bottom: 0.09
  12709. }
  12710. },
  12711. back: {
  12712. height: math.unit(6, "feet"),
  12713. weight: math.unit(120, "lb"),
  12714. name: "Back",
  12715. image: {
  12716. source: "./media/characters/vance/back.svg",
  12717. extra: 2081 / 1994,
  12718. bottom: 0.014
  12719. }
  12720. },
  12721. hand: {
  12722. height: math.unit(0.88, "feet"),
  12723. name: "Hand",
  12724. image: {
  12725. source: "./media/characters/vance/hand.svg"
  12726. }
  12727. },
  12728. foot: {
  12729. height: math.unit(0.64, "feet"),
  12730. name: "Foot",
  12731. image: {
  12732. source: "./media/characters/vance/foot.svg"
  12733. }
  12734. },
  12735. },
  12736. [
  12737. {
  12738. name: "Small",
  12739. height: math.unit(90, "feet"),
  12740. default: true
  12741. },
  12742. {
  12743. name: "Macro",
  12744. height: math.unit(100, "meters")
  12745. },
  12746. {
  12747. name: "Megamacro",
  12748. height: math.unit(15, "miles")
  12749. },
  12750. ]
  12751. ))
  12752. characterMakers.push(() => makeCharacter(
  12753. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12754. {
  12755. front: {
  12756. height: math.unit(6, "feet"),
  12757. weight: math.unit(180, "lb"),
  12758. name: "Front",
  12759. image: {
  12760. source: "./media/characters/xochitl/front.svg",
  12761. extra: 2297 / 2261,
  12762. bottom: 0.065
  12763. }
  12764. },
  12765. back: {
  12766. height: math.unit(6, "feet"),
  12767. weight: math.unit(180, "lb"),
  12768. name: "Back",
  12769. image: {
  12770. source: "./media/characters/xochitl/back.svg",
  12771. extra: 2386 / 2354,
  12772. bottom: 0.01
  12773. }
  12774. },
  12775. foot: {
  12776. height: math.unit(6 / 5 * 1.15, "feet"),
  12777. weight: math.unit(150, "lb"),
  12778. name: "Foot",
  12779. image: {
  12780. source: "./media/characters/xochitl/foot.svg"
  12781. }
  12782. },
  12783. },
  12784. [
  12785. {
  12786. name: "Macro",
  12787. height: math.unit(80, "feet")
  12788. },
  12789. {
  12790. name: "Macro+",
  12791. height: math.unit(400, "feet"),
  12792. default: true
  12793. },
  12794. {
  12795. name: "Gigamacro",
  12796. height: math.unit(80000, "miles")
  12797. },
  12798. {
  12799. name: "Gigamacro+",
  12800. height: math.unit(400000, "miles")
  12801. },
  12802. {
  12803. name: "Teramacro",
  12804. height: math.unit(300, "AU")
  12805. },
  12806. ]
  12807. ))
  12808. characterMakers.push(() => makeCharacter(
  12809. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12810. {
  12811. front: {
  12812. height: math.unit(6, "feet"),
  12813. weight: math.unit(150, "lb"),
  12814. name: "Front",
  12815. image: {
  12816. source: "./media/characters/vincent/front.svg",
  12817. extra: 1130 / 1080,
  12818. bottom: 0.055
  12819. }
  12820. },
  12821. beak: {
  12822. height: math.unit(6 * 0.1, "feet"),
  12823. name: "Beak",
  12824. image: {
  12825. source: "./media/characters/vincent/beak.svg"
  12826. }
  12827. },
  12828. hand: {
  12829. height: math.unit(6 * 0.85, "feet"),
  12830. weight: math.unit(150, "lb"),
  12831. name: "Hand",
  12832. image: {
  12833. source: "./media/characters/vincent/hand.svg"
  12834. }
  12835. },
  12836. foot: {
  12837. height: math.unit(6 * 0.19, "feet"),
  12838. weight: math.unit(150, "lb"),
  12839. name: "Foot",
  12840. image: {
  12841. source: "./media/characters/vincent/foot.svg"
  12842. }
  12843. },
  12844. },
  12845. [
  12846. {
  12847. name: "Base",
  12848. height: math.unit(6 + 5 / 12, "feet"),
  12849. default: true
  12850. },
  12851. {
  12852. name: "Macro",
  12853. height: math.unit(300, "feet")
  12854. },
  12855. {
  12856. name: "Megamacro",
  12857. height: math.unit(2, "miles")
  12858. },
  12859. {
  12860. name: "Gigamacro",
  12861. height: math.unit(1000, "miles")
  12862. },
  12863. ]
  12864. ))
  12865. characterMakers.push(() => makeCharacter(
  12866. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12867. {
  12868. front: {
  12869. height: math.unit(6 + 2 / 12, "feet"),
  12870. weight: math.unit(265, "lb"),
  12871. name: "Front",
  12872. image: {
  12873. source: "./media/characters/jay/front.svg",
  12874. extra: 1510 / 1430,
  12875. bottom: 0.042
  12876. }
  12877. },
  12878. back: {
  12879. height: math.unit(6 + 2 / 12, "feet"),
  12880. weight: math.unit(265, "lb"),
  12881. name: "Back",
  12882. image: {
  12883. source: "./media/characters/jay/back.svg",
  12884. extra: 1510 / 1430,
  12885. bottom: 0.025
  12886. }
  12887. },
  12888. clothed: {
  12889. height: math.unit(6 + 2 / 12, "feet"),
  12890. weight: math.unit(265, "lb"),
  12891. name: "Front (Clothed)",
  12892. image: {
  12893. source: "./media/characters/jay/clothed.svg",
  12894. extra: 744 / 699,
  12895. bottom: 0.043
  12896. }
  12897. },
  12898. head: {
  12899. height: math.unit(1.772, "feet"),
  12900. name: "Head",
  12901. image: {
  12902. source: "./media/characters/jay/head.svg"
  12903. }
  12904. },
  12905. sizeRay: {
  12906. height: math.unit(1.331, "feet"),
  12907. name: "Size Ray",
  12908. image: {
  12909. source: "./media/characters/jay/size-ray.svg"
  12910. }
  12911. },
  12912. },
  12913. [
  12914. {
  12915. name: "Micro",
  12916. height: math.unit(1, "inch")
  12917. },
  12918. {
  12919. name: "Normal",
  12920. height: math.unit(6 + 2 / 12, "feet"),
  12921. default: true
  12922. },
  12923. {
  12924. name: "Macro",
  12925. height: math.unit(1, "mile")
  12926. },
  12927. {
  12928. name: "Megamacro",
  12929. height: math.unit(100, "miles")
  12930. },
  12931. ]
  12932. ))
  12933. characterMakers.push(() => makeCharacter(
  12934. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12935. {
  12936. front: {
  12937. height: math.unit(2, "meters"),
  12938. weight: math.unit(500, "kg"),
  12939. name: "Front",
  12940. image: {
  12941. source: "./media/characters/coatl/front.svg",
  12942. extra: 3948 / 3500,
  12943. bottom: 0.082
  12944. }
  12945. },
  12946. },
  12947. [
  12948. {
  12949. name: "Normal",
  12950. height: math.unit(4, "meters")
  12951. },
  12952. {
  12953. name: "Macro",
  12954. height: math.unit(100, "meters"),
  12955. default: true
  12956. },
  12957. {
  12958. name: "Macro+",
  12959. height: math.unit(300, "meters")
  12960. },
  12961. {
  12962. name: "Megamacro",
  12963. height: math.unit(3, "gigameters")
  12964. },
  12965. {
  12966. name: "Megamacro+",
  12967. height: math.unit(300, "terameters")
  12968. },
  12969. {
  12970. name: "Megamacro++",
  12971. height: math.unit(3, "lightyears")
  12972. },
  12973. ]
  12974. ))
  12975. characterMakers.push(() => makeCharacter(
  12976. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12977. {
  12978. front: {
  12979. height: math.unit(6, "feet"),
  12980. weight: math.unit(50, "kg"),
  12981. name: "front",
  12982. image: {
  12983. source: "./media/characters/shiroryu/front.svg",
  12984. extra: 1990 / 1935
  12985. }
  12986. },
  12987. },
  12988. [
  12989. {
  12990. name: "Mortal Mingling",
  12991. height: math.unit(3, "meters")
  12992. },
  12993. {
  12994. name: "Kaiju-ish",
  12995. height: math.unit(250, "meters")
  12996. },
  12997. {
  12998. name: "Somewhat Godly",
  12999. height: math.unit(400, "km"),
  13000. default: true
  13001. },
  13002. {
  13003. name: "Planetary",
  13004. height: math.unit(300, "megameters")
  13005. },
  13006. {
  13007. name: "Galaxy-dwarfing",
  13008. height: math.unit(450, "kiloparsecs")
  13009. },
  13010. {
  13011. name: "Universe Eater",
  13012. height: math.unit(150, "gigaparsecs")
  13013. },
  13014. {
  13015. name: "Almost Immeasurable",
  13016. height: math.unit(1.3e266, "yottaparsecs")
  13017. },
  13018. ]
  13019. ))
  13020. characterMakers.push(() => makeCharacter(
  13021. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13022. {
  13023. front: {
  13024. height: math.unit(6, "feet"),
  13025. weight: math.unit(150, "lb"),
  13026. name: "Front",
  13027. image: {
  13028. source: "./media/characters/umeko/front.svg",
  13029. extra: 1,
  13030. bottom: 0.019
  13031. }
  13032. },
  13033. frontArmored: {
  13034. height: math.unit(6, "feet"),
  13035. weight: math.unit(150, "lb"),
  13036. name: "Front (Armored)",
  13037. image: {
  13038. source: "./media/characters/umeko/front-armored.svg",
  13039. extra: 1,
  13040. bottom: 0.021
  13041. }
  13042. },
  13043. },
  13044. [
  13045. {
  13046. name: "Macro",
  13047. height: math.unit(220, "feet"),
  13048. default: true
  13049. },
  13050. {
  13051. name: "Guardian Dragon",
  13052. height: math.unit(50, "miles")
  13053. },
  13054. {
  13055. name: "Cosmic",
  13056. height: math.unit(800000, "miles")
  13057. },
  13058. ]
  13059. ))
  13060. characterMakers.push(() => makeCharacter(
  13061. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13062. {
  13063. front: {
  13064. height: math.unit(6, "feet"),
  13065. weight: math.unit(150, "lb"),
  13066. name: "Front",
  13067. image: {
  13068. source: "./media/characters/cassidy/front.svg",
  13069. extra: 1,
  13070. bottom: 0.043
  13071. }
  13072. },
  13073. },
  13074. [
  13075. {
  13076. name: "Canon Height",
  13077. height: math.unit(120, "feet"),
  13078. default: true
  13079. },
  13080. {
  13081. name: "Macro+",
  13082. height: math.unit(400, "feet")
  13083. },
  13084. {
  13085. name: "Macro++",
  13086. height: math.unit(4000, "feet")
  13087. },
  13088. {
  13089. name: "Megamacro",
  13090. height: math.unit(3, "miles")
  13091. },
  13092. ]
  13093. ))
  13094. characterMakers.push(() => makeCharacter(
  13095. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13096. {
  13097. front: {
  13098. height: math.unit(6, "feet"),
  13099. weight: math.unit(150, "lb"),
  13100. name: "Front",
  13101. image: {
  13102. source: "./media/characters/isaac/front.svg",
  13103. extra: 896 / 815,
  13104. bottom: 0.11
  13105. }
  13106. },
  13107. },
  13108. [
  13109. {
  13110. name: "Human Size",
  13111. height: math.unit(8, "feet"),
  13112. default: true
  13113. },
  13114. {
  13115. name: "Macro",
  13116. height: math.unit(400, "feet")
  13117. },
  13118. {
  13119. name: "Megamacro",
  13120. height: math.unit(50, "miles")
  13121. },
  13122. {
  13123. name: "Canon Height",
  13124. height: math.unit(200, "AU")
  13125. },
  13126. ]
  13127. ))
  13128. characterMakers.push(() => makeCharacter(
  13129. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13130. {
  13131. front: {
  13132. height: math.unit(6, "feet"),
  13133. weight: math.unit(72, "kg"),
  13134. name: "Front",
  13135. image: {
  13136. source: "./media/characters/sleekit/front.svg",
  13137. extra: 4693 / 4487,
  13138. bottom: 0.012
  13139. }
  13140. },
  13141. },
  13142. [
  13143. {
  13144. name: "Minimum Height",
  13145. height: math.unit(10, "meters")
  13146. },
  13147. {
  13148. name: "Smaller",
  13149. height: math.unit(25, "meters")
  13150. },
  13151. {
  13152. name: "Larger",
  13153. height: math.unit(38, "meters"),
  13154. default: true
  13155. },
  13156. {
  13157. name: "Maximum height",
  13158. height: math.unit(100, "meters")
  13159. },
  13160. ]
  13161. ))
  13162. characterMakers.push(() => makeCharacter(
  13163. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13164. {
  13165. front: {
  13166. height: math.unit(6, "feet"),
  13167. weight: math.unit(150, "lb"),
  13168. name: "Front",
  13169. image: {
  13170. source: "./media/characters/nillia/front.svg",
  13171. extra: 2195 / 2037,
  13172. bottom: 0.005
  13173. }
  13174. },
  13175. back: {
  13176. height: math.unit(6, "feet"),
  13177. weight: math.unit(150, "lb"),
  13178. name: "Back",
  13179. image: {
  13180. source: "./media/characters/nillia/back.svg",
  13181. extra: 2195 / 2037,
  13182. bottom: 0.005
  13183. }
  13184. },
  13185. },
  13186. [
  13187. {
  13188. name: "Canon Height",
  13189. height: math.unit(489, "feet"),
  13190. default: true
  13191. }
  13192. ]
  13193. ))
  13194. characterMakers.push(() => makeCharacter(
  13195. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13196. {
  13197. front: {
  13198. height: math.unit(6, "feet"),
  13199. weight: math.unit(150, "lb"),
  13200. name: "Front",
  13201. image: {
  13202. source: "./media/characters/mesmyriza/front.svg",
  13203. extra: 2067 / 1784,
  13204. bottom: 0.035
  13205. }
  13206. },
  13207. foot: {
  13208. height: math.unit(6 / (250 / 35), "feet"),
  13209. name: "Foot",
  13210. image: {
  13211. source: "./media/characters/mesmyriza/foot.svg"
  13212. }
  13213. },
  13214. },
  13215. [
  13216. {
  13217. name: "Macro",
  13218. height: math.unit(457, "meters"),
  13219. default: true
  13220. },
  13221. {
  13222. name: "Megamacro",
  13223. height: math.unit(8, "megameters")
  13224. },
  13225. ]
  13226. ))
  13227. characterMakers.push(() => makeCharacter(
  13228. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13229. {
  13230. front: {
  13231. height: math.unit(6, "feet"),
  13232. weight: math.unit(250, "lb"),
  13233. name: "Front",
  13234. image: {
  13235. source: "./media/characters/saudade/front.svg",
  13236. extra: 1172 / 1139,
  13237. bottom: 0.035
  13238. }
  13239. },
  13240. },
  13241. [
  13242. {
  13243. name: "Micro",
  13244. height: math.unit(3, "inches")
  13245. },
  13246. {
  13247. name: "Normal",
  13248. height: math.unit(6, "feet"),
  13249. default: true
  13250. },
  13251. {
  13252. name: "Macro",
  13253. height: math.unit(50, "feet")
  13254. },
  13255. {
  13256. name: "Megamacro",
  13257. height: math.unit(2800, "feet")
  13258. },
  13259. ]
  13260. ))
  13261. characterMakers.push(() => makeCharacter(
  13262. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13263. {
  13264. front: {
  13265. height: math.unit(5 + 4 / 12, "feet"),
  13266. weight: math.unit(100, "lb"),
  13267. name: "Front",
  13268. image: {
  13269. source: "./media/characters/keireer/front.svg",
  13270. extra: 716 / 666,
  13271. bottom: 0.05
  13272. }
  13273. },
  13274. },
  13275. [
  13276. {
  13277. name: "Normal",
  13278. height: math.unit(5 + 4 / 12, "feet"),
  13279. default: true
  13280. },
  13281. ]
  13282. ))
  13283. characterMakers.push(() => makeCharacter(
  13284. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13285. {
  13286. front: {
  13287. height: math.unit(6, "feet"),
  13288. weight: math.unit(90, "kg"),
  13289. name: "Front",
  13290. image: {
  13291. source: "./media/characters/mirja/front.svg",
  13292. extra: 1789 / 1683,
  13293. bottom: 0.05
  13294. }
  13295. },
  13296. frontDressed: {
  13297. height: math.unit(6, "feet"),
  13298. weight: math.unit(90, "lb"),
  13299. name: "Front (Dressed)",
  13300. image: {
  13301. source: "./media/characters/mirja/front-dressed.svg",
  13302. extra: 1789 / 1683,
  13303. bottom: 0.05
  13304. }
  13305. },
  13306. back: {
  13307. height: math.unit(6, "feet"),
  13308. weight: math.unit(90, "lb"),
  13309. name: "Back",
  13310. image: {
  13311. source: "./media/characters/mirja/back.svg",
  13312. extra: 953 / 917,
  13313. bottom: 0.017
  13314. }
  13315. },
  13316. },
  13317. [
  13318. {
  13319. name: "\"Incognito\"",
  13320. height: math.unit(3, "meters")
  13321. },
  13322. {
  13323. name: "Strolling Size",
  13324. height: math.unit(15, "km")
  13325. },
  13326. {
  13327. name: "Larger Strolling Size",
  13328. height: math.unit(400, "km")
  13329. },
  13330. {
  13331. name: "Preferred Size",
  13332. height: math.unit(5000, "km")
  13333. },
  13334. {
  13335. name: "True Size",
  13336. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13337. default: true
  13338. },
  13339. ]
  13340. ))
  13341. characterMakers.push(() => makeCharacter(
  13342. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13343. {
  13344. front: {
  13345. height: math.unit(15, "feet"),
  13346. weight: math.unit(880, "kg"),
  13347. name: "Front",
  13348. image: {
  13349. source: "./media/characters/nightraver/front.svg",
  13350. extra: 2444 / 2160,
  13351. bottom: 0.027
  13352. }
  13353. },
  13354. back: {
  13355. height: math.unit(15, "feet"),
  13356. weight: math.unit(880, "kg"),
  13357. name: "Back",
  13358. image: {
  13359. source: "./media/characters/nightraver/back.svg",
  13360. extra: 2309 / 2180,
  13361. bottom: 0.005
  13362. }
  13363. },
  13364. sole: {
  13365. height: math.unit(2.878, "feet"),
  13366. name: "Sole",
  13367. image: {
  13368. source: "./media/characters/nightraver/sole.svg"
  13369. }
  13370. },
  13371. foot: {
  13372. height: math.unit(2.285, "feet"),
  13373. name: "Foot",
  13374. image: {
  13375. source: "./media/characters/nightraver/foot.svg"
  13376. }
  13377. },
  13378. maw: {
  13379. height: math.unit(2.67, "feet"),
  13380. name: "Maw",
  13381. image: {
  13382. source: "./media/characters/nightraver/maw.svg"
  13383. }
  13384. },
  13385. },
  13386. [
  13387. {
  13388. name: "Micro",
  13389. height: math.unit(1, "cm")
  13390. },
  13391. {
  13392. name: "Normal",
  13393. height: math.unit(15, "feet"),
  13394. default: true
  13395. },
  13396. {
  13397. name: "Macro",
  13398. height: math.unit(300, "feet")
  13399. },
  13400. {
  13401. name: "Megamacro",
  13402. height: math.unit(300, "miles")
  13403. },
  13404. {
  13405. name: "Gigamacro",
  13406. height: math.unit(10000, "miles")
  13407. },
  13408. ]
  13409. ))
  13410. characterMakers.push(() => makeCharacter(
  13411. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13412. {
  13413. side: {
  13414. height: math.unit(2, "inches"),
  13415. weight: math.unit(5, "grams"),
  13416. name: "Side",
  13417. image: {
  13418. source: "./media/characters/arc/side.svg"
  13419. }
  13420. },
  13421. },
  13422. [
  13423. {
  13424. name: "Micro",
  13425. height: math.unit(2, "inches"),
  13426. default: true
  13427. },
  13428. ]
  13429. ))
  13430. characterMakers.push(() => makeCharacter(
  13431. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13432. {
  13433. front: {
  13434. height: math.unit(1.1938, "meters"),
  13435. weight: math.unit(54, "kg"),
  13436. name: "Front",
  13437. image: {
  13438. source: "./media/characters/nebula-shahar/front.svg",
  13439. extra: 1642 / 1436,
  13440. bottom: 0.06
  13441. }
  13442. },
  13443. },
  13444. [
  13445. {
  13446. name: "Megamicro",
  13447. height: math.unit(0.3, "mm")
  13448. },
  13449. {
  13450. name: "Micro",
  13451. height: math.unit(3, "cm")
  13452. },
  13453. {
  13454. name: "Normal",
  13455. height: math.unit(138, "cm"),
  13456. default: true
  13457. },
  13458. {
  13459. name: "Macro",
  13460. height: math.unit(30, "m")
  13461. },
  13462. ]
  13463. ))
  13464. characterMakers.push(() => makeCharacter(
  13465. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13466. {
  13467. front: {
  13468. height: math.unit(5.24, "feet"),
  13469. weight: math.unit(150, "lb"),
  13470. name: "Front",
  13471. image: {
  13472. source: "./media/characters/shayla/front.svg",
  13473. extra: 1512 / 1414,
  13474. bottom: 0.01
  13475. }
  13476. },
  13477. back: {
  13478. height: math.unit(5.24, "feet"),
  13479. weight: math.unit(150, "lb"),
  13480. name: "Back",
  13481. image: {
  13482. source: "./media/characters/shayla/back.svg",
  13483. extra: 1512 / 1414
  13484. }
  13485. },
  13486. hand: {
  13487. height: math.unit(0.7781496062992126, "feet"),
  13488. name: "Hand",
  13489. image: {
  13490. source: "./media/characters/shayla/hand.svg"
  13491. }
  13492. },
  13493. foot: {
  13494. height: math.unit(1.4206036745406823, "feet"),
  13495. name: "Foot",
  13496. image: {
  13497. source: "./media/characters/shayla/foot.svg"
  13498. }
  13499. },
  13500. },
  13501. [
  13502. {
  13503. name: "Micro",
  13504. height: math.unit(0.32, "feet")
  13505. },
  13506. {
  13507. name: "Normal",
  13508. height: math.unit(5.24, "feet"),
  13509. default: true
  13510. },
  13511. {
  13512. name: "Macro",
  13513. height: math.unit(492.12, "feet")
  13514. },
  13515. {
  13516. name: "Megamacro",
  13517. height: math.unit(186.41, "miles")
  13518. },
  13519. ]
  13520. ))
  13521. characterMakers.push(() => makeCharacter(
  13522. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13523. {
  13524. front: {
  13525. height: math.unit(2.2, "m"),
  13526. weight: math.unit(120, "kg"),
  13527. name: "Front",
  13528. image: {
  13529. source: "./media/characters/pia-jr/front.svg",
  13530. extra: 1000 / 970,
  13531. bottom: 0.035
  13532. }
  13533. },
  13534. hand: {
  13535. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13536. name: "Hand",
  13537. image: {
  13538. source: "./media/characters/pia-jr/hand.svg"
  13539. }
  13540. },
  13541. paw: {
  13542. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13543. name: "Paw",
  13544. image: {
  13545. source: "./media/characters/pia-jr/paw.svg"
  13546. }
  13547. },
  13548. },
  13549. [
  13550. {
  13551. name: "Micro",
  13552. height: math.unit(1.2, "cm")
  13553. },
  13554. {
  13555. name: "Normal",
  13556. height: math.unit(2.2, "m"),
  13557. default: true
  13558. },
  13559. {
  13560. name: "Macro",
  13561. height: math.unit(180, "m")
  13562. },
  13563. {
  13564. name: "Megamacro",
  13565. height: math.unit(420, "km")
  13566. },
  13567. ]
  13568. ))
  13569. characterMakers.push(() => makeCharacter(
  13570. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13571. {
  13572. front: {
  13573. height: math.unit(2, "m"),
  13574. weight: math.unit(115, "kg"),
  13575. name: "Front",
  13576. image: {
  13577. source: "./media/characters/pia-sr/front.svg",
  13578. extra: 760 / 730,
  13579. bottom: 0.015
  13580. }
  13581. },
  13582. back: {
  13583. height: math.unit(2, "m"),
  13584. weight: math.unit(115, "kg"),
  13585. name: "Back",
  13586. image: {
  13587. source: "./media/characters/pia-sr/back.svg",
  13588. extra: 760 / 730,
  13589. bottom: 0.01
  13590. }
  13591. },
  13592. hand: {
  13593. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13594. name: "Hand",
  13595. image: {
  13596. source: "./media/characters/pia-sr/hand.svg"
  13597. }
  13598. },
  13599. foot: {
  13600. height: math.unit(1.83, "feet"),
  13601. name: "Foot",
  13602. image: {
  13603. source: "./media/characters/pia-sr/foot.svg"
  13604. }
  13605. },
  13606. },
  13607. [
  13608. {
  13609. name: "Micro",
  13610. height: math.unit(88, "mm")
  13611. },
  13612. {
  13613. name: "Normal",
  13614. height: math.unit(2, "m"),
  13615. default: true
  13616. },
  13617. {
  13618. name: "Macro",
  13619. height: math.unit(200, "m")
  13620. },
  13621. {
  13622. name: "Megamacro",
  13623. height: math.unit(420, "km")
  13624. },
  13625. ]
  13626. ))
  13627. characterMakers.push(() => makeCharacter(
  13628. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13629. {
  13630. front: {
  13631. height: math.unit(8 + 2 / 12, "feet"),
  13632. weight: math.unit(300, "lb"),
  13633. name: "Front",
  13634. image: {
  13635. source: "./media/characters/kibibyte/front.svg",
  13636. extra: 2221 / 2098,
  13637. bottom: 0.04
  13638. }
  13639. },
  13640. },
  13641. [
  13642. {
  13643. name: "Normal",
  13644. height: math.unit(8 + 2 / 12, "feet"),
  13645. default: true
  13646. },
  13647. {
  13648. name: "Socialable Macro",
  13649. height: math.unit(50, "feet")
  13650. },
  13651. {
  13652. name: "Macro",
  13653. height: math.unit(300, "feet")
  13654. },
  13655. {
  13656. name: "Megamacro",
  13657. height: math.unit(500, "miles")
  13658. },
  13659. ]
  13660. ))
  13661. characterMakers.push(() => makeCharacter(
  13662. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13663. {
  13664. front: {
  13665. height: math.unit(6, "feet"),
  13666. weight: math.unit(150, "lb"),
  13667. name: "Front",
  13668. image: {
  13669. source: "./media/characters/felix/front.svg",
  13670. extra: 762 / 722,
  13671. bottom: 0.02
  13672. }
  13673. },
  13674. frontClothed: {
  13675. height: math.unit(6, "feet"),
  13676. weight: math.unit(150, "lb"),
  13677. name: "Front (Clothed)",
  13678. image: {
  13679. source: "./media/characters/felix/front-clothed.svg",
  13680. extra: 762 / 722,
  13681. bottom: 0.02
  13682. }
  13683. },
  13684. },
  13685. [
  13686. {
  13687. name: "Normal",
  13688. height: math.unit(6 + 8 / 12, "feet"),
  13689. default: true
  13690. },
  13691. {
  13692. name: "Macro",
  13693. height: math.unit(2600, "feet")
  13694. },
  13695. {
  13696. name: "Megamacro",
  13697. height: math.unit(450, "miles")
  13698. },
  13699. ]
  13700. ))
  13701. characterMakers.push(() => makeCharacter(
  13702. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13703. {
  13704. front: {
  13705. height: math.unit(6 + 1 / 12, "feet"),
  13706. weight: math.unit(250, "lb"),
  13707. name: "Front",
  13708. image: {
  13709. source: "./media/characters/tobo/front.svg",
  13710. extra: 608 / 586,
  13711. bottom: 0.023
  13712. }
  13713. },
  13714. back: {
  13715. height: math.unit(6 + 1 / 12, "feet"),
  13716. weight: math.unit(250, "lb"),
  13717. name: "Back",
  13718. image: {
  13719. source: "./media/characters/tobo/back.svg",
  13720. extra: 608 / 586
  13721. }
  13722. },
  13723. },
  13724. [
  13725. {
  13726. name: "Nano",
  13727. height: math.unit(2, "nm")
  13728. },
  13729. {
  13730. name: "Megamicro",
  13731. height: math.unit(0.1, "mm")
  13732. },
  13733. {
  13734. name: "Micro",
  13735. height: math.unit(1, "inch"),
  13736. default: true
  13737. },
  13738. {
  13739. name: "Human-sized",
  13740. height: math.unit(6 + 1 / 12, "feet")
  13741. },
  13742. {
  13743. name: "Macro",
  13744. height: math.unit(250, "feet")
  13745. },
  13746. {
  13747. name: "Megamacro",
  13748. height: math.unit(75, "miles")
  13749. },
  13750. {
  13751. name: "Texas-sized",
  13752. height: math.unit(750, "miles")
  13753. },
  13754. {
  13755. name: "Teramacro",
  13756. height: math.unit(50000, "miles")
  13757. },
  13758. ]
  13759. ))
  13760. characterMakers.push(() => makeCharacter(
  13761. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13762. {
  13763. front: {
  13764. height: math.unit(6, "feet"),
  13765. weight: math.unit(269, "lb"),
  13766. name: "Front",
  13767. image: {
  13768. source: "./media/characters/danny-kapowsky/front.svg",
  13769. extra: 766 / 736,
  13770. bottom: 0.044
  13771. }
  13772. },
  13773. back: {
  13774. height: math.unit(6, "feet"),
  13775. weight: math.unit(269, "lb"),
  13776. name: "Back",
  13777. image: {
  13778. source: "./media/characters/danny-kapowsky/back.svg",
  13779. extra: 797 / 760,
  13780. bottom: 0.025
  13781. }
  13782. },
  13783. },
  13784. [
  13785. {
  13786. name: "Macro",
  13787. height: math.unit(150, "feet"),
  13788. default: true
  13789. },
  13790. {
  13791. name: "Macro+",
  13792. height: math.unit(200, "feet")
  13793. },
  13794. {
  13795. name: "Macro++",
  13796. height: math.unit(300, "feet")
  13797. },
  13798. {
  13799. name: "Macro+++",
  13800. height: math.unit(400, "feet")
  13801. },
  13802. ]
  13803. ))
  13804. characterMakers.push(() => makeCharacter(
  13805. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13806. {
  13807. side: {
  13808. height: math.unit(6, "feet"),
  13809. weight: math.unit(170, "lb"),
  13810. name: "Side",
  13811. image: {
  13812. source: "./media/characters/finn/side.svg",
  13813. extra: 1953 / 1807,
  13814. bottom: 0.057
  13815. }
  13816. },
  13817. },
  13818. [
  13819. {
  13820. name: "Megamacro",
  13821. height: math.unit(14445, "feet"),
  13822. default: true
  13823. },
  13824. ]
  13825. ))
  13826. characterMakers.push(() => makeCharacter(
  13827. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13828. {
  13829. front: {
  13830. height: math.unit(5 + 6 / 12, "feet"),
  13831. weight: math.unit(125, "lb"),
  13832. name: "Front",
  13833. image: {
  13834. source: "./media/characters/roy/front.svg",
  13835. extra: 1,
  13836. bottom: 0.11
  13837. }
  13838. },
  13839. },
  13840. [
  13841. {
  13842. name: "Micro",
  13843. height: math.unit(3, "inches"),
  13844. default: true
  13845. },
  13846. {
  13847. name: "Normal",
  13848. height: math.unit(5 + 6 / 12, "feet")
  13849. },
  13850. {
  13851. name: "Lesser Macro",
  13852. height: math.unit(60, "feet")
  13853. },
  13854. {
  13855. name: "Greater Macro",
  13856. height: math.unit(120, "feet")
  13857. },
  13858. ]
  13859. ))
  13860. characterMakers.push(() => makeCharacter(
  13861. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13862. {
  13863. front: {
  13864. height: math.unit(6, "feet"),
  13865. weight: math.unit(100, "lb"),
  13866. name: "Front",
  13867. image: {
  13868. source: "./media/characters/aevsivs/front.svg",
  13869. extra: 1,
  13870. bottom: 0.03
  13871. }
  13872. },
  13873. back: {
  13874. height: math.unit(6, "feet"),
  13875. weight: math.unit(100, "lb"),
  13876. name: "Back",
  13877. image: {
  13878. source: "./media/characters/aevsivs/back.svg"
  13879. }
  13880. },
  13881. },
  13882. [
  13883. {
  13884. name: "Micro",
  13885. height: math.unit(2, "inches"),
  13886. default: true
  13887. },
  13888. {
  13889. name: "Normal",
  13890. height: math.unit(5, "feet")
  13891. },
  13892. ]
  13893. ))
  13894. characterMakers.push(() => makeCharacter(
  13895. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13896. {
  13897. front: {
  13898. height: math.unit(5 + 7 / 12, "feet"),
  13899. weight: math.unit(159, "lb"),
  13900. name: "Front",
  13901. image: {
  13902. source: "./media/characters/hildegard/front.svg",
  13903. extra: 289 / 269,
  13904. bottom: 7.63/297.8
  13905. }
  13906. },
  13907. back: {
  13908. height: math.unit(5 + 7 / 12, "feet"),
  13909. weight: math.unit(159, "lb"),
  13910. name: "Back",
  13911. image: {
  13912. source: "./media/characters/hildegard/back.svg",
  13913. extra: 280/260,
  13914. bottom: 2.3/282
  13915. }
  13916. },
  13917. },
  13918. [
  13919. {
  13920. name: "Normal",
  13921. height: math.unit(5 + 7 / 12, "feet"),
  13922. default: true
  13923. },
  13924. ]
  13925. ))
  13926. characterMakers.push(() => makeCharacter(
  13927. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13928. {
  13929. bernard: {
  13930. height: math.unit(2 + 7 / 12, "feet"),
  13931. weight: math.unit(66, "lb"),
  13932. name: "Bernard",
  13933. rename: true,
  13934. image: {
  13935. source: "./media/characters/bernard-wilder/bernard.svg",
  13936. extra: 192 / 128,
  13937. bottom: 0.05
  13938. }
  13939. },
  13940. wilder: {
  13941. height: math.unit(5 + 8 / 12, "feet"),
  13942. weight: math.unit(143, "lb"),
  13943. name: "Wilder",
  13944. rename: true,
  13945. image: {
  13946. source: "./media/characters/bernard-wilder/wilder.svg",
  13947. extra: 361 / 312,
  13948. bottom: 0.02
  13949. }
  13950. },
  13951. },
  13952. [
  13953. {
  13954. name: "Normal",
  13955. height: math.unit(2 + 7 / 12, "feet"),
  13956. default: true
  13957. },
  13958. ]
  13959. ))
  13960. characterMakers.push(() => makeCharacter(
  13961. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13962. {
  13963. anthro: {
  13964. height: math.unit(6 + 1 / 12, "feet"),
  13965. weight: math.unit(155, "lb"),
  13966. name: "Anthro",
  13967. image: {
  13968. source: "./media/characters/hearth/anthro.svg",
  13969. extra: 260 / 250,
  13970. bottom: 0.02
  13971. }
  13972. },
  13973. feral: {
  13974. height: math.unit(3.78, "feet"),
  13975. weight: math.unit(35, "kg"),
  13976. name: "Feral",
  13977. image: {
  13978. source: "./media/characters/hearth/feral.svg",
  13979. extra: 153 / 135,
  13980. bottom: 0.03
  13981. }
  13982. },
  13983. },
  13984. [
  13985. {
  13986. name: "Normal",
  13987. height: math.unit(6 + 1 / 12, "feet"),
  13988. default: true
  13989. },
  13990. ]
  13991. ))
  13992. characterMakers.push(() => makeCharacter(
  13993. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13994. {
  13995. front: {
  13996. height: math.unit(6, "feet"),
  13997. weight: math.unit(182, "lb"),
  13998. name: "Front",
  13999. image: {
  14000. source: "./media/characters/ingrid/front.svg",
  14001. extra: 294 / 268,
  14002. bottom: 0.027
  14003. }
  14004. },
  14005. },
  14006. [
  14007. {
  14008. name: "Normal",
  14009. height: math.unit(6, "feet"),
  14010. default: true
  14011. },
  14012. ]
  14013. ))
  14014. characterMakers.push(() => makeCharacter(
  14015. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14016. {
  14017. eevee: {
  14018. height: math.unit(2 + 10 / 12, "feet"),
  14019. weight: math.unit(86, "lb"),
  14020. name: "Malgam",
  14021. image: {
  14022. source: "./media/characters/malgam/eevee.svg",
  14023. extra: 218 / 180,
  14024. bottom: 0.2
  14025. }
  14026. },
  14027. sylveon: {
  14028. height: math.unit(4, "feet"),
  14029. weight: math.unit(101, "lb"),
  14030. name: "Future Malgam",
  14031. rename: true,
  14032. image: {
  14033. source: "./media/characters/malgam/sylveon.svg",
  14034. extra: 371 / 325,
  14035. bottom: 0.015
  14036. }
  14037. },
  14038. gigantamax: {
  14039. height: math.unit(50, "feet"),
  14040. name: "Gigantamax Malgam",
  14041. rename: true,
  14042. image: {
  14043. source: "./media/characters/malgam/gigantamax.svg"
  14044. }
  14045. },
  14046. },
  14047. [
  14048. {
  14049. name: "Normal",
  14050. height: math.unit(2 + 10 / 12, "feet"),
  14051. default: true
  14052. },
  14053. ]
  14054. ))
  14055. characterMakers.push(() => makeCharacter(
  14056. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14057. {
  14058. front: {
  14059. height: math.unit(5 + 11 / 12, "feet"),
  14060. weight: math.unit(188, "lb"),
  14061. name: "Front",
  14062. image: {
  14063. source: "./media/characters/fleur/front.svg",
  14064. extra: 309 / 283,
  14065. bottom: 0.007
  14066. }
  14067. },
  14068. },
  14069. [
  14070. {
  14071. name: "Normal",
  14072. height: math.unit(5 + 11 / 12, "feet"),
  14073. default: true
  14074. },
  14075. ]
  14076. ))
  14077. characterMakers.push(() => makeCharacter(
  14078. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14079. {
  14080. front: {
  14081. height: math.unit(5 + 4 / 12, "feet"),
  14082. weight: math.unit(122, "lb"),
  14083. name: "Front",
  14084. image: {
  14085. source: "./media/characters/jude/front.svg",
  14086. extra: 288 / 273,
  14087. bottom: 0.03
  14088. }
  14089. },
  14090. },
  14091. [
  14092. {
  14093. name: "Normal",
  14094. height: math.unit(5 + 4 / 12, "feet"),
  14095. default: true
  14096. },
  14097. ]
  14098. ))
  14099. characterMakers.push(() => makeCharacter(
  14100. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14101. {
  14102. front: {
  14103. height: math.unit(5 + 11 / 12, "feet"),
  14104. weight: math.unit(190, "lb"),
  14105. name: "Front",
  14106. image: {
  14107. source: "./media/characters/seara/front.svg",
  14108. extra: 1,
  14109. bottom: 0.05
  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: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14123. {
  14124. front: {
  14125. height: math.unit(16 + 5 / 12, "feet"),
  14126. weight: math.unit(524, "lb"),
  14127. name: "Front",
  14128. image: {
  14129. source: "./media/characters/caspian/front.svg",
  14130. extra: 1,
  14131. bottom: 0.04
  14132. }
  14133. },
  14134. },
  14135. [
  14136. {
  14137. name: "Normal",
  14138. height: math.unit(16 + 5 / 12, "feet"),
  14139. default: true
  14140. },
  14141. ]
  14142. ))
  14143. characterMakers.push(() => makeCharacter(
  14144. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14145. {
  14146. front: {
  14147. height: math.unit(5 + 7 / 12, "feet"),
  14148. weight: math.unit(170, "lb"),
  14149. name: "Front",
  14150. image: {
  14151. source: "./media/characters/mika/front.svg",
  14152. extra: 1,
  14153. bottom: 0.016
  14154. }
  14155. },
  14156. },
  14157. [
  14158. {
  14159. name: "Normal",
  14160. height: math.unit(5 + 7 / 12, "feet"),
  14161. default: true
  14162. },
  14163. ]
  14164. ))
  14165. characterMakers.push(() => makeCharacter(
  14166. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14167. {
  14168. front: {
  14169. height: math.unit(6 + 2 / 12, "feet"),
  14170. weight: math.unit(268, "lb"),
  14171. name: "Front",
  14172. image: {
  14173. source: "./media/characters/sol/front.svg",
  14174. extra: 247 / 231,
  14175. bottom: 0.05
  14176. }
  14177. },
  14178. },
  14179. [
  14180. {
  14181. name: "Normal",
  14182. height: math.unit(6 + 2 / 12, "feet"),
  14183. default: true
  14184. },
  14185. ]
  14186. ))
  14187. characterMakers.push(() => makeCharacter(
  14188. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14189. {
  14190. buizel: {
  14191. height: math.unit(2 + 5 / 12, "feet"),
  14192. weight: math.unit(87, "lb"),
  14193. name: "Buizel",
  14194. image: {
  14195. source: "./media/characters/umiko/buizel.svg",
  14196. extra: 172 / 157,
  14197. bottom: 0.01
  14198. }
  14199. },
  14200. floatzel: {
  14201. height: math.unit(5 + 9 / 12, "feet"),
  14202. weight: math.unit(250, "lb"),
  14203. name: "Floatzel",
  14204. image: {
  14205. source: "./media/characters/umiko/floatzel.svg",
  14206. extra: 262 / 248
  14207. }
  14208. },
  14209. },
  14210. [
  14211. {
  14212. name: "Normal",
  14213. height: math.unit(2 + 5 / 12, "feet"),
  14214. default: true
  14215. },
  14216. ]
  14217. ))
  14218. characterMakers.push(() => makeCharacter(
  14219. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14220. {
  14221. front: {
  14222. height: math.unit(6 + 2 / 12, "feet"),
  14223. weight: math.unit(146, "lb"),
  14224. name: "Front",
  14225. image: {
  14226. source: "./media/characters/iliac/front.svg",
  14227. extra: 389 / 365,
  14228. bottom: 0.035
  14229. }
  14230. },
  14231. },
  14232. [
  14233. {
  14234. name: "Normal",
  14235. height: math.unit(6 + 2 / 12, "feet"),
  14236. default: true
  14237. },
  14238. ]
  14239. ))
  14240. characterMakers.push(() => makeCharacter(
  14241. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14242. {
  14243. front: {
  14244. height: math.unit(6, "feet"),
  14245. weight: math.unit(170, "lb"),
  14246. name: "Front",
  14247. image: {
  14248. source: "./media/characters/topaz/front.svg",
  14249. extra: 317 / 303,
  14250. bottom: 0.055
  14251. }
  14252. },
  14253. },
  14254. [
  14255. {
  14256. name: "Normal",
  14257. height: math.unit(6, "feet"),
  14258. default: true
  14259. },
  14260. ]
  14261. ))
  14262. characterMakers.push(() => makeCharacter(
  14263. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14264. {
  14265. front: {
  14266. height: math.unit(5 + 11 / 12, "feet"),
  14267. weight: math.unit(144, "lb"),
  14268. name: "Front",
  14269. image: {
  14270. source: "./media/characters/gabriel/front.svg",
  14271. extra: 285 / 262,
  14272. bottom: 0.004
  14273. }
  14274. },
  14275. },
  14276. [
  14277. {
  14278. name: "Normal",
  14279. height: math.unit(5 + 11 / 12, "feet"),
  14280. default: true
  14281. },
  14282. ]
  14283. ))
  14284. characterMakers.push(() => makeCharacter(
  14285. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14286. {
  14287. side: {
  14288. height: math.unit(6 + 5 / 12, "feet"),
  14289. weight: math.unit(300, "lb"),
  14290. name: "Side",
  14291. image: {
  14292. source: "./media/characters/tempest-suicune/side.svg",
  14293. extra: 195 / 154,
  14294. bottom: 0.04
  14295. }
  14296. },
  14297. },
  14298. [
  14299. {
  14300. name: "Normal",
  14301. height: math.unit(6 + 5 / 12, "feet"),
  14302. default: true
  14303. },
  14304. ]
  14305. ))
  14306. characterMakers.push(() => makeCharacter(
  14307. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14308. {
  14309. front: {
  14310. height: math.unit(7 + 2 / 12, "feet"),
  14311. weight: math.unit(322, "lb"),
  14312. name: "Front",
  14313. image: {
  14314. source: "./media/characters/vulcan/front.svg",
  14315. extra: 154 / 147,
  14316. bottom: 0.04
  14317. }
  14318. },
  14319. },
  14320. [
  14321. {
  14322. name: "Normal",
  14323. height: math.unit(7 + 2 / 12, "feet"),
  14324. default: true
  14325. },
  14326. ]
  14327. ))
  14328. characterMakers.push(() => makeCharacter(
  14329. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14330. {
  14331. front: {
  14332. height: math.unit(5 + 10 / 12, "feet"),
  14333. weight: math.unit(264, "lb"),
  14334. name: "Front",
  14335. image: {
  14336. source: "./media/characters/gault/front.svg",
  14337. extra: 161 / 140,
  14338. bottom: 0.028
  14339. }
  14340. },
  14341. },
  14342. [
  14343. {
  14344. name: "Normal",
  14345. height: math.unit(5 + 10 / 12, "feet"),
  14346. default: true
  14347. },
  14348. ]
  14349. ))
  14350. characterMakers.push(() => makeCharacter(
  14351. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14352. {
  14353. front: {
  14354. height: math.unit(6, "feet"),
  14355. weight: math.unit(150, "lb"),
  14356. name: "Front",
  14357. image: {
  14358. source: "./media/characters/shard/front.svg",
  14359. extra: 273 / 238,
  14360. bottom: 0.02
  14361. }
  14362. },
  14363. },
  14364. [
  14365. {
  14366. name: "Normal",
  14367. height: math.unit(3 + 6 / 12, "feet"),
  14368. default: true
  14369. },
  14370. ]
  14371. ))
  14372. characterMakers.push(() => makeCharacter(
  14373. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14374. {
  14375. front: {
  14376. height: math.unit(5 + 11 / 12, "feet"),
  14377. weight: math.unit(146, "lb"),
  14378. name: "Front",
  14379. image: {
  14380. source: "./media/characters/ashe/front.svg",
  14381. extra: 400 / 373,
  14382. bottom: 0.01
  14383. }
  14384. },
  14385. },
  14386. [
  14387. {
  14388. name: "Normal",
  14389. height: math.unit(5 + 11 / 12, "feet"),
  14390. default: true
  14391. },
  14392. ]
  14393. ))
  14394. characterMakers.push(() => makeCharacter(
  14395. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14396. {
  14397. front: {
  14398. height: math.unit(5 + 5 / 12, "feet"),
  14399. weight: math.unit(135, "lb"),
  14400. name: "Front",
  14401. image: {
  14402. source: "./media/characters/beatrix/front.svg",
  14403. extra: 392 / 379,
  14404. bottom: 0.01
  14405. }
  14406. },
  14407. },
  14408. [
  14409. {
  14410. name: "Normal",
  14411. height: math.unit(6, "feet"),
  14412. default: true
  14413. },
  14414. ]
  14415. ))
  14416. characterMakers.push(() => makeCharacter(
  14417. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14418. {
  14419. front: {
  14420. height: math.unit(6, "feet"),
  14421. weight: math.unit(150, "lb"),
  14422. name: "Front",
  14423. image: {
  14424. source: "./media/characters/ignatius/front.svg",
  14425. extra: 245 / 222,
  14426. bottom: 0.01
  14427. }
  14428. },
  14429. },
  14430. [
  14431. {
  14432. name: "Normal",
  14433. height: math.unit(5 + 5 / 12, "feet"),
  14434. default: true
  14435. },
  14436. ]
  14437. ))
  14438. characterMakers.push(() => makeCharacter(
  14439. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14440. {
  14441. front: {
  14442. height: math.unit(6 + 2 / 12, "feet"),
  14443. weight: math.unit(138, "lb"),
  14444. name: "Front",
  14445. image: {
  14446. source: "./media/characters/mei-li/front.svg",
  14447. extra: 237 / 229,
  14448. bottom: 0.03
  14449. }
  14450. },
  14451. },
  14452. [
  14453. {
  14454. name: "Normal",
  14455. height: math.unit(6 + 2 / 12, "feet"),
  14456. default: true
  14457. },
  14458. ]
  14459. ))
  14460. characterMakers.push(() => makeCharacter(
  14461. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14462. {
  14463. front: {
  14464. height: math.unit(2 + 4 / 12, "feet"),
  14465. weight: math.unit(62, "lb"),
  14466. name: "Front",
  14467. image: {
  14468. source: "./media/characters/puru/front.svg",
  14469. extra: 206 / 149,
  14470. bottom: 0.06
  14471. }
  14472. },
  14473. },
  14474. [
  14475. {
  14476. name: "Normal",
  14477. height: math.unit(2 + 4 / 12, "feet"),
  14478. default: true
  14479. },
  14480. ]
  14481. ))
  14482. characterMakers.push(() => makeCharacter(
  14483. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14484. {
  14485. taur: {
  14486. height: math.unit(11, "feet"),
  14487. weight: math.unit(500, "lb"),
  14488. name: "Taur",
  14489. image: {
  14490. source: "./media/characters/kee/taur.svg",
  14491. extra: 1,
  14492. bottom: 0.04
  14493. }
  14494. },
  14495. },
  14496. [
  14497. {
  14498. name: "Normal",
  14499. height: math.unit(11, "feet"),
  14500. default: true
  14501. },
  14502. ]
  14503. ))
  14504. characterMakers.push(() => makeCharacter(
  14505. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14506. {
  14507. anthro: {
  14508. height: math.unit(7, "feet"),
  14509. weight: math.unit(190, "lb"),
  14510. name: "Anthro",
  14511. image: {
  14512. source: "./media/characters/cobalt-dracha/anthro.svg",
  14513. extra: 231 / 225,
  14514. bottom: 0.04
  14515. }
  14516. },
  14517. feral: {
  14518. height: math.unit(9 + 7 / 12, "feet"),
  14519. weight: math.unit(294, "lb"),
  14520. name: "Feral",
  14521. image: {
  14522. source: "./media/characters/cobalt-dracha/feral.svg",
  14523. extra: 692 / 633,
  14524. bottom: 0.05
  14525. }
  14526. },
  14527. },
  14528. [
  14529. {
  14530. name: "Normal",
  14531. height: math.unit(7, "feet"),
  14532. default: true
  14533. },
  14534. ]
  14535. ))
  14536. characterMakers.push(() => makeCharacter(
  14537. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14538. {
  14539. fallen: {
  14540. height: math.unit(11 + 8 / 12, "feet"),
  14541. weight: math.unit(485, "lb"),
  14542. name: "Java (Fallen)",
  14543. rename: true,
  14544. image: {
  14545. source: "./media/characters/java/fallen.svg",
  14546. extra: 226 / 208,
  14547. bottom: 0.005
  14548. }
  14549. },
  14550. godkin: {
  14551. height: math.unit(10 + 6 / 12, "feet"),
  14552. weight: math.unit(328, "lb"),
  14553. name: "Java (Godkin)",
  14554. rename: true,
  14555. image: {
  14556. source: "./media/characters/java/godkin.svg",
  14557. extra: 270 / 262,
  14558. bottom: 0.02
  14559. }
  14560. },
  14561. },
  14562. [
  14563. {
  14564. name: "Normal",
  14565. height: math.unit(11 + 8 / 12, "feet"),
  14566. default: true
  14567. },
  14568. ]
  14569. ))
  14570. characterMakers.push(() => makeCharacter(
  14571. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14572. {
  14573. front: {
  14574. height: math.unit(7 + 8 / 12, "feet"),
  14575. weight: math.unit(320, "lb"),
  14576. name: "Front",
  14577. image: {
  14578. source: "./media/characters/skoll/front.svg",
  14579. extra: 232 / 220,
  14580. bottom: 0.02
  14581. }
  14582. },
  14583. },
  14584. [
  14585. {
  14586. name: "Normal",
  14587. height: math.unit(7 + 8 / 12, "feet"),
  14588. default: true
  14589. },
  14590. ]
  14591. ))
  14592. characterMakers.push(() => makeCharacter(
  14593. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14594. {
  14595. front: {
  14596. height: math.unit(5 + 9 / 12, "feet"),
  14597. weight: math.unit(170, "lb"),
  14598. name: "Front",
  14599. image: {
  14600. source: "./media/characters/purna/front.svg",
  14601. extra: 239 / 229,
  14602. bottom: 0.01
  14603. }
  14604. },
  14605. },
  14606. [
  14607. {
  14608. name: "Normal",
  14609. height: math.unit(5 + 9 / 12, "feet"),
  14610. default: true
  14611. },
  14612. ]
  14613. ))
  14614. characterMakers.push(() => makeCharacter(
  14615. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14616. {
  14617. front: {
  14618. height: math.unit(5 + 9 / 12, "feet"),
  14619. weight: math.unit(142, "lb"),
  14620. name: "Front",
  14621. image: {
  14622. source: "./media/characters/kuva/front.svg",
  14623. extra: 281 / 271,
  14624. bottom: 0.006
  14625. }
  14626. },
  14627. },
  14628. [
  14629. {
  14630. name: "Normal",
  14631. height: math.unit(5 + 9 / 12, "feet"),
  14632. default: true
  14633. },
  14634. ]
  14635. ))
  14636. characterMakers.push(() => makeCharacter(
  14637. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14638. {
  14639. anthro: {
  14640. height: math.unit(9 + 2 / 12, "feet"),
  14641. weight: math.unit(270, "lb"),
  14642. name: "Anthro",
  14643. image: {
  14644. source: "./media/characters/embra/anthro.svg",
  14645. extra: 200 / 187,
  14646. bottom: 0.02
  14647. }
  14648. },
  14649. feral: {
  14650. height: math.unit(18 + 8 / 12, "feet"),
  14651. weight: math.unit(576, "lb"),
  14652. name: "Feral",
  14653. image: {
  14654. source: "./media/characters/embra/feral.svg",
  14655. extra: 152 / 137,
  14656. bottom: 0.037
  14657. }
  14658. },
  14659. },
  14660. [
  14661. {
  14662. name: "Normal",
  14663. height: math.unit(9 + 2 / 12, "feet"),
  14664. default: true
  14665. },
  14666. ]
  14667. ))
  14668. characterMakers.push(() => makeCharacter(
  14669. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14670. {
  14671. anthro: {
  14672. height: math.unit(10 + 9 / 12, "feet"),
  14673. weight: math.unit(224, "lb"),
  14674. name: "Anthro",
  14675. image: {
  14676. source: "./media/characters/grottos/anthro.svg",
  14677. extra: 350 / 332,
  14678. bottom: 0.045
  14679. }
  14680. },
  14681. feral: {
  14682. height: math.unit(20 + 7 / 12, "feet"),
  14683. weight: math.unit(629, "lb"),
  14684. name: "Feral",
  14685. image: {
  14686. source: "./media/characters/grottos/feral.svg",
  14687. extra: 207 / 190,
  14688. bottom: 0.05
  14689. }
  14690. },
  14691. },
  14692. [
  14693. {
  14694. name: "Normal",
  14695. height: math.unit(10 + 9 / 12, "feet"),
  14696. default: true
  14697. },
  14698. ]
  14699. ))
  14700. characterMakers.push(() => makeCharacter(
  14701. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14702. {
  14703. anthro: {
  14704. height: math.unit(9 + 6 / 12, "feet"),
  14705. weight: math.unit(298, "lb"),
  14706. name: "Anthro",
  14707. image: {
  14708. source: "./media/characters/frifna/anthro.svg",
  14709. extra: 282 / 269,
  14710. bottom: 0.015
  14711. }
  14712. },
  14713. feral: {
  14714. height: math.unit(16 + 2 / 12, "feet"),
  14715. weight: math.unit(624, "lb"),
  14716. name: "Feral",
  14717. image: {
  14718. source: "./media/characters/frifna/feral.svg"
  14719. }
  14720. },
  14721. },
  14722. [
  14723. {
  14724. name: "Normal",
  14725. height: math.unit(9 + 6 / 12, "feet"),
  14726. default: true
  14727. },
  14728. ]
  14729. ))
  14730. characterMakers.push(() => makeCharacter(
  14731. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14732. {
  14733. front: {
  14734. height: math.unit(6 + 2 / 12, "feet"),
  14735. weight: math.unit(168, "lb"),
  14736. name: "Front",
  14737. image: {
  14738. source: "./media/characters/elise/front.svg",
  14739. extra: 276 / 271
  14740. }
  14741. },
  14742. },
  14743. [
  14744. {
  14745. name: "Normal",
  14746. height: math.unit(6 + 2 / 12, "feet"),
  14747. default: true
  14748. },
  14749. ]
  14750. ))
  14751. characterMakers.push(() => makeCharacter(
  14752. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14753. {
  14754. front: {
  14755. height: math.unit(5 + 10 / 12, "feet"),
  14756. weight: math.unit(210, "lb"),
  14757. name: "Front",
  14758. image: {
  14759. source: "./media/characters/glade/front.svg",
  14760. extra: 258 / 247,
  14761. bottom: 0.008
  14762. }
  14763. },
  14764. },
  14765. [
  14766. {
  14767. name: "Normal",
  14768. height: math.unit(5 + 10 / 12, "feet"),
  14769. default: true
  14770. },
  14771. ]
  14772. ))
  14773. characterMakers.push(() => makeCharacter(
  14774. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14775. {
  14776. front: {
  14777. height: math.unit(5 + 10 / 12, "feet"),
  14778. weight: math.unit(129, "lb"),
  14779. name: "Front",
  14780. image: {
  14781. source: "./media/characters/rina/front.svg",
  14782. extra: 266 / 255,
  14783. bottom: 0.005
  14784. }
  14785. },
  14786. },
  14787. [
  14788. {
  14789. name: "Normal",
  14790. height: math.unit(5 + 10 / 12, "feet"),
  14791. default: true
  14792. },
  14793. ]
  14794. ))
  14795. characterMakers.push(() => makeCharacter(
  14796. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14797. {
  14798. front: {
  14799. height: math.unit(6 + 1 / 12, "feet"),
  14800. weight: math.unit(192, "lb"),
  14801. name: "Front",
  14802. image: {
  14803. source: "./media/characters/veronica/front.svg",
  14804. extra: 319 / 309,
  14805. bottom: 0.005
  14806. }
  14807. },
  14808. },
  14809. [
  14810. {
  14811. name: "Normal",
  14812. height: math.unit(6 + 1 / 12, "feet"),
  14813. default: true
  14814. },
  14815. ]
  14816. ))
  14817. characterMakers.push(() => makeCharacter(
  14818. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14819. {
  14820. front: {
  14821. height: math.unit(9 + 3 / 12, "feet"),
  14822. weight: math.unit(1100, "lb"),
  14823. name: "Front",
  14824. image: {
  14825. source: "./media/characters/braxton/front.svg",
  14826. extra: 1057 / 984,
  14827. bottom: 0.05
  14828. }
  14829. },
  14830. },
  14831. [
  14832. {
  14833. name: "Normal",
  14834. height: math.unit(9 + 3 / 12, "feet")
  14835. },
  14836. {
  14837. name: "Giant",
  14838. height: math.unit(300, "feet"),
  14839. default: true
  14840. },
  14841. {
  14842. name: "Macro",
  14843. height: math.unit(700, "feet")
  14844. },
  14845. {
  14846. name: "Megamacro",
  14847. height: math.unit(6000, "feet")
  14848. },
  14849. ]
  14850. ))
  14851. characterMakers.push(() => makeCharacter(
  14852. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14853. {
  14854. front: {
  14855. height: math.unit(6 + 7 / 12, "feet"),
  14856. weight: math.unit(150, "lb"),
  14857. name: "Front",
  14858. image: {
  14859. source: "./media/characters/blue-feyonics/front.svg",
  14860. extra: 1403 / 1306,
  14861. bottom: 0.047
  14862. }
  14863. },
  14864. },
  14865. [
  14866. {
  14867. name: "Normal",
  14868. height: math.unit(6 + 7 / 12, "feet"),
  14869. default: true
  14870. },
  14871. ]
  14872. ))
  14873. characterMakers.push(() => makeCharacter(
  14874. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14875. {
  14876. front: {
  14877. height: math.unit(1.8, "meters"),
  14878. weight: math.unit(60, "kg"),
  14879. name: "Front",
  14880. image: {
  14881. source: "./media/characters/maxwell/front.svg",
  14882. extra: 2060 / 1873
  14883. }
  14884. },
  14885. },
  14886. [
  14887. {
  14888. name: "Micro",
  14889. height: math.unit(1, "mm")
  14890. },
  14891. {
  14892. name: "Normal",
  14893. height: math.unit(1.8, "meter"),
  14894. default: true
  14895. },
  14896. {
  14897. name: "Macro",
  14898. height: math.unit(30, "meters")
  14899. },
  14900. {
  14901. name: "Megamacro",
  14902. height: math.unit(10, "km")
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14908. {
  14909. front: {
  14910. height: math.unit(6, "feet"),
  14911. weight: math.unit(150, "lb"),
  14912. name: "Front",
  14913. image: {
  14914. source: "./media/characters/jack/front.svg",
  14915. extra: 1754 / 1640,
  14916. bottom: 0.01
  14917. }
  14918. },
  14919. },
  14920. [
  14921. {
  14922. name: "Normal",
  14923. height: math.unit(80000, "feet"),
  14924. default: true
  14925. },
  14926. {
  14927. name: "Max size",
  14928. height: math.unit(10, "lightyears")
  14929. },
  14930. ]
  14931. ))
  14932. characterMakers.push(() => makeCharacter(
  14933. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14934. {
  14935. upright: {
  14936. height: math.unit(7, "feet"),
  14937. weight: math.unit(170, "lb"),
  14938. name: "Upright",
  14939. image: {
  14940. source: "./media/characters/cafat/upright.svg",
  14941. bottom: 0.01
  14942. }
  14943. },
  14944. uprightFull: {
  14945. height: math.unit(7, "feet"),
  14946. weight: math.unit(170, "lb"),
  14947. name: "Upright (Full)",
  14948. image: {
  14949. source: "./media/characters/cafat/upright-full.svg",
  14950. bottom: 0.01
  14951. }
  14952. },
  14953. side: {
  14954. height: math.unit(5, "feet"),
  14955. weight: math.unit(150, "lb"),
  14956. name: "Side",
  14957. image: {
  14958. source: "./media/characters/cafat/side.svg"
  14959. }
  14960. },
  14961. },
  14962. [
  14963. {
  14964. name: "Small",
  14965. height: math.unit(7, "feet"),
  14966. default: true
  14967. },
  14968. {
  14969. name: "Large",
  14970. height: math.unit(15.5, "feet")
  14971. },
  14972. ]
  14973. ))
  14974. characterMakers.push(() => makeCharacter(
  14975. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14976. {
  14977. front: {
  14978. height: math.unit(6, "feet"),
  14979. weight: math.unit(150, "lb"),
  14980. name: "Front",
  14981. image: {
  14982. source: "./media/characters/verin-raharra/front.svg",
  14983. extra: 5019 / 4835,
  14984. bottom: 0.023
  14985. }
  14986. },
  14987. },
  14988. [
  14989. {
  14990. name: "Normal",
  14991. height: math.unit(7 + 5 / 12, "feet"),
  14992. default: true
  14993. },
  14994. {
  14995. name: "Upsized",
  14996. height: math.unit(20, "feet")
  14997. },
  14998. ]
  14999. ))
  15000. characterMakers.push(() => makeCharacter(
  15001. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15002. {
  15003. front: {
  15004. height: math.unit(7, "feet"),
  15005. weight: math.unit(230, "lb"),
  15006. name: "Front",
  15007. image: {
  15008. source: "./media/characters/nakata/front.svg",
  15009. extra: 1.005,
  15010. bottom: 0.01
  15011. }
  15012. },
  15013. },
  15014. [
  15015. {
  15016. name: "Normal",
  15017. height: math.unit(7, "feet"),
  15018. default: true
  15019. },
  15020. {
  15021. name: "Big",
  15022. height: math.unit(14, "feet")
  15023. },
  15024. {
  15025. name: "Macro",
  15026. height: math.unit(400, "feet")
  15027. },
  15028. ]
  15029. ))
  15030. characterMakers.push(() => makeCharacter(
  15031. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15032. {
  15033. front: {
  15034. height: math.unit(4.91, "feet"),
  15035. weight: math.unit(100, "lb"),
  15036. name: "Front",
  15037. image: {
  15038. source: "./media/characters/lily/front.svg",
  15039. extra: 1585 / 1415,
  15040. bottom: 0.02
  15041. }
  15042. },
  15043. },
  15044. [
  15045. {
  15046. name: "Normal",
  15047. height: math.unit(4.91, "feet"),
  15048. default: true
  15049. },
  15050. ]
  15051. ))
  15052. characterMakers.push(() => makeCharacter(
  15053. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15054. {
  15055. laying: {
  15056. height: math.unit(4 + 4 / 12, "feet"),
  15057. weight: math.unit(600, "lb"),
  15058. name: "Laying",
  15059. image: {
  15060. source: "./media/characters/sheila/laying.svg",
  15061. extra: 1333 / 1265,
  15062. bottom: 0.16
  15063. }
  15064. },
  15065. },
  15066. [
  15067. {
  15068. name: "Normal",
  15069. height: math.unit(4 + 4 / 12, "feet"),
  15070. default: true
  15071. },
  15072. ]
  15073. ))
  15074. characterMakers.push(() => makeCharacter(
  15075. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15076. {
  15077. front: {
  15078. height: math.unit(6, "feet"),
  15079. weight: math.unit(190, "lb"),
  15080. name: "Front",
  15081. image: {
  15082. source: "./media/characters/sax/front.svg",
  15083. extra: 1187 / 973,
  15084. bottom: 0.042
  15085. }
  15086. },
  15087. },
  15088. [
  15089. {
  15090. name: "Micro",
  15091. height: math.unit(4, "inches"),
  15092. default: true
  15093. },
  15094. ]
  15095. ))
  15096. characterMakers.push(() => makeCharacter(
  15097. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15098. {
  15099. front: {
  15100. height: math.unit(6, "feet"),
  15101. weight: math.unit(150, "lb"),
  15102. name: "Front",
  15103. image: {
  15104. source: "./media/characters/pandora/front.svg",
  15105. extra: 2720 / 2556,
  15106. bottom: 0.015
  15107. }
  15108. },
  15109. back: {
  15110. height: math.unit(6, "feet"),
  15111. weight: math.unit(150, "lb"),
  15112. name: "Back",
  15113. image: {
  15114. source: "./media/characters/pandora/back.svg",
  15115. extra: 2720 / 2556,
  15116. bottom: 0.01
  15117. }
  15118. },
  15119. beans: {
  15120. height: math.unit(6 / 8, "feet"),
  15121. name: "Beans",
  15122. image: {
  15123. source: "./media/characters/pandora/beans.svg"
  15124. }
  15125. },
  15126. skirt: {
  15127. height: math.unit(6, "feet"),
  15128. weight: math.unit(150, "lb"),
  15129. name: "Skirt",
  15130. image: {
  15131. source: "./media/characters/pandora/skirt.svg",
  15132. extra: 1622 / 1525,
  15133. bottom: 0.015
  15134. }
  15135. },
  15136. hoodie: {
  15137. height: math.unit(6, "feet"),
  15138. weight: math.unit(150, "lb"),
  15139. name: "Hoodie",
  15140. image: {
  15141. source: "./media/characters/pandora/hoodie.svg",
  15142. extra: 1622 / 1525,
  15143. bottom: 0.015
  15144. }
  15145. },
  15146. casual: {
  15147. height: math.unit(6, "feet"),
  15148. weight: math.unit(150, "lb"),
  15149. name: "Casual",
  15150. image: {
  15151. source: "./media/characters/pandora/casual.svg",
  15152. extra: 1622 / 1525,
  15153. bottom: 0.015
  15154. }
  15155. },
  15156. },
  15157. [
  15158. {
  15159. name: "Normal",
  15160. height: math.unit(6, "feet")
  15161. },
  15162. {
  15163. name: "Big Steppy",
  15164. height: math.unit(1, "km"),
  15165. default: true
  15166. },
  15167. ]
  15168. ))
  15169. characterMakers.push(() => makeCharacter(
  15170. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15171. {
  15172. side: {
  15173. height: math.unit(10, "feet"),
  15174. weight: math.unit(800, "kg"),
  15175. name: "Side",
  15176. image: {
  15177. source: "./media/characters/venio-darcony/side.svg",
  15178. extra: 1373 / 1003,
  15179. bottom: 0.037
  15180. }
  15181. },
  15182. front: {
  15183. height: math.unit(19, "feet"),
  15184. weight: math.unit(800, "kg"),
  15185. name: "Front",
  15186. image: {
  15187. source: "./media/characters/venio-darcony/front.svg"
  15188. }
  15189. },
  15190. back: {
  15191. height: math.unit(19, "feet"),
  15192. weight: math.unit(800, "kg"),
  15193. name: "Back",
  15194. image: {
  15195. source: "./media/characters/venio-darcony/back.svg"
  15196. }
  15197. },
  15198. sideNsfw: {
  15199. height: math.unit(10, "feet"),
  15200. weight: math.unit(800, "kg"),
  15201. name: "Side (NSFW)",
  15202. image: {
  15203. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15204. extra: 1373 / 1003,
  15205. bottom: 0.037
  15206. }
  15207. },
  15208. frontNsfw: {
  15209. height: math.unit(19, "feet"),
  15210. weight: math.unit(800, "kg"),
  15211. name: "Front (NSFW)",
  15212. image: {
  15213. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15214. }
  15215. },
  15216. backNsfw: {
  15217. height: math.unit(19, "feet"),
  15218. weight: math.unit(800, "kg"),
  15219. name: "Back (NSFW)",
  15220. image: {
  15221. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15222. }
  15223. },
  15224. sideArmored: {
  15225. height: math.unit(10, "feet"),
  15226. weight: math.unit(800, "kg"),
  15227. name: "Side (Armored)",
  15228. image: {
  15229. source: "./media/characters/venio-darcony/side-armored.svg",
  15230. extra: 1373 / 1003,
  15231. bottom: 0.037
  15232. }
  15233. },
  15234. frontArmored: {
  15235. height: math.unit(19, "feet"),
  15236. weight: math.unit(900, "kg"),
  15237. name: "Front (Armored)",
  15238. image: {
  15239. source: "./media/characters/venio-darcony/front-armored.svg"
  15240. }
  15241. },
  15242. backArmored: {
  15243. height: math.unit(19, "feet"),
  15244. weight: math.unit(900, "kg"),
  15245. name: "Back (Armored)",
  15246. image: {
  15247. source: "./media/characters/venio-darcony/back-armored.svg"
  15248. }
  15249. },
  15250. sword: {
  15251. height: math.unit(10, "feet"),
  15252. weight: math.unit(50, "lb"),
  15253. name: "Sword",
  15254. image: {
  15255. source: "./media/characters/venio-darcony/sword.svg"
  15256. }
  15257. },
  15258. },
  15259. [
  15260. {
  15261. name: "Normal",
  15262. height: math.unit(10, "feet")
  15263. },
  15264. {
  15265. name: "Macro",
  15266. height: math.unit(130, "feet"),
  15267. default: true
  15268. },
  15269. {
  15270. name: "Macro+",
  15271. height: math.unit(240, "feet")
  15272. },
  15273. ]
  15274. ))
  15275. characterMakers.push(() => makeCharacter(
  15276. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15277. {
  15278. front: {
  15279. height: math.unit(6, "feet"),
  15280. weight: math.unit(150, "lb"),
  15281. name: "Front",
  15282. image: {
  15283. source: "./media/characters/veski/front.svg",
  15284. extra: 1299 / 1225,
  15285. bottom: 0.04
  15286. }
  15287. },
  15288. back: {
  15289. height: math.unit(6, "feet"),
  15290. weight: math.unit(150, "lb"),
  15291. name: "Back",
  15292. image: {
  15293. source: "./media/characters/veski/back.svg",
  15294. extra: 1299 / 1225,
  15295. bottom: 0.008
  15296. }
  15297. },
  15298. maw: {
  15299. height: math.unit(1.5 * 1.21, "feet"),
  15300. name: "Maw",
  15301. image: {
  15302. source: "./media/characters/veski/maw.svg"
  15303. }
  15304. },
  15305. },
  15306. [
  15307. {
  15308. name: "Macro",
  15309. height: math.unit(2, "km"),
  15310. default: true
  15311. },
  15312. ]
  15313. ))
  15314. characterMakers.push(() => makeCharacter(
  15315. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15316. {
  15317. front: {
  15318. height: math.unit(5 + 7 / 12, "feet"),
  15319. name: "Front",
  15320. image: {
  15321. source: "./media/characters/isabelle/front.svg",
  15322. extra: 2130 / 1976,
  15323. bottom: 0.05
  15324. }
  15325. },
  15326. },
  15327. [
  15328. {
  15329. name: "Supermicro",
  15330. height: math.unit(10, "micrometers")
  15331. },
  15332. {
  15333. name: "Micro",
  15334. height: math.unit(1, "inch")
  15335. },
  15336. {
  15337. name: "Tiny",
  15338. height: math.unit(5, "inches")
  15339. },
  15340. {
  15341. name: "Standard",
  15342. height: math.unit(5 + 7 / 12, "inches")
  15343. },
  15344. {
  15345. name: "Macro",
  15346. height: math.unit(80, "meters"),
  15347. default: true
  15348. },
  15349. {
  15350. name: "Megamacro",
  15351. height: math.unit(250, "meters")
  15352. },
  15353. {
  15354. name: "Gigamacro",
  15355. height: math.unit(5, "km")
  15356. },
  15357. {
  15358. name: "Cosmic",
  15359. height: math.unit(2.5e6, "miles")
  15360. },
  15361. ]
  15362. ))
  15363. characterMakers.push(() => makeCharacter(
  15364. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15365. {
  15366. front: {
  15367. height: math.unit(6, "feet"),
  15368. weight: math.unit(150, "lb"),
  15369. name: "Front",
  15370. image: {
  15371. source: "./media/characters/hanzo/front.svg",
  15372. extra: 374 / 344,
  15373. bottom: 0.02
  15374. }
  15375. },
  15376. },
  15377. [
  15378. {
  15379. name: "Normal",
  15380. height: math.unit(8, "feet"),
  15381. default: true
  15382. },
  15383. ]
  15384. ))
  15385. characterMakers.push(() => makeCharacter(
  15386. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15387. {
  15388. front: {
  15389. height: math.unit(7, "feet"),
  15390. weight: math.unit(130, "lb"),
  15391. name: "Front",
  15392. image: {
  15393. source: "./media/characters/anna/front.svg",
  15394. extra: 169 / 145,
  15395. bottom: 0.06
  15396. }
  15397. },
  15398. full: {
  15399. height: math.unit(4.96, "feet"),
  15400. weight: math.unit(220, "lb"),
  15401. name: "Full",
  15402. image: {
  15403. source: "./media/characters/anna/full.svg",
  15404. extra: 138 / 114,
  15405. bottom: 0.15
  15406. }
  15407. },
  15408. tongue: {
  15409. height: math.unit(2.53, "feet"),
  15410. name: "Tongue",
  15411. image: {
  15412. source: "./media/characters/anna/tongue.svg"
  15413. }
  15414. },
  15415. },
  15416. [
  15417. {
  15418. name: "Normal",
  15419. height: math.unit(7, "feet"),
  15420. default: true
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15426. {
  15427. front: {
  15428. height: math.unit(7, "feet"),
  15429. weight: math.unit(150, "lb"),
  15430. name: "Front",
  15431. image: {
  15432. source: "./media/characters/ian-corvid/front.svg",
  15433. extra: 150 / 142,
  15434. bottom: 0.02
  15435. }
  15436. },
  15437. back: {
  15438. height: math.unit(7, "feet"),
  15439. weight: math.unit(150, "lb"),
  15440. name: "Back",
  15441. image: {
  15442. source: "./media/characters/ian-corvid/back.svg",
  15443. extra: 150 / 143,
  15444. bottom: 0.01
  15445. }
  15446. },
  15447. stomping: {
  15448. height: math.unit(7, "feet"),
  15449. weight: math.unit(150, "lb"),
  15450. name: "Stomping",
  15451. image: {
  15452. source: "./media/characters/ian-corvid/stomping.svg",
  15453. extra: 76 / 72
  15454. }
  15455. },
  15456. sitting: {
  15457. height: math.unit(7 / 1.8, "feet"),
  15458. weight: math.unit(150, "lb"),
  15459. name: "Sitting",
  15460. image: {
  15461. source: "./media/characters/ian-corvid/sitting.svg",
  15462. extra: 1400 / 1269,
  15463. bottom: 0.15
  15464. }
  15465. },
  15466. },
  15467. [
  15468. {
  15469. name: "Tiny Microw",
  15470. height: math.unit(1, "inch")
  15471. },
  15472. {
  15473. name: "Microw",
  15474. height: math.unit(6, "inches")
  15475. },
  15476. {
  15477. name: "Crow",
  15478. height: math.unit(7 + 1 / 12, "feet"),
  15479. default: true
  15480. },
  15481. {
  15482. name: "Macrow",
  15483. height: math.unit(176, "feet")
  15484. },
  15485. ]
  15486. ))
  15487. characterMakers.push(() => makeCharacter(
  15488. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15489. {
  15490. front: {
  15491. height: math.unit(5 + 7 / 12, "feet"),
  15492. weight: math.unit(147, "lb"),
  15493. name: "Front",
  15494. image: {
  15495. source: "./media/characters/natalie-kellon/front.svg",
  15496. extra: 1214 / 1141,
  15497. bottom: 0.02
  15498. }
  15499. },
  15500. },
  15501. [
  15502. {
  15503. name: "Micro",
  15504. height: math.unit(1 / 16, "inch")
  15505. },
  15506. {
  15507. name: "Tiny",
  15508. height: math.unit(4, "inches")
  15509. },
  15510. {
  15511. name: "Normal",
  15512. height: math.unit(5 + 7 / 12, "feet"),
  15513. default: true
  15514. },
  15515. {
  15516. name: "Amazon",
  15517. height: math.unit(12, "feet")
  15518. },
  15519. {
  15520. name: "Giantess",
  15521. height: math.unit(160, "meters")
  15522. },
  15523. {
  15524. name: "Titaness",
  15525. height: math.unit(800, "meters")
  15526. },
  15527. ]
  15528. ))
  15529. characterMakers.push(() => makeCharacter(
  15530. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15531. {
  15532. front: {
  15533. height: math.unit(6, "feet"),
  15534. weight: math.unit(150, "lb"),
  15535. name: "Front",
  15536. image: {
  15537. source: "./media/characters/alluria/front.svg",
  15538. extra: 806 / 738,
  15539. bottom: 0.01
  15540. }
  15541. },
  15542. side: {
  15543. height: math.unit(6, "feet"),
  15544. weight: math.unit(150, "lb"),
  15545. name: "Side",
  15546. image: {
  15547. source: "./media/characters/alluria/side.svg",
  15548. extra: 800 / 750,
  15549. }
  15550. },
  15551. back: {
  15552. height: math.unit(6, "feet"),
  15553. weight: math.unit(150, "lb"),
  15554. name: "Back",
  15555. image: {
  15556. source: "./media/characters/alluria/back.svg",
  15557. extra: 806 / 738,
  15558. }
  15559. },
  15560. frontMaid: {
  15561. height: math.unit(6, "feet"),
  15562. weight: math.unit(150, "lb"),
  15563. name: "Front (Maid)",
  15564. image: {
  15565. source: "./media/characters/alluria/front-maid.svg",
  15566. extra: 806 / 738,
  15567. bottom: 0.01
  15568. }
  15569. },
  15570. sideMaid: {
  15571. height: math.unit(6, "feet"),
  15572. weight: math.unit(150, "lb"),
  15573. name: "Side (Maid)",
  15574. image: {
  15575. source: "./media/characters/alluria/side-maid.svg",
  15576. extra: 800 / 750,
  15577. bottom: 0.005
  15578. }
  15579. },
  15580. backMaid: {
  15581. height: math.unit(6, "feet"),
  15582. weight: math.unit(150, "lb"),
  15583. name: "Back (Maid)",
  15584. image: {
  15585. source: "./media/characters/alluria/back-maid.svg",
  15586. extra: 806 / 738,
  15587. }
  15588. },
  15589. },
  15590. [
  15591. {
  15592. name: "Micro",
  15593. height: math.unit(6, "inches"),
  15594. default: true
  15595. },
  15596. ]
  15597. ))
  15598. characterMakers.push(() => makeCharacter(
  15599. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15600. {
  15601. front: {
  15602. height: math.unit(6, "feet"),
  15603. weight: math.unit(150, "lb"),
  15604. name: "Front",
  15605. image: {
  15606. source: "./media/characters/kyle/front.svg",
  15607. extra: 1069 / 962,
  15608. bottom: 77.228 / 1727.45
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Macro",
  15615. height: math.unit(150, "feet"),
  15616. default: true
  15617. },
  15618. ]
  15619. ))
  15620. characterMakers.push(() => makeCharacter(
  15621. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15622. {
  15623. front: {
  15624. height: math.unit(6, "feet"),
  15625. weight: math.unit(300, "lb"),
  15626. name: "Front",
  15627. image: {
  15628. source: "./media/characters/duncan/front.svg",
  15629. extra: 1650 / 1482,
  15630. bottom: 0.05
  15631. }
  15632. },
  15633. },
  15634. [
  15635. {
  15636. name: "Macro",
  15637. height: math.unit(100, "feet"),
  15638. default: true
  15639. },
  15640. ]
  15641. ))
  15642. characterMakers.push(() => makeCharacter(
  15643. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15644. {
  15645. front: {
  15646. height: math.unit(5 + 4 / 12, "feet"),
  15647. weight: math.unit(220, "lb"),
  15648. name: "Front",
  15649. image: {
  15650. source: "./media/characters/memory/front.svg",
  15651. extra: 3641 / 3545,
  15652. bottom: 0.03
  15653. }
  15654. },
  15655. back: {
  15656. height: math.unit(5 + 4 / 12, "feet"),
  15657. weight: math.unit(220, "lb"),
  15658. name: "Back",
  15659. image: {
  15660. source: "./media/characters/memory/back.svg",
  15661. extra: 3641 / 3545,
  15662. bottom: 0.025
  15663. }
  15664. },
  15665. frontSkirt: {
  15666. height: math.unit(5 + 4 / 12, "feet"),
  15667. weight: math.unit(220, "lb"),
  15668. name: "Front (Skirt)",
  15669. image: {
  15670. source: "./media/characters/memory/front-skirt.svg",
  15671. extra: 3641 / 3545,
  15672. bottom: 0.03
  15673. }
  15674. },
  15675. frontDress: {
  15676. height: math.unit(5 + 4 / 12, "feet"),
  15677. weight: math.unit(220, "lb"),
  15678. name: "Front (Dress)",
  15679. image: {
  15680. source: "./media/characters/memory/front-dress.svg",
  15681. extra: 3641 / 3545,
  15682. bottom: 0.03
  15683. }
  15684. },
  15685. },
  15686. [
  15687. {
  15688. name: "Micro",
  15689. height: math.unit(6, "inches"),
  15690. default: true
  15691. },
  15692. {
  15693. name: "Normal",
  15694. height: math.unit(5 + 4 / 12, "feet")
  15695. },
  15696. ]
  15697. ))
  15698. characterMakers.push(() => makeCharacter(
  15699. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15700. {
  15701. front: {
  15702. height: math.unit(4 + 11 / 12, "feet"),
  15703. weight: math.unit(100, "lb"),
  15704. name: "Front",
  15705. image: {
  15706. source: "./media/characters/luno/front.svg",
  15707. extra: 1535 / 1487,
  15708. bottom: 0.03
  15709. }
  15710. },
  15711. },
  15712. [
  15713. {
  15714. name: "Micro",
  15715. height: math.unit(3, "inches")
  15716. },
  15717. {
  15718. name: "Normal",
  15719. height: math.unit(4 + 11 / 12, "feet"),
  15720. default: true
  15721. },
  15722. {
  15723. name: "Macro",
  15724. height: math.unit(300, "feet")
  15725. },
  15726. {
  15727. name: "Megamacro",
  15728. height: math.unit(700, "miles")
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15734. {
  15735. front: {
  15736. height: math.unit(6 + 2 / 12, "feet"),
  15737. weight: math.unit(170, "lb"),
  15738. name: "Front",
  15739. image: {
  15740. source: "./media/characters/jamesy/front.svg",
  15741. extra: 440 / 382,
  15742. bottom: 0.005
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Micro",
  15749. height: math.unit(3, "inches")
  15750. },
  15751. {
  15752. name: "Normal",
  15753. height: math.unit(6 + 2 / 12, "feet"),
  15754. default: true
  15755. },
  15756. {
  15757. name: "Macro",
  15758. height: math.unit(300, "feet")
  15759. },
  15760. {
  15761. name: "Megamacro",
  15762. height: math.unit(700, "miles")
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15768. {
  15769. front: {
  15770. height: math.unit(6, "feet"),
  15771. weight: math.unit(160, "lb"),
  15772. name: "Front",
  15773. image: {
  15774. source: "./media/characters/mark/front.svg",
  15775. extra: 3300 / 3100,
  15776. bottom: 136.42 / 3440.47
  15777. }
  15778. },
  15779. },
  15780. [
  15781. {
  15782. name: "Macro",
  15783. height: math.unit(120, "meters")
  15784. },
  15785. {
  15786. name: "Bigger Macro",
  15787. height: math.unit(350, "meters")
  15788. },
  15789. {
  15790. name: "Megamacro",
  15791. height: math.unit(8, "km"),
  15792. default: true
  15793. },
  15794. {
  15795. name: "Continental",
  15796. height: math.unit(4550, "km")
  15797. },
  15798. {
  15799. name: "Planetary",
  15800. height: math.unit(65000, "km")
  15801. },
  15802. ]
  15803. ))
  15804. characterMakers.push(() => makeCharacter(
  15805. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15806. {
  15807. front: {
  15808. height: math.unit(6, "feet"),
  15809. weight: math.unit(400, "lb"),
  15810. name: "Front",
  15811. image: {
  15812. source: "./media/characters/mac/front.svg",
  15813. extra: 1048 / 987.7,
  15814. bottom: 60 / 1107.6,
  15815. }
  15816. },
  15817. },
  15818. [
  15819. {
  15820. name: "Macro",
  15821. height: math.unit(500, "feet"),
  15822. default: true
  15823. },
  15824. ]
  15825. ))
  15826. characterMakers.push(() => makeCharacter(
  15827. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15828. {
  15829. front: {
  15830. height: math.unit(5 + 2 / 12, "feet"),
  15831. weight: math.unit(190, "lb"),
  15832. name: "Front",
  15833. image: {
  15834. source: "./media/characters/bari/front.svg",
  15835. extra: 3156 / 2880,
  15836. bottom: 0.03
  15837. }
  15838. },
  15839. back: {
  15840. height: math.unit(5 + 2 / 12, "feet"),
  15841. weight: math.unit(190, "lb"),
  15842. name: "Back",
  15843. image: {
  15844. source: "./media/characters/bari/back.svg",
  15845. extra: 3260 / 2834,
  15846. bottom: 0.025
  15847. }
  15848. },
  15849. frontPlush: {
  15850. height: math.unit(5 + 2 / 12, "feet"),
  15851. weight: math.unit(190, "lb"),
  15852. name: "Front (Plush)",
  15853. image: {
  15854. source: "./media/characters/bari/front-plush.svg",
  15855. extra: 1112 / 1061,
  15856. bottom: 0.002
  15857. }
  15858. },
  15859. },
  15860. [
  15861. {
  15862. name: "Micro",
  15863. height: math.unit(3, "inches")
  15864. },
  15865. {
  15866. name: "Normal",
  15867. height: math.unit(5 + 2 / 12, "feet"),
  15868. default: true
  15869. },
  15870. {
  15871. name: "Macro",
  15872. height: math.unit(20, "feet")
  15873. },
  15874. ]
  15875. ))
  15876. characterMakers.push(() => makeCharacter(
  15877. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15878. {
  15879. front: {
  15880. height: math.unit(6 + 1 / 12, "feet"),
  15881. weight: math.unit(275, "lb"),
  15882. name: "Front",
  15883. image: {
  15884. source: "./media/characters/hunter-misha-raven/front.svg"
  15885. }
  15886. },
  15887. },
  15888. [
  15889. {
  15890. name: "Mortal",
  15891. height: math.unit(6 + 1 / 12, "feet")
  15892. },
  15893. {
  15894. name: "Divine",
  15895. height: math.unit(1.12134e34, "parsecs"),
  15896. default: true
  15897. },
  15898. ]
  15899. ))
  15900. characterMakers.push(() => makeCharacter(
  15901. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15902. {
  15903. front: {
  15904. height: math.unit(6 + 3 / 12, "feet"),
  15905. weight: math.unit(220, "lb"),
  15906. name: "Front",
  15907. image: {
  15908. source: "./media/characters/max-calore/front.svg",
  15909. extra: 1700 / 1648,
  15910. bottom: 0.01
  15911. }
  15912. },
  15913. back: {
  15914. height: math.unit(6 + 3 / 12, "feet"),
  15915. weight: math.unit(220, "lb"),
  15916. name: "Back",
  15917. image: {
  15918. source: "./media/characters/max-calore/back.svg",
  15919. extra: 1700 / 1648,
  15920. bottom: 0.01
  15921. }
  15922. },
  15923. },
  15924. [
  15925. {
  15926. name: "Normal",
  15927. height: math.unit(6 + 3 / 12, "feet"),
  15928. default: true
  15929. },
  15930. ]
  15931. ))
  15932. characterMakers.push(() => makeCharacter(
  15933. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15934. {
  15935. side: {
  15936. height: math.unit(2 + 8 / 12, "feet"),
  15937. weight: math.unit(99, "lb"),
  15938. name: "Side",
  15939. image: {
  15940. source: "./media/characters/aspen/side.svg",
  15941. extra: 152 / 138,
  15942. bottom: 0.032
  15943. }
  15944. },
  15945. },
  15946. [
  15947. {
  15948. name: "Normal",
  15949. height: math.unit(2 + 8 / 12, "feet"),
  15950. default: true
  15951. },
  15952. ]
  15953. ))
  15954. characterMakers.push(() => makeCharacter(
  15955. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15956. {
  15957. side: {
  15958. height: math.unit(3 + 2 / 12, "feet"),
  15959. weight: math.unit(224, "lb"),
  15960. name: "Side",
  15961. image: {
  15962. source: "./media/characters/sheila-feral-wolf/side.svg",
  15963. extra: 179 / 166,
  15964. bottom: 0.03
  15965. }
  15966. },
  15967. },
  15968. [
  15969. {
  15970. name: "Normal",
  15971. height: math.unit(3 + 2 / 12, "feet"),
  15972. default: true
  15973. },
  15974. ]
  15975. ))
  15976. characterMakers.push(() => makeCharacter(
  15977. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15978. {
  15979. side: {
  15980. height: math.unit(1 + 9 / 12, "feet"),
  15981. weight: math.unit(38, "lb"),
  15982. name: "Side",
  15983. image: {
  15984. source: "./media/characters/michelle/side.svg",
  15985. extra: 147 / 136.7,
  15986. bottom: 0.03
  15987. }
  15988. },
  15989. },
  15990. [
  15991. {
  15992. name: "Normal",
  15993. height: math.unit(1 + 9 / 12, "feet"),
  15994. default: true
  15995. },
  15996. ]
  15997. ))
  15998. characterMakers.push(() => makeCharacter(
  15999. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16000. {
  16001. front: {
  16002. height: math.unit(1 + 1 / 12, "feet"),
  16003. weight: math.unit(18, "lb"),
  16004. name: "Front",
  16005. image: {
  16006. source: "./media/characters/nino/front.svg"
  16007. }
  16008. },
  16009. },
  16010. [
  16011. {
  16012. name: "Normal",
  16013. height: math.unit(1 + 1 / 12, "feet"),
  16014. default: true
  16015. },
  16016. ]
  16017. ))
  16018. characterMakers.push(() => makeCharacter(
  16019. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16020. {
  16021. front: {
  16022. height: math.unit(1, "feet"),
  16023. weight: math.unit(16, "lb"),
  16024. name: "Front",
  16025. image: {
  16026. source: "./media/characters/viola/front.svg"
  16027. }
  16028. },
  16029. },
  16030. [
  16031. {
  16032. name: "Normal",
  16033. height: math.unit(1, "feet"),
  16034. default: true
  16035. },
  16036. ]
  16037. ))
  16038. characterMakers.push(() => makeCharacter(
  16039. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16040. {
  16041. front: {
  16042. height: math.unit(6 + 5 / 12, "feet"),
  16043. weight: math.unit(580, "lb"),
  16044. name: "Front",
  16045. image: {
  16046. source: "./media/characters/atlas/front.svg",
  16047. extra: 298.5 / 290,
  16048. bottom: 0.015
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(6 + 5 / 12, "feet"),
  16056. default: true
  16057. },
  16058. ]
  16059. ))
  16060. characterMakers.push(() => makeCharacter(
  16061. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16062. {
  16063. side: {
  16064. height: math.unit(1 + 10 / 12, "feet"),
  16065. weight: math.unit(25, "lb"),
  16066. name: "Side",
  16067. image: {
  16068. source: "./media/characters/davy/side.svg",
  16069. extra: 200 / 170,
  16070. bottom: 0.01
  16071. }
  16072. },
  16073. },
  16074. [
  16075. {
  16076. name: "Normal",
  16077. height: math.unit(1 + 10 / 12, "feet"),
  16078. default: true
  16079. },
  16080. ]
  16081. ))
  16082. characterMakers.push(() => makeCharacter(
  16083. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16084. {
  16085. side: {
  16086. height: math.unit(4 + 8 / 12, "feet"),
  16087. weight: math.unit(166, "lb"),
  16088. name: "Side",
  16089. image: {
  16090. source: "./media/characters/fiona/side.svg",
  16091. extra: 232 / 220,
  16092. bottom: 0.03
  16093. }
  16094. },
  16095. },
  16096. [
  16097. {
  16098. name: "Normal",
  16099. height: math.unit(4 + 8 / 12, "feet"),
  16100. default: true
  16101. },
  16102. ]
  16103. ))
  16104. characterMakers.push(() => makeCharacter(
  16105. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16106. {
  16107. front: {
  16108. height: math.unit(2, "feet"),
  16109. weight: math.unit(62, "lb"),
  16110. name: "Front",
  16111. image: {
  16112. source: "./media/characters/lyla/front.svg",
  16113. bottom: 0.1
  16114. }
  16115. },
  16116. },
  16117. [
  16118. {
  16119. name: "Normal",
  16120. height: math.unit(2, "feet"),
  16121. default: true
  16122. },
  16123. ]
  16124. ))
  16125. characterMakers.push(() => makeCharacter(
  16126. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16127. {
  16128. side: {
  16129. height: math.unit(1.8, "feet"),
  16130. weight: math.unit(44, "lb"),
  16131. name: "Side",
  16132. image: {
  16133. source: "./media/characters/perseus/side.svg",
  16134. bottom: 0.21
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Normal",
  16141. height: math.unit(1.8, "feet"),
  16142. default: true
  16143. },
  16144. ]
  16145. ))
  16146. characterMakers.push(() => makeCharacter(
  16147. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16148. {
  16149. side: {
  16150. height: math.unit(4 + 2 / 12, "feet"),
  16151. weight: math.unit(20, "lb"),
  16152. name: "Side",
  16153. image: {
  16154. source: "./media/characters/remus/side.svg"
  16155. }
  16156. },
  16157. },
  16158. [
  16159. {
  16160. name: "Normal",
  16161. height: math.unit(4 + 2 / 12, "feet"),
  16162. default: true
  16163. },
  16164. ]
  16165. ))
  16166. characterMakers.push(() => makeCharacter(
  16167. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16168. {
  16169. front: {
  16170. height: math.unit(4 + 11 / 12, "feet"),
  16171. weight: math.unit(114, "lb"),
  16172. name: "Front",
  16173. image: {
  16174. source: "./media/characters/raf/front.svg",
  16175. bottom: 20.5/1863
  16176. }
  16177. },
  16178. side: {
  16179. height: math.unit(4 + 11 / 12, "feet"),
  16180. weight: math.unit(114, "lb"),
  16181. name: "Side",
  16182. image: {
  16183. source: "./media/characters/raf/side.svg",
  16184. bottom: 22/1822
  16185. }
  16186. },
  16187. },
  16188. [
  16189. {
  16190. name: "Micro",
  16191. height: math.unit(2, "inches")
  16192. },
  16193. {
  16194. name: "Normal",
  16195. height: math.unit(4 + 11 / 12, "feet"),
  16196. default: true
  16197. },
  16198. {
  16199. name: "Macro",
  16200. height: math.unit(70, "feet")
  16201. },
  16202. ]
  16203. ))
  16204. characterMakers.push(() => makeCharacter(
  16205. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16206. {
  16207. front: {
  16208. height: math.unit(1.5, "meters"),
  16209. weight: math.unit(68, "kg"),
  16210. name: "Front",
  16211. image: {
  16212. source: "./media/characters/liam-einarr/front.svg",
  16213. extra: 2822 / 2666
  16214. }
  16215. },
  16216. back: {
  16217. height: math.unit(1.5, "meters"),
  16218. weight: math.unit(68, "kg"),
  16219. name: "Back",
  16220. image: {
  16221. source: "./media/characters/liam-einarr/back.svg",
  16222. extra: 2822 / 2666,
  16223. bottom: 0.015
  16224. }
  16225. },
  16226. },
  16227. [
  16228. {
  16229. name: "Normal",
  16230. height: math.unit(1.5, "meters"),
  16231. default: true
  16232. },
  16233. {
  16234. name: "Macro",
  16235. height: math.unit(150, "meters")
  16236. },
  16237. {
  16238. name: "Megamacro",
  16239. height: math.unit(35, "km")
  16240. },
  16241. ]
  16242. ))
  16243. characterMakers.push(() => makeCharacter(
  16244. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16245. {
  16246. front: {
  16247. height: math.unit(6, "feet"),
  16248. weight: math.unit(75, "kg"),
  16249. name: "Front",
  16250. image: {
  16251. source: "./media/characters/linda/front.svg",
  16252. extra: 930 / 874,
  16253. bottom: 0.004
  16254. }
  16255. },
  16256. },
  16257. [
  16258. {
  16259. name: "Normal",
  16260. height: math.unit(6, "feet"),
  16261. default: true
  16262. },
  16263. ]
  16264. ))
  16265. characterMakers.push(() => makeCharacter(
  16266. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16267. {
  16268. front: {
  16269. height: math.unit(6 + 8 / 12, "feet"),
  16270. weight: math.unit(220, "lb"),
  16271. name: "Front",
  16272. image: {
  16273. source: "./media/characters/caylex/front.svg",
  16274. extra: 821 / 772,
  16275. bottom: 0.07
  16276. }
  16277. },
  16278. back: {
  16279. height: math.unit(6 + 8 / 12, "feet"),
  16280. weight: math.unit(220, "lb"),
  16281. name: "Back",
  16282. image: {
  16283. source: "./media/characters/caylex/back.svg",
  16284. extra: 821 / 772,
  16285. bottom: 0.022
  16286. }
  16287. },
  16288. hand: {
  16289. height: math.unit(1.25, "feet"),
  16290. name: "Hand",
  16291. image: {
  16292. source: "./media/characters/caylex/hand.svg"
  16293. }
  16294. },
  16295. foot: {
  16296. height: math.unit(1.6, "feet"),
  16297. name: "Foot",
  16298. image: {
  16299. source: "./media/characters/caylex/foot.svg"
  16300. }
  16301. },
  16302. armored: {
  16303. height: math.unit(6 + 8 / 12, "feet"),
  16304. weight: math.unit(250, "lb"),
  16305. name: "Armored",
  16306. image: {
  16307. source: "./media/characters/caylex/armored.svg",
  16308. extra: 1420 / 1310,
  16309. bottom: 0.045
  16310. }
  16311. },
  16312. },
  16313. [
  16314. {
  16315. name: "Normal",
  16316. height: math.unit(6 + 8 / 12, "feet"),
  16317. default: true
  16318. },
  16319. {
  16320. name: "Normal+",
  16321. height: math.unit(12, "feet")
  16322. },
  16323. ]
  16324. ))
  16325. characterMakers.push(() => makeCharacter(
  16326. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16327. {
  16328. front: {
  16329. height: math.unit(7 + 6 / 12, "feet"),
  16330. weight: math.unit(288, "lb"),
  16331. name: "Front",
  16332. image: {
  16333. source: "./media/characters/alana/front.svg",
  16334. extra: 679 / 653,
  16335. bottom: 22.5 / 701
  16336. }
  16337. },
  16338. },
  16339. [
  16340. {
  16341. name: "Normal",
  16342. height: math.unit(7 + 6 / 12, "feet")
  16343. },
  16344. {
  16345. name: "Large",
  16346. height: math.unit(50, "feet")
  16347. },
  16348. {
  16349. name: "Macro",
  16350. height: math.unit(100, "feet"),
  16351. default: true
  16352. },
  16353. {
  16354. name: "Macro+",
  16355. height: math.unit(200, "feet")
  16356. },
  16357. ]
  16358. ))
  16359. characterMakers.push(() => makeCharacter(
  16360. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16361. {
  16362. front: {
  16363. height: math.unit(6 + 1 / 12, "feet"),
  16364. weight: math.unit(210, "lb"),
  16365. name: "Front",
  16366. image: {
  16367. source: "./media/characters/hasani/front.svg",
  16368. extra: 244 / 232,
  16369. bottom: 0.01
  16370. }
  16371. },
  16372. back: {
  16373. height: math.unit(6 + 1 / 12, "feet"),
  16374. weight: math.unit(210, "lb"),
  16375. name: "Back",
  16376. image: {
  16377. source: "./media/characters/hasani/back.svg",
  16378. extra: 244 / 232,
  16379. bottom: 0.01
  16380. }
  16381. },
  16382. },
  16383. [
  16384. {
  16385. name: "Normal",
  16386. height: math.unit(6 + 1 / 12, "feet")
  16387. },
  16388. {
  16389. name: "Macro",
  16390. height: math.unit(175, "feet"),
  16391. default: true
  16392. },
  16393. ]
  16394. ))
  16395. characterMakers.push(() => makeCharacter(
  16396. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16397. {
  16398. front: {
  16399. height: math.unit(1.82, "meters"),
  16400. weight: math.unit(140, "lb"),
  16401. name: "Front",
  16402. image: {
  16403. source: "./media/characters/nita/front.svg",
  16404. extra: 2473 / 2363,
  16405. bottom: 0.01
  16406. }
  16407. },
  16408. },
  16409. [
  16410. {
  16411. name: "Normal",
  16412. height: math.unit(1.82, "m")
  16413. },
  16414. {
  16415. name: "Macro",
  16416. height: math.unit(300, "m")
  16417. },
  16418. {
  16419. name: "Mistake Canon",
  16420. height: math.unit(0.5, "miles"),
  16421. default: true
  16422. },
  16423. {
  16424. name: "Big Mistake",
  16425. height: math.unit(13, "miles")
  16426. },
  16427. {
  16428. name: "Playing God",
  16429. height: math.unit(2450, "miles")
  16430. },
  16431. ]
  16432. ))
  16433. characterMakers.push(() => makeCharacter(
  16434. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16435. {
  16436. front: {
  16437. height: math.unit(4, "feet"),
  16438. weight: math.unit(120, "lb"),
  16439. name: "Front",
  16440. image: {
  16441. source: "./media/characters/shiriko/front.svg",
  16442. extra: 195 / 188
  16443. }
  16444. },
  16445. },
  16446. [
  16447. {
  16448. name: "Normal",
  16449. height: math.unit(4, "feet"),
  16450. default: true
  16451. },
  16452. ]
  16453. ))
  16454. characterMakers.push(() => makeCharacter(
  16455. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16456. {
  16457. front: {
  16458. height: math.unit(6, "feet"),
  16459. name: "front",
  16460. image: {
  16461. source: "./media/characters/deja/front.svg",
  16462. extra: 926 / 840,
  16463. bottom: 0.07
  16464. }
  16465. },
  16466. },
  16467. [
  16468. {
  16469. name: "Planck Length",
  16470. height: math.unit(1.6e-35, "meters")
  16471. },
  16472. {
  16473. name: "Normal",
  16474. height: math.unit(30.48, "meters"),
  16475. default: true
  16476. },
  16477. {
  16478. name: "Universal",
  16479. height: math.unit(8.8e26, "meters")
  16480. },
  16481. ]
  16482. ))
  16483. characterMakers.push(() => makeCharacter(
  16484. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16485. {
  16486. side: {
  16487. height: math.unit(8, "feet"),
  16488. weight: math.unit(6300, "lb"),
  16489. name: "Side",
  16490. image: {
  16491. source: "./media/characters/anima/side.svg",
  16492. bottom: 0.035
  16493. }
  16494. },
  16495. },
  16496. [
  16497. {
  16498. name: "Normal",
  16499. height: math.unit(8, "feet"),
  16500. default: true
  16501. },
  16502. ]
  16503. ))
  16504. characterMakers.push(() => makeCharacter(
  16505. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16506. {
  16507. front: {
  16508. height: math.unit(8, "feet"),
  16509. weight: math.unit(350, "lb"),
  16510. name: "Front",
  16511. image: {
  16512. source: "./media/characters/bianca/front.svg",
  16513. extra: 234 / 225,
  16514. bottom: 0.03
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(8, "feet"),
  16522. default: true
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16528. {
  16529. front: {
  16530. height: math.unit(6, "feet"),
  16531. weight: math.unit(150, "lb"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/adinia/front.svg",
  16535. extra: 1845 / 1672,
  16536. bottom: 0.02
  16537. }
  16538. },
  16539. back: {
  16540. height: math.unit(6, "feet"),
  16541. weight: math.unit(150, "lb"),
  16542. name: "Back",
  16543. image: {
  16544. source: "./media/characters/adinia/back.svg",
  16545. extra: 1845 / 1672,
  16546. bottom: 0.002
  16547. }
  16548. },
  16549. },
  16550. [
  16551. {
  16552. name: "Normal",
  16553. height: math.unit(11 + 5 / 12, "feet"),
  16554. default: true
  16555. },
  16556. ]
  16557. ))
  16558. characterMakers.push(() => makeCharacter(
  16559. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16560. {
  16561. front: {
  16562. height: math.unit(3, "meters"),
  16563. weight: math.unit(200, "kg"),
  16564. name: "Front",
  16565. image: {
  16566. source: "./media/characters/lykasa/front.svg",
  16567. extra: 1076 / 976,
  16568. bottom: 0.06
  16569. }
  16570. },
  16571. },
  16572. [
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(3, "meters")
  16576. },
  16577. {
  16578. name: "Kaiju",
  16579. height: math.unit(120, "meters"),
  16580. default: true
  16581. },
  16582. {
  16583. name: "Mega Kaiju",
  16584. height: math.unit(240, "km")
  16585. },
  16586. {
  16587. name: "Giga Kaiju",
  16588. height: math.unit(400, "megameters")
  16589. },
  16590. {
  16591. name: "Tera Kaiju",
  16592. height: math.unit(800, "gigameters")
  16593. },
  16594. {
  16595. name: "Kaiju Dragon Goddess",
  16596. height: math.unit(26, "zettaparsecs")
  16597. },
  16598. ]
  16599. ))
  16600. characterMakers.push(() => makeCharacter(
  16601. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16602. {
  16603. side: {
  16604. height: math.unit(283 / 124 * 6, "feet"),
  16605. weight: math.unit(35000, "lb"),
  16606. name: "Side",
  16607. image: {
  16608. source: "./media/characters/malfaren/side.svg",
  16609. extra: 2500 / 1010,
  16610. bottom: 0.01
  16611. }
  16612. },
  16613. front: {
  16614. height: math.unit(22.36, "feet"),
  16615. weight: math.unit(35000, "lb"),
  16616. name: "Front",
  16617. image: {
  16618. source: "./media/characters/malfaren/front.svg",
  16619. extra: 1631 / 1476,
  16620. bottom: 0.01
  16621. }
  16622. },
  16623. maw: {
  16624. height: math.unit(6.9, "feet"),
  16625. name: "Maw",
  16626. image: {
  16627. source: "./media/characters/malfaren/maw.svg"
  16628. }
  16629. },
  16630. },
  16631. [
  16632. {
  16633. name: "Big",
  16634. height: math.unit(283 / 162 * 6, "feet"),
  16635. },
  16636. {
  16637. name: "Bigger",
  16638. height: math.unit(283 / 124 * 6, "feet")
  16639. },
  16640. {
  16641. name: "Massive",
  16642. height: math.unit(283 / 92 * 6, "feet"),
  16643. default: true
  16644. },
  16645. {
  16646. name: "👀💦",
  16647. height: math.unit(283 / 73 * 6, "feet"),
  16648. },
  16649. ]
  16650. ))
  16651. characterMakers.push(() => makeCharacter(
  16652. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16653. {
  16654. front: {
  16655. height: math.unit(1.7, "m"),
  16656. weight: math.unit(70, "kg"),
  16657. name: "Front",
  16658. image: {
  16659. source: "./media/characters/kernel/front.svg",
  16660. extra: 222 / 210,
  16661. bottom: 0.007
  16662. }
  16663. },
  16664. },
  16665. [
  16666. {
  16667. name: "Nano",
  16668. height: math.unit(17, "micrometers")
  16669. },
  16670. {
  16671. name: "Micro",
  16672. height: math.unit(1.7, "mm")
  16673. },
  16674. {
  16675. name: "Small",
  16676. height: math.unit(1.7, "cm")
  16677. },
  16678. {
  16679. name: "Normal",
  16680. height: math.unit(1.7, "m"),
  16681. default: true
  16682. },
  16683. ]
  16684. ))
  16685. characterMakers.push(() => makeCharacter(
  16686. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16687. {
  16688. front: {
  16689. height: math.unit(1.75, "meters"),
  16690. weight: math.unit(65, "kg"),
  16691. name: "Front",
  16692. image: {
  16693. source: "./media/characters/jayne-folest/front.svg",
  16694. extra: 2115 / 2007,
  16695. bottom: 0.02
  16696. }
  16697. },
  16698. back: {
  16699. height: math.unit(1.75, "meters"),
  16700. weight: math.unit(65, "kg"),
  16701. name: "Back",
  16702. image: {
  16703. source: "./media/characters/jayne-folest/back.svg",
  16704. extra: 2115 / 2007,
  16705. bottom: 0.005
  16706. }
  16707. },
  16708. frontClothed: {
  16709. height: math.unit(1.75, "meters"),
  16710. weight: math.unit(65, "kg"),
  16711. name: "Front (Clothed)",
  16712. image: {
  16713. source: "./media/characters/jayne-folest/front-clothed.svg",
  16714. extra: 2115 / 2007,
  16715. bottom: 0.035
  16716. }
  16717. },
  16718. hand: {
  16719. height: math.unit(1 / 1.260, "feet"),
  16720. name: "Hand",
  16721. image: {
  16722. source: "./media/characters/jayne-folest/hand.svg"
  16723. }
  16724. },
  16725. foot: {
  16726. height: math.unit(1 / 0.918, "feet"),
  16727. name: "Foot",
  16728. image: {
  16729. source: "./media/characters/jayne-folest/foot.svg"
  16730. }
  16731. },
  16732. },
  16733. [
  16734. {
  16735. name: "Micro",
  16736. height: math.unit(4, "cm")
  16737. },
  16738. {
  16739. name: "Normal",
  16740. height: math.unit(1.75, "meters")
  16741. },
  16742. {
  16743. name: "Macro",
  16744. height: math.unit(47.5, "meters"),
  16745. default: true
  16746. },
  16747. ]
  16748. ))
  16749. characterMakers.push(() => makeCharacter(
  16750. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16751. {
  16752. front: {
  16753. height: math.unit(180, "cm"),
  16754. weight: math.unit(70, "kg"),
  16755. name: "Front",
  16756. image: {
  16757. source: "./media/characters/algier/front.svg",
  16758. extra: 596 / 572,
  16759. bottom: 0.04
  16760. }
  16761. },
  16762. back: {
  16763. height: math.unit(180, "cm"),
  16764. weight: math.unit(70, "kg"),
  16765. name: "Back",
  16766. image: {
  16767. source: "./media/characters/algier/back.svg",
  16768. extra: 596 / 572,
  16769. bottom: 0.025
  16770. }
  16771. },
  16772. frontdressed: {
  16773. height: math.unit(180, "cm"),
  16774. weight: math.unit(150, "kg"),
  16775. name: "Front-dressed",
  16776. image: {
  16777. source: "./media/characters/algier/front-dressed.svg",
  16778. extra: 596 / 572,
  16779. bottom: 0.038
  16780. }
  16781. },
  16782. },
  16783. [
  16784. {
  16785. name: "Micro",
  16786. height: math.unit(5, "cm")
  16787. },
  16788. {
  16789. name: "Normal",
  16790. height: math.unit(180, "cm"),
  16791. default: true
  16792. },
  16793. {
  16794. name: "Macro",
  16795. height: math.unit(64, "m")
  16796. },
  16797. ]
  16798. ))
  16799. characterMakers.push(() => makeCharacter(
  16800. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16801. {
  16802. upright: {
  16803. height: math.unit(7, "feet"),
  16804. weight: math.unit(300, "lb"),
  16805. name: "Upright",
  16806. image: {
  16807. source: "./media/characters/pretzel/upright.svg",
  16808. extra: 534 / 522,
  16809. bottom: 0.065
  16810. }
  16811. },
  16812. sprawling: {
  16813. height: math.unit(3.75, "feet"),
  16814. weight: math.unit(300, "lb"),
  16815. name: "Sprawling",
  16816. image: {
  16817. source: "./media/characters/pretzel/sprawling.svg",
  16818. extra: 314 / 281,
  16819. bottom: 0.1
  16820. }
  16821. },
  16822. tongue: {
  16823. height: math.unit(2, "feet"),
  16824. name: "Tongue",
  16825. image: {
  16826. source: "./media/characters/pretzel/tongue.svg"
  16827. }
  16828. },
  16829. },
  16830. [
  16831. {
  16832. name: "Normal",
  16833. height: math.unit(7, "feet"),
  16834. default: true
  16835. },
  16836. {
  16837. name: "Oversized",
  16838. height: math.unit(15, "feet")
  16839. },
  16840. {
  16841. name: "Huge",
  16842. height: math.unit(30, "feet")
  16843. },
  16844. {
  16845. name: "Macro",
  16846. height: math.unit(250, "feet")
  16847. },
  16848. ]
  16849. ))
  16850. characterMakers.push(() => makeCharacter(
  16851. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16852. {
  16853. sideFront: {
  16854. height: math.unit(5 + 2 / 12, "feet"),
  16855. weight: math.unit(120, "lb"),
  16856. name: "Front Side",
  16857. image: {
  16858. source: "./media/characters/roxi/side-front.svg",
  16859. extra: 2924 / 2717,
  16860. bottom: 0.08
  16861. }
  16862. },
  16863. sideBack: {
  16864. height: math.unit(5 + 2 / 12, "feet"),
  16865. weight: math.unit(120, "lb"),
  16866. name: "Back Side",
  16867. image: {
  16868. source: "./media/characters/roxi/side-back.svg",
  16869. extra: 2904 / 2693,
  16870. bottom: 0.06
  16871. }
  16872. },
  16873. front: {
  16874. height: math.unit(5 + 2 / 12, "feet"),
  16875. weight: math.unit(120, "lb"),
  16876. name: "Front",
  16877. image: {
  16878. source: "./media/characters/roxi/front.svg",
  16879. extra: 2028 / 1907,
  16880. bottom: 0.01
  16881. }
  16882. },
  16883. frontAlt: {
  16884. height: math.unit(5 + 2 / 12, "feet"),
  16885. weight: math.unit(120, "lb"),
  16886. name: "Front (Alt)",
  16887. image: {
  16888. source: "./media/characters/roxi/front-alt.svg",
  16889. extra: 1828 / 1798,
  16890. bottom: 0.01
  16891. }
  16892. },
  16893. sitting: {
  16894. height: math.unit(2.8, "feet"),
  16895. weight: math.unit(120, "lb"),
  16896. name: "Sitting",
  16897. image: {
  16898. source: "./media/characters/roxi/sitting.svg",
  16899. extra: 2660 / 2462,
  16900. bottom: 0.1
  16901. }
  16902. },
  16903. },
  16904. [
  16905. {
  16906. name: "Normal",
  16907. height: math.unit(5 + 2 / 12, "feet"),
  16908. default: true
  16909. },
  16910. ]
  16911. ))
  16912. characterMakers.push(() => makeCharacter(
  16913. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16914. {
  16915. side: {
  16916. height: math.unit(55, "feet"),
  16917. weight: math.unit(153, "tons"),
  16918. name: "Side",
  16919. image: {
  16920. source: "./media/characters/shadow/side.svg",
  16921. extra: 701 / 628,
  16922. bottom: 0.02
  16923. }
  16924. },
  16925. flying: {
  16926. height: math.unit(145, "feet"),
  16927. weight: math.unit(153, "tons"),
  16928. name: "Flying",
  16929. image: {
  16930. source: "./media/characters/shadow/flying.svg"
  16931. }
  16932. },
  16933. },
  16934. [
  16935. {
  16936. name: "Normal",
  16937. height: math.unit(55, "feet"),
  16938. default: true
  16939. },
  16940. ]
  16941. ))
  16942. characterMakers.push(() => makeCharacter(
  16943. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16944. {
  16945. front: {
  16946. height: math.unit(6, "feet"),
  16947. weight: math.unit(200, "lb"),
  16948. name: "Front",
  16949. image: {
  16950. source: "./media/characters/marcie/front.svg",
  16951. extra: 960 / 876,
  16952. bottom: 58 / 1017.87
  16953. }
  16954. },
  16955. },
  16956. [
  16957. {
  16958. name: "Macro",
  16959. height: math.unit(1, "mile"),
  16960. default: true
  16961. },
  16962. ]
  16963. ))
  16964. characterMakers.push(() => makeCharacter(
  16965. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16966. {
  16967. front: {
  16968. height: math.unit(7, "feet"),
  16969. weight: math.unit(200, "lb"),
  16970. name: "Front",
  16971. image: {
  16972. source: "./media/characters/kachina/front.svg",
  16973. extra: 1290.68 / 1119,
  16974. bottom: 36.5 / 1327.18
  16975. }
  16976. },
  16977. },
  16978. [
  16979. {
  16980. name: "Normal",
  16981. height: math.unit(7, "feet"),
  16982. default: true
  16983. },
  16984. ]
  16985. ))
  16986. characterMakers.push(() => makeCharacter(
  16987. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16988. {
  16989. looking: {
  16990. height: math.unit(2, "meters"),
  16991. weight: math.unit(300, "kg"),
  16992. name: "Looking",
  16993. image: {
  16994. source: "./media/characters/kash/looking.svg",
  16995. extra: 474 / 344,
  16996. bottom: 0.03
  16997. }
  16998. },
  16999. side: {
  17000. height: math.unit(2, "meters"),
  17001. weight: math.unit(300, "kg"),
  17002. name: "Side",
  17003. image: {
  17004. source: "./media/characters/kash/side.svg",
  17005. extra: 302 / 251,
  17006. bottom: 0.03
  17007. }
  17008. },
  17009. front: {
  17010. height: math.unit(2, "meters"),
  17011. weight: math.unit(300, "kg"),
  17012. name: "Front",
  17013. image: {
  17014. source: "./media/characters/kash/front.svg",
  17015. extra: 495 / 360,
  17016. bottom: 0.015
  17017. }
  17018. },
  17019. },
  17020. [
  17021. {
  17022. name: "Normal",
  17023. height: math.unit(2, "meters"),
  17024. default: true
  17025. },
  17026. {
  17027. name: "Big",
  17028. height: math.unit(3, "meters")
  17029. },
  17030. {
  17031. name: "Large",
  17032. height: math.unit(5, "meters")
  17033. },
  17034. ]
  17035. ))
  17036. characterMakers.push(() => makeCharacter(
  17037. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17038. {
  17039. feeding: {
  17040. height: math.unit(6.7, "feet"),
  17041. weight: math.unit(350, "lb"),
  17042. name: "Feeding",
  17043. image: {
  17044. source: "./media/characters/lalim/feeding.svg",
  17045. }
  17046. },
  17047. },
  17048. [
  17049. {
  17050. name: "Normal",
  17051. height: math.unit(6.7, "feet"),
  17052. default: true
  17053. },
  17054. ]
  17055. ))
  17056. characterMakers.push(() => makeCharacter(
  17057. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17058. {
  17059. front: {
  17060. height: math.unit(9.5, "feet"),
  17061. weight: math.unit(600, "lb"),
  17062. name: "Front",
  17063. image: {
  17064. source: "./media/characters/de'vout/front.svg",
  17065. extra: 1443 / 1328,
  17066. bottom: 0.025
  17067. }
  17068. },
  17069. back: {
  17070. height: math.unit(9.5, "feet"),
  17071. weight: math.unit(600, "lb"),
  17072. name: "Back",
  17073. image: {
  17074. source: "./media/characters/de'vout/back.svg",
  17075. extra: 1443 / 1328
  17076. }
  17077. },
  17078. frontDressed: {
  17079. height: math.unit(9.5, "feet"),
  17080. weight: math.unit(600, "lb"),
  17081. name: "Front (Dressed",
  17082. image: {
  17083. source: "./media/characters/de'vout/front-dressed.svg",
  17084. extra: 1443 / 1328,
  17085. bottom: 0.025
  17086. }
  17087. },
  17088. backDressed: {
  17089. height: math.unit(9.5, "feet"),
  17090. weight: math.unit(600, "lb"),
  17091. name: "Back (Dressed",
  17092. image: {
  17093. source: "./media/characters/de'vout/back-dressed.svg",
  17094. extra: 1443 / 1328
  17095. }
  17096. },
  17097. },
  17098. [
  17099. {
  17100. name: "Normal",
  17101. height: math.unit(9.5, "feet"),
  17102. default: true
  17103. },
  17104. ]
  17105. ))
  17106. characterMakers.push(() => makeCharacter(
  17107. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17108. {
  17109. front: {
  17110. height: math.unit(8, "feet"),
  17111. weight: math.unit(225, "lb"),
  17112. name: "Front",
  17113. image: {
  17114. source: "./media/characters/talana/front.svg",
  17115. extra: 1410 / 1300,
  17116. bottom: 0.015
  17117. }
  17118. },
  17119. frontDressed: {
  17120. height: math.unit(8, "feet"),
  17121. weight: math.unit(225, "lb"),
  17122. name: "Front (Dressed",
  17123. image: {
  17124. source: "./media/characters/talana/front-dressed.svg",
  17125. extra: 1410 / 1300,
  17126. bottom: 0.015
  17127. }
  17128. },
  17129. },
  17130. [
  17131. {
  17132. name: "Normal",
  17133. height: math.unit(8, "feet"),
  17134. default: true
  17135. },
  17136. ]
  17137. ))
  17138. characterMakers.push(() => makeCharacter(
  17139. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17140. {
  17141. side: {
  17142. height: math.unit(7.2, "feet"),
  17143. weight: math.unit(150, "lb"),
  17144. name: "Side",
  17145. image: {
  17146. source: "./media/characters/xeauvok/side.svg",
  17147. extra: 1975 / 1523,
  17148. bottom: 0.07
  17149. }
  17150. },
  17151. },
  17152. [
  17153. {
  17154. name: "Normal",
  17155. height: math.unit(7.2, "feet"),
  17156. default: true
  17157. },
  17158. ]
  17159. ))
  17160. characterMakers.push(() => makeCharacter(
  17161. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17162. {
  17163. side: {
  17164. height: math.unit(10, "feet"),
  17165. weight: math.unit(900, "kg"),
  17166. name: "Side",
  17167. image: {
  17168. source: "./media/characters/zara/side.svg",
  17169. extra: 504 / 498
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Normal",
  17176. height: math.unit(10, "feet"),
  17177. default: true
  17178. },
  17179. ]
  17180. ))
  17181. characterMakers.push(() => makeCharacter(
  17182. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17183. {
  17184. side: {
  17185. height: math.unit(6, "feet"),
  17186. weight: math.unit(150, "lb"),
  17187. name: "Side",
  17188. image: {
  17189. source: "./media/characters/richard-dragon/side.svg",
  17190. extra: 845 / 340,
  17191. bottom: 0.017
  17192. }
  17193. },
  17194. maw: {
  17195. height: math.unit(2.97, "feet"),
  17196. name: "Maw",
  17197. image: {
  17198. source: "./media/characters/richard-dragon/maw.svg"
  17199. }
  17200. },
  17201. },
  17202. [
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17207. {
  17208. front: {
  17209. height: math.unit(4, "feet"),
  17210. weight: math.unit(100, "lb"),
  17211. name: "Front",
  17212. image: {
  17213. source: "./media/characters/richard-smeargle/front.svg",
  17214. extra: 2952 / 2820,
  17215. bottom: 0.028
  17216. }
  17217. },
  17218. },
  17219. [
  17220. {
  17221. name: "Normal",
  17222. height: math.unit(4, "feet"),
  17223. default: true
  17224. },
  17225. {
  17226. name: "Dynamax",
  17227. height: math.unit(20, "meters")
  17228. },
  17229. ]
  17230. ))
  17231. characterMakers.push(() => makeCharacter(
  17232. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17233. {
  17234. front: {
  17235. height: math.unit(6, "feet"),
  17236. weight: math.unit(110, "lb"),
  17237. name: "Front",
  17238. image: {
  17239. source: "./media/characters/klay/front.svg",
  17240. extra: 962 / 883,
  17241. bottom: 0.04
  17242. }
  17243. },
  17244. back: {
  17245. height: math.unit(6, "feet"),
  17246. weight: math.unit(110, "lb"),
  17247. name: "Back",
  17248. image: {
  17249. source: "./media/characters/klay/back.svg",
  17250. extra: 962 / 883
  17251. }
  17252. },
  17253. beans: {
  17254. height: math.unit(1.15, "feet"),
  17255. name: "Beans",
  17256. image: {
  17257. source: "./media/characters/klay/beans.svg"
  17258. }
  17259. },
  17260. },
  17261. [
  17262. {
  17263. name: "Micro",
  17264. height: math.unit(6, "inches")
  17265. },
  17266. {
  17267. name: "Mini",
  17268. height: math.unit(3, "feet")
  17269. },
  17270. {
  17271. name: "Normal",
  17272. height: math.unit(6, "feet"),
  17273. default: true
  17274. },
  17275. {
  17276. name: "Big",
  17277. height: math.unit(25, "feet")
  17278. },
  17279. {
  17280. name: "Macro",
  17281. height: math.unit(100, "feet")
  17282. },
  17283. {
  17284. name: "Megamacro",
  17285. height: math.unit(400, "feet")
  17286. },
  17287. ]
  17288. ))
  17289. characterMakers.push(() => makeCharacter(
  17290. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17291. {
  17292. front: {
  17293. height: math.unit(6, "feet"),
  17294. weight: math.unit(160, "lb"),
  17295. name: "Front",
  17296. image: {
  17297. source: "./media/characters/marcus/front.svg",
  17298. extra: 734 / 676,
  17299. bottom: 0.03
  17300. }
  17301. },
  17302. },
  17303. [
  17304. {
  17305. name: "Little",
  17306. height: math.unit(6, "feet")
  17307. },
  17308. {
  17309. name: "Normal",
  17310. height: math.unit(110, "feet"),
  17311. default: true
  17312. },
  17313. {
  17314. name: "Macro",
  17315. height: math.unit(250, "feet")
  17316. },
  17317. {
  17318. name: "Megamacro",
  17319. height: math.unit(1000, "feet")
  17320. },
  17321. ]
  17322. ))
  17323. characterMakers.push(() => makeCharacter(
  17324. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17325. {
  17326. front: {
  17327. height: math.unit(7, "feet"),
  17328. weight: math.unit(275, "lb"),
  17329. name: "Front",
  17330. image: {
  17331. source: "./media/characters/claude-delroute/front.svg",
  17332. extra: 230 / 214,
  17333. bottom: 0.007
  17334. }
  17335. },
  17336. side: {
  17337. height: math.unit(7, "feet"),
  17338. weight: math.unit(275, "lb"),
  17339. name: "Side",
  17340. image: {
  17341. source: "./media/characters/claude-delroute/side.svg",
  17342. extra: 222 / 214,
  17343. bottom: 0.01
  17344. }
  17345. },
  17346. back: {
  17347. height: math.unit(7, "feet"),
  17348. weight: math.unit(275, "lb"),
  17349. name: "Back",
  17350. image: {
  17351. source: "./media/characters/claude-delroute/back.svg",
  17352. extra: 230 / 214,
  17353. bottom: 0.015
  17354. }
  17355. },
  17356. maw: {
  17357. height: math.unit(0.6407, "meters"),
  17358. name: "Maw",
  17359. image: {
  17360. source: "./media/characters/claude-delroute/maw.svg"
  17361. }
  17362. },
  17363. },
  17364. [
  17365. {
  17366. name: "Normal",
  17367. height: math.unit(7, "feet"),
  17368. default: true
  17369. },
  17370. {
  17371. name: "Lorge",
  17372. height: math.unit(20, "feet")
  17373. },
  17374. ]
  17375. ))
  17376. characterMakers.push(() => makeCharacter(
  17377. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17378. {
  17379. front: {
  17380. height: math.unit(8 + 4 / 12, "feet"),
  17381. weight: math.unit(600, "lb"),
  17382. name: "Front",
  17383. image: {
  17384. source: "./media/characters/dragonien/front.svg",
  17385. extra: 100 / 94,
  17386. bottom: 3.3 / 103.3445
  17387. }
  17388. },
  17389. back: {
  17390. height: math.unit(8 + 4 / 12, "feet"),
  17391. weight: math.unit(600, "lb"),
  17392. name: "Back",
  17393. image: {
  17394. source: "./media/characters/dragonien/back.svg",
  17395. extra: 776 / 746,
  17396. bottom: 6.4 / 782.0616
  17397. }
  17398. },
  17399. foot: {
  17400. height: math.unit(1.54, "feet"),
  17401. name: "Foot",
  17402. image: {
  17403. source: "./media/characters/dragonien/foot.svg",
  17404. }
  17405. },
  17406. },
  17407. [
  17408. {
  17409. name: "Normal",
  17410. height: math.unit(8 + 4 / 12, "feet"),
  17411. default: true
  17412. },
  17413. {
  17414. name: "Macro",
  17415. height: math.unit(200, "feet")
  17416. },
  17417. {
  17418. name: "Megamacro",
  17419. height: math.unit(1, "mile")
  17420. },
  17421. {
  17422. name: "Gigamacro",
  17423. height: math.unit(1000, "miles")
  17424. },
  17425. ]
  17426. ))
  17427. characterMakers.push(() => makeCharacter(
  17428. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17429. {
  17430. front: {
  17431. height: math.unit(5 + 2 / 12, "feet"),
  17432. weight: math.unit(110, "lb"),
  17433. name: "Front",
  17434. image: {
  17435. source: "./media/characters/desta/front.svg",
  17436. extra: 767/726,
  17437. bottom: 11.7/779
  17438. }
  17439. },
  17440. back: {
  17441. height: math.unit(5 + 2 / 12, "feet"),
  17442. weight: math.unit(110, "lb"),
  17443. name: "Back",
  17444. image: {
  17445. source: "./media/characters/desta/back.svg",
  17446. extra: 777/728,
  17447. bottom: 6/784
  17448. }
  17449. },
  17450. frontAlt: {
  17451. height: math.unit(5 + 2 / 12, "feet"),
  17452. weight: math.unit(110, "lb"),
  17453. name: "Front",
  17454. image: {
  17455. source: "./media/characters/desta/front-alt.svg",
  17456. extra: 1482 / 1417
  17457. }
  17458. },
  17459. side: {
  17460. height: math.unit(5 + 2 / 12, "feet"),
  17461. weight: math.unit(110, "lb"),
  17462. name: "Side",
  17463. image: {
  17464. source: "./media/characters/desta/side.svg",
  17465. extra: 2579 / 2491,
  17466. bottom: 0.053
  17467. }
  17468. },
  17469. },
  17470. [
  17471. {
  17472. name: "Micro",
  17473. height: math.unit(6, "inches")
  17474. },
  17475. {
  17476. name: "Normal",
  17477. height: math.unit(5 + 2 / 12, "feet"),
  17478. default: true
  17479. },
  17480. {
  17481. name: "Macro",
  17482. height: math.unit(62, "feet")
  17483. },
  17484. {
  17485. name: "Megamacro",
  17486. height: math.unit(1800, "feet")
  17487. },
  17488. ]
  17489. ))
  17490. characterMakers.push(() => makeCharacter(
  17491. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17492. {
  17493. front: {
  17494. height: math.unit(10, "feet"),
  17495. weight: math.unit(700, "lb"),
  17496. name: "Front",
  17497. image: {
  17498. source: "./media/characters/storm-alystar/front.svg",
  17499. extra: 2112 / 1898,
  17500. bottom: 0.034
  17501. }
  17502. },
  17503. },
  17504. [
  17505. {
  17506. name: "Micro",
  17507. height: math.unit(3.5, "inches")
  17508. },
  17509. {
  17510. name: "Normal",
  17511. height: math.unit(10, "feet"),
  17512. default: true
  17513. },
  17514. {
  17515. name: "Macro",
  17516. height: math.unit(400, "feet")
  17517. },
  17518. {
  17519. name: "Deific",
  17520. height: math.unit(60, "miles")
  17521. },
  17522. ]
  17523. ))
  17524. characterMakers.push(() => makeCharacter(
  17525. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17526. {
  17527. front: {
  17528. height: math.unit(2.35, "meters"),
  17529. weight: math.unit(119, "kg"),
  17530. name: "Front",
  17531. image: {
  17532. source: "./media/characters/ilia/front.svg",
  17533. extra: 1285 / 1255,
  17534. bottom: 0.06
  17535. }
  17536. },
  17537. },
  17538. [
  17539. {
  17540. name: "Normal",
  17541. height: math.unit(2.35, "meters")
  17542. },
  17543. {
  17544. name: "Macro",
  17545. height: math.unit(140, "meters"),
  17546. default: true
  17547. },
  17548. {
  17549. name: "Megamacro",
  17550. height: math.unit(100, "miles")
  17551. },
  17552. ]
  17553. ))
  17554. characterMakers.push(() => makeCharacter(
  17555. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17556. {
  17557. front: {
  17558. height: math.unit(6 + 5 / 12, "feet"),
  17559. weight: math.unit(190, "lb"),
  17560. name: "Front",
  17561. image: {
  17562. source: "./media/characters/kingdead/front.svg",
  17563. extra: 1228 / 1177
  17564. }
  17565. },
  17566. },
  17567. [
  17568. {
  17569. name: "Micro",
  17570. height: math.unit(7, "inches")
  17571. },
  17572. {
  17573. name: "Normal",
  17574. height: math.unit(6 + 5 / 12, "feet")
  17575. },
  17576. {
  17577. name: "Macro",
  17578. height: math.unit(150, "feet"),
  17579. default: true
  17580. },
  17581. {
  17582. name: "Megamacro",
  17583. height: math.unit(200, "miles")
  17584. },
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17589. {
  17590. front: {
  17591. height: math.unit(8, "feet"),
  17592. weight: math.unit(600, "lb"),
  17593. name: "Front",
  17594. image: {
  17595. source: "./media/characters/kyrehx/front.svg",
  17596. extra: 1195 / 1095,
  17597. bottom: 0.034
  17598. }
  17599. },
  17600. },
  17601. [
  17602. {
  17603. name: "Micro",
  17604. height: math.unit(2, "inches")
  17605. },
  17606. {
  17607. name: "Normal",
  17608. height: math.unit(8, "feet"),
  17609. default: true
  17610. },
  17611. {
  17612. name: "Macro",
  17613. height: math.unit(255, "feet")
  17614. },
  17615. ]
  17616. ))
  17617. characterMakers.push(() => makeCharacter(
  17618. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17619. {
  17620. front: {
  17621. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17622. weight: math.unit(184, "lb"),
  17623. name: "Front",
  17624. image: {
  17625. source: "./media/characters/xang/front.svg",
  17626. extra: 845 / 755
  17627. }
  17628. },
  17629. },
  17630. [
  17631. {
  17632. name: "Normal",
  17633. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17634. default: true
  17635. },
  17636. {
  17637. name: "Macro",
  17638. height: math.unit(0.935 * 146, "feet")
  17639. },
  17640. {
  17641. name: "Megamacro",
  17642. height: math.unit(0.935 * 3, "miles")
  17643. },
  17644. ]
  17645. ))
  17646. characterMakers.push(() => makeCharacter(
  17647. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17648. {
  17649. frontDressed: {
  17650. height: math.unit(5 + 7 / 12, "feet"),
  17651. weight: math.unit(140, "lb"),
  17652. name: "Front (Dressed)",
  17653. image: {
  17654. source: "./media/characters/doc-weardno/front-dressed.svg",
  17655. extra: 263 / 234
  17656. }
  17657. },
  17658. backDressed: {
  17659. height: math.unit(5 + 7 / 12, "feet"),
  17660. weight: math.unit(140, "lb"),
  17661. name: "Back (Dressed)",
  17662. image: {
  17663. source: "./media/characters/doc-weardno/back-dressed.svg",
  17664. extra: 266 / 238
  17665. }
  17666. },
  17667. front: {
  17668. height: math.unit(5 + 7 / 12, "feet"),
  17669. weight: math.unit(140, "lb"),
  17670. name: "Front",
  17671. image: {
  17672. source: "./media/characters/doc-weardno/front.svg",
  17673. extra: 254 / 233
  17674. }
  17675. },
  17676. },
  17677. [
  17678. {
  17679. name: "Micro",
  17680. height: math.unit(3, "inches")
  17681. },
  17682. {
  17683. name: "Normal",
  17684. height: math.unit(5 + 7 / 12, "feet"),
  17685. default: true
  17686. },
  17687. {
  17688. name: "Macro",
  17689. height: math.unit(25, "feet")
  17690. },
  17691. {
  17692. name: "Megamacro",
  17693. height: math.unit(2, "miles")
  17694. },
  17695. ]
  17696. ))
  17697. characterMakers.push(() => makeCharacter(
  17698. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17699. {
  17700. front: {
  17701. height: math.unit(6 + 2 / 12, "feet"),
  17702. weight: math.unit(153, "lb"),
  17703. name: "Front",
  17704. image: {
  17705. source: "./media/characters/seth-whilst/front.svg",
  17706. bottom: 0.07
  17707. }
  17708. },
  17709. },
  17710. [
  17711. {
  17712. name: "Micro",
  17713. height: math.unit(5, "inches")
  17714. },
  17715. {
  17716. name: "Normal",
  17717. height: math.unit(6 + 2 / 12, "feet"),
  17718. default: true
  17719. },
  17720. ]
  17721. ))
  17722. characterMakers.push(() => makeCharacter(
  17723. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17724. {
  17725. front: {
  17726. height: math.unit(3, "inches"),
  17727. weight: math.unit(8, "grams"),
  17728. name: "Front",
  17729. image: {
  17730. source: "./media/characters/pocket-jabari/front.svg",
  17731. extra: 1024 / 974,
  17732. bottom: 0.039
  17733. }
  17734. },
  17735. },
  17736. [
  17737. {
  17738. name: "Minimicro",
  17739. height: math.unit(8, "mm")
  17740. },
  17741. {
  17742. name: "Micro",
  17743. height: math.unit(3, "inches"),
  17744. default: true
  17745. },
  17746. {
  17747. name: "Normal",
  17748. height: math.unit(3, "feet")
  17749. },
  17750. ]
  17751. ))
  17752. characterMakers.push(() => makeCharacter(
  17753. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17754. {
  17755. front: {
  17756. height: math.unit(15, "feet"),
  17757. weight: math.unit(3280, "lb"),
  17758. name: "Front",
  17759. image: {
  17760. source: "./media/characters/sapphy/front.svg",
  17761. extra: 671 / 577,
  17762. bottom: 0.085
  17763. }
  17764. },
  17765. back: {
  17766. height: math.unit(15, "feet"),
  17767. weight: math.unit(3280, "lb"),
  17768. name: "Back",
  17769. image: {
  17770. source: "./media/characters/sapphy/back.svg",
  17771. extra: 631 / 607,
  17772. bottom: 0.045
  17773. }
  17774. },
  17775. },
  17776. [
  17777. {
  17778. name: "Normal",
  17779. height: math.unit(15, "feet")
  17780. },
  17781. {
  17782. name: "Casual Macro",
  17783. height: math.unit(120, "feet")
  17784. },
  17785. {
  17786. name: "Macro",
  17787. height: math.unit(2150, "feet"),
  17788. default: true
  17789. },
  17790. {
  17791. name: "Megamacro",
  17792. height: math.unit(8, "miles")
  17793. },
  17794. {
  17795. name: "Galaxy Mom",
  17796. height: math.unit(6, "megalightyears")
  17797. },
  17798. ]
  17799. ))
  17800. characterMakers.push(() => makeCharacter(
  17801. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17802. {
  17803. front: {
  17804. height: math.unit(6, "feet"),
  17805. weight: math.unit(170, "lb"),
  17806. name: "Front",
  17807. image: {
  17808. source: "./media/characters/kiro/front.svg",
  17809. extra: 1064 / 1012,
  17810. bottom: 0.052
  17811. }
  17812. },
  17813. },
  17814. [
  17815. {
  17816. name: "Micro",
  17817. height: math.unit(6, "inches")
  17818. },
  17819. {
  17820. name: "Normal",
  17821. height: math.unit(6, "feet"),
  17822. default: true
  17823. },
  17824. {
  17825. name: "Macro",
  17826. height: math.unit(72, "feet")
  17827. },
  17828. ]
  17829. ))
  17830. characterMakers.push(() => makeCharacter(
  17831. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17832. {
  17833. front: {
  17834. height: math.unit(5 + 9 / 12, "feet"),
  17835. weight: math.unit(175, "lb"),
  17836. name: "Front",
  17837. image: {
  17838. source: "./media/characters/irishfox/front.svg",
  17839. extra: 1912 / 1680,
  17840. bottom: 0.02
  17841. }
  17842. },
  17843. },
  17844. [
  17845. {
  17846. name: "Nano",
  17847. height: math.unit(1, "mm")
  17848. },
  17849. {
  17850. name: "Micro",
  17851. height: math.unit(2, "inches")
  17852. },
  17853. {
  17854. name: "Normal",
  17855. height: math.unit(5 + 9 / 12, "feet"),
  17856. default: true
  17857. },
  17858. {
  17859. name: "Macro",
  17860. height: math.unit(45, "feet")
  17861. },
  17862. ]
  17863. ))
  17864. characterMakers.push(() => makeCharacter(
  17865. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17866. {
  17867. front: {
  17868. height: math.unit(6 + 1 / 12, "feet"),
  17869. weight: math.unit(150, "lb"),
  17870. name: "Front",
  17871. image: {
  17872. source: "./media/characters/aronai-sieyes/front.svg",
  17873. extra: 1556 / 1480,
  17874. bottom: 0.015
  17875. }
  17876. },
  17877. side: {
  17878. height: math.unit(6 + 1 / 12, "feet"),
  17879. weight: math.unit(150, "lb"),
  17880. name: "Side",
  17881. image: {
  17882. source: "./media/characters/aronai-sieyes/side.svg",
  17883. extra: 1433 / 1390,
  17884. bottom: 0.0393
  17885. }
  17886. },
  17887. back: {
  17888. height: math.unit(6 + 1 / 12, "feet"),
  17889. weight: math.unit(150, "lb"),
  17890. name: "Back",
  17891. image: {
  17892. source: "./media/characters/aronai-sieyes/back.svg",
  17893. extra: 1544 / 1494,
  17894. bottom: 0.02
  17895. }
  17896. },
  17897. frontClothed: {
  17898. height: math.unit(6 + 1 / 12, "feet"),
  17899. weight: math.unit(150, "lb"),
  17900. name: "Front (Clothed)",
  17901. image: {
  17902. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17903. extra: 1582 / 1527
  17904. }
  17905. },
  17906. feral: {
  17907. height: math.unit(18, "feet"),
  17908. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17909. name: "Feral",
  17910. image: {
  17911. source: "./media/characters/aronai-sieyes/feral.svg",
  17912. extra: 1530 / 1240,
  17913. bottom: 0.035
  17914. }
  17915. },
  17916. },
  17917. [
  17918. {
  17919. name: "Micro",
  17920. height: math.unit(2, "inches")
  17921. },
  17922. {
  17923. name: "Normal",
  17924. height: math.unit(6 + 1 / 12, "feet"),
  17925. default: true
  17926. }
  17927. ]
  17928. ))
  17929. characterMakers.push(() => makeCharacter(
  17930. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17931. {
  17932. front: {
  17933. height: math.unit(12, "feet"),
  17934. weight: math.unit(410, "kg"),
  17935. name: "Front",
  17936. image: {
  17937. source: "./media/characters/xuna/front.svg",
  17938. extra: 2184 / 1980
  17939. }
  17940. },
  17941. side: {
  17942. height: math.unit(12, "feet"),
  17943. weight: math.unit(410, "kg"),
  17944. name: "Side",
  17945. image: {
  17946. source: "./media/characters/xuna/side.svg",
  17947. extra: 2184 / 1980
  17948. }
  17949. },
  17950. back: {
  17951. height: math.unit(12, "feet"),
  17952. weight: math.unit(410, "kg"),
  17953. name: "Back",
  17954. image: {
  17955. source: "./media/characters/xuna/back.svg",
  17956. extra: 2184 / 1980
  17957. }
  17958. },
  17959. },
  17960. [
  17961. {
  17962. name: "Nano glow",
  17963. height: math.unit(10, "nm")
  17964. },
  17965. {
  17966. name: "Micro floof",
  17967. height: math.unit(0.3, "m")
  17968. },
  17969. {
  17970. name: "Huggable softy boi",
  17971. height: math.unit(3.6576, "m"),
  17972. default: true
  17973. },
  17974. {
  17975. name: "Admirable floof",
  17976. height: math.unit(80, "meters")
  17977. },
  17978. {
  17979. name: "Gentle macro",
  17980. height: math.unit(300, "meters")
  17981. },
  17982. {
  17983. name: "Very careful floof",
  17984. height: math.unit(3200, "meters")
  17985. },
  17986. {
  17987. name: "The mega floof",
  17988. height: math.unit(36000, "meters")
  17989. },
  17990. {
  17991. name: "Giga-fur-Wicker",
  17992. height: math.unit(4800000, "meters")
  17993. },
  17994. {
  17995. name: "Licky world",
  17996. height: math.unit(20000000, "meters")
  17997. },
  17998. {
  17999. name: "Floofy cyan sun",
  18000. height: math.unit(1500000000, "meters")
  18001. },
  18002. {
  18003. name: "Milky Wicker",
  18004. height: math.unit(1000000000000000000000, "meters")
  18005. },
  18006. {
  18007. name: "The observing Wicker",
  18008. height: math.unit(999999999999999999999999999, "meters")
  18009. },
  18010. ]
  18011. ))
  18012. characterMakers.push(() => makeCharacter(
  18013. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18014. {
  18015. front: {
  18016. height: math.unit(5 + 9 / 12, "feet"),
  18017. weight: math.unit(150, "lb"),
  18018. name: "Front",
  18019. image: {
  18020. source: "./media/characters/arokha-sieyes/front.svg",
  18021. extra: 1425 / 1284,
  18022. bottom: 0.05
  18023. }
  18024. },
  18025. },
  18026. [
  18027. {
  18028. name: "Normal",
  18029. height: math.unit(5 + 9 / 12, "feet")
  18030. },
  18031. {
  18032. name: "Macro",
  18033. height: math.unit(30, "meters"),
  18034. default: true
  18035. },
  18036. ]
  18037. ))
  18038. characterMakers.push(() => makeCharacter(
  18039. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18040. {
  18041. front: {
  18042. height: math.unit(6, "feet"),
  18043. weight: math.unit(180, "lb"),
  18044. name: "Front",
  18045. image: {
  18046. source: "./media/characters/arokh-sieyes/front.svg",
  18047. extra: 1830 / 1769,
  18048. bottom: 0.01
  18049. }
  18050. },
  18051. },
  18052. [
  18053. {
  18054. name: "Normal",
  18055. height: math.unit(6, "feet")
  18056. },
  18057. {
  18058. name: "Macro",
  18059. height: math.unit(30, "meters"),
  18060. default: true
  18061. },
  18062. ]
  18063. ))
  18064. characterMakers.push(() => makeCharacter(
  18065. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18066. {
  18067. side: {
  18068. height: math.unit(13 + 1 / 12, "feet"),
  18069. weight: math.unit(8.5, "tonnes"),
  18070. name: "Side",
  18071. image: {
  18072. source: "./media/characters/goldeneye/side.svg",
  18073. extra: 1182 / 778,
  18074. bottom: 0.067
  18075. }
  18076. },
  18077. paw: {
  18078. height: math.unit(3.4, "feet"),
  18079. name: "Paw",
  18080. image: {
  18081. source: "./media/characters/goldeneye/paw.svg"
  18082. }
  18083. },
  18084. },
  18085. [
  18086. {
  18087. name: "Normal",
  18088. height: math.unit(13 + 1 / 12, "feet"),
  18089. default: true
  18090. },
  18091. ]
  18092. ))
  18093. characterMakers.push(() => makeCharacter(
  18094. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18095. {
  18096. front: {
  18097. height: math.unit(6 + 1 / 12, "feet"),
  18098. weight: math.unit(210, "lb"),
  18099. name: "Front",
  18100. image: {
  18101. source: "./media/characters/leonardo-lycheborne/front.svg",
  18102. extra: 390 / 365,
  18103. bottom: 0.032
  18104. }
  18105. },
  18106. side: {
  18107. height: math.unit(6 + 1 / 12, "feet"),
  18108. weight: math.unit(210, "lb"),
  18109. name: "Side",
  18110. image: {
  18111. source: "./media/characters/leonardo-lycheborne/side.svg",
  18112. extra: 390 / 365,
  18113. bottom: 0.005
  18114. }
  18115. },
  18116. back: {
  18117. height: math.unit(6 + 1 / 12, "feet"),
  18118. weight: math.unit(210, "lb"),
  18119. name: "Back",
  18120. image: {
  18121. source: "./media/characters/leonardo-lycheborne/back.svg",
  18122. extra: 392 / 366,
  18123. bottom: 0.01
  18124. }
  18125. },
  18126. hand: {
  18127. height: math.unit(1.08, "feet"),
  18128. name: "Hand",
  18129. image: {
  18130. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18131. }
  18132. },
  18133. foot: {
  18134. height: math.unit(1.32, "feet"),
  18135. name: "Foot",
  18136. image: {
  18137. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18138. }
  18139. },
  18140. were: {
  18141. height: math.unit(20, "feet"),
  18142. weight: math.unit(7800, "lb"),
  18143. name: "Were",
  18144. image: {
  18145. source: "./media/characters/leonardo-lycheborne/were.svg",
  18146. extra: 308 / 294,
  18147. bottom: 0.048
  18148. }
  18149. },
  18150. feral: {
  18151. height: math.unit(7.5, "feet"),
  18152. weight: math.unit(600, "lb"),
  18153. name: "Feral",
  18154. image: {
  18155. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18156. extra: 210 / 186,
  18157. bottom: 0.108
  18158. }
  18159. },
  18160. taur: {
  18161. height: math.unit(11, "feet"),
  18162. weight: math.unit(3300, "lb"),
  18163. name: "Taur",
  18164. image: {
  18165. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18166. extra: 320 / 303,
  18167. bottom: 0.025
  18168. }
  18169. },
  18170. barghest: {
  18171. height: math.unit(11, "feet"),
  18172. weight: math.unit(1300, "lb"),
  18173. name: "Barghest",
  18174. image: {
  18175. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18176. extra: 323 / 302,
  18177. bottom: 0.027
  18178. }
  18179. },
  18180. dick: {
  18181. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18182. name: "Dick",
  18183. image: {
  18184. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18185. }
  18186. },
  18187. dickWere: {
  18188. height: math.unit((20) / 3.8, "feet"),
  18189. name: "Dick (Were)",
  18190. image: {
  18191. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18192. }
  18193. },
  18194. },
  18195. [
  18196. {
  18197. name: "Normal",
  18198. height: math.unit(6 + 1 / 12, "feet"),
  18199. default: true
  18200. },
  18201. ]
  18202. ))
  18203. characterMakers.push(() => makeCharacter(
  18204. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18205. {
  18206. front: {
  18207. height: math.unit(10, "feet"),
  18208. weight: math.unit(350, "lb"),
  18209. name: "Front",
  18210. image: {
  18211. source: "./media/characters/jet/front.svg",
  18212. extra: 2050 / 1980,
  18213. bottom: 0.013
  18214. }
  18215. },
  18216. back: {
  18217. height: math.unit(10, "feet"),
  18218. weight: math.unit(350, "lb"),
  18219. name: "Back",
  18220. image: {
  18221. source: "./media/characters/jet/back.svg",
  18222. extra: 2050 / 1980,
  18223. bottom: 0.013
  18224. }
  18225. },
  18226. },
  18227. [
  18228. {
  18229. name: "Micro",
  18230. height: math.unit(6, "inches")
  18231. },
  18232. {
  18233. name: "Normal",
  18234. height: math.unit(10, "feet"),
  18235. default: true
  18236. },
  18237. {
  18238. name: "Macro",
  18239. height: math.unit(100, "feet")
  18240. },
  18241. ]
  18242. ))
  18243. characterMakers.push(() => makeCharacter(
  18244. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18245. {
  18246. front: {
  18247. height: math.unit(15, "feet"),
  18248. weight: math.unit(2800, "lb"),
  18249. name: "Front",
  18250. image: {
  18251. source: "./media/characters/tanarath/front.svg",
  18252. extra: 2392 / 2220,
  18253. bottom: 0.03
  18254. }
  18255. },
  18256. back: {
  18257. height: math.unit(15, "feet"),
  18258. weight: math.unit(2800, "lb"),
  18259. name: "Back",
  18260. image: {
  18261. source: "./media/characters/tanarath/back.svg",
  18262. extra: 2392 / 2220,
  18263. bottom: 0.03
  18264. }
  18265. },
  18266. },
  18267. [
  18268. {
  18269. name: "Normal",
  18270. height: math.unit(15, "feet"),
  18271. default: true
  18272. },
  18273. ]
  18274. ))
  18275. characterMakers.push(() => makeCharacter(
  18276. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18277. {
  18278. front: {
  18279. height: math.unit(7 + 1 / 12, "feet"),
  18280. weight: math.unit(175, "lb"),
  18281. name: "Front",
  18282. image: {
  18283. source: "./media/characters/patty-cattybatty/front.svg",
  18284. extra: 908 / 874,
  18285. bottom: 0.025
  18286. }
  18287. },
  18288. },
  18289. [
  18290. {
  18291. name: "Micro",
  18292. height: math.unit(1, "inch")
  18293. },
  18294. {
  18295. name: "Normal",
  18296. height: math.unit(7 + 1 / 12, "feet")
  18297. },
  18298. {
  18299. name: "Mini Macro",
  18300. height: math.unit(155, "feet")
  18301. },
  18302. {
  18303. name: "Macro",
  18304. height: math.unit(1077, "feet")
  18305. },
  18306. {
  18307. name: "Mega Macro",
  18308. height: math.unit(47650, "feet"),
  18309. default: true
  18310. },
  18311. {
  18312. name: "Giga Macro",
  18313. height: math.unit(440, "miles")
  18314. },
  18315. {
  18316. name: "Tera Macro",
  18317. height: math.unit(8700, "miles")
  18318. },
  18319. {
  18320. name: "Planetary Macro",
  18321. height: math.unit(32700, "miles")
  18322. },
  18323. {
  18324. name: "Solar Macro",
  18325. height: math.unit(550000, "miles")
  18326. },
  18327. {
  18328. name: "Celestial Macro",
  18329. height: math.unit(2.5, "AU")
  18330. },
  18331. ]
  18332. ))
  18333. characterMakers.push(() => makeCharacter(
  18334. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18335. {
  18336. front: {
  18337. height: math.unit(4 + 5 / 12, "feet"),
  18338. weight: math.unit(90, "lb"),
  18339. name: "Front",
  18340. image: {
  18341. source: "./media/characters/cappu/front.svg",
  18342. extra: 1247 / 1152,
  18343. bottom: 0.012
  18344. }
  18345. },
  18346. },
  18347. [
  18348. {
  18349. name: "Normal",
  18350. height: math.unit(4 + 5 / 12, "feet"),
  18351. default: true
  18352. },
  18353. ]
  18354. ))
  18355. characterMakers.push(() => makeCharacter(
  18356. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18357. {
  18358. frontDressed: {
  18359. height: math.unit(70, "cm"),
  18360. weight: math.unit(6, "kg"),
  18361. name: "Front (Dressed)",
  18362. image: {
  18363. source: "./media/characters/sebi/front-dressed.svg",
  18364. extra: 713.5 / 686.5,
  18365. bottom: 0.003
  18366. }
  18367. },
  18368. front: {
  18369. height: math.unit(70, "cm"),
  18370. weight: math.unit(5, "kg"),
  18371. name: "Front",
  18372. image: {
  18373. source: "./media/characters/sebi/front.svg",
  18374. extra: 713.5 / 686.5,
  18375. bottom: 0.003
  18376. }
  18377. }
  18378. },
  18379. [
  18380. {
  18381. name: "Normal",
  18382. height: math.unit(70, "cm"),
  18383. default: true
  18384. },
  18385. {
  18386. name: "Macro",
  18387. height: math.unit(8, "meters")
  18388. },
  18389. ]
  18390. ))
  18391. characterMakers.push(() => makeCharacter(
  18392. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18393. {
  18394. front: {
  18395. height: math.unit(6, "feet"),
  18396. weight: math.unit(150, "lb"),
  18397. name: "Front",
  18398. image: {
  18399. source: "./media/characters/typhek/front.svg",
  18400. extra: 1948 / 1929,
  18401. bottom: 0.025
  18402. }
  18403. },
  18404. side: {
  18405. height: math.unit(6, "feet"),
  18406. weight: math.unit(150, "lb"),
  18407. name: "Side",
  18408. image: {
  18409. source: "./media/characters/typhek/side.svg",
  18410. extra: 2034 / 2010,
  18411. bottom: 0.003
  18412. }
  18413. },
  18414. back: {
  18415. height: math.unit(6, "feet"),
  18416. weight: math.unit(150, "lb"),
  18417. name: "Back",
  18418. image: {
  18419. source: "./media/characters/typhek/back.svg",
  18420. extra: 2005 / 1978,
  18421. bottom: 0.004
  18422. }
  18423. },
  18424. palm: {
  18425. height: math.unit(1.2, "feet"),
  18426. name: "Palm",
  18427. image: {
  18428. source: "./media/characters/typhek/palm.svg"
  18429. }
  18430. },
  18431. fist: {
  18432. height: math.unit(1.1, "feet"),
  18433. name: "Fist",
  18434. image: {
  18435. source: "./media/characters/typhek/fist.svg"
  18436. }
  18437. },
  18438. foot: {
  18439. height: math.unit(1.57, "feet"),
  18440. name: "Foot",
  18441. image: {
  18442. source: "./media/characters/typhek/foot.svg"
  18443. }
  18444. },
  18445. sole: {
  18446. height: math.unit(2.05, "feet"),
  18447. name: "Sole",
  18448. image: {
  18449. source: "./media/characters/typhek/sole.svg"
  18450. }
  18451. },
  18452. },
  18453. [
  18454. {
  18455. name: "Macro",
  18456. height: math.unit(40, "stories"),
  18457. default: true
  18458. },
  18459. {
  18460. name: "Megamacro",
  18461. height: math.unit(1, "mile")
  18462. },
  18463. {
  18464. name: "Gigamacro",
  18465. height: math.unit(4000, "solarradii")
  18466. },
  18467. {
  18468. name: "Universal",
  18469. height: math.unit(1.1, "universes")
  18470. }
  18471. ]
  18472. ))
  18473. characterMakers.push(() => makeCharacter(
  18474. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18475. {
  18476. side: {
  18477. height: math.unit(5 + 7 / 12, "feet"),
  18478. weight: math.unit(150, "lb"),
  18479. name: "Side",
  18480. image: {
  18481. source: "./media/characters/kassy/side.svg",
  18482. extra: 1280 / 1225,
  18483. bottom: 0.002
  18484. }
  18485. },
  18486. front: {
  18487. height: math.unit(5 + 7 / 12, "feet"),
  18488. weight: math.unit(150, "lb"),
  18489. name: "Front",
  18490. image: {
  18491. source: "./media/characters/kassy/front.svg",
  18492. extra: 1280 / 1225,
  18493. bottom: 0.025
  18494. }
  18495. },
  18496. back: {
  18497. height: math.unit(5 + 7 / 12, "feet"),
  18498. weight: math.unit(150, "lb"),
  18499. name: "Back",
  18500. image: {
  18501. source: "./media/characters/kassy/back.svg",
  18502. extra: 1280 / 1225,
  18503. bottom: 0.002
  18504. }
  18505. },
  18506. foot: {
  18507. height: math.unit(1.266, "feet"),
  18508. name: "Foot",
  18509. image: {
  18510. source: "./media/characters/kassy/foot.svg"
  18511. }
  18512. },
  18513. },
  18514. [
  18515. {
  18516. name: "Normal",
  18517. height: math.unit(5 + 7 / 12, "feet")
  18518. },
  18519. {
  18520. name: "Macro",
  18521. height: math.unit(137, "feet"),
  18522. default: true
  18523. },
  18524. {
  18525. name: "Megamacro",
  18526. height: math.unit(1, "mile")
  18527. },
  18528. ]
  18529. ))
  18530. characterMakers.push(() => makeCharacter(
  18531. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18532. {
  18533. front: {
  18534. height: math.unit(6 + 1 / 12, "feet"),
  18535. weight: math.unit(200, "lb"),
  18536. name: "Front",
  18537. image: {
  18538. source: "./media/characters/neil/front.svg",
  18539. extra: 1326 / 1250,
  18540. bottom: 0.023
  18541. }
  18542. },
  18543. },
  18544. [
  18545. {
  18546. name: "Normal",
  18547. height: math.unit(6 + 1 / 12, "feet"),
  18548. default: true
  18549. },
  18550. {
  18551. name: "Macro",
  18552. height: math.unit(200, "feet")
  18553. },
  18554. ]
  18555. ))
  18556. characterMakers.push(() => makeCharacter(
  18557. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18558. {
  18559. front: {
  18560. height: math.unit(5 + 9 / 12, "feet"),
  18561. weight: math.unit(190, "lb"),
  18562. name: "Front",
  18563. image: {
  18564. source: "./media/characters/atticus/front.svg",
  18565. extra: 2934 / 2785,
  18566. bottom: 0.025
  18567. }
  18568. },
  18569. },
  18570. [
  18571. {
  18572. name: "Normal",
  18573. height: math.unit(5 + 9 / 12, "feet"),
  18574. default: true
  18575. },
  18576. {
  18577. name: "Macro",
  18578. height: math.unit(180, "feet")
  18579. },
  18580. ]
  18581. ))
  18582. characterMakers.push(() => makeCharacter(
  18583. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18584. {
  18585. side: {
  18586. height: math.unit(9, "feet"),
  18587. weight: math.unit(650, "lb"),
  18588. name: "Side",
  18589. image: {
  18590. source: "./media/characters/milo/side.svg",
  18591. extra: 2644 / 2310,
  18592. bottom: 0.032
  18593. }
  18594. },
  18595. },
  18596. [
  18597. {
  18598. name: "Normal",
  18599. height: math.unit(9, "feet"),
  18600. default: true
  18601. },
  18602. {
  18603. name: "Macro",
  18604. height: math.unit(300, "feet")
  18605. },
  18606. ]
  18607. ))
  18608. characterMakers.push(() => makeCharacter(
  18609. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18610. {
  18611. side: {
  18612. height: math.unit(8, "meters"),
  18613. weight: math.unit(90000, "kg"),
  18614. name: "Side",
  18615. image: {
  18616. source: "./media/characters/ijzer/side.svg",
  18617. extra: 2756 / 1600,
  18618. bottom: 0.01
  18619. }
  18620. },
  18621. },
  18622. [
  18623. {
  18624. name: "Small",
  18625. height: math.unit(3, "meters")
  18626. },
  18627. {
  18628. name: "Normal",
  18629. height: math.unit(8, "meters"),
  18630. default: true
  18631. },
  18632. {
  18633. name: "Normal+",
  18634. height: math.unit(10, "meters")
  18635. },
  18636. {
  18637. name: "Bigger",
  18638. height: math.unit(24, "meters")
  18639. },
  18640. {
  18641. name: "Huge",
  18642. height: math.unit(80, "meters")
  18643. },
  18644. ]
  18645. ))
  18646. characterMakers.push(() => makeCharacter(
  18647. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18648. {
  18649. front: {
  18650. height: math.unit(6 + 2 / 12, "feet"),
  18651. weight: math.unit(153, "lb"),
  18652. name: "Front",
  18653. image: {
  18654. source: "./media/characters/luca-cervicum/front.svg",
  18655. extra: 370 / 327,
  18656. bottom: 0.015
  18657. }
  18658. },
  18659. back: {
  18660. height: math.unit(6 + 2 / 12, "feet"),
  18661. weight: math.unit(153, "lb"),
  18662. name: "Back",
  18663. image: {
  18664. source: "./media/characters/luca-cervicum/back.svg",
  18665. extra: 367 / 333,
  18666. bottom: 0.005
  18667. }
  18668. },
  18669. frontGear: {
  18670. height: math.unit(6 + 2 / 12, "feet"),
  18671. weight: math.unit(173, "lb"),
  18672. name: "Front (Gear)",
  18673. image: {
  18674. source: "./media/characters/luca-cervicum/front-gear.svg",
  18675. extra: 377 / 333,
  18676. bottom: 0.006
  18677. }
  18678. },
  18679. },
  18680. [
  18681. {
  18682. name: "Normal",
  18683. height: math.unit(6 + 2 / 12, "feet"),
  18684. default: true
  18685. },
  18686. ]
  18687. ))
  18688. characterMakers.push(() => makeCharacter(
  18689. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18690. {
  18691. front: {
  18692. height: math.unit(6 + 1 / 12, "feet"),
  18693. weight: math.unit(304, "lb"),
  18694. name: "Front",
  18695. image: {
  18696. source: "./media/characters/oliver/front.svg",
  18697. extra: 157 / 143,
  18698. bottom: 0.08
  18699. }
  18700. },
  18701. },
  18702. [
  18703. {
  18704. name: "Normal",
  18705. height: math.unit(6 + 1 / 12, "feet"),
  18706. default: true
  18707. },
  18708. ]
  18709. ))
  18710. characterMakers.push(() => makeCharacter(
  18711. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18712. {
  18713. front: {
  18714. height: math.unit(5 + 7 / 12, "feet"),
  18715. weight: math.unit(140, "lb"),
  18716. name: "Front",
  18717. image: {
  18718. source: "./media/characters/shane/front.svg",
  18719. extra: 304 / 289,
  18720. bottom: 0.005
  18721. }
  18722. },
  18723. },
  18724. [
  18725. {
  18726. name: "Normal",
  18727. height: math.unit(5 + 7 / 12, "feet"),
  18728. default: true
  18729. },
  18730. ]
  18731. ))
  18732. characterMakers.push(() => makeCharacter(
  18733. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18734. {
  18735. front: {
  18736. height: math.unit(5 + 9 / 12, "feet"),
  18737. weight: math.unit(178, "lb"),
  18738. name: "Front",
  18739. image: {
  18740. source: "./media/characters/shin/front.svg",
  18741. extra: 159 / 151,
  18742. bottom: 0.015
  18743. }
  18744. },
  18745. },
  18746. [
  18747. {
  18748. name: "Normal",
  18749. height: math.unit(5 + 9 / 12, "feet"),
  18750. default: true
  18751. },
  18752. ]
  18753. ))
  18754. characterMakers.push(() => makeCharacter(
  18755. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18756. {
  18757. front: {
  18758. height: math.unit(5 + 10 / 12, "feet"),
  18759. weight: math.unit(168, "lb"),
  18760. name: "Front",
  18761. image: {
  18762. source: "./media/characters/xerxes/front.svg",
  18763. extra: 282 / 260,
  18764. bottom: 0.045
  18765. }
  18766. },
  18767. },
  18768. [
  18769. {
  18770. name: "Normal",
  18771. height: math.unit(5 + 10 / 12, "feet"),
  18772. default: true
  18773. },
  18774. ]
  18775. ))
  18776. characterMakers.push(() => makeCharacter(
  18777. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18778. {
  18779. front: {
  18780. height: math.unit(6 + 7 / 12, "feet"),
  18781. weight: math.unit(208, "lb"),
  18782. name: "Front",
  18783. image: {
  18784. source: "./media/characters/chaska/front.svg",
  18785. extra: 332 / 319,
  18786. bottom: 0.015
  18787. }
  18788. },
  18789. },
  18790. [
  18791. {
  18792. name: "Normal",
  18793. height: math.unit(6 + 7 / 12, "feet"),
  18794. default: true
  18795. },
  18796. ]
  18797. ))
  18798. characterMakers.push(() => makeCharacter(
  18799. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18800. {
  18801. front: {
  18802. height: math.unit(5 + 8 / 12, "feet"),
  18803. weight: math.unit(208, "lb"),
  18804. name: "Front",
  18805. image: {
  18806. source: "./media/characters/enuk/front.svg",
  18807. extra: 437 / 406,
  18808. bottom: 0.02
  18809. }
  18810. },
  18811. },
  18812. [
  18813. {
  18814. name: "Normal",
  18815. height: math.unit(5 + 8 / 12, "feet"),
  18816. default: true
  18817. },
  18818. ]
  18819. ))
  18820. characterMakers.push(() => makeCharacter(
  18821. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18822. {
  18823. front: {
  18824. height: math.unit(5 + 10 / 12, "feet"),
  18825. weight: math.unit(252, "lb"),
  18826. name: "Front",
  18827. image: {
  18828. source: "./media/characters/bruun/front.svg",
  18829. extra: 197 / 187,
  18830. bottom: 0.012
  18831. }
  18832. },
  18833. },
  18834. [
  18835. {
  18836. name: "Normal",
  18837. height: math.unit(5 + 10 / 12, "feet"),
  18838. default: true
  18839. },
  18840. ]
  18841. ))
  18842. characterMakers.push(() => makeCharacter(
  18843. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18844. {
  18845. front: {
  18846. height: math.unit(6 + 10 / 12, "feet"),
  18847. weight: math.unit(255, "lb"),
  18848. name: "Front",
  18849. image: {
  18850. source: "./media/characters/alexeev/front.svg",
  18851. extra: 213 / 200,
  18852. bottom: 0.05
  18853. }
  18854. },
  18855. },
  18856. [
  18857. {
  18858. name: "Normal",
  18859. height: math.unit(6 + 10 / 12, "feet"),
  18860. default: true
  18861. },
  18862. ]
  18863. ))
  18864. characterMakers.push(() => makeCharacter(
  18865. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18866. {
  18867. front: {
  18868. height: math.unit(2 + 8 / 12, "feet"),
  18869. weight: math.unit(22, "lb"),
  18870. name: "Front",
  18871. image: {
  18872. source: "./media/characters/evelyn/front.svg",
  18873. extra: 208 / 180
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Normal",
  18880. height: math.unit(2 + 8 / 12, "feet"),
  18881. default: true
  18882. },
  18883. ]
  18884. ))
  18885. characterMakers.push(() => makeCharacter(
  18886. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18887. {
  18888. front: {
  18889. height: math.unit(5 + 9 / 12, "feet"),
  18890. weight: math.unit(139, "lb"),
  18891. name: "Front",
  18892. image: {
  18893. source: "./media/characters/inca/front.svg",
  18894. extra: 294 / 291,
  18895. bottom: 0.03
  18896. }
  18897. },
  18898. },
  18899. [
  18900. {
  18901. name: "Normal",
  18902. height: math.unit(5 + 9 / 12, "feet"),
  18903. default: true
  18904. },
  18905. ]
  18906. ))
  18907. characterMakers.push(() => makeCharacter(
  18908. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18909. {
  18910. front: {
  18911. height: math.unit(5 + 1 / 12, "feet"),
  18912. weight: math.unit(84, "lb"),
  18913. name: "Front",
  18914. image: {
  18915. source: "./media/characters/magdalene/front.svg",
  18916. extra: 293 / 273
  18917. }
  18918. },
  18919. },
  18920. [
  18921. {
  18922. name: "Normal",
  18923. height: math.unit(5 + 1 / 12, "feet"),
  18924. default: true
  18925. },
  18926. ]
  18927. ))
  18928. characterMakers.push(() => makeCharacter(
  18929. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18930. {
  18931. front: {
  18932. height: math.unit(6 + 3 / 12, "feet"),
  18933. weight: math.unit(185, "lb"),
  18934. name: "Front",
  18935. image: {
  18936. source: "./media/characters/mera/front.svg",
  18937. extra: 291 / 277,
  18938. bottom: 0.03
  18939. }
  18940. },
  18941. },
  18942. [
  18943. {
  18944. name: "Normal",
  18945. height: math.unit(6 + 3 / 12, "feet"),
  18946. default: true
  18947. },
  18948. ]
  18949. ))
  18950. characterMakers.push(() => makeCharacter(
  18951. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18952. {
  18953. front: {
  18954. height: math.unit(6 + 7 / 12, "feet"),
  18955. weight: math.unit(160, "lb"),
  18956. name: "Front",
  18957. image: {
  18958. source: "./media/characters/ceres/front.svg",
  18959. extra: 1023 / 950,
  18960. bottom: 0.027
  18961. }
  18962. },
  18963. back: {
  18964. height: math.unit(6 + 7 / 12, "feet"),
  18965. weight: math.unit(160, "lb"),
  18966. name: "Back",
  18967. image: {
  18968. source: "./media/characters/ceres/back.svg",
  18969. extra: 1023 / 950
  18970. }
  18971. },
  18972. },
  18973. [
  18974. {
  18975. name: "Normal",
  18976. height: math.unit(6 + 7 / 12, "feet"),
  18977. default: true
  18978. },
  18979. ]
  18980. ))
  18981. characterMakers.push(() => makeCharacter(
  18982. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18983. {
  18984. front: {
  18985. height: math.unit(5 + 10 / 12, "feet"),
  18986. weight: math.unit(150, "lb"),
  18987. name: "Front",
  18988. image: {
  18989. source: "./media/characters/kris/front.svg",
  18990. extra: 885 / 803,
  18991. bottom: 0.03
  18992. }
  18993. },
  18994. },
  18995. [
  18996. {
  18997. name: "Normal",
  18998. height: math.unit(5 + 10 / 12, "feet"),
  18999. default: true
  19000. },
  19001. ]
  19002. ))
  19003. characterMakers.push(() => makeCharacter(
  19004. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19005. {
  19006. front: {
  19007. height: math.unit(7, "feet"),
  19008. weight: math.unit(120, "kg"),
  19009. name: "Front",
  19010. image: {
  19011. source: "./media/characters/taluthus/front.svg",
  19012. extra: 903 / 833,
  19013. bottom: 0.015
  19014. }
  19015. },
  19016. },
  19017. [
  19018. {
  19019. name: "Normal",
  19020. height: math.unit(7, "feet"),
  19021. default: true
  19022. },
  19023. {
  19024. name: "Macro",
  19025. height: math.unit(300, "feet")
  19026. },
  19027. ]
  19028. ))
  19029. characterMakers.push(() => makeCharacter(
  19030. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19031. {
  19032. front: {
  19033. height: math.unit(5 + 9 / 12, "feet"),
  19034. weight: math.unit(145, "lb"),
  19035. name: "Front",
  19036. image: {
  19037. source: "./media/characters/dawn/front.svg",
  19038. extra: 2094 / 2016,
  19039. bottom: 0.025
  19040. }
  19041. },
  19042. back: {
  19043. height: math.unit(5 + 9 / 12, "feet"),
  19044. weight: math.unit(160, "lb"),
  19045. name: "Back",
  19046. image: {
  19047. source: "./media/characters/dawn/back.svg",
  19048. extra: 2112 / 2080,
  19049. bottom: 0.005
  19050. }
  19051. },
  19052. },
  19053. [
  19054. {
  19055. name: "Normal",
  19056. height: math.unit(6 + 7 / 12, "feet"),
  19057. default: true
  19058. },
  19059. ]
  19060. ))
  19061. characterMakers.push(() => makeCharacter(
  19062. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19063. {
  19064. anthro: {
  19065. height: math.unit(8 + 3 / 12, "feet"),
  19066. weight: math.unit(450, "lb"),
  19067. name: "Anthro",
  19068. image: {
  19069. source: "./media/characters/arador/anthro.svg",
  19070. extra: 1835 / 1718,
  19071. bottom: 0.025
  19072. }
  19073. },
  19074. feral: {
  19075. height: math.unit(4, "feet"),
  19076. weight: math.unit(200, "lb"),
  19077. name: "Feral",
  19078. image: {
  19079. source: "./media/characters/arador/feral.svg",
  19080. extra: 1683 / 1514,
  19081. bottom: 0.07
  19082. }
  19083. },
  19084. },
  19085. [
  19086. {
  19087. name: "Normal",
  19088. height: math.unit(8 + 3 / 12, "feet")
  19089. },
  19090. {
  19091. name: "Macro",
  19092. height: math.unit(82.5, "feet"),
  19093. default: true
  19094. },
  19095. ]
  19096. ))
  19097. characterMakers.push(() => makeCharacter(
  19098. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19099. {
  19100. front: {
  19101. height: math.unit(5 + 10 / 12, "feet"),
  19102. weight: math.unit(125, "lb"),
  19103. name: "Front",
  19104. image: {
  19105. source: "./media/characters/dharsi/front.svg",
  19106. extra: 716 / 630,
  19107. bottom: 0.035
  19108. }
  19109. },
  19110. },
  19111. [
  19112. {
  19113. name: "Nano",
  19114. height: math.unit(100, "nm")
  19115. },
  19116. {
  19117. name: "Micro",
  19118. height: math.unit(2, "inches")
  19119. },
  19120. {
  19121. name: "Normal",
  19122. height: math.unit(5 + 10 / 12, "feet"),
  19123. default: true
  19124. },
  19125. {
  19126. name: "Macro",
  19127. height: math.unit(1000, "feet")
  19128. },
  19129. {
  19130. name: "Megamacro",
  19131. height: math.unit(10, "miles")
  19132. },
  19133. {
  19134. name: "Gigamacro",
  19135. height: math.unit(3000, "miles")
  19136. },
  19137. {
  19138. name: "Teramacro",
  19139. height: math.unit(500000, "miles")
  19140. },
  19141. {
  19142. name: "Teramacro+",
  19143. height: math.unit(30, "galaxies")
  19144. },
  19145. ]
  19146. ))
  19147. characterMakers.push(() => makeCharacter(
  19148. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19149. {
  19150. front: {
  19151. height: math.unit(6, "feet"),
  19152. weight: math.unit(150, "lb"),
  19153. name: "Front",
  19154. image: {
  19155. source: "./media/characters/deathy/front.svg",
  19156. extra: 1552 / 1463,
  19157. bottom: 0.025
  19158. }
  19159. },
  19160. side: {
  19161. height: math.unit(6, "feet"),
  19162. weight: math.unit(150, "lb"),
  19163. name: "Side",
  19164. image: {
  19165. source: "./media/characters/deathy/side.svg",
  19166. extra: 1604 / 1455,
  19167. bottom: 0.025
  19168. }
  19169. },
  19170. back: {
  19171. height: math.unit(6, "feet"),
  19172. weight: math.unit(150, "lb"),
  19173. name: "Back",
  19174. image: {
  19175. source: "./media/characters/deathy/back.svg",
  19176. extra: 1580 / 1463,
  19177. bottom: 0.005
  19178. }
  19179. },
  19180. },
  19181. [
  19182. {
  19183. name: "Micro",
  19184. height: math.unit(5, "millimeters")
  19185. },
  19186. {
  19187. name: "Normal",
  19188. height: math.unit(6 + 5 / 12, "feet"),
  19189. default: true
  19190. },
  19191. ]
  19192. ))
  19193. characterMakers.push(() => makeCharacter(
  19194. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19195. {
  19196. front: {
  19197. height: math.unit(16, "feet"),
  19198. weight: math.unit(4000, "lb"),
  19199. name: "Front",
  19200. image: {
  19201. source: "./media/characters/juniper/front.svg",
  19202. bottom: 0.04
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Normal",
  19209. height: math.unit(16, "feet"),
  19210. default: true
  19211. },
  19212. ]
  19213. ))
  19214. characterMakers.push(() => makeCharacter(
  19215. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19216. {
  19217. front: {
  19218. height: math.unit(6, "feet"),
  19219. weight: math.unit(150, "lb"),
  19220. name: "Front",
  19221. image: {
  19222. source: "./media/characters/hipster/front.svg",
  19223. extra: 1312 / 1209,
  19224. bottom: 0.025
  19225. }
  19226. },
  19227. back: {
  19228. height: math.unit(6, "feet"),
  19229. weight: math.unit(150, "lb"),
  19230. name: "Back",
  19231. image: {
  19232. source: "./media/characters/hipster/back.svg",
  19233. extra: 1281 / 1196,
  19234. bottom: 0.01
  19235. }
  19236. },
  19237. },
  19238. [
  19239. {
  19240. name: "Micro",
  19241. height: math.unit(1, "mm")
  19242. },
  19243. {
  19244. name: "Normal",
  19245. height: math.unit(4, "inches"),
  19246. default: true
  19247. },
  19248. {
  19249. name: "Macro",
  19250. height: math.unit(500, "feet")
  19251. },
  19252. {
  19253. name: "Megamacro",
  19254. height: math.unit(1000, "miles")
  19255. },
  19256. ]
  19257. ))
  19258. characterMakers.push(() => makeCharacter(
  19259. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19260. {
  19261. front: {
  19262. height: math.unit(6, "feet"),
  19263. weight: math.unit(150, "lb"),
  19264. name: "Front",
  19265. image: {
  19266. source: "./media/characters/tendirmuldr/front.svg",
  19267. extra: 1878 / 1772,
  19268. bottom: 0.015
  19269. }
  19270. },
  19271. },
  19272. [
  19273. {
  19274. name: "Megamacro",
  19275. height: math.unit(1500, "miles"),
  19276. default: true
  19277. },
  19278. ]
  19279. ))
  19280. characterMakers.push(() => makeCharacter(
  19281. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19282. {
  19283. front: {
  19284. height: math.unit(14, "feet"),
  19285. weight: math.unit(12000, "lb"),
  19286. name: "Front",
  19287. image: {
  19288. source: "./media/characters/mort/front.svg",
  19289. extra: 365 / 318,
  19290. bottom: 0.01
  19291. }
  19292. },
  19293. side: {
  19294. height: math.unit(14, "feet"),
  19295. weight: math.unit(12000, "lb"),
  19296. name: "Side",
  19297. image: {
  19298. source: "./media/characters/mort/side.svg",
  19299. extra: 365 / 318,
  19300. bottom: 0.052
  19301. },
  19302. default: true
  19303. },
  19304. back: {
  19305. height: math.unit(14, "feet"),
  19306. weight: math.unit(12000, "lb"),
  19307. name: "Back",
  19308. image: {
  19309. source: "./media/characters/mort/back.svg",
  19310. extra: 371 / 332,
  19311. bottom: 0.18
  19312. }
  19313. },
  19314. },
  19315. [
  19316. {
  19317. name: "Normal",
  19318. height: math.unit(14, "feet"),
  19319. default: true
  19320. },
  19321. ]
  19322. ))
  19323. characterMakers.push(() => makeCharacter(
  19324. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19325. {
  19326. front: {
  19327. height: math.unit(8, "feet"),
  19328. weight: math.unit(1, "ton"),
  19329. name: "Front",
  19330. image: {
  19331. source: "./media/characters/lycoa/front.svg",
  19332. extra: 1875 / 1789,
  19333. bottom: 0.022
  19334. }
  19335. },
  19336. back: {
  19337. height: math.unit(8, "feet"),
  19338. weight: math.unit(1, "ton"),
  19339. name: "Back",
  19340. image: {
  19341. source: "./media/characters/lycoa/back.svg",
  19342. extra: 1835 / 1781,
  19343. bottom: 0.03
  19344. }
  19345. },
  19346. head: {
  19347. height: math.unit(2.1, "feet"),
  19348. name: "Head",
  19349. image: {
  19350. source: "./media/characters/lycoa/head.svg"
  19351. }
  19352. },
  19353. tailmaw: {
  19354. height: math.unit(1.9, "feet"),
  19355. name: "Tailmaw",
  19356. image: {
  19357. source: "./media/characters/lycoa/tailmaw.svg"
  19358. }
  19359. },
  19360. tentacles: {
  19361. height: math.unit(2.1, "feet"),
  19362. name: "Tentacles",
  19363. image: {
  19364. source: "./media/characters/lycoa/tentacles.svg"
  19365. }
  19366. },
  19367. dick: {
  19368. height: math.unit(1.73, "feet"),
  19369. name: "Dick",
  19370. image: {
  19371. source: "./media/characters/lycoa/dick.svg"
  19372. }
  19373. },
  19374. },
  19375. [
  19376. {
  19377. name: "Normal",
  19378. height: math.unit(8, "feet"),
  19379. default: true
  19380. },
  19381. {
  19382. name: "Macro",
  19383. height: math.unit(30, "feet")
  19384. },
  19385. ]
  19386. ))
  19387. characterMakers.push(() => makeCharacter(
  19388. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19389. {
  19390. front: {
  19391. height: math.unit(4 + 2 / 12, "feet"),
  19392. weight: math.unit(70, "lb"),
  19393. name: "Front",
  19394. image: {
  19395. source: "./media/characters/naldara/front.svg",
  19396. extra: 841 / 720,
  19397. bottom: 0.04
  19398. }
  19399. },
  19400. naga: {
  19401. height: math.unit(23, "feet"),
  19402. weight: math.unit(15000, "kg"),
  19403. name: "Naga",
  19404. image: {
  19405. source: "./media/characters/naldara/naga.svg",
  19406. extra: 3290/2959,
  19407. bottom: 124/3432
  19408. }
  19409. },
  19410. },
  19411. [
  19412. {
  19413. name: "Normal",
  19414. height: math.unit(4 + 2 / 12, "feet"),
  19415. default: true
  19416. },
  19417. ]
  19418. ))
  19419. characterMakers.push(() => makeCharacter(
  19420. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19421. {
  19422. front: {
  19423. height: math.unit(13 + 7 / 12, "feet"),
  19424. weight: math.unit(1500, "lb"),
  19425. name: "Front",
  19426. image: {
  19427. source: "./media/characters/briar/front.svg",
  19428. extra: 626 / 596,
  19429. bottom: 0.08
  19430. }
  19431. },
  19432. },
  19433. [
  19434. {
  19435. name: "Normal",
  19436. height: math.unit(13 + 7 / 12, "feet"),
  19437. default: true
  19438. },
  19439. ]
  19440. ))
  19441. characterMakers.push(() => makeCharacter(
  19442. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19443. {
  19444. side: {
  19445. height: math.unit(10, "feet"),
  19446. weight: math.unit(500, "lb"),
  19447. name: "Side",
  19448. image: {
  19449. source: "./media/characters/vanguard/side.svg",
  19450. extra: 502 / 425,
  19451. bottom: 0.087
  19452. }
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Normal",
  19458. height: math.unit(10, "feet"),
  19459. default: true
  19460. },
  19461. ]
  19462. ))
  19463. characterMakers.push(() => makeCharacter(
  19464. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19465. {
  19466. front: {
  19467. height: math.unit(7.5, "feet"),
  19468. weight: math.unit(2, "lb"),
  19469. name: "Front",
  19470. image: {
  19471. source: "./media/characters/artemis/front.svg",
  19472. extra: 1192 / 1075,
  19473. bottom: 0.07
  19474. }
  19475. },
  19476. frontNsfw: {
  19477. height: math.unit(7.5, "feet"),
  19478. weight: math.unit(2, "lb"),
  19479. name: "Front (NSFW)",
  19480. image: {
  19481. source: "./media/characters/artemis/front-nsfw.svg",
  19482. extra: 1192 / 1075,
  19483. bottom: 0.07
  19484. }
  19485. },
  19486. frontNsfwer: {
  19487. height: math.unit(7.5, "feet"),
  19488. weight: math.unit(2, "lb"),
  19489. name: "Front (NSFW-er)",
  19490. image: {
  19491. source: "./media/characters/artemis/front-nsfwer.svg",
  19492. extra: 1192 / 1075,
  19493. bottom: 0.07
  19494. }
  19495. },
  19496. side: {
  19497. height: math.unit(7.5, "feet"),
  19498. weight: math.unit(2, "lb"),
  19499. name: "Side",
  19500. image: {
  19501. source: "./media/characters/artemis/side.svg",
  19502. extra: 1192 / 1075,
  19503. bottom: 0.07
  19504. }
  19505. },
  19506. sideNsfw: {
  19507. height: math.unit(7.5, "feet"),
  19508. weight: math.unit(2, "lb"),
  19509. name: "Side (NSFW)",
  19510. image: {
  19511. source: "./media/characters/artemis/side-nsfw.svg",
  19512. extra: 1192 / 1075,
  19513. bottom: 0.07
  19514. }
  19515. },
  19516. sideNsfwer: {
  19517. height: math.unit(7.5, "feet"),
  19518. weight: math.unit(2, "lb"),
  19519. name: "Side (NSFW-er)",
  19520. image: {
  19521. source: "./media/characters/artemis/side-nsfwer.svg",
  19522. extra: 1192 / 1075,
  19523. bottom: 0.07
  19524. }
  19525. },
  19526. maw: {
  19527. height: math.unit(1.1, "feet"),
  19528. name: "Maw",
  19529. image: {
  19530. source: "./media/characters/artemis/maw.svg"
  19531. }
  19532. },
  19533. stomach: {
  19534. height: math.unit(0.95, "feet"),
  19535. name: "Stomach",
  19536. image: {
  19537. source: "./media/characters/artemis/stomach.svg"
  19538. }
  19539. },
  19540. dickCanine: {
  19541. height: math.unit(1, "feet"),
  19542. name: "Dick (Canine)",
  19543. image: {
  19544. source: "./media/characters/artemis/dick-canine.svg"
  19545. }
  19546. },
  19547. dickEquine: {
  19548. height: math.unit(0.85, "feet"),
  19549. name: "Dick (Equine)",
  19550. image: {
  19551. source: "./media/characters/artemis/dick-equine.svg"
  19552. }
  19553. },
  19554. dickExotic: {
  19555. height: math.unit(0.85, "feet"),
  19556. name: "Dick (Exotic)",
  19557. image: {
  19558. source: "./media/characters/artemis/dick-exotic.svg"
  19559. }
  19560. },
  19561. },
  19562. [
  19563. {
  19564. name: "Normal",
  19565. height: math.unit(7.5, "feet"),
  19566. default: true
  19567. },
  19568. {
  19569. name: "Enlarged",
  19570. height: math.unit(12, "feet")
  19571. },
  19572. ]
  19573. ))
  19574. characterMakers.push(() => makeCharacter(
  19575. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19576. {
  19577. front: {
  19578. height: math.unit(5 + 3 / 12, "feet"),
  19579. weight: math.unit(160, "lb"),
  19580. name: "Front",
  19581. image: {
  19582. source: "./media/characters/kira/front.svg",
  19583. extra: 906 / 786,
  19584. bottom: 0.01
  19585. }
  19586. },
  19587. back: {
  19588. height: math.unit(5 + 3 / 12, "feet"),
  19589. weight: math.unit(160, "lb"),
  19590. name: "Back",
  19591. image: {
  19592. source: "./media/characters/kira/back.svg",
  19593. extra: 882 / 757,
  19594. bottom: 0.005
  19595. }
  19596. },
  19597. frontDressed: {
  19598. height: math.unit(5 + 3 / 12, "feet"),
  19599. weight: math.unit(160, "lb"),
  19600. name: "Front (Dressed)",
  19601. image: {
  19602. source: "./media/characters/kira/front-dressed.svg",
  19603. extra: 906 / 786,
  19604. bottom: 0.01
  19605. }
  19606. },
  19607. beans: {
  19608. height: math.unit(0.92, "feet"),
  19609. name: "Beans",
  19610. image: {
  19611. source: "./media/characters/kira/beans.svg"
  19612. }
  19613. },
  19614. },
  19615. [
  19616. {
  19617. name: "Normal",
  19618. height: math.unit(5 + 3 / 12, "feet"),
  19619. default: true
  19620. },
  19621. ]
  19622. ))
  19623. characterMakers.push(() => makeCharacter(
  19624. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19625. {
  19626. front: {
  19627. height: math.unit(5 + 4 / 12, "feet"),
  19628. weight: math.unit(145, "lb"),
  19629. name: "Front",
  19630. image: {
  19631. source: "./media/characters/scramble/front.svg",
  19632. extra: 763 / 727,
  19633. bottom: 0.05
  19634. }
  19635. },
  19636. back: {
  19637. height: math.unit(5 + 4 / 12, "feet"),
  19638. weight: math.unit(145, "lb"),
  19639. name: "Back",
  19640. image: {
  19641. source: "./media/characters/scramble/back.svg",
  19642. extra: 826 / 737,
  19643. bottom: 0.002
  19644. }
  19645. },
  19646. },
  19647. [
  19648. {
  19649. name: "Normal",
  19650. height: math.unit(5 + 4 / 12, "feet"),
  19651. default: true
  19652. },
  19653. ]
  19654. ))
  19655. characterMakers.push(() => makeCharacter(
  19656. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19657. {
  19658. side: {
  19659. height: math.unit(6 + 2 / 12, "feet"),
  19660. weight: math.unit(190, "lb"),
  19661. name: "Side",
  19662. image: {
  19663. source: "./media/characters/biscuit/side.svg",
  19664. extra: 858 / 791,
  19665. bottom: 0.044
  19666. }
  19667. },
  19668. },
  19669. [
  19670. {
  19671. name: "Normal",
  19672. height: math.unit(6 + 2 / 12, "feet"),
  19673. default: true
  19674. },
  19675. ]
  19676. ))
  19677. characterMakers.push(() => makeCharacter(
  19678. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19679. {
  19680. front: {
  19681. height: math.unit(5 + 2 / 12, "feet"),
  19682. weight: math.unit(120, "lb"),
  19683. name: "Front",
  19684. image: {
  19685. source: "./media/characters/poffin/front.svg",
  19686. extra: 786 / 680,
  19687. bottom: 0.005
  19688. }
  19689. },
  19690. },
  19691. [
  19692. {
  19693. name: "Normal",
  19694. height: math.unit(5 + 2 / 12, "feet"),
  19695. default: true
  19696. },
  19697. ]
  19698. ))
  19699. characterMakers.push(() => makeCharacter(
  19700. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19701. {
  19702. front: {
  19703. height: math.unit(6 + 3 / 12, "feet"),
  19704. weight: math.unit(519, "lb"),
  19705. name: "Front",
  19706. image: {
  19707. source: "./media/characters/dhari/front.svg",
  19708. extra: 1048 / 946,
  19709. bottom: 0.015
  19710. }
  19711. },
  19712. back: {
  19713. height: math.unit(6 + 3 / 12, "feet"),
  19714. weight: math.unit(519, "lb"),
  19715. name: "Back",
  19716. image: {
  19717. source: "./media/characters/dhari/back.svg",
  19718. extra: 1048 / 931,
  19719. bottom: 0.005
  19720. }
  19721. },
  19722. frontDressed: {
  19723. height: math.unit(6 + 3 / 12, "feet"),
  19724. weight: math.unit(519, "lb"),
  19725. name: "Front (Dressed)",
  19726. image: {
  19727. source: "./media/characters/dhari/front-dressed.svg",
  19728. extra: 1713 / 1546,
  19729. bottom: 0.02
  19730. }
  19731. },
  19732. backDressed: {
  19733. height: math.unit(6 + 3 / 12, "feet"),
  19734. weight: math.unit(519, "lb"),
  19735. name: "Back (Dressed)",
  19736. image: {
  19737. source: "./media/characters/dhari/back-dressed.svg",
  19738. extra: 1699 / 1537,
  19739. bottom: 0.01
  19740. }
  19741. },
  19742. maw: {
  19743. height: math.unit(0.95, "feet"),
  19744. name: "Maw",
  19745. image: {
  19746. source: "./media/characters/dhari/maw.svg"
  19747. }
  19748. },
  19749. wereFront: {
  19750. height: math.unit(12 + 8 / 12, "feet"),
  19751. weight: math.unit(4000, "lb"),
  19752. name: "Front (Were)",
  19753. image: {
  19754. source: "./media/characters/dhari/were-front.svg",
  19755. extra: 1065 / 969,
  19756. bottom: 0.015
  19757. }
  19758. },
  19759. wereBack: {
  19760. height: math.unit(12 + 8 / 12, "feet"),
  19761. weight: math.unit(4000, "lb"),
  19762. name: "Back (Were)",
  19763. image: {
  19764. source: "./media/characters/dhari/were-back.svg",
  19765. extra: 1065 / 969,
  19766. bottom: 0.012
  19767. }
  19768. },
  19769. wereMaw: {
  19770. height: math.unit(0.625, "meters"),
  19771. name: "Maw (Were)",
  19772. image: {
  19773. source: "./media/characters/dhari/were-maw.svg"
  19774. }
  19775. },
  19776. },
  19777. [
  19778. {
  19779. name: "Normal",
  19780. height: math.unit(6 + 3 / 12, "feet"),
  19781. default: true
  19782. },
  19783. ]
  19784. ))
  19785. characterMakers.push(() => makeCharacter(
  19786. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19787. {
  19788. anthro: {
  19789. height: math.unit(5 + 7 / 12, "feet"),
  19790. weight: math.unit(175, "lb"),
  19791. name: "Anthro",
  19792. image: {
  19793. source: "./media/characters/rena-dyne/anthro.svg",
  19794. extra: 1849 / 1785,
  19795. bottom: 0.005
  19796. }
  19797. },
  19798. taur: {
  19799. height: math.unit(15 + 6 / 12, "feet"),
  19800. weight: math.unit(8000, "lb"),
  19801. name: "Taur",
  19802. image: {
  19803. source: "./media/characters/rena-dyne/taur.svg",
  19804. extra: 2315 / 2234,
  19805. bottom: 0.033
  19806. }
  19807. },
  19808. },
  19809. [
  19810. {
  19811. name: "Normal",
  19812. height: math.unit(5 + 7 / 12, "feet"),
  19813. default: true
  19814. },
  19815. ]
  19816. ))
  19817. characterMakers.push(() => makeCharacter(
  19818. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19819. {
  19820. front: {
  19821. height: math.unit(8, "feet"),
  19822. weight: math.unit(600, "lb"),
  19823. name: "Front",
  19824. image: {
  19825. source: "./media/characters/weremeep/front.svg",
  19826. extra: 967 / 862,
  19827. bottom: 0.01
  19828. }
  19829. },
  19830. },
  19831. [
  19832. {
  19833. name: "Normal",
  19834. height: math.unit(8, "feet"),
  19835. default: true
  19836. },
  19837. {
  19838. name: "Lorg",
  19839. height: math.unit(12, "feet")
  19840. },
  19841. {
  19842. name: "Oh Lawd She Comin'",
  19843. height: math.unit(20, "feet")
  19844. },
  19845. ]
  19846. ))
  19847. characterMakers.push(() => makeCharacter(
  19848. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19849. {
  19850. front: {
  19851. height: math.unit(4, "feet"),
  19852. weight: math.unit(90, "lb"),
  19853. name: "Front",
  19854. image: {
  19855. source: "./media/characters/reza/front.svg",
  19856. extra: 1183 / 1111,
  19857. bottom: 0.017
  19858. }
  19859. },
  19860. back: {
  19861. height: math.unit(4, "feet"),
  19862. weight: math.unit(90, "lb"),
  19863. name: "Back",
  19864. image: {
  19865. source: "./media/characters/reza/back.svg",
  19866. extra: 1183 / 1111,
  19867. bottom: 0.01
  19868. }
  19869. },
  19870. drake: {
  19871. height: math.unit(30, "feet"),
  19872. weight: math.unit(246960, "lb"),
  19873. name: "Drake",
  19874. image: {
  19875. source: "./media/characters/reza/drake.svg",
  19876. extra: 2350 / 2024,
  19877. bottom: 60.7 / 2403
  19878. }
  19879. },
  19880. },
  19881. [
  19882. {
  19883. name: "Normal",
  19884. height: math.unit(4, "feet"),
  19885. default: true
  19886. },
  19887. ]
  19888. ))
  19889. characterMakers.push(() => makeCharacter(
  19890. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19891. {
  19892. side: {
  19893. height: math.unit(15, "feet"),
  19894. weight: math.unit(14, "tons"),
  19895. name: "Side",
  19896. image: {
  19897. source: "./media/characters/athea/side.svg",
  19898. extra: 960 / 540,
  19899. bottom: 0.003
  19900. }
  19901. },
  19902. sitting: {
  19903. height: math.unit(6 * 2.85, "feet"),
  19904. weight: math.unit(14, "tons"),
  19905. name: "Sitting",
  19906. image: {
  19907. source: "./media/characters/athea/sitting.svg",
  19908. extra: 621 / 581,
  19909. bottom: 0.075
  19910. }
  19911. },
  19912. maw: {
  19913. height: math.unit(7.59498031496063, "feet"),
  19914. name: "Maw",
  19915. image: {
  19916. source: "./media/characters/athea/maw.svg"
  19917. }
  19918. },
  19919. },
  19920. [
  19921. {
  19922. name: "Lap Cat",
  19923. height: math.unit(2.5, "feet")
  19924. },
  19925. {
  19926. name: "Minimacro",
  19927. height: math.unit(15, "feet"),
  19928. default: true
  19929. },
  19930. {
  19931. name: "Macro",
  19932. height: math.unit(120, "feet")
  19933. },
  19934. {
  19935. name: "Macro+",
  19936. height: math.unit(640, "feet")
  19937. },
  19938. {
  19939. name: "Colossus",
  19940. height: math.unit(2.2, "miles")
  19941. },
  19942. ]
  19943. ))
  19944. characterMakers.push(() => makeCharacter(
  19945. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19946. {
  19947. front: {
  19948. height: math.unit(8 + 8 / 12, "feet"),
  19949. weight: math.unit(130, "kg"),
  19950. name: "Front",
  19951. image: {
  19952. source: "./media/characters/seroko/front.svg",
  19953. extra: 1385 / 1280,
  19954. bottom: 0.025
  19955. }
  19956. },
  19957. back: {
  19958. height: math.unit(8 + 8 / 12, "feet"),
  19959. weight: math.unit(130, "kg"),
  19960. name: "Back",
  19961. image: {
  19962. source: "./media/characters/seroko/back.svg",
  19963. extra: 1369 / 1238,
  19964. bottom: 0.018
  19965. }
  19966. },
  19967. frontDressed: {
  19968. height: math.unit(8 + 8 / 12, "feet"),
  19969. weight: math.unit(130, "kg"),
  19970. name: "Front (Dressed)",
  19971. image: {
  19972. source: "./media/characters/seroko/front-dressed.svg",
  19973. extra: 1366 / 1275,
  19974. bottom: 0.03
  19975. }
  19976. },
  19977. },
  19978. [
  19979. {
  19980. name: "Normal",
  19981. height: math.unit(8 + 8 / 12, "feet"),
  19982. default: true
  19983. },
  19984. ]
  19985. ))
  19986. characterMakers.push(() => makeCharacter(
  19987. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19988. {
  19989. front: {
  19990. height: math.unit(5.5, "feet"),
  19991. weight: math.unit(160, "lb"),
  19992. name: "Front",
  19993. image: {
  19994. source: "./media/characters/quatzi/front.svg",
  19995. extra: 2346 / 2242,
  19996. bottom: 0.015
  19997. }
  19998. },
  19999. },
  20000. [
  20001. {
  20002. name: "Normal",
  20003. height: math.unit(5.5, "feet"),
  20004. default: true
  20005. },
  20006. {
  20007. name: "Big",
  20008. height: math.unit(7.7, "feet")
  20009. },
  20010. ]
  20011. ))
  20012. characterMakers.push(() => makeCharacter(
  20013. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20014. {
  20015. front: {
  20016. height: math.unit(5 + 11 / 12, "feet"),
  20017. weight: math.unit(180, "lb"),
  20018. name: "Front",
  20019. image: {
  20020. source: "./media/characters/sen/front.svg",
  20021. extra: 1321 / 1254,
  20022. bottom: 0.015
  20023. }
  20024. },
  20025. side: {
  20026. height: math.unit(5 + 11 / 12, "feet"),
  20027. weight: math.unit(180, "lb"),
  20028. name: "Side",
  20029. image: {
  20030. source: "./media/characters/sen/side.svg",
  20031. extra: 1321 / 1254,
  20032. bottom: 0.007
  20033. }
  20034. },
  20035. back: {
  20036. height: math.unit(5 + 11 / 12, "feet"),
  20037. weight: math.unit(180, "lb"),
  20038. name: "Back",
  20039. image: {
  20040. source: "./media/characters/sen/back.svg",
  20041. extra: 1321 / 1254
  20042. }
  20043. },
  20044. },
  20045. [
  20046. {
  20047. name: "Normal",
  20048. height: math.unit(5 + 11 / 12, "feet"),
  20049. default: true
  20050. },
  20051. ]
  20052. ))
  20053. characterMakers.push(() => makeCharacter(
  20054. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20055. {
  20056. front: {
  20057. height: math.unit(166.6, "cm"),
  20058. weight: math.unit(66.6, "kg"),
  20059. name: "Front",
  20060. image: {
  20061. source: "./media/characters/fruity/front.svg",
  20062. extra: 1510 / 1386,
  20063. bottom: 0.04
  20064. }
  20065. },
  20066. back: {
  20067. height: math.unit(166.6, "cm"),
  20068. weight: math.unit(66.6, "lb"),
  20069. name: "Back",
  20070. image: {
  20071. source: "./media/characters/fruity/back.svg",
  20072. extra: 1563 / 1435,
  20073. bottom: 0.005
  20074. }
  20075. },
  20076. },
  20077. [
  20078. {
  20079. name: "Normal",
  20080. height: math.unit(166.6, "cm"),
  20081. default: true
  20082. },
  20083. {
  20084. name: "Demonic",
  20085. height: math.unit(166.6, "feet")
  20086. },
  20087. ]
  20088. ))
  20089. characterMakers.push(() => makeCharacter(
  20090. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20091. {
  20092. side: {
  20093. height: math.unit(10, "feet"),
  20094. weight: math.unit(500, "lb"),
  20095. name: "Side",
  20096. image: {
  20097. source: "./media/characters/zost/side.svg",
  20098. extra: 966 / 880,
  20099. bottom: 0.075
  20100. }
  20101. },
  20102. mawFront: {
  20103. height: math.unit(1.08, "meters"),
  20104. name: "Maw (Front)",
  20105. image: {
  20106. source: "./media/characters/zost/maw-front.svg"
  20107. }
  20108. },
  20109. mawSide: {
  20110. height: math.unit(2.66, "feet"),
  20111. name: "Maw (Side)",
  20112. image: {
  20113. source: "./media/characters/zost/maw-side.svg"
  20114. }
  20115. },
  20116. },
  20117. [
  20118. {
  20119. name: "Normal",
  20120. height: math.unit(10, "feet"),
  20121. default: true
  20122. },
  20123. ]
  20124. ))
  20125. characterMakers.push(() => makeCharacter(
  20126. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20127. {
  20128. front: {
  20129. height: math.unit(5 + 4 / 12, "feet"),
  20130. weight: math.unit(120, "lb"),
  20131. name: "Front",
  20132. image: {
  20133. source: "./media/characters/luci/front.svg",
  20134. extra: 1985 / 1884,
  20135. bottom: 0.04
  20136. }
  20137. },
  20138. back: {
  20139. height: math.unit(5 + 4 / 12, "feet"),
  20140. weight: math.unit(120, "lb"),
  20141. name: "Back",
  20142. image: {
  20143. source: "./media/characters/luci/back.svg",
  20144. extra: 1892 / 1791,
  20145. bottom: 0.002
  20146. }
  20147. },
  20148. },
  20149. [
  20150. {
  20151. name: "Normal",
  20152. height: math.unit(5 + 4 / 12, "feet"),
  20153. default: true
  20154. },
  20155. ]
  20156. ))
  20157. characterMakers.push(() => makeCharacter(
  20158. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20159. {
  20160. front: {
  20161. height: math.unit(1500, "feet"),
  20162. weight: math.unit(3.8e6, "tons"),
  20163. name: "Front",
  20164. image: {
  20165. source: "./media/characters/2th/front.svg",
  20166. extra: 3489 / 3350,
  20167. bottom: 0.1
  20168. }
  20169. },
  20170. foot: {
  20171. height: math.unit(461, "feet"),
  20172. name: "Foot",
  20173. image: {
  20174. source: "./media/characters/2th/foot.svg"
  20175. }
  20176. },
  20177. },
  20178. [
  20179. {
  20180. name: "\"Micro\"",
  20181. height: math.unit(15 + 7 / 12, "feet")
  20182. },
  20183. {
  20184. name: "Normal",
  20185. height: math.unit(1500, "feet"),
  20186. default: true
  20187. },
  20188. {
  20189. name: "Macro",
  20190. height: math.unit(5000, "feet")
  20191. },
  20192. {
  20193. name: "Megamacro",
  20194. height: math.unit(15, "miles")
  20195. },
  20196. {
  20197. name: "Gigamacro",
  20198. height: math.unit(4000, "miles")
  20199. },
  20200. {
  20201. name: "Galactic",
  20202. height: math.unit(50, "AU")
  20203. },
  20204. ]
  20205. ))
  20206. characterMakers.push(() => makeCharacter(
  20207. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20208. {
  20209. front: {
  20210. height: math.unit(5 + 6 / 12, "feet"),
  20211. weight: math.unit(220, "lb"),
  20212. name: "Front",
  20213. image: {
  20214. source: "./media/characters/amethyst/front.svg",
  20215. extra: 2078 / 2040,
  20216. bottom: 0.045
  20217. }
  20218. },
  20219. back: {
  20220. height: math.unit(5 + 6 / 12, "feet"),
  20221. weight: math.unit(220, "lb"),
  20222. name: "Back",
  20223. image: {
  20224. source: "./media/characters/amethyst/back.svg",
  20225. extra: 2021 / 1989,
  20226. bottom: 0.02
  20227. }
  20228. },
  20229. },
  20230. [
  20231. {
  20232. name: "Normal",
  20233. height: math.unit(5 + 6 / 12, "feet"),
  20234. default: true
  20235. },
  20236. ]
  20237. ))
  20238. characterMakers.push(() => makeCharacter(
  20239. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20240. {
  20241. front: {
  20242. height: math.unit(4 + 11 / 12, "feet"),
  20243. weight: math.unit(120, "lb"),
  20244. name: "Front",
  20245. image: {
  20246. source: "./media/characters/yumi-akiyama/front.svg",
  20247. extra: 1327 / 1235,
  20248. bottom: 0.02
  20249. }
  20250. },
  20251. back: {
  20252. height: math.unit(4 + 11 / 12, "feet"),
  20253. weight: math.unit(120, "lb"),
  20254. name: "Back",
  20255. image: {
  20256. source: "./media/characters/yumi-akiyama/back.svg",
  20257. extra: 1287 / 1245,
  20258. bottom: 0.002
  20259. }
  20260. },
  20261. },
  20262. [
  20263. {
  20264. name: "Galactic",
  20265. height: math.unit(50, "galaxies"),
  20266. default: true
  20267. },
  20268. {
  20269. name: "Universal",
  20270. height: math.unit(100, "universes")
  20271. },
  20272. ]
  20273. ))
  20274. characterMakers.push(() => makeCharacter(
  20275. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20276. {
  20277. front: {
  20278. height: math.unit(8, "feet"),
  20279. weight: math.unit(500, "lb"),
  20280. name: "Front",
  20281. image: {
  20282. source: "./media/characters/rifter-yrmori/front.svg",
  20283. extra: 1180 / 1125,
  20284. bottom: 0.02
  20285. }
  20286. },
  20287. back: {
  20288. height: math.unit(8, "feet"),
  20289. weight: math.unit(500, "lb"),
  20290. name: "Back",
  20291. image: {
  20292. source: "./media/characters/rifter-yrmori/back.svg",
  20293. extra: 1190 / 1145,
  20294. bottom: 0.001
  20295. }
  20296. },
  20297. wings: {
  20298. height: math.unit(7.75, "feet"),
  20299. weight: math.unit(500, "lb"),
  20300. name: "Wings",
  20301. image: {
  20302. source: "./media/characters/rifter-yrmori/wings.svg",
  20303. extra: 1357 / 1285
  20304. }
  20305. },
  20306. maw: {
  20307. height: math.unit(0.8, "feet"),
  20308. name: "Maw",
  20309. image: {
  20310. source: "./media/characters/rifter-yrmori/maw.svg"
  20311. }
  20312. },
  20313. mawfront: {
  20314. height: math.unit(1.45, "feet"),
  20315. name: "Maw (Front)",
  20316. image: {
  20317. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20318. }
  20319. },
  20320. },
  20321. [
  20322. {
  20323. name: "Normal",
  20324. height: math.unit(8, "feet"),
  20325. default: true
  20326. },
  20327. {
  20328. name: "Macro",
  20329. height: math.unit(42, "meters")
  20330. },
  20331. ]
  20332. ))
  20333. characterMakers.push(() => makeCharacter(
  20334. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20335. {
  20336. were: {
  20337. height: math.unit(25 + 6 / 12, "feet"),
  20338. weight: math.unit(10000, "lb"),
  20339. name: "Were",
  20340. image: {
  20341. source: "./media/characters/tahajin/were.svg",
  20342. extra: 801 / 770,
  20343. bottom: 0.042
  20344. }
  20345. },
  20346. aquatic: {
  20347. height: math.unit(6 + 4 / 12, "feet"),
  20348. weight: math.unit(160, "lb"),
  20349. name: "Aquatic",
  20350. image: {
  20351. source: "./media/characters/tahajin/aquatic.svg",
  20352. extra: 572 / 542,
  20353. bottom: 0.04
  20354. }
  20355. },
  20356. chow: {
  20357. height: math.unit(8 + 11 / 12, "feet"),
  20358. weight: math.unit(450, "lb"),
  20359. name: "Chow",
  20360. image: {
  20361. source: "./media/characters/tahajin/chow.svg",
  20362. extra: 660 / 640,
  20363. bottom: 0.015
  20364. }
  20365. },
  20366. demiNaga: {
  20367. height: math.unit(6 + 8 / 12, "feet"),
  20368. weight: math.unit(300, "lb"),
  20369. name: "Demi Naga",
  20370. image: {
  20371. source: "./media/characters/tahajin/demi-naga.svg",
  20372. extra: 643 / 615,
  20373. bottom: 0.1
  20374. }
  20375. },
  20376. data: {
  20377. height: math.unit(5, "inches"),
  20378. weight: math.unit(0.1, "lb"),
  20379. name: "Data",
  20380. image: {
  20381. source: "./media/characters/tahajin/data.svg"
  20382. }
  20383. },
  20384. fluu: {
  20385. height: math.unit(5 + 7 / 12, "feet"),
  20386. weight: math.unit(140, "lb"),
  20387. name: "Fluu",
  20388. image: {
  20389. source: "./media/characters/tahajin/fluu.svg",
  20390. extra: 628 / 592,
  20391. bottom: 0.02
  20392. }
  20393. },
  20394. starWarrior: {
  20395. height: math.unit(4 + 5 / 12, "feet"),
  20396. weight: math.unit(50, "lb"),
  20397. name: "Star Warrior",
  20398. image: {
  20399. source: "./media/characters/tahajin/star-warrior.svg"
  20400. }
  20401. },
  20402. },
  20403. [
  20404. {
  20405. name: "Normal",
  20406. height: math.unit(25 + 6 / 12, "feet"),
  20407. default: true
  20408. },
  20409. ]
  20410. ))
  20411. characterMakers.push(() => makeCharacter(
  20412. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20413. {
  20414. front: {
  20415. height: math.unit(8, "feet"),
  20416. weight: math.unit(350, "lb"),
  20417. name: "Front",
  20418. image: {
  20419. source: "./media/characters/gabira/front.svg",
  20420. extra: 608 / 580,
  20421. bottom: 0.03
  20422. }
  20423. },
  20424. back: {
  20425. height: math.unit(8, "feet"),
  20426. weight: math.unit(350, "lb"),
  20427. name: "Back",
  20428. image: {
  20429. source: "./media/characters/gabira/back.svg",
  20430. extra: 608 / 580,
  20431. bottom: 0.03
  20432. }
  20433. },
  20434. },
  20435. [
  20436. {
  20437. name: "Normal",
  20438. height: math.unit(8, "feet"),
  20439. default: true
  20440. },
  20441. ]
  20442. ))
  20443. characterMakers.push(() => makeCharacter(
  20444. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20445. {
  20446. front: {
  20447. height: math.unit(5 + 3 / 12, "feet"),
  20448. weight: math.unit(137, "lb"),
  20449. name: "Front",
  20450. image: {
  20451. source: "./media/characters/sasha-katraine/front.svg",
  20452. bottom: 0.045
  20453. }
  20454. },
  20455. },
  20456. [
  20457. {
  20458. name: "Micro",
  20459. height: math.unit(5, "inches")
  20460. },
  20461. {
  20462. name: "Normal",
  20463. height: math.unit(5 + 3 / 12, "feet"),
  20464. default: true
  20465. },
  20466. ]
  20467. ))
  20468. characterMakers.push(() => makeCharacter(
  20469. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20470. {
  20471. side: {
  20472. height: math.unit(4, "inches"),
  20473. weight: math.unit(200, "grams"),
  20474. name: "Side",
  20475. image: {
  20476. source: "./media/characters/der/side.svg",
  20477. extra: 719 / 400,
  20478. bottom: 30.6 / 749.9187
  20479. }
  20480. },
  20481. },
  20482. [
  20483. {
  20484. name: "Micro",
  20485. height: math.unit(4, "inches"),
  20486. default: true
  20487. },
  20488. ]
  20489. ))
  20490. characterMakers.push(() => makeCharacter(
  20491. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20492. {
  20493. side: {
  20494. height: math.unit(30, "meters"),
  20495. weight: math.unit(700, "tonnes"),
  20496. name: "Side",
  20497. image: {
  20498. source: "./media/characters/fixerdragon/side.svg",
  20499. extra: (1293.0514 - 116.03) / 1106.86,
  20500. bottom: 116.03 / 1293.0514
  20501. }
  20502. },
  20503. },
  20504. [
  20505. {
  20506. name: "Planck",
  20507. height: math.unit(1.6e-35, "meters")
  20508. },
  20509. {
  20510. name: "Micro",
  20511. height: math.unit(0.4, "meters")
  20512. },
  20513. {
  20514. name: "Normal",
  20515. height: math.unit(30, "meters"),
  20516. default: true
  20517. },
  20518. {
  20519. name: "Megamacro",
  20520. height: math.unit(1.2, "megameters")
  20521. },
  20522. {
  20523. name: "Teramacro",
  20524. height: math.unit(130, "terameters")
  20525. },
  20526. {
  20527. name: "Yottamacro",
  20528. height: math.unit(6200, "yottameters")
  20529. },
  20530. ]
  20531. ));
  20532. characterMakers.push(() => makeCharacter(
  20533. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20534. {
  20535. front: {
  20536. height: math.unit(8, "feet"),
  20537. weight: math.unit(250, "lb"),
  20538. name: "Front",
  20539. image: {
  20540. source: "./media/characters/kite/front.svg",
  20541. extra: 2796 / 2659,
  20542. bottom: 0.002
  20543. }
  20544. },
  20545. },
  20546. [
  20547. {
  20548. name: "Normal",
  20549. height: math.unit(8, "feet"),
  20550. default: true
  20551. },
  20552. {
  20553. name: "Macro",
  20554. height: math.unit(360, "feet")
  20555. },
  20556. {
  20557. name: "Megamacro",
  20558. height: math.unit(1500, "feet")
  20559. },
  20560. ]
  20561. ))
  20562. characterMakers.push(() => makeCharacter(
  20563. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20564. {
  20565. front: {
  20566. height: math.unit(5 + 10 / 12, "feet"),
  20567. weight: math.unit(150, "lb"),
  20568. name: "Front",
  20569. image: {
  20570. source: "./media/characters/poojawa-vynar/front.svg",
  20571. extra: (1506.1547 - 55) / 1356.6,
  20572. bottom: 55 / 1506.1547
  20573. }
  20574. },
  20575. frontTailless: {
  20576. height: math.unit(5 + 10 / 12, "feet"),
  20577. weight: math.unit(150, "lb"),
  20578. name: "Front (Tailless)",
  20579. image: {
  20580. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20581. extra: (1506.1547 - 55) / 1356.6,
  20582. bottom: 55 / 1506.1547
  20583. }
  20584. },
  20585. },
  20586. [
  20587. {
  20588. name: "Normal",
  20589. height: math.unit(5 + 10 / 12, "feet"),
  20590. default: true
  20591. },
  20592. ]
  20593. ))
  20594. characterMakers.push(() => makeCharacter(
  20595. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20596. {
  20597. front: {
  20598. height: math.unit(293, "meters"),
  20599. weight: math.unit(70400, "tons"),
  20600. name: "Front",
  20601. image: {
  20602. source: "./media/characters/violette/front.svg",
  20603. extra: 1227 / 1180,
  20604. bottom: 0.005
  20605. }
  20606. },
  20607. back: {
  20608. height: math.unit(293, "meters"),
  20609. weight: math.unit(70400, "tons"),
  20610. name: "Back",
  20611. image: {
  20612. source: "./media/characters/violette/back.svg",
  20613. extra: 1227 / 1180,
  20614. bottom: 0.005
  20615. }
  20616. },
  20617. },
  20618. [
  20619. {
  20620. name: "Macro",
  20621. height: math.unit(293, "meters"),
  20622. default: true
  20623. },
  20624. ]
  20625. ))
  20626. characterMakers.push(() => makeCharacter(
  20627. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20628. {
  20629. front: {
  20630. height: math.unit(1050, "feet"),
  20631. weight: math.unit(200000, "tons"),
  20632. name: "Front",
  20633. image: {
  20634. source: "./media/characters/alessandra/front.svg",
  20635. extra: 960 / 912,
  20636. bottom: 0.06
  20637. }
  20638. },
  20639. },
  20640. [
  20641. {
  20642. name: "Macro",
  20643. height: math.unit(1050, "feet")
  20644. },
  20645. {
  20646. name: "Macro+",
  20647. height: math.unit(900, "meters"),
  20648. default: true
  20649. },
  20650. ]
  20651. ))
  20652. characterMakers.push(() => makeCharacter(
  20653. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20654. {
  20655. front: {
  20656. height: math.unit(5, "feet"),
  20657. weight: math.unit(187, "lb"),
  20658. name: "Front",
  20659. image: {
  20660. source: "./media/characters/person/front.svg",
  20661. extra: 3087 / 2945,
  20662. bottom: 91 / 3181
  20663. }
  20664. },
  20665. },
  20666. [
  20667. {
  20668. name: "Micro",
  20669. height: math.unit(3, "inches")
  20670. },
  20671. {
  20672. name: "Normal",
  20673. height: math.unit(5, "feet"),
  20674. default: true
  20675. },
  20676. {
  20677. name: "Macro",
  20678. height: math.unit(90, "feet")
  20679. },
  20680. {
  20681. name: "Max Size",
  20682. height: math.unit(280, "feet")
  20683. },
  20684. ]
  20685. ))
  20686. characterMakers.push(() => makeCharacter(
  20687. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20688. {
  20689. front: {
  20690. height: math.unit(4.5, "meters"),
  20691. weight: math.unit(3200, "lb"),
  20692. name: "Front",
  20693. image: {
  20694. source: "./media/characters/ty/front.svg",
  20695. extra: 1038 / 960,
  20696. bottom: 31.156 / 1068
  20697. }
  20698. },
  20699. back: {
  20700. height: math.unit(4.5, "meters"),
  20701. weight: math.unit(3200, "lb"),
  20702. name: "Back",
  20703. image: {
  20704. source: "./media/characters/ty/back.svg",
  20705. extra: 1044 / 966,
  20706. bottom: 7.48 / 1049
  20707. }
  20708. },
  20709. },
  20710. [
  20711. {
  20712. name: "Normal",
  20713. height: math.unit(4.5, "meters"),
  20714. default: true
  20715. },
  20716. ]
  20717. ))
  20718. characterMakers.push(() => makeCharacter(
  20719. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20720. {
  20721. front: {
  20722. height: math.unit(5 + 4 / 12, "feet"),
  20723. weight: math.unit(115, "lb"),
  20724. name: "Front",
  20725. image: {
  20726. source: "./media/characters/rocky/front.svg",
  20727. extra: 1012 / 975,
  20728. bottom: 54 / 1066
  20729. }
  20730. },
  20731. },
  20732. [
  20733. {
  20734. name: "Normal",
  20735. height: math.unit(5 + 4 / 12, "feet"),
  20736. default: true
  20737. },
  20738. ]
  20739. ))
  20740. characterMakers.push(() => makeCharacter(
  20741. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20742. {
  20743. upright: {
  20744. height: math.unit(6, "meters"),
  20745. weight: math.unit(4000, "kg"),
  20746. name: "Upright",
  20747. image: {
  20748. source: "./media/characters/ruin/upright.svg",
  20749. extra: 668 / 661,
  20750. bottom: 42 / 799.8396
  20751. }
  20752. },
  20753. },
  20754. [
  20755. {
  20756. name: "Normal",
  20757. height: math.unit(6, "meters"),
  20758. default: true
  20759. },
  20760. ]
  20761. ))
  20762. characterMakers.push(() => makeCharacter(
  20763. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20764. {
  20765. front: {
  20766. height: math.unit(5, "feet"),
  20767. weight: math.unit(106, "lb"),
  20768. name: "Front",
  20769. image: {
  20770. source: "./media/characters/robin/front.svg",
  20771. extra: 862 / 799,
  20772. bottom: 42.4 / 914.8856
  20773. }
  20774. },
  20775. },
  20776. [
  20777. {
  20778. name: "Normal",
  20779. height: math.unit(5, "feet"),
  20780. default: true
  20781. },
  20782. ]
  20783. ))
  20784. characterMakers.push(() => makeCharacter(
  20785. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20786. {
  20787. side: {
  20788. height: math.unit(3, "feet"),
  20789. weight: math.unit(225, "lb"),
  20790. name: "Side",
  20791. image: {
  20792. source: "./media/characters/saian/side.svg",
  20793. extra: 566 / 356,
  20794. bottom: 79.7 / 643
  20795. }
  20796. },
  20797. maw: {
  20798. height: math.unit(2.85, "feet"),
  20799. name: "Maw",
  20800. image: {
  20801. source: "./media/characters/saian/maw.svg"
  20802. }
  20803. },
  20804. },
  20805. [
  20806. {
  20807. name: "Normal",
  20808. height: math.unit(3, "feet"),
  20809. default: true
  20810. },
  20811. ]
  20812. ))
  20813. characterMakers.push(() => makeCharacter(
  20814. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20815. {
  20816. side: {
  20817. height: math.unit(8, "feet"),
  20818. weight: math.unit(300, "lb"),
  20819. name: "Side",
  20820. image: {
  20821. source: "./media/characters/equus-silvermane/side.svg",
  20822. extra: 2176 / 2050,
  20823. bottom: 65.7 / 2245
  20824. }
  20825. },
  20826. front: {
  20827. height: math.unit(8, "feet"),
  20828. weight: math.unit(300, "lb"),
  20829. name: "Front",
  20830. image: {
  20831. source: "./media/characters/equus-silvermane/front.svg",
  20832. extra: 4633 / 4400,
  20833. bottom: 71.3 / 4706.915
  20834. }
  20835. },
  20836. sideStepping: {
  20837. height: math.unit(8, "feet"),
  20838. weight: math.unit(300, "lb"),
  20839. name: "Side (Stepping)",
  20840. image: {
  20841. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20842. extra: 1968 / 1860,
  20843. bottom: 16.4 / 1989
  20844. }
  20845. },
  20846. },
  20847. [
  20848. {
  20849. name: "Normal",
  20850. height: math.unit(8, "feet")
  20851. },
  20852. {
  20853. name: "Minimacro",
  20854. height: math.unit(75, "feet"),
  20855. default: true
  20856. },
  20857. {
  20858. name: "Macro",
  20859. height: math.unit(150, "feet")
  20860. },
  20861. {
  20862. name: "Macro+",
  20863. height: math.unit(1000, "feet")
  20864. },
  20865. {
  20866. name: "Megamacro",
  20867. height: math.unit(1, "mile")
  20868. },
  20869. ]
  20870. ))
  20871. characterMakers.push(() => makeCharacter(
  20872. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20873. {
  20874. side: {
  20875. height: math.unit(20, "feet"),
  20876. weight: math.unit(30000, "kg"),
  20877. name: "Side",
  20878. image: {
  20879. source: "./media/characters/windar/side.svg",
  20880. extra: 1491 / 1248,
  20881. bottom: 82.56 / 1568
  20882. }
  20883. },
  20884. },
  20885. [
  20886. {
  20887. name: "Normal",
  20888. height: math.unit(20, "feet"),
  20889. default: true
  20890. },
  20891. ]
  20892. ))
  20893. characterMakers.push(() => makeCharacter(
  20894. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20895. {
  20896. side: {
  20897. height: math.unit(15.66, "feet"),
  20898. weight: math.unit(150, "lb"),
  20899. name: "Side",
  20900. image: {
  20901. source: "./media/characters/melody/side.svg",
  20902. extra: 1097 / 944,
  20903. bottom: 11.8 / 1109
  20904. }
  20905. },
  20906. sideOutfit: {
  20907. height: math.unit(15.66, "feet"),
  20908. weight: math.unit(150, "lb"),
  20909. name: "Side (Outfit)",
  20910. image: {
  20911. source: "./media/characters/melody/side-outfit.svg",
  20912. extra: 1097 / 944,
  20913. bottom: 11.8 / 1109
  20914. }
  20915. },
  20916. },
  20917. [
  20918. {
  20919. name: "Normal",
  20920. height: math.unit(15.66, "feet"),
  20921. default: true
  20922. },
  20923. ]
  20924. ))
  20925. characterMakers.push(() => makeCharacter(
  20926. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20927. {
  20928. front: {
  20929. height: math.unit(8, "feet"),
  20930. weight: math.unit(325, "lb"),
  20931. name: "Front",
  20932. image: {
  20933. source: "./media/characters/windera/front.svg",
  20934. extra: 3180 / 2845,
  20935. bottom: 178 / 3365
  20936. }
  20937. },
  20938. },
  20939. [
  20940. {
  20941. name: "Normal",
  20942. height: math.unit(8, "feet"),
  20943. default: true
  20944. },
  20945. ]
  20946. ))
  20947. characterMakers.push(() => makeCharacter(
  20948. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20949. {
  20950. front: {
  20951. height: math.unit(28.75, "feet"),
  20952. weight: math.unit(2000, "kg"),
  20953. name: "Front",
  20954. image: {
  20955. source: "./media/characters/sonear/front.svg",
  20956. extra: 1041.1 / 964.9,
  20957. bottom: 53.7 / 1096.6
  20958. }
  20959. },
  20960. },
  20961. [
  20962. {
  20963. name: "Normal",
  20964. height: math.unit(28.75, "feet"),
  20965. default: true
  20966. },
  20967. ]
  20968. ))
  20969. characterMakers.push(() => makeCharacter(
  20970. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20971. {
  20972. side: {
  20973. height: math.unit(25.5, "feet"),
  20974. weight: math.unit(23000, "kg"),
  20975. name: "Side",
  20976. image: {
  20977. source: "./media/characters/kanara/side.svg"
  20978. }
  20979. },
  20980. },
  20981. [
  20982. {
  20983. name: "Normal",
  20984. height: math.unit(25.5, "feet"),
  20985. default: true
  20986. },
  20987. ]
  20988. ))
  20989. characterMakers.push(() => makeCharacter(
  20990. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20991. {
  20992. side: {
  20993. height: math.unit(10, "feet"),
  20994. weight: math.unit(1000, "kg"),
  20995. name: "Side",
  20996. image: {
  20997. source: "./media/characters/ereus/side.svg",
  20998. extra: 1157 / 959,
  20999. bottom: 153 / 1312.5
  21000. }
  21001. },
  21002. },
  21003. [
  21004. {
  21005. name: "Normal",
  21006. height: math.unit(10, "feet"),
  21007. default: true
  21008. },
  21009. ]
  21010. ))
  21011. characterMakers.push(() => makeCharacter(
  21012. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21013. {
  21014. side: {
  21015. height: math.unit(4.5, "feet"),
  21016. weight: math.unit(500, "lb"),
  21017. name: "Side",
  21018. image: {
  21019. source: "./media/characters/e-ter/side.svg",
  21020. extra: 1550 / 1248,
  21021. bottom: 146 / 1694
  21022. }
  21023. },
  21024. },
  21025. [
  21026. {
  21027. name: "Normal",
  21028. height: math.unit(4.5, "feet"),
  21029. default: true
  21030. },
  21031. ]
  21032. ))
  21033. characterMakers.push(() => makeCharacter(
  21034. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21035. {
  21036. side: {
  21037. height: math.unit(9.7, "feet"),
  21038. weight: math.unit(4000, "kg"),
  21039. name: "Side",
  21040. image: {
  21041. source: "./media/characters/yamie/side.svg"
  21042. }
  21043. },
  21044. },
  21045. [
  21046. {
  21047. name: "Normal",
  21048. height: math.unit(9.7, "feet"),
  21049. default: true
  21050. },
  21051. ]
  21052. ))
  21053. characterMakers.push(() => makeCharacter(
  21054. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21055. {
  21056. front: {
  21057. height: math.unit(50, "feet"),
  21058. weight: math.unit(50000, "kg"),
  21059. name: "Front",
  21060. image: {
  21061. source: "./media/characters/anders/front.svg",
  21062. extra: 570 / 539,
  21063. bottom: 14.7 / 586.7
  21064. }
  21065. },
  21066. },
  21067. [
  21068. {
  21069. name: "Large",
  21070. height: math.unit(50, "feet")
  21071. },
  21072. {
  21073. name: "Macro",
  21074. height: math.unit(2000, "feet"),
  21075. default: true
  21076. },
  21077. {
  21078. name: "Megamacro",
  21079. height: math.unit(12, "miles")
  21080. },
  21081. ]
  21082. ))
  21083. characterMakers.push(() => makeCharacter(
  21084. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21085. {
  21086. front: {
  21087. height: math.unit(7 + 2 / 12, "feet"),
  21088. weight: math.unit(300, "lb"),
  21089. name: "Front",
  21090. image: {
  21091. source: "./media/characters/reban/front.svg",
  21092. extra: 516 / 487,
  21093. bottom: 42.82 / 558.356
  21094. }
  21095. },
  21096. dick: {
  21097. height: math.unit(7 / 5, "feet"),
  21098. name: "Dick",
  21099. image: {
  21100. source: "./media/characters/reban/dick.svg"
  21101. }
  21102. },
  21103. },
  21104. [
  21105. {
  21106. name: "Natural Height",
  21107. height: math.unit(7 + 2 / 12, "feet")
  21108. },
  21109. {
  21110. name: "Macro",
  21111. height: math.unit(500, "feet"),
  21112. default: true
  21113. },
  21114. {
  21115. name: "Canon Height",
  21116. height: math.unit(50, "AU")
  21117. },
  21118. ]
  21119. ))
  21120. characterMakers.push(() => makeCharacter(
  21121. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21122. {
  21123. front: {
  21124. height: math.unit(6, "feet"),
  21125. weight: math.unit(150, "lb"),
  21126. name: "Front",
  21127. image: {
  21128. source: "./media/characters/terrance-keayes/front.svg",
  21129. extra: 1.005,
  21130. bottom: 151 / 1615
  21131. }
  21132. },
  21133. side: {
  21134. height: math.unit(6, "feet"),
  21135. weight: math.unit(150, "lb"),
  21136. name: "Side",
  21137. image: {
  21138. source: "./media/characters/terrance-keayes/side.svg",
  21139. extra: 1.005,
  21140. bottom: 129.4 / 1544
  21141. }
  21142. },
  21143. back: {
  21144. height: math.unit(6, "feet"),
  21145. weight: math.unit(150, "lb"),
  21146. name: "Back",
  21147. image: {
  21148. source: "./media/characters/terrance-keayes/back.svg",
  21149. extra: 1.005,
  21150. bottom: 58.4 / 1557.3
  21151. }
  21152. },
  21153. dick: {
  21154. height: math.unit(6 * 0.208, "feet"),
  21155. name: "Dick",
  21156. image: {
  21157. source: "./media/characters/terrance-keayes/dick.svg"
  21158. }
  21159. },
  21160. },
  21161. [
  21162. {
  21163. name: "Canon Height",
  21164. height: math.unit(35, "miles"),
  21165. default: true
  21166. },
  21167. ]
  21168. ))
  21169. characterMakers.push(() => makeCharacter(
  21170. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21171. {
  21172. front: {
  21173. height: math.unit(6, "feet"),
  21174. weight: math.unit(150, "lb"),
  21175. name: "Front",
  21176. image: {
  21177. source: "./media/characters/ofelia/front.svg",
  21178. extra: 546 / 541,
  21179. bottom: 39 / 583
  21180. }
  21181. },
  21182. back: {
  21183. height: math.unit(6, "feet"),
  21184. weight: math.unit(150, "lb"),
  21185. name: "Back",
  21186. image: {
  21187. source: "./media/characters/ofelia/back.svg",
  21188. extra: 564 / 559.5,
  21189. bottom: 8.69 / 573.02
  21190. }
  21191. },
  21192. maw: {
  21193. height: math.unit(1, "feet"),
  21194. name: "Maw",
  21195. image: {
  21196. source: "./media/characters/ofelia/maw.svg"
  21197. }
  21198. },
  21199. foot: {
  21200. height: math.unit(1.949, "feet"),
  21201. name: "Foot",
  21202. image: {
  21203. source: "./media/characters/ofelia/foot.svg"
  21204. }
  21205. },
  21206. },
  21207. [
  21208. {
  21209. name: "Canon Height",
  21210. height: math.unit(2000, "miles"),
  21211. default: true
  21212. },
  21213. ]
  21214. ))
  21215. characterMakers.push(() => makeCharacter(
  21216. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21217. {
  21218. front: {
  21219. height: math.unit(6, "feet"),
  21220. weight: math.unit(150, "lb"),
  21221. name: "Front",
  21222. image: {
  21223. source: "./media/characters/samuel/front.svg",
  21224. extra: 265 / 258,
  21225. bottom: 2 / 266.1566
  21226. }
  21227. },
  21228. },
  21229. [
  21230. {
  21231. name: "Macro",
  21232. height: math.unit(100, "feet"),
  21233. default: true
  21234. },
  21235. {
  21236. name: "Full Size",
  21237. height: math.unit(1000, "miles")
  21238. },
  21239. ]
  21240. ))
  21241. characterMakers.push(() => makeCharacter(
  21242. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21243. {
  21244. front: {
  21245. height: math.unit(6, "feet"),
  21246. weight: math.unit(300, "lb"),
  21247. name: "Front",
  21248. image: {
  21249. source: "./media/characters/beishir-kiel/front.svg",
  21250. extra: 569 / 547,
  21251. bottom: 41.9 / 609
  21252. }
  21253. },
  21254. maw: {
  21255. height: math.unit(6 * 0.202, "feet"),
  21256. name: "Maw",
  21257. image: {
  21258. source: "./media/characters/beishir-kiel/maw.svg"
  21259. }
  21260. },
  21261. },
  21262. [
  21263. {
  21264. name: "Macro",
  21265. height: math.unit(300, "feet"),
  21266. default: true
  21267. },
  21268. ]
  21269. ))
  21270. characterMakers.push(() => makeCharacter(
  21271. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21272. {
  21273. front: {
  21274. height: math.unit(5 + 8 / 12, "feet"),
  21275. weight: math.unit(120, "lb"),
  21276. name: "Front",
  21277. image: {
  21278. source: "./media/characters/logan-grey/front.svg",
  21279. extra: 2539 / 2393,
  21280. bottom: 97.6 / 2636.37
  21281. }
  21282. },
  21283. frontAlt: {
  21284. height: math.unit(5 + 8 / 12, "feet"),
  21285. weight: math.unit(120, "lb"),
  21286. name: "Front (Alt)",
  21287. image: {
  21288. source: "./media/characters/logan-grey/front-alt.svg",
  21289. extra: 958 / 893,
  21290. bottom: 15 / 970.768
  21291. }
  21292. },
  21293. back: {
  21294. height: math.unit(5 + 8 / 12, "feet"),
  21295. weight: math.unit(120, "lb"),
  21296. name: "Back",
  21297. image: {
  21298. source: "./media/characters/logan-grey/back.svg",
  21299. extra: 958 / 893,
  21300. bottom: 2.1881 / 970.9788
  21301. }
  21302. },
  21303. dick: {
  21304. height: math.unit(1.437, "feet"),
  21305. name: "Dick",
  21306. image: {
  21307. source: "./media/characters/logan-grey/dick.svg"
  21308. }
  21309. },
  21310. },
  21311. [
  21312. {
  21313. name: "Normal",
  21314. height: math.unit(5 + 8 / 12, "feet")
  21315. },
  21316. {
  21317. name: "The 500 Foot Femboy",
  21318. height: math.unit(500, "feet"),
  21319. default: true
  21320. },
  21321. {
  21322. name: "Megmacro",
  21323. height: math.unit(20, "miles")
  21324. },
  21325. ]
  21326. ))
  21327. characterMakers.push(() => makeCharacter(
  21328. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21329. {
  21330. front: {
  21331. height: math.unit(8 + 2 / 12, "feet"),
  21332. weight: math.unit(275, "lb"),
  21333. name: "Front",
  21334. image: {
  21335. source: "./media/characters/draganta/front.svg",
  21336. extra: 1177 / 1135,
  21337. bottom: 33.46 / 1212.1
  21338. }
  21339. },
  21340. },
  21341. [
  21342. {
  21343. name: "Normal",
  21344. height: math.unit(8 + 6 / 12, "feet"),
  21345. default: true
  21346. },
  21347. {
  21348. name: "Macro",
  21349. height: math.unit(150, "feet")
  21350. },
  21351. {
  21352. name: "Megamacro",
  21353. height: math.unit(1000, "miles")
  21354. },
  21355. ]
  21356. ))
  21357. characterMakers.push(() => makeCharacter(
  21358. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21359. {
  21360. front: {
  21361. height: math.unit(1.72, "m"),
  21362. weight: math.unit(80, "lb"),
  21363. name: "Front",
  21364. image: {
  21365. source: "./media/characters/voski/front.svg",
  21366. extra: 2076.22 / 2022.4,
  21367. bottom: 102.7 / 2177.3866
  21368. }
  21369. },
  21370. frontNsfw: {
  21371. height: math.unit(1.72, "m"),
  21372. weight: math.unit(80, "lb"),
  21373. name: "Front (NSFW)",
  21374. image: {
  21375. source: "./media/characters/voski/front-nsfw.svg",
  21376. extra: 2076.22 / 2022.4,
  21377. bottom: 102.7 / 2177.3866
  21378. }
  21379. },
  21380. back: {
  21381. height: math.unit(1.72, "m"),
  21382. weight: math.unit(80, "lb"),
  21383. name: "Back",
  21384. image: {
  21385. source: "./media/characters/voski/back.svg",
  21386. extra: 2104 / 2051,
  21387. bottom: 10.45 / 2113.63
  21388. }
  21389. },
  21390. },
  21391. [
  21392. {
  21393. name: "Normal",
  21394. height: math.unit(1.72, "m")
  21395. },
  21396. {
  21397. name: "Macro",
  21398. height: math.unit(55, "m"),
  21399. default: true
  21400. },
  21401. {
  21402. name: "Macro+",
  21403. height: math.unit(300, "m")
  21404. },
  21405. {
  21406. name: "Macro++",
  21407. height: math.unit(700, "m")
  21408. },
  21409. {
  21410. name: "Macro+++",
  21411. height: math.unit(4500, "m")
  21412. },
  21413. {
  21414. name: "Macro++++",
  21415. height: math.unit(45, "km")
  21416. },
  21417. {
  21418. name: "Macro+++++",
  21419. height: math.unit(1220, "km")
  21420. },
  21421. ]
  21422. ))
  21423. characterMakers.push(() => makeCharacter(
  21424. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21425. {
  21426. front: {
  21427. height: math.unit(2.3, "m"),
  21428. weight: math.unit(304, "kg"),
  21429. name: "Front",
  21430. image: {
  21431. source: "./media/characters/icowom-lee/front.svg",
  21432. extra: 985 / 955,
  21433. bottom: 25.4 / 1012
  21434. }
  21435. },
  21436. fronttentacles: {
  21437. height: math.unit(2.3, "m"),
  21438. weight: math.unit(304, "kg"),
  21439. name: "Front-tentacles",
  21440. image: {
  21441. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21442. extra: 985 / 955,
  21443. bottom: 25.4 / 1012
  21444. }
  21445. },
  21446. back: {
  21447. height: math.unit(2.3, "m"),
  21448. weight: math.unit(304, "kg"),
  21449. name: "Back",
  21450. image: {
  21451. source: "./media/characters/icowom-lee/back.svg",
  21452. extra: 975 / 954,
  21453. bottom: 9.5 / 985
  21454. }
  21455. },
  21456. backtentacles: {
  21457. height: math.unit(2.3, "m"),
  21458. weight: math.unit(304, "kg"),
  21459. name: "Back-tentacles",
  21460. image: {
  21461. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21462. extra: 975 / 954,
  21463. bottom: 9.5 / 985
  21464. }
  21465. },
  21466. frontDressed: {
  21467. height: math.unit(2.3, "m"),
  21468. weight: math.unit(304, "kg"),
  21469. name: "Front (Dressed)",
  21470. image: {
  21471. source: "./media/characters/icowom-lee/front-dressed.svg",
  21472. extra: 3076 / 2933,
  21473. bottom: 51.4 / 3125.1889
  21474. }
  21475. },
  21476. rump: {
  21477. height: math.unit(0.776, "meters"),
  21478. name: "Rump",
  21479. image: {
  21480. source: "./media/characters/icowom-lee/rump.svg"
  21481. }
  21482. },
  21483. genitals: {
  21484. height: math.unit(0.78, "meters"),
  21485. name: "Genitals",
  21486. image: {
  21487. source: "./media/characters/icowom-lee/genitals.svg"
  21488. }
  21489. },
  21490. },
  21491. [
  21492. {
  21493. name: "Normal",
  21494. height: math.unit(2.3, "meters"),
  21495. default: true
  21496. },
  21497. {
  21498. name: "Macro",
  21499. height: math.unit(94, "meters"),
  21500. default: true
  21501. },
  21502. ]
  21503. ))
  21504. characterMakers.push(() => makeCharacter(
  21505. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21506. {
  21507. front: {
  21508. height: math.unit(22, "meters"),
  21509. weight: math.unit(21000, "kg"),
  21510. name: "Front",
  21511. image: {
  21512. source: "./media/characters/shock-diamond/front.svg",
  21513. extra: 2204 / 2053,
  21514. bottom: 65 / 2239.47
  21515. }
  21516. },
  21517. frontNude: {
  21518. height: math.unit(22, "meters"),
  21519. weight: math.unit(21000, "kg"),
  21520. name: "Front (Nude)",
  21521. image: {
  21522. source: "./media/characters/shock-diamond/front-nude.svg",
  21523. extra: 2514 / 2285,
  21524. bottom: 13 / 2527.56
  21525. }
  21526. },
  21527. },
  21528. [
  21529. {
  21530. name: "Normal",
  21531. height: math.unit(3, "meters")
  21532. },
  21533. {
  21534. name: "Macro",
  21535. height: math.unit(22, "meters"),
  21536. default: true
  21537. },
  21538. ]
  21539. ))
  21540. characterMakers.push(() => makeCharacter(
  21541. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21542. {
  21543. front: {
  21544. height: math.unit(5 + 4 / 12, "feet"),
  21545. weight: math.unit(120, "lb"),
  21546. name: "Front",
  21547. image: {
  21548. source: "./media/characters/rory/front.svg",
  21549. extra: 589 / 556,
  21550. bottom: 45.7 / 635.76
  21551. }
  21552. },
  21553. frontNude: {
  21554. height: math.unit(5 + 4 / 12, "feet"),
  21555. weight: math.unit(120, "lb"),
  21556. name: "Front (Nude)",
  21557. image: {
  21558. source: "./media/characters/rory/front-nude.svg",
  21559. extra: 589 / 556,
  21560. bottom: 45.7 / 635.76
  21561. }
  21562. },
  21563. side: {
  21564. height: math.unit(5 + 4 / 12, "feet"),
  21565. weight: math.unit(120, "lb"),
  21566. name: "Side",
  21567. image: {
  21568. source: "./media/characters/rory/side.svg",
  21569. extra: 597 / 564,
  21570. bottom: 55 / 653
  21571. }
  21572. },
  21573. back: {
  21574. height: math.unit(5 + 4 / 12, "feet"),
  21575. weight: math.unit(120, "lb"),
  21576. name: "Back",
  21577. image: {
  21578. source: "./media/characters/rory/back.svg",
  21579. extra: 620 / 585,
  21580. bottom: 8.86 / 630.43
  21581. }
  21582. },
  21583. dick: {
  21584. height: math.unit(0.86, "feet"),
  21585. name: "Dick",
  21586. image: {
  21587. source: "./media/characters/rory/dick.svg"
  21588. }
  21589. },
  21590. },
  21591. [
  21592. {
  21593. name: "Normal",
  21594. height: math.unit(5 + 4 / 12, "feet"),
  21595. default: true
  21596. },
  21597. {
  21598. name: "Macro",
  21599. height: math.unit(100, "feet")
  21600. },
  21601. {
  21602. name: "Macro+",
  21603. height: math.unit(140, "feet")
  21604. },
  21605. {
  21606. name: "Macro++",
  21607. height: math.unit(300, "feet")
  21608. },
  21609. ]
  21610. ))
  21611. characterMakers.push(() => makeCharacter(
  21612. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21613. {
  21614. front: {
  21615. height: math.unit(5 + 9 / 12, "feet"),
  21616. weight: math.unit(190, "lb"),
  21617. name: "Front",
  21618. image: {
  21619. source: "./media/characters/sprisk/front.svg",
  21620. extra: 1225 / 1180,
  21621. bottom: 42.7 / 1266.4
  21622. }
  21623. },
  21624. frontNsfw: {
  21625. height: math.unit(5 + 9 / 12, "feet"),
  21626. weight: math.unit(190, "lb"),
  21627. name: "Front (NSFW)",
  21628. image: {
  21629. source: "./media/characters/sprisk/front-nsfw.svg",
  21630. extra: 1225 / 1180,
  21631. bottom: 42.7 / 1266.4
  21632. }
  21633. },
  21634. back: {
  21635. height: math.unit(5 + 9 / 12, "feet"),
  21636. weight: math.unit(190, "lb"),
  21637. name: "Back",
  21638. image: {
  21639. source: "./media/characters/sprisk/back.svg",
  21640. extra: 1247 / 1200,
  21641. bottom: 5.6 / 1253.04
  21642. }
  21643. },
  21644. },
  21645. [
  21646. {
  21647. name: "Tiny",
  21648. height: math.unit(2, "inches")
  21649. },
  21650. {
  21651. name: "Normal",
  21652. height: math.unit(5 + 9 / 12, "feet"),
  21653. default: true
  21654. },
  21655. {
  21656. name: "Mini Macro",
  21657. height: math.unit(18, "feet")
  21658. },
  21659. {
  21660. name: "Macro",
  21661. height: math.unit(100, "feet")
  21662. },
  21663. {
  21664. name: "MACRO",
  21665. height: math.unit(50, "miles")
  21666. },
  21667. {
  21668. name: "M A C R O",
  21669. height: math.unit(300, "miles")
  21670. },
  21671. ]
  21672. ))
  21673. characterMakers.push(() => makeCharacter(
  21674. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21675. {
  21676. side: {
  21677. height: math.unit(15.6, "meters"),
  21678. weight: math.unit(700000, "kg"),
  21679. name: "Side",
  21680. image: {
  21681. source: "./media/characters/bunsen/side.svg",
  21682. extra: 1644 / 358
  21683. }
  21684. },
  21685. foot: {
  21686. height: math.unit(1.611 * 1644 / 358, "meter"),
  21687. name: "Foot",
  21688. image: {
  21689. source: "./media/characters/bunsen/foot.svg"
  21690. }
  21691. },
  21692. },
  21693. [
  21694. {
  21695. name: "Small",
  21696. height: math.unit(10, "feet")
  21697. },
  21698. {
  21699. name: "Normal",
  21700. height: math.unit(15.6, "meters"),
  21701. default: true
  21702. },
  21703. ]
  21704. ))
  21705. characterMakers.push(() => makeCharacter(
  21706. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21707. {
  21708. front: {
  21709. height: math.unit(4 + 11 / 12, "feet"),
  21710. weight: math.unit(140, "lb"),
  21711. name: "Front",
  21712. image: {
  21713. source: "./media/characters/sesh/front.svg",
  21714. extra: 3420 / 3231,
  21715. bottom: 72 / 3949.5
  21716. }
  21717. },
  21718. },
  21719. [
  21720. {
  21721. name: "Normal",
  21722. height: math.unit(4 + 11 / 12, "feet")
  21723. },
  21724. {
  21725. name: "Grown",
  21726. height: math.unit(15, "feet"),
  21727. default: true
  21728. },
  21729. {
  21730. name: "Macro",
  21731. height: math.unit(1500, "feet")
  21732. },
  21733. {
  21734. name: "Megamacro",
  21735. height: math.unit(30, "miles")
  21736. },
  21737. {
  21738. name: "Continental",
  21739. height: math.unit(3000, "miles")
  21740. },
  21741. {
  21742. name: "Gravity Mass",
  21743. height: math.unit(300000, "miles")
  21744. },
  21745. {
  21746. name: "Planet Buster",
  21747. height: math.unit(30000000, "miles")
  21748. },
  21749. {
  21750. name: "Big",
  21751. height: math.unit(3000000000, "miles")
  21752. },
  21753. ]
  21754. ))
  21755. characterMakers.push(() => makeCharacter(
  21756. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21757. {
  21758. front: {
  21759. height: math.unit(9, "feet"),
  21760. weight: math.unit(350, "lb"),
  21761. name: "Front",
  21762. image: {
  21763. source: "./media/characters/pepper/front.svg",
  21764. extra: 1448 / 1312,
  21765. bottom: 9.4 / 1457.88
  21766. }
  21767. },
  21768. back: {
  21769. height: math.unit(9, "feet"),
  21770. weight: math.unit(350, "lb"),
  21771. name: "Back",
  21772. image: {
  21773. source: "./media/characters/pepper/back.svg",
  21774. extra: 1423 / 1300,
  21775. bottom: 4.6 / 1429
  21776. }
  21777. },
  21778. maw: {
  21779. height: math.unit(0.932, "feet"),
  21780. name: "Maw",
  21781. image: {
  21782. source: "./media/characters/pepper/maw.svg"
  21783. }
  21784. },
  21785. },
  21786. [
  21787. {
  21788. name: "Normal",
  21789. height: math.unit(9, "feet"),
  21790. default: true
  21791. },
  21792. ]
  21793. ))
  21794. characterMakers.push(() => makeCharacter(
  21795. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21796. {
  21797. front: {
  21798. height: math.unit(6, "feet"),
  21799. weight: math.unit(150, "lb"),
  21800. name: "Front",
  21801. image: {
  21802. source: "./media/characters/maelstrom/front.svg",
  21803. extra: 2100 / 1883,
  21804. bottom: 94 / 2196.7
  21805. }
  21806. },
  21807. },
  21808. [
  21809. {
  21810. name: "Less Kaiju",
  21811. height: math.unit(200, "feet")
  21812. },
  21813. {
  21814. name: "Kaiju",
  21815. height: math.unit(400, "feet"),
  21816. default: true
  21817. },
  21818. {
  21819. name: "Kaiju-er",
  21820. height: math.unit(600, "feet")
  21821. },
  21822. ]
  21823. ))
  21824. characterMakers.push(() => makeCharacter(
  21825. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21826. {
  21827. front: {
  21828. height: math.unit(6 + 5 / 12, "feet"),
  21829. weight: math.unit(180, "lb"),
  21830. name: "Front",
  21831. image: {
  21832. source: "./media/characters/lexir/front.svg",
  21833. extra: 180 / 172,
  21834. bottom: 12 / 192
  21835. }
  21836. },
  21837. back: {
  21838. height: math.unit(6 + 5 / 12, "feet"),
  21839. weight: math.unit(180, "lb"),
  21840. name: "Back",
  21841. image: {
  21842. source: "./media/characters/lexir/back.svg",
  21843. extra: 183.84 / 175.5,
  21844. bottom: 3.1 / 187
  21845. }
  21846. },
  21847. },
  21848. [
  21849. {
  21850. name: "Very Smal",
  21851. height: math.unit(1, "nm")
  21852. },
  21853. {
  21854. name: "Normal",
  21855. height: math.unit(6 + 5 / 12, "feet"),
  21856. default: true
  21857. },
  21858. {
  21859. name: "Macro",
  21860. height: math.unit(1, "mile")
  21861. },
  21862. {
  21863. name: "Megamacro",
  21864. height: math.unit(50, "miles")
  21865. },
  21866. ]
  21867. ))
  21868. characterMakers.push(() => makeCharacter(
  21869. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21870. {
  21871. front: {
  21872. height: math.unit(1.5, "meters"),
  21873. weight: math.unit(100, "lb"),
  21874. name: "Front",
  21875. image: {
  21876. source: "./media/characters/maksio/front.svg",
  21877. extra: 1549 / 1531,
  21878. bottom: 123.7 / 1674.5429
  21879. }
  21880. },
  21881. back: {
  21882. height: math.unit(1.5, "meters"),
  21883. weight: math.unit(100, "lb"),
  21884. name: "Back",
  21885. image: {
  21886. source: "./media/characters/maksio/back.svg",
  21887. extra: 1541 / 1509,
  21888. bottom: 97 / 1639
  21889. }
  21890. },
  21891. hand: {
  21892. height: math.unit(0.621, "feet"),
  21893. name: "Hand",
  21894. image: {
  21895. source: "./media/characters/maksio/hand.svg"
  21896. }
  21897. },
  21898. foot: {
  21899. height: math.unit(1.611, "feet"),
  21900. name: "Foot",
  21901. image: {
  21902. source: "./media/characters/maksio/foot.svg"
  21903. }
  21904. },
  21905. },
  21906. [
  21907. {
  21908. name: "Shrunken",
  21909. height: math.unit(10, "cm")
  21910. },
  21911. {
  21912. name: "Normal",
  21913. height: math.unit(150, "cm"),
  21914. default: true
  21915. },
  21916. ]
  21917. ))
  21918. characterMakers.push(() => makeCharacter(
  21919. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21920. {
  21921. front: {
  21922. height: math.unit(100, "feet"),
  21923. name: "Front",
  21924. image: {
  21925. source: "./media/characters/erza-bear/front.svg",
  21926. extra: 2449 / 2390,
  21927. bottom: 46 / 2494
  21928. }
  21929. },
  21930. back: {
  21931. height: math.unit(100, "feet"),
  21932. name: "Back",
  21933. image: {
  21934. source: "./media/characters/erza-bear/back.svg",
  21935. extra: 2489 / 2430,
  21936. bottom: 85.4 / 2480
  21937. }
  21938. },
  21939. tail: {
  21940. height: math.unit(42, "feet"),
  21941. name: "Tail",
  21942. image: {
  21943. source: "./media/characters/erza-bear/tail.svg"
  21944. }
  21945. },
  21946. tongue: {
  21947. height: math.unit(8, "feet"),
  21948. name: "Tongue",
  21949. image: {
  21950. source: "./media/characters/erza-bear/tongue.svg"
  21951. }
  21952. },
  21953. dick: {
  21954. height: math.unit(10.5, "feet"),
  21955. name: "Dick",
  21956. image: {
  21957. source: "./media/characters/erza-bear/dick.svg"
  21958. }
  21959. },
  21960. dickVertical: {
  21961. height: math.unit(16.9, "feet"),
  21962. name: "Dick (Vertical)",
  21963. image: {
  21964. source: "./media/characters/erza-bear/dick-vertical.svg"
  21965. }
  21966. },
  21967. },
  21968. [
  21969. {
  21970. name: "Macro",
  21971. height: math.unit(100, "feet"),
  21972. default: true
  21973. },
  21974. ]
  21975. ))
  21976. characterMakers.push(() => makeCharacter(
  21977. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21978. {
  21979. front: {
  21980. height: math.unit(172, "cm"),
  21981. weight: math.unit(73, "kg"),
  21982. name: "Front",
  21983. image: {
  21984. source: "./media/characters/violet-flor/front.svg",
  21985. extra: 1530 / 1442,
  21986. bottom: 61.9 / 1588.8
  21987. }
  21988. },
  21989. back: {
  21990. height: math.unit(180, "cm"),
  21991. weight: math.unit(73, "kg"),
  21992. name: "Back",
  21993. image: {
  21994. source: "./media/characters/violet-flor/back.svg",
  21995. extra: 1692 / 1630,
  21996. bottom: 20 / 1712
  21997. }
  21998. },
  21999. },
  22000. [
  22001. {
  22002. name: "Normal",
  22003. height: math.unit(172, "cm"),
  22004. default: true
  22005. },
  22006. ]
  22007. ))
  22008. characterMakers.push(() => makeCharacter(
  22009. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22010. {
  22011. front: {
  22012. height: math.unit(6, "feet"),
  22013. weight: math.unit(220, "lb"),
  22014. name: "Front",
  22015. image: {
  22016. source: "./media/characters/lynn-rhea/front.svg",
  22017. extra: 310 / 273
  22018. }
  22019. },
  22020. back: {
  22021. height: math.unit(6, "feet"),
  22022. weight: math.unit(220, "lb"),
  22023. name: "Back",
  22024. image: {
  22025. source: "./media/characters/lynn-rhea/back.svg",
  22026. extra: 310 / 273
  22027. }
  22028. },
  22029. dicks: {
  22030. height: math.unit(0.9, "feet"),
  22031. name: "Dicks",
  22032. image: {
  22033. source: "./media/characters/lynn-rhea/dicks.svg"
  22034. }
  22035. },
  22036. slit: {
  22037. height: math.unit(0.4, "feet"),
  22038. name: "Slit",
  22039. image: {
  22040. source: "./media/characters/lynn-rhea/slit.svg"
  22041. }
  22042. },
  22043. },
  22044. [
  22045. {
  22046. name: "Micro",
  22047. height: math.unit(1, "inch")
  22048. },
  22049. {
  22050. name: "Macro",
  22051. height: math.unit(60, "feet"),
  22052. default: true
  22053. },
  22054. {
  22055. name: "Megamacro",
  22056. height: math.unit(2, "miles")
  22057. },
  22058. {
  22059. name: "Gigamacro",
  22060. height: math.unit(3, "earths")
  22061. },
  22062. {
  22063. name: "Galactic",
  22064. height: math.unit(0.8, "galaxies")
  22065. },
  22066. ]
  22067. ))
  22068. characterMakers.push(() => makeCharacter(
  22069. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22070. {
  22071. front: {
  22072. height: math.unit(1600, "feet"),
  22073. weight: math.unit(85758785169, "kg"),
  22074. name: "Front",
  22075. image: {
  22076. source: "./media/characters/valathos/front.svg",
  22077. extra: 1451 / 1339
  22078. }
  22079. },
  22080. },
  22081. [
  22082. {
  22083. name: "Macro",
  22084. height: math.unit(1600, "feet"),
  22085. default: true
  22086. },
  22087. ]
  22088. ))
  22089. characterMakers.push(() => makeCharacter(
  22090. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22091. {
  22092. front: {
  22093. height: math.unit(7 + 5 / 12, "feet"),
  22094. weight: math.unit(300, "lb"),
  22095. name: "Front",
  22096. image: {
  22097. source: "./media/characters/azula/front.svg",
  22098. extra: 3208 / 2880,
  22099. bottom: 80.2 / 3277
  22100. }
  22101. },
  22102. back: {
  22103. height: math.unit(7 + 5 / 12, "feet"),
  22104. weight: math.unit(300, "lb"),
  22105. name: "Back",
  22106. image: {
  22107. source: "./media/characters/azula/back.svg",
  22108. extra: 3169 / 2822,
  22109. bottom: 150.6 / 3321
  22110. }
  22111. },
  22112. },
  22113. [
  22114. {
  22115. name: "Normal",
  22116. height: math.unit(7 + 5 / 12, "feet"),
  22117. default: true
  22118. },
  22119. {
  22120. name: "Big",
  22121. height: math.unit(20, "feet")
  22122. },
  22123. ]
  22124. ))
  22125. characterMakers.push(() => makeCharacter(
  22126. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22127. {
  22128. front: {
  22129. height: math.unit(5 + 1 / 12, "feet"),
  22130. weight: math.unit(110, "lb"),
  22131. name: "Front",
  22132. image: {
  22133. source: "./media/characters/rupert/front.svg",
  22134. extra: 1549 / 1495,
  22135. bottom: 54.2 / 1604.4
  22136. }
  22137. },
  22138. },
  22139. [
  22140. {
  22141. name: "Normal",
  22142. height: math.unit(5 + 1 / 12, "feet"),
  22143. default: true
  22144. },
  22145. ]
  22146. ))
  22147. characterMakers.push(() => makeCharacter(
  22148. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22149. {
  22150. front: {
  22151. height: math.unit(8 + 4 / 12, "feet"),
  22152. weight: math.unit(350, "lb"),
  22153. name: "Front",
  22154. image: {
  22155. source: "./media/characters/sheera-castellar/front.svg",
  22156. extra: 1957 / 1894,
  22157. bottom: 26.97 / 1975.017
  22158. }
  22159. },
  22160. side: {
  22161. height: math.unit(8 + 4 / 12, "feet"),
  22162. weight: math.unit(350, "lb"),
  22163. name: "Side",
  22164. image: {
  22165. source: "./media/characters/sheera-castellar/side.svg",
  22166. extra: 1957 / 1894
  22167. }
  22168. },
  22169. back: {
  22170. height: math.unit(8 + 4 / 12, "feet"),
  22171. weight: math.unit(350, "lb"),
  22172. name: "Back",
  22173. image: {
  22174. source: "./media/characters/sheera-castellar/back.svg",
  22175. extra: 1957 / 1894
  22176. }
  22177. },
  22178. angled: {
  22179. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22180. weight: math.unit(350, "lb"),
  22181. name: "Angled",
  22182. image: {
  22183. source: "./media/characters/sheera-castellar/angled.svg",
  22184. extra: 1807 / 1707,
  22185. bottom: 68 / 1875
  22186. }
  22187. },
  22188. genitals: {
  22189. height: math.unit(2.2, "feet"),
  22190. name: "Genitals",
  22191. image: {
  22192. source: "./media/characters/sheera-castellar/genitals.svg"
  22193. }
  22194. },
  22195. },
  22196. [
  22197. {
  22198. name: "Normal",
  22199. height: math.unit(8 + 4 / 12, "feet")
  22200. },
  22201. {
  22202. name: "Macro",
  22203. height: math.unit(150, "feet"),
  22204. default: true
  22205. },
  22206. {
  22207. name: "Macro+",
  22208. height: math.unit(800, "feet")
  22209. },
  22210. ]
  22211. ))
  22212. characterMakers.push(() => makeCharacter(
  22213. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22214. {
  22215. front: {
  22216. height: math.unit(6, "feet"),
  22217. weight: math.unit(150, "lb"),
  22218. name: "Front",
  22219. image: {
  22220. source: "./media/characters/jaipur/front.svg",
  22221. extra: 3860 / 3731,
  22222. bottom: 287 / 4140
  22223. }
  22224. },
  22225. back: {
  22226. height: math.unit(6, "feet"),
  22227. weight: math.unit(150, "lb"),
  22228. name: "Back",
  22229. image: {
  22230. source: "./media/characters/jaipur/back.svg",
  22231. extra: 4060 / 3930,
  22232. bottom: 151 / 4200
  22233. }
  22234. },
  22235. },
  22236. [
  22237. {
  22238. name: "Normal",
  22239. height: math.unit(1.85, "meters"),
  22240. default: true
  22241. },
  22242. {
  22243. name: "Macro",
  22244. height: math.unit(150, "meters")
  22245. },
  22246. {
  22247. name: "Macro+",
  22248. height: math.unit(0.5, "miles")
  22249. },
  22250. {
  22251. name: "Macro++",
  22252. height: math.unit(2.5, "miles")
  22253. },
  22254. {
  22255. name: "Macro+++",
  22256. height: math.unit(12, "miles")
  22257. },
  22258. {
  22259. name: "Macro++++",
  22260. height: math.unit(120, "miles")
  22261. },
  22262. {
  22263. name: "Macro+++++",
  22264. height: math.unit(1200, "miles")
  22265. },
  22266. ]
  22267. ))
  22268. characterMakers.push(() => makeCharacter(
  22269. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22270. {
  22271. front: {
  22272. height: math.unit(6, "feet"),
  22273. weight: math.unit(150, "lb"),
  22274. name: "Front",
  22275. image: {
  22276. source: "./media/characters/sheila-wolf/front.svg",
  22277. extra: 1931 / 1808,
  22278. bottom: 29.5 / 1960
  22279. }
  22280. },
  22281. dick: {
  22282. height: math.unit(1.464, "feet"),
  22283. name: "Dick",
  22284. image: {
  22285. source: "./media/characters/sheila-wolf/dick.svg"
  22286. }
  22287. },
  22288. muzzle: {
  22289. height: math.unit(0.513, "feet"),
  22290. name: "Muzzle",
  22291. image: {
  22292. source: "./media/characters/sheila-wolf/muzzle.svg"
  22293. }
  22294. },
  22295. },
  22296. [
  22297. {
  22298. name: "Macro",
  22299. height: math.unit(70, "feet"),
  22300. default: true
  22301. },
  22302. ]
  22303. ))
  22304. characterMakers.push(() => makeCharacter(
  22305. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22306. {
  22307. front: {
  22308. height: math.unit(32, "meters"),
  22309. weight: math.unit(300000, "kg"),
  22310. name: "Front",
  22311. image: {
  22312. source: "./media/characters/almor/front.svg",
  22313. extra: 1408 / 1322,
  22314. bottom: 94.6 / 1506.5
  22315. }
  22316. },
  22317. },
  22318. [
  22319. {
  22320. name: "Macro",
  22321. height: math.unit(32, "meters"),
  22322. default: true
  22323. },
  22324. ]
  22325. ))
  22326. characterMakers.push(() => makeCharacter(
  22327. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22328. {
  22329. front: {
  22330. height: math.unit(7, "feet"),
  22331. weight: math.unit(200, "lb"),
  22332. name: "Front",
  22333. image: {
  22334. source: "./media/characters/silver/front.svg",
  22335. extra: 472.1 / 450.5,
  22336. bottom: 26.5 / 499.424
  22337. }
  22338. },
  22339. },
  22340. [
  22341. {
  22342. name: "Normal",
  22343. height: math.unit(7, "feet"),
  22344. default: true
  22345. },
  22346. {
  22347. name: "Macro",
  22348. height: math.unit(800, "feet")
  22349. },
  22350. {
  22351. name: "Megamacro",
  22352. height: math.unit(250, "miles")
  22353. },
  22354. ]
  22355. ))
  22356. characterMakers.push(() => makeCharacter(
  22357. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22358. {
  22359. front: {
  22360. height: math.unit(6, "feet"),
  22361. weight: math.unit(150, "lb"),
  22362. name: "Front",
  22363. image: {
  22364. source: "./media/characters/pliskin/front.svg",
  22365. extra: 1469 / 1359,
  22366. bottom: 70 / 1540
  22367. }
  22368. },
  22369. },
  22370. [
  22371. {
  22372. name: "Micro",
  22373. height: math.unit(3, "inches")
  22374. },
  22375. {
  22376. name: "Normal",
  22377. height: math.unit(5 + 11 / 12, "feet"),
  22378. default: true
  22379. },
  22380. {
  22381. name: "Macro",
  22382. height: math.unit(120, "feet")
  22383. },
  22384. ]
  22385. ))
  22386. characterMakers.push(() => makeCharacter(
  22387. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22388. {
  22389. front: {
  22390. height: math.unit(6, "feet"),
  22391. weight: math.unit(150, "lb"),
  22392. name: "Front",
  22393. image: {
  22394. source: "./media/characters/sammy/front.svg",
  22395. extra: 1193 / 1089,
  22396. bottom: 30.5 / 1226
  22397. }
  22398. },
  22399. },
  22400. [
  22401. {
  22402. name: "Macro",
  22403. height: math.unit(1700, "feet"),
  22404. default: true
  22405. },
  22406. {
  22407. name: "Examacro",
  22408. height: math.unit(2.5e9, "lightyears")
  22409. },
  22410. ]
  22411. ))
  22412. characterMakers.push(() => makeCharacter(
  22413. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22414. {
  22415. front: {
  22416. height: math.unit(21, "meters"),
  22417. weight: math.unit(12, "tonnes"),
  22418. name: "Front",
  22419. image: {
  22420. source: "./media/characters/kuru/front.svg",
  22421. extra: 4301 / 3785,
  22422. bottom: 371.3 / 4691
  22423. }
  22424. },
  22425. },
  22426. [
  22427. {
  22428. name: "Macro",
  22429. height: math.unit(21, "meters"),
  22430. default: true
  22431. },
  22432. ]
  22433. ))
  22434. characterMakers.push(() => makeCharacter(
  22435. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22436. {
  22437. front: {
  22438. height: math.unit(23, "meters"),
  22439. weight: math.unit(12.2, "tonnes"),
  22440. name: "Front",
  22441. image: {
  22442. source: "./media/characters/rakka/front.svg",
  22443. extra: 4670 / 4169,
  22444. bottom: 301 / 4968.7
  22445. }
  22446. },
  22447. },
  22448. [
  22449. {
  22450. name: "Macro",
  22451. height: math.unit(23, "meters"),
  22452. default: true
  22453. },
  22454. ]
  22455. ))
  22456. characterMakers.push(() => makeCharacter(
  22457. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22458. {
  22459. front: {
  22460. height: math.unit(6, "feet"),
  22461. weight: math.unit(150, "lb"),
  22462. name: "Front",
  22463. image: {
  22464. source: "./media/characters/rhys-feline/front.svg",
  22465. extra: 2488 / 2308,
  22466. bottom: 35.67 / 2519.19
  22467. }
  22468. },
  22469. },
  22470. [
  22471. {
  22472. name: "Really Small",
  22473. height: math.unit(1, "nm")
  22474. },
  22475. {
  22476. name: "Micro",
  22477. height: math.unit(4, "inches")
  22478. },
  22479. {
  22480. name: "Normal",
  22481. height: math.unit(4 + 10 / 12, "feet"),
  22482. default: true
  22483. },
  22484. {
  22485. name: "Macro",
  22486. height: math.unit(100, "feet")
  22487. },
  22488. {
  22489. name: "Megamacto",
  22490. height: math.unit(50, "miles")
  22491. },
  22492. ]
  22493. ))
  22494. characterMakers.push(() => makeCharacter(
  22495. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22496. {
  22497. side: {
  22498. height: math.unit(30, "feet"),
  22499. weight: math.unit(35000, "kg"),
  22500. name: "Side",
  22501. image: {
  22502. source: "./media/characters/alydar/side.svg",
  22503. extra: 234 / 222,
  22504. bottom: 6.5 / 241
  22505. }
  22506. },
  22507. front: {
  22508. height: math.unit(30, "feet"),
  22509. weight: math.unit(35000, "kg"),
  22510. name: "Front",
  22511. image: {
  22512. source: "./media/characters/alydar/front.svg",
  22513. extra: 223.37 / 210.2,
  22514. bottom: 22.3 / 246.76
  22515. }
  22516. },
  22517. top: {
  22518. height: math.unit(64.54, "feet"),
  22519. weight: math.unit(35000, "kg"),
  22520. name: "Top",
  22521. image: {
  22522. source: "./media/characters/alydar/top.svg"
  22523. }
  22524. },
  22525. anthro: {
  22526. height: math.unit(30, "feet"),
  22527. weight: math.unit(9000, "kg"),
  22528. name: "Anthro",
  22529. image: {
  22530. source: "./media/characters/alydar/anthro.svg",
  22531. extra: 432 / 421,
  22532. bottom: 7.18 / 440
  22533. }
  22534. },
  22535. maw: {
  22536. height: math.unit(11.693, "feet"),
  22537. name: "Maw",
  22538. image: {
  22539. source: "./media/characters/alydar/maw.svg"
  22540. }
  22541. },
  22542. head: {
  22543. height: math.unit(11.693, "feet"),
  22544. name: "Head",
  22545. image: {
  22546. source: "./media/characters/alydar/head.svg"
  22547. }
  22548. },
  22549. headAlt: {
  22550. height: math.unit(12.861, "feet"),
  22551. name: "Head (Alt)",
  22552. image: {
  22553. source: "./media/characters/alydar/head-alt.svg"
  22554. }
  22555. },
  22556. wing: {
  22557. height: math.unit(20.712, "feet"),
  22558. name: "Wing",
  22559. image: {
  22560. source: "./media/characters/alydar/wing.svg"
  22561. }
  22562. },
  22563. wingFeather: {
  22564. height: math.unit(9.662, "feet"),
  22565. name: "Wing Feather",
  22566. image: {
  22567. source: "./media/characters/alydar/wing-feather.svg"
  22568. }
  22569. },
  22570. countourFeather: {
  22571. height: math.unit(4.154, "feet"),
  22572. name: "Contour Feather",
  22573. image: {
  22574. source: "./media/characters/alydar/contour-feather.svg"
  22575. }
  22576. },
  22577. },
  22578. [
  22579. {
  22580. name: "Diplomatic",
  22581. height: math.unit(13, "feet"),
  22582. default: true
  22583. },
  22584. {
  22585. name: "Small",
  22586. height: math.unit(30, "feet")
  22587. },
  22588. {
  22589. name: "Normal",
  22590. height: math.unit(95, "feet"),
  22591. default: true
  22592. },
  22593. {
  22594. name: "Large",
  22595. height: math.unit(285, "feet")
  22596. },
  22597. {
  22598. name: "Incomprehensible",
  22599. height: math.unit(450, "megameters")
  22600. },
  22601. ]
  22602. ))
  22603. characterMakers.push(() => makeCharacter(
  22604. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22605. {
  22606. side: {
  22607. height: math.unit(11, "feet"),
  22608. weight: math.unit(1750, "kg"),
  22609. name: "Side",
  22610. image: {
  22611. source: "./media/characters/selicia/side.svg",
  22612. extra: 440 / 396,
  22613. bottom: 24.8 / 465.979
  22614. }
  22615. },
  22616. maw: {
  22617. height: math.unit(4.665, "feet"),
  22618. name: "Maw",
  22619. image: {
  22620. source: "./media/characters/selicia/maw.svg"
  22621. }
  22622. },
  22623. },
  22624. [
  22625. {
  22626. name: "Normal",
  22627. height: math.unit(11, "feet"),
  22628. default: true
  22629. },
  22630. ]
  22631. ))
  22632. characterMakers.push(() => makeCharacter(
  22633. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22634. {
  22635. side: {
  22636. height: math.unit(2 + 6 / 12, "feet"),
  22637. weight: math.unit(30, "lb"),
  22638. name: "Side",
  22639. image: {
  22640. source: "./media/characters/layla/side.svg",
  22641. extra: 244 / 188,
  22642. bottom: 18.2 / 262.1
  22643. }
  22644. },
  22645. back: {
  22646. height: math.unit(2 + 6 / 12, "feet"),
  22647. weight: math.unit(30, "lb"),
  22648. name: "Back",
  22649. image: {
  22650. source: "./media/characters/layla/back.svg",
  22651. extra: 308 / 241.5,
  22652. bottom: 8.9 / 316.8
  22653. }
  22654. },
  22655. cumming: {
  22656. height: math.unit(2 + 6 / 12, "feet"),
  22657. weight: math.unit(30, "lb"),
  22658. name: "Cumming",
  22659. image: {
  22660. source: "./media/characters/layla/cumming.svg",
  22661. extra: 342 / 279,
  22662. bottom: 595 / 938
  22663. }
  22664. },
  22665. dickFlaccid: {
  22666. height: math.unit(2.595, "feet"),
  22667. name: "Flaccid Genitals",
  22668. image: {
  22669. source: "./media/characters/layla/dick-flaccid.svg"
  22670. }
  22671. },
  22672. dickErect: {
  22673. height: math.unit(2.359, "feet"),
  22674. name: "Erect Genitals",
  22675. image: {
  22676. source: "./media/characters/layla/dick-erect.svg"
  22677. }
  22678. },
  22679. },
  22680. [
  22681. {
  22682. name: "Micro",
  22683. height: math.unit(1, "inch")
  22684. },
  22685. {
  22686. name: "Small",
  22687. height: math.unit(1, "foot")
  22688. },
  22689. {
  22690. name: "Normal",
  22691. height: math.unit(2 + 6 / 12, "feet"),
  22692. default: true
  22693. },
  22694. {
  22695. name: "Macro",
  22696. height: math.unit(200, "feet")
  22697. },
  22698. {
  22699. name: "Megamacro",
  22700. height: math.unit(1000, "miles")
  22701. },
  22702. {
  22703. name: "Planetary",
  22704. height: math.unit(8000, "miles")
  22705. },
  22706. {
  22707. name: "True Layla",
  22708. height: math.unit(200000 * 7, "multiverses")
  22709. },
  22710. ]
  22711. ))
  22712. characterMakers.push(() => makeCharacter(
  22713. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22714. {
  22715. back: {
  22716. height: math.unit(10.5, "feet"),
  22717. weight: math.unit(800, "lb"),
  22718. name: "Back",
  22719. image: {
  22720. source: "./media/characters/knox/back.svg",
  22721. extra: 1486 / 1089,
  22722. bottom: 107 / 1601.4
  22723. }
  22724. },
  22725. side: {
  22726. height: math.unit(10.5, "feet"),
  22727. weight: math.unit(800, "lb"),
  22728. name: "Side",
  22729. image: {
  22730. source: "./media/characters/knox/side.svg",
  22731. extra: 244 / 218,
  22732. bottom: 14 / 260
  22733. }
  22734. },
  22735. },
  22736. [
  22737. {
  22738. name: "Compact",
  22739. height: math.unit(10.5, "feet"),
  22740. default: true
  22741. },
  22742. {
  22743. name: "Dynamax",
  22744. height: math.unit(210, "feet")
  22745. },
  22746. {
  22747. name: "Full Macro",
  22748. height: math.unit(850, "feet")
  22749. },
  22750. ]
  22751. ))
  22752. characterMakers.push(() => makeCharacter(
  22753. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22754. {
  22755. front: {
  22756. height: math.unit(6, "feet"),
  22757. weight: math.unit(152, "lb"),
  22758. name: "Front",
  22759. image: {
  22760. source: "./media/characters/shin-pikachu/front.svg",
  22761. extra: 1574 / 1480,
  22762. bottom: 53.3 / 1626
  22763. }
  22764. },
  22765. hand: {
  22766. height: math.unit(1.055, "feet"),
  22767. name: "Hand",
  22768. image: {
  22769. source: "./media/characters/shin-pikachu/hand.svg"
  22770. }
  22771. },
  22772. foot: {
  22773. height: math.unit(1.1, "feet"),
  22774. name: "Foot",
  22775. image: {
  22776. source: "./media/characters/shin-pikachu/foot.svg"
  22777. }
  22778. },
  22779. collar: {
  22780. height: math.unit(0.386, "feet"),
  22781. name: "Collar",
  22782. image: {
  22783. source: "./media/characters/shin-pikachu/collar.svg"
  22784. }
  22785. },
  22786. },
  22787. [
  22788. {
  22789. name: "Smallest",
  22790. height: math.unit(0.5, "inches")
  22791. },
  22792. {
  22793. name: "Micro",
  22794. height: math.unit(6, "inches")
  22795. },
  22796. {
  22797. name: "Normal",
  22798. height: math.unit(6, "feet"),
  22799. default: true
  22800. },
  22801. {
  22802. name: "Macro",
  22803. height: math.unit(150, "feet")
  22804. },
  22805. ]
  22806. ))
  22807. characterMakers.push(() => makeCharacter(
  22808. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22809. {
  22810. front: {
  22811. height: math.unit(28, "feet"),
  22812. weight: math.unit(10500, "lb"),
  22813. name: "Front",
  22814. image: {
  22815. source: "./media/characters/kayda/front.svg",
  22816. extra: 1536 / 1428,
  22817. bottom: 68.7 / 1603
  22818. }
  22819. },
  22820. back: {
  22821. height: math.unit(28, "feet"),
  22822. weight: math.unit(10500, "lb"),
  22823. name: "Back",
  22824. image: {
  22825. source: "./media/characters/kayda/back.svg",
  22826. extra: 1557 / 1464,
  22827. bottom: 39.5 / 1597.49
  22828. }
  22829. },
  22830. dick: {
  22831. height: math.unit(3.858, "feet"),
  22832. name: "Dick",
  22833. image: {
  22834. source: "./media/characters/kayda/dick.svg"
  22835. }
  22836. },
  22837. },
  22838. [
  22839. {
  22840. name: "Macro",
  22841. height: math.unit(28, "feet"),
  22842. default: true
  22843. },
  22844. ]
  22845. ))
  22846. characterMakers.push(() => makeCharacter(
  22847. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22848. {
  22849. front: {
  22850. height: math.unit(10 + 11 / 12, "feet"),
  22851. weight: math.unit(1400, "lb"),
  22852. name: "Front",
  22853. image: {
  22854. source: "./media/characters/brian/front.svg",
  22855. extra: 737 / 692,
  22856. bottom: 55.4 / 785
  22857. }
  22858. },
  22859. },
  22860. [
  22861. {
  22862. name: "Normal",
  22863. height: math.unit(10 + 11 / 12, "feet"),
  22864. default: true
  22865. },
  22866. ]
  22867. ))
  22868. characterMakers.push(() => makeCharacter(
  22869. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22870. {
  22871. front: {
  22872. height: math.unit(5 + 8 / 12, "feet"),
  22873. weight: math.unit(140, "lb"),
  22874. name: "Front",
  22875. image: {
  22876. source: "./media/characters/khemri/front.svg",
  22877. extra: 4780 / 4059,
  22878. bottom: 80.1 / 4859.25
  22879. }
  22880. },
  22881. },
  22882. [
  22883. {
  22884. name: "Micro",
  22885. height: math.unit(6, "inches")
  22886. },
  22887. {
  22888. name: "Normal",
  22889. height: math.unit(5 + 8 / 12, "feet"),
  22890. default: true
  22891. },
  22892. ]
  22893. ))
  22894. characterMakers.push(() => makeCharacter(
  22895. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22896. {
  22897. front: {
  22898. height: math.unit(13, "feet"),
  22899. weight: math.unit(1700, "lb"),
  22900. name: "Front",
  22901. image: {
  22902. source: "./media/characters/felix-braveheart/front.svg",
  22903. extra: 1222 / 1157,
  22904. bottom: 53.2 / 1280
  22905. }
  22906. },
  22907. back: {
  22908. height: math.unit(13, "feet"),
  22909. weight: math.unit(1700, "lb"),
  22910. name: "Back",
  22911. image: {
  22912. source: "./media/characters/felix-braveheart/back.svg",
  22913. extra: 1277 / 1203,
  22914. bottom: 50.2 / 1327
  22915. }
  22916. },
  22917. feral: {
  22918. height: math.unit(6, "feet"),
  22919. weight: math.unit(400, "lb"),
  22920. name: "Feral",
  22921. image: {
  22922. source: "./media/characters/felix-braveheart/feral.svg",
  22923. extra: 682 / 625,
  22924. bottom: 6.9 / 688
  22925. }
  22926. },
  22927. },
  22928. [
  22929. {
  22930. name: "Normal",
  22931. height: math.unit(13, "feet"),
  22932. default: true
  22933. },
  22934. ]
  22935. ))
  22936. characterMakers.push(() => makeCharacter(
  22937. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22938. {
  22939. side: {
  22940. height: math.unit(5 + 11 / 12, "feet"),
  22941. weight: math.unit(1400, "lb"),
  22942. name: "Side",
  22943. image: {
  22944. source: "./media/characters/shadow-blade/side.svg",
  22945. extra: 1726 / 1267,
  22946. bottom: 58.4 / 1785
  22947. }
  22948. },
  22949. },
  22950. [
  22951. {
  22952. name: "Normal",
  22953. height: math.unit(5 + 11 / 12, "feet"),
  22954. default: true
  22955. },
  22956. ]
  22957. ))
  22958. characterMakers.push(() => makeCharacter(
  22959. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22960. {
  22961. front: {
  22962. height: math.unit(1 + 6 / 12, "feet"),
  22963. weight: math.unit(25, "lb"),
  22964. name: "Front",
  22965. image: {
  22966. source: "./media/characters/karla-halldor/front.svg",
  22967. extra: 1459 / 1383,
  22968. bottom: 12 / 1472
  22969. }
  22970. },
  22971. },
  22972. [
  22973. {
  22974. name: "Normal",
  22975. height: math.unit(1 + 6 / 12, "feet"),
  22976. default: true
  22977. },
  22978. ]
  22979. ))
  22980. characterMakers.push(() => makeCharacter(
  22981. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22982. {
  22983. front: {
  22984. height: math.unit(6 + 2 / 12, "feet"),
  22985. weight: math.unit(160, "lb"),
  22986. name: "Front",
  22987. image: {
  22988. source: "./media/characters/ariam/front.svg",
  22989. extra: 714 / 617,
  22990. bottom: 23.4 / 737,
  22991. }
  22992. },
  22993. squatting: {
  22994. height: math.unit(4.1, "feet"),
  22995. weight: math.unit(160, "lb"),
  22996. name: "Squatting",
  22997. image: {
  22998. source: "./media/characters/ariam/squatting.svg",
  22999. extra: 2617 / 2112,
  23000. bottom: 61.2 / 2681,
  23001. }
  23002. },
  23003. },
  23004. [
  23005. {
  23006. name: "Normal",
  23007. height: math.unit(6 + 2 / 12, "feet"),
  23008. default: true
  23009. },
  23010. {
  23011. name: "Normal+",
  23012. height: math.unit(4, "meters")
  23013. },
  23014. {
  23015. name: "Macro",
  23016. height: math.unit(50, "meters")
  23017. },
  23018. {
  23019. name: "Macro+",
  23020. height: math.unit(100, "meters")
  23021. },
  23022. {
  23023. name: "Megamacro",
  23024. height: math.unit(20, "km")
  23025. },
  23026. ]
  23027. ))
  23028. characterMakers.push(() => makeCharacter(
  23029. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23030. {
  23031. front: {
  23032. height: math.unit(1.67, "meters"),
  23033. weight: math.unit(140, "lb"),
  23034. name: "Front",
  23035. image: {
  23036. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23037. extra: 438 / 410,
  23038. bottom: 0.75 / 439
  23039. }
  23040. },
  23041. },
  23042. [
  23043. {
  23044. name: "Shrunken",
  23045. height: math.unit(7.6, "cm")
  23046. },
  23047. {
  23048. name: "Human Scale",
  23049. height: math.unit(1.67, "meters")
  23050. },
  23051. {
  23052. name: "Wolxi Scale",
  23053. height: math.unit(36.7, "meters"),
  23054. default: true
  23055. },
  23056. ]
  23057. ))
  23058. characterMakers.push(() => makeCharacter(
  23059. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23060. {
  23061. front: {
  23062. height: math.unit(1.73, "meters"),
  23063. weight: math.unit(240, "lb"),
  23064. name: "Front",
  23065. image: {
  23066. source: "./media/characters/izue-two-mothers/front.svg",
  23067. extra: 469 / 437,
  23068. bottom: 1.24 / 470.6
  23069. }
  23070. },
  23071. },
  23072. [
  23073. {
  23074. name: "Shrunken",
  23075. height: math.unit(7.86, "cm")
  23076. },
  23077. {
  23078. name: "Human Scale",
  23079. height: math.unit(1.73, "meters")
  23080. },
  23081. {
  23082. name: "Wolxi Scale",
  23083. height: math.unit(38, "meters"),
  23084. default: true
  23085. },
  23086. ]
  23087. ))
  23088. characterMakers.push(() => makeCharacter(
  23089. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23090. {
  23091. front: {
  23092. height: math.unit(1.55, "meters"),
  23093. weight: math.unit(120, "lb"),
  23094. name: "Front",
  23095. image: {
  23096. source: "./media/characters/teeku-love-shack/front.svg",
  23097. extra: 387 / 362,
  23098. bottom: 1.51 / 388
  23099. }
  23100. },
  23101. },
  23102. [
  23103. {
  23104. name: "Shrunken",
  23105. height: math.unit(7, "cm")
  23106. },
  23107. {
  23108. name: "Human Scale",
  23109. height: math.unit(1.55, "meters")
  23110. },
  23111. {
  23112. name: "Wolxi Scale",
  23113. height: math.unit(34.1, "meters"),
  23114. default: true
  23115. },
  23116. ]
  23117. ))
  23118. characterMakers.push(() => makeCharacter(
  23119. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23120. {
  23121. front: {
  23122. height: math.unit(1.83, "meters"),
  23123. weight: math.unit(135, "lb"),
  23124. name: "Front",
  23125. image: {
  23126. source: "./media/characters/dejma-the-red/front.svg",
  23127. extra: 480 / 458,
  23128. bottom: 1.8 / 482
  23129. }
  23130. },
  23131. },
  23132. [
  23133. {
  23134. name: "Shrunken",
  23135. height: math.unit(8.3, "cm")
  23136. },
  23137. {
  23138. name: "Human Scale",
  23139. height: math.unit(1.83, "meters")
  23140. },
  23141. {
  23142. name: "Wolxi Scale",
  23143. height: math.unit(40, "meters"),
  23144. default: true
  23145. },
  23146. ]
  23147. ))
  23148. characterMakers.push(() => makeCharacter(
  23149. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23150. {
  23151. front: {
  23152. height: math.unit(1.78, "meters"),
  23153. weight: math.unit(65, "kg"),
  23154. name: "Front",
  23155. image: {
  23156. source: "./media/characters/aki/front.svg",
  23157. extra: 452 / 415
  23158. }
  23159. },
  23160. frontNsfw: {
  23161. height: math.unit(1.78, "meters"),
  23162. weight: math.unit(65, "kg"),
  23163. name: "Front (NSFW)",
  23164. image: {
  23165. source: "./media/characters/aki/front-nsfw.svg",
  23166. extra: 452 / 415
  23167. }
  23168. },
  23169. back: {
  23170. height: math.unit(1.78, "meters"),
  23171. weight: math.unit(65, "kg"),
  23172. name: "Back",
  23173. image: {
  23174. source: "./media/characters/aki/back.svg",
  23175. extra: 452 / 415
  23176. }
  23177. },
  23178. rump: {
  23179. height: math.unit(2.05, "feet"),
  23180. name: "Rump",
  23181. image: {
  23182. source: "./media/characters/aki/rump.svg"
  23183. }
  23184. },
  23185. dick: {
  23186. height: math.unit(0.95, "feet"),
  23187. name: "Dick",
  23188. image: {
  23189. source: "./media/characters/aki/dick.svg"
  23190. }
  23191. },
  23192. },
  23193. [
  23194. {
  23195. name: "Micro",
  23196. height: math.unit(15, "cm")
  23197. },
  23198. {
  23199. name: "Normal",
  23200. height: math.unit(178, "cm"),
  23201. default: true
  23202. },
  23203. {
  23204. name: "Macro",
  23205. height: math.unit(214, "m")
  23206. },
  23207. {
  23208. name: "Macro+",
  23209. height: math.unit(534, "m")
  23210. },
  23211. ]
  23212. ))
  23213. characterMakers.push(() => makeCharacter(
  23214. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23215. {
  23216. front: {
  23217. height: math.unit(5 + 5 / 12, "feet"),
  23218. weight: math.unit(120, "lb"),
  23219. name: "Front",
  23220. image: {
  23221. source: "./media/characters/ari/front.svg",
  23222. extra: 714.5 / 682,
  23223. bottom: 8 / 722.5
  23224. }
  23225. },
  23226. },
  23227. [
  23228. {
  23229. name: "Normal",
  23230. height: math.unit(5 + 5 / 12, "feet")
  23231. },
  23232. {
  23233. name: "Macro",
  23234. height: math.unit(100, "feet"),
  23235. default: true
  23236. },
  23237. {
  23238. name: "Megamacro",
  23239. height: math.unit(100, "miles")
  23240. },
  23241. {
  23242. name: "Gigamacro",
  23243. height: math.unit(80000, "miles")
  23244. },
  23245. ]
  23246. ))
  23247. characterMakers.push(() => makeCharacter(
  23248. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23249. {
  23250. side: {
  23251. height: math.unit(9, "feet"),
  23252. weight: math.unit(400, "kg"),
  23253. name: "Side",
  23254. image: {
  23255. source: "./media/characters/bolt/side.svg",
  23256. extra: 1126 / 896,
  23257. bottom: 60 / 1187.3,
  23258. }
  23259. },
  23260. },
  23261. [
  23262. {
  23263. name: "Micro",
  23264. height: math.unit(5, "inches")
  23265. },
  23266. {
  23267. name: "Normal",
  23268. height: math.unit(9, "feet"),
  23269. default: true
  23270. },
  23271. {
  23272. name: "Macro",
  23273. height: math.unit(700, "feet")
  23274. },
  23275. {
  23276. name: "Max Size",
  23277. height: math.unit(1.52e22, "yottameters")
  23278. },
  23279. ]
  23280. ))
  23281. characterMakers.push(() => makeCharacter(
  23282. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23283. {
  23284. front: {
  23285. height: math.unit(4.53, "meters"),
  23286. weight: math.unit(3, "tons"),
  23287. name: "Front",
  23288. image: {
  23289. source: "./media/characters/draekon-sylviar/front.svg",
  23290. extra: 1228 / 1068,
  23291. bottom: 41 / 1270
  23292. }
  23293. },
  23294. tail: {
  23295. height: math.unit(1.772, "meter"),
  23296. name: "Tail",
  23297. image: {
  23298. source: "./media/characters/draekon-sylviar/tail.svg"
  23299. }
  23300. },
  23301. head: {
  23302. height: math.unit(1.331, "meter"),
  23303. name: "Head",
  23304. image: {
  23305. source: "./media/characters/draekon-sylviar/head.svg"
  23306. }
  23307. },
  23308. hand: {
  23309. height: math.unit(0.564, "meter"),
  23310. name: "Hand",
  23311. image: {
  23312. source: "./media/characters/draekon-sylviar/hand.svg"
  23313. }
  23314. },
  23315. foot: {
  23316. height: math.unit(0.621, "meter"),
  23317. name: "Foot",
  23318. image: {
  23319. source: "./media/characters/draekon-sylviar/foot.svg",
  23320. bottom: 32 / 324
  23321. }
  23322. },
  23323. dick: {
  23324. height: math.unit(61, "cm"),
  23325. name: "Dick",
  23326. image: {
  23327. source: "./media/characters/draekon-sylviar/dick.svg"
  23328. }
  23329. },
  23330. dickseparated: {
  23331. height: math.unit(61, "cm"),
  23332. name: "Dick-separated",
  23333. image: {
  23334. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23335. }
  23336. },
  23337. },
  23338. [
  23339. {
  23340. name: "Small",
  23341. height: math.unit(4.53 / 2, "meters"),
  23342. default: true
  23343. },
  23344. {
  23345. name: "Normal",
  23346. height: math.unit(4.53, "meters"),
  23347. default: true
  23348. },
  23349. {
  23350. name: "Large",
  23351. height: math.unit(4.53 * 2, "meters"),
  23352. },
  23353. ]
  23354. ))
  23355. characterMakers.push(() => makeCharacter(
  23356. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23357. {
  23358. front: {
  23359. height: math.unit(6 + 2 / 12, "feet"),
  23360. weight: math.unit(180, "lb"),
  23361. name: "Front",
  23362. image: {
  23363. source: "./media/characters/brawler/front.svg",
  23364. extra: 3301 / 3027,
  23365. bottom: 138 / 3439
  23366. }
  23367. },
  23368. },
  23369. [
  23370. {
  23371. name: "Normal",
  23372. height: math.unit(6 + 2 / 12, "feet"),
  23373. default: true
  23374. },
  23375. ]
  23376. ))
  23377. characterMakers.push(() => makeCharacter(
  23378. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23379. {
  23380. front: {
  23381. height: math.unit(11, "feet"),
  23382. weight: math.unit(1000, "lb"),
  23383. name: "Front",
  23384. image: {
  23385. source: "./media/characters/alex/front.svg",
  23386. bottom: 44.5 / 620
  23387. }
  23388. },
  23389. },
  23390. [
  23391. {
  23392. name: "Micro",
  23393. height: math.unit(5, "inches")
  23394. },
  23395. {
  23396. name: "Normal",
  23397. height: math.unit(11, "feet"),
  23398. default: true
  23399. },
  23400. {
  23401. name: "Macro",
  23402. height: math.unit(9.5e9, "feet")
  23403. },
  23404. {
  23405. name: "Max Size",
  23406. height: math.unit(1.4e283, "yottameters")
  23407. },
  23408. ]
  23409. ))
  23410. characterMakers.push(() => makeCharacter(
  23411. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23412. {
  23413. female: {
  23414. height: math.unit(29.9, "m"),
  23415. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23416. name: "Female",
  23417. image: {
  23418. source: "./media/characters/zenari/female.svg",
  23419. extra: 3281.6 / 3217,
  23420. bottom: 72.2 / 3353
  23421. }
  23422. },
  23423. male: {
  23424. height: math.unit(27.7, "m"),
  23425. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23426. name: "Male",
  23427. image: {
  23428. source: "./media/characters/zenari/male.svg",
  23429. extra: 3008 / 2991,
  23430. bottom: 54.6 / 3069
  23431. }
  23432. },
  23433. },
  23434. [
  23435. {
  23436. name: "Macro",
  23437. height: math.unit(29.7, "meters"),
  23438. default: true
  23439. },
  23440. ]
  23441. ))
  23442. characterMakers.push(() => makeCharacter(
  23443. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23444. {
  23445. female: {
  23446. height: math.unit(23.8, "m"),
  23447. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23448. name: "Female",
  23449. image: {
  23450. source: "./media/characters/mactarian/female.svg",
  23451. extra: 2662 / 2569,
  23452. bottom: 73 / 2736
  23453. }
  23454. },
  23455. male: {
  23456. height: math.unit(23.8, "m"),
  23457. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23458. name: "Male",
  23459. image: {
  23460. source: "./media/characters/mactarian/male.svg",
  23461. extra: 2673 / 2600,
  23462. bottom: 76 / 2750
  23463. }
  23464. },
  23465. },
  23466. [
  23467. {
  23468. name: "Macro",
  23469. height: math.unit(23.8, "meters"),
  23470. default: true
  23471. },
  23472. ]
  23473. ))
  23474. characterMakers.push(() => makeCharacter(
  23475. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23476. {
  23477. female: {
  23478. height: math.unit(19.3, "m"),
  23479. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23480. name: "Female",
  23481. image: {
  23482. source: "./media/characters/umok/female.svg",
  23483. extra: 2186 / 2078,
  23484. bottom: 87 / 2277
  23485. }
  23486. },
  23487. male: {
  23488. height: math.unit(19.5, "m"),
  23489. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23490. name: "Male",
  23491. image: {
  23492. source: "./media/characters/umok/male.svg",
  23493. extra: 2233 / 2140,
  23494. bottom: 24.4 / 2258
  23495. }
  23496. },
  23497. },
  23498. [
  23499. {
  23500. name: "Macro",
  23501. height: math.unit(19.3, "meters"),
  23502. default: true
  23503. },
  23504. ]
  23505. ))
  23506. characterMakers.push(() => makeCharacter(
  23507. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23508. {
  23509. female: {
  23510. height: math.unit(26.15, "m"),
  23511. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23512. name: "Female",
  23513. image: {
  23514. source: "./media/characters/joraxian/female.svg",
  23515. extra: 2912 / 2824,
  23516. bottom: 36 / 2956
  23517. }
  23518. },
  23519. male: {
  23520. height: math.unit(25.4, "m"),
  23521. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23522. name: "Male",
  23523. image: {
  23524. source: "./media/characters/joraxian/male.svg",
  23525. extra: 2877 / 2721,
  23526. bottom: 82 / 2967
  23527. }
  23528. },
  23529. },
  23530. [
  23531. {
  23532. name: "Macro",
  23533. height: math.unit(26.15, "meters"),
  23534. default: true
  23535. },
  23536. ]
  23537. ))
  23538. characterMakers.push(() => makeCharacter(
  23539. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23540. {
  23541. female: {
  23542. height: math.unit(21.6, "m"),
  23543. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23544. name: "Female",
  23545. image: {
  23546. source: "./media/characters/sthara/female.svg",
  23547. extra: 2516 / 2347,
  23548. bottom: 21.5 / 2537
  23549. }
  23550. },
  23551. male: {
  23552. height: math.unit(24, "m"),
  23553. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23554. name: "Male",
  23555. image: {
  23556. source: "./media/characters/sthara/male.svg",
  23557. extra: 2732 / 2607,
  23558. bottom: 23 / 2732
  23559. }
  23560. },
  23561. },
  23562. [
  23563. {
  23564. name: "Macro",
  23565. height: math.unit(21.6, "meters"),
  23566. default: true
  23567. },
  23568. ]
  23569. ))
  23570. characterMakers.push(() => makeCharacter(
  23571. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23572. {
  23573. front: {
  23574. height: math.unit(6 + 4 / 12, "feet"),
  23575. weight: math.unit(175, "lb"),
  23576. name: "Front",
  23577. image: {
  23578. source: "./media/characters/luka-bryzant/front.svg",
  23579. extra: 311 / 289,
  23580. bottom: 4 / 315
  23581. }
  23582. },
  23583. back: {
  23584. height: math.unit(6 + 4 / 12, "feet"),
  23585. weight: math.unit(175, "lb"),
  23586. name: "Back",
  23587. image: {
  23588. source: "./media/characters/luka-bryzant/back.svg",
  23589. extra: 311 / 289,
  23590. bottom: 3.8 / 313.7
  23591. }
  23592. },
  23593. },
  23594. [
  23595. {
  23596. name: "Micro",
  23597. height: math.unit(10, "inches")
  23598. },
  23599. {
  23600. name: "Normal",
  23601. height: math.unit(6 + 4 / 12, "feet"),
  23602. default: true
  23603. },
  23604. {
  23605. name: "Large",
  23606. height: math.unit(12, "feet")
  23607. },
  23608. ]
  23609. ))
  23610. characterMakers.push(() => makeCharacter(
  23611. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23612. {
  23613. front: {
  23614. height: math.unit(5 + 7 / 12, "feet"),
  23615. weight: math.unit(185, "lb"),
  23616. name: "Front",
  23617. image: {
  23618. source: "./media/characters/aman-aquila/front.svg",
  23619. extra: 1013 / 976,
  23620. bottom: 45.6 / 1057
  23621. }
  23622. },
  23623. side: {
  23624. height: math.unit(5 + 7 / 12, "feet"),
  23625. weight: math.unit(185, "lb"),
  23626. name: "Side",
  23627. image: {
  23628. source: "./media/characters/aman-aquila/side.svg",
  23629. extra: 1054 / 1011,
  23630. bottom: 15 / 1070
  23631. }
  23632. },
  23633. back: {
  23634. height: math.unit(5 + 7 / 12, "feet"),
  23635. weight: math.unit(185, "lb"),
  23636. name: "Back",
  23637. image: {
  23638. source: "./media/characters/aman-aquila/back.svg",
  23639. extra: 1026 / 970,
  23640. bottom: 12 / 1039
  23641. }
  23642. },
  23643. head: {
  23644. height: math.unit(1.211, "feet"),
  23645. name: "Head",
  23646. image: {
  23647. source: "./media/characters/aman-aquila/head.svg",
  23648. }
  23649. },
  23650. },
  23651. [
  23652. {
  23653. name: "Minimicro",
  23654. height: math.unit(0.057, "inches")
  23655. },
  23656. {
  23657. name: "Micro",
  23658. height: math.unit(7, "inches")
  23659. },
  23660. {
  23661. name: "Mini",
  23662. height: math.unit(3 + 7 / 12, "feet")
  23663. },
  23664. {
  23665. name: "Normal",
  23666. height: math.unit(5 + 7 / 12, "feet"),
  23667. default: true
  23668. },
  23669. {
  23670. name: "Macro",
  23671. height: math.unit(157 + 7 / 12, "feet")
  23672. },
  23673. {
  23674. name: "Megamacro",
  23675. height: math.unit(1557 + 7 / 12, "feet")
  23676. },
  23677. {
  23678. name: "Gigamacro",
  23679. height: math.unit(15557 + 7 / 12, "feet")
  23680. },
  23681. ]
  23682. ))
  23683. characterMakers.push(() => makeCharacter(
  23684. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23685. {
  23686. front: {
  23687. height: math.unit(3 + 2 / 12, "inches"),
  23688. weight: math.unit(0.3, "ounces"),
  23689. name: "Front",
  23690. image: {
  23691. source: "./media/characters/hiphae/front.svg",
  23692. extra: 1931 / 1683,
  23693. bottom: 24 / 1955
  23694. }
  23695. },
  23696. },
  23697. [
  23698. {
  23699. name: "Normal",
  23700. height: math.unit(3 + 1 / 2, "inches"),
  23701. default: true
  23702. },
  23703. ]
  23704. ))
  23705. characterMakers.push(() => makeCharacter(
  23706. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23707. {
  23708. front: {
  23709. height: math.unit(5 + 10 / 12, "feet"),
  23710. weight: math.unit(165, "lb"),
  23711. name: "Front",
  23712. image: {
  23713. source: "./media/characters/nicky/front.svg",
  23714. extra: 3144 / 2886,
  23715. bottom: 45.6 / 3192
  23716. }
  23717. },
  23718. back: {
  23719. height: math.unit(5 + 10 / 12, "feet"),
  23720. weight: math.unit(165, "lb"),
  23721. name: "Back",
  23722. image: {
  23723. source: "./media/characters/nicky/back.svg",
  23724. extra: 3055 / 2804,
  23725. bottom: 28.4 / 3087
  23726. }
  23727. },
  23728. frontclothed: {
  23729. height: math.unit(5 + 10 / 12, "feet"),
  23730. weight: math.unit(165, "lb"),
  23731. name: "Front-clothed",
  23732. image: {
  23733. source: "./media/characters/nicky/front-clothed.svg",
  23734. extra: 3184.9 / 2926.9,
  23735. bottom: 86.5 / 3239.9
  23736. }
  23737. },
  23738. foot: {
  23739. height: math.unit(1.16, "feet"),
  23740. name: "Foot",
  23741. image: {
  23742. source: "./media/characters/nicky/foot.svg"
  23743. }
  23744. },
  23745. feet: {
  23746. height: math.unit(1.34, "feet"),
  23747. name: "Feet",
  23748. image: {
  23749. source: "./media/characters/nicky/feet.svg"
  23750. }
  23751. },
  23752. maw: {
  23753. height: math.unit(0.9, "feet"),
  23754. name: "Maw",
  23755. image: {
  23756. source: "./media/characters/nicky/maw.svg"
  23757. }
  23758. },
  23759. },
  23760. [
  23761. {
  23762. name: "Normal",
  23763. height: math.unit(5 + 10 / 12, "feet"),
  23764. default: true
  23765. },
  23766. {
  23767. name: "Macro",
  23768. height: math.unit(60, "feet")
  23769. },
  23770. {
  23771. name: "Megamacro",
  23772. height: math.unit(1, "mile")
  23773. },
  23774. ]
  23775. ))
  23776. characterMakers.push(() => makeCharacter(
  23777. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23778. {
  23779. side: {
  23780. height: math.unit(10, "feet"),
  23781. weight: math.unit(600, "lb"),
  23782. name: "Side",
  23783. image: {
  23784. source: "./media/characters/blair/side.svg",
  23785. bottom: 16.6 / 475,
  23786. extra: 458 / 431
  23787. }
  23788. },
  23789. },
  23790. [
  23791. {
  23792. name: "Micro",
  23793. height: math.unit(8, "inches")
  23794. },
  23795. {
  23796. name: "Normal",
  23797. height: math.unit(10, "feet"),
  23798. default: true
  23799. },
  23800. {
  23801. name: "Macro",
  23802. height: math.unit(180, "feet")
  23803. },
  23804. ]
  23805. ))
  23806. characterMakers.push(() => makeCharacter(
  23807. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23808. {
  23809. front: {
  23810. height: math.unit(5 + 4 / 12, "feet"),
  23811. weight: math.unit(125, "lb"),
  23812. name: "Front",
  23813. image: {
  23814. source: "./media/characters/fisher/front.svg",
  23815. extra: 444 / 390,
  23816. bottom: 2 / 444.8
  23817. }
  23818. },
  23819. },
  23820. [
  23821. {
  23822. name: "Micro",
  23823. height: math.unit(4, "inches")
  23824. },
  23825. {
  23826. name: "Normal",
  23827. height: math.unit(5 + 4 / 12, "feet"),
  23828. default: true
  23829. },
  23830. {
  23831. name: "Macro",
  23832. height: math.unit(100, "feet")
  23833. },
  23834. ]
  23835. ))
  23836. characterMakers.push(() => makeCharacter(
  23837. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23838. {
  23839. front: {
  23840. height: math.unit(6.71, "feet"),
  23841. weight: math.unit(200, "lb"),
  23842. capacity: math.unit(1000000, "people"),
  23843. name: "Front",
  23844. image: {
  23845. source: "./media/characters/gliss/front.svg",
  23846. extra: 2347 / 2231,
  23847. bottom: 113 / 2462
  23848. }
  23849. },
  23850. hammerspaceSize: {
  23851. height: math.unit(6.71 * 717, "feet"),
  23852. weight: math.unit(200, "lb"),
  23853. capacity: math.unit(1000000, "people"),
  23854. name: "Hammerspace Size",
  23855. image: {
  23856. source: "./media/characters/gliss/front.svg",
  23857. extra: 2347 / 2231,
  23858. bottom: 113 / 2462
  23859. }
  23860. },
  23861. },
  23862. [
  23863. {
  23864. name: "Normal",
  23865. height: math.unit(6.71, "feet"),
  23866. default: true
  23867. },
  23868. ]
  23869. ))
  23870. characterMakers.push(() => makeCharacter(
  23871. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23872. {
  23873. side: {
  23874. height: math.unit(1.44, "m"),
  23875. weight: math.unit(80, "kg"),
  23876. name: "Side",
  23877. image: {
  23878. source: "./media/characters/dune-anderson/side.svg",
  23879. bottom: 49 / 1426
  23880. }
  23881. },
  23882. },
  23883. [
  23884. {
  23885. name: "Wolf-sized",
  23886. height: math.unit(1.44, "meters")
  23887. },
  23888. {
  23889. name: "Normal",
  23890. height: math.unit(5.05, "meters"),
  23891. default: true
  23892. },
  23893. {
  23894. name: "Big",
  23895. height: math.unit(14.4, "meters")
  23896. },
  23897. {
  23898. name: "Huge",
  23899. height: math.unit(144, "meters")
  23900. },
  23901. ]
  23902. ))
  23903. characterMakers.push(() => makeCharacter(
  23904. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23905. {
  23906. front: {
  23907. height: math.unit(7, "feet"),
  23908. weight: math.unit(425, "lb"),
  23909. name: "Front",
  23910. image: {
  23911. source: "./media/characters/hind/front.svg",
  23912. extra: 2091 / 1860,
  23913. bottom: 129 / 2220
  23914. }
  23915. },
  23916. back: {
  23917. height: math.unit(7, "feet"),
  23918. weight: math.unit(425, "lb"),
  23919. name: "Back",
  23920. image: {
  23921. source: "./media/characters/hind/back.svg",
  23922. extra: 2091 / 1860,
  23923. bottom: 24.6 / 2309
  23924. }
  23925. },
  23926. tail: {
  23927. height: math.unit(2.8, "feet"),
  23928. name: "Tail",
  23929. image: {
  23930. source: "./media/characters/hind/tail.svg"
  23931. }
  23932. },
  23933. head: {
  23934. height: math.unit(2.55, "feet"),
  23935. name: "Head",
  23936. image: {
  23937. source: "./media/characters/hind/head.svg"
  23938. }
  23939. },
  23940. },
  23941. [
  23942. {
  23943. name: "XS",
  23944. height: math.unit(0.7, "feet")
  23945. },
  23946. {
  23947. name: "Normal",
  23948. height: math.unit(7, "feet"),
  23949. default: true
  23950. },
  23951. {
  23952. name: "XL",
  23953. height: math.unit(70, "feet")
  23954. },
  23955. ]
  23956. ))
  23957. characterMakers.push(() => makeCharacter(
  23958. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23959. {
  23960. front: {
  23961. height: math.unit(6, "feet"),
  23962. weight: math.unit(150, "lb"),
  23963. name: "Front",
  23964. image: {
  23965. source: "./media/characters/dylan-skaven/front.svg",
  23966. extra: 2318 / 2063,
  23967. bottom: 93.4 / 2410
  23968. }
  23969. },
  23970. },
  23971. [
  23972. {
  23973. name: "Nano",
  23974. height: math.unit(1, "mm")
  23975. },
  23976. {
  23977. name: "Micro",
  23978. height: math.unit(1, "cm")
  23979. },
  23980. {
  23981. name: "Normal",
  23982. height: math.unit(2.1, "meters"),
  23983. default: true
  23984. },
  23985. ]
  23986. ))
  23987. characterMakers.push(() => makeCharacter(
  23988. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23989. {
  23990. front: {
  23991. height: math.unit(7 + 5 / 12, "feet"),
  23992. weight: math.unit(357, "lb"),
  23993. name: "Front",
  23994. image: {
  23995. source: "./media/characters/solex-draconov/front.svg",
  23996. extra: 1993 / 1865,
  23997. bottom: 117 / 2111
  23998. }
  23999. },
  24000. },
  24001. [
  24002. {
  24003. name: "Natural Height",
  24004. height: math.unit(7 + 5 / 12, "feet"),
  24005. default: true
  24006. },
  24007. {
  24008. name: "Macro",
  24009. height: math.unit(350, "feet")
  24010. },
  24011. {
  24012. name: "Macro+",
  24013. height: math.unit(1000, "feet")
  24014. },
  24015. {
  24016. name: "Megamacro",
  24017. height: math.unit(20, "km")
  24018. },
  24019. {
  24020. name: "Megamacro+",
  24021. height: math.unit(1000, "km")
  24022. },
  24023. {
  24024. name: "Gigamacro",
  24025. height: math.unit(2.5, "Gm")
  24026. },
  24027. {
  24028. name: "Teramacro",
  24029. height: math.unit(15, "Tm")
  24030. },
  24031. {
  24032. name: "Galactic",
  24033. height: math.unit(30, "Zm")
  24034. },
  24035. {
  24036. name: "Universal",
  24037. height: math.unit(21000, "Ym")
  24038. },
  24039. {
  24040. name: "Omniversal",
  24041. height: math.unit(9.861e50, "Ym")
  24042. },
  24043. {
  24044. name: "Existential",
  24045. height: math.unit(1e300, "meters")
  24046. },
  24047. ]
  24048. ))
  24049. characterMakers.push(() => makeCharacter(
  24050. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24051. {
  24052. side: {
  24053. height: math.unit(25, "feet"),
  24054. weight: math.unit(90000, "lb"),
  24055. name: "Side",
  24056. image: {
  24057. source: "./media/characters/mandarax/side.svg",
  24058. extra: 614 / 332,
  24059. bottom: 55 / 630
  24060. }
  24061. },
  24062. head: {
  24063. height: math.unit(11.4, "feet"),
  24064. name: "Head",
  24065. image: {
  24066. source: "./media/characters/mandarax/head.svg"
  24067. }
  24068. },
  24069. belly: {
  24070. height: math.unit(33, "feet"),
  24071. name: "Belly",
  24072. capacity: math.unit(500, "people"),
  24073. image: {
  24074. source: "./media/characters/mandarax/belly.svg"
  24075. }
  24076. },
  24077. dick: {
  24078. height: math.unit(8.46, "feet"),
  24079. name: "Dick",
  24080. image: {
  24081. source: "./media/characters/mandarax/dick.svg"
  24082. }
  24083. },
  24084. top: {
  24085. height: math.unit(28, "meters"),
  24086. name: "Top",
  24087. image: {
  24088. source: "./media/characters/mandarax/top.svg"
  24089. }
  24090. },
  24091. },
  24092. [
  24093. {
  24094. name: "Normal",
  24095. height: math.unit(25, "feet"),
  24096. default: true
  24097. },
  24098. ]
  24099. ))
  24100. characterMakers.push(() => makeCharacter(
  24101. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24102. {
  24103. front: {
  24104. height: math.unit(5, "feet"),
  24105. weight: math.unit(90, "lb"),
  24106. name: "Front",
  24107. image: {
  24108. source: "./media/characters/pixil/front.svg",
  24109. extra: 2000 / 1618,
  24110. bottom: 12.3 / 2011
  24111. }
  24112. },
  24113. },
  24114. [
  24115. {
  24116. name: "Normal",
  24117. height: math.unit(5, "feet"),
  24118. default: true
  24119. },
  24120. {
  24121. name: "Megamacro",
  24122. height: math.unit(10, "miles"),
  24123. },
  24124. ]
  24125. ))
  24126. characterMakers.push(() => makeCharacter(
  24127. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24128. {
  24129. front: {
  24130. height: math.unit(7 + 2 / 12, "feet"),
  24131. weight: math.unit(200, "lb"),
  24132. name: "Front",
  24133. image: {
  24134. source: "./media/characters/angel/front.svg",
  24135. extra: 1830 / 1737,
  24136. bottom: 22.6 / 1854,
  24137. }
  24138. },
  24139. },
  24140. [
  24141. {
  24142. name: "Normal",
  24143. height: math.unit(7 + 2 / 12, "feet"),
  24144. default: true
  24145. },
  24146. {
  24147. name: "Macro",
  24148. height: math.unit(1000, "feet")
  24149. },
  24150. {
  24151. name: "Megamacro",
  24152. height: math.unit(2, "miles")
  24153. },
  24154. {
  24155. name: "Gigamacro",
  24156. height: math.unit(20, "earths")
  24157. },
  24158. ]
  24159. ))
  24160. characterMakers.push(() => makeCharacter(
  24161. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24162. {
  24163. front: {
  24164. height: math.unit(5, "feet"),
  24165. weight: math.unit(180, "lb"),
  24166. name: "Front",
  24167. image: {
  24168. source: "./media/characters/mekana/front.svg",
  24169. extra: 1671 / 1605,
  24170. bottom: 3.5 / 1691
  24171. }
  24172. },
  24173. side: {
  24174. height: math.unit(5, "feet"),
  24175. weight: math.unit(180, "lb"),
  24176. name: "Side",
  24177. image: {
  24178. source: "./media/characters/mekana/side.svg",
  24179. extra: 1671 / 1605,
  24180. bottom: 3.5 / 1691
  24181. }
  24182. },
  24183. back: {
  24184. height: math.unit(5, "feet"),
  24185. weight: math.unit(180, "lb"),
  24186. name: "Back",
  24187. image: {
  24188. source: "./media/characters/mekana/back.svg",
  24189. extra: 1671 / 1605,
  24190. bottom: 3.5 / 1691
  24191. }
  24192. },
  24193. },
  24194. [
  24195. {
  24196. name: "Normal",
  24197. height: math.unit(5, "feet"),
  24198. default: true
  24199. },
  24200. ]
  24201. ))
  24202. characterMakers.push(() => makeCharacter(
  24203. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24204. {
  24205. front: {
  24206. height: math.unit(4 + 6 / 12, "feet"),
  24207. weight: math.unit(80, "lb"),
  24208. name: "Front",
  24209. image: {
  24210. source: "./media/characters/pixie/front.svg",
  24211. extra: 1924 / 1825,
  24212. bottom: 22.4 / 1946
  24213. }
  24214. },
  24215. },
  24216. [
  24217. {
  24218. name: "Normal",
  24219. height: math.unit(4 + 6 / 12, "feet"),
  24220. default: true
  24221. },
  24222. {
  24223. name: "Macro",
  24224. height: math.unit(40, "feet")
  24225. },
  24226. ]
  24227. ))
  24228. characterMakers.push(() => makeCharacter(
  24229. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24230. {
  24231. front: {
  24232. height: math.unit(2.1, "meters"),
  24233. weight: math.unit(200, "lb"),
  24234. name: "Front",
  24235. image: {
  24236. source: "./media/characters/the-lascivious/front.svg",
  24237. extra: 1 / 0.893,
  24238. bottom: 3.5 / 573.7
  24239. }
  24240. },
  24241. },
  24242. [
  24243. {
  24244. name: "Human Scale",
  24245. height: math.unit(2.1, "meters")
  24246. },
  24247. {
  24248. name: "Wolxi Scale",
  24249. height: math.unit(46.2, "m"),
  24250. default: true
  24251. },
  24252. {
  24253. name: "Boinker of Buildings",
  24254. height: math.unit(10, "km")
  24255. },
  24256. {
  24257. name: "Shagger of Skyscrapers",
  24258. height: math.unit(40, "km")
  24259. },
  24260. {
  24261. name: "Banger of Boroughs",
  24262. height: math.unit(4000, "km")
  24263. },
  24264. {
  24265. name: "Screwer of States",
  24266. height: math.unit(100000, "km")
  24267. },
  24268. {
  24269. name: "Pounder of Planets",
  24270. height: math.unit(2000000, "km")
  24271. },
  24272. ]
  24273. ))
  24274. characterMakers.push(() => makeCharacter(
  24275. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24276. {
  24277. front: {
  24278. height: math.unit(6, "feet"),
  24279. weight: math.unit(150, "lb"),
  24280. name: "Front",
  24281. image: {
  24282. source: "./media/characters/aj/front.svg",
  24283. extra: 2039 / 1562,
  24284. bottom: 40 / 2079
  24285. }
  24286. },
  24287. },
  24288. [
  24289. {
  24290. name: "Normal",
  24291. height: math.unit(11 + 6 / 12, "feet"),
  24292. default: true
  24293. },
  24294. {
  24295. name: "Megamacro",
  24296. height: math.unit(60, "megameters")
  24297. },
  24298. ]
  24299. ))
  24300. characterMakers.push(() => makeCharacter(
  24301. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24302. {
  24303. side: {
  24304. height: math.unit(31 + 8/12, "feet"),
  24305. weight: math.unit(75000, "kg"),
  24306. name: "Side",
  24307. image: {
  24308. source: "./media/characters/koros/side.svg",
  24309. extra: 1442/1297,
  24310. bottom: 122.7/1562
  24311. }
  24312. },
  24313. dicksKingsCrown: {
  24314. height: math.unit(6, "feet"),
  24315. name: "Dicks (King's Crown)",
  24316. image: {
  24317. source: "./media/characters/koros/dicks-kings-crown.svg"
  24318. }
  24319. },
  24320. dicksTailSet: {
  24321. height: math.unit(3, "feet"),
  24322. name: "Dicks (Tail Set)",
  24323. image: {
  24324. source: "./media/characters/koros/dicks-tail-set.svg"
  24325. }
  24326. },
  24327. dickCumming: {
  24328. height: math.unit(7.98, "feet"),
  24329. name: "Dick (Cumming)",
  24330. image: {
  24331. source: "./media/characters/koros/dick-cumming.svg"
  24332. }
  24333. },
  24334. dicksBack: {
  24335. height: math.unit(5.9, "feet"),
  24336. name: "Dicks (Back)",
  24337. image: {
  24338. source: "./media/characters/koros/dicks-back.svg"
  24339. }
  24340. },
  24341. dicksFront: {
  24342. height: math.unit(3.72, "feet"),
  24343. name: "Dicks (Front)",
  24344. image: {
  24345. source: "./media/characters/koros/dicks-front.svg"
  24346. }
  24347. },
  24348. dicksPeeking: {
  24349. height: math.unit(3.0, "feet"),
  24350. name: "Dicks (Peeking)",
  24351. image: {
  24352. source: "./media/characters/koros/dicks-peeking.svg"
  24353. }
  24354. },
  24355. eye: {
  24356. height: math.unit(1.7, "feet"),
  24357. name: "Eye",
  24358. image: {
  24359. source: "./media/characters/koros/eye.svg"
  24360. }
  24361. },
  24362. headFront: {
  24363. height: math.unit(11.69, "feet"),
  24364. name: "Head (Front)",
  24365. image: {
  24366. source: "./media/characters/koros/head-front.svg"
  24367. }
  24368. },
  24369. headSide: {
  24370. height: math.unit(14, "feet"),
  24371. name: "Head (Side)",
  24372. image: {
  24373. source: "./media/characters/koros/head-side.svg"
  24374. }
  24375. },
  24376. leg: {
  24377. height: math.unit(17, "feet"),
  24378. name: "Leg",
  24379. image: {
  24380. source: "./media/characters/koros/leg.svg"
  24381. }
  24382. },
  24383. mawSide: {
  24384. height: math.unit(12.8, "feet"),
  24385. name: "Maw (Side)",
  24386. image: {
  24387. source: "./media/characters/koros/maw-side.svg"
  24388. }
  24389. },
  24390. mawSpitting: {
  24391. height: math.unit(17, "feet"),
  24392. name: "Maw (Spitting)",
  24393. image: {
  24394. source: "./media/characters/koros/maw-spitting.svg"
  24395. }
  24396. },
  24397. slit: {
  24398. height: math.unit(2.8, "feet"),
  24399. name: "Slit",
  24400. image: {
  24401. source: "./media/characters/koros/slit.svg"
  24402. }
  24403. },
  24404. stomach: {
  24405. height: math.unit(6.8, "feet"),
  24406. capacity: math.unit(20, "people"),
  24407. name: "Stomach",
  24408. image: {
  24409. source: "./media/characters/koros/stomach.svg"
  24410. }
  24411. },
  24412. wingspanBottom: {
  24413. height: math.unit(114, "feet"),
  24414. name: "Wingspan (Bottom)",
  24415. image: {
  24416. source: "./media/characters/koros/wingspan-bottom.svg"
  24417. }
  24418. },
  24419. wingspanTop: {
  24420. height: math.unit(104, "feet"),
  24421. name: "Wingspan (Top)",
  24422. image: {
  24423. source: "./media/characters/koros/wingspan-top.svg"
  24424. }
  24425. },
  24426. },
  24427. [
  24428. {
  24429. name: "Normal",
  24430. height: math.unit(31 + 8/12, "feet"),
  24431. default: true
  24432. },
  24433. ]
  24434. ))
  24435. characterMakers.push(() => makeCharacter(
  24436. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24437. {
  24438. front: {
  24439. height: math.unit(18 + 5/12, "feet"),
  24440. weight: math.unit(3750, "kg"),
  24441. name: "Front",
  24442. image: {
  24443. source: "./media/characters/vexx/front.svg",
  24444. extra: 426/396,
  24445. bottom: 31.5/458
  24446. }
  24447. },
  24448. maw: {
  24449. height: math.unit(6, "feet"),
  24450. name: "Maw",
  24451. image: {
  24452. source: "./media/characters/vexx/maw.svg"
  24453. }
  24454. },
  24455. },
  24456. [
  24457. {
  24458. name: "Normal",
  24459. height: math.unit(18 + 5/12, "feet"),
  24460. default: true
  24461. },
  24462. ]
  24463. ))
  24464. characterMakers.push(() => makeCharacter(
  24465. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24466. {
  24467. front: {
  24468. height: math.unit(17 + 6/12, "feet"),
  24469. weight: math.unit(150, "lb"),
  24470. name: "Front",
  24471. image: {
  24472. source: "./media/characters/baadra/front.svg",
  24473. extra: 3137/2890,
  24474. bottom: 168.4/3305
  24475. }
  24476. },
  24477. back: {
  24478. height: math.unit(17 + 6/12, "feet"),
  24479. weight: math.unit(150, "lb"),
  24480. name: "Back",
  24481. image: {
  24482. source: "./media/characters/baadra/back.svg",
  24483. extra: 3142/2890,
  24484. bottom: 220/3371
  24485. }
  24486. },
  24487. head: {
  24488. height: math.unit(5.45, "feet"),
  24489. name: "Head",
  24490. image: {
  24491. source: "./media/characters/baadra/head.svg"
  24492. }
  24493. },
  24494. headAngry: {
  24495. height: math.unit(4.95, "feet"),
  24496. name: "Head (Angry)",
  24497. image: {
  24498. source: "./media/characters/baadra/head-angry.svg"
  24499. }
  24500. },
  24501. headOpen: {
  24502. height: math.unit(6, "feet"),
  24503. name: "Head (Open)",
  24504. image: {
  24505. source: "./media/characters/baadra/head-open.svg"
  24506. }
  24507. },
  24508. },
  24509. [
  24510. {
  24511. name: "Normal",
  24512. height: math.unit(17 + 6/12, "feet"),
  24513. default: true
  24514. },
  24515. ]
  24516. ))
  24517. characterMakers.push(() => makeCharacter(
  24518. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24519. {
  24520. front: {
  24521. height: math.unit(7 + 3/12, "feet"),
  24522. weight: math.unit(180, "lb"),
  24523. name: "Front",
  24524. image: {
  24525. source: "./media/characters/juri/front.svg",
  24526. extra: 1401/1237,
  24527. bottom: 18.5/1418
  24528. }
  24529. },
  24530. side: {
  24531. height: math.unit(7 + 3/12, "feet"),
  24532. weight: math.unit(180, "lb"),
  24533. name: "Side",
  24534. image: {
  24535. source: "./media/characters/juri/side.svg",
  24536. extra: 1424/1242,
  24537. bottom: 18.5/1447
  24538. }
  24539. },
  24540. sitting: {
  24541. height: math.unit(6, "feet"),
  24542. weight: math.unit(180, "lb"),
  24543. name: "Sitting",
  24544. image: {
  24545. source: "./media/characters/juri/sitting.svg",
  24546. extra: 1270/1143,
  24547. bottom: 100/1343
  24548. }
  24549. },
  24550. back: {
  24551. height: math.unit(7 + 3/12, "feet"),
  24552. weight: math.unit(180, "lb"),
  24553. name: "Back",
  24554. image: {
  24555. source: "./media/characters/juri/back.svg",
  24556. extra: 1377/1240,
  24557. bottom: 23.7/1405
  24558. }
  24559. },
  24560. maw: {
  24561. height: math.unit(2.8, "feet"),
  24562. name: "Maw",
  24563. image: {
  24564. source: "./media/characters/juri/maw.svg"
  24565. }
  24566. },
  24567. stomach: {
  24568. height: math.unit(0.89, "feet"),
  24569. capacity: math.unit(4, "liters"),
  24570. name: "Stomach",
  24571. image: {
  24572. source: "./media/characters/juri/stomach.svg"
  24573. }
  24574. },
  24575. },
  24576. [
  24577. {
  24578. name: "Normal",
  24579. height: math.unit(7 + 3/12, "feet"),
  24580. default: true
  24581. },
  24582. ]
  24583. ))
  24584. characterMakers.push(() => makeCharacter(
  24585. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24586. {
  24587. fox: {
  24588. height: math.unit(5 + 6/12, "feet"),
  24589. weight: math.unit(140, "lb"),
  24590. name: "Fox",
  24591. image: {
  24592. source: "./media/characters/maxene-sita/fox.svg",
  24593. extra: 146/138,
  24594. bottom: 2.1/148.19
  24595. }
  24596. },
  24597. kitsune: {
  24598. height: math.unit(10, "feet"),
  24599. weight: math.unit(800, "lb"),
  24600. name: "Kitsune",
  24601. image: {
  24602. source: "./media/characters/maxene-sita/kitsune.svg",
  24603. extra: 185/176,
  24604. bottom: 4.7/189.9
  24605. }
  24606. },
  24607. },
  24608. [
  24609. {
  24610. name: "Normal",
  24611. height: math.unit(5 + 6/12, "feet"),
  24612. default: true
  24613. },
  24614. ]
  24615. ))
  24616. characterMakers.push(() => makeCharacter(
  24617. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24618. {
  24619. front: {
  24620. height: math.unit(3 + 4/12, "feet"),
  24621. weight: math.unit(70, "lb"),
  24622. name: "Front",
  24623. image: {
  24624. source: "./media/characters/maia/front.svg",
  24625. extra: 227/219.5,
  24626. bottom: 40 / 267
  24627. }
  24628. },
  24629. back: {
  24630. height: math.unit(3 + 4/12, "feet"),
  24631. weight: math.unit(70, "lb"),
  24632. name: "Back",
  24633. image: {
  24634. source: "./media/characters/maia/back.svg",
  24635. extra: 237/225
  24636. }
  24637. },
  24638. },
  24639. [
  24640. {
  24641. name: "Normal",
  24642. height: math.unit(3 + 4/12, "feet"),
  24643. default: true
  24644. },
  24645. ]
  24646. ))
  24647. characterMakers.push(() => makeCharacter(
  24648. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24649. {
  24650. front: {
  24651. height: math.unit(5 + 10/12, "feet"),
  24652. weight: math.unit(197, "lb"),
  24653. name: "Front",
  24654. image: {
  24655. source: "./media/characters/jabaro/front.svg",
  24656. extra: 225/216,
  24657. bottom: 5.06/230
  24658. }
  24659. },
  24660. back: {
  24661. height: math.unit(5 + 10/12, "feet"),
  24662. weight: math.unit(197, "lb"),
  24663. name: "Back",
  24664. image: {
  24665. source: "./media/characters/jabaro/back.svg",
  24666. extra: 225/219,
  24667. bottom: 1.9/227
  24668. }
  24669. },
  24670. },
  24671. [
  24672. {
  24673. name: "Normal",
  24674. height: math.unit(5 + 10/12, "feet"),
  24675. default: true
  24676. },
  24677. ]
  24678. ))
  24679. characterMakers.push(() => makeCharacter(
  24680. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24681. {
  24682. front: {
  24683. height: math.unit(5 + 8/12, "feet"),
  24684. weight: math.unit(139, "lb"),
  24685. name: "Front",
  24686. image: {
  24687. source: "./media/characters/risa/front.svg",
  24688. extra: 270/260,
  24689. bottom: 11.2/282
  24690. }
  24691. },
  24692. back: {
  24693. height: math.unit(5 + 8/12, "feet"),
  24694. weight: math.unit(139, "lb"),
  24695. name: "Back",
  24696. image: {
  24697. source: "./media/characters/risa/back.svg",
  24698. extra: 264/255,
  24699. bottom: 4/268
  24700. }
  24701. },
  24702. },
  24703. [
  24704. {
  24705. name: "Normal",
  24706. height: math.unit(5 + 8/12, "feet"),
  24707. default: true
  24708. },
  24709. ]
  24710. ))
  24711. characterMakers.push(() => makeCharacter(
  24712. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24713. {
  24714. front: {
  24715. height: math.unit(2 + 11/12, "feet"),
  24716. weight: math.unit(30, "lb"),
  24717. name: "Front",
  24718. image: {
  24719. source: "./media/characters/weatley/front.svg",
  24720. bottom: 10.7/414,
  24721. extra: 403.5/362
  24722. }
  24723. },
  24724. back: {
  24725. height: math.unit(2 + 11/12, "feet"),
  24726. weight: math.unit(30, "lb"),
  24727. name: "Back",
  24728. image: {
  24729. source: "./media/characters/weatley/back.svg",
  24730. bottom: 10.7/414,
  24731. extra: 403.5/362
  24732. }
  24733. },
  24734. },
  24735. [
  24736. {
  24737. name: "Normal",
  24738. height: math.unit(2 + 11/12, "feet"),
  24739. default: true
  24740. },
  24741. ]
  24742. ))
  24743. characterMakers.push(() => makeCharacter(
  24744. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24745. {
  24746. front: {
  24747. height: math.unit(5 + 2/12, "feet"),
  24748. weight: math.unit(50, "kg"),
  24749. name: "Front",
  24750. image: {
  24751. source: "./media/characters/mercury-crescent/front.svg",
  24752. extra: 1088/1033,
  24753. bottom: 18.9/1109
  24754. }
  24755. },
  24756. },
  24757. [
  24758. {
  24759. name: "Normal",
  24760. height: math.unit(5 + 2/12, "feet"),
  24761. default: true
  24762. },
  24763. ]
  24764. ))
  24765. characterMakers.push(() => makeCharacter(
  24766. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24767. {
  24768. front: {
  24769. height: math.unit(2, "feet"),
  24770. weight: math.unit(15, "kg"),
  24771. name: "Front",
  24772. image: {
  24773. source: "./media/characters/diamond-jones/front.svg",
  24774. bottom: 16/568
  24775. }
  24776. },
  24777. },
  24778. [
  24779. {
  24780. name: "Normal",
  24781. height: math.unit(2, "feet"),
  24782. default: true
  24783. },
  24784. ]
  24785. ))
  24786. characterMakers.push(() => makeCharacter(
  24787. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24788. {
  24789. front: {
  24790. height: math.unit(3, "feet"),
  24791. weight: math.unit(30, "kg"),
  24792. name: "Front",
  24793. image: {
  24794. source: "./media/characters/sweet-bit/front.svg",
  24795. extra: 675/567,
  24796. bottom: 27.7/703
  24797. }
  24798. },
  24799. },
  24800. [
  24801. {
  24802. name: "Normal",
  24803. height: math.unit(3, "feet"),
  24804. default: true
  24805. },
  24806. ]
  24807. ))
  24808. characterMakers.push(() => makeCharacter(
  24809. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24810. {
  24811. side: {
  24812. height: math.unit(9.178, "feet"),
  24813. weight: math.unit(500, "lb"),
  24814. name: "Side",
  24815. image: {
  24816. source: "./media/characters/umbrazen/side.svg",
  24817. extra: 1730/1473,
  24818. bottom: 34.6/1765
  24819. }
  24820. },
  24821. },
  24822. [
  24823. {
  24824. name: "Normal",
  24825. height: math.unit(9.178, "feet"),
  24826. default: true
  24827. },
  24828. ]
  24829. ))
  24830. characterMakers.push(() => makeCharacter(
  24831. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24832. {
  24833. front: {
  24834. height: math.unit(10, "feet"),
  24835. weight: math.unit(750, "lb"),
  24836. name: "Front",
  24837. image: {
  24838. source: "./media/characters/arlist/front.svg",
  24839. extra: 961/778,
  24840. bottom: 6.2/986
  24841. }
  24842. },
  24843. },
  24844. [
  24845. {
  24846. name: "Normal",
  24847. height: math.unit(10, "feet"),
  24848. default: true
  24849. },
  24850. ]
  24851. ))
  24852. characterMakers.push(() => makeCharacter(
  24853. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24854. {
  24855. front: {
  24856. height: math.unit(5 + 1/12, "feet"),
  24857. weight: math.unit(110, "lb"),
  24858. name: "Front",
  24859. image: {
  24860. source: "./media/characters/aradel/front.svg",
  24861. extra: 324/303,
  24862. bottom: 3.6/329.4
  24863. }
  24864. },
  24865. },
  24866. [
  24867. {
  24868. name: "Normal",
  24869. height: math.unit(5 + 1/12, "feet"),
  24870. default: true
  24871. },
  24872. ]
  24873. ))
  24874. characterMakers.push(() => makeCharacter(
  24875. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24876. {
  24877. front: {
  24878. height: math.unit(3 + 8/12, "feet"),
  24879. weight: math.unit(50, "lb"),
  24880. name: "Front",
  24881. image: {
  24882. source: "./media/characters/serryn/front.svg",
  24883. extra: 1792/1656,
  24884. bottom: 43.5/1840
  24885. }
  24886. },
  24887. },
  24888. [
  24889. {
  24890. name: "Normal",
  24891. height: math.unit(3 + 8/12, "feet"),
  24892. default: true
  24893. },
  24894. ]
  24895. ))
  24896. characterMakers.push(() => makeCharacter(
  24897. { name: "Xavier Thyme" },
  24898. {
  24899. front: {
  24900. height: math.unit(7 + 10/12, "feet"),
  24901. weight: math.unit(255, "lb"),
  24902. name: "Front",
  24903. image: {
  24904. source: "./media/characters/xavier-thyme/front.svg",
  24905. extra: 3733/3642,
  24906. bottom: 131/3869
  24907. }
  24908. },
  24909. frontRaven: {
  24910. height: math.unit(7 + 10/12, "feet"),
  24911. weight: math.unit(255, "lb"),
  24912. name: "Front (Raven)",
  24913. image: {
  24914. source: "./media/characters/xavier-thyme/front-raven.svg",
  24915. extra: 4385/3642,
  24916. bottom: 131/4517
  24917. }
  24918. },
  24919. },
  24920. [
  24921. {
  24922. name: "Normal",
  24923. height: math.unit(7 + 10/12, "feet"),
  24924. default: true
  24925. },
  24926. ]
  24927. ))
  24928. characterMakers.push(() => makeCharacter(
  24929. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24930. {
  24931. front: {
  24932. height: math.unit(1.6, "m"),
  24933. weight: math.unit(50, "kg"),
  24934. name: "Front",
  24935. image: {
  24936. source: "./media/characters/kiki/front.svg",
  24937. extra: 4682/3610,
  24938. bottom: 115/4777
  24939. }
  24940. },
  24941. },
  24942. [
  24943. {
  24944. name: "Normal",
  24945. height: math.unit(1.6, "meters"),
  24946. default: true
  24947. },
  24948. ]
  24949. ))
  24950. characterMakers.push(() => makeCharacter(
  24951. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24952. {
  24953. front: {
  24954. height: math.unit(50, "m"),
  24955. weight: math.unit(500, "tonnes"),
  24956. name: "Front",
  24957. image: {
  24958. source: "./media/characters/ryoko/front.svg",
  24959. extra: 4632/3926,
  24960. bottom: 193/4823
  24961. }
  24962. },
  24963. },
  24964. [
  24965. {
  24966. name: "Normal",
  24967. height: math.unit(50, "meters"),
  24968. default: true
  24969. },
  24970. ]
  24971. ))
  24972. characterMakers.push(() => makeCharacter(
  24973. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24974. {
  24975. front: {
  24976. height: math.unit(30, "m"),
  24977. weight: math.unit(22, "tonnes"),
  24978. name: "Front",
  24979. image: {
  24980. source: "./media/characters/elio/front.svg",
  24981. extra: 4582/3720,
  24982. bottom: 236/4828
  24983. }
  24984. },
  24985. },
  24986. [
  24987. {
  24988. name: "Normal",
  24989. height: math.unit(30, "meters"),
  24990. default: true
  24991. },
  24992. ]
  24993. ))
  24994. characterMakers.push(() => makeCharacter(
  24995. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  24996. {
  24997. front: {
  24998. height: math.unit(6 + 3/12, "feet"),
  24999. weight: math.unit(120, "lb"),
  25000. name: "Front",
  25001. image: {
  25002. source: "./media/characters/azura/front.svg",
  25003. extra: 1149/1135,
  25004. bottom: 45/1194
  25005. }
  25006. },
  25007. frontClothed: {
  25008. height: math.unit(6 + 3/12, "feet"),
  25009. weight: math.unit(120, "lb"),
  25010. name: "Front (Clothed)",
  25011. image: {
  25012. source: "./media/characters/azura/front-clothed.svg",
  25013. extra: 1149/1135,
  25014. bottom: 45/1194
  25015. }
  25016. },
  25017. },
  25018. [
  25019. {
  25020. name: "Normal",
  25021. height: math.unit(6 + 3/12, "feet"),
  25022. default: true
  25023. },
  25024. {
  25025. name: "Macro",
  25026. height: math.unit(20 + 6/12, "feet")
  25027. },
  25028. {
  25029. name: "Megamacro",
  25030. height: math.unit(12, "miles")
  25031. },
  25032. {
  25033. name: "Gigamacro",
  25034. height: math.unit(10000, "miles")
  25035. },
  25036. {
  25037. name: "Teramacro",
  25038. height: math.unit(900000, "miles")
  25039. },
  25040. ]
  25041. ))
  25042. characterMakers.push(() => makeCharacter(
  25043. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25044. {
  25045. front: {
  25046. height: math.unit(12, "feet"),
  25047. weight: math.unit(1, "ton"),
  25048. capacity: math.unit(660000, "gallons"),
  25049. name: "Front",
  25050. image: {
  25051. source: "./media/characters/zeus/front.svg",
  25052. extra: 5005/4717,
  25053. bottom: 363/5388
  25054. }
  25055. },
  25056. },
  25057. [
  25058. {
  25059. name: "Normal",
  25060. height: math.unit(12, "feet")
  25061. },
  25062. {
  25063. name: "Preferred Size",
  25064. height: math.unit(0.5, "miles"),
  25065. default: true
  25066. },
  25067. {
  25068. name: "Giga Horse",
  25069. height: math.unit(300, "miles")
  25070. },
  25071. {
  25072. name: "Riding Planets",
  25073. height: math.unit(30, "megameters")
  25074. },
  25075. {
  25076. name: "Cosmic Giant",
  25077. height: math.unit(3, "zettameters")
  25078. },
  25079. {
  25080. name: "Breeding God",
  25081. height: math.unit(9.92e22, "yottameters")
  25082. },
  25083. ]
  25084. ))
  25085. characterMakers.push(() => makeCharacter(
  25086. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25087. {
  25088. side: {
  25089. height: math.unit(9, "feet"),
  25090. weight: math.unit(1500, "kg"),
  25091. name: "Side",
  25092. image: {
  25093. source: "./media/characters/fang/side.svg",
  25094. extra: 924/866,
  25095. bottom: 47.5/972.3
  25096. }
  25097. },
  25098. },
  25099. [
  25100. {
  25101. name: "Normal",
  25102. height: math.unit(9, "feet"),
  25103. default: true
  25104. },
  25105. {
  25106. name: "Macro",
  25107. height: math.unit(75 + 6/12, "feet")
  25108. },
  25109. {
  25110. name: "Teramacro",
  25111. height: math.unit(50000, "miles")
  25112. },
  25113. ]
  25114. ))
  25115. characterMakers.push(() => makeCharacter(
  25116. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25117. {
  25118. front: {
  25119. height: math.unit(10, "feet"),
  25120. weight: math.unit(2, "tons"),
  25121. name: "Front",
  25122. image: {
  25123. source: "./media/characters/rekhit/front.svg",
  25124. extra: 2796/2590,
  25125. bottom: 225/3022
  25126. }
  25127. },
  25128. },
  25129. [
  25130. {
  25131. name: "Normal",
  25132. height: math.unit(10, "feet"),
  25133. default: true
  25134. },
  25135. {
  25136. name: "Macro",
  25137. height: math.unit(500, "feet")
  25138. },
  25139. ]
  25140. ))
  25141. characterMakers.push(() => makeCharacter(
  25142. { name: "Dahlia Verrick" },
  25143. {
  25144. front: {
  25145. height: math.unit(7 + 6.451/12, "feet"),
  25146. weight: math.unit(310, "lb"),
  25147. name: "Front",
  25148. image: {
  25149. source: "./media/characters/dahlia-verrick/front.svg",
  25150. extra: 1488/1365,
  25151. bottom: 6.2/1495
  25152. }
  25153. },
  25154. back: {
  25155. height: math.unit(7 + 6.451/12, "feet"),
  25156. weight: math.unit(310, "lb"),
  25157. name: "Back",
  25158. image: {
  25159. source: "./media/characters/dahlia-verrick/back.svg",
  25160. extra: 1472/1351,
  25161. bottom: 5.28/1477
  25162. }
  25163. },
  25164. frontBusiness: {
  25165. height: math.unit(7 + 6.451/12, "feet"),
  25166. weight: math.unit(200, "lb"),
  25167. name: "Front (Business)",
  25168. image: {
  25169. source: "./media/characters/dahlia-verrick/front-business.svg",
  25170. extra: 1478/1381,
  25171. bottom: 5.5/1484
  25172. }
  25173. },
  25174. frontCasual: {
  25175. height: math.unit(7 + 6.451/12, "feet"),
  25176. weight: math.unit(200, "lb"),
  25177. name: "Front (Casual)",
  25178. image: {
  25179. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25180. extra: 1478/1381,
  25181. bottom: 5.5/1484
  25182. }
  25183. },
  25184. },
  25185. [
  25186. {
  25187. name: "Travel-Sized",
  25188. height: math.unit(7.45, "inches")
  25189. },
  25190. {
  25191. name: "Normal",
  25192. height: math.unit(7 + 6.451/12, "feet"),
  25193. default: true
  25194. },
  25195. {
  25196. name: "Hitting the Town",
  25197. height: math.unit(37 + 8/12, "feet")
  25198. },
  25199. {
  25200. name: "Stomp in the Suburbs",
  25201. height: math.unit(964 + 9.728/12, "feet")
  25202. },
  25203. {
  25204. name: "Sit on the City",
  25205. height: math.unit(61747 + 10.592/12, "feet")
  25206. },
  25207. {
  25208. name: "Glomp the Globe",
  25209. height: math.unit(252919327 + 4.832/12, "feet")
  25210. },
  25211. ]
  25212. ))
  25213. characterMakers.push(() => makeCharacter(
  25214. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25215. {
  25216. front: {
  25217. height: math.unit(6 + 4/12, "feet"),
  25218. weight: math.unit(320, "lb"),
  25219. name: "Front",
  25220. image: {
  25221. source: "./media/characters/balina-mahigan/front.svg",
  25222. extra: 447/428,
  25223. bottom: 18/466
  25224. }
  25225. },
  25226. back: {
  25227. height: math.unit(6 + 4/12, "feet"),
  25228. weight: math.unit(320, "lb"),
  25229. name: "Back",
  25230. image: {
  25231. source: "./media/characters/balina-mahigan/back.svg",
  25232. extra: 445/428,
  25233. bottom: 4.07/448
  25234. }
  25235. },
  25236. arm: {
  25237. height: math.unit(1.88, "feet"),
  25238. name: "Arm",
  25239. image: {
  25240. source: "./media/characters/balina-mahigan/arm.svg"
  25241. }
  25242. },
  25243. backPort: {
  25244. height: math.unit(0.685, "feet"),
  25245. name: "Back Port",
  25246. image: {
  25247. source: "./media/characters/balina-mahigan/back-port.svg"
  25248. }
  25249. },
  25250. hoofpaw: {
  25251. height: math.unit(1.41, "feet"),
  25252. name: "Hoofpaw",
  25253. image: {
  25254. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25255. }
  25256. },
  25257. leftHandBack: {
  25258. height: math.unit(0.938, "feet"),
  25259. name: "Left Hand (Back)",
  25260. image: {
  25261. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25262. }
  25263. },
  25264. leftHandFront: {
  25265. height: math.unit(0.938, "feet"),
  25266. name: "Left Hand (Front)",
  25267. image: {
  25268. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25269. }
  25270. },
  25271. rightHandBack: {
  25272. height: math.unit(0.95, "feet"),
  25273. name: "Right Hand (Back)",
  25274. image: {
  25275. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25276. }
  25277. },
  25278. rightHandFront: {
  25279. height: math.unit(0.95, "feet"),
  25280. name: "Right Hand (Front)",
  25281. image: {
  25282. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25283. }
  25284. },
  25285. },
  25286. [
  25287. {
  25288. name: "Normal",
  25289. height: math.unit(6 + 4/12, "feet"),
  25290. default: true
  25291. },
  25292. ]
  25293. ))
  25294. characterMakers.push(() => makeCharacter(
  25295. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25296. {
  25297. front: {
  25298. height: math.unit(6, "feet"),
  25299. weight: math.unit(320, "lb"),
  25300. name: "Front",
  25301. image: {
  25302. source: "./media/characters/balina-mejeri/front.svg",
  25303. extra: 517/488,
  25304. bottom: 44.2/561
  25305. }
  25306. },
  25307. },
  25308. [
  25309. {
  25310. name: "Normal",
  25311. height: math.unit(6 + 4/12, "feet")
  25312. },
  25313. {
  25314. name: "Business",
  25315. height: math.unit(155, "feet"),
  25316. default: true
  25317. },
  25318. ]
  25319. ))
  25320. characterMakers.push(() => makeCharacter(
  25321. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25322. {
  25323. kneeling: {
  25324. height: math.unit(6 + 4/12, "feet"),
  25325. weight: math.unit(300*20, "lb"),
  25326. name: "Kneeling",
  25327. image: {
  25328. source: "./media/characters/balbarian/kneeling.svg",
  25329. extra: 922/862,
  25330. bottom: 42.4/965
  25331. }
  25332. },
  25333. },
  25334. [
  25335. {
  25336. name: "Normal",
  25337. height: math.unit(6 + 4/12, "feet")
  25338. },
  25339. {
  25340. name: "Treasured",
  25341. height: math.unit(18 + 9/12, "feet"),
  25342. default: true
  25343. },
  25344. {
  25345. name: "Macro",
  25346. height: math.unit(900, "feet")
  25347. },
  25348. ]
  25349. ))
  25350. characterMakers.push(() => makeCharacter(
  25351. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25352. {
  25353. front: {
  25354. height: math.unit(6 + 4/12, "feet"),
  25355. weight: math.unit(325, "lb"),
  25356. name: "Front",
  25357. image: {
  25358. source: "./media/characters/balina-amarini/front.svg",
  25359. extra: 415/403,
  25360. bottom: 19/433.4
  25361. }
  25362. },
  25363. back: {
  25364. height: math.unit(6 + 4/12, "feet"),
  25365. weight: math.unit(325, "lb"),
  25366. name: "Back",
  25367. image: {
  25368. source: "./media/characters/balina-amarini/back.svg",
  25369. extra: 415/403,
  25370. bottom: 13.5/432
  25371. }
  25372. },
  25373. overdrive: {
  25374. height: math.unit(6 + 4/12, "feet"),
  25375. weight: math.unit(400, "lb"),
  25376. name: "Overdrive",
  25377. image: {
  25378. source: "./media/characters/balina-amarini/overdrive.svg",
  25379. extra: 269/259,
  25380. bottom: 12/282
  25381. }
  25382. },
  25383. },
  25384. [
  25385. {
  25386. name: "Boom",
  25387. height: math.unit(9 + 10/12, "feet"),
  25388. default: true
  25389. },
  25390. {
  25391. name: "Macro",
  25392. height: math.unit(280, "feet")
  25393. },
  25394. ]
  25395. ))
  25396. characterMakers.push(() => makeCharacter(
  25397. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25398. {
  25399. goddess: {
  25400. height: math.unit(600, "feet"),
  25401. weight: math.unit(2000000, "tons"),
  25402. name: "Goddess",
  25403. image: {
  25404. source: "./media/characters/lady-kubwa/goddess.svg",
  25405. extra: 1240.5/1223,
  25406. bottom: 22/1263
  25407. }
  25408. },
  25409. goddesser: {
  25410. height: math.unit(900, "feet"),
  25411. weight: math.unit(20000000, "lb"),
  25412. name: "Goddess-er",
  25413. image: {
  25414. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25415. extra: 899/888,
  25416. bottom: 12.6/912
  25417. }
  25418. },
  25419. },
  25420. [
  25421. {
  25422. name: "Macro",
  25423. height: math.unit(600, "feet"),
  25424. default: true
  25425. },
  25426. {
  25427. name: "Megamacro",
  25428. height: math.unit(250, "miles")
  25429. },
  25430. ]
  25431. ))
  25432. characterMakers.push(() => makeCharacter(
  25433. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25434. {
  25435. front: {
  25436. height: math.unit(7 + 7/12, "feet"),
  25437. weight: math.unit(250, "lb"),
  25438. name: "Front",
  25439. image: {
  25440. source: "./media/characters/tala-grovehorn/front.svg",
  25441. extra: 2636/2525,
  25442. bottom: 147/2781
  25443. }
  25444. },
  25445. back: {
  25446. height: math.unit(7 + 7/12, "feet"),
  25447. weight: math.unit(250, "lb"),
  25448. name: "Back",
  25449. image: {
  25450. source: "./media/characters/tala-grovehorn/back.svg",
  25451. extra: 2635/2539,
  25452. bottom: 100/2732.8
  25453. }
  25454. },
  25455. mouth: {
  25456. height: math.unit(1.15, "feet"),
  25457. name: "Mouth",
  25458. image: {
  25459. source: "./media/characters/tala-grovehorn/mouth.svg"
  25460. }
  25461. },
  25462. dick: {
  25463. height: math.unit(2.36, "feet"),
  25464. name: "Dick",
  25465. image: {
  25466. source: "./media/characters/tala-grovehorn/dick.svg"
  25467. }
  25468. },
  25469. slit: {
  25470. height: math.unit(0.61, "feet"),
  25471. name: "Slit",
  25472. image: {
  25473. source: "./media/characters/tala-grovehorn/slit.svg"
  25474. }
  25475. },
  25476. },
  25477. [
  25478. ]
  25479. ))
  25480. characterMakers.push(() => makeCharacter(
  25481. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25482. {
  25483. front: {
  25484. height: math.unit(7 + 7/12, "feet"),
  25485. weight: math.unit(225, "lb"),
  25486. name: "Front",
  25487. image: {
  25488. source: "./media/characters/epona/front.svg",
  25489. extra: 2445/2290,
  25490. bottom: 251/2696
  25491. }
  25492. },
  25493. back: {
  25494. height: math.unit(7 + 7/12, "feet"),
  25495. weight: math.unit(225, "lb"),
  25496. name: "Back",
  25497. image: {
  25498. source: "./media/characters/epona/back.svg",
  25499. extra: 2546/2408,
  25500. bottom: 44/2589
  25501. }
  25502. },
  25503. genitals: {
  25504. height: math.unit(1.5, "feet"),
  25505. name: "Genitals",
  25506. image: {
  25507. source: "./media/characters/epona/genitals.svg"
  25508. }
  25509. },
  25510. },
  25511. [
  25512. {
  25513. name: "Normal",
  25514. height: math.unit(7 + 7/12, "feet")
  25515. },
  25516. ]
  25517. ))
  25518. characterMakers.push(() => makeCharacter(
  25519. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25520. {
  25521. front: {
  25522. height: math.unit(7, "feet"),
  25523. weight: math.unit(518, "lb"),
  25524. name: "Front",
  25525. image: {
  25526. source: "./media/characters/avia-bloodbourn/front.svg",
  25527. extra: 1466/1350,
  25528. bottom: 65/1527
  25529. }
  25530. },
  25531. },
  25532. [
  25533. ]
  25534. ))
  25535. characterMakers.push(() => makeCharacter(
  25536. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25537. {
  25538. front: {
  25539. height: math.unit(9.35, "feet"),
  25540. weight: math.unit(600, "lb"),
  25541. name: "Front",
  25542. image: {
  25543. source: "./media/characters/amera/front.svg",
  25544. extra: 891/818,
  25545. bottom: 30/922.7
  25546. }
  25547. },
  25548. back: {
  25549. height: math.unit(9.35, "feet"),
  25550. weight: math.unit(600, "lb"),
  25551. name: "Back",
  25552. image: {
  25553. source: "./media/characters/amera/back.svg",
  25554. extra: 876/824,
  25555. bottom: 6.8/884
  25556. }
  25557. },
  25558. dick: {
  25559. height: math.unit(2.14, "feet"),
  25560. name: "Dick",
  25561. image: {
  25562. source: "./media/characters/amera/dick.svg"
  25563. }
  25564. },
  25565. },
  25566. [
  25567. {
  25568. name: "Normal",
  25569. height: math.unit(9.35, "feet"),
  25570. default: true
  25571. },
  25572. ]
  25573. ))
  25574. characterMakers.push(() => makeCharacter(
  25575. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25576. {
  25577. kneeling: {
  25578. height: math.unit(3 + 4/12, "feet"),
  25579. weight: math.unit(90, "lb"),
  25580. name: "Kneeling",
  25581. image: {
  25582. source: "./media/characters/rosewen/kneeling.svg",
  25583. extra: 1835/1571,
  25584. bottom: 27.7/1862
  25585. }
  25586. },
  25587. },
  25588. [
  25589. {
  25590. name: "Normal",
  25591. height: math.unit(3 + 4/12, "feet"),
  25592. default: true
  25593. },
  25594. ]
  25595. ))
  25596. characterMakers.push(() => makeCharacter(
  25597. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25598. {
  25599. front: {
  25600. height: math.unit(5 + 10/12, "feet"),
  25601. weight: math.unit(200, "lb"),
  25602. name: "Front",
  25603. image: {
  25604. source: "./media/characters/sabah/front.svg",
  25605. extra: 849/763,
  25606. bottom: 33.9/881
  25607. }
  25608. },
  25609. },
  25610. [
  25611. {
  25612. name: "Normal",
  25613. height: math.unit(5 + 10/12, "feet"),
  25614. default: true
  25615. },
  25616. ]
  25617. ))
  25618. characterMakers.push(() => makeCharacter(
  25619. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25620. {
  25621. front: {
  25622. height: math.unit(3 + 5/12, "feet"),
  25623. weight: math.unit(40, "kg"),
  25624. name: "Front",
  25625. image: {
  25626. source: "./media/characters/purple-flame/front.svg",
  25627. extra: 1577/1412,
  25628. bottom: 97/1694
  25629. }
  25630. },
  25631. frontDressed: {
  25632. height: math.unit(3 + 5/12, "feet"),
  25633. weight: math.unit(40, "kg"),
  25634. name: "Front (Dressed)",
  25635. image: {
  25636. source: "./media/characters/purple-flame/front-dressed.svg",
  25637. extra: 1577/1412,
  25638. bottom: 97/1694
  25639. }
  25640. },
  25641. headphones: {
  25642. height: math.unit(0.85, "feet"),
  25643. name: "Headphones",
  25644. image: {
  25645. source: "./media/characters/purple-flame/headphones.svg"
  25646. }
  25647. },
  25648. },
  25649. [
  25650. {
  25651. name: "Really Small",
  25652. height: math.unit(5, "cm")
  25653. },
  25654. {
  25655. name: "Micro",
  25656. height: math.unit(1 + 5/12, "feet")
  25657. },
  25658. {
  25659. name: "Normal",
  25660. height: math.unit(3 + 5/12, "feet"),
  25661. default: true
  25662. },
  25663. {
  25664. name: "Minimacro",
  25665. height: math.unit(125, "feet")
  25666. },
  25667. {
  25668. name: "Macro",
  25669. height: math.unit(0.5, "miles")
  25670. },
  25671. {
  25672. name: "Megamacro",
  25673. height: math.unit(50, "miles")
  25674. },
  25675. {
  25676. name: "Gigantic",
  25677. height: math.unit(750, "miles")
  25678. },
  25679. {
  25680. name: "Planetary",
  25681. height: math.unit(15000, "miles")
  25682. },
  25683. ]
  25684. ))
  25685. characterMakers.push(() => makeCharacter(
  25686. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25687. {
  25688. front: {
  25689. height: math.unit(14, "feet"),
  25690. weight: math.unit(959, "lb"),
  25691. name: "Front",
  25692. image: {
  25693. source: "./media/characters/arsenal/front.svg",
  25694. extra: 2357/2157,
  25695. bottom: 93/2458
  25696. }
  25697. },
  25698. },
  25699. [
  25700. {
  25701. name: "Normal",
  25702. height: math.unit(14, "feet"),
  25703. default: true
  25704. },
  25705. ]
  25706. ))
  25707. characterMakers.push(() => makeCharacter(
  25708. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25709. {
  25710. front: {
  25711. height: math.unit(6, "feet"),
  25712. weight: math.unit(150, "lb"),
  25713. name: "Front",
  25714. image: {
  25715. source: "./media/characters/adira/front.svg",
  25716. extra: 1078/1029,
  25717. bottom: 87/1166
  25718. }
  25719. },
  25720. },
  25721. [
  25722. {
  25723. name: "Micro",
  25724. height: math.unit(4, "inches"),
  25725. default: true
  25726. },
  25727. {
  25728. name: "Macro",
  25729. height: math.unit(50, "feet")
  25730. },
  25731. ]
  25732. ))
  25733. characterMakers.push(() => makeCharacter(
  25734. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25735. {
  25736. front: {
  25737. height: math.unit(16, "feet"),
  25738. weight: math.unit(1000, "lb"),
  25739. name: "Front",
  25740. image: {
  25741. source: "./media/characters/grim/front.svg",
  25742. extra: 622/614,
  25743. bottom: 18.1/642
  25744. }
  25745. },
  25746. back: {
  25747. height: math.unit(16, "feet"),
  25748. weight: math.unit(1000, "lb"),
  25749. name: "Back",
  25750. image: {
  25751. source: "./media/characters/grim/back.svg",
  25752. extra: 610.6/602,
  25753. bottom: 40.8/652
  25754. }
  25755. },
  25756. hunched: {
  25757. height: math.unit(9.75, "feet"),
  25758. weight: math.unit(1000, "lb"),
  25759. name: "Hunched",
  25760. image: {
  25761. source: "./media/characters/grim/hunched.svg",
  25762. extra: 304/297,
  25763. bottom: 35.4/394
  25764. }
  25765. },
  25766. },
  25767. [
  25768. {
  25769. name: "Normal",
  25770. height: math.unit(16, "feet"),
  25771. default: true
  25772. },
  25773. ]
  25774. ))
  25775. characterMakers.push(() => makeCharacter(
  25776. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25777. {
  25778. front: {
  25779. height: math.unit(2.3, "meters"),
  25780. weight: math.unit(300, "lb"),
  25781. name: "Front",
  25782. image: {
  25783. source: "./media/characters/sinja/front-sfw.svg",
  25784. extra: 1393/1294,
  25785. bottom: 70/1463
  25786. }
  25787. },
  25788. frontNsfw: {
  25789. height: math.unit(2.3, "meters"),
  25790. weight: math.unit(300, "lb"),
  25791. name: "Front (NSFW)",
  25792. image: {
  25793. source: "./media/characters/sinja/front-nsfw.svg",
  25794. extra: 1393/1294,
  25795. bottom: 70/1463
  25796. }
  25797. },
  25798. back: {
  25799. height: math.unit(2.3, "meters"),
  25800. weight: math.unit(300, "lb"),
  25801. name: "Back",
  25802. image: {
  25803. source: "./media/characters/sinja/back.svg",
  25804. extra: 1393/1294,
  25805. bottom: 70/1463
  25806. }
  25807. },
  25808. head: {
  25809. height: math.unit(1.771, "feet"),
  25810. name: "Head",
  25811. image: {
  25812. source: "./media/characters/sinja/head.svg"
  25813. }
  25814. },
  25815. slit: {
  25816. height: math.unit(0.8, "feet"),
  25817. name: "Slit",
  25818. image: {
  25819. source: "./media/characters/sinja/slit.svg"
  25820. }
  25821. },
  25822. },
  25823. [
  25824. {
  25825. name: "Normal",
  25826. height: math.unit(2.3, "meters")
  25827. },
  25828. {
  25829. name: "Macro",
  25830. height: math.unit(91, "meters"),
  25831. default: true
  25832. },
  25833. {
  25834. name: "Megamacro",
  25835. height: math.unit(91440, "meters")
  25836. },
  25837. {
  25838. name: "Gigamacro",
  25839. height: math.unit(60960000, "meters")
  25840. },
  25841. {
  25842. name: "Teramacro",
  25843. height: math.unit(9144000000, "meters")
  25844. },
  25845. ]
  25846. ))
  25847. characterMakers.push(() => makeCharacter(
  25848. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25849. {
  25850. front: {
  25851. height: math.unit(1.7, "meters"),
  25852. weight: math.unit(130, "lb"),
  25853. name: "Front",
  25854. image: {
  25855. source: "./media/characters/kyu/front.svg",
  25856. extra: 415/395,
  25857. bottom: 5/420
  25858. }
  25859. },
  25860. head: {
  25861. height: math.unit(1.75, "feet"),
  25862. name: "Head",
  25863. image: {
  25864. source: "./media/characters/kyu/head.svg"
  25865. }
  25866. },
  25867. foot: {
  25868. height: math.unit(0.81, "feet"),
  25869. name: "Foot",
  25870. image: {
  25871. source: "./media/characters/kyu/foot.svg"
  25872. }
  25873. },
  25874. },
  25875. [
  25876. {
  25877. name: "Normal",
  25878. height: math.unit(1.7, "meters")
  25879. },
  25880. {
  25881. name: "Macro",
  25882. height: math.unit(131, "feet"),
  25883. default: true
  25884. },
  25885. {
  25886. name: "Megamacro",
  25887. height: math.unit(91440, "meters")
  25888. },
  25889. {
  25890. name: "Gigamacro",
  25891. height: math.unit(60960000, "meters")
  25892. },
  25893. {
  25894. name: "Teramacro",
  25895. height: math.unit(9144000000, "meters")
  25896. },
  25897. ]
  25898. ))
  25899. characterMakers.push(() => makeCharacter(
  25900. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25901. {
  25902. front: {
  25903. height: math.unit(7 + 1/12, "feet"),
  25904. weight: math.unit(250, "lb"),
  25905. name: "Front",
  25906. image: {
  25907. source: "./media/characters/joey/front.svg",
  25908. extra: 1791/1537,
  25909. bottom: 28/1816
  25910. }
  25911. },
  25912. },
  25913. [
  25914. {
  25915. name: "Micro",
  25916. height: math.unit(3, "inches")
  25917. },
  25918. {
  25919. name: "Normal",
  25920. height: math.unit(7 + 1/12, "feet"),
  25921. default: true
  25922. },
  25923. ]
  25924. ))
  25925. characterMakers.push(() => makeCharacter(
  25926. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  25927. {
  25928. front: {
  25929. height: math.unit(165, "cm"),
  25930. weight: math.unit(140, "lb"),
  25931. name: "Front",
  25932. image: {
  25933. source: "./media/characters/sam-evans/front.svg",
  25934. extra: 3417/3230,
  25935. bottom: 41.3/3417
  25936. }
  25937. },
  25938. frontSixTails: {
  25939. height: math.unit(165, "cm"),
  25940. weight: math.unit(140, "lb"),
  25941. name: "Front-six-tails",
  25942. image: {
  25943. source: "./media/characters/sam-evans/front-six-tails.svg",
  25944. extra: 3417/3230,
  25945. bottom: 41.3/3417
  25946. }
  25947. },
  25948. back: {
  25949. height: math.unit(165, "cm"),
  25950. weight: math.unit(140, "lb"),
  25951. name: "Back",
  25952. image: {
  25953. source: "./media/characters/sam-evans/back.svg",
  25954. extra: 3227/3032,
  25955. bottom: 6.8/3234
  25956. }
  25957. },
  25958. face: {
  25959. height: math.unit(0.68, "feet"),
  25960. name: "Face",
  25961. image: {
  25962. source: "./media/characters/sam-evans/face.svg"
  25963. }
  25964. },
  25965. },
  25966. [
  25967. {
  25968. name: "Normal",
  25969. height: math.unit(165, "cm"),
  25970. default: true
  25971. },
  25972. {
  25973. name: "Macro",
  25974. height: math.unit(100, "meters")
  25975. },
  25976. {
  25977. name: "Macro+",
  25978. height: math.unit(800, "meters")
  25979. },
  25980. {
  25981. name: "Macro++",
  25982. height: math.unit(3, "km")
  25983. },
  25984. {
  25985. name: "Macro+++",
  25986. height: math.unit(30, "km")
  25987. },
  25988. ]
  25989. ))
  25990. characterMakers.push(() => makeCharacter(
  25991. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  25992. {
  25993. front: {
  25994. height: math.unit(10, "feet"),
  25995. weight: math.unit(750, "lb"),
  25996. name: "Front",
  25997. image: {
  25998. source: "./media/characters/juliet-a/front.svg",
  25999. extra: 1766/1720,
  26000. bottom: 43/1809
  26001. }
  26002. },
  26003. back: {
  26004. height: math.unit(10, "feet"),
  26005. weight: math.unit(750, "lb"),
  26006. name: "Back",
  26007. image: {
  26008. source: "./media/characters/juliet-a/back.svg",
  26009. extra: 1781/1734,
  26010. bottom: 35/1810,
  26011. }
  26012. },
  26013. },
  26014. [
  26015. {
  26016. name: "Normal",
  26017. height: math.unit(10, "feet"),
  26018. default: true
  26019. },
  26020. {
  26021. name: "Dragon Form",
  26022. height: math.unit(250, "feet")
  26023. },
  26024. {
  26025. name: "Macro",
  26026. height: math.unit(1000, "feet")
  26027. },
  26028. {
  26029. name: "Megamacro",
  26030. height: math.unit(10000, "feet")
  26031. }
  26032. ]
  26033. ))
  26034. characterMakers.push(() => makeCharacter(
  26035. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26036. {
  26037. regular: {
  26038. height: math.unit(7 + 3/12, "feet"),
  26039. weight: math.unit(260, "lb"),
  26040. name: "Regular",
  26041. image: {
  26042. source: "./media/characters/wild/regular.svg",
  26043. extra: 97.45/92,
  26044. bottom: 6.8/104.3
  26045. }
  26046. },
  26047. biggums: {
  26048. height: math.unit(8 + 6 /12, "feet"),
  26049. weight: math.unit(425, "lb"),
  26050. name: "Biggums",
  26051. image: {
  26052. source: "./media/characters/wild/biggums.svg",
  26053. extra: 97.45/92,
  26054. bottom: 7.5/132.34
  26055. }
  26056. },
  26057. mawRegular: {
  26058. height: math.unit(1.24, "feet"),
  26059. name: "Maw (Regular)",
  26060. image: {
  26061. source: "./media/characters/wild/maw.svg"
  26062. }
  26063. },
  26064. mawBiggums: {
  26065. height: math.unit(1.47, "feet"),
  26066. name: "Maw (Biggums)",
  26067. image: {
  26068. source: "./media/characters/wild/maw.svg"
  26069. }
  26070. },
  26071. },
  26072. [
  26073. {
  26074. name: "Normal",
  26075. height: math.unit(7 + 3/12, "feet"),
  26076. default: true
  26077. },
  26078. ]
  26079. ))
  26080. characterMakers.push(() => makeCharacter(
  26081. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26082. {
  26083. front: {
  26084. height: math.unit(2.5, "meters"),
  26085. weight: math.unit(200, "kg"),
  26086. name: "Front",
  26087. image: {
  26088. source: "./media/characters/vidar/front.svg",
  26089. extra: 2994/2795,
  26090. bottom: 56/3061
  26091. }
  26092. },
  26093. back: {
  26094. height: math.unit(2.5, "meters"),
  26095. weight: math.unit(200, "kg"),
  26096. name: "Back",
  26097. image: {
  26098. source: "./media/characters/vidar/back.svg",
  26099. extra: 3131/2928,
  26100. bottom: 13.5/3141.5
  26101. }
  26102. },
  26103. feral: {
  26104. height: math.unit(2.5, "meters"),
  26105. weight: math.unit(2000, "kg"),
  26106. name: "Feral",
  26107. image: {
  26108. source: "./media/characters/vidar/feral.svg",
  26109. extra: 2790/1765,
  26110. bottom: 6/2796
  26111. }
  26112. },
  26113. },
  26114. [
  26115. {
  26116. name: "Normal",
  26117. height: math.unit(2.5, "meters"),
  26118. default: true
  26119. },
  26120. {
  26121. name: "Macro",
  26122. height: math.unit(100, "meters")
  26123. },
  26124. ]
  26125. ))
  26126. characterMakers.push(() => makeCharacter(
  26127. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26128. {
  26129. front: {
  26130. height: math.unit(5 + 9/12, "feet"),
  26131. weight: math.unit(120, "lb"),
  26132. name: "Front",
  26133. image: {
  26134. source: "./media/characters/ash/front.svg",
  26135. extra: 2189/1961,
  26136. bottom: 5.2/2194
  26137. }
  26138. },
  26139. },
  26140. [
  26141. {
  26142. name: "Normal",
  26143. height: math.unit(5 + 9/12, "feet"),
  26144. default: true
  26145. },
  26146. ]
  26147. ))
  26148. characterMakers.push(() => makeCharacter(
  26149. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26150. {
  26151. front: {
  26152. height: math.unit(9, "feet"),
  26153. weight: math.unit(10000, "lb"),
  26154. name: "Front",
  26155. image: {
  26156. source: "./media/characters/gygabite/front.svg",
  26157. bottom: 31.7/537.8,
  26158. extra: 505/370
  26159. }
  26160. },
  26161. },
  26162. [
  26163. {
  26164. name: "Normal",
  26165. height: math.unit(9, "feet"),
  26166. default: true
  26167. },
  26168. ]
  26169. ))
  26170. characterMakers.push(() => makeCharacter(
  26171. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26172. {
  26173. front: {
  26174. height: math.unit(12, "feet"),
  26175. weight: math.unit(35000, "lb"),
  26176. name: "Front",
  26177. image: {
  26178. source: "./media/characters/p0tat0/front.svg",
  26179. extra: 1065/921,
  26180. bottom: 55.7/1121.25
  26181. }
  26182. },
  26183. },
  26184. [
  26185. {
  26186. name: "Normal",
  26187. height: math.unit(12, "feet"),
  26188. default: true
  26189. },
  26190. ]
  26191. ))
  26192. characterMakers.push(() => makeCharacter(
  26193. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26194. {
  26195. side: {
  26196. height: math.unit(6.5, "feet"),
  26197. weight: math.unit(800, "lb"),
  26198. name: "Side",
  26199. image: {
  26200. source: "./media/characters/dusk/side.svg",
  26201. extra: 615/373,
  26202. bottom: 53/664
  26203. }
  26204. },
  26205. sitting: {
  26206. height: math.unit(7, "feet"),
  26207. weight: math.unit(800, "lb"),
  26208. name: "Sitting",
  26209. image: {
  26210. source: "./media/characters/dusk/sitting.svg",
  26211. extra: 753/425,
  26212. bottom: 33/774
  26213. }
  26214. },
  26215. head: {
  26216. height: math.unit(6.1, "feet"),
  26217. name: "Head",
  26218. image: {
  26219. source: "./media/characters/dusk/head.svg"
  26220. }
  26221. },
  26222. },
  26223. [
  26224. {
  26225. name: "Normal",
  26226. height: math.unit(7, "feet"),
  26227. default: true
  26228. },
  26229. ]
  26230. ))
  26231. //characters
  26232. function makeCharacters() {
  26233. const results = [];
  26234. characterMakers.forEach(character => {
  26235. results.push(character());
  26236. });
  26237. return results;
  26238. }