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

24429 строки
601 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"]
  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: ["machine"]
  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"]
  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. }
  1220. function getSpeciesInfo(speciesList) {
  1221. let result = new Set();
  1222. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1223. result.add(entry)
  1224. });
  1225. return Array.from(result);
  1226. };
  1227. function getSpeciesInfoHelper(species) {
  1228. if (!speciesData[species]) {
  1229. console.warn(species + " doesn't exist");
  1230. return [];
  1231. }
  1232. if (speciesData[species].parents) {
  1233. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1234. } else {
  1235. return [species];
  1236. }
  1237. }
  1238. characterMakers.push(() => makeCharacter(
  1239. {
  1240. name: "Fen",
  1241. species: ["crux"],
  1242. description: {
  1243. title: "Bio",
  1244. text: "Very furry. Sheds on everything."
  1245. },
  1246. tags: [
  1247. "anthro",
  1248. "goo"
  1249. ]
  1250. },
  1251. {
  1252. back: {
  1253. height: math.unit(2.2428, "meter"),
  1254. weight: math.unit(124.738, "kg"),
  1255. name: "Back",
  1256. image: {
  1257. source: "./media/characters/fen/back.svg",
  1258. extra: 1025 / 935,
  1259. bottom: 0.01
  1260. },
  1261. info: {
  1262. description: {
  1263. mode: "append",
  1264. text: "\n\nHe is not currently looking at you."
  1265. }
  1266. }
  1267. },
  1268. full: {
  1269. height: math.unit(1.34, "meter"),
  1270. weight: math.unit(225, "kg"),
  1271. name: "Full",
  1272. image: {
  1273. source: "./media/characters/fen/full.svg"
  1274. },
  1275. info: {
  1276. description: {
  1277. mode: "append",
  1278. text: "\n\nMunch."
  1279. }
  1280. }
  1281. },
  1282. kneeling: {
  1283. height: math.unit(5.4, "feet"),
  1284. weight: math.unit(124.738, "kg"),
  1285. name: "Kneeling",
  1286. image: {
  1287. source: "./media/characters/fen/kneeling.svg",
  1288. extra: 563 / 507
  1289. }
  1290. },
  1291. goo: {
  1292. height: math.unit(2.8, "feet"),
  1293. weight: math.unit(125, "kg"),
  1294. capacity: math.unit(1, "people"),
  1295. name: "Goo",
  1296. image: {
  1297. source: "./media/characters/fen/goo.svg",
  1298. bottom: 116/613
  1299. }
  1300. },
  1301. lounging: {
  1302. height: math.unit(6.5, "feet"),
  1303. weight: math.unit(125, "kg"),
  1304. name: "Lounging",
  1305. image: {
  1306. source: "./media/characters/fen/lounging.svg"
  1307. }
  1308. },
  1309. },
  1310. [
  1311. {
  1312. name: "Normal",
  1313. height: math.unit(2.2428, "meter")
  1314. },
  1315. {
  1316. name: "Big",
  1317. height: math.unit(12, "feet")
  1318. },
  1319. {
  1320. name: "Minimacro",
  1321. height: math.unit(40, "feet"),
  1322. default: true,
  1323. info: {
  1324. description: {
  1325. mode: "append",
  1326. text: "\n\nTOO DAMN BIG"
  1327. }
  1328. }
  1329. },
  1330. {
  1331. name: "Macro",
  1332. height: math.unit(100, "feet"),
  1333. info: {
  1334. description: {
  1335. mode: "append",
  1336. text: "\n\nTOO DAMN BIG"
  1337. }
  1338. }
  1339. },
  1340. {
  1341. name: "Macro+",
  1342. height: math.unit(300, "feet")
  1343. },
  1344. {
  1345. name: "Megamacro",
  1346. height: math.unit(2, "miles")
  1347. }
  1348. ]
  1349. ))
  1350. characterMakers.push(() => makeCharacter(
  1351. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1352. {
  1353. front: {
  1354. height: math.unit(183, "cm"),
  1355. weight: math.unit(80, "kg"),
  1356. name: "Front",
  1357. image: {
  1358. source: "./media/characters/sofia-fluttertail/front.svg",
  1359. bottom: 0.01,
  1360. extra: 2154 / 2081
  1361. }
  1362. },
  1363. frontAlt: {
  1364. height: math.unit(183, "cm"),
  1365. weight: math.unit(80, "kg"),
  1366. name: "Front (alt)",
  1367. image: {
  1368. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1369. }
  1370. },
  1371. back: {
  1372. height: math.unit(183, "cm"),
  1373. weight: math.unit(80, "kg"),
  1374. name: "Back",
  1375. image: {
  1376. source: "./media/characters/sofia-fluttertail/back.svg"
  1377. }
  1378. },
  1379. kneeling: {
  1380. height: math.unit(125, "cm"),
  1381. weight: math.unit(80, "kg"),
  1382. name: "Kneeling",
  1383. image: {
  1384. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1385. extra: 1033/977,
  1386. bottom: 23.7/1057
  1387. }
  1388. },
  1389. maw: {
  1390. height: math.unit(183 / 5, "cm"),
  1391. name: "Maw",
  1392. image: {
  1393. source: "./media/characters/sofia-fluttertail/maw.svg"
  1394. }
  1395. },
  1396. mawcloseup: {
  1397. height: math.unit(183 / 5 * 0.41, "cm"),
  1398. name: "Maw (Closeup)",
  1399. image: {
  1400. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1401. }
  1402. },
  1403. },
  1404. [
  1405. {
  1406. name: "Normal",
  1407. height: math.unit(1.83, "meter")
  1408. },
  1409. {
  1410. name: "Size Thief",
  1411. height: math.unit(18, "feet")
  1412. },
  1413. {
  1414. name: "50 Foot Collie",
  1415. height: math.unit(50, "feet")
  1416. },
  1417. {
  1418. name: "Macro",
  1419. height: math.unit(96, "feet"),
  1420. default: true
  1421. },
  1422. {
  1423. name: "Megamerger",
  1424. height: math.unit(650, "feet")
  1425. },
  1426. ]
  1427. ))
  1428. characterMakers.push(() => makeCharacter(
  1429. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1430. {
  1431. front: {
  1432. height: math.unit(7, "feet"),
  1433. weight: math.unit(100, "kg"),
  1434. name: "Front",
  1435. image: {
  1436. source: "./media/characters/march/front.svg",
  1437. extra: 1,
  1438. bottom: 0.015
  1439. }
  1440. },
  1441. foot: {
  1442. height: math.unit(0.9, "feet"),
  1443. name: "Foot",
  1444. image: {
  1445. source: "./media/characters/march/foot.svg"
  1446. }
  1447. },
  1448. },
  1449. [
  1450. {
  1451. name: "Normal",
  1452. height: math.unit(7.9, "feet")
  1453. },
  1454. {
  1455. name: "Macro",
  1456. height: math.unit(220, "meters")
  1457. },
  1458. {
  1459. name: "Megamacro",
  1460. height: math.unit(2.98, "km"),
  1461. default: true
  1462. },
  1463. {
  1464. name: "Gigamacro",
  1465. height: math.unit(15963, "km")
  1466. },
  1467. {
  1468. name: "Teramacro",
  1469. height: math.unit(2980000000, "km")
  1470. },
  1471. {
  1472. name: "Examacro",
  1473. height: math.unit(250, "parsecs")
  1474. },
  1475. ]
  1476. ))
  1477. characterMakers.push(() => makeCharacter(
  1478. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1479. {
  1480. front: {
  1481. height: math.unit(6, "feet"),
  1482. weight: math.unit(60, "kg"),
  1483. name: "Front",
  1484. image: {
  1485. source: "./media/characters/noir/front.svg",
  1486. extra: 1,
  1487. bottom: 0.032
  1488. }
  1489. },
  1490. },
  1491. [
  1492. {
  1493. name: "Normal",
  1494. height: math.unit(6.6, "feet")
  1495. },
  1496. {
  1497. name: "Macro",
  1498. height: math.unit(500, "feet")
  1499. },
  1500. {
  1501. name: "Megamacro",
  1502. height: math.unit(2.5, "km"),
  1503. default: true
  1504. },
  1505. {
  1506. name: "Gigamacro",
  1507. height: math.unit(22500, "km")
  1508. },
  1509. {
  1510. name: "Teramacro",
  1511. height: math.unit(2500000000, "km")
  1512. },
  1513. {
  1514. name: "Examacro",
  1515. height: math.unit(200, "parsecs")
  1516. },
  1517. ]
  1518. ))
  1519. characterMakers.push(() => makeCharacter(
  1520. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1521. {
  1522. front: {
  1523. height: math.unit(7, "feet"),
  1524. weight: math.unit(100, "kg"),
  1525. name: "Front",
  1526. image: {
  1527. source: "./media/characters/okuri/front.svg",
  1528. extra: 1,
  1529. bottom: 0.037
  1530. }
  1531. },
  1532. back: {
  1533. height: math.unit(7, "feet"),
  1534. weight: math.unit(100, "kg"),
  1535. name: "Back",
  1536. image: {
  1537. source: "./media/characters/okuri/back.svg",
  1538. extra: 1,
  1539. bottom: 0.007
  1540. }
  1541. },
  1542. },
  1543. [
  1544. {
  1545. name: "Megamacro",
  1546. height: math.unit(100, "miles"),
  1547. default: true
  1548. },
  1549. ]
  1550. ))
  1551. characterMakers.push(() => makeCharacter(
  1552. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1553. {
  1554. front: {
  1555. height: math.unit(7, "feet"),
  1556. weight: math.unit(100, "kg"),
  1557. name: "Front",
  1558. image: {
  1559. source: "./media/characters/manny/front.svg",
  1560. extra: 1,
  1561. bottom: 0.06
  1562. }
  1563. },
  1564. back: {
  1565. height: math.unit(7, "feet"),
  1566. weight: math.unit(100, "kg"),
  1567. name: "Back",
  1568. image: {
  1569. source: "./media/characters/manny/back.svg",
  1570. extra: 1,
  1571. bottom: 0.014
  1572. }
  1573. },
  1574. },
  1575. [
  1576. {
  1577. name: "Normal",
  1578. height: math.unit(7, "feet"),
  1579. },
  1580. {
  1581. name: "Macro",
  1582. height: math.unit(78, "feet"),
  1583. default: true
  1584. },
  1585. {
  1586. name: "Macro+",
  1587. height: math.unit(300, "meters")
  1588. },
  1589. {
  1590. name: "Macro++",
  1591. height: math.unit(2400, "meters")
  1592. },
  1593. {
  1594. name: "Megamacro",
  1595. height: math.unit(5167, "meters")
  1596. },
  1597. {
  1598. name: "Gigamacro",
  1599. height: math.unit(41769, "miles")
  1600. },
  1601. ]
  1602. ))
  1603. characterMakers.push(() => makeCharacter(
  1604. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1605. {
  1606. front: {
  1607. height: math.unit(7, "feet"),
  1608. weight: math.unit(100, "kg"),
  1609. name: "Front",
  1610. image: {
  1611. source: "./media/characters/adake/front-1.svg"
  1612. }
  1613. },
  1614. frontAlt: {
  1615. height: math.unit(7, "feet"),
  1616. weight: math.unit(100, "kg"),
  1617. name: "Front (Alt)",
  1618. image: {
  1619. source: "./media/characters/adake/front-2.svg",
  1620. extra: 1,
  1621. bottom: 0.01
  1622. }
  1623. },
  1624. back: {
  1625. height: math.unit(7, "feet"),
  1626. weight: math.unit(100, "kg"),
  1627. name: "Back",
  1628. image: {
  1629. source: "./media/characters/adake/back.svg",
  1630. }
  1631. },
  1632. kneel: {
  1633. height: math.unit(5.385, "feet"),
  1634. weight: math.unit(100, "kg"),
  1635. name: "Kneeling",
  1636. image: {
  1637. source: "./media/characters/adake/kneel.svg",
  1638. bottom: 0.052
  1639. }
  1640. },
  1641. },
  1642. [
  1643. {
  1644. name: "Normal",
  1645. height: math.unit(7, "feet"),
  1646. },
  1647. {
  1648. name: "Macro",
  1649. height: math.unit(78, "feet"),
  1650. default: true
  1651. },
  1652. {
  1653. name: "Macro+",
  1654. height: math.unit(300, "meters")
  1655. },
  1656. {
  1657. name: "Macro++",
  1658. height: math.unit(2400, "meters")
  1659. },
  1660. {
  1661. name: "Megamacro",
  1662. height: math.unit(5167, "meters")
  1663. },
  1664. {
  1665. name: "Gigamacro",
  1666. height: math.unit(41769, "miles")
  1667. },
  1668. ]
  1669. ))
  1670. characterMakers.push(() => makeCharacter(
  1671. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1672. {
  1673. front: {
  1674. height: math.unit(1.65, "meters"),
  1675. weight: math.unit(50, "kg"),
  1676. name: "Front",
  1677. image: {
  1678. source: "./media/characters/elijah/front.svg",
  1679. extra: 858/830,
  1680. bottom: 95.5/953.8559
  1681. }
  1682. },
  1683. back: {
  1684. height: math.unit(1.65, "meters"),
  1685. weight: math.unit(50, "kg"),
  1686. name: "Back",
  1687. image: {
  1688. source: "./media/characters/elijah/back.svg",
  1689. extra: 895/850,
  1690. bottom: 5.3/897.956
  1691. }
  1692. },
  1693. frontNsfw: {
  1694. height: math.unit(1.65, "meters"),
  1695. weight: math.unit(50, "kg"),
  1696. name: "Front (NSFW)",
  1697. image: {
  1698. source: "./media/characters/elijah/front-nsfw.svg",
  1699. extra: 858/830,
  1700. bottom: 95.5/953.8559
  1701. }
  1702. },
  1703. backNsfw: {
  1704. height: math.unit(1.65, "meters"),
  1705. weight: math.unit(50, "kg"),
  1706. name: "Back (NSFW)",
  1707. image: {
  1708. source: "./media/characters/elijah/back-nsfw.svg",
  1709. extra: 895/850,
  1710. bottom: 5.3/897.956
  1711. }
  1712. },
  1713. dick: {
  1714. height: math.unit(1, "feet"),
  1715. name: "Dick",
  1716. image: {
  1717. source: "./media/characters/elijah/dick.svg"
  1718. }
  1719. },
  1720. beakOpen: {
  1721. height: math.unit(1.25, "feet"),
  1722. name: "Beak (Open)",
  1723. image: {
  1724. source: "./media/characters/elijah/beak-open.svg"
  1725. }
  1726. },
  1727. beakShut: {
  1728. height: math.unit(1.25, "feet"),
  1729. name: "Beak (Shut)",
  1730. image: {
  1731. source: "./media/characters/elijah/beak-shut.svg"
  1732. }
  1733. },
  1734. footFlexing: {
  1735. height: math.unit(1.61, "feet"),
  1736. name: "Foot (Flexing)",
  1737. image: {
  1738. source: "./media/characters/elijah/foot-flexing.svg"
  1739. }
  1740. },
  1741. footStepping: {
  1742. height: math.unit(1.44, "feet"),
  1743. name: "Foot (Stepping)",
  1744. image: {
  1745. source: "./media/characters/elijah/foot-stepping.svg"
  1746. }
  1747. },
  1748. plantigradeLeg: {
  1749. height: math.unit(2.34, "feet"),
  1750. name: "Plantigrade Leg",
  1751. image: {
  1752. source: "./media/characters/elijah/plantigrade-leg.svg"
  1753. }
  1754. },
  1755. plantigradeFootLeft: {
  1756. height: math.unit(0.9, "feet"),
  1757. name: "Plantigrade Foot (Left)",
  1758. image: {
  1759. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1760. }
  1761. },
  1762. plantigradeFootRight: {
  1763. height: math.unit(0.9, "feet"),
  1764. name: "Plantigrade Foot (Right)",
  1765. image: {
  1766. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1767. }
  1768. },
  1769. },
  1770. [
  1771. {
  1772. name: "Normal",
  1773. height: math.unit(1.65, "meters")
  1774. },
  1775. {
  1776. name: "Macro",
  1777. height: math.unit(55, "meters"),
  1778. default: true
  1779. },
  1780. {
  1781. name: "Macro+",
  1782. height: math.unit(105, "meters")
  1783. },
  1784. ]
  1785. ))
  1786. characterMakers.push(() => makeCharacter(
  1787. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1788. {
  1789. front: {
  1790. height: math.unit(11, "feet"),
  1791. weight: math.unit(80, "kg"),
  1792. name: "Front",
  1793. image: {
  1794. source: "./media/characters/rai/front.svg",
  1795. extra: 1,
  1796. bottom: 0.03
  1797. }
  1798. },
  1799. side: {
  1800. height: math.unit(11, "feet"),
  1801. weight: math.unit(80, "kg"),
  1802. name: "Side",
  1803. image: {
  1804. source: "./media/characters/rai/side.svg"
  1805. }
  1806. },
  1807. back: {
  1808. height: math.unit(11, "feet"),
  1809. weight: math.unit(80, "lb"),
  1810. name: "Back",
  1811. image: {
  1812. source: "./media/characters/rai/back.svg",
  1813. extra: 1,
  1814. bottom: 0.01
  1815. }
  1816. },
  1817. feral: {
  1818. height: math.unit(11, "feet"),
  1819. weight: math.unit(800, "lb"),
  1820. name: "Feral",
  1821. image: {
  1822. source: "./media/characters/rai/feral.svg",
  1823. extra: 1050 / 659,
  1824. bottom: 0.07
  1825. }
  1826. },
  1827. dragon: {
  1828. height: math.unit(23, "feet"),
  1829. weight: math.unit(50000, "lb"),
  1830. name: "Dragon",
  1831. image: {
  1832. source: "./media/characters/rai/dragon.svg",
  1833. extra: 2498/2030,
  1834. bottom: 85.2/2584
  1835. }
  1836. },
  1837. maw: {
  1838. height: math.unit(6 / 3.81416, "feet"),
  1839. name: "Maw",
  1840. image: {
  1841. source: "./media/characters/rai/maw.svg"
  1842. }
  1843. },
  1844. },
  1845. [
  1846. {
  1847. name: "Normal",
  1848. height: math.unit(11, "feet")
  1849. },
  1850. {
  1851. name: "Macro",
  1852. height: math.unit(302, "feet"),
  1853. default: true
  1854. },
  1855. ]
  1856. ))
  1857. characterMakers.push(() => makeCharacter(
  1858. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1859. {
  1860. frontDressed: {
  1861. height: math.unit(216, "feet"),
  1862. weight: math.unit(7000000, "lb"),
  1863. name: "Front (Dressed)",
  1864. image: {
  1865. source: "./media/characters/jazzy/front-dressed.svg",
  1866. extra: 2738/2651,
  1867. bottom: 41.8/2786
  1868. }
  1869. },
  1870. backDressed: {
  1871. height: math.unit(216, "feet"),
  1872. weight: math.unit(7000000, "lb"),
  1873. name: "Back (Dressed)",
  1874. image: {
  1875. source: "./media/characters/jazzy/back-dressed.svg",
  1876. extra: 2775/2673,
  1877. bottom: 36.8/2817
  1878. }
  1879. },
  1880. front: {
  1881. height: math.unit(216, "feet"),
  1882. weight: math.unit(7000000, "lb"),
  1883. name: "Front",
  1884. image: {
  1885. source: "./media/characters/jazzy/front.svg",
  1886. extra: 2738/2651,
  1887. bottom: 41.8/2786
  1888. }
  1889. },
  1890. back: {
  1891. height: math.unit(216, "feet"),
  1892. weight: math.unit(7000000, "lb"),
  1893. name: "Back",
  1894. image: {
  1895. source: "./media/characters/jazzy/back.svg",
  1896. extra: 2775/2673,
  1897. bottom: 36.8/2817
  1898. }
  1899. },
  1900. maw: {
  1901. height: math.unit(20, "feet"),
  1902. name: "Maw",
  1903. image: {
  1904. source: "./media/characters/jazzy/maw.svg"
  1905. }
  1906. },
  1907. paws: {
  1908. height: math.unit(27.5, "feet"),
  1909. name: "Paws",
  1910. image: {
  1911. source: "./media/characters/jazzy/paws.svg"
  1912. }
  1913. },
  1914. eye: {
  1915. height: math.unit(4.4, "feet"),
  1916. name: "Eye",
  1917. image: {
  1918. source: "./media/characters/jazzy/eye.svg"
  1919. }
  1920. },
  1921. droneOffense: {
  1922. height: math.unit(9.5, "inches"),
  1923. name: "Drone (Offense)",
  1924. image: {
  1925. source: "./media/characters/jazzy/drone-offense.svg"
  1926. }
  1927. },
  1928. droneRecon: {
  1929. height: math.unit(9.5, "inches"),
  1930. name: "Drone (Recon)",
  1931. image: {
  1932. source: "./media/characters/jazzy/drone-recon.svg"
  1933. }
  1934. },
  1935. droneDefense: {
  1936. height: math.unit(9.5, "inches"),
  1937. name: "Drone (Defense)",
  1938. image: {
  1939. source: "./media/characters/jazzy/drone-defense.svg"
  1940. }
  1941. },
  1942. },
  1943. [
  1944. {
  1945. name: "Macro",
  1946. height: math.unit(216, "feet"),
  1947. default: true
  1948. },
  1949. ]
  1950. ))
  1951. characterMakers.push(() => makeCharacter(
  1952. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  1953. {
  1954. front: {
  1955. height: math.unit(7, "feet"),
  1956. weight: math.unit(80, "kg"),
  1957. name: "Front",
  1958. image: {
  1959. source: "./media/characters/flamm/front.svg",
  1960. extra: 1794 / 1677,
  1961. bottom: 31.7 / 1828.5
  1962. }
  1963. },
  1964. },
  1965. [
  1966. {
  1967. name: "Normal",
  1968. height: math.unit(9.5, "feet")
  1969. },
  1970. {
  1971. name: "Macro",
  1972. height: math.unit(200, "feet"),
  1973. default: true
  1974. },
  1975. ]
  1976. ))
  1977. characterMakers.push(() => makeCharacter(
  1978. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  1979. {
  1980. front: {
  1981. height: math.unit(7, "feet"),
  1982. weight: math.unit(80, "kg"),
  1983. name: "Front",
  1984. image: {
  1985. source: "./media/characters/zephiro/front.svg",
  1986. extra: 2309 / 2162,
  1987. bottom: 0.069
  1988. }
  1989. },
  1990. side: {
  1991. height: math.unit(7, "feet"),
  1992. weight: math.unit(80, "kg"),
  1993. name: "Side",
  1994. image: {
  1995. source: "./media/characters/zephiro/side.svg",
  1996. extra: 2403 / 2279,
  1997. bottom: 0.015
  1998. }
  1999. },
  2000. back: {
  2001. height: math.unit(7, "feet"),
  2002. weight: math.unit(80, "kg"),
  2003. name: "Back",
  2004. image: {
  2005. source: "./media/characters/zephiro/back.svg",
  2006. extra: 2373 / 2244,
  2007. bottom: 0.013
  2008. }
  2009. },
  2010. },
  2011. [
  2012. {
  2013. name: "Micro",
  2014. height: math.unit(3, "inches")
  2015. },
  2016. {
  2017. name: "Normal",
  2018. height: math.unit(5 + 3 / 12, "feet"),
  2019. default: true
  2020. },
  2021. {
  2022. name: "Macro",
  2023. height: math.unit(118, "feet")
  2024. },
  2025. ]
  2026. ))
  2027. characterMakers.push(() => makeCharacter(
  2028. { name: "Fory", species: ["weasel"], tags: ["anthro"] },
  2029. {
  2030. front: {
  2031. height: math.unit(5, "feet"),
  2032. weight: math.unit(90, "kg"),
  2033. name: "Front",
  2034. image: {
  2035. source: "./media/characters/fory/front.svg",
  2036. extra: 2862 / 2674,
  2037. bottom: 180 / 3043.8
  2038. }
  2039. },
  2040. back: {
  2041. height: math.unit(5, "feet"),
  2042. weight: math.unit(90, "kg"),
  2043. name: "Back",
  2044. image: {
  2045. source: "./media/characters/fory/back.svg",
  2046. extra: 2962 / 2791,
  2047. bottom: 106 / 3071.8
  2048. }
  2049. },
  2050. foot: {
  2051. height: math.unit(2.14, "feet"),
  2052. name: "Foot",
  2053. image: {
  2054. source: "./media/characters/fory/foot.svg"
  2055. }
  2056. },
  2057. },
  2058. [
  2059. {
  2060. name: "Normal",
  2061. height: math.unit(5, "feet")
  2062. },
  2063. {
  2064. name: "Macro",
  2065. height: math.unit(50, "feet"),
  2066. default: true
  2067. },
  2068. {
  2069. name: "Megamacro",
  2070. height: math.unit(10, "miles")
  2071. },
  2072. {
  2073. name: "Gigamacro",
  2074. height: math.unit(5, "earths")
  2075. },
  2076. ]
  2077. ))
  2078. characterMakers.push(() => makeCharacter(
  2079. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2080. {
  2081. front: {
  2082. height: math.unit(7, "feet"),
  2083. weight: math.unit(90, "kg"),
  2084. name: "Front",
  2085. image: {
  2086. source: "./media/characters/kurrikage/front.svg",
  2087. extra: 1,
  2088. bottom: 0.035
  2089. }
  2090. },
  2091. back: {
  2092. height: math.unit(7, "feet"),
  2093. weight: math.unit(90, "lb"),
  2094. name: "Back",
  2095. image: {
  2096. source: "./media/characters/kurrikage/back.svg"
  2097. }
  2098. },
  2099. paw: {
  2100. height: math.unit(1.5, "feet"),
  2101. name: "Paw",
  2102. image: {
  2103. source: "./media/characters/kurrikage/paw.svg"
  2104. }
  2105. },
  2106. staff: {
  2107. height: math.unit(6.7, "feet"),
  2108. name: "Staff",
  2109. image: {
  2110. source: "./media/characters/kurrikage/staff.svg"
  2111. }
  2112. },
  2113. peek: {
  2114. height: math.unit(1.05, "feet"),
  2115. name: "Peeking",
  2116. image: {
  2117. source: "./media/characters/kurrikage/peek.svg",
  2118. bottom: 0.08
  2119. }
  2120. },
  2121. },
  2122. [
  2123. {
  2124. name: "Normal",
  2125. height: math.unit(12, "feet"),
  2126. default: true
  2127. },
  2128. {
  2129. name: "Big",
  2130. height: math.unit(20, "feet")
  2131. },
  2132. {
  2133. name: "Macro",
  2134. height: math.unit(500, "feet")
  2135. },
  2136. {
  2137. name: "Megamacro",
  2138. height: math.unit(20, "miles")
  2139. },
  2140. ]
  2141. ))
  2142. characterMakers.push(() => makeCharacter(
  2143. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2144. {
  2145. front: {
  2146. height: math.unit(6, "feet"),
  2147. weight: math.unit(75, "kg"),
  2148. name: "Front",
  2149. image: {
  2150. source: "./media/characters/shingo/front.svg",
  2151. extra: 3511 / 3338,
  2152. bottom: 0.005
  2153. }
  2154. },
  2155. },
  2156. [
  2157. {
  2158. name: "Micro",
  2159. height: math.unit(4, "inches")
  2160. },
  2161. {
  2162. name: "Normal",
  2163. height: math.unit(6, "feet"),
  2164. default: true
  2165. },
  2166. {
  2167. name: "Macro",
  2168. height: math.unit(108, "feet")
  2169. }
  2170. ]
  2171. ))
  2172. characterMakers.push(() => makeCharacter(
  2173. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2174. {
  2175. side: {
  2176. height: math.unit(6, "feet"),
  2177. weight: math.unit(75, "kg"),
  2178. name: "Side",
  2179. image: {
  2180. source: "./media/characters/aigey/side.svg"
  2181. }
  2182. },
  2183. },
  2184. [
  2185. {
  2186. name: "Macro",
  2187. height: math.unit(200, "feet"),
  2188. default: true
  2189. },
  2190. {
  2191. name: "Megamacro",
  2192. height: math.unit(100, "miles")
  2193. },
  2194. ]
  2195. )
  2196. )
  2197. characterMakers.push(() => makeCharacter(
  2198. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2199. {
  2200. front: {
  2201. height: math.unit(5 + 5 / 12, "feet"),
  2202. weight: math.unit(75, "kg"),
  2203. name: "Front",
  2204. image: {
  2205. source: "./media/characters/natasha/front.svg",
  2206. extra: 859/824,
  2207. bottom: 23/879.6
  2208. }
  2209. },
  2210. frontNsfw: {
  2211. height: math.unit(5 + 5 / 12, "feet"),
  2212. weight: math.unit(75, "kg"),
  2213. name: "Front (NSFW)",
  2214. image: {
  2215. source: "./media/characters/natasha/front-nsfw.svg",
  2216. extra: 859/824,
  2217. bottom: 23/879.6
  2218. }
  2219. },
  2220. frontErect: {
  2221. height: math.unit(5 + 5 / 12, "feet"),
  2222. weight: math.unit(75, "kg"),
  2223. name: "Front (Erect)",
  2224. image: {
  2225. source: "./media/characters/natasha/front-erect.svg",
  2226. extra: 859/824,
  2227. bottom: 23/879.6
  2228. }
  2229. },
  2230. back: {
  2231. height: math.unit(5 + 5 / 12, "feet"),
  2232. weight: math.unit(75, "kg"),
  2233. name: "Back",
  2234. image: {
  2235. source: "./media/characters/natasha/back.svg",
  2236. extra: 887.9/852.6,
  2237. bottom: 9.7/896.4
  2238. }
  2239. },
  2240. backAlt: {
  2241. height: math.unit(5 + 5 / 12, "feet"),
  2242. weight: math.unit(75, "kg"),
  2243. name: "Back (Alt)",
  2244. image: {
  2245. source: "./media/characters/natasha/back-alt.svg",
  2246. extra: 1236.7/1192,
  2247. bottom: 22.3/1258.2
  2248. }
  2249. },
  2250. dick: {
  2251. height: math.unit(1.772, "feet"),
  2252. name: "Dick",
  2253. image: {
  2254. source: "./media/characters/natasha/dick.svg"
  2255. }
  2256. },
  2257. },
  2258. [
  2259. {
  2260. name: "Normal",
  2261. height: math.unit(5 + 5 / 12, "feet")
  2262. },
  2263. {
  2264. name: "Large",
  2265. height: math.unit(12, "feet")
  2266. },
  2267. {
  2268. name: "Macro",
  2269. height: math.unit(100, "feet"),
  2270. default: true
  2271. },
  2272. {
  2273. name: "Macro+",
  2274. height: math.unit(260, "feet")
  2275. },
  2276. {
  2277. name: "Macro++",
  2278. height: math.unit(1, "mile")
  2279. },
  2280. ]
  2281. ))
  2282. characterMakers.push(() => makeCharacter(
  2283. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2284. {
  2285. front: {
  2286. height: math.unit(6, "feet"),
  2287. weight: math.unit(75, "kg"),
  2288. name: "Front",
  2289. image: {
  2290. source: "./media/characters/malik/front.svg"
  2291. }
  2292. },
  2293. side: {
  2294. height: math.unit(6, "feet"),
  2295. weight: math.unit(75, "kg"),
  2296. name: "Side",
  2297. image: {
  2298. source: "./media/characters/malik/side.svg",
  2299. extra: 1.1539
  2300. }
  2301. },
  2302. back: {
  2303. height: math.unit(6, "feet"),
  2304. weight: math.unit(75, "kg"),
  2305. name: "Back",
  2306. image: {
  2307. source: "./media/characters/malik/back.svg"
  2308. }
  2309. },
  2310. },
  2311. [
  2312. {
  2313. name: "Macro",
  2314. height: math.unit(156, "feet"),
  2315. default: true
  2316. },
  2317. {
  2318. name: "Macro+",
  2319. height: math.unit(1188, "feet")
  2320. },
  2321. ]
  2322. ))
  2323. characterMakers.push(() => makeCharacter(
  2324. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2325. {
  2326. front: {
  2327. height: math.unit(6, "feet"),
  2328. weight: math.unit(75, "kg"),
  2329. name: "Front",
  2330. image: {
  2331. source: "./media/characters/sefer/front.svg"
  2332. }
  2333. },
  2334. back: {
  2335. height: math.unit(6, "feet"),
  2336. weight: math.unit(75, "kg"),
  2337. name: "Back",
  2338. image: {
  2339. source: "./media/characters/sefer/back.svg"
  2340. }
  2341. },
  2342. },
  2343. [
  2344. {
  2345. name: "Normal",
  2346. height: math.unit(6, "feet"),
  2347. default: true
  2348. },
  2349. ]
  2350. ))
  2351. characterMakers.push(() => makeCharacter(
  2352. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2353. {
  2354. body: {
  2355. height: math.unit(2.2428, "meter"),
  2356. weight: math.unit(124.738, "kg"),
  2357. name: "Body",
  2358. image: {
  2359. extra: 1225 / 1050,
  2360. source: "./media/characters/north/front.svg"
  2361. }
  2362. }
  2363. },
  2364. [
  2365. {
  2366. name: "Micro",
  2367. height: math.unit(4, "inches")
  2368. },
  2369. {
  2370. name: "Macro",
  2371. height: math.unit(63, "meters")
  2372. },
  2373. {
  2374. name: "Megamacro",
  2375. height: math.unit(101, "miles"),
  2376. default: true
  2377. }
  2378. ]
  2379. ))
  2380. characterMakers.push(() => makeCharacter(
  2381. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2382. {
  2383. angled: {
  2384. height: math.unit(4, "meter"),
  2385. weight: math.unit(150, "kg"),
  2386. name: "Angled",
  2387. image: {
  2388. source: "./media/characters/talan/angled-sfw.svg",
  2389. bottom: 29 / 3734
  2390. }
  2391. },
  2392. angledNsfw: {
  2393. height: math.unit(4, "meter"),
  2394. weight: math.unit(150, "kg"),
  2395. name: "Angled (NSFW)",
  2396. image: {
  2397. source: "./media/characters/talan/angled-nsfw.svg",
  2398. bottom: 29 / 3734
  2399. }
  2400. },
  2401. frontNsfw: {
  2402. height: math.unit(4, "meter"),
  2403. weight: math.unit(150, "kg"),
  2404. name: "Front (NSFW)",
  2405. image: {
  2406. source: "./media/characters/talan/front-nsfw.svg",
  2407. bottom: 29 / 3734
  2408. }
  2409. },
  2410. sideNsfw: {
  2411. height: math.unit(4, "meter"),
  2412. weight: math.unit(150, "kg"),
  2413. name: "Side (NSFW)",
  2414. image: {
  2415. source: "./media/characters/talan/side-nsfw.svg",
  2416. bottom: 29 / 3734
  2417. }
  2418. },
  2419. back: {
  2420. height: math.unit(4, "meter"),
  2421. weight: math.unit(150, "kg"),
  2422. name: "Back",
  2423. image: {
  2424. source: "./media/characters/talan/back.svg"
  2425. }
  2426. },
  2427. dickBottom: {
  2428. height: math.unit(0.621, "meter"),
  2429. name: "Dick (Bottom)",
  2430. image: {
  2431. source: "./media/characters/talan/dick-bottom.svg"
  2432. }
  2433. },
  2434. dickTop: {
  2435. height: math.unit(0.621, "meter"),
  2436. name: "Dick (Top)",
  2437. image: {
  2438. source: "./media/characters/talan/dick-top.svg"
  2439. }
  2440. },
  2441. dickSide: {
  2442. height: math.unit(0.305, "meter"),
  2443. name: "Dick (Side)",
  2444. image: {
  2445. source: "./media/characters/talan/dick-side.svg"
  2446. }
  2447. },
  2448. dickFront: {
  2449. height: math.unit(0.305, "meter"),
  2450. name: "Dick (Front)",
  2451. image: {
  2452. source: "./media/characters/talan/dick-front.svg"
  2453. }
  2454. },
  2455. },
  2456. [
  2457. {
  2458. name: "Normal",
  2459. height: math.unit(4, "meters")
  2460. },
  2461. {
  2462. name: "Macro",
  2463. height: math.unit(100, "meters")
  2464. },
  2465. {
  2466. name: "Megamacro",
  2467. height: math.unit(2, "miles"),
  2468. default: true
  2469. },
  2470. {
  2471. name: "Gigamacro",
  2472. height: math.unit(5000, "miles")
  2473. },
  2474. {
  2475. name: "Teramacro",
  2476. height: math.unit(100, "parsecs")
  2477. }
  2478. ]
  2479. ))
  2480. characterMakers.push(() => makeCharacter(
  2481. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2482. {
  2483. front: {
  2484. height: math.unit(2, "meter"),
  2485. weight: math.unit(90, "kg"),
  2486. name: "Front",
  2487. image: {
  2488. source: "./media/characters/gael'rathus/front.svg"
  2489. }
  2490. },
  2491. frontAlt: {
  2492. height: math.unit(2, "meter"),
  2493. weight: math.unit(90, "kg"),
  2494. name: "Front (alt)",
  2495. image: {
  2496. source: "./media/characters/gael'rathus/front-alt.svg"
  2497. }
  2498. },
  2499. frontAlt2: {
  2500. height: math.unit(2, "meter"),
  2501. weight: math.unit(90, "kg"),
  2502. name: "Front (alt 2)",
  2503. image: {
  2504. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2505. }
  2506. }
  2507. },
  2508. [
  2509. {
  2510. name: "Normal",
  2511. height: math.unit(9, "feet"),
  2512. default: true
  2513. },
  2514. {
  2515. name: "Large",
  2516. height: math.unit(25, "feet")
  2517. },
  2518. {
  2519. name: "Macro",
  2520. height: math.unit(0.25, "miles")
  2521. },
  2522. {
  2523. name: "Megamacro",
  2524. height: math.unit(10, "miles")
  2525. }
  2526. ]
  2527. ))
  2528. characterMakers.push(() => makeCharacter(
  2529. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2530. {
  2531. side: {
  2532. height: math.unit(2, "meter"),
  2533. weight: math.unit(140, "kg"),
  2534. name: "Side",
  2535. image: {
  2536. source: "./media/characters/sosha/side.svg",
  2537. bottom: 0.042
  2538. }
  2539. },
  2540. },
  2541. [
  2542. {
  2543. name: "Normal",
  2544. height: math.unit(12, "feet"),
  2545. default: true
  2546. }
  2547. ]
  2548. ))
  2549. characterMakers.push(() => makeCharacter(
  2550. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2551. {
  2552. side: {
  2553. height: math.unit(5 + 5 / 12, "feet"),
  2554. weight: math.unit(170, "kg"),
  2555. name: "Side",
  2556. image: {
  2557. source: "./media/characters/runnola/side.svg",
  2558. extra: 741 / 448,
  2559. bottom: 0.05
  2560. }
  2561. },
  2562. },
  2563. [
  2564. {
  2565. name: "Small",
  2566. height: math.unit(3, "feet")
  2567. },
  2568. {
  2569. name: "Normal",
  2570. height: math.unit(5 + 5 / 12, "feet"),
  2571. default: true
  2572. },
  2573. {
  2574. name: "Big",
  2575. height: math.unit(10, "feet")
  2576. },
  2577. ]
  2578. ))
  2579. characterMakers.push(() => makeCharacter(
  2580. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2581. {
  2582. front: {
  2583. height: math.unit(2, "meter"),
  2584. weight: math.unit(50, "kg"),
  2585. name: "Front",
  2586. image: {
  2587. source: "./media/characters/kurribird/front.svg",
  2588. bottom: 0.015
  2589. }
  2590. },
  2591. frontAlt: {
  2592. height: math.unit(1.5, "meter"),
  2593. weight: math.unit(50, "kg"),
  2594. name: "Front (Alt)",
  2595. image: {
  2596. source: "./media/characters/kurribird/front-alt.svg",
  2597. extra: 1.45
  2598. }
  2599. },
  2600. },
  2601. [
  2602. {
  2603. name: "Normal",
  2604. height: math.unit(7, "feet")
  2605. },
  2606. {
  2607. name: "Big",
  2608. height: math.unit(12, "feet"),
  2609. default: true
  2610. },
  2611. {
  2612. name: "Macro",
  2613. height: math.unit(1500, "feet")
  2614. },
  2615. {
  2616. name: "Megamacro",
  2617. height: math.unit(2, "miles")
  2618. }
  2619. ]
  2620. ))
  2621. characterMakers.push(() => makeCharacter(
  2622. { name: "Elbial", species: ["goat", "lion", "demon"], tags: ["anthro"] },
  2623. {
  2624. front: {
  2625. height: math.unit(2, "meter"),
  2626. weight: math.unit(80, "kg"),
  2627. name: "Front",
  2628. image: {
  2629. source: "./media/characters/elbial/front.svg",
  2630. extra: 1643 / 1556,
  2631. bottom: 60.2 / 1696
  2632. }
  2633. },
  2634. side: {
  2635. height: math.unit(2, "meter"),
  2636. weight: math.unit(80, "kg"),
  2637. name: "Side",
  2638. image: {
  2639. source: "./media/characters/elbial/side.svg",
  2640. extra: 1630 / 1565,
  2641. bottom: 71.5 / 1697
  2642. }
  2643. },
  2644. back: {
  2645. height: math.unit(2, "meter"),
  2646. weight: math.unit(80, "kg"),
  2647. name: "Back",
  2648. image: {
  2649. source: "./media/characters/elbial/back.svg",
  2650. extra: 1668 / 1595,
  2651. bottom: 5.6 / 1672
  2652. }
  2653. },
  2654. frontDressed: {
  2655. height: math.unit(2, "meter"),
  2656. weight: math.unit(80, "kg"),
  2657. name: "Front (Dressed)",
  2658. image: {
  2659. source: "./media/characters/elbial/front-dressed.svg",
  2660. extra: 1653 / 1584,
  2661. bottom: 57 / 1708
  2662. }
  2663. },
  2664. genitals: {
  2665. height: math.unit(2 / 3.367, "meter"),
  2666. name: "Genitals",
  2667. image: {
  2668. source: "./media/characters/elbial/genitals.svg"
  2669. }
  2670. },
  2671. },
  2672. [
  2673. {
  2674. name: "Large",
  2675. height: math.unit(100, "feet")
  2676. },
  2677. {
  2678. name: "Macro",
  2679. height: math.unit(500, "feet"),
  2680. default: true
  2681. },
  2682. {
  2683. name: "Megamacro",
  2684. height: math.unit(10, "miles")
  2685. },
  2686. {
  2687. name: "Gigamacro",
  2688. height: math.unit(25000, "miles")
  2689. },
  2690. {
  2691. name: "Full-Size",
  2692. height: math.unit(8000000, "gigaparsecs")
  2693. }
  2694. ]
  2695. ))
  2696. characterMakers.push(() => makeCharacter(
  2697. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2698. {
  2699. front: {
  2700. height: math.unit(2, "meter"),
  2701. weight: math.unit(60, "kg"),
  2702. name: "Front",
  2703. image: {
  2704. source: "./media/characters/noah/front.svg"
  2705. }
  2706. },
  2707. talons: {
  2708. height: math.unit(0.315, "meter"),
  2709. name: "Talons",
  2710. image: {
  2711. source: "./media/characters/noah/talons.svg"
  2712. }
  2713. }
  2714. },
  2715. [
  2716. {
  2717. name: "Large",
  2718. height: math.unit(50, "feet")
  2719. },
  2720. {
  2721. name: "Macro",
  2722. height: math.unit(750, "feet"),
  2723. default: true
  2724. },
  2725. {
  2726. name: "Megamacro",
  2727. height: math.unit(50, "miles")
  2728. },
  2729. {
  2730. name: "Gigamacro",
  2731. height: math.unit(100000, "miles")
  2732. },
  2733. {
  2734. name: "Full-Size",
  2735. height: math.unit(3000000000, "miles")
  2736. }
  2737. ]
  2738. ))
  2739. characterMakers.push(() => makeCharacter(
  2740. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2741. {
  2742. front: {
  2743. height: math.unit(2, "meter"),
  2744. weight: math.unit(80, "kg"),
  2745. name: "Front",
  2746. image: {
  2747. source: "./media/characters/natalya/front.svg"
  2748. }
  2749. },
  2750. back: {
  2751. height: math.unit(2, "meter"),
  2752. weight: math.unit(80, "kg"),
  2753. name: "Back",
  2754. image: {
  2755. source: "./media/characters/natalya/back.svg"
  2756. }
  2757. }
  2758. },
  2759. [
  2760. {
  2761. name: "Normal",
  2762. height: math.unit(150, "feet"),
  2763. default: true
  2764. },
  2765. {
  2766. name: "Megamacro",
  2767. height: math.unit(5, "miles")
  2768. },
  2769. {
  2770. name: "Full-Size",
  2771. height: math.unit(600, "kiloparsecs")
  2772. }
  2773. ]
  2774. ))
  2775. characterMakers.push(() => makeCharacter(
  2776. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2777. {
  2778. front: {
  2779. height: math.unit(2, "meter"),
  2780. weight: math.unit(50, "kg"),
  2781. name: "Front",
  2782. image: {
  2783. source: "./media/characters/erestrebah/front.svg",
  2784. extra: 208 / 193,
  2785. bottom: 0.055
  2786. }
  2787. },
  2788. back: {
  2789. height: math.unit(2, "meter"),
  2790. weight: math.unit(50, "kg"),
  2791. name: "Back",
  2792. image: {
  2793. source: "./media/characters/erestrebah/back.svg",
  2794. extra: 1.3
  2795. }
  2796. }
  2797. },
  2798. [
  2799. {
  2800. name: "Normal",
  2801. height: math.unit(10, "feet")
  2802. },
  2803. {
  2804. name: "Large",
  2805. height: math.unit(50, "feet"),
  2806. default: true
  2807. },
  2808. {
  2809. name: "Macro",
  2810. height: math.unit(300, "feet")
  2811. },
  2812. {
  2813. name: "Macro+",
  2814. height: math.unit(750, "feet")
  2815. },
  2816. {
  2817. name: "Megamacro",
  2818. height: math.unit(3, "miles")
  2819. }
  2820. ]
  2821. ))
  2822. characterMakers.push(() => makeCharacter(
  2823. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2824. {
  2825. front: {
  2826. height: math.unit(2, "meter"),
  2827. weight: math.unit(80, "kg"),
  2828. name: "Front",
  2829. image: {
  2830. source: "./media/characters/jennifer/front.svg",
  2831. bottom: 0.11,
  2832. extra: 1.16
  2833. }
  2834. },
  2835. frontAlt: {
  2836. height: math.unit(2, "meter"),
  2837. weight: math.unit(80, "kg"),
  2838. name: "Front (Alt)",
  2839. image: {
  2840. source: "./media/characters/jennifer/front-alt.svg"
  2841. }
  2842. }
  2843. },
  2844. [
  2845. {
  2846. name: "Canon Height",
  2847. height: math.unit(120, "feet"),
  2848. default: true
  2849. },
  2850. {
  2851. name: "Macro+",
  2852. height: math.unit(300, "feet")
  2853. },
  2854. {
  2855. name: "Megamacro",
  2856. height: math.unit(20000, "feet")
  2857. }
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(2, "meter"),
  2865. weight: math.unit(50, "kg"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/kalista/front.svg",
  2869. extra: 1947 / 1700,
  2870. bottom: 76.6/1412.98
  2871. }
  2872. },
  2873. back: {
  2874. height: math.unit(2, "meter"),
  2875. weight: math.unit(50, "kg"),
  2876. name: "Back",
  2877. image: {
  2878. source: "./media/characters/kalista/back.svg",
  2879. extra: 1366 / 1156,
  2880. bottom: 33.9/1362.78
  2881. }
  2882. }
  2883. },
  2884. [
  2885. {
  2886. name: "Uncomfortably Small",
  2887. height: math.unit(10, "feet")
  2888. },
  2889. {
  2890. name: "Small",
  2891. height: math.unit(30, "feet")
  2892. },
  2893. {
  2894. name: "Macro",
  2895. height: math.unit(100, "feet"),
  2896. default: true
  2897. },
  2898. {
  2899. name: "Macro+",
  2900. height: math.unit(2000, "feet")
  2901. },
  2902. {
  2903. name: "True Form",
  2904. height: math.unit(8924, "miles")
  2905. }
  2906. ]
  2907. ))
  2908. characterMakers.push(() => makeCharacter(
  2909. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2910. {
  2911. front: {
  2912. height: math.unit(2, "meter"),
  2913. weight: math.unit(120, "kg"),
  2914. name: "Front",
  2915. image: {
  2916. source: "./media/characters/ggv/front.svg"
  2917. }
  2918. },
  2919. side: {
  2920. height: math.unit(2, "meter"),
  2921. weight: math.unit(120, "kg"),
  2922. name: "Side",
  2923. image: {
  2924. source: "./media/characters/ggv/side.svg"
  2925. }
  2926. }
  2927. },
  2928. [
  2929. {
  2930. name: "Extremely Puny",
  2931. height: math.unit(9 + 5 / 12, "feet")
  2932. },
  2933. {
  2934. name: "Horribly Small",
  2935. height: math.unit(47.7, "miles"),
  2936. default: true
  2937. },
  2938. {
  2939. name: "Reasonably Sized",
  2940. height: math.unit(25000, "parsecs")
  2941. },
  2942. {
  2943. name: "Slightly Uncompressed",
  2944. height: math.unit(7.77e31, "parsecs")
  2945. },
  2946. {
  2947. name: "Omniversal",
  2948. height: math.unit(1e300, "meters")
  2949. },
  2950. ]
  2951. ))
  2952. characterMakers.push(() => makeCharacter(
  2953. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  2954. {
  2955. front: {
  2956. height: math.unit(2, "meter"),
  2957. weight: math.unit(75, "lb"),
  2958. name: "Front",
  2959. image: {
  2960. source: "./media/characters/napalm/front.svg"
  2961. }
  2962. },
  2963. back: {
  2964. height: math.unit(2, "meter"),
  2965. weight: math.unit(75, "lb"),
  2966. name: "Back",
  2967. image: {
  2968. source: "./media/characters/napalm/back.svg"
  2969. }
  2970. }
  2971. },
  2972. [
  2973. {
  2974. name: "Standard",
  2975. height: math.unit(55, "feet"),
  2976. default: true
  2977. }
  2978. ]
  2979. ))
  2980. characterMakers.push(() => makeCharacter(
  2981. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  2982. {
  2983. front: {
  2984. height: math.unit(7 + 5 / 6, "feet"),
  2985. weight: math.unit(325, "lb"),
  2986. name: "Front",
  2987. image: {
  2988. source: "./media/characters/asana/front.svg",
  2989. extra: 1128 / 1068
  2990. }
  2991. },
  2992. back: {
  2993. height: math.unit(7 + 5 / 6, "feet"),
  2994. weight: math.unit(325, "lb"),
  2995. name: "Back",
  2996. image: {
  2997. source: "./media/characters/asana/back.svg",
  2998. extra: 1128 / 1068
  2999. }
  3000. },
  3001. },
  3002. [
  3003. {
  3004. name: "Standard",
  3005. height: math.unit(7 + 5 / 6, "feet"),
  3006. default: true
  3007. },
  3008. {
  3009. name: "Large",
  3010. height: math.unit(10, "meters")
  3011. },
  3012. {
  3013. name: "Macro",
  3014. height: math.unit(2500, "meters")
  3015. },
  3016. {
  3017. name: "Megamacro",
  3018. height: math.unit(5e6, "meters")
  3019. },
  3020. {
  3021. name: "Examacro",
  3022. height: math.unit(5e12, "lightyears")
  3023. },
  3024. {
  3025. name: "Max Size",
  3026. height: math.unit(1e31, "lightyears")
  3027. }
  3028. ]
  3029. ))
  3030. characterMakers.push(() => makeCharacter(
  3031. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3032. {
  3033. front: {
  3034. height: math.unit(2, "meter"),
  3035. weight: math.unit(60, "kg"),
  3036. name: "Front",
  3037. image: {
  3038. source: "./media/characters/ebony/front.svg",
  3039. bottom: 0.03,
  3040. extra: 1045 / 810 + 0.03
  3041. }
  3042. },
  3043. side: {
  3044. height: math.unit(2, "meter"),
  3045. weight: math.unit(60, "kg"),
  3046. name: "Side",
  3047. image: {
  3048. source: "./media/characters/ebony/side.svg",
  3049. bottom: 0.03,
  3050. extra: 1045 / 810 + 0.03
  3051. }
  3052. },
  3053. back: {
  3054. height: math.unit(2, "meter"),
  3055. weight: math.unit(60, "kg"),
  3056. name: "Back",
  3057. image: {
  3058. source: "./media/characters/ebony/back.svg",
  3059. bottom: 0.01,
  3060. extra: 1045 / 810 + 0.01
  3061. }
  3062. },
  3063. },
  3064. [
  3065. // TODO check why I did this lol
  3066. {
  3067. name: "Standard",
  3068. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3069. default: true
  3070. },
  3071. {
  3072. name: "Macro",
  3073. height: math.unit(200, "feet")
  3074. },
  3075. {
  3076. name: "Gigamacro",
  3077. height: math.unit(13000, "km")
  3078. }
  3079. ]
  3080. ))
  3081. characterMakers.push(() => makeCharacter(
  3082. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3083. {
  3084. front: {
  3085. height: math.unit(6, "feet"),
  3086. weight: math.unit(175, "lb"),
  3087. name: "Front",
  3088. image: {
  3089. source: "./media/characters/mountain/front.svg"
  3090. }
  3091. },
  3092. back: {
  3093. height: math.unit(6, "feet"),
  3094. weight: math.unit(175, "lb"),
  3095. name: "Back",
  3096. image: {
  3097. source: "./media/characters/mountain/back.svg"
  3098. }
  3099. },
  3100. },
  3101. [
  3102. {
  3103. name: "Large",
  3104. height: math.unit(20, "meters")
  3105. },
  3106. {
  3107. name: "Macro",
  3108. height: math.unit(300, "meters")
  3109. },
  3110. {
  3111. name: "Gigamacro",
  3112. height: math.unit(10000, "km"),
  3113. default: true
  3114. },
  3115. {
  3116. name: "Examacro",
  3117. height: math.unit(10e9, "lightyears")
  3118. }
  3119. ]
  3120. ))
  3121. characterMakers.push(() => makeCharacter(
  3122. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3123. {
  3124. front: {
  3125. height: math.unit(8, "feet"),
  3126. weight: math.unit(500, "lb"),
  3127. name: "Front",
  3128. image: {
  3129. source: "./media/characters/rick/front.svg"
  3130. }
  3131. }
  3132. },
  3133. [
  3134. {
  3135. name: "Normal",
  3136. height: math.unit(8, "feet"),
  3137. default: true
  3138. },
  3139. {
  3140. name: "Macro",
  3141. height: math.unit(5, "km")
  3142. }
  3143. ]
  3144. ))
  3145. characterMakers.push(() => makeCharacter(
  3146. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3147. {
  3148. front: {
  3149. height: math.unit(8, "feet"),
  3150. weight: math.unit(120, "lb"),
  3151. name: "Front",
  3152. image: {
  3153. source: "./media/characters/ona/front.svg"
  3154. }
  3155. },
  3156. frontAlt: {
  3157. height: math.unit(8, "feet"),
  3158. weight: math.unit(120, "lb"),
  3159. name: "Front (Alt)",
  3160. image: {
  3161. source: "./media/characters/ona/front-alt.svg"
  3162. }
  3163. },
  3164. back: {
  3165. height: math.unit(8, "feet"),
  3166. weight: math.unit(120, "lb"),
  3167. name: "Back",
  3168. image: {
  3169. source: "./media/characters/ona/back.svg"
  3170. }
  3171. },
  3172. foot: {
  3173. height: math.unit(1.1, "feet"),
  3174. name: "Foot",
  3175. image: {
  3176. source: "./media/characters/ona/foot.svg"
  3177. }
  3178. }
  3179. },
  3180. [
  3181. {
  3182. name: "Megamacro",
  3183. height: math.unit(70, "km"),
  3184. default: true
  3185. },
  3186. {
  3187. name: "Gigamacro",
  3188. height: math.unit(681818, "miles")
  3189. },
  3190. {
  3191. name: "Examacro",
  3192. height: math.unit(3800000, "lightyears")
  3193. },
  3194. ]
  3195. ))
  3196. characterMakers.push(() => makeCharacter(
  3197. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3198. {
  3199. front: {
  3200. height: math.unit(12, "feet"),
  3201. weight: math.unit(3000, "lb"),
  3202. name: "Front",
  3203. image: {
  3204. source: "./media/characters/mech/front.svg",
  3205. bottom: 0.025,
  3206. }
  3207. },
  3208. back: {
  3209. height: math.unit(12, "feet"),
  3210. weight: math.unit(3000, "lb"),
  3211. name: "Back",
  3212. image: {
  3213. source: "./media/characters/mech/back.svg",
  3214. bottom: 0.03,
  3215. }
  3216. }
  3217. },
  3218. [
  3219. {
  3220. name: "Normal",
  3221. height: math.unit(12, "feet")
  3222. },
  3223. {
  3224. name: "Macro",
  3225. height: math.unit(300, "feet"),
  3226. default: true
  3227. },
  3228. {
  3229. name: "Macro+",
  3230. height: math.unit(1500, "feet")
  3231. },
  3232. ]
  3233. ))
  3234. characterMakers.push(() => makeCharacter(
  3235. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3236. {
  3237. front: {
  3238. height: math.unit(1.3, "meter"),
  3239. weight: math.unit(30, "kg"),
  3240. name: "Front",
  3241. image: {
  3242. source: "./media/characters/gregory/front.svg",
  3243. }
  3244. }
  3245. },
  3246. [
  3247. {
  3248. name: "Normal",
  3249. height: math.unit(1.3, "meter"),
  3250. default: true
  3251. },
  3252. {
  3253. name: "Macro",
  3254. height: math.unit(20, "meter")
  3255. }
  3256. ]
  3257. ))
  3258. characterMakers.push(() => makeCharacter(
  3259. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3260. {
  3261. front: {
  3262. height: math.unit(2.8, "meter"),
  3263. weight: math.unit(200, "kg"),
  3264. name: "Front",
  3265. image: {
  3266. source: "./media/characters/elory/front.svg",
  3267. }
  3268. }
  3269. },
  3270. [
  3271. {
  3272. name: "Normal",
  3273. height: math.unit(2.8, "meter"),
  3274. default: true
  3275. },
  3276. {
  3277. name: "Macro",
  3278. height: math.unit(38, "meter")
  3279. }
  3280. ]
  3281. ))
  3282. characterMakers.push(() => makeCharacter(
  3283. { name: "Angelpatamon", species: ["patamon"], tags: ["anthro"] },
  3284. {
  3285. front: {
  3286. height: math.unit(470, "feet"),
  3287. weight: math.unit(924, "tons"),
  3288. name: "Front",
  3289. image: {
  3290. source: "./media/characters/angelpatamon/front.svg",
  3291. }
  3292. }
  3293. },
  3294. [
  3295. {
  3296. name: "Normal",
  3297. height: math.unit(470, "feet"),
  3298. default: true
  3299. },
  3300. {
  3301. name: "Deity Size I",
  3302. height: math.unit(28651.2, "km")
  3303. },
  3304. {
  3305. name: "Deity Size II",
  3306. height: math.unit(171907.2, "km")
  3307. }
  3308. ]
  3309. ))
  3310. characterMakers.push(() => makeCharacter(
  3311. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3312. {
  3313. side: {
  3314. height: math.unit(7.2, "meter"),
  3315. weight: math.unit(8.2, "tons"),
  3316. name: "Side",
  3317. image: {
  3318. source: "./media/characters/cryae/side.svg",
  3319. extra: 3500 / 1500
  3320. }
  3321. }
  3322. },
  3323. [
  3324. {
  3325. name: "Normal",
  3326. height: math.unit(7.2, "meter"),
  3327. default: true
  3328. }
  3329. ]
  3330. ))
  3331. characterMakers.push(() => makeCharacter(
  3332. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3333. {
  3334. front: {
  3335. height: math.unit(6, "feet"),
  3336. weight: math.unit(175, "lb"),
  3337. name: "Front",
  3338. image: {
  3339. source: "./media/characters/xera/front.svg",
  3340. extra: 2300 / 2061
  3341. }
  3342. },
  3343. side: {
  3344. height: math.unit(6, "feet"),
  3345. weight: math.unit(175, "lb"),
  3346. name: "Side",
  3347. image: {
  3348. source: "./media/characters/xera/side.svg",
  3349. extra: 2300 / 2061
  3350. }
  3351. },
  3352. back: {
  3353. height: math.unit(6, "feet"),
  3354. weight: math.unit(175, "lb"),
  3355. name: "Back",
  3356. image: {
  3357. source: "./media/characters/xera/back.svg"
  3358. }
  3359. },
  3360. },
  3361. [
  3362. {
  3363. name: "Small",
  3364. height: math.unit(10, "feet")
  3365. },
  3366. {
  3367. name: "Macro",
  3368. height: math.unit(500, "meters"),
  3369. default: true
  3370. },
  3371. {
  3372. name: "Macro+",
  3373. height: math.unit(10, "km")
  3374. },
  3375. {
  3376. name: "Gigamacro",
  3377. height: math.unit(25000, "km")
  3378. },
  3379. {
  3380. name: "Teramacro",
  3381. height: math.unit(3e6, "km")
  3382. }
  3383. ]
  3384. ))
  3385. characterMakers.push(() => makeCharacter(
  3386. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3387. {
  3388. front: {
  3389. height: math.unit(6, "feet"),
  3390. weight: math.unit(175, "lb"),
  3391. name: "Front",
  3392. image: {
  3393. source: "./media/characters/nebula/front.svg",
  3394. extra: 2600 / 2450
  3395. }
  3396. }
  3397. },
  3398. [
  3399. {
  3400. name: "Small",
  3401. height: math.unit(4.5, "meters")
  3402. },
  3403. {
  3404. name: "Macro",
  3405. height: math.unit(1500, "meters"),
  3406. default: true
  3407. },
  3408. {
  3409. name: "Megamacro",
  3410. height: math.unit(150, "km")
  3411. },
  3412. {
  3413. name: "Gigamacro",
  3414. height: math.unit(27000, "km")
  3415. }
  3416. ]
  3417. ))
  3418. characterMakers.push(() => makeCharacter(
  3419. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3420. {
  3421. front: {
  3422. height: math.unit(6, "feet"),
  3423. weight: math.unit(225, "lb"),
  3424. name: "Front",
  3425. image: {
  3426. source: "./media/characters/abysgar/front.svg"
  3427. }
  3428. }
  3429. },
  3430. [
  3431. {
  3432. name: "Small",
  3433. height: math.unit(4.5, "meters")
  3434. },
  3435. {
  3436. name: "Macro",
  3437. height: math.unit(1250, "meters"),
  3438. default: true
  3439. },
  3440. {
  3441. name: "Megamacro",
  3442. height: math.unit(125, "km")
  3443. },
  3444. {
  3445. name: "Gigamacro",
  3446. height: math.unit(26000, "km")
  3447. }
  3448. ]
  3449. ))
  3450. characterMakers.push(() => makeCharacter(
  3451. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3452. {
  3453. front: {
  3454. height: math.unit(6, "feet"),
  3455. weight: math.unit(180, "lb"),
  3456. name: "Front",
  3457. image: {
  3458. source: "./media/characters/yakuz/front.svg"
  3459. }
  3460. }
  3461. },
  3462. [
  3463. {
  3464. name: "Small",
  3465. height: math.unit(5, "meters")
  3466. },
  3467. {
  3468. name: "Macro",
  3469. height: math.unit(1500, "meters"),
  3470. default: true
  3471. },
  3472. {
  3473. name: "Megamacro",
  3474. height: math.unit(200, "km")
  3475. },
  3476. {
  3477. name: "Gigamacro",
  3478. height: math.unit(100000, "km")
  3479. }
  3480. ]
  3481. ))
  3482. characterMakers.push(() => makeCharacter(
  3483. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3484. {
  3485. front: {
  3486. height: math.unit(6, "feet"),
  3487. weight: math.unit(175, "lb"),
  3488. name: "Front",
  3489. image: {
  3490. source: "./media/characters/mirova/front.svg"
  3491. }
  3492. }
  3493. },
  3494. [
  3495. {
  3496. name: "Small",
  3497. height: math.unit(5, "meters")
  3498. },
  3499. {
  3500. name: "Macro",
  3501. height: math.unit(900, "meters"),
  3502. default: true
  3503. },
  3504. {
  3505. name: "Megamacro",
  3506. height: math.unit(135, "km")
  3507. },
  3508. {
  3509. name: "Gigamacro",
  3510. height: math.unit(20000, "km")
  3511. }
  3512. ]
  3513. ))
  3514. characterMakers.push(() => makeCharacter(
  3515. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3516. {
  3517. side: {
  3518. height: math.unit(28.35, "feet"),
  3519. weight: math.unit(99.75, "tons"),
  3520. name: "Side",
  3521. image: {
  3522. source: "./media/characters/asana-mech/side.svg"
  3523. }
  3524. }
  3525. },
  3526. [
  3527. {
  3528. name: "Normal",
  3529. height: math.unit(28.35, "feet"),
  3530. default: true
  3531. },
  3532. {
  3533. name: "Macro",
  3534. height: math.unit(2500, "feet")
  3535. },
  3536. {
  3537. name: "Megamacro",
  3538. height: math.unit(25, "miles")
  3539. },
  3540. {
  3541. name: "Examacro",
  3542. height: math.unit(6e8, "lightyears")
  3543. },
  3544. ]
  3545. ))
  3546. characterMakers.push(() => makeCharacter(
  3547. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3548. {
  3549. front: {
  3550. height: math.unit(2, "meters"),
  3551. weight: math.unit(70, "kg"),
  3552. name: "Front",
  3553. image: {
  3554. source: "./media/characters/ashtrek/front.svg",
  3555. extra: 560 / 524,
  3556. bottom: 0.01
  3557. }
  3558. },
  3559. frontArmor: {
  3560. height: math.unit(2, "meters"),
  3561. weight: math.unit(76, "kg"),
  3562. name: "Front (Armor)",
  3563. image: {
  3564. source: "./media/characters/ashtrek/front-armor.svg",
  3565. extra: 561 / 527,
  3566. bottom: 0.01
  3567. }
  3568. },
  3569. side: {
  3570. height: math.unit(2, "meters"),
  3571. weight: math.unit(70, "kg"),
  3572. name: "Side",
  3573. image: {
  3574. source: "./media/characters/ashtrek/side.svg",
  3575. extra: 1717 / 1609,
  3576. bottom: 0.005
  3577. }
  3578. },
  3579. back: {
  3580. height: math.unit(2, "meters"),
  3581. weight: math.unit(70, "kg"),
  3582. name: "Back",
  3583. image: {
  3584. source: "./media/characters/ashtrek/back.svg",
  3585. extra: 1570 / 1501
  3586. }
  3587. },
  3588. },
  3589. [
  3590. {
  3591. name: "DEFCON 5",
  3592. height: math.unit(5, "meters")
  3593. },
  3594. {
  3595. name: "DEFCON 4",
  3596. height: math.unit(500, "meters"),
  3597. default: true
  3598. },
  3599. {
  3600. name: "DEFCON 3",
  3601. height: math.unit(5, "km")
  3602. },
  3603. {
  3604. name: "DEFCON 2",
  3605. height: math.unit(500, "km")
  3606. },
  3607. {
  3608. name: "DEFCON 1",
  3609. height: math.unit(500000, "km")
  3610. },
  3611. {
  3612. name: "DEFCON 0",
  3613. height: math.unit(3, "gigaparsecs")
  3614. },
  3615. ]
  3616. ))
  3617. characterMakers.push(() => makeCharacter(
  3618. { name: "Gale", species: ["monster"], tags: ["anthro"]},
  3619. {
  3620. front: {
  3621. height: math.unit(2, "meters"),
  3622. weight: math.unit(76, "kg"),
  3623. name: "Front",
  3624. image: {
  3625. source: "./media/characters/gale/front.svg"
  3626. }
  3627. },
  3628. frontAlt1: {
  3629. height: math.unit(2, "meters"),
  3630. weight: math.unit(76, "kg"),
  3631. name: "Front (Alt 1)",
  3632. image: {
  3633. source: "./media/characters/gale/front-alt-1.svg"
  3634. }
  3635. },
  3636. frontAlt2: {
  3637. height: math.unit(2, "meters"),
  3638. weight: math.unit(76, "kg"),
  3639. name: "Front (Alt 2)",
  3640. image: {
  3641. source: "./media/characters/gale/front-alt-2.svg"
  3642. }
  3643. },
  3644. },
  3645. [
  3646. {
  3647. name: "Normal",
  3648. height: math.unit(7, "feet")
  3649. },
  3650. {
  3651. name: "Macro",
  3652. height: math.unit(150, "feet"),
  3653. default: true
  3654. },
  3655. {
  3656. name: "Macro+",
  3657. height: math.unit(300, "feet")
  3658. },
  3659. ]
  3660. ))
  3661. characterMakers.push(() => makeCharacter(
  3662. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3663. {
  3664. front: {
  3665. height: math.unit(2, "meters"),
  3666. weight: math.unit(76, "kg"),
  3667. name: "Front",
  3668. image: {
  3669. source: "./media/characters/draylen/front.svg"
  3670. }
  3671. }
  3672. },
  3673. [
  3674. {
  3675. name: "Macro",
  3676. height: math.unit(150, "feet"),
  3677. default: true
  3678. }
  3679. ]
  3680. ))
  3681. characterMakers.push(() => makeCharacter(
  3682. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3683. {
  3684. front: {
  3685. height: math.unit(7 + 9 / 12, "feet"),
  3686. weight: math.unit(379, "lbs"),
  3687. name: "Front",
  3688. image: {
  3689. source: "./media/characters/chez/front.svg"
  3690. }
  3691. },
  3692. side: {
  3693. height: math.unit(7 + 9 / 12, "feet"),
  3694. weight: math.unit(379, "lbs"),
  3695. name: "Side",
  3696. image: {
  3697. source: "./media/characters/chez/side.svg"
  3698. }
  3699. }
  3700. },
  3701. [
  3702. {
  3703. name: "Normal",
  3704. height: math.unit(7 + 9 / 12, "feet"),
  3705. default: true
  3706. },
  3707. {
  3708. name: "God King",
  3709. height: math.unit(9750000, "meters")
  3710. }
  3711. ]
  3712. ))
  3713. characterMakers.push(() => makeCharacter(
  3714. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3715. {
  3716. front: {
  3717. height: math.unit(6, "feet"),
  3718. weight: math.unit(275, "lbs"),
  3719. name: "Front",
  3720. image: {
  3721. source: "./media/characters/kaylum/front.svg",
  3722. bottom: 0.01,
  3723. extra: 1166 / 1031
  3724. }
  3725. },
  3726. frontWingless: {
  3727. height: math.unit(6, "feet"),
  3728. weight: math.unit(275, "lbs"),
  3729. name: "Front (Wingless)",
  3730. image: {
  3731. source: "./media/characters/kaylum/front-wingless.svg",
  3732. bottom: 0.01,
  3733. extra: 1117 / 1031
  3734. }
  3735. }
  3736. },
  3737. [
  3738. {
  3739. name: "Normal",
  3740. height: math.unit(3.05, "meters")
  3741. },
  3742. {
  3743. name: "Master",
  3744. height: math.unit(5.5, "meters")
  3745. },
  3746. {
  3747. name: "Rampage",
  3748. height: math.unit(19, "meters")
  3749. },
  3750. {
  3751. name: "Macro Lite",
  3752. height: math.unit(37, "meters")
  3753. },
  3754. {
  3755. name: "Hyper Predator",
  3756. height: math.unit(61, "meters")
  3757. },
  3758. {
  3759. name: "Macro",
  3760. height: math.unit(138, "meters"),
  3761. default: true
  3762. }
  3763. ]
  3764. ))
  3765. characterMakers.push(() => makeCharacter(
  3766. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3767. {
  3768. front: {
  3769. height: math.unit(6, "feet"),
  3770. weight: math.unit(150, "lbs"),
  3771. name: "Front",
  3772. image: {
  3773. source: "./media/characters/geta/front.svg"
  3774. }
  3775. }
  3776. },
  3777. [
  3778. {
  3779. name: "Micro",
  3780. height: math.unit(3, "inches"),
  3781. default: true
  3782. },
  3783. {
  3784. name: "Normal",
  3785. height: math.unit(5 + 5 / 12, "feet")
  3786. }
  3787. ]
  3788. ))
  3789. characterMakers.push(() => makeCharacter(
  3790. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3791. {
  3792. front: {
  3793. height: math.unit(6, "feet"),
  3794. weight: math.unit(300, "lbs"),
  3795. name: "Front",
  3796. image: {
  3797. source: "./media/characters/tyrnn/front.svg"
  3798. }
  3799. }
  3800. },
  3801. [
  3802. {
  3803. name: "Main Height",
  3804. height: math.unit(355, "feet"),
  3805. default: true
  3806. },
  3807. {
  3808. name: "Fave. Height",
  3809. height: math.unit(2400, "feet")
  3810. }
  3811. ]
  3812. ))
  3813. characterMakers.push(() => makeCharacter(
  3814. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3815. {
  3816. front: {
  3817. height: math.unit(6, "feet"),
  3818. weight: math.unit(300, "lbs"),
  3819. name: "Front",
  3820. image: {
  3821. source: "./media/characters/appledectomy/front.svg"
  3822. }
  3823. }
  3824. },
  3825. [
  3826. {
  3827. name: "Macro",
  3828. height: math.unit(2500, "feet")
  3829. },
  3830. {
  3831. name: "Megamacro",
  3832. height: math.unit(50, "miles"),
  3833. default: true
  3834. },
  3835. {
  3836. name: "Gigamacro",
  3837. height: math.unit(5000, "miles")
  3838. },
  3839. {
  3840. name: "Teramacro",
  3841. height: math.unit(250000, "miles")
  3842. },
  3843. ]
  3844. ))
  3845. characterMakers.push(() => makeCharacter(
  3846. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3847. {
  3848. front: {
  3849. height: math.unit(6, "feet"),
  3850. weight: math.unit(200, "lbs"),
  3851. name: "Front",
  3852. image: {
  3853. source: "./media/characters/vulpes/front.svg",
  3854. extra: 573 / 543,
  3855. bottom: 0.033
  3856. }
  3857. },
  3858. side: {
  3859. height: math.unit(6, "feet"),
  3860. weight: math.unit(200, "lbs"),
  3861. name: "Side",
  3862. image: {
  3863. source: "./media/characters/vulpes/side.svg",
  3864. extra: 573 / 543,
  3865. bottom: 0.01
  3866. }
  3867. },
  3868. back: {
  3869. height: math.unit(6, "feet"),
  3870. weight: math.unit(200, "lbs"),
  3871. name: "Back",
  3872. image: {
  3873. source: "./media/characters/vulpes/back.svg",
  3874. extra: 573 / 543,
  3875. }
  3876. },
  3877. feet: {
  3878. height: math.unit(1.276, "feet"),
  3879. name: "Feet",
  3880. image: {
  3881. source: "./media/characters/vulpes/feet.svg"
  3882. }
  3883. },
  3884. maw: {
  3885. height: math.unit(1.18, "feet"),
  3886. name: "Maw",
  3887. image: {
  3888. source: "./media/characters/vulpes/maw.svg"
  3889. }
  3890. },
  3891. },
  3892. [
  3893. {
  3894. name: "Micro",
  3895. height: math.unit(2, "inches")
  3896. },
  3897. {
  3898. name: "Normal",
  3899. height: math.unit(6.3, "feet")
  3900. },
  3901. {
  3902. name: "Macro",
  3903. height: math.unit(850, "feet")
  3904. },
  3905. {
  3906. name: "Megamacro",
  3907. height: math.unit(7500, "feet"),
  3908. default: true
  3909. },
  3910. {
  3911. name: "Gigamacro",
  3912. height: math.unit(570000, "miles")
  3913. }
  3914. ]
  3915. ))
  3916. characterMakers.push(() => makeCharacter(
  3917. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"]},
  3918. {
  3919. front: {
  3920. height: math.unit(6, "feet"),
  3921. weight: math.unit(210, "lbs"),
  3922. name: "Front",
  3923. image: {
  3924. source: "./media/characters/rain-fallen/front.svg"
  3925. }
  3926. },
  3927. side: {
  3928. height: math.unit(6, "feet"),
  3929. weight: math.unit(210, "lbs"),
  3930. name: "Side",
  3931. image: {
  3932. source: "./media/characters/rain-fallen/side.svg"
  3933. }
  3934. },
  3935. back: {
  3936. height: math.unit(6, "feet"),
  3937. weight: math.unit(210, "lbs"),
  3938. name: "Back",
  3939. image: {
  3940. source: "./media/characters/rain-fallen/back.svg"
  3941. }
  3942. },
  3943. feral: {
  3944. height: math.unit(9, "feet"),
  3945. weight: math.unit(700, "lbs"),
  3946. name: "Feral",
  3947. image: {
  3948. source: "./media/characters/rain-fallen/feral.svg"
  3949. }
  3950. },
  3951. },
  3952. [
  3953. {
  3954. name: "Normal",
  3955. height: math.unit(5, "meter")
  3956. },
  3957. {
  3958. name: "Macro",
  3959. height: math.unit(150, "meter"),
  3960. default: true
  3961. },
  3962. {
  3963. name: "Megamacro",
  3964. height: math.unit(278e6, "meter")
  3965. },
  3966. {
  3967. name: "Gigamacro",
  3968. height: math.unit(2e9, "meter")
  3969. },
  3970. {
  3971. name: "Teramacro",
  3972. height: math.unit(8e12, "meter")
  3973. },
  3974. {
  3975. name: "Devourer",
  3976. height: math.unit(14, "zettameters")
  3977. },
  3978. {
  3979. name: "Scarlet King",
  3980. height: math.unit(18, "yottameters")
  3981. },
  3982. {
  3983. name: "Void",
  3984. height: math.unit(6.66e66, "yottameters")
  3985. }
  3986. ]
  3987. ))
  3988. characterMakers.push(() => makeCharacter(
  3989. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  3990. {
  3991. standing: {
  3992. height: math.unit(6, "feet"),
  3993. weight: math.unit(180, "lbs"),
  3994. name: "Standing",
  3995. image: {
  3996. source: "./media/characters/zaakira/standing.svg"
  3997. }
  3998. },
  3999. laying: {
  4000. height: math.unit(3, "feet"),
  4001. weight: math.unit(180, "lbs"),
  4002. name: "Laying",
  4003. image: {
  4004. source: "./media/characters/zaakira/laying.svg"
  4005. }
  4006. },
  4007. },
  4008. [
  4009. {
  4010. name: "Normal",
  4011. height: math.unit(12, "feet")
  4012. },
  4013. {
  4014. name: "Macro",
  4015. height: math.unit(279, "feet"),
  4016. default: true
  4017. }
  4018. ]
  4019. ))
  4020. characterMakers.push(() => makeCharacter(
  4021. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4022. {
  4023. front: {
  4024. height: math.unit(6, "feet"),
  4025. weight: math.unit(250, "lbs"),
  4026. name: "Front",
  4027. image: {
  4028. source: "./media/characters/sigvald/front.svg",
  4029. extra: 1000 / 850
  4030. }
  4031. },
  4032. back: {
  4033. height: math.unit(6, "feet"),
  4034. weight: math.unit(250, "lbs"),
  4035. name: "Back",
  4036. image: {
  4037. source: "./media/characters/sigvald/back.svg"
  4038. }
  4039. },
  4040. },
  4041. [
  4042. {
  4043. name: "Normal",
  4044. height: math.unit(8, "feet")
  4045. },
  4046. {
  4047. name: "Large",
  4048. height: math.unit(12, "feet")
  4049. },
  4050. {
  4051. name: "Larger",
  4052. height: math.unit(20, "feet")
  4053. },
  4054. {
  4055. name: "Macro",
  4056. height: math.unit(150, "feet")
  4057. },
  4058. {
  4059. name: "Macro+",
  4060. height: math.unit(200, "feet"),
  4061. default: true
  4062. },
  4063. ]
  4064. ))
  4065. characterMakers.push(() => makeCharacter(
  4066. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4067. {
  4068. side: {
  4069. height: math.unit(12, "feet"),
  4070. weight: math.unit(2000, "kg"),
  4071. name: "Side",
  4072. image: {
  4073. source: "./media/characters/scott/side.svg",
  4074. extra: 754/724,
  4075. bottom: 0.069
  4076. }
  4077. },
  4078. upright: {
  4079. height: math.unit(12, "feet"),
  4080. weight: math.unit(2000, "kg"),
  4081. name: "Upright",
  4082. image: {
  4083. source: "./media/characters/scott/upright.svg",
  4084. extra: 3881/3722,
  4085. bottom: 0.05
  4086. }
  4087. },
  4088. },
  4089. [
  4090. {
  4091. name: "Normal",
  4092. height: math.unit(12, "feet"),
  4093. default: true
  4094. },
  4095. ]
  4096. ))
  4097. characterMakers.push(() => makeCharacter(
  4098. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4099. {
  4100. side: {
  4101. height: math.unit(8, "meters"),
  4102. weight: math.unit(84755, "lbs"),
  4103. name: "Side",
  4104. image: {
  4105. source: "./media/characters/tobias/side.svg",
  4106. extra: 1474 / 1096,
  4107. bottom: 38.9 / 1513.1235
  4108. }
  4109. },
  4110. },
  4111. [
  4112. {
  4113. name: "Normal",
  4114. height: math.unit(8, "meters"),
  4115. default: true
  4116. },
  4117. ]
  4118. ))
  4119. characterMakers.push(() => makeCharacter(
  4120. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4121. {
  4122. front: {
  4123. height: math.unit(5.5, "feet"),
  4124. weight: math.unit(400, "lbs"),
  4125. name: "Front",
  4126. image: {
  4127. source: "./media/characters/kieran/front.svg",
  4128. extra: 2694/2364,
  4129. bottom: 217/2908
  4130. }
  4131. },
  4132. side: {
  4133. height: math.unit(5.5, "feet"),
  4134. weight: math.unit(400, "lbs"),
  4135. name: "Side",
  4136. image: {
  4137. source: "./media/characters/kieran/side.svg",
  4138. extra: 875/777,
  4139. bottom: 84.6/959
  4140. }
  4141. },
  4142. },
  4143. [
  4144. {
  4145. name: "Normal",
  4146. height: math.unit(5.5, "feet"),
  4147. default: true
  4148. },
  4149. ]
  4150. ))
  4151. characterMakers.push(() => makeCharacter(
  4152. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4153. {
  4154. side: {
  4155. height: math.unit(2, "meters"),
  4156. weight: math.unit(70, "kg"),
  4157. name: "Side",
  4158. image: {
  4159. source: "./media/characters/sanya/side.svg",
  4160. bottom: 0.02,
  4161. extra: 1.02
  4162. }
  4163. },
  4164. },
  4165. [
  4166. {
  4167. name: "Small",
  4168. height: math.unit(2, "meters")
  4169. },
  4170. {
  4171. name: "Normal",
  4172. height: math.unit(3, "meters")
  4173. },
  4174. {
  4175. name: "Macro",
  4176. height: math.unit(16, "meters"),
  4177. default: true
  4178. },
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4183. {
  4184. side: {
  4185. height: math.unit(2, "meters"),
  4186. weight: math.unit(120, "kg"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/miranda/front.svg",
  4190. extra: 10.6 / 10
  4191. }
  4192. },
  4193. },
  4194. [
  4195. {
  4196. name: "Normal",
  4197. height: math.unit(10, "feet"),
  4198. default: true
  4199. }
  4200. ]
  4201. ))
  4202. characterMakers.push(() => makeCharacter(
  4203. { name: "James", species: ["deer"], tags: ["anthro"] },
  4204. {
  4205. side: {
  4206. height: math.unit(2, "meters"),
  4207. weight: math.unit(100, "kg"),
  4208. name: "Front",
  4209. image: {
  4210. source: "./media/characters/james/front.svg",
  4211. extra: 10 / 8.5
  4212. }
  4213. },
  4214. },
  4215. [
  4216. {
  4217. name: "Normal",
  4218. height: math.unit(8.5, "feet"),
  4219. default: true
  4220. }
  4221. ]
  4222. ))
  4223. characterMakers.push(() => makeCharacter(
  4224. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4225. {
  4226. side: {
  4227. height: math.unit(9.5, "feet"),
  4228. weight: math.unit(2500, "lbs"),
  4229. name: "Side",
  4230. image: {
  4231. source: "./media/characters/heather/side.svg"
  4232. }
  4233. },
  4234. },
  4235. [
  4236. {
  4237. name: "Normal",
  4238. height: math.unit(9.5, "feet"),
  4239. default: true
  4240. }
  4241. ]
  4242. ))
  4243. characterMakers.push(() => makeCharacter(
  4244. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4245. {
  4246. side: {
  4247. height: math.unit(6.5, "feet"),
  4248. weight: math.unit(400, "lbs"),
  4249. name: "Side",
  4250. image: {
  4251. source: "./media/characters/lukas/side.svg",
  4252. extra: 7.25 / 6.5
  4253. }
  4254. },
  4255. },
  4256. [
  4257. {
  4258. name: "Normal",
  4259. height: math.unit(6.5, "feet"),
  4260. default: true
  4261. }
  4262. ]
  4263. ))
  4264. characterMakers.push(() => makeCharacter(
  4265. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4266. {
  4267. side: {
  4268. height: math.unit(5, "feet"),
  4269. weight: math.unit(3000, "lbs"),
  4270. name: "Side",
  4271. image: {
  4272. source: "./media/characters/louise/side.svg"
  4273. }
  4274. },
  4275. },
  4276. [
  4277. {
  4278. name: "Normal",
  4279. height: math.unit(5, "feet"),
  4280. default: true
  4281. }
  4282. ]
  4283. ))
  4284. characterMakers.push(() => makeCharacter(
  4285. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4286. {
  4287. side: {
  4288. height: math.unit(6, "feet"),
  4289. weight: math.unit(150, "lbs"),
  4290. name: "Side",
  4291. image: {
  4292. source: "./media/characters/ramona/side.svg"
  4293. }
  4294. },
  4295. },
  4296. [
  4297. {
  4298. name: "Normal",
  4299. height: math.unit(5.3, "meters"),
  4300. default: true
  4301. },
  4302. {
  4303. name: "Macro",
  4304. height: math.unit(20, "stories")
  4305. },
  4306. {
  4307. name: "Macro+",
  4308. height: math.unit(50, "stories")
  4309. },
  4310. ]
  4311. ))
  4312. characterMakers.push(() => makeCharacter(
  4313. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4314. {
  4315. standing: {
  4316. height: math.unit(5.75, "feet"),
  4317. weight: math.unit(160, "lbs"),
  4318. name: "Standing",
  4319. image: {
  4320. source: "./media/characters/deerpuff/standing.svg",
  4321. extra: 682 / 624
  4322. }
  4323. },
  4324. sitting: {
  4325. height: math.unit(5.75 / 1.79, "feet"),
  4326. weight: math.unit(160, "lbs"),
  4327. name: "Sitting",
  4328. image: {
  4329. source: "./media/characters/deerpuff/sitting.svg",
  4330. bottom: 44 / 400,
  4331. extra: 1
  4332. }
  4333. },
  4334. taurLaying: {
  4335. height: math.unit(6, "feet"),
  4336. weight: math.unit(400, "lbs"),
  4337. name: "Taur (Laying)",
  4338. image: {
  4339. source: "./media/characters/deerpuff/taur-laying.svg"
  4340. }
  4341. },
  4342. },
  4343. [
  4344. {
  4345. name: "Puffball",
  4346. height: math.unit(6, "inches")
  4347. },
  4348. {
  4349. name: "Normalpuff",
  4350. height: math.unit(5.75, "feet")
  4351. },
  4352. {
  4353. name: "Macropuff",
  4354. height: math.unit(1500, "feet"),
  4355. default: true
  4356. },
  4357. {
  4358. name: "Megapuff",
  4359. height: math.unit(500, "miles")
  4360. },
  4361. {
  4362. name: "Gigapuff",
  4363. height: math.unit(250000, "miles")
  4364. },
  4365. {
  4366. name: "Omegapuff",
  4367. height: math.unit(1000, "lightyears")
  4368. },
  4369. ]
  4370. ))
  4371. characterMakers.push(() => makeCharacter(
  4372. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4373. {
  4374. stomping: {
  4375. height: math.unit(6, "feet"),
  4376. weight: math.unit(170, "lbs"),
  4377. name: "Stomping",
  4378. image: {
  4379. source: "./media/characters/vivian/stomping.svg"
  4380. }
  4381. },
  4382. sitting: {
  4383. height: math.unit(6 / 1.75, "feet"),
  4384. weight: math.unit(170, "lbs"),
  4385. name: "Sitting",
  4386. image: {
  4387. source: "./media/characters/vivian/sitting.svg",
  4388. bottom: 1 / 6.4,
  4389. extra: 1,
  4390. }
  4391. },
  4392. },
  4393. [
  4394. {
  4395. name: "Normal",
  4396. height: math.unit(7, "feet"),
  4397. default: true
  4398. },
  4399. {
  4400. name: "Macro",
  4401. height: math.unit(10, "stories")
  4402. },
  4403. {
  4404. name: "Macro+",
  4405. height: math.unit(30, "stories")
  4406. },
  4407. {
  4408. name: "Megamacro",
  4409. height: math.unit(10, "miles")
  4410. },
  4411. {
  4412. name: "Megamacro+",
  4413. height: math.unit(2750000, "meters")
  4414. },
  4415. ]
  4416. ))
  4417. characterMakers.push(() => makeCharacter(
  4418. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4419. {
  4420. front: {
  4421. height: math.unit(6, "feet"),
  4422. weight: math.unit(160, "lbs"),
  4423. name: "Front",
  4424. image: {
  4425. source: "./media/characters/prince/front.svg",
  4426. extra: 3400 / 3000
  4427. }
  4428. },
  4429. jumping: {
  4430. height: math.unit(6, "feet"),
  4431. weight: math.unit(160, "lbs"),
  4432. name: "Jumping",
  4433. image: {
  4434. source: "./media/characters/prince/jump.svg",
  4435. extra: 2555 / 2134
  4436. }
  4437. },
  4438. },
  4439. [
  4440. {
  4441. name: "Normal",
  4442. height: math.unit(7.75, "feet"),
  4443. default: true
  4444. },
  4445. {
  4446. name: "Not cute",
  4447. height: math.unit(17, "feet")
  4448. },
  4449. {
  4450. name: "I said NOT",
  4451. height: math.unit(91, "feet")
  4452. },
  4453. {
  4454. name: "Please stop",
  4455. height: math.unit(560, "feet")
  4456. },
  4457. {
  4458. name: "What have you done",
  4459. height: math.unit(2200, "feet")
  4460. },
  4461. {
  4462. name: "Deer God",
  4463. height: math.unit(3.6, "miles")
  4464. },
  4465. ]
  4466. ))
  4467. characterMakers.push(() => makeCharacter(
  4468. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4469. {
  4470. standing: {
  4471. height: math.unit(6, "feet"),
  4472. weight: math.unit(300, "lbs"),
  4473. name: "Standing",
  4474. image: {
  4475. source: "./media/characters/psymon/standing.svg",
  4476. extra: 1888 / 1810,
  4477. bottom: 0.05
  4478. }
  4479. },
  4480. slithering: {
  4481. height: math.unit(6, "feet"),
  4482. weight: math.unit(300, "lbs"),
  4483. name: "Slithering",
  4484. image: {
  4485. source: "./media/characters/psymon/slithering.svg",
  4486. extra: 1330 / 1224
  4487. }
  4488. },
  4489. slitheringAlt: {
  4490. height: math.unit(6, "feet"),
  4491. weight: math.unit(300, "lbs"),
  4492. name: "Slithering (Alt)",
  4493. image: {
  4494. source: "./media/characters/psymon/slithering-alt.svg",
  4495. extra: 1330 / 1224
  4496. }
  4497. },
  4498. },
  4499. [
  4500. {
  4501. name: "Normal",
  4502. height: math.unit(11.25, "feet"),
  4503. default: true
  4504. },
  4505. {
  4506. name: "Large",
  4507. height: math.unit(27, "feet")
  4508. },
  4509. {
  4510. name: "Giant",
  4511. height: math.unit(87, "feet")
  4512. },
  4513. {
  4514. name: "Macro",
  4515. height: math.unit(365, "feet")
  4516. },
  4517. {
  4518. name: "Megamacro",
  4519. height: math.unit(3, "miles")
  4520. },
  4521. {
  4522. name: "World Serpent",
  4523. height: math.unit(8000, "miles")
  4524. },
  4525. ]
  4526. ))
  4527. characterMakers.push(() => makeCharacter(
  4528. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4529. {
  4530. front: {
  4531. height: math.unit(6, "feet"),
  4532. weight: math.unit(180, "lbs"),
  4533. name: "Front",
  4534. image: {
  4535. source: "./media/characters/daimos/front.svg",
  4536. extra: 4160 / 3897,
  4537. bottom: 0.021
  4538. }
  4539. }
  4540. },
  4541. [
  4542. {
  4543. name: "Normal",
  4544. height: math.unit(8, "feet"),
  4545. default: true
  4546. },
  4547. {
  4548. name: "Big Dog",
  4549. height: math.unit(22, "feet")
  4550. },
  4551. {
  4552. name: "Macro",
  4553. height: math.unit(127, "feet")
  4554. },
  4555. {
  4556. name: "Megamacro",
  4557. height: math.unit(3600, "feet")
  4558. },
  4559. ]
  4560. ))
  4561. characterMakers.push(() => makeCharacter(
  4562. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4563. {
  4564. side: {
  4565. height: math.unit(6, "feet"),
  4566. weight: math.unit(180, "lbs"),
  4567. name: "Side",
  4568. image: {
  4569. source: "./media/characters/blake/side.svg",
  4570. extra: 1212 / 1120,
  4571. bottom: 0.05
  4572. }
  4573. },
  4574. crouched: {
  4575. height: math.unit(6 * 0.57, "feet"),
  4576. weight: math.unit(180, "lbs"),
  4577. name: "Crouched",
  4578. image: {
  4579. source: "./media/characters/blake/crouched.svg",
  4580. extra: 840 / 587,
  4581. bottom: 0.04
  4582. }
  4583. },
  4584. bent: {
  4585. height: math.unit(6 * 0.75, "feet"),
  4586. weight: math.unit(180, "lbs"),
  4587. name: "Bent",
  4588. image: {
  4589. source: "./media/characters/blake/bent.svg",
  4590. extra: 592 / 544,
  4591. bottom: 0.035
  4592. }
  4593. },
  4594. },
  4595. [
  4596. {
  4597. name: "Normal",
  4598. height: math.unit(8 + 1 / 6, "feet"),
  4599. default: true
  4600. },
  4601. {
  4602. name: "Big Backside",
  4603. height: math.unit(37, "feet")
  4604. },
  4605. {
  4606. name: "Subway Shredder",
  4607. height: math.unit(72, "feet")
  4608. },
  4609. {
  4610. name: "City Carver",
  4611. height: math.unit(1675, "feet")
  4612. },
  4613. {
  4614. name: "Tectonic Tweaker",
  4615. height: math.unit(2300, "miles")
  4616. },
  4617. ]
  4618. ))
  4619. characterMakers.push(() => makeCharacter(
  4620. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4621. {
  4622. front: {
  4623. height: math.unit(6, "feet"),
  4624. weight: math.unit(180, "lbs"),
  4625. name: "Front",
  4626. image: {
  4627. source: "./media/characters/guisetto/front.svg",
  4628. extra: 856 / 817,
  4629. bottom: 0.06
  4630. }
  4631. },
  4632. airborne: {
  4633. height: math.unit(6, "feet"),
  4634. weight: math.unit(180, "lbs"),
  4635. name: "Airborne",
  4636. image: {
  4637. source: "./media/characters/guisetto/airborne.svg",
  4638. extra: 584 / 525
  4639. }
  4640. },
  4641. },
  4642. [
  4643. {
  4644. name: "Normal",
  4645. height: math.unit(10 + 11 / 12, "feet"),
  4646. default: true
  4647. },
  4648. {
  4649. name: "Large",
  4650. height: math.unit(35, "feet")
  4651. },
  4652. {
  4653. name: "Macro",
  4654. height: math.unit(475, "feet")
  4655. },
  4656. ]
  4657. ))
  4658. characterMakers.push(() => makeCharacter(
  4659. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4660. {
  4661. front: {
  4662. height: math.unit(6, "feet"),
  4663. weight: math.unit(180, "lbs"),
  4664. name: "Front",
  4665. image: {
  4666. source: "./media/characters/luxor/front.svg",
  4667. extra: 2940 / 2152
  4668. }
  4669. },
  4670. back: {
  4671. height: math.unit(6, "feet"),
  4672. weight: math.unit(180, "lbs"),
  4673. name: "Back",
  4674. image: {
  4675. source: "./media/characters/luxor/back.svg",
  4676. extra: 1083 / 960
  4677. }
  4678. },
  4679. },
  4680. [
  4681. {
  4682. name: "Normal",
  4683. height: math.unit(5 + 5 / 6, "feet"),
  4684. default: true
  4685. },
  4686. {
  4687. name: "Lamp",
  4688. height: math.unit(50, "feet")
  4689. },
  4690. {
  4691. name: "Lämp",
  4692. height: math.unit(300, "feet")
  4693. },
  4694. {
  4695. name: "The sun is a lamp",
  4696. height: math.unit(250000, "miles")
  4697. },
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4702. {
  4703. front: {
  4704. height: math.unit(6, "feet"),
  4705. weight: math.unit(50, "lbs"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/huoyan/front.svg"
  4709. }
  4710. },
  4711. side: {
  4712. height: math.unit(6, "feet"),
  4713. weight: math.unit(180, "lbs"),
  4714. name: "Side",
  4715. image: {
  4716. source: "./media/characters/huoyan/side.svg"
  4717. }
  4718. },
  4719. },
  4720. [
  4721. {
  4722. name: "Chef",
  4723. height: math.unit(9, "feet")
  4724. },
  4725. {
  4726. name: "Normal",
  4727. height: math.unit(65, "feet"),
  4728. default: true
  4729. },
  4730. {
  4731. name: "Macro",
  4732. height: math.unit(780, "feet")
  4733. },
  4734. {
  4735. name: "Flaming Mountain",
  4736. height: math.unit(4.8, "miles")
  4737. },
  4738. {
  4739. name: "Celestial",
  4740. height: math.unit(765000, "miles")
  4741. },
  4742. ]
  4743. ))
  4744. characterMakers.push(() => makeCharacter(
  4745. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4746. {
  4747. front: {
  4748. height: math.unit(5 + 3 / 4, "feet"),
  4749. weight: math.unit(120, "lbs"),
  4750. name: "Front",
  4751. image: {
  4752. source: "./media/characters/tails/front.svg"
  4753. }
  4754. }
  4755. },
  4756. [
  4757. {
  4758. name: "Normal",
  4759. height: math.unit(5 + 3 / 4, "feet"),
  4760. default: true
  4761. }
  4762. ]
  4763. ))
  4764. characterMakers.push(() => makeCharacter(
  4765. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4766. {
  4767. front: {
  4768. height: math.unit(4, "feet"),
  4769. weight: math.unit(50, "lbs"),
  4770. name: "Front",
  4771. image: {
  4772. source: "./media/characters/rainy/front.svg"
  4773. }
  4774. }
  4775. },
  4776. [
  4777. {
  4778. name: "Macro",
  4779. height: math.unit(800, "feet"),
  4780. default: true
  4781. }
  4782. ]
  4783. ))
  4784. characterMakers.push(() => makeCharacter(
  4785. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4786. {
  4787. front: {
  4788. height: math.unit(6, "feet"),
  4789. weight: math.unit(150, "lbs"),
  4790. name: "Front",
  4791. image: {
  4792. source: "./media/characters/rainier/front.svg"
  4793. }
  4794. }
  4795. },
  4796. [
  4797. {
  4798. name: "Micro",
  4799. height: math.unit(2, "mm"),
  4800. default: true
  4801. }
  4802. ]
  4803. ))
  4804. characterMakers.push(() => makeCharacter(
  4805. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4806. {
  4807. front: {
  4808. height: math.unit(6, "feet"),
  4809. weight: math.unit(180, "lbs"),
  4810. name: "Front",
  4811. image: {
  4812. source: "./media/characters/andy/front.svg"
  4813. }
  4814. }
  4815. },
  4816. [
  4817. {
  4818. name: "Normal",
  4819. height: math.unit(8, "feet"),
  4820. default: true
  4821. },
  4822. {
  4823. name: "Macro",
  4824. height: math.unit(1000, "feet")
  4825. },
  4826. {
  4827. name: "Megamacro",
  4828. height: math.unit(5, "miles")
  4829. },
  4830. {
  4831. name: "Gigamacro",
  4832. height: math.unit(5000, "miles")
  4833. },
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(6, "feet"),
  4841. weight: math.unit(210, "lbs"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/cimmaron/front-sfw.svg",
  4845. extra: 701 / 676,
  4846. bottom: 0.046
  4847. }
  4848. },
  4849. back: {
  4850. height: math.unit(6, "feet"),
  4851. weight: math.unit(210, "lbs"),
  4852. name: "Back",
  4853. image: {
  4854. source: "./media/characters/cimmaron/back-sfw.svg",
  4855. extra: 701 / 676,
  4856. bottom: 0.046
  4857. }
  4858. },
  4859. frontNsfw: {
  4860. height: math.unit(6, "feet"),
  4861. weight: math.unit(210, "lbs"),
  4862. name: "Front (NSFW)",
  4863. image: {
  4864. source: "./media/characters/cimmaron/front-nsfw.svg",
  4865. extra: 701 / 676,
  4866. bottom: 0.046
  4867. }
  4868. },
  4869. backNsfw: {
  4870. height: math.unit(6, "feet"),
  4871. weight: math.unit(210, "lbs"),
  4872. name: "Back (NSFW)",
  4873. image: {
  4874. source: "./media/characters/cimmaron/back-nsfw.svg",
  4875. extra: 701 / 676,
  4876. bottom: 0.046
  4877. }
  4878. },
  4879. dick: {
  4880. height: math.unit(1.714, "feet"),
  4881. name: "Dick",
  4882. image: {
  4883. source: "./media/characters/cimmaron/dick.svg"
  4884. }
  4885. },
  4886. },
  4887. [
  4888. {
  4889. name: "Normal",
  4890. height: math.unit(6, "feet"),
  4891. default: true
  4892. },
  4893. {
  4894. name: "Macro Mayor",
  4895. height: math.unit(350, "meters")
  4896. },
  4897. ]
  4898. ))
  4899. characterMakers.push(() => makeCharacter(
  4900. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4901. {
  4902. front: {
  4903. height: math.unit(6, "feet"),
  4904. weight: math.unit(200, "lbs"),
  4905. name: "Front",
  4906. image: {
  4907. source: "./media/characters/akari/front.svg",
  4908. extra: 962 / 901,
  4909. bottom: 0.04
  4910. }
  4911. }
  4912. },
  4913. [
  4914. {
  4915. name: "Micro",
  4916. height: math.unit(5, "inches"),
  4917. default: true
  4918. },
  4919. {
  4920. name: "Normal",
  4921. height: math.unit(7, "feet")
  4922. },
  4923. ]
  4924. ))
  4925. characterMakers.push(() => makeCharacter(
  4926. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  4927. {
  4928. front: {
  4929. height: math.unit(6, "feet"),
  4930. weight: math.unit(140, "lbs"),
  4931. name: "Front",
  4932. image: {
  4933. source: "./media/characters/cynosura/front.svg",
  4934. extra: 896 / 847
  4935. }
  4936. },
  4937. back: {
  4938. height: math.unit(6, "feet"),
  4939. weight: math.unit(140, "lbs"),
  4940. name: "Back",
  4941. image: {
  4942. source: "./media/characters/cynosura/back.svg",
  4943. extra: 1365 / 1250
  4944. }
  4945. },
  4946. },
  4947. [
  4948. {
  4949. name: "Micro",
  4950. height: math.unit(4, "inches")
  4951. },
  4952. {
  4953. name: "Normal",
  4954. height: math.unit(5.75, "feet"),
  4955. default: true
  4956. },
  4957. {
  4958. name: "Tall",
  4959. height: math.unit(10, "feet")
  4960. },
  4961. {
  4962. name: "Big",
  4963. height: math.unit(20, "feet")
  4964. },
  4965. {
  4966. name: "Macro",
  4967. height: math.unit(50, "feet")
  4968. },
  4969. ]
  4970. ))
  4971. characterMakers.push(() => makeCharacter(
  4972. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  4973. {
  4974. front: {
  4975. height: math.unit(6, "feet"),
  4976. weight: math.unit(170, "lbs"),
  4977. name: "Front",
  4978. image: {
  4979. source: "./media/characters/gin/front.svg",
  4980. extra: 1.053,
  4981. bottom: 0.025
  4982. }
  4983. },
  4984. foot: {
  4985. height: math.unit(6 / 4.25, "feet"),
  4986. name: "Foot",
  4987. image: {
  4988. source: "./media/characters/gin/foot.svg"
  4989. }
  4990. },
  4991. sole: {
  4992. height: math.unit(6 / 4.40, "feet"),
  4993. name: "Sole",
  4994. image: {
  4995. source: "./media/characters/gin/sole.svg"
  4996. }
  4997. },
  4998. },
  4999. [
  5000. {
  5001. name: "Normal",
  5002. height: math.unit(13 + 2/12, "feet")
  5003. },
  5004. {
  5005. name: "Macro",
  5006. height: math.unit(1500, "feet")
  5007. },
  5008. {
  5009. name: "Megamacro",
  5010. height: math.unit(200, "miles"),
  5011. default: true
  5012. },
  5013. {
  5014. name: "Gigamacro",
  5015. height: math.unit(500, "megameters")
  5016. },
  5017. {
  5018. name: "Teramacro",
  5019. height: math.unit(15, "lightyears")
  5020. }
  5021. ]
  5022. ))
  5023. characterMakers.push(() => makeCharacter(
  5024. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5025. {
  5026. front: {
  5027. height: math.unit(6 + 1 / 6, "feet"),
  5028. weight: math.unit(178, "lbs"),
  5029. name: "Front",
  5030. image: {
  5031. source: "./media/characters/guy/front.svg"
  5032. }
  5033. }
  5034. },
  5035. [
  5036. {
  5037. name: "Normal",
  5038. height: math.unit(6 + 1 / 6, "feet"),
  5039. default: true
  5040. },
  5041. {
  5042. name: "Large",
  5043. height: math.unit(25 + 7 / 12, "feet")
  5044. },
  5045. {
  5046. name: "Macro",
  5047. height: math.unit(60 + 9 / 12, "feet")
  5048. },
  5049. {
  5050. name: "Macro+",
  5051. height: math.unit(246, "feet")
  5052. },
  5053. {
  5054. name: "Macro++",
  5055. height: math.unit(878, "feet")
  5056. }
  5057. ]
  5058. ))
  5059. characterMakers.push(() => makeCharacter(
  5060. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5061. {
  5062. front: {
  5063. height: math.unit(9, "feet"),
  5064. weight: math.unit(800, "lbs"),
  5065. name: "Front",
  5066. image: {
  5067. source: "./media/characters/tiberius/front.svg",
  5068. extra: 2295 / 2071
  5069. }
  5070. },
  5071. back: {
  5072. height: math.unit(9, "feet"),
  5073. weight: math.unit(800, "lbs"),
  5074. name: "Back",
  5075. image: {
  5076. source: "./media/characters/tiberius/back.svg",
  5077. extra: 2373 / 2160
  5078. }
  5079. },
  5080. },
  5081. [
  5082. {
  5083. name: "Normal",
  5084. height: math.unit(9, "feet"),
  5085. default: true
  5086. }
  5087. ]
  5088. ))
  5089. characterMakers.push(() => makeCharacter(
  5090. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5091. {
  5092. front: {
  5093. height: math.unit(6, "feet"),
  5094. weight: math.unit(600, "lbs"),
  5095. name: "Front",
  5096. image: {
  5097. source: "./media/characters/surgo/front.svg",
  5098. extra: 3591 / 2227
  5099. }
  5100. },
  5101. back: {
  5102. height: math.unit(6, "feet"),
  5103. weight: math.unit(600, "lbs"),
  5104. name: "Back",
  5105. image: {
  5106. source: "./media/characters/surgo/back.svg",
  5107. extra: 3557 / 2228
  5108. }
  5109. },
  5110. laying: {
  5111. height: math.unit(6 * 0.85, "feet"),
  5112. weight: math.unit(600, "lbs"),
  5113. name: "Laying",
  5114. image: {
  5115. source: "./media/characters/surgo/laying.svg"
  5116. }
  5117. },
  5118. },
  5119. [
  5120. {
  5121. name: "Normal",
  5122. height: math.unit(6, "feet"),
  5123. default: true
  5124. }
  5125. ]
  5126. ))
  5127. characterMakers.push(() => makeCharacter(
  5128. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5129. {
  5130. side: {
  5131. height: math.unit(6, "feet"),
  5132. weight: math.unit(150, "lbs"),
  5133. name: "Side",
  5134. image: {
  5135. source: "./media/characters/cibus/side.svg",
  5136. extra: 800 / 400
  5137. }
  5138. },
  5139. },
  5140. [
  5141. {
  5142. name: "Normal",
  5143. height: math.unit(6, "feet"),
  5144. default: true
  5145. }
  5146. ]
  5147. ))
  5148. characterMakers.push(() => makeCharacter(
  5149. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5150. {
  5151. front: {
  5152. height: math.unit(6, "feet"),
  5153. weight: math.unit(240, "lbs"),
  5154. name: "Front",
  5155. image: {
  5156. source: "./media/characters/nibbles/front.svg"
  5157. }
  5158. },
  5159. side: {
  5160. height: math.unit(6, "feet"),
  5161. weight: math.unit(240, "lbs"),
  5162. name: "Side",
  5163. image: {
  5164. source: "./media/characters/nibbles/side.svg"
  5165. }
  5166. },
  5167. },
  5168. [
  5169. {
  5170. name: "Normal",
  5171. height: math.unit(9, "feet"),
  5172. default: true
  5173. }
  5174. ]
  5175. ))
  5176. characterMakers.push(() => makeCharacter(
  5177. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5178. {
  5179. side: {
  5180. height: math.unit(5 + 1 / 6, "feet"),
  5181. weight: math.unit(130, "lbs"),
  5182. name: "Side",
  5183. image: {
  5184. source: "./media/characters/rikky/side.svg"
  5185. }
  5186. },
  5187. },
  5188. [
  5189. {
  5190. name: "Normal",
  5191. height: math.unit(5 + 1 / 6, "feet")
  5192. },
  5193. {
  5194. name: "Macro",
  5195. height: math.unit(152, "feet"),
  5196. default: true
  5197. },
  5198. {
  5199. name: "Megamacro",
  5200. height: math.unit(7, "miles")
  5201. }
  5202. ]
  5203. ))
  5204. characterMakers.push(() => makeCharacter(
  5205. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5206. {
  5207. side: {
  5208. height: math.unit(370, "cm"),
  5209. weight: math.unit(350, "lbs"),
  5210. name: "Side",
  5211. image: {
  5212. source: "./media/characters/malfressa/side.svg"
  5213. }
  5214. },
  5215. walking: {
  5216. height: math.unit(370, "cm"),
  5217. weight: math.unit(350, "lbs"),
  5218. name: "Walking",
  5219. image: {
  5220. source: "./media/characters/malfressa/walking.svg"
  5221. }
  5222. },
  5223. feral: {
  5224. height: math.unit(2500, "cm"),
  5225. weight: math.unit(100000, "lbs"),
  5226. name: "Feral",
  5227. image: {
  5228. source: "./media/characters/malfressa/feral.svg",
  5229. extra: 2108 / 837,
  5230. bottom: 0.02
  5231. }
  5232. },
  5233. },
  5234. [
  5235. {
  5236. name: "Normal",
  5237. height: math.unit(370, "cm")
  5238. },
  5239. {
  5240. name: "Macro",
  5241. height: math.unit(300, "meters"),
  5242. default: true
  5243. }
  5244. ]
  5245. ))
  5246. characterMakers.push(() => makeCharacter(
  5247. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5248. {
  5249. front: {
  5250. height: math.unit(6, "feet"),
  5251. weight: math.unit(60, "kg"),
  5252. name: "Front",
  5253. image: {
  5254. source: "./media/characters/jaro/front.svg"
  5255. }
  5256. },
  5257. back: {
  5258. height: math.unit(6, "feet"),
  5259. weight: math.unit(60, "kg"),
  5260. name: "Back",
  5261. image: {
  5262. source: "./media/characters/jaro/back.svg"
  5263. }
  5264. },
  5265. },
  5266. [
  5267. {
  5268. name: "Micro",
  5269. height: math.unit(7, "inches")
  5270. },
  5271. {
  5272. name: "Normal",
  5273. height: math.unit(5.5, "feet"),
  5274. default: true
  5275. },
  5276. {
  5277. name: "Minimacro",
  5278. height: math.unit(20, "feet")
  5279. },
  5280. {
  5281. name: "Macro",
  5282. height: math.unit(200, "meters")
  5283. }
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5288. {
  5289. front: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(195, "lb"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/rogue/front.svg"
  5295. }
  5296. },
  5297. },
  5298. [
  5299. {
  5300. name: "Macro",
  5301. height: math.unit(90, "feet"),
  5302. default: true
  5303. },
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5308. {
  5309. front: {
  5310. height: math.unit(5 + 8 / 12, "feet"),
  5311. weight: math.unit(140, "lb"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/piper/front.svg",
  5315. extra: 3928 / 3681
  5316. }
  5317. },
  5318. },
  5319. [
  5320. {
  5321. name: "Micro",
  5322. height: math.unit(2, "inches")
  5323. },
  5324. {
  5325. name: "Normal",
  5326. height: math.unit(5 + 8 / 12, "feet")
  5327. },
  5328. {
  5329. name: "Macro",
  5330. height: math.unit(250, "feet"),
  5331. default: true
  5332. },
  5333. {
  5334. name: "Megamacro",
  5335. height: math.unit(7, "miles")
  5336. },
  5337. ]
  5338. ))
  5339. characterMakers.push(() => makeCharacter(
  5340. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5341. {
  5342. front: {
  5343. height: math.unit(6, "feet"),
  5344. weight: math.unit(220, "lb"),
  5345. name: "Front",
  5346. image: {
  5347. source: "./media/characters/gemini/front.svg"
  5348. }
  5349. },
  5350. back: {
  5351. height: math.unit(6, "feet"),
  5352. weight: math.unit(220, "lb"),
  5353. name: "Back",
  5354. image: {
  5355. source: "./media/characters/gemini/back.svg"
  5356. }
  5357. },
  5358. kneeling: {
  5359. height: math.unit(6 / 1.5, "feet"),
  5360. weight: math.unit(220, "lb"),
  5361. name: "Kneeling",
  5362. image: {
  5363. source: "./media/characters/gemini/kneeling.svg",
  5364. bottom: 0.02
  5365. }
  5366. },
  5367. },
  5368. [
  5369. {
  5370. name: "Macro",
  5371. height: math.unit(300, "meters"),
  5372. default: true
  5373. },
  5374. {
  5375. name: "Megamacro",
  5376. height: math.unit(6900, "meters")
  5377. },
  5378. ]
  5379. ))
  5380. characterMakers.push(() => makeCharacter(
  5381. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5382. {
  5383. anthro: {
  5384. height: math.unit(2.35, "meters"),
  5385. weight: math.unit(73, "kg"),
  5386. name: "Anthro",
  5387. image: {
  5388. source: "./media/characters/alicia/anthro.svg",
  5389. extra: 2571/2385,
  5390. bottom: 75/2648
  5391. }
  5392. },
  5393. paw: {
  5394. height: math.unit(1.32, "feet"),
  5395. name: "Paw",
  5396. image: {
  5397. source: "./media/characters/alicia/paw.svg"
  5398. }
  5399. },
  5400. feral: {
  5401. height: math.unit(1.69, "meters"),
  5402. weight: math.unit(73, "kg"),
  5403. name: "Feral",
  5404. image: {
  5405. source: "./media/characters/alicia/feral.svg",
  5406. extra: 2123/1715,
  5407. bottom: 222/2349
  5408. }
  5409. },
  5410. },
  5411. [
  5412. {
  5413. name: "Normal",
  5414. height: math.unit(2.35, "meters")
  5415. },
  5416. {
  5417. name: "Macro",
  5418. height: math.unit(60, "meters"),
  5419. default: true
  5420. },
  5421. {
  5422. name: "Megamacro",
  5423. height: math.unit(10000, "kilometers")
  5424. },
  5425. ]
  5426. ))
  5427. characterMakers.push(() => makeCharacter(
  5428. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5429. {
  5430. front: {
  5431. height: math.unit(7, "feet"),
  5432. weight: math.unit(250, "lbs"),
  5433. name: "Front",
  5434. image: {
  5435. source: "./media/characters/archy/front.svg"
  5436. }
  5437. }
  5438. },
  5439. [
  5440. {
  5441. name: "Micro",
  5442. height: math.unit(1, "inch")
  5443. },
  5444. {
  5445. name: "Shorty",
  5446. height: math.unit(5, "feet")
  5447. },
  5448. {
  5449. name: "Normal",
  5450. height: math.unit(7, "feet")
  5451. },
  5452. {
  5453. name: "Macro",
  5454. height: math.unit(600, "meters"),
  5455. default: true
  5456. },
  5457. {
  5458. name: "Megamacro",
  5459. height: math.unit(1, "mile")
  5460. },
  5461. ]
  5462. ))
  5463. characterMakers.push(() => makeCharacter(
  5464. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5465. {
  5466. front: {
  5467. height: math.unit(1.65, "meters"),
  5468. weight: math.unit(74, "kg"),
  5469. name: "Front",
  5470. image: {
  5471. source: "./media/characters/berri/front.svg"
  5472. }
  5473. }
  5474. },
  5475. [
  5476. {
  5477. name: "Normal",
  5478. height: math.unit(1.65, "meters")
  5479. },
  5480. {
  5481. name: "Macro",
  5482. height: math.unit(60, "m"),
  5483. default: true
  5484. },
  5485. {
  5486. name: "Megamacro",
  5487. height: math.unit(9.213, "km")
  5488. },
  5489. {
  5490. name: "Planet Eater",
  5491. height: math.unit(489, "megameters")
  5492. },
  5493. {
  5494. name: "Teramacro",
  5495. height: math.unit(2471635000000, "meters")
  5496. },
  5497. {
  5498. name: "Examacro",
  5499. height: math.unit(8.0624e+26, "meters")
  5500. }
  5501. ]
  5502. ))
  5503. characterMakers.push(() => makeCharacter(
  5504. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5505. {
  5506. front: {
  5507. height: math.unit(1.72, "meters"),
  5508. weight: math.unit(68, "kg"),
  5509. name: "Front",
  5510. image: {
  5511. source: "./media/characters/lexi/front.svg"
  5512. }
  5513. }
  5514. },
  5515. [
  5516. {
  5517. name: "Very Smol",
  5518. height: math.unit(10, "mm")
  5519. },
  5520. {
  5521. name: "Micro",
  5522. height: math.unit(6.8, "cm"),
  5523. default: true
  5524. },
  5525. {
  5526. name: "Normal",
  5527. height: math.unit(1.72, "m")
  5528. }
  5529. ]
  5530. ))
  5531. characterMakers.push(() => makeCharacter(
  5532. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5533. {
  5534. front: {
  5535. height: math.unit(1.69, "meters"),
  5536. weight: math.unit(68, "kg"),
  5537. name: "Front",
  5538. image: {
  5539. source: "./media/characters/martin/front.svg",
  5540. extra: 596 / 581
  5541. }
  5542. }
  5543. },
  5544. [
  5545. {
  5546. name: "Micro",
  5547. height: math.unit(6.85, "cm"),
  5548. default: true
  5549. },
  5550. {
  5551. name: "Normal",
  5552. height: math.unit(1.69, "m")
  5553. }
  5554. ]
  5555. ))
  5556. characterMakers.push(() => makeCharacter(
  5557. { name: "Juno", species: ["shiba-inu"], tags: ["anthro"] },
  5558. {
  5559. front: {
  5560. height: math.unit(1.69, "meters"),
  5561. weight: math.unit(68, "kg"),
  5562. name: "Front",
  5563. image: {
  5564. source: "./media/characters/juno/front.svg"
  5565. }
  5566. }
  5567. },
  5568. [
  5569. {
  5570. name: "Micro",
  5571. height: math.unit(7, "cm")
  5572. },
  5573. {
  5574. name: "Normal",
  5575. height: math.unit(1.89, "m")
  5576. },
  5577. {
  5578. name: "Macro",
  5579. height: math.unit(353, "meters"),
  5580. default: true
  5581. }
  5582. ]
  5583. ))
  5584. characterMakers.push(() => makeCharacter(
  5585. { name: "Samantha", species: ["canine"], tags: ["anthro"] },
  5586. {
  5587. front: {
  5588. height: math.unit(1.93, "meters"),
  5589. weight: math.unit(83, "kg"),
  5590. name: "Front",
  5591. image: {
  5592. source: "./media/characters/samantha/front.svg"
  5593. }
  5594. },
  5595. frontClothed: {
  5596. height: math.unit(1.93, "meters"),
  5597. weight: math.unit(83, "kg"),
  5598. name: "Front (Clothed)",
  5599. image: {
  5600. source: "./media/characters/samantha/front-clothed.svg"
  5601. }
  5602. },
  5603. back: {
  5604. height: math.unit(1.93, "meters"),
  5605. weight: math.unit(83, "kg"),
  5606. name: "Back",
  5607. image: {
  5608. source: "./media/characters/samantha/back.svg"
  5609. }
  5610. },
  5611. },
  5612. [
  5613. {
  5614. name: "Normal",
  5615. height: math.unit(1.93, "m")
  5616. },
  5617. {
  5618. name: "Macro",
  5619. height: math.unit(74, "meters"),
  5620. default: true
  5621. },
  5622. {
  5623. name: "Macro+",
  5624. height: math.unit(223, "meters"),
  5625. },
  5626. {
  5627. name: "Megamacro",
  5628. height: math.unit(8381, "meters"),
  5629. },
  5630. {
  5631. name: "Megamacro+",
  5632. height: math.unit(12000, "kilometers")
  5633. },
  5634. ]
  5635. ))
  5636. characterMakers.push(() => makeCharacter(
  5637. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5638. {
  5639. front: {
  5640. height: math.unit(1.92, "meters"),
  5641. weight: math.unit(80, "kg"),
  5642. name: "Front",
  5643. image: {
  5644. source: "./media/characters/dr-clay/front.svg"
  5645. }
  5646. },
  5647. frontClothed: {
  5648. height: math.unit(1.92, "meters"),
  5649. weight: math.unit(80, "kg"),
  5650. name: "Front (Clothed)",
  5651. image: {
  5652. source: "./media/characters/dr-clay/front-clothed.svg"
  5653. }
  5654. }
  5655. },
  5656. [
  5657. {
  5658. name: "Normal",
  5659. height: math.unit(1.92, "m")
  5660. },
  5661. {
  5662. name: "Macro",
  5663. height: math.unit(214, "meters"),
  5664. default: true
  5665. },
  5666. {
  5667. name: "Macro+",
  5668. height: math.unit(12.237, "meters"),
  5669. },
  5670. {
  5671. name: "Megamacro",
  5672. height: math.unit(557, "megameters"),
  5673. },
  5674. {
  5675. name: "Unimaginable",
  5676. height: math.unit(120e9, "lightyears")
  5677. },
  5678. ]
  5679. ))
  5680. characterMakers.push(() => makeCharacter(
  5681. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5682. {
  5683. front: {
  5684. height: math.unit(2, "meters"),
  5685. weight: math.unit(80, "kg"),
  5686. name: "Front",
  5687. image: {
  5688. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5689. }
  5690. }
  5691. },
  5692. [
  5693. {
  5694. name: "Teramacro",
  5695. height: math.unit(500000, "lightyears"),
  5696. default: true
  5697. },
  5698. ]
  5699. ))
  5700. characterMakers.push(() => makeCharacter(
  5701. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5702. {
  5703. front: {
  5704. height: math.unit(2, "meters"),
  5705. weight: math.unit(150, "kg"),
  5706. name: "Front",
  5707. image: {
  5708. source: "./media/characters/vemus/front.svg",
  5709. extra: 2384 / 2084,
  5710. bottom: 0.0123
  5711. }
  5712. }
  5713. },
  5714. [
  5715. {
  5716. name: "Normal",
  5717. height: math.unit(3.75, "meters"),
  5718. default: true
  5719. },
  5720. {
  5721. name: "Big",
  5722. height: math.unit(8, "meters")
  5723. },
  5724. {
  5725. name: "Macro",
  5726. height: math.unit(100, "meters")
  5727. },
  5728. {
  5729. name: "Macro+",
  5730. height: math.unit(1500, "meters")
  5731. },
  5732. {
  5733. name: "Stellar",
  5734. height: math.unit(14e8, "meters")
  5735. },
  5736. ]
  5737. ))
  5738. characterMakers.push(() => makeCharacter(
  5739. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5740. {
  5741. front: {
  5742. height: math.unit(2, "meters"),
  5743. weight: math.unit(70, "kg"),
  5744. name: "Front",
  5745. image: {
  5746. source: "./media/characters/beherit/front.svg",
  5747. extra: 1408 / 1242
  5748. }
  5749. }
  5750. },
  5751. [
  5752. {
  5753. name: "Normal",
  5754. height: math.unit(6, "feet")
  5755. },
  5756. {
  5757. name: "Lorg",
  5758. height: math.unit(25, "feet"),
  5759. default: true
  5760. },
  5761. {
  5762. name: "Lorger",
  5763. height: math.unit(75, "feet")
  5764. },
  5765. {
  5766. name: "Macro",
  5767. height: math.unit(200, "meters")
  5768. },
  5769. ]
  5770. ))
  5771. characterMakers.push(() => makeCharacter(
  5772. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5773. {
  5774. front: {
  5775. height: math.unit(2, "meters"),
  5776. weight: math.unit(150, "kg"),
  5777. name: "Front",
  5778. image: {
  5779. source: "./media/characters/everett/front.svg",
  5780. extra: 2038 / 1737,
  5781. bottom: 0.03
  5782. }
  5783. },
  5784. paw: {
  5785. height: math.unit(2 / 3.6, "meters"),
  5786. name: "Paw",
  5787. image: {
  5788. source: "./media/characters/everett/paw.svg"
  5789. }
  5790. },
  5791. },
  5792. [
  5793. {
  5794. name: "Normal",
  5795. height: math.unit(15, "feet"),
  5796. default: true
  5797. },
  5798. {
  5799. name: "Lorg",
  5800. height: math.unit(70, "feet"),
  5801. default: true
  5802. },
  5803. {
  5804. name: "Lorger",
  5805. height: math.unit(250, "feet")
  5806. },
  5807. {
  5808. name: "Macro",
  5809. height: math.unit(500, "meters")
  5810. },
  5811. ]
  5812. ))
  5813. characterMakers.push(() => makeCharacter(
  5814. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5815. {
  5816. front: {
  5817. height: math.unit(2, "meters"),
  5818. weight: math.unit(86, "kg"),
  5819. name: "Front",
  5820. image: {
  5821. source: "./media/characters/rose-lion/front.svg"
  5822. }
  5823. },
  5824. bent: {
  5825. height: math.unit(2 / 1.4288, "meters"),
  5826. weight: math.unit(86, "kg"),
  5827. name: "Bent",
  5828. image: {
  5829. source: "./media/characters/rose-lion/bent.svg"
  5830. }
  5831. }
  5832. },
  5833. [
  5834. {
  5835. name: "Mini-Micro",
  5836. height: math.unit(1, "cm")
  5837. },
  5838. {
  5839. name: "Micro",
  5840. height: math.unit(3.5, "inches"),
  5841. default: true
  5842. },
  5843. {
  5844. name: "Normal",
  5845. height: math.unit(6 + 1 / 6, "feet")
  5846. },
  5847. {
  5848. name: "Mini-Macro",
  5849. height: math.unit(9 + 10 / 12, "feet")
  5850. },
  5851. ]
  5852. ))
  5853. characterMakers.push(() => makeCharacter(
  5854. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5855. {
  5856. front: {
  5857. height: math.unit(2, "meters"),
  5858. weight: math.unit(350, "lbs"),
  5859. name: "Front",
  5860. image: {
  5861. source: "./media/characters/regal/front.svg"
  5862. }
  5863. },
  5864. back: {
  5865. height: math.unit(2, "meters"),
  5866. weight: math.unit(350, "lbs"),
  5867. name: "Back",
  5868. image: {
  5869. source: "./media/characters/regal/back.svg"
  5870. }
  5871. },
  5872. },
  5873. [
  5874. {
  5875. name: "Macro",
  5876. height: math.unit(350, "feet"),
  5877. default: true
  5878. }
  5879. ]
  5880. ))
  5881. characterMakers.push(() => makeCharacter(
  5882. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  5883. {
  5884. front: {
  5885. height: math.unit(4 + 11 / 12, "feet"),
  5886. weight: math.unit(100, "lbs"),
  5887. name: "Front",
  5888. image: {
  5889. source: "./media/characters/opal/front.svg"
  5890. }
  5891. },
  5892. frontAlt: {
  5893. height: math.unit(4 + 11 / 12, "feet"),
  5894. weight: math.unit(100, "lbs"),
  5895. name: "Front (Alt)",
  5896. image: {
  5897. source: "./media/characters/opal/front-alt.svg"
  5898. }
  5899. },
  5900. },
  5901. [
  5902. {
  5903. name: "Small",
  5904. height: math.unit(4 + 11 / 12, "feet")
  5905. },
  5906. {
  5907. name: "Normal",
  5908. height: math.unit(20, "feet"),
  5909. default: true
  5910. },
  5911. {
  5912. name: "Macro",
  5913. height: math.unit(120, "feet")
  5914. },
  5915. {
  5916. name: "Megamacro",
  5917. height: math.unit(80, "miles")
  5918. },
  5919. {
  5920. name: "True Size",
  5921. height: math.unit(100000, "lightyears")
  5922. },
  5923. ]
  5924. ))
  5925. characterMakers.push(() => makeCharacter(
  5926. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  5927. {
  5928. front: {
  5929. height: math.unit(6, "feet"),
  5930. weight: math.unit(200, "lbs"),
  5931. name: "Front",
  5932. image: {
  5933. source: "./media/characters/vector-wuff/front.svg"
  5934. }
  5935. }
  5936. },
  5937. [
  5938. {
  5939. name: "Normal",
  5940. height: math.unit(2.8, "meters")
  5941. },
  5942. {
  5943. name: "Macro",
  5944. height: math.unit(450, "meters"),
  5945. default: true
  5946. },
  5947. {
  5948. name: "Megamacro",
  5949. height: math.unit(15, "kilometers")
  5950. }
  5951. ]
  5952. ))
  5953. characterMakers.push(() => makeCharacter(
  5954. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  5955. {
  5956. front: {
  5957. height: math.unit(6, "feet"),
  5958. weight: math.unit(256, "lbs"),
  5959. name: "Front",
  5960. image: {
  5961. source: "./media/characters/dannik/front.svg"
  5962. }
  5963. }
  5964. },
  5965. [
  5966. {
  5967. name: "Macro",
  5968. height: math.unit(69.57, "meters"),
  5969. default: true
  5970. },
  5971. ]
  5972. ))
  5973. characterMakers.push(() => makeCharacter(
  5974. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  5975. {
  5976. front: {
  5977. height: math.unit(6, "feet"),
  5978. weight: math.unit(120, "lbs"),
  5979. name: "Front",
  5980. image: {
  5981. source: "./media/characters/azura-saharah/front.svg"
  5982. }
  5983. },
  5984. back: {
  5985. height: math.unit(6, "feet"),
  5986. weight: math.unit(120, "lbs"),
  5987. name: "Back",
  5988. image: {
  5989. source: "./media/characters/azura-saharah/back.svg"
  5990. }
  5991. },
  5992. },
  5993. [
  5994. {
  5995. name: "Macro",
  5996. height: math.unit(100, "feet"),
  5997. default: true
  5998. },
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6003. {
  6004. side: {
  6005. height: math.unit(5 + 4 / 12, "feet"),
  6006. weight: math.unit(163, "lbs"),
  6007. name: "Side",
  6008. image: {
  6009. source: "./media/characters/kennedy/side.svg"
  6010. }
  6011. }
  6012. },
  6013. [
  6014. {
  6015. name: "Standard Doggo",
  6016. height: math.unit(5 + 4 / 12, "feet")
  6017. },
  6018. {
  6019. name: "Big Doggo",
  6020. height: math.unit(25 + 3 / 12, "feet"),
  6021. default: true
  6022. },
  6023. ]
  6024. ))
  6025. characterMakers.push(() => makeCharacter(
  6026. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6027. {
  6028. front: {
  6029. height: math.unit(6, "feet"),
  6030. weight: math.unit(90, "lbs"),
  6031. name: "Front",
  6032. image: {
  6033. source: "./media/characters/odi-lunar/front.svg"
  6034. }
  6035. }
  6036. },
  6037. [
  6038. {
  6039. name: "Micro",
  6040. height: math.unit(3, "inches"),
  6041. default: true
  6042. },
  6043. {
  6044. name: "Normal",
  6045. height: math.unit(5.5, "feet")
  6046. }
  6047. ]
  6048. ))
  6049. characterMakers.push(() => makeCharacter(
  6050. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6051. {
  6052. back: {
  6053. height: math.unit(6, "feet"),
  6054. weight: math.unit(220, "lbs"),
  6055. name: "Back",
  6056. image: {
  6057. source: "./media/characters/mandake/back.svg"
  6058. }
  6059. }
  6060. },
  6061. [
  6062. {
  6063. name: "Normal",
  6064. height: math.unit(7, "feet"),
  6065. default: true
  6066. },
  6067. {
  6068. name: "Macro",
  6069. height: math.unit(78, "feet")
  6070. },
  6071. {
  6072. name: "Macro+",
  6073. height: math.unit(300, "meters")
  6074. },
  6075. {
  6076. name: "Macro++",
  6077. height: math.unit(2400, "feet")
  6078. },
  6079. {
  6080. name: "Megamacro",
  6081. height: math.unit(5167, "meters")
  6082. },
  6083. {
  6084. name: "Gigamacro",
  6085. height: math.unit(41769, "miles")
  6086. },
  6087. ]
  6088. ))
  6089. characterMakers.push(() => makeCharacter(
  6090. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6091. {
  6092. front: {
  6093. height: math.unit(6, "feet"),
  6094. weight: math.unit(120, "lbs"),
  6095. name: "Front",
  6096. image: {
  6097. source: "./media/characters/yozey/front.svg"
  6098. }
  6099. },
  6100. frontAlt: {
  6101. height: math.unit(6, "feet"),
  6102. weight: math.unit(120, "lbs"),
  6103. name: "Front (Alt)",
  6104. image: {
  6105. source: "./media/characters/yozey/front-alt.svg"
  6106. }
  6107. },
  6108. side: {
  6109. height: math.unit(6, "feet"),
  6110. weight: math.unit(120, "lbs"),
  6111. name: "Side",
  6112. image: {
  6113. source: "./media/characters/yozey/side.svg"
  6114. }
  6115. },
  6116. },
  6117. [
  6118. {
  6119. name: "Micro",
  6120. height: math.unit(3, "inches"),
  6121. default: true
  6122. },
  6123. {
  6124. name: "Normal",
  6125. height: math.unit(6, "feet")
  6126. }
  6127. ]
  6128. ))
  6129. characterMakers.push(() => makeCharacter(
  6130. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6131. {
  6132. front: {
  6133. height: math.unit(6, "feet"),
  6134. weight: math.unit(103, "lbs"),
  6135. name: "Front",
  6136. image: {
  6137. source: "./media/characters/valeska-voss/front.svg"
  6138. }
  6139. }
  6140. },
  6141. [
  6142. {
  6143. name: "Mini-Sized Sub",
  6144. height: math.unit(3.1, "inches")
  6145. },
  6146. {
  6147. name: "Mid-Sized Sub",
  6148. height: math.unit(6.2, "inches")
  6149. },
  6150. {
  6151. name: "Full-Sized Sub",
  6152. height: math.unit(9.3, "inches")
  6153. },
  6154. {
  6155. name: "Normal",
  6156. height: math.unit(5 + 2 / 12, "foot"),
  6157. default: true
  6158. },
  6159. ]
  6160. ))
  6161. characterMakers.push(() => makeCharacter(
  6162. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6163. {
  6164. front: {
  6165. height: math.unit(6, "feet"),
  6166. weight: math.unit(160, "lbs"),
  6167. name: "Front",
  6168. image: {
  6169. source: "./media/characters/gene-zeta/front.svg",
  6170. bottom: 0.03,
  6171. extra: 1
  6172. }
  6173. }
  6174. },
  6175. [
  6176. {
  6177. name: "Normal",
  6178. height: math.unit(6.25, "foot"),
  6179. default: true
  6180. },
  6181. ]
  6182. ))
  6183. characterMakers.push(() => makeCharacter(
  6184. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6185. {
  6186. front: {
  6187. height: math.unit(6, "feet"),
  6188. weight: math.unit(350, "lbs"),
  6189. name: "Front",
  6190. image: {
  6191. source: "./media/characters/razinox/front.svg",
  6192. extra: 1686 / 1548,
  6193. bottom: 28.2/1868
  6194. }
  6195. },
  6196. back: {
  6197. height: math.unit(6, "feet"),
  6198. weight: math.unit(350, "lbs"),
  6199. name: "Back",
  6200. image: {
  6201. source: "./media/characters/razinox/back.svg",
  6202. extra: 1660 / 1590,
  6203. bottom: 15/1665
  6204. }
  6205. },
  6206. },
  6207. [
  6208. {
  6209. name: "Normal",
  6210. height: math.unit(10 + 8 / 12, "foot")
  6211. },
  6212. {
  6213. name: "Minimacro",
  6214. height: math.unit(15, "foot")
  6215. },
  6216. {
  6217. name: "Macro",
  6218. height: math.unit(60, "foot"),
  6219. default: true
  6220. },
  6221. {
  6222. name: "Megamacro",
  6223. height: math.unit(5, "miles")
  6224. },
  6225. {
  6226. name: "Gigamacro",
  6227. height: math.unit(6000, "miles")
  6228. },
  6229. ]
  6230. ))
  6231. characterMakers.push(() => makeCharacter(
  6232. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6233. {
  6234. front: {
  6235. height: math.unit(6, "feet"),
  6236. weight: math.unit(150, "lbs"),
  6237. name: "Front",
  6238. image: {
  6239. source: "./media/characters/cobalt/front.svg"
  6240. }
  6241. }
  6242. },
  6243. [
  6244. {
  6245. name: "Normal",
  6246. height: math.unit(8 + 1 / 12, "foot")
  6247. },
  6248. {
  6249. name: "Macro",
  6250. height: math.unit(111, "foot"),
  6251. default: true
  6252. },
  6253. {
  6254. name: "Supracosmic",
  6255. height: math.unit(1e42, "feet")
  6256. },
  6257. ]
  6258. ))
  6259. characterMakers.push(() => makeCharacter(
  6260. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6261. {
  6262. front: {
  6263. height: math.unit(6, "feet"),
  6264. weight: math.unit(140, "lbs"),
  6265. name: "Front",
  6266. image: {
  6267. source: "./media/characters/amanda/front.svg"
  6268. }
  6269. }
  6270. },
  6271. [
  6272. {
  6273. name: "Micro",
  6274. height: math.unit(5, "inches"),
  6275. default: true
  6276. },
  6277. ]
  6278. ))
  6279. characterMakers.push(() => makeCharacter(
  6280. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6281. {
  6282. front: {
  6283. height: math.unit(5.59, "feet"),
  6284. weight: math.unit(250, "lbs"),
  6285. name: "Front",
  6286. image: {
  6287. source: "./media/characters/teal/front.svg"
  6288. }
  6289. },
  6290. frontAlt: {
  6291. height: math.unit(6, "feet"),
  6292. weight: math.unit(250, "lbs"),
  6293. name: "Front (Alt)",
  6294. image: {
  6295. source: "./media/characters/teal/front-alt.svg",
  6296. bottom: 0.04,
  6297. extra: 1
  6298. }
  6299. },
  6300. },
  6301. [
  6302. {
  6303. name: "Normal",
  6304. height: math.unit(12, "feet"),
  6305. default: true
  6306. },
  6307. {
  6308. name: "Macro",
  6309. height: math.unit(300, "feet")
  6310. },
  6311. ]
  6312. ))
  6313. characterMakers.push(() => makeCharacter(
  6314. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6315. {
  6316. frontCat: {
  6317. height: math.unit(6, "feet"),
  6318. weight: math.unit(180, "lbs"),
  6319. name: "Front (Cat)",
  6320. image: {
  6321. source: "./media/characters/ravin-amulet/front-cat.svg"
  6322. }
  6323. },
  6324. frontCatAlt: {
  6325. height: math.unit(6, "feet"),
  6326. weight: math.unit(180, "lbs"),
  6327. name: "Front (Alt, Cat)",
  6328. image: {
  6329. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6330. }
  6331. },
  6332. frontWerewolf: {
  6333. height: math.unit(6 * 1.2, "feet"),
  6334. weight: math.unit(225, "lbs"),
  6335. name: "Front (Werewolf)",
  6336. image: {
  6337. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6338. }
  6339. },
  6340. backWerewolf: {
  6341. height: math.unit(6 * 1.2, "feet"),
  6342. weight: math.unit(225, "lbs"),
  6343. name: "Back (Werewolf)",
  6344. image: {
  6345. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6346. }
  6347. },
  6348. },
  6349. [
  6350. {
  6351. name: "Nano",
  6352. height: math.unit(1, "micrometer")
  6353. },
  6354. {
  6355. name: "Micro",
  6356. height: math.unit(1, "inch")
  6357. },
  6358. {
  6359. name: "Normal",
  6360. height: math.unit(6, "feet"),
  6361. default: true
  6362. },
  6363. {
  6364. name: "Macro",
  6365. height: math.unit(60, "feet")
  6366. }
  6367. ]
  6368. ))
  6369. characterMakers.push(() => makeCharacter(
  6370. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6371. {
  6372. front: {
  6373. height: math.unit(6, "feet"),
  6374. weight: math.unit(165, "lbs"),
  6375. name: "Front",
  6376. image: {
  6377. source: "./media/characters/fluoresce/front.svg"
  6378. }
  6379. }
  6380. },
  6381. [
  6382. {
  6383. name: "Micro",
  6384. height: math.unit(6, "cm")
  6385. },
  6386. {
  6387. name: "Normal",
  6388. height: math.unit(5 + 7 / 12, "feet"),
  6389. default: true
  6390. },
  6391. {
  6392. name: "Macro",
  6393. height: math.unit(56, "feet")
  6394. },
  6395. {
  6396. name: "Megamacro",
  6397. height: math.unit(1.9, "miles")
  6398. },
  6399. ]
  6400. ))
  6401. characterMakers.push(() => makeCharacter(
  6402. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6403. {
  6404. front: {
  6405. height: math.unit(9 + 6 / 12, "feet"),
  6406. weight: math.unit(523, "lbs"),
  6407. name: "Side",
  6408. image: {
  6409. source: "./media/characters/aurora/side.svg"
  6410. }
  6411. }
  6412. },
  6413. [
  6414. {
  6415. name: "Normal",
  6416. height: math.unit(9 + 6 / 12, "feet")
  6417. },
  6418. {
  6419. name: "Macro",
  6420. height: math.unit(96, "feet"),
  6421. default: true
  6422. },
  6423. {
  6424. name: "Macro+",
  6425. height: math.unit(243, "feet")
  6426. },
  6427. ]
  6428. ))
  6429. characterMakers.push(() => makeCharacter(
  6430. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6431. {
  6432. front: {
  6433. height: math.unit(194, "cm"),
  6434. weight: math.unit(90, "kg"),
  6435. name: "Front",
  6436. image: {
  6437. source: "./media/characters/ranek/front.svg"
  6438. }
  6439. },
  6440. side: {
  6441. height: math.unit(194, "cm"),
  6442. weight: math.unit(90, "kg"),
  6443. name: "Side",
  6444. image: {
  6445. source: "./media/characters/ranek/side.svg"
  6446. }
  6447. },
  6448. back: {
  6449. height: math.unit(194, "cm"),
  6450. weight: math.unit(90, "kg"),
  6451. name: "Back",
  6452. image: {
  6453. source: "./media/characters/ranek/back.svg"
  6454. }
  6455. },
  6456. feral: {
  6457. height: math.unit(30, "cm"),
  6458. weight: math.unit(1.6, "lbs"),
  6459. name: "Feral",
  6460. image: {
  6461. source: "./media/characters/ranek/feral.svg"
  6462. }
  6463. },
  6464. },
  6465. [
  6466. {
  6467. name: "Normal",
  6468. height: math.unit(194, "cm"),
  6469. default: true
  6470. },
  6471. {
  6472. name: "Macro",
  6473. height: math.unit(100, "meters")
  6474. },
  6475. ]
  6476. ))
  6477. characterMakers.push(() => makeCharacter(
  6478. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6479. {
  6480. front: {
  6481. height: math.unit(5 + 6 / 12, "feet"),
  6482. weight: math.unit(153, "lbs"),
  6483. name: "Front",
  6484. image: {
  6485. source: "./media/characters/andrew-cooper/front.svg"
  6486. }
  6487. },
  6488. },
  6489. [
  6490. {
  6491. name: "Nano",
  6492. height: math.unit(1, "mm")
  6493. },
  6494. {
  6495. name: "Micro",
  6496. height: math.unit(2, "inches")
  6497. },
  6498. {
  6499. name: "Normal",
  6500. height: math.unit(5 + 6 / 12, "feet"),
  6501. default: true
  6502. }
  6503. ]
  6504. ))
  6505. characterMakers.push(() => makeCharacter(
  6506. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6507. {
  6508. front: {
  6509. height: math.unit(6, "feet"),
  6510. weight: math.unit(180, "lbs"),
  6511. name: "Front",
  6512. image: {
  6513. source: "./media/characters/akane-sato/front.svg",
  6514. extra: 1219 / 1140
  6515. }
  6516. },
  6517. back: {
  6518. height: math.unit(6, "feet"),
  6519. weight: math.unit(180, "lbs"),
  6520. name: "Back",
  6521. image: {
  6522. source: "./media/characters/akane-sato/back.svg",
  6523. extra: 1219 / 1170
  6524. }
  6525. },
  6526. },
  6527. [
  6528. {
  6529. name: "Normal",
  6530. height: math.unit(2.5, "meters")
  6531. },
  6532. {
  6533. name: "Macro",
  6534. height: math.unit(250, "meters"),
  6535. default: true
  6536. },
  6537. {
  6538. name: "Megamacro",
  6539. height: math.unit(25, "km")
  6540. },
  6541. ]
  6542. ))
  6543. characterMakers.push(() => makeCharacter(
  6544. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6545. {
  6546. front: {
  6547. height: math.unit(6, "feet"),
  6548. weight: math.unit(65, "kg"),
  6549. name: "Front",
  6550. image: {
  6551. source: "./media/characters/rook/front.svg",
  6552. extra: 960/950
  6553. }
  6554. }
  6555. },
  6556. [
  6557. {
  6558. name: "Normal",
  6559. height: math.unit(8.8, "feet")
  6560. },
  6561. {
  6562. name: "Macro",
  6563. height: math.unit(88, "feet"),
  6564. default: true
  6565. },
  6566. {
  6567. name: "Megamacro",
  6568. height: math.unit(8, "miles")
  6569. },
  6570. ]
  6571. ))
  6572. characterMakers.push(() => makeCharacter(
  6573. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6574. {
  6575. front: {
  6576. height: math.unit(12 + 2 / 12, "feet"),
  6577. weight: math.unit(808, "lbs"),
  6578. name: "Front",
  6579. image: {
  6580. source: "./media/characters/prodigy/front.svg"
  6581. }
  6582. }
  6583. },
  6584. [
  6585. {
  6586. name: "Normal",
  6587. height: math.unit(12 + 2 / 12, "feet"),
  6588. default: true
  6589. },
  6590. {
  6591. name: "Macro",
  6592. height: math.unit(143, "feet")
  6593. },
  6594. {
  6595. name: "Macro+",
  6596. height: math.unit(400, "feet")
  6597. },
  6598. ]
  6599. ))
  6600. characterMakers.push(() => makeCharacter(
  6601. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6602. {
  6603. front: {
  6604. height: math.unit(6, "feet"),
  6605. weight: math.unit(225, "lbs"),
  6606. name: "Front",
  6607. image: {
  6608. source: "./media/characters/daniel/front.svg"
  6609. }
  6610. },
  6611. leaning: {
  6612. height: math.unit(6, "feet"),
  6613. weight: math.unit(225, "lbs"),
  6614. name: "Leaning",
  6615. image: {
  6616. source: "./media/characters/daniel/leaning.svg"
  6617. }
  6618. },
  6619. },
  6620. [
  6621. {
  6622. name: "Macro",
  6623. height: math.unit(1000, "feet"),
  6624. default: true
  6625. },
  6626. ]
  6627. ))
  6628. characterMakers.push(() => makeCharacter(
  6629. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6630. {
  6631. front: {
  6632. height: math.unit(6, "feet"),
  6633. weight: math.unit(88, "lbs"),
  6634. name: "Front",
  6635. image: {
  6636. source: "./media/characters/chiros/front.svg",
  6637. extra: 306 / 226
  6638. }
  6639. },
  6640. side: {
  6641. height: math.unit(6, "feet"),
  6642. weight: math.unit(88, "lbs"),
  6643. name: "Side",
  6644. image: {
  6645. source: "./media/characters/chiros/side.svg",
  6646. extra: 306 / 226
  6647. }
  6648. },
  6649. },
  6650. [
  6651. {
  6652. name: "Normal",
  6653. height: math.unit(6, "cm"),
  6654. default: true
  6655. },
  6656. ]
  6657. ))
  6658. characterMakers.push(() => makeCharacter(
  6659. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6660. {
  6661. front: {
  6662. height: math.unit(6, "feet"),
  6663. weight: math.unit(100, "lbs"),
  6664. name: "Front",
  6665. image: {
  6666. source: "./media/characters/selka/front.svg",
  6667. extra: 947 / 887
  6668. }
  6669. }
  6670. },
  6671. [
  6672. {
  6673. name: "Normal",
  6674. height: math.unit(5, "cm"),
  6675. default: true
  6676. },
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6681. {
  6682. front: {
  6683. height: math.unit(8 + 3 / 12, "feet"),
  6684. weight: math.unit(424, "lbs"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/verin/front.svg",
  6688. extra: 1845 / 1550
  6689. }
  6690. },
  6691. frontArmored: {
  6692. height: math.unit(8 + 3 / 12, "feet"),
  6693. weight: math.unit(424, "lbs"),
  6694. name: "Front (Armored)",
  6695. image: {
  6696. source: "./media/characters/verin/front-armor.svg",
  6697. extra: 1845 / 1550,
  6698. bottom: 0.01
  6699. }
  6700. },
  6701. back: {
  6702. height: math.unit(8 + 3 / 12, "feet"),
  6703. weight: math.unit(424, "lbs"),
  6704. name: "Back",
  6705. image: {
  6706. source: "./media/characters/verin/back.svg",
  6707. bottom: 0.1,
  6708. extra: 1
  6709. }
  6710. },
  6711. foot: {
  6712. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6713. name: "Foot",
  6714. image: {
  6715. source: "./media/characters/verin/foot.svg"
  6716. }
  6717. },
  6718. },
  6719. [
  6720. {
  6721. name: "Normal",
  6722. height: math.unit(8 + 3 / 12, "feet")
  6723. },
  6724. {
  6725. name: "Minimacro",
  6726. height: math.unit(21, "feet"),
  6727. default: true
  6728. },
  6729. {
  6730. name: "Macro",
  6731. height: math.unit(626, "feet")
  6732. },
  6733. ]
  6734. ))
  6735. characterMakers.push(() => makeCharacter(
  6736. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6737. {
  6738. front: {
  6739. height: math.unit(2.718, "meters"),
  6740. weight: math.unit(150, "lbs"),
  6741. name: "Front",
  6742. image: {
  6743. source: "./media/characters/sovrim-terraquian/front.svg"
  6744. }
  6745. },
  6746. back: {
  6747. height: math.unit(2.718, "meters"),
  6748. weight: math.unit(150, "lbs"),
  6749. name: "Back",
  6750. image: {
  6751. source: "./media/characters/sovrim-terraquian/back.svg"
  6752. }
  6753. }
  6754. },
  6755. [
  6756. {
  6757. name: "Micro",
  6758. height: math.unit(2, "inches")
  6759. },
  6760. {
  6761. name: "Small",
  6762. height: math.unit(1, "meter")
  6763. },
  6764. {
  6765. name: "Normal",
  6766. height: math.unit(Math.E, "meters"),
  6767. default: true
  6768. },
  6769. {
  6770. name: "Macro",
  6771. height: math.unit(20, "meters")
  6772. },
  6773. {
  6774. name: "Macro+",
  6775. height: math.unit(400, "meters")
  6776. },
  6777. ]
  6778. ))
  6779. characterMakers.push(() => makeCharacter(
  6780. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6781. {
  6782. front: {
  6783. height: math.unit(7, "feet"),
  6784. weight: math.unit(489, "lbs"),
  6785. name: "Front",
  6786. image: {
  6787. source: "./media/characters/reece-silvermane/front.svg",
  6788. bottom: 0.02,
  6789. extra: 1
  6790. }
  6791. },
  6792. },
  6793. [
  6794. {
  6795. name: "Macro",
  6796. height: math.unit(1.5, "miles"),
  6797. default: true
  6798. },
  6799. ]
  6800. ))
  6801. characterMakers.push(() => makeCharacter(
  6802. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6803. {
  6804. front: {
  6805. height: math.unit(6, "feet"),
  6806. weight: math.unit(78, "kg"),
  6807. name: "Front",
  6808. image: {
  6809. source: "./media/characters/kane/front.svg",
  6810. extra: 978 / 899
  6811. }
  6812. },
  6813. },
  6814. [
  6815. {
  6816. name: "Normal",
  6817. height: math.unit(2.1, "m"),
  6818. },
  6819. {
  6820. name: "Macro",
  6821. height: math.unit(1, "km"),
  6822. default: true
  6823. },
  6824. ]
  6825. ))
  6826. characterMakers.push(() => makeCharacter(
  6827. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6828. {
  6829. front: {
  6830. height: math.unit(6, "feet"),
  6831. weight: math.unit(200, "kg"),
  6832. name: "Front",
  6833. image: {
  6834. source: "./media/characters/tegon/front.svg",
  6835. bottom: 0.01,
  6836. extra: 1
  6837. }
  6838. },
  6839. },
  6840. [
  6841. {
  6842. name: "Micro",
  6843. height: math.unit(1, "inch")
  6844. },
  6845. {
  6846. name: "Normal",
  6847. height: math.unit(6 + 3 / 12, "feet"),
  6848. default: true
  6849. },
  6850. {
  6851. name: "Macro",
  6852. height: math.unit(300, "feet")
  6853. },
  6854. {
  6855. name: "Megamacro",
  6856. height: math.unit(69, "miles")
  6857. },
  6858. ]
  6859. ))
  6860. characterMakers.push(() => makeCharacter(
  6861. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  6862. {
  6863. side: {
  6864. height: math.unit(6, "feet"),
  6865. weight: math.unit(2304, "lbs"),
  6866. name: "Side",
  6867. image: {
  6868. source: "./media/characters/arcturax/side.svg",
  6869. extra: 790 / 376,
  6870. bottom: 0.01
  6871. }
  6872. },
  6873. },
  6874. [
  6875. {
  6876. name: "Micro",
  6877. height: math.unit(2, "inch")
  6878. },
  6879. {
  6880. name: "Normal",
  6881. height: math.unit(6, "feet")
  6882. },
  6883. {
  6884. name: "Macro",
  6885. height: math.unit(39, "feet"),
  6886. default: true
  6887. },
  6888. {
  6889. name: "Megamacro",
  6890. height: math.unit(7, "miles")
  6891. },
  6892. ]
  6893. ))
  6894. characterMakers.push(() => makeCharacter(
  6895. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  6896. {
  6897. front: {
  6898. height: math.unit(6, "feet"),
  6899. weight: math.unit(50, "lbs"),
  6900. name: "Front",
  6901. image: {
  6902. source: "./media/characters/sentri/front.svg",
  6903. extra: 1750 / 1570,
  6904. bottom: 0.025
  6905. }
  6906. },
  6907. frontAlt: {
  6908. height: math.unit(6, "feet"),
  6909. weight: math.unit(50, "lbs"),
  6910. name: "Front (Alt)",
  6911. image: {
  6912. source: "./media/characters/sentri/front-alt.svg",
  6913. extra: 1750 / 1570,
  6914. bottom: 0.025
  6915. }
  6916. },
  6917. },
  6918. [
  6919. {
  6920. name: "Normal",
  6921. height: math.unit(15, "feet"),
  6922. default: true
  6923. },
  6924. {
  6925. name: "Macro",
  6926. height: math.unit(2500, "feet")
  6927. }
  6928. ]
  6929. ))
  6930. characterMakers.push(() => makeCharacter(
  6931. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  6932. {
  6933. front: {
  6934. height: math.unit(5 + 8 / 12, "feet"),
  6935. weight: math.unit(130, "lbs"),
  6936. name: "Front",
  6937. image: {
  6938. source: "./media/characters/corvin/front.svg",
  6939. extra: 1803 / 1629
  6940. }
  6941. },
  6942. frontShirt: {
  6943. height: math.unit(5 + 8 / 12, "feet"),
  6944. weight: math.unit(130, "lbs"),
  6945. name: "Front (Shirt)",
  6946. image: {
  6947. source: "./media/characters/corvin/front-shirt.svg",
  6948. extra: 1803 / 1629
  6949. }
  6950. },
  6951. frontPoncho: {
  6952. height: math.unit(5 + 8 / 12, "feet"),
  6953. weight: math.unit(130, "lbs"),
  6954. name: "Front (Poncho)",
  6955. image: {
  6956. source: "./media/characters/corvin/front-poncho.svg",
  6957. extra: 1803 / 1629
  6958. }
  6959. },
  6960. side: {
  6961. height: math.unit(5 + 8 / 12, "feet"),
  6962. weight: math.unit(130, "lbs"),
  6963. name: "Side",
  6964. image: {
  6965. source: "./media/characters/corvin/side.svg",
  6966. extra: 1012 / 945
  6967. }
  6968. },
  6969. back: {
  6970. height: math.unit(5 + 8 / 12, "feet"),
  6971. weight: math.unit(130, "lbs"),
  6972. name: "Back",
  6973. image: {
  6974. source: "./media/characters/corvin/back.svg",
  6975. extra: 1803 / 1629
  6976. }
  6977. },
  6978. },
  6979. [
  6980. {
  6981. name: "Micro",
  6982. height: math.unit(3, "inches")
  6983. },
  6984. {
  6985. name: "Normal",
  6986. height: math.unit(5 + 8 / 12, "feet")
  6987. },
  6988. {
  6989. name: "Macro",
  6990. height: math.unit(300, "feet"),
  6991. default: true
  6992. },
  6993. {
  6994. name: "Megamacro",
  6995. height: math.unit(500, "miles")
  6996. }
  6997. ]
  6998. ))
  6999. characterMakers.push(() => makeCharacter(
  7000. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7001. {
  7002. front: {
  7003. height: math.unit(6, "feet"),
  7004. weight: math.unit(135, "lbs"),
  7005. name: "Front",
  7006. image: {
  7007. source: "./media/characters/q/front.svg",
  7008. extra: 854 / 752,
  7009. bottom: 0.005
  7010. }
  7011. },
  7012. back: {
  7013. height: math.unit(6, "feet"),
  7014. weight: math.unit(130, "lbs"),
  7015. name: "Back",
  7016. image: {
  7017. source: "./media/characters/q/back.svg",
  7018. extra: 854 / 752
  7019. }
  7020. },
  7021. },
  7022. [
  7023. {
  7024. name: "Macro",
  7025. height: math.unit(90, "feet"),
  7026. default: true
  7027. },
  7028. {
  7029. name: "Extra Macro",
  7030. height: math.unit(300, "feet"),
  7031. },
  7032. {
  7033. name: "BIG WALF",
  7034. height: math.unit(750, "feet"),
  7035. },
  7036. ]
  7037. ))
  7038. characterMakers.push(() => makeCharacter(
  7039. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7040. {
  7041. front: {
  7042. height: math.unit(6, "feet"),
  7043. weight: math.unit(150, "lbs"),
  7044. name: "Front",
  7045. image: {
  7046. source: "./media/characters/carley/front.svg",
  7047. extra: 3927 / 3540,
  7048. bottom: 0.03
  7049. }
  7050. }
  7051. },
  7052. [
  7053. {
  7054. name: "Normal",
  7055. height: math.unit(6 + 3 / 12, "feet")
  7056. },
  7057. {
  7058. name: "Macro",
  7059. height: math.unit(185, "feet"),
  7060. default: true
  7061. },
  7062. {
  7063. name: "Megamacro",
  7064. height: math.unit(8, "miles"),
  7065. },
  7066. ]
  7067. ))
  7068. characterMakers.push(() => makeCharacter(
  7069. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7070. {
  7071. front: {
  7072. height: math.unit(3, "feet"),
  7073. weight: math.unit(28, "lbs"),
  7074. name: "Front",
  7075. image: {
  7076. source: "./media/characters/citrine/front.svg"
  7077. }
  7078. }
  7079. },
  7080. [
  7081. {
  7082. name: "Normal",
  7083. height: math.unit(3, "feet"),
  7084. default: true
  7085. }
  7086. ]
  7087. ))
  7088. characterMakers.push(() => makeCharacter(
  7089. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7090. {
  7091. front: {
  7092. height: math.unit(14, "feet"),
  7093. weight: math.unit(1450, "kg"),
  7094. capacity: math.unit(15, "people"),
  7095. name: "Front",
  7096. image: {
  7097. source: "./media/characters/aura-starwind/front.svg",
  7098. extra: 1455 / 1335
  7099. }
  7100. },
  7101. side: {
  7102. height: math.unit(14, "feet"),
  7103. weight: math.unit(1450, "kg"),
  7104. capacity: math.unit(15, "people"),
  7105. name: "Side",
  7106. image: {
  7107. source: "./media/characters/aura-starwind/side.svg",
  7108. extra: 1654 / 1497
  7109. }
  7110. },
  7111. taur: {
  7112. height: math.unit(18, "feet"),
  7113. weight: math.unit(5500, "kg"),
  7114. capacity: math.unit(50, "people"),
  7115. name: "Taur",
  7116. image: {
  7117. source: "./media/characters/aura-starwind/taur.svg",
  7118. extra: 1760 / 1650
  7119. }
  7120. },
  7121. feral: {
  7122. height: math.unit(46, "feet"),
  7123. weight: math.unit(25000, "kg"),
  7124. capacity: math.unit(120, "people"),
  7125. name: "Feral",
  7126. image: {
  7127. source: "./media/characters/aura-starwind/feral.svg"
  7128. }
  7129. },
  7130. },
  7131. [
  7132. {
  7133. name: "Normal",
  7134. height: math.unit(14, "feet"),
  7135. default: true
  7136. },
  7137. {
  7138. name: "Macro",
  7139. height: math.unit(50, "meters")
  7140. },
  7141. {
  7142. name: "Megamacro",
  7143. height: math.unit(5000, "meters")
  7144. },
  7145. {
  7146. name: "Gigamacro",
  7147. height: math.unit(100000, "kilometers")
  7148. },
  7149. ]
  7150. ))
  7151. characterMakers.push(() => makeCharacter(
  7152. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7153. {
  7154. front: {
  7155. height: math.unit(2 + 7 / 12, "feet"),
  7156. weight: math.unit(32, "lbs"),
  7157. name: "Front",
  7158. image: {
  7159. source: "./media/characters/rivet/front.svg",
  7160. extra: 1716 / 1658,
  7161. bottom: 0.03
  7162. }
  7163. },
  7164. foot: {
  7165. height: math.unit(0.551, "feet"),
  7166. name: "Rivet's Foot",
  7167. image: {
  7168. source: "./media/characters/rivet/foot.svg"
  7169. },
  7170. rename: true
  7171. }
  7172. },
  7173. [
  7174. {
  7175. name: "Micro",
  7176. height: math.unit(1.5, "inches"),
  7177. },
  7178. {
  7179. name: "Normal",
  7180. height: math.unit(2 + 7 / 12, "feet"),
  7181. default: true
  7182. },
  7183. {
  7184. name: "Macro",
  7185. height: math.unit(85, "feet")
  7186. },
  7187. {
  7188. name: "Megamacro",
  7189. height: math.unit(2.2, "km")
  7190. }
  7191. ]
  7192. ))
  7193. characterMakers.push(() => makeCharacter(
  7194. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7195. {
  7196. front: {
  7197. height: math.unit(5 + 9 / 12, "feet"),
  7198. weight: math.unit(150, "lbs"),
  7199. name: "Front",
  7200. image: {
  7201. source: "./media/characters/coffee/front.svg",
  7202. extra: 3666 / 3032,
  7203. bottom: 0.04
  7204. }
  7205. },
  7206. foot: {
  7207. height: math.unit(1.29, "feet"),
  7208. name: "Foot",
  7209. image: {
  7210. source: "./media/characters/coffee/foot.svg"
  7211. }
  7212. },
  7213. },
  7214. [
  7215. {
  7216. name: "Micro",
  7217. height: math.unit(2, "inches"),
  7218. },
  7219. {
  7220. name: "Normal",
  7221. height: math.unit(5 + 9 / 12, "feet"),
  7222. default: true
  7223. },
  7224. {
  7225. name: "Macro",
  7226. height: math.unit(800, "feet")
  7227. },
  7228. {
  7229. name: "Megamacro",
  7230. height: math.unit(25, "miles")
  7231. }
  7232. ]
  7233. ))
  7234. characterMakers.push(() => makeCharacter(
  7235. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7236. {
  7237. front: {
  7238. height: math.unit(6, "feet"),
  7239. weight: math.unit(200, "lbs"),
  7240. name: "Front",
  7241. image: {
  7242. source: "./media/characters/chari-gal/front.svg",
  7243. extra: 1568 / 1385,
  7244. bottom: 0.047
  7245. }
  7246. },
  7247. gigantamax: {
  7248. height: math.unit(6 * 16, "feet"),
  7249. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7250. name: "Gigantamax",
  7251. image: {
  7252. source: "./media/characters/chari-gal/gigantamax.svg",
  7253. extra: 1124 / 888,
  7254. bottom: 0.03
  7255. }
  7256. },
  7257. },
  7258. [
  7259. {
  7260. name: "Normal",
  7261. height: math.unit(5 + 7 / 12, "feet")
  7262. },
  7263. {
  7264. name: "Macro",
  7265. height: math.unit(200, "feet"),
  7266. default: true
  7267. }
  7268. ]
  7269. ))
  7270. characterMakers.push(() => makeCharacter(
  7271. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7272. {
  7273. front: {
  7274. height: math.unit(6, "feet"),
  7275. weight: math.unit(150, "lbs"),
  7276. name: "Front",
  7277. image: {
  7278. source: "./media/characters/nova/front.svg",
  7279. extra: 5000 / 4722,
  7280. bottom: 0.02
  7281. }
  7282. }
  7283. },
  7284. [
  7285. {
  7286. name: "Micro-",
  7287. height: math.unit(0.8, "inches")
  7288. },
  7289. {
  7290. name: "Micro",
  7291. height: math.unit(2, "inches"),
  7292. default: true
  7293. },
  7294. ]
  7295. ))
  7296. characterMakers.push(() => makeCharacter(
  7297. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7298. {
  7299. front: {
  7300. height: math.unit(3 + 1 / 12, "feet"),
  7301. weight: math.unit(21.7, "lbs"),
  7302. name: "Front",
  7303. image: {
  7304. source: "./media/characters/argent/front.svg",
  7305. extra: 1565 / 1416,
  7306. bottom: 0.01
  7307. }
  7308. }
  7309. },
  7310. [
  7311. {
  7312. name: "Micro",
  7313. height: math.unit(2, "inches")
  7314. },
  7315. {
  7316. name: "Normal",
  7317. height: math.unit(3 + 1 / 12, "feet"),
  7318. default: true
  7319. },
  7320. {
  7321. name: "Macro",
  7322. height: math.unit(120, "feet")
  7323. },
  7324. ]
  7325. ))
  7326. characterMakers.push(() => makeCharacter(
  7327. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7328. {
  7329. lamp: {
  7330. height: math.unit(7 * 1559 / 989, "feet"),
  7331. name: "Magic Lamp",
  7332. image: {
  7333. source: "./media/characters/mira-al-cul/lamp.svg",
  7334. extra: 1617 / 1559
  7335. }
  7336. },
  7337. front: {
  7338. height: math.unit(7, "feet"),
  7339. name: "Front",
  7340. image: {
  7341. source: "./media/characters/mira-al-cul/front.svg",
  7342. extra: 1044 / 990
  7343. }
  7344. },
  7345. },
  7346. [
  7347. {
  7348. name: "Heavily Restricted",
  7349. height: math.unit(7 * 1559 / 989, "feet")
  7350. },
  7351. {
  7352. name: "Freshly Freed",
  7353. height: math.unit(50 * 1559 / 989, "feet")
  7354. },
  7355. {
  7356. name: "World Encompassing",
  7357. height: math.unit(10000 * 1559 / 989, "miles")
  7358. },
  7359. {
  7360. name: "Galactic",
  7361. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7362. },
  7363. {
  7364. name: "Palmed Universe",
  7365. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7366. default: true
  7367. },
  7368. {
  7369. name: "Multiversal Matriarch",
  7370. height: math.unit(8.87e10, "yottameters")
  7371. },
  7372. {
  7373. name: "Void Mother",
  7374. height: math.unit(3.14e110, "yottaparsecs")
  7375. },
  7376. ]
  7377. ))
  7378. characterMakers.push(() => makeCharacter(
  7379. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7380. {
  7381. front: {
  7382. height: math.unit(17 + 1 / 12, "feet"),
  7383. weight: math.unit(476.2 * 5, "lbs"),
  7384. name: "Front",
  7385. image: {
  7386. source: "./media/characters/kuro-shi-uchū/front.svg",
  7387. extra: 2329 / 1835,
  7388. bottom: 0.02
  7389. }
  7390. },
  7391. },
  7392. [
  7393. {
  7394. name: "Micro",
  7395. height: math.unit(2, "inches")
  7396. },
  7397. {
  7398. name: "Normal",
  7399. height: math.unit(12, "meters")
  7400. },
  7401. {
  7402. name: "Planetary",
  7403. height: math.unit(0.00929, "AU"),
  7404. default: true
  7405. },
  7406. {
  7407. name: "Universal",
  7408. height: math.unit(20, "gigaparsecs")
  7409. },
  7410. ]
  7411. ))
  7412. characterMakers.push(() => makeCharacter(
  7413. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7414. {
  7415. front: {
  7416. height: math.unit(5 + 2 / 12, "feet"),
  7417. weight: math.unit(120, "lbs"),
  7418. name: "Front",
  7419. image: {
  7420. source: "./media/characters/katherine/front.svg",
  7421. extra: 2075 / 1969
  7422. }
  7423. },
  7424. dress: {
  7425. height: math.unit(5 + 2 / 12, "feet"),
  7426. weight: math.unit(120, "lbs"),
  7427. name: "Dress",
  7428. image: {
  7429. source: "./media/characters/katherine/dress.svg",
  7430. extra: 2258 / 2064
  7431. }
  7432. },
  7433. },
  7434. [
  7435. {
  7436. name: "Micro",
  7437. height: math.unit(1, "inches"),
  7438. default: true
  7439. },
  7440. {
  7441. name: "Normal",
  7442. height: math.unit(5 + 2 / 12, "feet")
  7443. },
  7444. {
  7445. name: "Macro",
  7446. height: math.unit(100, "meters")
  7447. },
  7448. {
  7449. name: "Megamacro",
  7450. height: math.unit(80, "miles")
  7451. },
  7452. ]
  7453. ))
  7454. characterMakers.push(() => makeCharacter(
  7455. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7456. {
  7457. front: {
  7458. height: math.unit(7 + 8 / 12, "feet"),
  7459. weight: math.unit(250, "lbs"),
  7460. name: "Front",
  7461. image: {
  7462. source: "./media/characters/yevis/front.svg",
  7463. extra: 1938 / 1755
  7464. }
  7465. }
  7466. },
  7467. [
  7468. {
  7469. name: "Mortal",
  7470. height: math.unit(7 + 8 / 12, "feet")
  7471. },
  7472. {
  7473. name: "Battle",
  7474. height: math.unit(25 + 11 / 12, "feet")
  7475. },
  7476. {
  7477. name: "Wrath",
  7478. height: math.unit(1654 + 11 / 12, "feet")
  7479. },
  7480. {
  7481. name: "Planet Destroyer",
  7482. height: math.unit(12000, "miles")
  7483. },
  7484. {
  7485. name: "Galaxy Conqueror",
  7486. height: math.unit(1.45, "zettameters"),
  7487. default: true
  7488. },
  7489. {
  7490. name: "Universal War",
  7491. height: math.unit(184, "gigaparsecs")
  7492. },
  7493. {
  7494. name: "Eternity War",
  7495. height: math.unit(1.98e55, "yottaparsecs")
  7496. },
  7497. ]
  7498. ))
  7499. characterMakers.push(() => makeCharacter(
  7500. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7501. {
  7502. front: {
  7503. height: math.unit(5 + 8 / 12, "feet"),
  7504. weight: math.unit(63, "kg"),
  7505. name: "Front",
  7506. image: {
  7507. source: "./media/characters/xavier/front.svg",
  7508. extra: 944 / 883
  7509. }
  7510. },
  7511. frontStretch: {
  7512. height: math.unit(5 + 8 / 12, "feet"),
  7513. weight: math.unit(63, "kg"),
  7514. name: "Stretching",
  7515. image: {
  7516. source: "./media/characters/xavier/front-stretch.svg",
  7517. extra: 962 / 820
  7518. }
  7519. },
  7520. },
  7521. [
  7522. {
  7523. name: "Normal",
  7524. height: math.unit(5 + 8 / 12, "feet")
  7525. },
  7526. {
  7527. name: "Macro",
  7528. height: math.unit(100, "meters"),
  7529. default: true
  7530. },
  7531. {
  7532. name: "McLargeHuge",
  7533. height: math.unit(10, "miles")
  7534. },
  7535. ]
  7536. ))
  7537. characterMakers.push(() => makeCharacter(
  7538. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7539. {
  7540. front: {
  7541. height: math.unit(5 + 5 / 12, "feet"),
  7542. weight: math.unit(150, "lb"),
  7543. name: "Front",
  7544. image: {
  7545. source: "./media/characters/joshii/front.svg"
  7546. }
  7547. },
  7548. foot: {
  7549. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7550. name: "Foot",
  7551. image: {
  7552. source: "./media/characters/joshii/foot.svg"
  7553. }
  7554. },
  7555. },
  7556. [
  7557. {
  7558. name: "Micro",
  7559. height: math.unit(2, "inches")
  7560. },
  7561. {
  7562. name: "Normal",
  7563. height: math.unit(5 + 5 / 12, "feet"),
  7564. default: true
  7565. },
  7566. {
  7567. name: "Macro",
  7568. height: math.unit(785, "feet")
  7569. },
  7570. {
  7571. name: "Megamacro",
  7572. height: math.unit(24.5, "miles")
  7573. },
  7574. ]
  7575. ))
  7576. characterMakers.push(() => makeCharacter(
  7577. { name: "Goddess Elizabeth", species: ["wolf"], tags: ["anthro"] },
  7578. {
  7579. front: {
  7580. height: math.unit(6, "feet"),
  7581. weight: math.unit(150, "lb"),
  7582. name: "Front",
  7583. image: {
  7584. source: "./media/characters/goddess-elizabeth/front.svg",
  7585. extra: 1800 / 1525,
  7586. bottom: 0.005
  7587. }
  7588. },
  7589. foot: {
  7590. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7591. name: "Foot",
  7592. image: {
  7593. source: "./media/characters/goddess-elizabeth/foot.svg"
  7594. }
  7595. },
  7596. mouth: {
  7597. height: math.unit(6, "feet"),
  7598. name: "Mouth",
  7599. image: {
  7600. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7601. }
  7602. },
  7603. },
  7604. [
  7605. {
  7606. name: "Micro",
  7607. height: math.unit(12, "feet")
  7608. },
  7609. {
  7610. name: "Normal",
  7611. height: math.unit(80, "miles"),
  7612. default: true
  7613. },
  7614. {
  7615. name: "Macro",
  7616. height: math.unit(15000, "parsecs")
  7617. },
  7618. ]
  7619. ))
  7620. characterMakers.push(() => makeCharacter(
  7621. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7622. {
  7623. front: {
  7624. height: math.unit(5 + 9 / 12, "feet"),
  7625. weight: math.unit(144, "lb"),
  7626. name: "Front",
  7627. image: {
  7628. source: "./media/characters/kara/front.svg"
  7629. }
  7630. },
  7631. feet: {
  7632. height: math.unit(6 / 6.765, "feet"),
  7633. name: "Kara's Feet",
  7634. rename: true,
  7635. image: {
  7636. source: "./media/characters/kara/feet.svg"
  7637. }
  7638. },
  7639. },
  7640. [
  7641. {
  7642. name: "Normal",
  7643. height: math.unit(5 + 9 / 12, "feet")
  7644. },
  7645. {
  7646. name: "Macro",
  7647. height: math.unit(174, "feet"),
  7648. default: true
  7649. },
  7650. ]
  7651. ))
  7652. characterMakers.push(() => makeCharacter(
  7653. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7654. {
  7655. front: {
  7656. height: math.unit(18, "feet"),
  7657. weight: math.unit(4050, "lb"),
  7658. name: "Front",
  7659. image: {
  7660. source: "./media/characters/tyrone/front.svg",
  7661. extra: 2520 / 2402,
  7662. bottom: 0.025
  7663. }
  7664. },
  7665. },
  7666. [
  7667. {
  7668. name: "Normal",
  7669. height: math.unit(18, "feet"),
  7670. default: true
  7671. },
  7672. {
  7673. name: "Macro",
  7674. height: math.unit(300, "feet")
  7675. },
  7676. ]
  7677. ))
  7678. characterMakers.push(() => makeCharacter(
  7679. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7680. {
  7681. front: {
  7682. height: math.unit(7 + 8 / 12, "feet"),
  7683. weight: math.unit(120, "lb"),
  7684. name: "Front",
  7685. image: {
  7686. source: "./media/characters/danny/front.svg",
  7687. extra: 1490 / 1350
  7688. }
  7689. },
  7690. back: {
  7691. height: math.unit(7 + 8 / 12, "feet"),
  7692. weight: math.unit(120, "lb"),
  7693. name: "Back",
  7694. image: {
  7695. source: "./media/characters/danny/back.svg",
  7696. extra: 1490 / 1350
  7697. }
  7698. },
  7699. },
  7700. [
  7701. {
  7702. name: "Normal",
  7703. height: math.unit(7 + 8 / 12, "feet"),
  7704. default: true
  7705. },
  7706. ]
  7707. ))
  7708. characterMakers.push(() => makeCharacter(
  7709. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7710. {
  7711. front: {
  7712. height: math.unit(3.5, "inches"),
  7713. weight: math.unit(19, "grams"),
  7714. name: "Front",
  7715. image: {
  7716. source: "./media/characters/mallow/front.svg",
  7717. extra: 471 / 431
  7718. }
  7719. },
  7720. back: {
  7721. height: math.unit(3.5, "inches"),
  7722. weight: math.unit(19, "grams"),
  7723. name: "Back",
  7724. image: {
  7725. source: "./media/characters/mallow/back.svg",
  7726. extra: 471 / 431
  7727. }
  7728. },
  7729. },
  7730. [
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(3.5, "inches"),
  7734. default: true
  7735. },
  7736. ]
  7737. ))
  7738. characterMakers.push(() => makeCharacter(
  7739. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7740. {
  7741. front: {
  7742. height: math.unit(9, "feet"),
  7743. weight: math.unit(230, "kg"),
  7744. name: "Front",
  7745. image: {
  7746. source: "./media/characters/starry-aqua/front.svg"
  7747. }
  7748. },
  7749. back: {
  7750. height: math.unit(9, "feet"),
  7751. weight: math.unit(230, "kg"),
  7752. name: "Back",
  7753. image: {
  7754. source: "./media/characters/starry-aqua/back.svg"
  7755. }
  7756. },
  7757. hand: {
  7758. height: math.unit(9 * 0.1168, "feet"),
  7759. name: "Hand",
  7760. image: {
  7761. source: "./media/characters/starry-aqua/hand.svg"
  7762. }
  7763. },
  7764. foot: {
  7765. height: math.unit(9 * 0.18, "feet"),
  7766. name: "Foot",
  7767. image: {
  7768. source: "./media/characters/starry-aqua/foot.svg"
  7769. }
  7770. }
  7771. },
  7772. [
  7773. {
  7774. name: "Micro",
  7775. height: math.unit(3, "inches")
  7776. },
  7777. {
  7778. name: "Normal",
  7779. height: math.unit(9, "feet")
  7780. },
  7781. {
  7782. name: "Macro",
  7783. height: math.unit(300, "feet"),
  7784. default: true
  7785. },
  7786. {
  7787. name: "Megamacro",
  7788. height: math.unit(3200, "feet")
  7789. }
  7790. ]
  7791. ))
  7792. characterMakers.push(() => makeCharacter(
  7793. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7794. {
  7795. front: {
  7796. height: math.unit(6, "feet"),
  7797. weight: math.unit(230, "lb"),
  7798. name: "Front",
  7799. image: {
  7800. source: "./media/characters/luka/front.svg",
  7801. extra: 1,
  7802. bottom: 0.025
  7803. }
  7804. },
  7805. },
  7806. [
  7807. {
  7808. name: "Normal",
  7809. height: math.unit(12 + 8 / 12, "feet"),
  7810. default: true
  7811. },
  7812. {
  7813. name: "Minimacro",
  7814. height: math.unit(20, "feet")
  7815. },
  7816. {
  7817. name: "Macro",
  7818. height: math.unit(250, "feet")
  7819. },
  7820. {
  7821. name: "Megamacro",
  7822. height: math.unit(5, "miles")
  7823. },
  7824. {
  7825. name: "Gigamacro",
  7826. height: math.unit(8000, "miles")
  7827. },
  7828. ]
  7829. ))
  7830. characterMakers.push(() => makeCharacter(
  7831. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7832. {
  7833. front: {
  7834. height: math.unit(6, "feet"),
  7835. weight: math.unit(150, "lb"),
  7836. name: "Front",
  7837. image: {
  7838. source: "./media/characters/natalie-nightring/front.svg",
  7839. extra: 1,
  7840. bottom: 0.06
  7841. }
  7842. },
  7843. },
  7844. [
  7845. {
  7846. name: "Uh Oh",
  7847. height: math.unit(0.1, "mm")
  7848. },
  7849. {
  7850. name: "Small",
  7851. height: math.unit(3, "inches")
  7852. },
  7853. {
  7854. name: "Human Scale",
  7855. height: math.unit(6, "feet")
  7856. },
  7857. {
  7858. name: "Librarian",
  7859. height: math.unit(50, "feet"),
  7860. default: true
  7861. },
  7862. {
  7863. name: "Immense",
  7864. height: math.unit(200, "miles")
  7865. },
  7866. ]
  7867. ))
  7868. characterMakers.push(() => makeCharacter(
  7869. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  7870. {
  7871. front: {
  7872. height: math.unit(6, "feet"),
  7873. weight: math.unit(180, "lbs"),
  7874. name: "Front",
  7875. image: {
  7876. source: "./media/characters/danni-rosie/front.svg",
  7877. extra: 1260 / 1128,
  7878. bottom: 0.022
  7879. }
  7880. },
  7881. },
  7882. [
  7883. {
  7884. name: "Micro",
  7885. height: math.unit(2, "inches"),
  7886. default: true
  7887. },
  7888. ]
  7889. ))
  7890. characterMakers.push(() => makeCharacter(
  7891. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  7892. {
  7893. front: {
  7894. height: math.unit(5 + 9 / 12, "feet"),
  7895. weight: math.unit(220, "lb"),
  7896. name: "Front",
  7897. image: {
  7898. source: "./media/characters/samantha-kruse/front.svg",
  7899. extra: (985 / 935),
  7900. bottom: 0.03
  7901. }
  7902. },
  7903. frontUndressed: {
  7904. height: math.unit(5 + 9 / 12, "feet"),
  7905. weight: math.unit(220, "lb"),
  7906. name: "Front (Undressed)",
  7907. image: {
  7908. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7909. extra: (973 / 923),
  7910. bottom: 0.025
  7911. }
  7912. },
  7913. fat: {
  7914. height: math.unit(5 + 9 / 12, "feet"),
  7915. weight: math.unit(900, "lb"),
  7916. name: "Front (Fat)",
  7917. image: {
  7918. source: "./media/characters/samantha-kruse/fat.svg",
  7919. extra: 2688 / 2561
  7920. }
  7921. },
  7922. },
  7923. [
  7924. {
  7925. name: "Normal",
  7926. height: math.unit(5 + 9 / 12, "feet"),
  7927. default: true
  7928. }
  7929. ]
  7930. ))
  7931. characterMakers.push(() => makeCharacter(
  7932. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  7933. {
  7934. back: {
  7935. height: math.unit(5 + 4 / 12, "feet"),
  7936. weight: math.unit(4963, "lb"),
  7937. name: "Back",
  7938. image: {
  7939. source: "./media/characters/amelia-rosie/back.svg",
  7940. extra: 1113 / 963,
  7941. bottom: 0.01
  7942. }
  7943. },
  7944. },
  7945. [
  7946. {
  7947. name: "Level 0",
  7948. height: math.unit(5 + 4 / 12, "feet")
  7949. },
  7950. {
  7951. name: "Level 1",
  7952. height: math.unit(164597, "feet"),
  7953. default: true
  7954. },
  7955. {
  7956. name: "Level 2",
  7957. height: math.unit(956243, "miles")
  7958. },
  7959. {
  7960. name: "Level 3",
  7961. height: math.unit(29421709423, "miles")
  7962. },
  7963. {
  7964. name: "Level 4",
  7965. height: math.unit(154, "lightyears")
  7966. },
  7967. {
  7968. name: "Level 5",
  7969. height: math.unit(4738272, "lightyears")
  7970. },
  7971. {
  7972. name: "Level 6",
  7973. height: math.unit(145787152896, "lightyears")
  7974. },
  7975. ]
  7976. ))
  7977. characterMakers.push(() => makeCharacter(
  7978. { name: "Rook Kitara", species: ["mammal"], tags: ["anthro"] },
  7979. {
  7980. front: {
  7981. height: math.unit(5 + 11 / 12, "feet"),
  7982. weight: math.unit(65, "kg"),
  7983. name: "Front",
  7984. image: {
  7985. source: "./media/characters/rook-kitara/front.svg",
  7986. extra: 1347 / 1274,
  7987. bottom: 0.005
  7988. }
  7989. },
  7990. },
  7991. [
  7992. {
  7993. name: "Totally Unfair",
  7994. height: math.unit(1.8, "mm")
  7995. },
  7996. {
  7997. name: "Lap Rookie",
  7998. height: math.unit(1.4, "feet")
  7999. },
  8000. {
  8001. name: "Normal",
  8002. height: math.unit(5 + 11 / 12, "feet"),
  8003. default: true
  8004. },
  8005. {
  8006. name: "How Did This Happen",
  8007. height: math.unit(80, "miles")
  8008. }
  8009. ]
  8010. ))
  8011. characterMakers.push(() => makeCharacter(
  8012. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8013. {
  8014. front: {
  8015. height: math.unit(7, "feet"),
  8016. weight: math.unit(300, "lb"),
  8017. name: "Front",
  8018. image: {
  8019. source: "./media/characters/pisces/front.svg",
  8020. extra: 2255 / 2115,
  8021. bottom: 0.03
  8022. }
  8023. },
  8024. back: {
  8025. height: math.unit(7, "feet"),
  8026. weight: math.unit(300, "lb"),
  8027. name: "Back",
  8028. image: {
  8029. source: "./media/characters/pisces/back.svg",
  8030. extra: 2146 / 2055,
  8031. bottom: 0.04
  8032. }
  8033. },
  8034. },
  8035. [
  8036. {
  8037. name: "Normal",
  8038. height: math.unit(7, "feet"),
  8039. default: true
  8040. },
  8041. {
  8042. name: "Swimming Pool",
  8043. height: math.unit(12.2, "meters")
  8044. },
  8045. {
  8046. name: "Olympic Swimming Pool",
  8047. height: math.unit(56.3, "meters")
  8048. },
  8049. {
  8050. name: "Lake Superior",
  8051. height: math.unit(93900, "meters")
  8052. },
  8053. {
  8054. name: "Mediterranean Sea",
  8055. height: math.unit(644457, "meters")
  8056. },
  8057. {
  8058. name: "World's Oceans",
  8059. height: math.unit(4567491, "meters")
  8060. },
  8061. ]
  8062. ))
  8063. characterMakers.push(() => makeCharacter(
  8064. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8065. {
  8066. front: {
  8067. height: math.unit(2.3, "meters"),
  8068. weight: math.unit(120, "kg"),
  8069. name: "Front",
  8070. image: {
  8071. source: "./media/characters/zelas/front.svg"
  8072. }
  8073. },
  8074. side: {
  8075. height: math.unit(2.3, "meters"),
  8076. weight: math.unit(120, "kg"),
  8077. name: "Side",
  8078. image: {
  8079. source: "./media/characters/zelas/side.svg"
  8080. }
  8081. },
  8082. back: {
  8083. height: math.unit(2.3, "meters"),
  8084. weight: math.unit(120, "kg"),
  8085. name: "Back",
  8086. image: {
  8087. source: "./media/characters/zelas/back.svg"
  8088. }
  8089. },
  8090. foot: {
  8091. height: math.unit(1.116, "feet"),
  8092. name: "Foot",
  8093. image: {
  8094. source: "./media/characters/zelas/foot.svg"
  8095. }
  8096. },
  8097. },
  8098. [
  8099. {
  8100. name: "Normal",
  8101. height: math.unit(2.3, "meters")
  8102. },
  8103. {
  8104. name: "Macro",
  8105. height: math.unit(30, "meters"),
  8106. default: true
  8107. },
  8108. ]
  8109. ))
  8110. characterMakers.push(() => makeCharacter(
  8111. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8112. {
  8113. front: {
  8114. height: math.unit(1, "inch"),
  8115. weight: math.unit(0.21, "grams"),
  8116. name: "Front",
  8117. image: {
  8118. source: "./media/characters/talbot/front.svg",
  8119. extra: 594 / 544
  8120. }
  8121. },
  8122. },
  8123. [
  8124. {
  8125. name: "Micro",
  8126. height: math.unit(1, "inch"),
  8127. default: true
  8128. },
  8129. ]
  8130. ))
  8131. characterMakers.push(() => makeCharacter(
  8132. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8133. {
  8134. front: {
  8135. height: math.unit(3 + 3 / 12, "feet"),
  8136. weight: math.unit(51.8, "lb"),
  8137. name: "Front",
  8138. image: {
  8139. source: "./media/characters/fliss/front.svg",
  8140. extra: 840 / 640
  8141. }
  8142. },
  8143. },
  8144. [
  8145. {
  8146. name: "Teeny Tiny",
  8147. height: math.unit(1, "mm")
  8148. },
  8149. {
  8150. name: "Small",
  8151. height: math.unit(1, "inch"),
  8152. default: true
  8153. },
  8154. {
  8155. name: "Standard Sylveon",
  8156. height: math.unit(3 + 3 / 12, "feet")
  8157. },
  8158. {
  8159. name: "Large Nuisance",
  8160. height: math.unit(33, "feet")
  8161. },
  8162. {
  8163. name: "City Filler",
  8164. height: math.unit(3000, "feet")
  8165. },
  8166. {
  8167. name: "New Horizon",
  8168. height: math.unit(6000, "miles")
  8169. },
  8170. ]
  8171. ))
  8172. characterMakers.push(() => makeCharacter(
  8173. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8174. {
  8175. front: {
  8176. height: math.unit(5, "cm"),
  8177. weight: math.unit(1.94, "g"),
  8178. name: "Front",
  8179. image: {
  8180. source: "./media/characters/fleta/front.svg",
  8181. extra: 835 / 803
  8182. }
  8183. },
  8184. back: {
  8185. height: math.unit(5, "cm"),
  8186. weight: math.unit(1.94, "g"),
  8187. name: "Back",
  8188. image: {
  8189. source: "./media/characters/fleta/back.svg",
  8190. extra: 835 / 803
  8191. }
  8192. },
  8193. },
  8194. [
  8195. {
  8196. name: "Micro",
  8197. height: math.unit(5, "cm"),
  8198. default: true
  8199. },
  8200. ]
  8201. ))
  8202. characterMakers.push(() => makeCharacter(
  8203. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8204. {
  8205. front: {
  8206. height: math.unit(6, "feet"),
  8207. weight: math.unit(225, "lb"),
  8208. name: "Front",
  8209. image: {
  8210. source: "./media/characters/dominic/front.svg",
  8211. extra: 1770 / 1620,
  8212. bottom: 0.025
  8213. }
  8214. },
  8215. back: {
  8216. height: math.unit(6, "feet"),
  8217. weight: math.unit(225, "lb"),
  8218. name: "Back",
  8219. image: {
  8220. source: "./media/characters/dominic/back.svg",
  8221. extra: 1745 / 1620,
  8222. bottom: 0.065
  8223. }
  8224. },
  8225. },
  8226. [
  8227. {
  8228. name: "Nano",
  8229. height: math.unit(0.1, "mm")
  8230. },
  8231. {
  8232. name: "Micro-",
  8233. height: math.unit(1, "mm")
  8234. },
  8235. {
  8236. name: "Micro",
  8237. height: math.unit(4, "inches")
  8238. },
  8239. {
  8240. name: "Normal",
  8241. height: math.unit(6 + 4 / 12, "feet"),
  8242. default: true
  8243. },
  8244. {
  8245. name: "Macro",
  8246. height: math.unit(115, "feet")
  8247. },
  8248. {
  8249. name: "Macro+",
  8250. height: math.unit(955, "feet")
  8251. },
  8252. {
  8253. name: "Megamacro",
  8254. height: math.unit(8990, "feet")
  8255. },
  8256. {
  8257. name: "Gigmacro",
  8258. height: math.unit(9310, "miles")
  8259. },
  8260. {
  8261. name: "Teramacro",
  8262. height: math.unit(1567005010, "miles")
  8263. },
  8264. {
  8265. name: "Examacro",
  8266. height: math.unit(1425, "parsecs")
  8267. },
  8268. ]
  8269. ))
  8270. characterMakers.push(() => makeCharacter(
  8271. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8272. {
  8273. front: {
  8274. height: math.unit(400, "feet"),
  8275. weight: math.unit(44444444, "lb"),
  8276. name: "Front",
  8277. image: {
  8278. source: "./media/characters/major-colonel/front.svg"
  8279. }
  8280. },
  8281. back: {
  8282. height: math.unit(400, "feet"),
  8283. weight: math.unit(44444444, "lb"),
  8284. name: "Back",
  8285. image: {
  8286. source: "./media/characters/major-colonel/back.svg"
  8287. }
  8288. },
  8289. },
  8290. [
  8291. {
  8292. name: "Macro",
  8293. height: math.unit(400, "feet"),
  8294. default: true
  8295. },
  8296. ]
  8297. ))
  8298. characterMakers.push(() => makeCharacter(
  8299. { name: "Axel Lycan", species: ["cat"], tags: ["anthro"] },
  8300. {
  8301. front: {
  8302. height: math.unit(6, "feet"),
  8303. weight: math.unit(120, "lb"),
  8304. name: "Front",
  8305. image: {
  8306. source: "./media/characters/axel-lycan/front.svg",
  8307. extra: 1,
  8308. bottom: 0.08
  8309. }
  8310. },
  8311. },
  8312. [
  8313. {
  8314. name: "Macro",
  8315. height: math.unit(1, "km"),
  8316. default: true
  8317. },
  8318. ]
  8319. ))
  8320. characterMakers.push(() => makeCharacter(
  8321. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8322. {
  8323. front: {
  8324. height: math.unit(5 + 9 / 12, "feet"),
  8325. weight: math.unit(175, "lb"),
  8326. name: "Front",
  8327. image: {
  8328. source: "./media/characters/vanrel-hyena/front.svg",
  8329. extra: 1086 / 1010,
  8330. bottom: 0.04
  8331. }
  8332. },
  8333. },
  8334. [
  8335. {
  8336. name: "Normal",
  8337. height: math.unit(5 + 9 / 12, "feet"),
  8338. default: true
  8339. },
  8340. ]
  8341. ))
  8342. characterMakers.push(() => makeCharacter(
  8343. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8344. {
  8345. front: {
  8346. height: math.unit(6, "feet"),
  8347. weight: math.unit(103, "lb"),
  8348. name: "Front",
  8349. image: {
  8350. source: "./media/characters/abbott-absol/front.svg",
  8351. extra: 2010 / 1842
  8352. }
  8353. },
  8354. },
  8355. [
  8356. {
  8357. name: "Megamicro",
  8358. height: math.unit(0.1, "mm")
  8359. },
  8360. {
  8361. name: "Micro",
  8362. height: math.unit(1, "inch")
  8363. },
  8364. {
  8365. name: "Normal",
  8366. height: math.unit(6, "feet"),
  8367. default: true
  8368. },
  8369. ]
  8370. ))
  8371. characterMakers.push(() => makeCharacter(
  8372. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8373. {
  8374. front: {
  8375. height: math.unit(6, "feet"),
  8376. weight: math.unit(264, "lb"),
  8377. name: "Front",
  8378. image: {
  8379. source: "./media/characters/hector/front.svg",
  8380. extra: 2280 / 2130,
  8381. bottom: 0.07
  8382. }
  8383. },
  8384. },
  8385. [
  8386. {
  8387. name: "Normal",
  8388. height: math.unit(12.25, "foot"),
  8389. default: true
  8390. },
  8391. {
  8392. name: "Macro",
  8393. height: math.unit(160, "feet")
  8394. },
  8395. ]
  8396. ))
  8397. characterMakers.push(() => makeCharacter(
  8398. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8399. {
  8400. front: {
  8401. height: math.unit(6, "feet"),
  8402. weight: math.unit(150, "lb"),
  8403. name: "Front",
  8404. image: {
  8405. source: "./media/characters/sal/front.svg",
  8406. extra: 1846 / 1699,
  8407. bottom: 0.04
  8408. }
  8409. },
  8410. },
  8411. [
  8412. {
  8413. name: "Megamacro",
  8414. height: math.unit(10, "miles"),
  8415. default: true
  8416. },
  8417. ]
  8418. ))
  8419. characterMakers.push(() => makeCharacter(
  8420. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8421. {
  8422. front: {
  8423. height: math.unit(3, "meters"),
  8424. weight: math.unit(450, "kg"),
  8425. name: "front",
  8426. image: {
  8427. source: "./media/characters/ranger/front.svg",
  8428. extra: 2401 / 2243,
  8429. bottom: 0.05
  8430. }
  8431. },
  8432. },
  8433. [
  8434. {
  8435. name: "Normal",
  8436. height: math.unit(3, "meters"),
  8437. default: true
  8438. },
  8439. ]
  8440. ))
  8441. characterMakers.push(() => makeCharacter(
  8442. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8443. {
  8444. front: {
  8445. height: math.unit(14, "feet"),
  8446. weight: math.unit(800, "kg"),
  8447. name: "Front",
  8448. image: {
  8449. source: "./media/characters/theresa/front.svg",
  8450. extra: 3575 / 3346,
  8451. bottom: 0.03
  8452. }
  8453. },
  8454. },
  8455. [
  8456. {
  8457. name: "Normal",
  8458. height: math.unit(14, "feet"),
  8459. default: true
  8460. },
  8461. ]
  8462. ))
  8463. characterMakers.push(() => makeCharacter(
  8464. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8465. {
  8466. front: {
  8467. height: math.unit(6, "feet"),
  8468. weight: math.unit(3, "kg"),
  8469. name: "Front",
  8470. image: {
  8471. source: "./media/characters/ine/front.svg",
  8472. extra: 678 / 539,
  8473. bottom: 0.023
  8474. }
  8475. },
  8476. },
  8477. [
  8478. {
  8479. name: "Normal",
  8480. height: math.unit(2.265, "feet"),
  8481. default: true
  8482. },
  8483. ]
  8484. ))
  8485. characterMakers.push(() => makeCharacter(
  8486. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8487. {
  8488. front: {
  8489. height: math.unit(5, "feet"),
  8490. weight: math.unit(30, "kg"),
  8491. name: "Front",
  8492. image: {
  8493. source: "./media/characters/vial/front.svg",
  8494. extra: 1365 / 1277,
  8495. bottom: 0.04
  8496. }
  8497. },
  8498. },
  8499. [
  8500. {
  8501. name: "Normal",
  8502. height: math.unit(5, "feet"),
  8503. default: true
  8504. },
  8505. ]
  8506. ))
  8507. characterMakers.push(() => makeCharacter(
  8508. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8509. {
  8510. side: {
  8511. height: math.unit(3.4, "meters"),
  8512. weight: math.unit(1000, "lb"),
  8513. name: "Side",
  8514. image: {
  8515. source: "./media/characters/rovoska/side.svg",
  8516. extra: 4403 / 1515
  8517. }
  8518. },
  8519. },
  8520. [
  8521. {
  8522. name: "Normal",
  8523. height: math.unit(3.4, "meters"),
  8524. default: true
  8525. },
  8526. ]
  8527. ))
  8528. characterMakers.push(() => makeCharacter(
  8529. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8530. {
  8531. front: {
  8532. height: math.unit(8, "feet"),
  8533. weight: math.unit(315, "lb"),
  8534. name: "Front",
  8535. image: {
  8536. source: "./media/characters/gunner-rotthbauer/front.svg"
  8537. }
  8538. },
  8539. back: {
  8540. height: math.unit(8, "feet"),
  8541. weight: math.unit(315, "lb"),
  8542. name: "Back",
  8543. image: {
  8544. source: "./media/characters/gunner-rotthbauer/back.svg"
  8545. }
  8546. },
  8547. },
  8548. [
  8549. {
  8550. name: "Micro",
  8551. height: math.unit(3.5, "inches")
  8552. },
  8553. {
  8554. name: "Normal",
  8555. height: math.unit(8, "feet"),
  8556. default: true
  8557. },
  8558. {
  8559. name: "Macro",
  8560. height: math.unit(250, "feet")
  8561. },
  8562. {
  8563. name: "Megamacro",
  8564. height: math.unit(1, "AU")
  8565. },
  8566. ]
  8567. ))
  8568. characterMakers.push(() => makeCharacter(
  8569. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8570. {
  8571. front: {
  8572. height: math.unit(5 + 5 / 12, "feet"),
  8573. weight: math.unit(140, "lb"),
  8574. name: "Front",
  8575. image: {
  8576. source: "./media/characters/allatia/front.svg",
  8577. extra: 1227 / 1180,
  8578. bottom: 0.027
  8579. }
  8580. },
  8581. },
  8582. [
  8583. {
  8584. name: "Normal",
  8585. height: math.unit(5 + 5 / 12, "feet")
  8586. },
  8587. {
  8588. name: "Macro",
  8589. height: math.unit(250, "feet"),
  8590. default: true
  8591. },
  8592. {
  8593. name: "Megamacro",
  8594. height: math.unit(8, "miles")
  8595. }
  8596. ]
  8597. ))
  8598. characterMakers.push(() => makeCharacter(
  8599. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8600. {
  8601. front: {
  8602. height: math.unit(6, "feet"),
  8603. weight: math.unit(120, "lb"),
  8604. name: "Front",
  8605. image: {
  8606. source: "./media/characters/tene/front.svg",
  8607. extra: 1728 / 1578,
  8608. bottom: 0.022
  8609. }
  8610. },
  8611. stomping: {
  8612. height: math.unit(2.025, "meters"),
  8613. weight: math.unit(120, "lb"),
  8614. name: "Stomping",
  8615. image: {
  8616. source: "./media/characters/tene/stomping.svg",
  8617. extra: 938 / 873,
  8618. bottom: 0.01
  8619. }
  8620. },
  8621. sitting: {
  8622. height: math.unit(1, "meter"),
  8623. weight: math.unit(120, "lb"),
  8624. name: "Sitting",
  8625. image: {
  8626. source: "./media/characters/tene/sitting.svg",
  8627. extra: 437 / 415,
  8628. bottom: 0.1
  8629. }
  8630. },
  8631. feral: {
  8632. height: math.unit(3.9, "feet"),
  8633. weight: math.unit(250, "lb"),
  8634. name: "Feral",
  8635. image: {
  8636. source: "./media/characters/tene/feral.svg",
  8637. extra: 717 / 458,
  8638. bottom: 0.179
  8639. }
  8640. },
  8641. },
  8642. [
  8643. {
  8644. name: "Normal",
  8645. height: math.unit(6, "feet")
  8646. },
  8647. {
  8648. name: "Macro",
  8649. height: math.unit(300, "feet"),
  8650. default: true
  8651. },
  8652. {
  8653. name: "Megamacro",
  8654. height: math.unit(5, "miles")
  8655. },
  8656. ]
  8657. ))
  8658. characterMakers.push(() => makeCharacter(
  8659. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8660. {
  8661. side: {
  8662. height: math.unit(6, "feet"),
  8663. name: "Side",
  8664. image: {
  8665. source: "./media/characters/evander/side.svg",
  8666. extra: 877 / 477
  8667. }
  8668. },
  8669. },
  8670. [
  8671. {
  8672. name: "Normal",
  8673. height: math.unit(0.83, "meters"),
  8674. default: true
  8675. },
  8676. ]
  8677. ))
  8678. characterMakers.push(() => makeCharacter(
  8679. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8680. {
  8681. front: {
  8682. height: math.unit(12, "feet"),
  8683. weight: math.unit(1000, "lb"),
  8684. name: "Front",
  8685. image: {
  8686. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8687. extra: 1762 / 1611
  8688. }
  8689. },
  8690. back: {
  8691. height: math.unit(12, "feet"),
  8692. weight: math.unit(1000, "lb"),
  8693. name: "Back",
  8694. image: {
  8695. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8696. extra: 1762 / 1611
  8697. }
  8698. },
  8699. },
  8700. [
  8701. {
  8702. name: "Normal",
  8703. height: math.unit(12, "feet"),
  8704. default: true
  8705. },
  8706. {
  8707. name: "Kaiju",
  8708. height: math.unit(150, "feet")
  8709. },
  8710. ]
  8711. ))
  8712. characterMakers.push(() => makeCharacter(
  8713. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8714. {
  8715. front: {
  8716. height: math.unit(6, "feet"),
  8717. weight: math.unit(150, "lb"),
  8718. name: "Front",
  8719. image: {
  8720. source: "./media/characters/zero-alurus/front.svg"
  8721. }
  8722. },
  8723. back: {
  8724. height: math.unit(6, "feet"),
  8725. weight: math.unit(150, "lb"),
  8726. name: "Back",
  8727. image: {
  8728. source: "./media/characters/zero-alurus/back.svg"
  8729. }
  8730. },
  8731. },
  8732. [
  8733. {
  8734. name: "Normal",
  8735. height: math.unit(5 + 10 / 12, "feet")
  8736. },
  8737. {
  8738. name: "Macro",
  8739. height: math.unit(60, "feet"),
  8740. default: true
  8741. },
  8742. {
  8743. name: "Macro+",
  8744. height: math.unit(450, "feet")
  8745. },
  8746. ]
  8747. ))
  8748. characterMakers.push(() => makeCharacter(
  8749. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8750. {
  8751. front: {
  8752. height: math.unit(6, "feet"),
  8753. weight: math.unit(200, "lb"),
  8754. name: "Front",
  8755. image: {
  8756. source: "./media/characters/mega-shi/front.svg",
  8757. extra: 1279 / 1250,
  8758. bottom: 0.02
  8759. }
  8760. },
  8761. back: {
  8762. height: math.unit(6, "feet"),
  8763. weight: math.unit(200, "lb"),
  8764. name: "Back",
  8765. image: {
  8766. source: "./media/characters/mega-shi/back.svg",
  8767. extra: 1279 / 1250,
  8768. bottom: 0.02
  8769. }
  8770. },
  8771. },
  8772. [
  8773. {
  8774. name: "Micro",
  8775. height: math.unit(16 + 6 / 12, "feet")
  8776. },
  8777. {
  8778. name: "Third Dimension",
  8779. height: math.unit(40, "meters")
  8780. },
  8781. {
  8782. name: "Normal",
  8783. height: math.unit(660, "feet"),
  8784. default: true
  8785. },
  8786. {
  8787. name: "Megamacro",
  8788. height: math.unit(10, "miles")
  8789. },
  8790. {
  8791. name: "Planetary Launch",
  8792. height: math.unit(500, "miles")
  8793. },
  8794. {
  8795. name: "Interstellar",
  8796. height: math.unit(1e9, "miles")
  8797. },
  8798. {
  8799. name: "Leaving the Universe",
  8800. height: math.unit(1, "gigaparsec")
  8801. },
  8802. {
  8803. name: "Travelling Universes",
  8804. height: math.unit(30e15, "parsecs")
  8805. },
  8806. ]
  8807. ))
  8808. characterMakers.push(() => makeCharacter(
  8809. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8810. {
  8811. front: {
  8812. height: math.unit(6, "feet"),
  8813. weight: math.unit(150, "lb"),
  8814. name: "Front",
  8815. image: {
  8816. source: "./media/characters/odyssey/front.svg",
  8817. extra: 1782 / 1582,
  8818. bottom: 0.01
  8819. }
  8820. },
  8821. side: {
  8822. height: math.unit(5.7, "feet"),
  8823. weight: math.unit(140, "lb"),
  8824. name: "Side",
  8825. image: {
  8826. source: "./media/characters/odyssey/side.svg",
  8827. extra: 6462 / 5700
  8828. }
  8829. },
  8830. },
  8831. [
  8832. {
  8833. name: "Normal",
  8834. height: math.unit(5 + 4 / 12, "feet")
  8835. },
  8836. {
  8837. name: "Macro",
  8838. height: math.unit(1, "km")
  8839. },
  8840. {
  8841. name: "Megamacro",
  8842. height: math.unit(3000, "km")
  8843. },
  8844. {
  8845. name: "Gigamacro",
  8846. height: math.unit(1, "AU"),
  8847. default: true
  8848. },
  8849. {
  8850. name: "Omniversal",
  8851. height: math.unit(100e14, "lightyears")
  8852. },
  8853. ]
  8854. ))
  8855. characterMakers.push(() => makeCharacter(
  8856. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  8857. {
  8858. front: {
  8859. height: math.unit(6, "feet"),
  8860. weight: math.unit(300, "lb"),
  8861. name: "Front",
  8862. image: {
  8863. source: "./media/characters/mekuto/front.svg",
  8864. extra: 921 / 832,
  8865. bottom: 0.03
  8866. }
  8867. },
  8868. hand: {
  8869. height: math.unit(6 / 10.24, "feet"),
  8870. name: "Hand",
  8871. image: {
  8872. source: "./media/characters/mekuto/hand.svg"
  8873. }
  8874. },
  8875. foot: {
  8876. height: math.unit(6 / 5.05, "feet"),
  8877. name: "Foot",
  8878. image: {
  8879. source: "./media/characters/mekuto/foot.svg"
  8880. }
  8881. },
  8882. },
  8883. [
  8884. {
  8885. name: "Minimicro",
  8886. height: math.unit(0.2, "inches")
  8887. },
  8888. {
  8889. name: "Micro",
  8890. height: math.unit(1.5, "inches")
  8891. },
  8892. {
  8893. name: "Normal",
  8894. height: math.unit(5 + 11 / 12, "feet"),
  8895. default: true
  8896. },
  8897. {
  8898. name: "Minimacro",
  8899. height: math.unit(17 + 9 / 12, "feet")
  8900. },
  8901. {
  8902. name: "Macro",
  8903. height: math.unit(177.5, "feet")
  8904. },
  8905. {
  8906. name: "Megamacro",
  8907. height: math.unit(152, "miles")
  8908. },
  8909. ]
  8910. ))
  8911. characterMakers.push(() => makeCharacter(
  8912. { name: "Dafydd Tomos", species: ["unknown"], tags: ["anthro"] },
  8913. {
  8914. front: {
  8915. height: math.unit(6.5, "inches"),
  8916. weight: math.unit(13, "oz"),
  8917. name: "Front",
  8918. image: {
  8919. source: "./media/characters/dafydd-tomos/front.svg",
  8920. extra: 2990 / 2603,
  8921. bottom: 0.03
  8922. }
  8923. },
  8924. },
  8925. [
  8926. {
  8927. name: "Micro",
  8928. height: math.unit(6.5, "inches"),
  8929. default: true
  8930. },
  8931. ]
  8932. ))
  8933. characterMakers.push(() => makeCharacter(
  8934. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  8935. {
  8936. front: {
  8937. height: math.unit(6, "feet"),
  8938. weight: math.unit(150, "lb"),
  8939. name: "Front",
  8940. image: {
  8941. source: "./media/characters/splinter/front.svg",
  8942. extra: 2990 / 2882,
  8943. bottom: 0.04
  8944. }
  8945. },
  8946. back: {
  8947. height: math.unit(6, "feet"),
  8948. weight: math.unit(150, "lb"),
  8949. name: "Back",
  8950. image: {
  8951. source: "./media/characters/splinter/back.svg",
  8952. extra: 2990 / 2882,
  8953. bottom: 0.04
  8954. }
  8955. },
  8956. },
  8957. [
  8958. {
  8959. name: "Normal",
  8960. height: math.unit(6, "feet")
  8961. },
  8962. {
  8963. name: "Macro",
  8964. height: math.unit(230, "meters"),
  8965. default: true
  8966. },
  8967. ]
  8968. ))
  8969. characterMakers.push(() => makeCharacter(
  8970. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  8971. {
  8972. front: {
  8973. height: math.unit(4 + 10 / 12, "feet"),
  8974. weight: math.unit(480, "lb"),
  8975. name: "Front",
  8976. image: {
  8977. source: "./media/characters/snow-gabumon/front.svg",
  8978. extra: 1140 / 963,
  8979. bottom: 0.058
  8980. }
  8981. },
  8982. back: {
  8983. height: math.unit(4 + 10 / 12, "feet"),
  8984. weight: math.unit(480, "lb"),
  8985. name: "Back",
  8986. image: {
  8987. source: "./media/characters/snow-gabumon/back.svg",
  8988. extra: 1115 / 962,
  8989. bottom: 0.041
  8990. }
  8991. },
  8992. frontUndresed: {
  8993. height: math.unit(4 + 10 / 12, "feet"),
  8994. weight: math.unit(480, "lb"),
  8995. name: "Front (Undressed)",
  8996. image: {
  8997. source: "./media/characters/snow-gabumon/front-undressed.svg",
  8998. extra: 1061 / 960,
  8999. bottom: 0.045
  9000. }
  9001. },
  9002. },
  9003. [
  9004. {
  9005. name: "Micro",
  9006. height: math.unit(1, "inch")
  9007. },
  9008. {
  9009. name: "Normal",
  9010. height: math.unit(4 + 10 / 12, "feet"),
  9011. default: true
  9012. },
  9013. {
  9014. name: "Macro",
  9015. height: math.unit(200, "feet")
  9016. },
  9017. {
  9018. name: "Megamacro",
  9019. height: math.unit(120, "miles")
  9020. },
  9021. {
  9022. name: "Gigamacro",
  9023. height: math.unit(9800, "miles")
  9024. },
  9025. ]
  9026. ))
  9027. characterMakers.push(() => makeCharacter(
  9028. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9029. {
  9030. front: {
  9031. height: math.unit(1.7, "meters"),
  9032. weight: math.unit(140, "lb"),
  9033. name: "Front",
  9034. image: {
  9035. source: "./media/characters/moody/front.svg",
  9036. extra: 3226 / 3007,
  9037. bottom: 0.087
  9038. }
  9039. },
  9040. },
  9041. [
  9042. {
  9043. name: "Micro",
  9044. height: math.unit(1, "mm")
  9045. },
  9046. {
  9047. name: "Normal",
  9048. height: math.unit(1.7, "meters"),
  9049. default: true
  9050. },
  9051. {
  9052. name: "Macro",
  9053. height: math.unit(80, "meters")
  9054. },
  9055. {
  9056. name: "Macro+",
  9057. height: math.unit(500, "meters")
  9058. },
  9059. ]
  9060. ))
  9061. characterMakers.push(() => makeCharacter(
  9062. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9063. {
  9064. front: {
  9065. height: math.unit(6, "feet"),
  9066. weight: math.unit(150, "lb"),
  9067. name: "Front",
  9068. image: {
  9069. source: "./media/characters/zyas/front.svg",
  9070. extra: 1180 / 1120,
  9071. bottom: 0.045
  9072. }
  9073. },
  9074. },
  9075. [
  9076. {
  9077. name: "Normal",
  9078. height: math.unit(10, "feet"),
  9079. default: true
  9080. },
  9081. {
  9082. name: "Macro",
  9083. height: math.unit(500, "feet")
  9084. },
  9085. {
  9086. name: "Megamacro",
  9087. height: math.unit(5, "miles")
  9088. },
  9089. {
  9090. name: "Teramacro",
  9091. height: math.unit(150000, "miles")
  9092. },
  9093. ]
  9094. ))
  9095. characterMakers.push(() => makeCharacter(
  9096. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9097. {
  9098. front: {
  9099. height: math.unit(6, "feet"),
  9100. weight: math.unit(150, "lb"),
  9101. name: "Front",
  9102. image: {
  9103. source: "./media/characters/cuon/front.svg",
  9104. extra: 1390 / 1320,
  9105. bottom: 0.008
  9106. }
  9107. },
  9108. },
  9109. [
  9110. {
  9111. name: "Micro",
  9112. height: math.unit(3, "inches")
  9113. },
  9114. {
  9115. name: "Normal",
  9116. height: math.unit(18 + 9 / 12, "feet"),
  9117. default: true
  9118. },
  9119. {
  9120. name: "Macro",
  9121. height: math.unit(360, "feet")
  9122. },
  9123. {
  9124. name: "Megamacro",
  9125. height: math.unit(360, "miles")
  9126. },
  9127. ]
  9128. ))
  9129. characterMakers.push(() => makeCharacter(
  9130. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9131. {
  9132. front: {
  9133. height: math.unit(2.4, "meters"),
  9134. weight: math.unit(70, "kg"),
  9135. name: "Front",
  9136. image: {
  9137. source: "./media/characters/nyanuxk/front.svg",
  9138. extra: 1172 / 1084,
  9139. bottom: 0.065
  9140. }
  9141. },
  9142. side: {
  9143. height: math.unit(2.4, "meters"),
  9144. weight: math.unit(70, "kg"),
  9145. name: "Side",
  9146. image: {
  9147. source: "./media/characters/nyanuxk/side.svg",
  9148. extra: 1190 / 1132,
  9149. bottom: 0.007
  9150. }
  9151. },
  9152. back: {
  9153. height: math.unit(2.4, "meters"),
  9154. weight: math.unit(70, "kg"),
  9155. name: "Back",
  9156. image: {
  9157. source: "./media/characters/nyanuxk/back.svg",
  9158. extra: 1200 / 1141,
  9159. bottom: 0.015
  9160. }
  9161. },
  9162. foot: {
  9163. height: math.unit(0.52, "meters"),
  9164. name: "Foot",
  9165. image: {
  9166. source: "./media/characters/nyanuxk/foot.svg"
  9167. }
  9168. },
  9169. },
  9170. [
  9171. {
  9172. name: "Micro",
  9173. height: math.unit(2, "cm")
  9174. },
  9175. {
  9176. name: "Normal",
  9177. height: math.unit(2.4, "meters"),
  9178. default: true
  9179. },
  9180. {
  9181. name: "Smaller Macro",
  9182. height: math.unit(120, "meters")
  9183. },
  9184. {
  9185. name: "Bigger Macro",
  9186. height: math.unit(1.2, "km")
  9187. },
  9188. {
  9189. name: "Megamacro",
  9190. height: math.unit(15, "kilometers")
  9191. },
  9192. {
  9193. name: "Gigamacro",
  9194. height: math.unit(2000, "km")
  9195. },
  9196. {
  9197. name: "Teramacro",
  9198. height: math.unit(500000, "km")
  9199. },
  9200. ]
  9201. ))
  9202. characterMakers.push(() => makeCharacter(
  9203. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9204. {
  9205. side: {
  9206. height: math.unit(6, "feet"),
  9207. name: "Side",
  9208. image: {
  9209. source: "./media/characters/ailbhe/side.svg",
  9210. extra: 757 / 464,
  9211. bottom: 0.041
  9212. }
  9213. },
  9214. },
  9215. [
  9216. {
  9217. name: "Normal",
  9218. height: math.unit(1.07, "meters"),
  9219. default: true
  9220. },
  9221. ]
  9222. ))
  9223. characterMakers.push(() => makeCharacter(
  9224. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9225. {
  9226. front: {
  9227. height: math.unit(6, "feet"),
  9228. weight: math.unit(120, "kg"),
  9229. name: "Front",
  9230. image: {
  9231. source: "./media/characters/zevulfius/front.svg",
  9232. extra: 965 / 903
  9233. }
  9234. },
  9235. side: {
  9236. height: math.unit(6, "feet"),
  9237. weight: math.unit(120, "kg"),
  9238. name: "Side",
  9239. image: {
  9240. source: "./media/characters/zevulfius/side.svg",
  9241. extra: 939 / 900
  9242. }
  9243. },
  9244. back: {
  9245. height: math.unit(6, "feet"),
  9246. weight: math.unit(120, "kg"),
  9247. name: "Back",
  9248. image: {
  9249. source: "./media/characters/zevulfius/back.svg",
  9250. extra: 918 / 854,
  9251. bottom: 0.005
  9252. }
  9253. },
  9254. foot: {
  9255. height: math.unit(6 / 3.72, "feet"),
  9256. name: "Foot",
  9257. image: {
  9258. source: "./media/characters/zevulfius/foot.svg"
  9259. }
  9260. },
  9261. },
  9262. [
  9263. {
  9264. name: "Macro",
  9265. height: math.unit(750, "meters")
  9266. },
  9267. {
  9268. name: "Megamacro",
  9269. height: math.unit(20, "km"),
  9270. default: true
  9271. },
  9272. {
  9273. name: "Gigamacro",
  9274. height: math.unit(2000, "km")
  9275. },
  9276. {
  9277. name: "Teramacro",
  9278. height: math.unit(250000, "km")
  9279. },
  9280. ]
  9281. ))
  9282. characterMakers.push(() => makeCharacter(
  9283. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9284. {
  9285. front: {
  9286. height: math.unit(100, "feet"),
  9287. weight: math.unit(350, "kg"),
  9288. name: "Front",
  9289. image: {
  9290. source: "./media/characters/rikes/front.svg",
  9291. extra: 1565 / 1483,
  9292. bottom: 0.017
  9293. }
  9294. },
  9295. },
  9296. [
  9297. {
  9298. name: "Macro",
  9299. height: math.unit(100, "feet"),
  9300. default: true
  9301. },
  9302. ]
  9303. ))
  9304. characterMakers.push(() => makeCharacter(
  9305. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9306. {
  9307. anthro: {
  9308. height: math.unit(8, "feet"),
  9309. weight: math.unit(120, "kg"),
  9310. name: "Anthro",
  9311. image: {
  9312. source: "./media/characters/adam-silver-mane/anthro.svg",
  9313. extra: 5743 / 5339,
  9314. bottom: 0.07
  9315. }
  9316. },
  9317. taur: {
  9318. height: math.unit(16, "feet"),
  9319. weight: math.unit(1500, "kg"),
  9320. name: "Taur",
  9321. image: {
  9322. source: "./media/characters/adam-silver-mane/taur.svg",
  9323. extra: 1713 / 1571,
  9324. bottom: 0.01
  9325. }
  9326. },
  9327. },
  9328. [
  9329. {
  9330. name: "Normal",
  9331. height: math.unit(8, "feet")
  9332. },
  9333. {
  9334. name: "Minimacro",
  9335. height: math.unit(80, "feet")
  9336. },
  9337. {
  9338. name: "Macro",
  9339. height: math.unit(800, "feet"),
  9340. default: true
  9341. },
  9342. {
  9343. name: "Megamacro",
  9344. height: math.unit(8000, "feet")
  9345. },
  9346. {
  9347. name: "Gigamacro",
  9348. height: math.unit(800, "miles")
  9349. },
  9350. {
  9351. name: "Teramacro",
  9352. height: math.unit(80000, "miles")
  9353. },
  9354. {
  9355. name: "Celestial",
  9356. height: math.unit(8e6, "miles")
  9357. },
  9358. {
  9359. name: "Star Dragon",
  9360. height: math.unit(800000, "parsecs")
  9361. },
  9362. {
  9363. name: "Godly",
  9364. height: math.unit(800, "teraparsecs")
  9365. },
  9366. ]
  9367. ))
  9368. characterMakers.push(() => makeCharacter(
  9369. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9370. {
  9371. front: {
  9372. height: math.unit(6, "feet"),
  9373. weight: math.unit(150, "lb"),
  9374. name: "Front",
  9375. image: {
  9376. source: "./media/characters/ky'owin/front.svg",
  9377. extra: 3888 / 3068,
  9378. bottom: 0.015
  9379. }
  9380. },
  9381. },
  9382. [
  9383. {
  9384. name: "Normal",
  9385. height: math.unit(6 + 8 / 12, "feet")
  9386. },
  9387. {
  9388. name: "Large",
  9389. height: math.unit(68, "feet")
  9390. },
  9391. {
  9392. name: "Macro",
  9393. height: math.unit(132, "feet")
  9394. },
  9395. {
  9396. name: "Macro+",
  9397. height: math.unit(340, "feet")
  9398. },
  9399. {
  9400. name: "Macro++",
  9401. height: math.unit(680, "feet"),
  9402. default: true
  9403. },
  9404. {
  9405. name: "Megamacro",
  9406. height: math.unit(1, "mile")
  9407. },
  9408. {
  9409. name: "Megamacro+",
  9410. height: math.unit(10, "miles")
  9411. },
  9412. ]
  9413. ))
  9414. characterMakers.push(() => makeCharacter(
  9415. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9416. {
  9417. front: {
  9418. height: math.unit(4, "feet"),
  9419. weight: math.unit(50, "lb"),
  9420. name: "Front",
  9421. image: {
  9422. source: "./media/characters/mal/front.svg",
  9423. extra: 785 / 724,
  9424. bottom: 0.07
  9425. }
  9426. },
  9427. },
  9428. [
  9429. {
  9430. name: "Micro",
  9431. height: math.unit(4, "inches")
  9432. },
  9433. {
  9434. name: "Normal",
  9435. height: math.unit(4, "feet"),
  9436. default: true
  9437. },
  9438. {
  9439. name: "Macro",
  9440. height: math.unit(200, "feet")
  9441. },
  9442. ]
  9443. ))
  9444. characterMakers.push(() => makeCharacter(
  9445. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9446. {
  9447. front: {
  9448. height: math.unit(6, "feet"),
  9449. weight: math.unit(150, "lb"),
  9450. name: "Front",
  9451. image: {
  9452. source: "./media/characters/jordan-deware/front.svg",
  9453. extra: 1191 / 1012
  9454. }
  9455. },
  9456. },
  9457. [
  9458. {
  9459. name: "Nano",
  9460. height: math.unit(0.01, "mm")
  9461. },
  9462. {
  9463. name: "Minimicro",
  9464. height: math.unit(1, "mm")
  9465. },
  9466. {
  9467. name: "Micro",
  9468. height: math.unit(0.5, "inches")
  9469. },
  9470. {
  9471. name: "Normal",
  9472. height: math.unit(4, "feet"),
  9473. default: true
  9474. },
  9475. {
  9476. name: "Minimacro",
  9477. height: math.unit(40, "meters")
  9478. },
  9479. {
  9480. name: "Small Macro",
  9481. height: math.unit(400, "meters")
  9482. },
  9483. {
  9484. name: "Macro",
  9485. height: math.unit(4, "miles")
  9486. },
  9487. {
  9488. name: "Megamacro",
  9489. height: math.unit(40, "miles")
  9490. },
  9491. {
  9492. name: "Megamacro+",
  9493. height: math.unit(400, "miles")
  9494. },
  9495. {
  9496. name: "Gigamacro",
  9497. height: math.unit(400000, "miles")
  9498. },
  9499. ]
  9500. ))
  9501. characterMakers.push(() => makeCharacter(
  9502. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9503. {
  9504. side: {
  9505. height: math.unit(6, "feet"),
  9506. weight: math.unit(150, "lb"),
  9507. name: "Side",
  9508. image: {
  9509. source: "./media/characters/kimiko/side.svg",
  9510. extra: 600 / 358
  9511. }
  9512. },
  9513. },
  9514. [
  9515. {
  9516. name: "Normal",
  9517. height: math.unit(15, "feet"),
  9518. default: true
  9519. },
  9520. {
  9521. name: "Macro",
  9522. height: math.unit(220, "feet")
  9523. },
  9524. {
  9525. name: "Macro+",
  9526. height: math.unit(1450, "feet")
  9527. },
  9528. {
  9529. name: "Megamacro",
  9530. height: math.unit(11500, "feet")
  9531. },
  9532. {
  9533. name: "Gigamacro",
  9534. height: math.unit(9500, "miles")
  9535. },
  9536. {
  9537. name: "Teramacro",
  9538. height: math.unit(2208005005, "miles")
  9539. },
  9540. {
  9541. name: "Examacro",
  9542. height: math.unit(2750, "parsecs")
  9543. },
  9544. {
  9545. name: "Zettamacro",
  9546. height: math.unit(101500, "parsecs")
  9547. },
  9548. ]
  9549. ))
  9550. characterMakers.push(() => makeCharacter(
  9551. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9552. {
  9553. front: {
  9554. height: math.unit(6, "feet"),
  9555. weight: math.unit(70, "kg"),
  9556. name: "Front",
  9557. image: {
  9558. source: "./media/characters/andrew-sleepy/front.svg"
  9559. }
  9560. },
  9561. side: {
  9562. height: math.unit(6, "feet"),
  9563. weight: math.unit(70, "kg"),
  9564. name: "Side",
  9565. image: {
  9566. source: "./media/characters/andrew-sleepy/side.svg"
  9567. }
  9568. },
  9569. },
  9570. [
  9571. {
  9572. name: "Micro",
  9573. height: math.unit(1, "mm"),
  9574. default: true
  9575. },
  9576. ]
  9577. ))
  9578. characterMakers.push(() => makeCharacter(
  9579. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9580. {
  9581. front: {
  9582. height: math.unit(6, "feet"),
  9583. weight: math.unit(150, "lb"),
  9584. name: "Front",
  9585. image: {
  9586. source: "./media/characters/judio/front.svg",
  9587. extra: 1258 / 1110
  9588. }
  9589. },
  9590. },
  9591. [
  9592. {
  9593. name: "Normal",
  9594. height: math.unit(5 + 6 / 12, "feet")
  9595. },
  9596. {
  9597. name: "Macro",
  9598. height: math.unit(1000, "feet"),
  9599. default: true
  9600. },
  9601. {
  9602. name: "Megamacro",
  9603. height: math.unit(10, "miles")
  9604. },
  9605. ]
  9606. ))
  9607. characterMakers.push(() => makeCharacter(
  9608. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9609. {
  9610. front: {
  9611. height: math.unit(6, "feet"),
  9612. weight: math.unit(68, "kg"),
  9613. name: "Front",
  9614. image: {
  9615. source: "./media/characters/nomaxice/front.svg",
  9616. extra: 1498 / 1073,
  9617. bottom: 0.075
  9618. }
  9619. },
  9620. foot: {
  9621. height: math.unit(1.1, "feet"),
  9622. name: "Foot",
  9623. image: {
  9624. source: "./media/characters/nomaxice/foot.svg"
  9625. }
  9626. },
  9627. },
  9628. [
  9629. {
  9630. name: "Micro",
  9631. height: math.unit(8, "cm")
  9632. },
  9633. {
  9634. name: "Norm",
  9635. height: math.unit(1.82, "m")
  9636. },
  9637. {
  9638. name: "Norm+",
  9639. height: math.unit(8.8, "feet")
  9640. },
  9641. {
  9642. name: "Big",
  9643. height: math.unit(8, "meters"),
  9644. default: true
  9645. },
  9646. {
  9647. name: "Macro",
  9648. height: math.unit(18, "meters")
  9649. },
  9650. {
  9651. name: "Macro+",
  9652. height: math.unit(88, "meters")
  9653. },
  9654. ]
  9655. ))
  9656. characterMakers.push(() => makeCharacter(
  9657. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9658. {
  9659. front: {
  9660. height: math.unit(12, "feet"),
  9661. weight: math.unit(1.5, "tons"),
  9662. name: "Front",
  9663. image: {
  9664. source: "./media/characters/dydros/front.svg",
  9665. extra: 863 / 800,
  9666. bottom: 0.015
  9667. }
  9668. },
  9669. back: {
  9670. height: math.unit(12, "feet"),
  9671. weight: math.unit(1.5, "tons"),
  9672. name: "Back",
  9673. image: {
  9674. source: "./media/characters/dydros/back.svg",
  9675. extra: 900 / 843,
  9676. bottom: 0.005
  9677. }
  9678. },
  9679. },
  9680. [
  9681. {
  9682. name: "Normal",
  9683. height: math.unit(12, "feet"),
  9684. default: true
  9685. },
  9686. ]
  9687. ))
  9688. characterMakers.push(() => makeCharacter(
  9689. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9690. {
  9691. front: {
  9692. height: math.unit(6, "feet"),
  9693. weight: math.unit(100, "kg"),
  9694. name: "Front",
  9695. image: {
  9696. source: "./media/characters/riggi/front.svg",
  9697. extra: 5787 / 5303
  9698. }
  9699. },
  9700. hyper: {
  9701. height: math.unit(6 * 5 / 3, "feet"),
  9702. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9703. name: "Hyper",
  9704. image: {
  9705. source: "./media/characters/riggi/hyper.svg",
  9706. extra: 3595 / 3485
  9707. }
  9708. },
  9709. },
  9710. [
  9711. {
  9712. name: "Small Macro",
  9713. height: math.unit(50, "feet")
  9714. },
  9715. {
  9716. name: "Default",
  9717. height: math.unit(200, "feet"),
  9718. default: true
  9719. },
  9720. {
  9721. name: "Loom",
  9722. height: math.unit(10000, "feet")
  9723. },
  9724. {
  9725. name: "Cruising Altitude",
  9726. height: math.unit(30000, "feet")
  9727. },
  9728. {
  9729. name: "Megamacro",
  9730. height: math.unit(100, "miles")
  9731. },
  9732. {
  9733. name: "Continent Sized",
  9734. height: math.unit(2800, "miles")
  9735. },
  9736. {
  9737. name: "Earth Sized",
  9738. height: math.unit(8000, "miles")
  9739. },
  9740. ]
  9741. ))
  9742. characterMakers.push(() => makeCharacter(
  9743. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9744. {
  9745. front: {
  9746. height: math.unit(6, "feet"),
  9747. weight: math.unit(250, "lb"),
  9748. name: "Front",
  9749. image: {
  9750. source: "./media/characters/alexi/front.svg",
  9751. extra: 3483 / 3291,
  9752. bottom: 0.04
  9753. }
  9754. },
  9755. back: {
  9756. height: math.unit(6, "feet"),
  9757. weight: math.unit(250, "lb"),
  9758. name: "Back",
  9759. image: {
  9760. source: "./media/characters/alexi/back.svg",
  9761. extra: 3533 / 3356,
  9762. bottom: 0.021
  9763. }
  9764. },
  9765. frontTransforming: {
  9766. height: math.unit(8.58, "feet"),
  9767. weight: math.unit(1300, "lb"),
  9768. name: "Transforming",
  9769. image: {
  9770. source: "./media/characters/alexi/front-transforming.svg",
  9771. extra: 437 / 409,
  9772. bottom: 19/458.66
  9773. }
  9774. },
  9775. frontTransformed: {
  9776. height: math.unit(12.5, "feet"),
  9777. weight: math.unit(4000, "lb"),
  9778. name: "Transformed",
  9779. image: {
  9780. source: "./media/characters/alexi/front-transformed.svg",
  9781. extra: 639 / 614,
  9782. bottom: 30.55/671
  9783. }
  9784. },
  9785. },
  9786. [
  9787. {
  9788. name: "Normal",
  9789. height: math.unit(3, "meters"),
  9790. default: true
  9791. },
  9792. {
  9793. name: "Minimacro",
  9794. height: math.unit(30, "meters")
  9795. },
  9796. {
  9797. name: "Macro",
  9798. height: math.unit(500, "meters")
  9799. },
  9800. {
  9801. name: "Megamacro",
  9802. height: math.unit(9000, "km")
  9803. },
  9804. {
  9805. name: "Teramacro",
  9806. height: math.unit(384000, "km")
  9807. },
  9808. ]
  9809. ))
  9810. characterMakers.push(() => makeCharacter(
  9811. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9812. {
  9813. front: {
  9814. height: math.unit(6, "feet"),
  9815. weight: math.unit(150, "lb"),
  9816. name: "Front",
  9817. image: {
  9818. source: "./media/characters/kayroo/front.svg",
  9819. extra: 1153 / 1038,
  9820. bottom: 0.06
  9821. }
  9822. },
  9823. foot: {
  9824. height: math.unit(6, "feet"),
  9825. weight: math.unit(150, "lb"),
  9826. name: "Foot",
  9827. image: {
  9828. source: "./media/characters/kayroo/foot.svg"
  9829. }
  9830. },
  9831. },
  9832. [
  9833. {
  9834. name: "Normal",
  9835. height: math.unit(8, "feet"),
  9836. default: true
  9837. },
  9838. {
  9839. name: "Minimacro",
  9840. height: math.unit(250, "feet")
  9841. },
  9842. {
  9843. name: "Macro",
  9844. height: math.unit(2800, "feet")
  9845. },
  9846. {
  9847. name: "Megamacro",
  9848. height: math.unit(5200, "feet")
  9849. },
  9850. {
  9851. name: "Gigamacro",
  9852. height: math.unit(27000, "feet")
  9853. },
  9854. {
  9855. name: "Omega",
  9856. height: math.unit(45000, "feet")
  9857. },
  9858. ]
  9859. ))
  9860. characterMakers.push(() => makeCharacter(
  9861. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  9862. {
  9863. front: {
  9864. height: math.unit(18, "feet"),
  9865. weight: math.unit(5800, "lb"),
  9866. name: "Front",
  9867. image: {
  9868. source: "./media/characters/rhys/front.svg",
  9869. extra: 3386 / 3090,
  9870. bottom: 0.07
  9871. }
  9872. },
  9873. },
  9874. [
  9875. {
  9876. name: "Normal",
  9877. height: math.unit(18, "feet"),
  9878. default: true
  9879. },
  9880. {
  9881. name: "Working Size",
  9882. height: math.unit(200, "feet")
  9883. },
  9884. {
  9885. name: "Demolition Size",
  9886. height: math.unit(2000, "feet")
  9887. },
  9888. {
  9889. name: "Maximum Licensed Size",
  9890. height: math.unit(5, "miles")
  9891. },
  9892. {
  9893. name: "Maximum Observed Size",
  9894. height: math.unit(10, "yottameters")
  9895. },
  9896. ]
  9897. ))
  9898. characterMakers.push(() => makeCharacter(
  9899. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  9900. {
  9901. front: {
  9902. height: math.unit(6, "feet"),
  9903. weight: math.unit(250, "lb"),
  9904. name: "Front",
  9905. image: {
  9906. source: "./media/characters/toto/front.svg",
  9907. extra: 527 / 479,
  9908. bottom: 0.05
  9909. }
  9910. },
  9911. },
  9912. [
  9913. {
  9914. name: "Micro",
  9915. height: math.unit(3, "feet")
  9916. },
  9917. {
  9918. name: "Normal",
  9919. height: math.unit(10, "feet")
  9920. },
  9921. {
  9922. name: "Macro",
  9923. height: math.unit(150, "feet"),
  9924. default: true
  9925. },
  9926. {
  9927. name: "Megamacro",
  9928. height: math.unit(1200, "feet")
  9929. },
  9930. ]
  9931. ))
  9932. characterMakers.push(() => makeCharacter(
  9933. { name: "King", species: ["lion"], tags: ["anthro"] },
  9934. {
  9935. back: {
  9936. height: math.unit(6, "feet"),
  9937. weight: math.unit(150, "lb"),
  9938. name: "Back",
  9939. image: {
  9940. source: "./media/characters/king/back.svg"
  9941. }
  9942. },
  9943. },
  9944. [
  9945. {
  9946. name: "Micro",
  9947. height: math.unit(2, "inches")
  9948. },
  9949. {
  9950. name: "Normal",
  9951. height: math.unit(8, "feet")
  9952. },
  9953. {
  9954. name: "Macro",
  9955. height: math.unit(200, "feet"),
  9956. default: true
  9957. },
  9958. {
  9959. name: "Megamacro",
  9960. height: math.unit(50, "miles")
  9961. },
  9962. ]
  9963. ))
  9964. characterMakers.push(() => makeCharacter(
  9965. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  9966. {
  9967. anthro: {
  9968. height: math.unit(6 + 5 / 12, "feet"),
  9969. weight: math.unit(280, "lb"),
  9970. name: "Anthro",
  9971. image: {
  9972. source: "./media/characters/cordite/anthro.svg",
  9973. extra: 1986 / 1905,
  9974. bottom: 0.025
  9975. }
  9976. },
  9977. feral: {
  9978. height: math.unit(2, "feet"),
  9979. weight: math.unit(90, "lb"),
  9980. name: "Feral",
  9981. image: {
  9982. source: "./media/characters/cordite/feral.svg",
  9983. extra: 1260 / 755,
  9984. bottom: 0.05
  9985. }
  9986. },
  9987. },
  9988. [
  9989. {
  9990. name: "Normal",
  9991. height: math.unit(6 + 5 / 12, "feet"),
  9992. default: true
  9993. },
  9994. ]
  9995. ))
  9996. characterMakers.push(() => makeCharacter(
  9997. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  9998. {
  9999. front: {
  10000. height: math.unit(6, "feet"),
  10001. weight: math.unit(150, "lb"),
  10002. name: "Front",
  10003. image: {
  10004. source: "./media/characters/pianostrong/front.svg",
  10005. extra: 6577 / 6254,
  10006. bottom: 0.02
  10007. }
  10008. },
  10009. side: {
  10010. height: math.unit(6, "feet"),
  10011. weight: math.unit(150, "lb"),
  10012. name: "Side",
  10013. image: {
  10014. source: "./media/characters/pianostrong/side.svg",
  10015. extra: 6106 / 5730
  10016. }
  10017. },
  10018. back: {
  10019. height: math.unit(6, "feet"),
  10020. weight: math.unit(150, "lb"),
  10021. name: "Back",
  10022. image: {
  10023. source: "./media/characters/pianostrong/back.svg",
  10024. extra: 6085 / 5733,
  10025. bottom: 0.01
  10026. }
  10027. },
  10028. },
  10029. [
  10030. {
  10031. name: "Macro",
  10032. height: math.unit(100, "feet")
  10033. },
  10034. {
  10035. name: "Macro+",
  10036. height: math.unit(300, "feet"),
  10037. default: true
  10038. },
  10039. {
  10040. name: "Macro++",
  10041. height: math.unit(1000, "feet")
  10042. },
  10043. ]
  10044. ))
  10045. characterMakers.push(() => makeCharacter(
  10046. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10047. {
  10048. front: {
  10049. height: math.unit(6, "feet"),
  10050. weight: math.unit(150, "lb"),
  10051. name: "Front",
  10052. image: {
  10053. source: "./media/characters/kona/front.svg",
  10054. extra: 2960 / 2629,
  10055. bottom: 0.005
  10056. }
  10057. },
  10058. },
  10059. [
  10060. {
  10061. name: "Normal",
  10062. height: math.unit(11 + 8 / 12, "feet")
  10063. },
  10064. {
  10065. name: "Macro",
  10066. height: math.unit(850, "feet"),
  10067. default: true
  10068. },
  10069. {
  10070. name: "Macro+",
  10071. height: math.unit(1.5, "km"),
  10072. default: true
  10073. },
  10074. {
  10075. name: "Megamacro",
  10076. height: math.unit(80, "miles")
  10077. },
  10078. {
  10079. name: "Gigamacro",
  10080. height: math.unit(3500, "miles")
  10081. },
  10082. ]
  10083. ))
  10084. characterMakers.push(() => makeCharacter(
  10085. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10086. {
  10087. side: {
  10088. height: math.unit(1.9, "meters"),
  10089. weight: math.unit(326, "kg"),
  10090. name: "Side",
  10091. image: {
  10092. source: "./media/characters/levi/side.svg",
  10093. extra: 1704 / 1334,
  10094. bottom: 0.02
  10095. }
  10096. },
  10097. },
  10098. [
  10099. {
  10100. name: "Normal",
  10101. height: math.unit(1.9, "meters"),
  10102. default: true
  10103. },
  10104. {
  10105. name: "Macro",
  10106. height: math.unit(20, "meters")
  10107. },
  10108. {
  10109. name: "Macro+",
  10110. height: math.unit(200, "meters")
  10111. },
  10112. {
  10113. name: "Megamacro",
  10114. height: math.unit(2, "km")
  10115. },
  10116. {
  10117. name: "Megamacro+",
  10118. height: math.unit(20, "km")
  10119. },
  10120. {
  10121. name: "Gigamacro",
  10122. height: math.unit(2500, "km")
  10123. },
  10124. {
  10125. name: "Gigamacro+",
  10126. height: math.unit(120000, "km")
  10127. },
  10128. {
  10129. name: "Teramacro",
  10130. height: math.unit(7.77e6, "km")
  10131. },
  10132. ]
  10133. ))
  10134. characterMakers.push(() => makeCharacter(
  10135. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10136. {
  10137. front: {
  10138. height: math.unit(6 + 4 / 12, "feet"),
  10139. weight: math.unit(188, "lb"),
  10140. name: "Front",
  10141. image: {
  10142. source: "./media/characters/bmc/front.svg",
  10143. extra: 1067 / 1022,
  10144. bottom: 0.047
  10145. }
  10146. },
  10147. },
  10148. [
  10149. {
  10150. name: "Human-sized",
  10151. height: math.unit(6 + 4 / 12, "feet")
  10152. },
  10153. {
  10154. name: "Small",
  10155. height: math.unit(250, "feet")
  10156. },
  10157. {
  10158. name: "Normal",
  10159. height: math.unit(1250, "feet"),
  10160. default: true
  10161. },
  10162. {
  10163. name: "Good Day",
  10164. height: math.unit(88, "miles")
  10165. },
  10166. {
  10167. name: "Largest Measured Size",
  10168. height: math.unit(11.2e6, "lightyears")
  10169. },
  10170. ]
  10171. ))
  10172. characterMakers.push(() => makeCharacter(
  10173. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10174. {
  10175. front: {
  10176. height: math.unit(20, "feet"),
  10177. weight: math.unit(2016, "kg"),
  10178. name: "Front",
  10179. image: {
  10180. source: "./media/characters/sven-the-kaiju/front.svg",
  10181. extra: 1479 / 1449,
  10182. bottom: 0.05
  10183. }
  10184. },
  10185. },
  10186. [
  10187. {
  10188. name: "Fairy",
  10189. height: math.unit(6, "inches")
  10190. },
  10191. {
  10192. name: "Normal",
  10193. height: math.unit(20, "feet"),
  10194. default: true
  10195. },
  10196. {
  10197. name: "Rampage",
  10198. height: math.unit(200, "feet")
  10199. },
  10200. {
  10201. name: "Archfey Forest Guardian",
  10202. height: math.unit(1, "mile")
  10203. },
  10204. ]
  10205. ))
  10206. characterMakers.push(() => makeCharacter(
  10207. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10208. {
  10209. front: {
  10210. height: math.unit(4, "meters"),
  10211. weight: math.unit(2, "tons"),
  10212. name: "Front",
  10213. image: {
  10214. source: "./media/characters/marik/front.svg",
  10215. extra: 1057 / 1003,
  10216. bottom: 0.08
  10217. }
  10218. },
  10219. },
  10220. [
  10221. {
  10222. name: "Normal",
  10223. height: math.unit(4, "meters"),
  10224. default: true
  10225. },
  10226. {
  10227. name: "Macro",
  10228. height: math.unit(20, "meters")
  10229. },
  10230. {
  10231. name: "Megamacro",
  10232. height: math.unit(50, "km")
  10233. },
  10234. {
  10235. name: "Gigamacro",
  10236. height: math.unit(100, "km")
  10237. },
  10238. {
  10239. name: "Alpha Macro",
  10240. height: math.unit(7.88e7, "yottameters")
  10241. },
  10242. ]
  10243. ))
  10244. characterMakers.push(() => makeCharacter(
  10245. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10246. {
  10247. front: {
  10248. height: math.unit(6, "feet"),
  10249. weight: math.unit(110, "lb"),
  10250. name: "Front",
  10251. image: {
  10252. source: "./media/characters/mel/front.svg",
  10253. extra: 736 / 617,
  10254. bottom: 0.017
  10255. }
  10256. },
  10257. },
  10258. [
  10259. {
  10260. name: "Pico",
  10261. height: math.unit(3, "pm")
  10262. },
  10263. {
  10264. name: "Nano",
  10265. height: math.unit(3, "nm")
  10266. },
  10267. {
  10268. name: "Micro",
  10269. height: math.unit(0.3, "mm"),
  10270. default: true
  10271. },
  10272. {
  10273. name: "Micro+",
  10274. height: math.unit(3, "mm")
  10275. },
  10276. {
  10277. name: "Normal",
  10278. height: math.unit(5 + 10.5 / 12, "feet")
  10279. },
  10280. ]
  10281. ))
  10282. characterMakers.push(() => makeCharacter(
  10283. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10284. {
  10285. kaiju: {
  10286. height: math.unit(1.75, "meters"),
  10287. weight: math.unit(55, "kg"),
  10288. name: "Kaiju",
  10289. image: {
  10290. source: "./media/characters/lykonous/kaiju.svg",
  10291. extra: 1055 / 946,
  10292. bottom: 0.135
  10293. }
  10294. },
  10295. },
  10296. [
  10297. {
  10298. name: "Normal",
  10299. height: math.unit(2.5, "meters"),
  10300. default: true
  10301. },
  10302. {
  10303. name: "Kaiju Dragon",
  10304. height: math.unit(60, "meters")
  10305. },
  10306. {
  10307. name: "Mega Kaiju",
  10308. height: math.unit(120, "km")
  10309. },
  10310. {
  10311. name: "Giga Kaiju",
  10312. height: math.unit(200, "megameters")
  10313. },
  10314. {
  10315. name: "Terra Kaiju",
  10316. height: math.unit(400, "gigameters")
  10317. },
  10318. {
  10319. name: "Kaiju Dragon God",
  10320. height: math.unit(13000, "exaparsecs")
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(6, "feet"),
  10329. weight: math.unit(150, "lb"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/blü/front.svg",
  10333. extra: 1883 / 1564,
  10334. bottom: 0.031
  10335. }
  10336. },
  10337. },
  10338. [
  10339. {
  10340. name: "Normal",
  10341. height: math.unit(13, "feet"),
  10342. default: true
  10343. },
  10344. {
  10345. name: "Big Boi",
  10346. height: math.unit(150, "meters")
  10347. },
  10348. {
  10349. name: "Mini Stomper",
  10350. height: math.unit(300, "meters")
  10351. },
  10352. {
  10353. name: "Macro",
  10354. height: math.unit(1000, "meters")
  10355. },
  10356. {
  10357. name: "Megamacro",
  10358. height: math.unit(11000, "meters")
  10359. },
  10360. {
  10361. name: "Gigamacro",
  10362. height: math.unit(11000, "km")
  10363. },
  10364. {
  10365. name: "Teramacro",
  10366. height: math.unit(420000, "km")
  10367. },
  10368. {
  10369. name: "Examacro",
  10370. height: math.unit(120, "parsecs")
  10371. },
  10372. {
  10373. name: "God Tho",
  10374. height: math.unit(98000000000, "parsecs")
  10375. },
  10376. ]
  10377. ))
  10378. characterMakers.push(() => makeCharacter(
  10379. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10380. {
  10381. taurFront: {
  10382. height: math.unit(6, "feet"),
  10383. weight: math.unit(200, "lb"),
  10384. name: "Taur (Front)",
  10385. image: {
  10386. source: "./media/characters/scales/taur-front.svg",
  10387. extra: 1,
  10388. bottom: 0.05
  10389. }
  10390. },
  10391. taurBack: {
  10392. height: math.unit(6, "feet"),
  10393. weight: math.unit(200, "lb"),
  10394. name: "Taur (Back)",
  10395. image: {
  10396. source: "./media/characters/scales/taur-back.svg",
  10397. extra: 1,
  10398. bottom: 0.08
  10399. }
  10400. },
  10401. anthro: {
  10402. height: math.unit(6 * 7 / 12, "feet"),
  10403. weight: math.unit(100, "lb"),
  10404. name: "Anthro",
  10405. image: {
  10406. source: "./media/characters/scales/anthro.svg",
  10407. extra: 1,
  10408. bottom: 0.06
  10409. }
  10410. },
  10411. },
  10412. [
  10413. {
  10414. name: "Normal",
  10415. height: math.unit(12, "feet"),
  10416. default: true
  10417. },
  10418. ]
  10419. ))
  10420. characterMakers.push(() => makeCharacter(
  10421. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10422. {
  10423. front: {
  10424. height: math.unit(6, "feet"),
  10425. weight: math.unit(150, "lb"),
  10426. name: "Front",
  10427. image: {
  10428. source: "./media/characters/koragos/front.svg",
  10429. extra: 841 / 794,
  10430. bottom: 0.035
  10431. }
  10432. },
  10433. back: {
  10434. height: math.unit(6, "feet"),
  10435. weight: math.unit(150, "lb"),
  10436. name: "Back",
  10437. image: {
  10438. source: "./media/characters/koragos/back.svg",
  10439. extra: 841 / 810,
  10440. bottom: 0.022
  10441. }
  10442. },
  10443. },
  10444. [
  10445. {
  10446. name: "Normal",
  10447. height: math.unit(6 + 11 / 12, "feet"),
  10448. default: true
  10449. },
  10450. {
  10451. name: "Macro",
  10452. height: math.unit(490, "feet")
  10453. },
  10454. {
  10455. name: "Megamacro",
  10456. height: math.unit(10, "miles")
  10457. },
  10458. {
  10459. name: "Gigamacro",
  10460. height: math.unit(50, "miles")
  10461. },
  10462. ]
  10463. ))
  10464. characterMakers.push(() => makeCharacter(
  10465. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10466. {
  10467. front: {
  10468. height: math.unit(6, "feet"),
  10469. weight: math.unit(250, "lb"),
  10470. name: "Front",
  10471. image: {
  10472. source: "./media/characters/xylrem/front.svg",
  10473. extra: 3323 / 3050,
  10474. bottom: 0.065
  10475. }
  10476. },
  10477. },
  10478. [
  10479. {
  10480. name: "Micro",
  10481. height: math.unit(4, "feet")
  10482. },
  10483. {
  10484. name: "Normal",
  10485. height: math.unit(16, "feet"),
  10486. default: true
  10487. },
  10488. {
  10489. name: "Macro",
  10490. height: math.unit(2720, "feet")
  10491. },
  10492. {
  10493. name: "Megamacro",
  10494. height: math.unit(25000, "miles")
  10495. },
  10496. ]
  10497. ))
  10498. characterMakers.push(() => makeCharacter(
  10499. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10500. {
  10501. front: {
  10502. height: math.unit(8, "feet"),
  10503. weight: math.unit(250, "kg"),
  10504. name: "Front",
  10505. image: {
  10506. source: "./media/characters/ikideru/front.svg",
  10507. extra: 930 / 870,
  10508. bottom: 0.087
  10509. }
  10510. },
  10511. back: {
  10512. height: math.unit(8, "feet"),
  10513. weight: math.unit(250, "kg"),
  10514. name: "Back",
  10515. image: {
  10516. source: "./media/characters/ikideru/back.svg",
  10517. extra: 919 / 852,
  10518. bottom: 0.055
  10519. }
  10520. },
  10521. },
  10522. [
  10523. {
  10524. name: "Rare",
  10525. height: math.unit(8, "feet"),
  10526. default: true
  10527. },
  10528. {
  10529. name: "Playful Loom",
  10530. height: math.unit(80, "feet")
  10531. },
  10532. {
  10533. name: "City Leaner",
  10534. height: math.unit(230, "feet")
  10535. },
  10536. {
  10537. name: "Megamacro",
  10538. height: math.unit(2500, "feet")
  10539. },
  10540. {
  10541. name: "Gigamacro",
  10542. height: math.unit(26400, "feet")
  10543. },
  10544. {
  10545. name: "Tectonic Shifter",
  10546. height: math.unit(1.7, "megameters")
  10547. },
  10548. {
  10549. name: "Planet Carer",
  10550. height: math.unit(21, "megameters")
  10551. },
  10552. {
  10553. name: "God",
  10554. height: math.unit(11157.22, "parsecs")
  10555. },
  10556. ]
  10557. ))
  10558. characterMakers.push(() => makeCharacter(
  10559. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10560. {
  10561. front: {
  10562. height: math.unit(6, "feet"),
  10563. weight: math.unit(120, "lb"),
  10564. name: "Front",
  10565. image: {
  10566. source: "./media/characters/neo/front.svg"
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Micro",
  10573. height: math.unit(2, "inches"),
  10574. default: true
  10575. },
  10576. {
  10577. name: "Human Size",
  10578. height: math.unit(5 + 8 / 12, "feet")
  10579. },
  10580. ]
  10581. ))
  10582. characterMakers.push(() => makeCharacter(
  10583. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10584. {
  10585. front: {
  10586. height: math.unit(13 + 10 / 12, "feet"),
  10587. weight: math.unit(5320, "lb"),
  10588. name: "Front",
  10589. image: {
  10590. source: "./media/characters/chauncey-chantz/front.svg",
  10591. extra: 1587 / 1435,
  10592. bottom: 0.02
  10593. }
  10594. },
  10595. },
  10596. [
  10597. {
  10598. name: "Normal",
  10599. height: math.unit(13 + 10 / 12, "feet"),
  10600. default: true
  10601. },
  10602. {
  10603. name: "Macro",
  10604. height: math.unit(45, "feet")
  10605. },
  10606. {
  10607. name: "Megamacro",
  10608. height: math.unit(250, "miles")
  10609. },
  10610. {
  10611. name: "Planetary",
  10612. height: math.unit(10000, "miles")
  10613. },
  10614. {
  10615. name: "Galactic",
  10616. height: math.unit(40000, "parsecs")
  10617. },
  10618. {
  10619. name: "Universal",
  10620. height: math.unit(1, "yottameter")
  10621. },
  10622. ]
  10623. ))
  10624. characterMakers.push(() => makeCharacter(
  10625. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10626. {
  10627. front: {
  10628. height: math.unit(6, "feet"),
  10629. weight: math.unit(150, "lb"),
  10630. name: "Front",
  10631. image: {
  10632. source: "./media/characters/epifox/front.svg",
  10633. extra: 1,
  10634. bottom: 0.075
  10635. }
  10636. },
  10637. },
  10638. [
  10639. {
  10640. name: "Micro",
  10641. height: math.unit(6, "inches")
  10642. },
  10643. {
  10644. name: "Normal",
  10645. height: math.unit(12, "feet"),
  10646. default: true
  10647. },
  10648. {
  10649. name: "Macro",
  10650. height: math.unit(3810, "feet")
  10651. },
  10652. {
  10653. name: "Megamacro",
  10654. height: math.unit(500, "miles")
  10655. },
  10656. ]
  10657. ))
  10658. characterMakers.push(() => makeCharacter(
  10659. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10660. {
  10661. front: {
  10662. height: math.unit(1.8796, "m"),
  10663. weight: math.unit(230, "lb"),
  10664. name: "Front",
  10665. image: {
  10666. source: "./media/characters/colin-t/front.svg",
  10667. extra: 1272 / 1193,
  10668. bottom: 0.07
  10669. }
  10670. },
  10671. },
  10672. [
  10673. {
  10674. name: "Micro",
  10675. height: math.unit(0.571, "meters")
  10676. },
  10677. {
  10678. name: "Normal",
  10679. height: math.unit(1.8796, "meters"),
  10680. default: true
  10681. },
  10682. {
  10683. name: "Tall",
  10684. height: math.unit(4, "meters")
  10685. },
  10686. {
  10687. name: "Macro",
  10688. height: math.unit(67.241, "meters")
  10689. },
  10690. {
  10691. name: "Megamacro",
  10692. height: math.unit(371.856, "meters")
  10693. },
  10694. {
  10695. name: "Planetary",
  10696. height: math.unit(12631.5689, "km")
  10697. },
  10698. ]
  10699. ))
  10700. characterMakers.push(() => makeCharacter(
  10701. { name: "Matvei", species: ["shark"], tags: ["anthro"]},
  10702. {
  10703. front: {
  10704. height: math.unit(1.85, "meters"),
  10705. weight: math.unit(80, "kg"),
  10706. name: "Front",
  10707. image: {
  10708. source: "./media/characters/matvei/front.svg",
  10709. extra: 614 / 594,
  10710. bottom: 0.01
  10711. }
  10712. },
  10713. },
  10714. [
  10715. {
  10716. name: "Normal",
  10717. height: math.unit(1.85, "meters"),
  10718. default: true
  10719. },
  10720. ]
  10721. ))
  10722. characterMakers.push(() => makeCharacter(
  10723. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10724. {
  10725. front: {
  10726. height: math.unit(5 + 9 / 12, "feet"),
  10727. weight: math.unit(70, "lb"),
  10728. name: "Front",
  10729. image: {
  10730. source: "./media/characters/quincy/front.svg",
  10731. extra: 3041 / 2751
  10732. }
  10733. },
  10734. back: {
  10735. height: math.unit(5 + 9 / 12, "feet"),
  10736. weight: math.unit(70, "lb"),
  10737. name: "Back",
  10738. image: {
  10739. source: "./media/characters/quincy/back.svg",
  10740. extra: 3041 / 2751
  10741. }
  10742. },
  10743. flying: {
  10744. height: math.unit(5 + 4 / 12, "feet"),
  10745. weight: math.unit(70, "lb"),
  10746. name: "Flying",
  10747. image: {
  10748. source: "./media/characters/quincy/flying.svg",
  10749. extra: 1044 / 930
  10750. }
  10751. },
  10752. },
  10753. [
  10754. {
  10755. name: "Micro",
  10756. height: math.unit(3, "cm")
  10757. },
  10758. {
  10759. name: "Normal",
  10760. height: math.unit(5 + 9 / 12, "feet")
  10761. },
  10762. {
  10763. name: "Macro",
  10764. height: math.unit(200, "meters"),
  10765. default: true
  10766. },
  10767. {
  10768. name: "Megamacro",
  10769. height: math.unit(1000, "meters")
  10770. },
  10771. ]
  10772. ))
  10773. characterMakers.push(() => makeCharacter(
  10774. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10775. {
  10776. front: {
  10777. height: math.unit(4 + 7 / 12, "feet"),
  10778. weight: math.unit(150, "lb"),
  10779. name: "Front",
  10780. image: {
  10781. source: "./media/characters/vanrel/front.svg",
  10782. extra: 1,
  10783. bottom: 0.02
  10784. }
  10785. },
  10786. elemental: {
  10787. height: math.unit(3, "feet"),
  10788. weight: math.unit(150, "lb"),
  10789. name: "Elemental",
  10790. image: {
  10791. source: "./media/characters/vanrel/elemental.svg",
  10792. extra: 192.3/162.8,
  10793. bottom: 1.79/194.17
  10794. }
  10795. },
  10796. side: {
  10797. height: math.unit(4 + 7 / 12, "feet"),
  10798. weight: math.unit(150, "lb"),
  10799. name: "Side",
  10800. image: {
  10801. source: "./media/characters/vanrel/side.svg",
  10802. extra: 1,
  10803. bottom: 0.025
  10804. }
  10805. },
  10806. tome: {
  10807. height: math.unit(1.35, "feet"),
  10808. weight: math.unit(10, "lb"),
  10809. name: "Vanrel's Tome",
  10810. rename: true,
  10811. image: {
  10812. source: "./media/characters/vanrel/tome.svg"
  10813. }
  10814. },
  10815. beans: {
  10816. height: math.unit(0.89, "feet"),
  10817. name: "Beans",
  10818. image: {
  10819. source: "./media/characters/vanrel/beans.svg"
  10820. }
  10821. },
  10822. },
  10823. [
  10824. {
  10825. name: "Normal",
  10826. height: math.unit(4 + 7 / 12, "feet"),
  10827. default: true
  10828. },
  10829. ]
  10830. ))
  10831. characterMakers.push(() => makeCharacter(
  10832. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  10833. {
  10834. front: {
  10835. height: math.unit(7 + 5 / 12, "feet"),
  10836. weight: math.unit(150, "lb"),
  10837. name: "Front",
  10838. image: {
  10839. source: "./media/characters/kuiper-vanrel/front.svg",
  10840. extra: 1118 / 1068,
  10841. bottom: 0.09
  10842. }
  10843. },
  10844. foot: {
  10845. height: math.unit(0.55, "meters"),
  10846. name: "Foot",
  10847. image: {
  10848. source: "./media/characters/kuiper-vanrel/foot.svg",
  10849. }
  10850. },
  10851. battle: {
  10852. height: math.unit(6.824, "feet"),
  10853. weight: math.unit(150, "lb"),
  10854. name: "Battle",
  10855. image: {
  10856. source: "./media/characters/kuiper-vanrel/battle.svg",
  10857. extra: 1466/1327,
  10858. bottom: 29/1492.5
  10859. }
  10860. },
  10861. },
  10862. [
  10863. {
  10864. name: "Normal",
  10865. height: math.unit(7 + 5 / 12, "feet"),
  10866. default: true
  10867. },
  10868. ]
  10869. ))
  10870. characterMakers.push(() => makeCharacter(
  10871. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  10872. {
  10873. front: {
  10874. height: math.unit(8 + 5 / 12, "feet"),
  10875. weight: math.unit(150, "lb"),
  10876. name: "Front",
  10877. image: {
  10878. source: "./media/characters/keset-vanrel/front.svg",
  10879. extra: 1150 / 1084,
  10880. bottom: 0.05
  10881. }
  10882. },
  10883. hand: {
  10884. height: math.unit(0.6, "meters"),
  10885. name: "Hand",
  10886. image: {
  10887. source: "./media/characters/keset-vanrel/hand.svg"
  10888. }
  10889. },
  10890. foot: {
  10891. height: math.unit(0.94978, "meters"),
  10892. name: "Foot",
  10893. image: {
  10894. source: "./media/characters/keset-vanrel/foot.svg"
  10895. }
  10896. },
  10897. battle: {
  10898. height: math.unit(7.408, "feet"),
  10899. weight: math.unit(150, "lb"),
  10900. name: "Battle",
  10901. image: {
  10902. source: "./media/characters/keset-vanrel/battle.svg",
  10903. extra: 1890/1386,
  10904. bottom: 73.28/1970
  10905. }
  10906. },
  10907. },
  10908. [
  10909. {
  10910. name: "Normal",
  10911. height: math.unit(8 + 5 / 12, "feet"),
  10912. default: true
  10913. },
  10914. ]
  10915. ))
  10916. characterMakers.push(() => makeCharacter(
  10917. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  10918. {
  10919. front: {
  10920. height: math.unit(6, "feet"),
  10921. weight: math.unit(150, "lb"),
  10922. name: "Front",
  10923. image: {
  10924. source: "./media/characters/neos/front.svg",
  10925. extra: 1696 / 992,
  10926. bottom: 0.14
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Normal",
  10933. height: math.unit(54, "cm"),
  10934. default: true
  10935. },
  10936. {
  10937. name: "Macro",
  10938. height: math.unit(100, "m")
  10939. },
  10940. {
  10941. name: "Megamacro",
  10942. height: math.unit(10, "km")
  10943. },
  10944. {
  10945. name: "Megamacro+",
  10946. height: math.unit(100, "km")
  10947. },
  10948. {
  10949. name: "Gigamacro",
  10950. height: math.unit(100, "Mm")
  10951. },
  10952. {
  10953. name: "Teramacro",
  10954. height: math.unit(100, "Gm")
  10955. },
  10956. {
  10957. name: "Examacro",
  10958. height: math.unit(100, "Em")
  10959. },
  10960. {
  10961. name: "Godly",
  10962. height: math.unit(10000, "Ym")
  10963. },
  10964. {
  10965. name: "Beyond Godly",
  10966. height: math.unit(10000000, "Ym")
  10967. },
  10968. ]
  10969. ))
  10970. characterMakers.push(() => makeCharacter(
  10971. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  10972. {
  10973. feminine: {
  10974. height: math.unit(5, "feet"),
  10975. weight: math.unit(100, "lb"),
  10976. name: "Feminine",
  10977. image: {
  10978. source: "./media/characters/sammy-mouse/feminine.svg",
  10979. extra: 2526 / 2425,
  10980. bottom: 0.123
  10981. }
  10982. },
  10983. masculine: {
  10984. height: math.unit(5, "feet"),
  10985. weight: math.unit(100, "lb"),
  10986. name: "Masculine",
  10987. image: {
  10988. source: "./media/characters/sammy-mouse/masculine.svg",
  10989. extra: 2526 / 2425,
  10990. bottom: 0.123
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Micro",
  10997. height: math.unit(5, "inches")
  10998. },
  10999. {
  11000. name: "Normal",
  11001. height: math.unit(5, "feet"),
  11002. default: true
  11003. },
  11004. {
  11005. name: "Macro",
  11006. height: math.unit(60, "feet")
  11007. },
  11008. ]
  11009. ))
  11010. characterMakers.push(() => makeCharacter(
  11011. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11012. {
  11013. front: {
  11014. height: math.unit(4, "feet"),
  11015. weight: math.unit(50, "lb"),
  11016. name: "Front",
  11017. image: {
  11018. source: "./media/characters/kole/front.svg",
  11019. extra: 1423 / 1303,
  11020. bottom: 0.025
  11021. }
  11022. },
  11023. back: {
  11024. height: math.unit(4, "feet"),
  11025. weight: math.unit(50, "lb"),
  11026. name: "Back",
  11027. image: {
  11028. source: "./media/characters/kole/back.svg",
  11029. extra: 1426 / 1280,
  11030. bottom: 0.02
  11031. }
  11032. },
  11033. },
  11034. [
  11035. {
  11036. name: "Normal",
  11037. height: math.unit(4, "feet"),
  11038. default: true
  11039. },
  11040. ]
  11041. ))
  11042. characterMakers.push(() => makeCharacter(
  11043. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11044. {
  11045. front: {
  11046. height: math.unit(2 + 6 / 12, "feet"),
  11047. weight: math.unit(20, "lb"),
  11048. name: "Front",
  11049. image: {
  11050. source: "./media/characters/rufran/front.svg",
  11051. extra: 2041 / 1839,
  11052. bottom: 0.055
  11053. }
  11054. },
  11055. back: {
  11056. height: math.unit(2 + 6 / 12, "feet"),
  11057. weight: math.unit(20, "lb"),
  11058. name: "Back",
  11059. image: {
  11060. source: "./media/characters/rufran/back.svg",
  11061. extra: 2054 / 1839,
  11062. bottom: 0.01
  11063. }
  11064. },
  11065. hand: {
  11066. height: math.unit(0.2166, "meters"),
  11067. name: "Hand",
  11068. image: {
  11069. source: "./media/characters/rufran/hand.svg"
  11070. }
  11071. },
  11072. foot: {
  11073. height: math.unit(0.185, "meters"),
  11074. name: "Foot",
  11075. image: {
  11076. source: "./media/characters/rufran/foot.svg"
  11077. }
  11078. },
  11079. },
  11080. [
  11081. {
  11082. name: "Micro",
  11083. height: math.unit(1, "inch")
  11084. },
  11085. {
  11086. name: "Normal",
  11087. height: math.unit(2 + 6 / 12, "feet"),
  11088. default: true
  11089. },
  11090. {
  11091. name: "Big",
  11092. height: math.unit(60, "feet")
  11093. },
  11094. {
  11095. name: "Macro",
  11096. height: math.unit(325, "feet")
  11097. },
  11098. ]
  11099. ))
  11100. characterMakers.push(() => makeCharacter(
  11101. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11102. {
  11103. front: {
  11104. height: math.unit(0.3, "meters"),
  11105. weight: math.unit(3.5, "kg"),
  11106. name: "Front",
  11107. image: {
  11108. source: "./media/characters/chip/front.svg",
  11109. extra: 748 / 674
  11110. }
  11111. },
  11112. },
  11113. [
  11114. {
  11115. name: "Micro",
  11116. height: math.unit(1, "inch"),
  11117. default: true
  11118. },
  11119. ]
  11120. ))
  11121. characterMakers.push(() => makeCharacter(
  11122. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11123. {
  11124. side: {
  11125. height: math.unit(2.3, "meters"),
  11126. weight: math.unit(3500, "lb"),
  11127. name: "Side",
  11128. image: {
  11129. source: "./media/characters/torvid/side.svg",
  11130. extra: 1972 / 722,
  11131. bottom: 0.035
  11132. }
  11133. },
  11134. },
  11135. [
  11136. {
  11137. name: "Normal",
  11138. height: math.unit(2.3, "meters"),
  11139. default: true
  11140. },
  11141. ]
  11142. ))
  11143. characterMakers.push(() => makeCharacter(
  11144. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11145. {
  11146. front: {
  11147. height: math.unit(2, "meters"),
  11148. weight: math.unit(150.5, "kg"),
  11149. name: "Front",
  11150. image: {
  11151. source: "./media/characters/susan/front.svg",
  11152. extra: 693 / 635,
  11153. bottom: 0.05
  11154. }
  11155. },
  11156. },
  11157. [
  11158. {
  11159. name: "Megamacro",
  11160. height: math.unit(505, "miles"),
  11161. default: true
  11162. },
  11163. ]
  11164. ))
  11165. characterMakers.push(() => makeCharacter(
  11166. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11167. {
  11168. front: {
  11169. height: math.unit(6, "feet"),
  11170. weight: math.unit(150, "lb"),
  11171. name: "Front",
  11172. image: {
  11173. source: "./media/characters/raindrops/front.svg",
  11174. extra: 2655 / 2461,
  11175. bottom: 0.02
  11176. }
  11177. },
  11178. back: {
  11179. height: math.unit(6, "feet"),
  11180. weight: math.unit(150, "lb"),
  11181. name: "Back",
  11182. image: {
  11183. source: "./media/characters/raindrops/back.svg",
  11184. extra: 2574 / 2400,
  11185. bottom: 0.03
  11186. }
  11187. },
  11188. },
  11189. [
  11190. {
  11191. name: "Micro",
  11192. height: math.unit(6, "inches")
  11193. },
  11194. {
  11195. name: "Normal",
  11196. height: math.unit(6 + 2 / 12, "feet")
  11197. },
  11198. {
  11199. name: "Macro",
  11200. height: math.unit(131, "feet"),
  11201. default: true
  11202. },
  11203. {
  11204. name: "Megamacro",
  11205. height: math.unit(15, "miles")
  11206. },
  11207. {
  11208. name: "Gigamacro",
  11209. height: math.unit(4000, "miles")
  11210. },
  11211. {
  11212. name: "Teramacro",
  11213. height: math.unit(315000, "miles")
  11214. },
  11215. ]
  11216. ))
  11217. characterMakers.push(() => makeCharacter(
  11218. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11219. {
  11220. front: {
  11221. height: math.unit(2.794, "meters"),
  11222. weight: math.unit(325, "kg"),
  11223. name: "Front",
  11224. image: {
  11225. source: "./media/characters/tezwa/front.svg",
  11226. extra: 2083 / 1906,
  11227. bottom: 0.031
  11228. }
  11229. },
  11230. foot: {
  11231. height: math.unit(0.687, "meters"),
  11232. name: "Foot",
  11233. image: {
  11234. source: "./media/characters/tezwa/foot.svg"
  11235. }
  11236. },
  11237. },
  11238. [
  11239. {
  11240. name: "Normal",
  11241. height: math.unit(9 + 2 / 12, "feet"),
  11242. default: true
  11243. },
  11244. ]
  11245. ))
  11246. characterMakers.push(() => makeCharacter(
  11247. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11248. {
  11249. front: {
  11250. height: math.unit(58, "feet"),
  11251. weight: math.unit(89000, "lb"),
  11252. name: "Front",
  11253. image: {
  11254. source: "./media/characters/typhus/front.svg",
  11255. extra: 816 / 800,
  11256. bottom: 0.065
  11257. }
  11258. },
  11259. },
  11260. [
  11261. {
  11262. name: "Macro",
  11263. height: math.unit(58, "feet"),
  11264. default: true
  11265. },
  11266. ]
  11267. ))
  11268. characterMakers.push(() => makeCharacter(
  11269. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11270. {
  11271. front: {
  11272. height: math.unit(12, "feet"),
  11273. weight: math.unit(6, "tonnes"),
  11274. name: "Front",
  11275. image: {
  11276. source: "./media/characters/lyra-von-wulf/front.svg",
  11277. extra: 1,
  11278. bottom: 0.10
  11279. }
  11280. },
  11281. frontMecha: {
  11282. height: math.unit(12, "feet"),
  11283. weight: math.unit(12, "tonnes"),
  11284. name: "Front (Mecha)",
  11285. image: {
  11286. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11287. extra: 1,
  11288. bottom: 0.042
  11289. }
  11290. },
  11291. maw: {
  11292. height: math.unit(2.2, "feet"),
  11293. name: "Maw",
  11294. image: {
  11295. source: "./media/characters/lyra-von-wulf/maw.svg"
  11296. }
  11297. },
  11298. },
  11299. [
  11300. {
  11301. name: "Normal",
  11302. height: math.unit(12, "feet"),
  11303. default: true
  11304. },
  11305. {
  11306. name: "Classic",
  11307. height: math.unit(50, "feet")
  11308. },
  11309. {
  11310. name: "Macro",
  11311. height: math.unit(500, "feet")
  11312. },
  11313. {
  11314. name: "Megamacro",
  11315. height: math.unit(1, "mile")
  11316. },
  11317. {
  11318. name: "Gigamacro",
  11319. height: math.unit(400, "miles")
  11320. },
  11321. {
  11322. name: "Teramacro",
  11323. height: math.unit(22000, "miles")
  11324. },
  11325. {
  11326. name: "Solarmacro",
  11327. height: math.unit(8600000, "miles")
  11328. },
  11329. {
  11330. name: "Galactic",
  11331. height: math.unit(1057000, "lightyears")
  11332. },
  11333. ]
  11334. ))
  11335. characterMakers.push(() => makeCharacter(
  11336. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11337. {
  11338. front: {
  11339. height: math.unit(6 + 10 / 12, "feet"),
  11340. weight: math.unit(150, "lb"),
  11341. name: "Front",
  11342. image: {
  11343. source: "./media/characters/dixon/front.svg",
  11344. extra: 3361 / 3209,
  11345. bottom: 0.01
  11346. }
  11347. },
  11348. },
  11349. [
  11350. {
  11351. name: "Normal",
  11352. height: math.unit(6 + 10 / 12, "feet"),
  11353. default: true
  11354. },
  11355. {
  11356. name: "Big",
  11357. height: math.unit(12, "meters")
  11358. },
  11359. {
  11360. name: "Macro",
  11361. height: math.unit(500, "meters")
  11362. },
  11363. {
  11364. name: "Megamacro",
  11365. height: math.unit(2, "km")
  11366. },
  11367. ]
  11368. ))
  11369. characterMakers.push(() => makeCharacter(
  11370. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11371. {
  11372. front: {
  11373. height: math.unit(185, "cm"),
  11374. weight: math.unit(68, "kg"),
  11375. name: "Front",
  11376. image: {
  11377. source: "./media/characters/kauko/front.svg",
  11378. extra: 1455 / 1421,
  11379. bottom: 0.03
  11380. }
  11381. },
  11382. back: {
  11383. height: math.unit(185, "cm"),
  11384. weight: math.unit(68, "kg"),
  11385. name: "Back",
  11386. image: {
  11387. source: "./media/characters/kauko/back.svg",
  11388. extra: 1455 / 1421,
  11389. bottom: 0.004
  11390. }
  11391. },
  11392. },
  11393. [
  11394. {
  11395. name: "Normal",
  11396. height: math.unit(185, "cm"),
  11397. default: true
  11398. },
  11399. ]
  11400. ))
  11401. characterMakers.push(() => makeCharacter(
  11402. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11403. {
  11404. front: {
  11405. height: math.unit(6, "feet"),
  11406. weight: math.unit(150, "kg"),
  11407. name: "Front",
  11408. image: {
  11409. source: "./media/characters/varg/front.svg",
  11410. extra: 1108 / 1018,
  11411. bottom: 0.0375
  11412. }
  11413. },
  11414. },
  11415. [
  11416. {
  11417. name: "Normal",
  11418. height: math.unit(5, "meters")
  11419. },
  11420. {
  11421. name: "Macro",
  11422. height: math.unit(200, "meters")
  11423. },
  11424. {
  11425. name: "Megamacro",
  11426. height: math.unit(20, "kilometers")
  11427. },
  11428. {
  11429. name: "True Size",
  11430. height: math.unit(211, "km"),
  11431. default: true
  11432. },
  11433. {
  11434. name: "Gigamacro",
  11435. height: math.unit(1000, "km")
  11436. },
  11437. {
  11438. name: "Gigamacro+",
  11439. height: math.unit(8000, "km")
  11440. },
  11441. {
  11442. name: "Teramacro",
  11443. height: math.unit(1000000, "km")
  11444. },
  11445. ]
  11446. ))
  11447. characterMakers.push(() => makeCharacter(
  11448. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11449. {
  11450. front: {
  11451. height: math.unit(7 + 7 / 12, "feet"),
  11452. weight: math.unit(267, "lb"),
  11453. name: "Front",
  11454. image: {
  11455. source: "./media/characters/dayza/front.svg",
  11456. extra: 1262 / 1200,
  11457. bottom: 0.035
  11458. }
  11459. },
  11460. side: {
  11461. height: math.unit(7 + 7 / 12, "feet"),
  11462. weight: math.unit(267, "lb"),
  11463. name: "Side",
  11464. image: {
  11465. source: "./media/characters/dayza/side.svg",
  11466. extra: 1295 / 1245,
  11467. bottom: 0.05
  11468. }
  11469. },
  11470. back: {
  11471. height: math.unit(7 + 7 / 12, "feet"),
  11472. weight: math.unit(267, "lb"),
  11473. name: "Back",
  11474. image: {
  11475. source: "./media/characters/dayza/back.svg",
  11476. extra: 1241 / 1170
  11477. }
  11478. },
  11479. },
  11480. [
  11481. {
  11482. name: "Normal",
  11483. height: math.unit(7 + 7 / 12, "feet"),
  11484. default: true
  11485. },
  11486. {
  11487. name: "Macro",
  11488. height: math.unit(155, "feet")
  11489. },
  11490. ]
  11491. ))
  11492. characterMakers.push(() => makeCharacter(
  11493. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11494. {
  11495. front: {
  11496. height: math.unit(6 + 5 / 12, "feet"),
  11497. weight: math.unit(160, "lb"),
  11498. name: "Front",
  11499. image: {
  11500. source: "./media/characters/xanthos/front.svg",
  11501. extra: 1,
  11502. bottom: 0.04
  11503. }
  11504. },
  11505. back: {
  11506. height: math.unit(6 + 5 / 12, "feet"),
  11507. weight: math.unit(160, "lb"),
  11508. name: "Back",
  11509. image: {
  11510. source: "./media/characters/xanthos/back.svg",
  11511. extra: 1,
  11512. bottom: 0.03
  11513. }
  11514. },
  11515. hand: {
  11516. height: math.unit(0.928, "feet"),
  11517. name: "Hand",
  11518. image: {
  11519. source: "./media/characters/xanthos/hand.svg"
  11520. }
  11521. },
  11522. foot: {
  11523. height: math.unit(1.286, "feet"),
  11524. name: "Foot",
  11525. image: {
  11526. source: "./media/characters/xanthos/foot.svg"
  11527. }
  11528. },
  11529. },
  11530. [
  11531. {
  11532. name: "Normal",
  11533. height: math.unit(6 + 5 / 12, "feet"),
  11534. default: true
  11535. },
  11536. {
  11537. name: "Normal+",
  11538. height: math.unit(6, "meters")
  11539. },
  11540. {
  11541. name: "Macro",
  11542. height: math.unit(40, "feet")
  11543. },
  11544. {
  11545. name: "Macro+",
  11546. height: math.unit(200, "meters")
  11547. },
  11548. {
  11549. name: "Megamacro",
  11550. height: math.unit(20, "km")
  11551. },
  11552. {
  11553. name: "Megamacro+",
  11554. height: math.unit(100, "km")
  11555. },
  11556. ]
  11557. ))
  11558. characterMakers.push(() => makeCharacter(
  11559. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11560. {
  11561. front: {
  11562. height: math.unit(6 + 3 / 12, "feet"),
  11563. weight: math.unit(215, "lb"),
  11564. name: "Front",
  11565. image: {
  11566. source: "./media/characters/grynn/front.svg",
  11567. extra: 4627 / 4209,
  11568. bottom: 0.047
  11569. }
  11570. },
  11571. },
  11572. [
  11573. {
  11574. name: "Micro",
  11575. height: math.unit(6, "inches")
  11576. },
  11577. {
  11578. name: "Normal",
  11579. height: math.unit(6 + 3 / 12, "feet"),
  11580. default: true
  11581. },
  11582. {
  11583. name: "Big",
  11584. height: math.unit(104, "feet")
  11585. },
  11586. {
  11587. name: "Macro",
  11588. height: math.unit(944, "feet")
  11589. },
  11590. {
  11591. name: "Macro+",
  11592. height: math.unit(9480, "feet")
  11593. },
  11594. {
  11595. name: "Megamacro",
  11596. height: math.unit(78752, "feet")
  11597. },
  11598. {
  11599. name: "Megamacro+",
  11600. height: math.unit(630128, "feet")
  11601. },
  11602. {
  11603. name: "Megamacro++",
  11604. height: math.unit(3150695, "feet")
  11605. },
  11606. ]
  11607. ))
  11608. characterMakers.push(() => makeCharacter(
  11609. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11610. {
  11611. front: {
  11612. height: math.unit(7 + 5 / 12, "feet"),
  11613. weight: math.unit(450, "lb"),
  11614. name: "Front",
  11615. image: {
  11616. source: "./media/characters/mocha-aura/front.svg",
  11617. extra: 1907 / 1817,
  11618. bottom: 0.04
  11619. }
  11620. },
  11621. back: {
  11622. height: math.unit(7 + 5 / 12, "feet"),
  11623. weight: math.unit(450, "lb"),
  11624. name: "Back",
  11625. image: {
  11626. source: "./media/characters/mocha-aura/back.svg",
  11627. extra: 1900 / 1825,
  11628. bottom: 0.045
  11629. }
  11630. },
  11631. },
  11632. [
  11633. {
  11634. name: "Nano",
  11635. height: math.unit(1, "nm")
  11636. },
  11637. {
  11638. name: "Megamicro",
  11639. height: math.unit(1, "mm")
  11640. },
  11641. {
  11642. name: "Micro",
  11643. height: math.unit(3, "inches")
  11644. },
  11645. {
  11646. name: "Normal",
  11647. height: math.unit(7 + 5 / 12, "feet"),
  11648. default: true
  11649. },
  11650. {
  11651. name: "Macro",
  11652. height: math.unit(30, "feet")
  11653. },
  11654. {
  11655. name: "Megamacro",
  11656. height: math.unit(3500, "feet")
  11657. },
  11658. {
  11659. name: "Teramacro",
  11660. height: math.unit(500000, "miles")
  11661. },
  11662. {
  11663. name: "Petamacro",
  11664. height: math.unit(50000000000000000, "parsecs")
  11665. },
  11666. ]
  11667. ))
  11668. characterMakers.push(() => makeCharacter(
  11669. { name: "Ilisha Devya", species: ["alligator", "cobra"], tags: ["anthro"] },
  11670. {
  11671. front: {
  11672. height: math.unit(6, "feet"),
  11673. weight: math.unit(150, "lb"),
  11674. name: "Front",
  11675. image: {
  11676. source: "./media/characters/ilisha-devya/front.svg",
  11677. extra: 1,
  11678. bottom: 0.175
  11679. }
  11680. },
  11681. back: {
  11682. height: math.unit(6, "feet"),
  11683. weight: math.unit(150, "lb"),
  11684. name: "Back",
  11685. image: {
  11686. source: "./media/characters/ilisha-devya/back.svg",
  11687. extra: 1,
  11688. bottom: 0.015
  11689. }
  11690. },
  11691. },
  11692. [
  11693. {
  11694. name: "Macro",
  11695. height: math.unit(500, "feet"),
  11696. default: true
  11697. },
  11698. {
  11699. name: "Megamacro",
  11700. height: math.unit(10, "miles")
  11701. },
  11702. {
  11703. name: "Gigamacro",
  11704. height: math.unit(100000, "miles")
  11705. },
  11706. {
  11707. name: "Examacro",
  11708. height: math.unit(1e9, "lightyears")
  11709. },
  11710. {
  11711. name: "Omniversal",
  11712. height: math.unit(1e33, "lightyears")
  11713. },
  11714. {
  11715. name: "Beyond Infinite",
  11716. height: math.unit(1e100, "lightyears")
  11717. },
  11718. ]
  11719. ))
  11720. characterMakers.push(() => makeCharacter(
  11721. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11722. {
  11723. Side: {
  11724. height: math.unit(6, "feet"),
  11725. weight: math.unit(150, "lb"),
  11726. name: "Side",
  11727. image: {
  11728. source: "./media/characters/mira/side.svg",
  11729. extra: 900 / 799,
  11730. bottom: 0.02
  11731. }
  11732. },
  11733. },
  11734. [
  11735. {
  11736. name: "Human Size",
  11737. height: math.unit(6, "feet")
  11738. },
  11739. {
  11740. name: "Macro",
  11741. height: math.unit(100, "feet"),
  11742. default: true
  11743. },
  11744. {
  11745. name: "Megamacro",
  11746. height: math.unit(10, "miles")
  11747. },
  11748. {
  11749. name: "Gigamacro",
  11750. height: math.unit(25000, "miles")
  11751. },
  11752. {
  11753. name: "Teramacro",
  11754. height: math.unit(300, "AU")
  11755. },
  11756. {
  11757. name: "Full Size",
  11758. height: math.unit(4.5e10, "lightyears")
  11759. },
  11760. ]
  11761. ))
  11762. characterMakers.push(() => makeCharacter(
  11763. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11764. {
  11765. front: {
  11766. height: math.unit(6, "feet"),
  11767. weight: math.unit(150, "lb"),
  11768. name: "Front",
  11769. image: {
  11770. source: "./media/characters/holly/front.svg",
  11771. extra: 639 / 606
  11772. }
  11773. },
  11774. back: {
  11775. height: math.unit(6, "feet"),
  11776. weight: math.unit(150, "lb"),
  11777. name: "Back",
  11778. image: {
  11779. source: "./media/characters/holly/back.svg",
  11780. extra: 623 / 598
  11781. }
  11782. },
  11783. frontWorking: {
  11784. height: math.unit(6, "feet"),
  11785. weight: math.unit(150, "lb"),
  11786. name: "Front (Working)",
  11787. image: {
  11788. source: "./media/characters/holly/front-working.svg",
  11789. extra: 607 / 577,
  11790. bottom: 0.048
  11791. }
  11792. },
  11793. },
  11794. [
  11795. {
  11796. name: "Normal",
  11797. height: math.unit(12 + 3 / 12, "feet"),
  11798. default: true
  11799. },
  11800. ]
  11801. ))
  11802. characterMakers.push(() => makeCharacter(
  11803. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11804. {
  11805. front: {
  11806. height: math.unit(6, "feet"),
  11807. weight: math.unit(150, "lb"),
  11808. name: "Front",
  11809. image: {
  11810. source: "./media/characters/porter/front.svg",
  11811. extra: 1,
  11812. bottom: 0.01
  11813. }
  11814. },
  11815. frontRobes: {
  11816. height: math.unit(6, "feet"),
  11817. weight: math.unit(150, "lb"),
  11818. name: "Front (Robes)",
  11819. image: {
  11820. source: "./media/characters/porter/front-robes.svg",
  11821. extra: 1.01,
  11822. bottom: 0.01
  11823. }
  11824. },
  11825. },
  11826. [
  11827. {
  11828. name: "Normal",
  11829. height: math.unit(11 + 9 / 12, "feet"),
  11830. default: true
  11831. },
  11832. ]
  11833. ))
  11834. characterMakers.push(() => makeCharacter(
  11835. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  11836. {
  11837. legendary: {
  11838. height: math.unit(6, "feet"),
  11839. weight: math.unit(150, "lb"),
  11840. name: "Legendary",
  11841. image: {
  11842. source: "./media/characters/lucy/legendary.svg",
  11843. extra: 1355 / 1100,
  11844. bottom: 0.045
  11845. }
  11846. },
  11847. },
  11848. [
  11849. {
  11850. name: "Legendary",
  11851. height: math.unit(86882 * 2, "miles"),
  11852. default: true
  11853. },
  11854. ]
  11855. ))
  11856. characterMakers.push(() => makeCharacter(
  11857. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  11858. {
  11859. front: {
  11860. height: math.unit(6, "feet"),
  11861. weight: math.unit(150, "lb"),
  11862. name: "Front",
  11863. image: {
  11864. source: "./media/characters/drusilla/front.svg",
  11865. extra: 678 / 635,
  11866. bottom: 0.03
  11867. }
  11868. },
  11869. back: {
  11870. height: math.unit(6, "feet"),
  11871. weight: math.unit(150, "lb"),
  11872. name: "Back",
  11873. image: {
  11874. source: "./media/characters/drusilla/back.svg",
  11875. extra: 678 / 635,
  11876. bottom: 0.005
  11877. }
  11878. },
  11879. },
  11880. [
  11881. {
  11882. name: "Macro",
  11883. height: math.unit(100, "feet")
  11884. },
  11885. {
  11886. name: "Canon Height",
  11887. height: math.unit(2000, "feet"),
  11888. default: true
  11889. },
  11890. ]
  11891. ))
  11892. characterMakers.push(() => makeCharacter(
  11893. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  11894. {
  11895. front: {
  11896. height: math.unit(6, "feet"),
  11897. weight: math.unit(180, "lb"),
  11898. name: "Front",
  11899. image: {
  11900. source: "./media/characters/renard-thatch/front.svg",
  11901. extra: 2411 / 2275,
  11902. bottom: 0.01
  11903. }
  11904. },
  11905. frontPosing: {
  11906. height: math.unit(6, "feet"),
  11907. weight: math.unit(180, "lb"),
  11908. name: "Front (Posing)",
  11909. image: {
  11910. source: "./media/characters/renard-thatch/front-posing.svg",
  11911. extra: 2381 / 2261,
  11912. bottom: 0.01
  11913. }
  11914. },
  11915. back: {
  11916. height: math.unit(6, "feet"),
  11917. weight: math.unit(180, "lb"),
  11918. name: "Back",
  11919. image: {
  11920. source: "./media/characters/renard-thatch/back.svg",
  11921. extra: 2428 / 2288
  11922. }
  11923. },
  11924. },
  11925. [
  11926. {
  11927. name: "Micro",
  11928. height: math.unit(3, "inches")
  11929. },
  11930. {
  11931. name: "Default",
  11932. height: math.unit(6, "feet"),
  11933. default: true
  11934. },
  11935. {
  11936. name: "Macro",
  11937. height: math.unit(75, "feet")
  11938. },
  11939. ]
  11940. ))
  11941. characterMakers.push(() => makeCharacter(
  11942. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  11943. {
  11944. front: {
  11945. height: math.unit(1450, "feet"),
  11946. weight: math.unit(1.21e6, "tons"),
  11947. name: "Front",
  11948. image: {
  11949. source: "./media/characters/sekvra/front.svg",
  11950. extra: 1,
  11951. bottom: 0.03
  11952. }
  11953. },
  11954. frontClothed: {
  11955. height: math.unit(1450, "feet"),
  11956. weight: math.unit(1.21e6, "tons"),
  11957. name: "Front (Clothed)",
  11958. image: {
  11959. source: "./media/characters/sekvra/front-clothed.svg",
  11960. extra: 1,
  11961. bottom: 0.03
  11962. }
  11963. },
  11964. side: {
  11965. height: math.unit(1450, "feet"),
  11966. weight: math.unit(1.21e6, "tons"),
  11967. name: "Side",
  11968. image: {
  11969. source: "./media/characters/sekvra/side.svg",
  11970. extra: 1,
  11971. bottom: 0.025
  11972. }
  11973. },
  11974. back: {
  11975. height: math.unit(1450, "feet"),
  11976. weight: math.unit(1.21e6, "tons"),
  11977. name: "Back",
  11978. image: {
  11979. source: "./media/characters/sekvra/back.svg",
  11980. extra: 1,
  11981. bottom: 0.005
  11982. }
  11983. },
  11984. },
  11985. [
  11986. {
  11987. name: "Macro",
  11988. height: math.unit(1450, "feet"),
  11989. default: true
  11990. },
  11991. {
  11992. name: "Megamacro",
  11993. height: math.unit(15000, "feet")
  11994. },
  11995. ]
  11996. ))
  11997. characterMakers.push(() => makeCharacter(
  11998. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  11999. {
  12000. front: {
  12001. height: math.unit(6, "feet"),
  12002. weight: math.unit(150, "lb"),
  12003. name: "Front",
  12004. image: {
  12005. source: "./media/characters/carmine/front.svg",
  12006. extra: 1,
  12007. bottom: 0.035
  12008. }
  12009. },
  12010. frontArmor: {
  12011. height: math.unit(6, "feet"),
  12012. weight: math.unit(150, "lb"),
  12013. name: "Front (Armor)",
  12014. image: {
  12015. source: "./media/characters/carmine/front-armor.svg",
  12016. extra: 1,
  12017. bottom: 0.035
  12018. }
  12019. },
  12020. },
  12021. [
  12022. {
  12023. name: "Large",
  12024. height: math.unit(1, "mile")
  12025. },
  12026. {
  12027. name: "Huge",
  12028. height: math.unit(40, "miles"),
  12029. default: true
  12030. },
  12031. {
  12032. name: "Colossal",
  12033. height: math.unit(2500, "miles")
  12034. },
  12035. ]
  12036. ))
  12037. characterMakers.push(() => makeCharacter(
  12038. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12039. {
  12040. front: {
  12041. height: math.unit(6, "feet"),
  12042. weight: math.unit(150, "lb"),
  12043. name: "Front",
  12044. image: {
  12045. source: "./media/characters/elyssia/front.svg",
  12046. extra: 2201 / 2035,
  12047. bottom: 0.05
  12048. }
  12049. },
  12050. frontClothed: {
  12051. height: math.unit(6, "feet"),
  12052. weight: math.unit(150, "lb"),
  12053. name: "Front (Clothed)",
  12054. image: {
  12055. source: "./media/characters/elyssia/front-clothed.svg",
  12056. extra: 2201 / 2035,
  12057. bottom: 0.05
  12058. }
  12059. },
  12060. back: {
  12061. height: math.unit(6, "feet"),
  12062. weight: math.unit(150, "lb"),
  12063. name: "Back",
  12064. image: {
  12065. source: "./media/characters/elyssia/back.svg",
  12066. extra: 2201 / 2035,
  12067. bottom: 0.013
  12068. }
  12069. },
  12070. },
  12071. [
  12072. {
  12073. name: "Smaller",
  12074. height: math.unit(150, "feet")
  12075. },
  12076. {
  12077. name: "Standard",
  12078. height: math.unit(1400, "feet"),
  12079. default: true
  12080. },
  12081. {
  12082. name: "Distracted",
  12083. height: math.unit(15000, "feet")
  12084. },
  12085. ]
  12086. ))
  12087. characterMakers.push(() => makeCharacter(
  12088. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12089. {
  12090. front: {
  12091. height: math.unit(7 + 4 / 12, "feet"),
  12092. weight: math.unit(500, "lb"),
  12093. name: "Front",
  12094. image: {
  12095. source: "./media/characters/geno-maxwell/front.svg",
  12096. extra: 2207 / 2040,
  12097. bottom: 0.015
  12098. }
  12099. },
  12100. },
  12101. [
  12102. {
  12103. name: "Micro",
  12104. height: math.unit(3, "inches")
  12105. },
  12106. {
  12107. name: "Normal",
  12108. height: math.unit(7 + 4 / 12, "feet"),
  12109. default: true
  12110. },
  12111. {
  12112. name: "Macro",
  12113. height: math.unit(220, "feet")
  12114. },
  12115. {
  12116. name: "Megamacro",
  12117. height: math.unit(11, "miles")
  12118. },
  12119. ]
  12120. ))
  12121. characterMakers.push(() => makeCharacter(
  12122. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12123. {
  12124. front: {
  12125. height: math.unit(7 + 4 / 12, "feet"),
  12126. weight: math.unit(500, "lb"),
  12127. name: "Front",
  12128. image: {
  12129. source: "./media/characters/regena-maxwell/front.svg",
  12130. extra: 3115 / 2770,
  12131. bottom: 0.02
  12132. }
  12133. },
  12134. },
  12135. [
  12136. {
  12137. name: "Normal",
  12138. height: math.unit(7 + 4 / 12, "feet"),
  12139. default: true
  12140. },
  12141. {
  12142. name: "Macro",
  12143. height: math.unit(220, "feet")
  12144. },
  12145. {
  12146. name: "Megamacro",
  12147. height: math.unit(11, "miles")
  12148. },
  12149. ]
  12150. ))
  12151. characterMakers.push(() => makeCharacter(
  12152. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12153. {
  12154. front: {
  12155. height: math.unit(6, "feet"),
  12156. weight: math.unit(150, "lb"),
  12157. name: "Front",
  12158. image: {
  12159. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12160. extra: 860 / 690,
  12161. bottom: 0.03
  12162. }
  12163. },
  12164. },
  12165. [
  12166. {
  12167. name: "Normal",
  12168. height: math.unit(1.7, "meters"),
  12169. default: true
  12170. },
  12171. ]
  12172. ))
  12173. characterMakers.push(() => makeCharacter(
  12174. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12175. {
  12176. front: {
  12177. height: math.unit(6, "feet"),
  12178. weight: math.unit(150, "lb"),
  12179. name: "Front",
  12180. image: {
  12181. source: "./media/characters/quilly/front.svg",
  12182. extra: 890 / 776
  12183. }
  12184. },
  12185. },
  12186. [
  12187. {
  12188. name: "Gigamacro",
  12189. height: math.unit(404090, "miles"),
  12190. default: true
  12191. },
  12192. ]
  12193. ))
  12194. characterMakers.push(() => makeCharacter(
  12195. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12196. {
  12197. front: {
  12198. height: math.unit(7 + 8 / 12, "feet"),
  12199. weight: math.unit(350, "lb"),
  12200. name: "Front",
  12201. image: {
  12202. source: "./media/characters/tempest/front.svg",
  12203. extra: 1175 / 1086,
  12204. bottom: 0.02
  12205. }
  12206. },
  12207. },
  12208. [
  12209. {
  12210. name: "Normal",
  12211. height: math.unit(7 + 8 / 12, "feet"),
  12212. default: true
  12213. },
  12214. ]
  12215. ))
  12216. characterMakers.push(() => makeCharacter(
  12217. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12218. {
  12219. side: {
  12220. height: math.unit(4 + 5 / 12, "feet"),
  12221. weight: math.unit(80, "lb"),
  12222. name: "Side",
  12223. image: {
  12224. source: "./media/characters/rodger/side.svg",
  12225. extra: 1235 / 1118
  12226. }
  12227. },
  12228. },
  12229. [
  12230. {
  12231. name: "Micro",
  12232. height: math.unit(1, "inch")
  12233. },
  12234. {
  12235. name: "Normal",
  12236. height: math.unit(4 + 5 / 12, "feet"),
  12237. default: true
  12238. },
  12239. {
  12240. name: "Macro",
  12241. height: math.unit(120, "feet")
  12242. },
  12243. ]
  12244. ))
  12245. characterMakers.push(() => makeCharacter(
  12246. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12247. {
  12248. front: {
  12249. height: math.unit(6, "feet"),
  12250. weight: math.unit(150, "lb"),
  12251. name: "Front",
  12252. image: {
  12253. source: "./media/characters/danyel/front.svg",
  12254. extra: 1185 / 1123,
  12255. bottom: 0.05
  12256. }
  12257. },
  12258. },
  12259. [
  12260. {
  12261. name: "Shrunken",
  12262. height: math.unit(0.5, "mm")
  12263. },
  12264. {
  12265. name: "Micro",
  12266. height: math.unit(1, "mm"),
  12267. default: true
  12268. },
  12269. {
  12270. name: "Upsized",
  12271. height: math.unit(5 + 5 / 12, "feet")
  12272. },
  12273. ]
  12274. ))
  12275. characterMakers.push(() => makeCharacter(
  12276. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12277. {
  12278. front: {
  12279. height: math.unit(5 + 6 / 12, "feet"),
  12280. weight: math.unit(200, "lb"),
  12281. name: "Front",
  12282. image: {
  12283. source: "./media/characters/vivian-bijoux/front.svg",
  12284. extra: 1,
  12285. bottom: 0.072
  12286. }
  12287. },
  12288. },
  12289. [
  12290. {
  12291. name: "Normal",
  12292. height: math.unit(5 + 6 / 12, "feet"),
  12293. default: true
  12294. },
  12295. {
  12296. name: "Bad Dream",
  12297. height: math.unit(500, "feet")
  12298. },
  12299. {
  12300. name: "Nightmare",
  12301. height: math.unit(500, "miles")
  12302. },
  12303. ]
  12304. ))
  12305. characterMakers.push(() => makeCharacter(
  12306. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12307. {
  12308. front: {
  12309. height: math.unit(6 + 1 / 12, "feet"),
  12310. weight: math.unit(260, "lb"),
  12311. name: "Front",
  12312. image: {
  12313. source: "./media/characters/zeta/front.svg",
  12314. extra: 1968 / 1889,
  12315. bottom: 0.06
  12316. }
  12317. },
  12318. back: {
  12319. height: math.unit(6 + 1 / 12, "feet"),
  12320. weight: math.unit(260, "lb"),
  12321. name: "Back",
  12322. image: {
  12323. source: "./media/characters/zeta/back.svg",
  12324. extra: 1944 / 1858,
  12325. bottom: 0.03
  12326. }
  12327. },
  12328. hand: {
  12329. height: math.unit(1.112, "feet"),
  12330. name: "Hand",
  12331. image: {
  12332. source: "./media/characters/zeta/hand.svg"
  12333. }
  12334. },
  12335. foot: {
  12336. height: math.unit(1.48, "feet"),
  12337. name: "Foot",
  12338. image: {
  12339. source: "./media/characters/zeta/foot.svg"
  12340. }
  12341. },
  12342. },
  12343. [
  12344. {
  12345. name: "Micro",
  12346. height: math.unit(6, "inches")
  12347. },
  12348. {
  12349. name: "Normal",
  12350. height: math.unit(6 + 1 / 12, "feet"),
  12351. default: true
  12352. },
  12353. {
  12354. name: "Macro",
  12355. height: math.unit(20, "feet")
  12356. },
  12357. ]
  12358. ))
  12359. characterMakers.push(() => makeCharacter(
  12360. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12361. {
  12362. front: {
  12363. height: math.unit(6, "feet"),
  12364. weight: math.unit(150, "lb"),
  12365. name: "Front",
  12366. image: {
  12367. source: "./media/characters/jamie-larsen/front.svg",
  12368. extra: 962 / 933,
  12369. bottom: 0.02
  12370. }
  12371. },
  12372. back: {
  12373. height: math.unit(6, "feet"),
  12374. weight: math.unit(150, "lb"),
  12375. name: "Back",
  12376. image: {
  12377. source: "./media/characters/jamie-larsen/back.svg",
  12378. extra: 997 / 946
  12379. }
  12380. },
  12381. },
  12382. [
  12383. {
  12384. name: "Macro",
  12385. height: math.unit(28 + 7 / 12, "feet"),
  12386. default: true
  12387. },
  12388. {
  12389. name: "Macro+",
  12390. height: math.unit(180, "feet")
  12391. },
  12392. {
  12393. name: "Megamacro",
  12394. height: math.unit(10, "miles")
  12395. },
  12396. {
  12397. name: "Gigamacro",
  12398. height: math.unit(200000, "miles")
  12399. },
  12400. ]
  12401. ))
  12402. characterMakers.push(() => makeCharacter(
  12403. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12404. {
  12405. front: {
  12406. height: math.unit(6, "feet"),
  12407. weight: math.unit(120, "lb"),
  12408. name: "Front",
  12409. image: {
  12410. source: "./media/characters/vance/front.svg",
  12411. extra: 1980 / 1890,
  12412. bottom: 0.09
  12413. }
  12414. },
  12415. back: {
  12416. height: math.unit(6, "feet"),
  12417. weight: math.unit(120, "lb"),
  12418. name: "Back",
  12419. image: {
  12420. source: "./media/characters/vance/back.svg",
  12421. extra: 2081 / 1994,
  12422. bottom: 0.014
  12423. }
  12424. },
  12425. hand: {
  12426. height: math.unit(0.88, "feet"),
  12427. name: "Hand",
  12428. image: {
  12429. source: "./media/characters/vance/hand.svg"
  12430. }
  12431. },
  12432. foot: {
  12433. height: math.unit(0.64, "feet"),
  12434. name: "Foot",
  12435. image: {
  12436. source: "./media/characters/vance/foot.svg"
  12437. }
  12438. },
  12439. },
  12440. [
  12441. {
  12442. name: "Small",
  12443. height: math.unit(90, "feet"),
  12444. default: true
  12445. },
  12446. {
  12447. name: "Macro",
  12448. height: math.unit(100, "meters")
  12449. },
  12450. {
  12451. name: "Megamacro",
  12452. height: math.unit(15, "miles")
  12453. },
  12454. ]
  12455. ))
  12456. characterMakers.push(() => makeCharacter(
  12457. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12458. {
  12459. front: {
  12460. height: math.unit(6, "feet"),
  12461. weight: math.unit(180, "lb"),
  12462. name: "Front",
  12463. image: {
  12464. source: "./media/characters/xochitl/front.svg",
  12465. extra: 2297 / 2261,
  12466. bottom: 0.065
  12467. }
  12468. },
  12469. back: {
  12470. height: math.unit(6, "feet"),
  12471. weight: math.unit(180, "lb"),
  12472. name: "Back",
  12473. image: {
  12474. source: "./media/characters/xochitl/back.svg",
  12475. extra: 2386 / 2354,
  12476. bottom: 0.01
  12477. }
  12478. },
  12479. foot: {
  12480. height: math.unit(6 / 5 * 1.15, "feet"),
  12481. weight: math.unit(150, "lb"),
  12482. name: "Foot",
  12483. image: {
  12484. source: "./media/characters/xochitl/foot.svg"
  12485. }
  12486. },
  12487. },
  12488. [
  12489. {
  12490. name: "Macro",
  12491. height: math.unit(80, "feet")
  12492. },
  12493. {
  12494. name: "Macro+",
  12495. height: math.unit(400, "feet"),
  12496. default: true
  12497. },
  12498. {
  12499. name: "Gigamacro",
  12500. height: math.unit(80000, "miles")
  12501. },
  12502. {
  12503. name: "Gigamacro+",
  12504. height: math.unit(400000, "miles")
  12505. },
  12506. {
  12507. name: "Teramacro",
  12508. height: math.unit(300, "AU")
  12509. },
  12510. ]
  12511. ))
  12512. characterMakers.push(() => makeCharacter(
  12513. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12514. {
  12515. front: {
  12516. height: math.unit(6, "feet"),
  12517. weight: math.unit(150, "lb"),
  12518. name: "Front",
  12519. image: {
  12520. source: "./media/characters/vincent/front.svg",
  12521. extra: 1130 / 1080,
  12522. bottom: 0.055
  12523. }
  12524. },
  12525. beak: {
  12526. height: math.unit(6 * 0.1, "feet"),
  12527. name: "Beak",
  12528. image: {
  12529. source: "./media/characters/vincent/beak.svg"
  12530. }
  12531. },
  12532. hand: {
  12533. height: math.unit(6 * 0.85, "feet"),
  12534. weight: math.unit(150, "lb"),
  12535. name: "Hand",
  12536. image: {
  12537. source: "./media/characters/vincent/hand.svg"
  12538. }
  12539. },
  12540. foot: {
  12541. height: math.unit(6 * 0.19, "feet"),
  12542. weight: math.unit(150, "lb"),
  12543. name: "Foot",
  12544. image: {
  12545. source: "./media/characters/vincent/foot.svg"
  12546. }
  12547. },
  12548. },
  12549. [
  12550. {
  12551. name: "Base",
  12552. height: math.unit(6 + 5 / 12, "feet"),
  12553. default: true
  12554. },
  12555. {
  12556. name: "Macro",
  12557. height: math.unit(300, "feet")
  12558. },
  12559. {
  12560. name: "Megamacro",
  12561. height: math.unit(2, "miles")
  12562. },
  12563. {
  12564. name: "Gigamacro",
  12565. height: math.unit(1000, "miles")
  12566. },
  12567. ]
  12568. ))
  12569. characterMakers.push(() => makeCharacter(
  12570. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12571. {
  12572. front: {
  12573. height: math.unit(6 + 2 / 12, "feet"),
  12574. weight: math.unit(265, "lb"),
  12575. name: "Front",
  12576. image: {
  12577. source: "./media/characters/jay/front.svg",
  12578. extra: 1510 / 1430,
  12579. bottom: 0.042
  12580. }
  12581. },
  12582. back: {
  12583. height: math.unit(6 + 2 / 12, "feet"),
  12584. weight: math.unit(265, "lb"),
  12585. name: "Back",
  12586. image: {
  12587. source: "./media/characters/jay/back.svg",
  12588. extra: 1510 / 1430,
  12589. bottom: 0.025
  12590. }
  12591. },
  12592. clothed: {
  12593. height: math.unit(6 + 2 / 12, "feet"),
  12594. weight: math.unit(265, "lb"),
  12595. name: "Front (Clothed)",
  12596. image: {
  12597. source: "./media/characters/jay/clothed.svg",
  12598. extra: 744 / 699,
  12599. bottom: 0.043
  12600. }
  12601. },
  12602. head: {
  12603. height: math.unit(1.772, "feet"),
  12604. name: "Head",
  12605. image: {
  12606. source: "./media/characters/jay/head.svg"
  12607. }
  12608. },
  12609. sizeRay: {
  12610. height: math.unit(1.331, "feet"),
  12611. name: "Size Ray",
  12612. image: {
  12613. source: "./media/characters/jay/size-ray.svg"
  12614. }
  12615. },
  12616. },
  12617. [
  12618. {
  12619. name: "Micro",
  12620. height: math.unit(1, "inch")
  12621. },
  12622. {
  12623. name: "Normal",
  12624. height: math.unit(6 + 2 / 12, "feet"),
  12625. default: true
  12626. },
  12627. {
  12628. name: "Macro",
  12629. height: math.unit(1, "mile")
  12630. },
  12631. {
  12632. name: "Megamacro",
  12633. height: math.unit(100, "miles")
  12634. },
  12635. ]
  12636. ))
  12637. characterMakers.push(() => makeCharacter(
  12638. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12639. {
  12640. front: {
  12641. height: math.unit(2, "meters"),
  12642. weight: math.unit(500, "kg"),
  12643. name: "Front",
  12644. image: {
  12645. source: "./media/characters/coatl/front.svg",
  12646. extra: 3948 / 3500,
  12647. bottom: 0.082
  12648. }
  12649. },
  12650. },
  12651. [
  12652. {
  12653. name: "Normal",
  12654. height: math.unit(4, "meters")
  12655. },
  12656. {
  12657. name: "Macro",
  12658. height: math.unit(100, "meters"),
  12659. default: true
  12660. },
  12661. {
  12662. name: "Macro+",
  12663. height: math.unit(300, "meters")
  12664. },
  12665. {
  12666. name: "Megamacro",
  12667. height: math.unit(3, "gigameters")
  12668. },
  12669. {
  12670. name: "Megamacro+",
  12671. height: math.unit(300, "terameters")
  12672. },
  12673. {
  12674. name: "Megamacro++",
  12675. height: math.unit(3, "lightyears")
  12676. },
  12677. ]
  12678. ))
  12679. characterMakers.push(() => makeCharacter(
  12680. { name: "Shiroryu", species: ["dragon"], tags: ["anthro"] },
  12681. {
  12682. front: {
  12683. height: math.unit(6, "feet"),
  12684. weight: math.unit(50, "kg"),
  12685. name: "front",
  12686. image: {
  12687. source: "./media/characters/shiroryu/front.svg",
  12688. extra: 1990 / 1935
  12689. }
  12690. },
  12691. },
  12692. [
  12693. {
  12694. name: "Mortal Mingling",
  12695. height: math.unit(3, "meters")
  12696. },
  12697. {
  12698. name: "Kaiju-ish",
  12699. height: math.unit(250, "meters")
  12700. },
  12701. {
  12702. name: "Somewhat Godly",
  12703. height: math.unit(400, "km"),
  12704. default: true
  12705. },
  12706. {
  12707. name: "Planetary",
  12708. height: math.unit(300, "megameters")
  12709. },
  12710. {
  12711. name: "Galaxy-dwarfing",
  12712. height: math.unit(450, "kiloparsecs")
  12713. },
  12714. {
  12715. name: "Universe Eater",
  12716. height: math.unit(150, "gigaparsecs")
  12717. },
  12718. {
  12719. name: "Almost Immeasurable",
  12720. height: math.unit(1.3e266, "yottaparsecs")
  12721. },
  12722. ]
  12723. ))
  12724. characterMakers.push(() => makeCharacter(
  12725. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12726. {
  12727. front: {
  12728. height: math.unit(6, "feet"),
  12729. weight: math.unit(150, "lb"),
  12730. name: "Front",
  12731. image: {
  12732. source: "./media/characters/umeko/front.svg",
  12733. extra: 1,
  12734. bottom: 0.019
  12735. }
  12736. },
  12737. frontArmored: {
  12738. height: math.unit(6, "feet"),
  12739. weight: math.unit(150, "lb"),
  12740. name: "Front (Armored)",
  12741. image: {
  12742. source: "./media/characters/umeko/front-armored.svg",
  12743. extra: 1,
  12744. bottom: 0.021
  12745. }
  12746. },
  12747. },
  12748. [
  12749. {
  12750. name: "Macro",
  12751. height: math.unit(220, "feet"),
  12752. default: true
  12753. },
  12754. {
  12755. name: "Guardian Dragon",
  12756. height: math.unit(50, "miles")
  12757. },
  12758. {
  12759. name: "Cosmic",
  12760. height: math.unit(800000, "miles")
  12761. },
  12762. ]
  12763. ))
  12764. characterMakers.push(() => makeCharacter(
  12765. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12766. {
  12767. front: {
  12768. height: math.unit(6, "feet"),
  12769. weight: math.unit(150, "lb"),
  12770. name: "Front",
  12771. image: {
  12772. source: "./media/characters/cassidy/front.svg",
  12773. extra: 1,
  12774. bottom: 0.043
  12775. }
  12776. },
  12777. },
  12778. [
  12779. {
  12780. name: "Canon Height",
  12781. height: math.unit(120, "feet"),
  12782. default: true
  12783. },
  12784. {
  12785. name: "Macro+",
  12786. height: math.unit(400, "feet")
  12787. },
  12788. {
  12789. name: "Macro++",
  12790. height: math.unit(4000, "feet")
  12791. },
  12792. {
  12793. name: "Megamacro",
  12794. height: math.unit(3, "miles")
  12795. },
  12796. ]
  12797. ))
  12798. characterMakers.push(() => makeCharacter(
  12799. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12800. {
  12801. front: {
  12802. height: math.unit(6, "feet"),
  12803. weight: math.unit(150, "lb"),
  12804. name: "Front",
  12805. image: {
  12806. source: "./media/characters/isaac/front.svg",
  12807. extra: 896 / 815,
  12808. bottom: 0.11
  12809. }
  12810. },
  12811. },
  12812. [
  12813. {
  12814. name: "Human Size",
  12815. height: math.unit(8, "feet"),
  12816. default: true
  12817. },
  12818. {
  12819. name: "Macro",
  12820. height: math.unit(400, "feet")
  12821. },
  12822. {
  12823. name: "Megamacro",
  12824. height: math.unit(50, "miles")
  12825. },
  12826. {
  12827. name: "Canon Height",
  12828. height: math.unit(200, "AU")
  12829. },
  12830. ]
  12831. ))
  12832. characterMakers.push(() => makeCharacter(
  12833. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  12834. {
  12835. front: {
  12836. height: math.unit(6, "feet"),
  12837. weight: math.unit(72, "kg"),
  12838. name: "Front",
  12839. image: {
  12840. source: "./media/characters/sleekit/front.svg",
  12841. extra: 4693 / 4487,
  12842. bottom: 0.012
  12843. }
  12844. },
  12845. },
  12846. [
  12847. {
  12848. name: "Minimum Height",
  12849. height: math.unit(10, "meters")
  12850. },
  12851. {
  12852. name: "Smaller",
  12853. height: math.unit(25, "meters")
  12854. },
  12855. {
  12856. name: "Larger",
  12857. height: math.unit(38, "meters"),
  12858. default: true
  12859. },
  12860. {
  12861. name: "Maximum height",
  12862. height: math.unit(100, "meters")
  12863. },
  12864. ]
  12865. ))
  12866. characterMakers.push(() => makeCharacter(
  12867. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  12868. {
  12869. front: {
  12870. height: math.unit(6, "feet"),
  12871. weight: math.unit(150, "lb"),
  12872. name: "Front",
  12873. image: {
  12874. source: "./media/characters/nillia/front.svg",
  12875. extra: 2195 / 2037,
  12876. bottom: 0.005
  12877. }
  12878. },
  12879. back: {
  12880. height: math.unit(6, "feet"),
  12881. weight: math.unit(150, "lb"),
  12882. name: "Back",
  12883. image: {
  12884. source: "./media/characters/nillia/back.svg",
  12885. extra: 2195 / 2037,
  12886. bottom: 0.005
  12887. }
  12888. },
  12889. },
  12890. [
  12891. {
  12892. name: "Canon Height",
  12893. height: math.unit(489, "feet"),
  12894. default: true
  12895. }
  12896. ]
  12897. ))
  12898. characterMakers.push(() => makeCharacter(
  12899. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  12900. {
  12901. front: {
  12902. height: math.unit(6, "feet"),
  12903. weight: math.unit(150, "lb"),
  12904. name: "Front",
  12905. image: {
  12906. source: "./media/characters/mesmyriza/front.svg",
  12907. extra: 2067 / 1784,
  12908. bottom: 0.035
  12909. }
  12910. },
  12911. foot: {
  12912. height: math.unit(6 / (250 / 35), "feet"),
  12913. name: "Foot",
  12914. image: {
  12915. source: "./media/characters/mesmyriza/foot.svg"
  12916. }
  12917. },
  12918. },
  12919. [
  12920. {
  12921. name: "Macro",
  12922. height: math.unit(457, "meters"),
  12923. default: true
  12924. },
  12925. {
  12926. name: "Megamacro",
  12927. height: math.unit(8, "megameters")
  12928. },
  12929. ]
  12930. ))
  12931. characterMakers.push(() => makeCharacter(
  12932. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  12933. {
  12934. front: {
  12935. height: math.unit(6, "feet"),
  12936. weight: math.unit(250, "lb"),
  12937. name: "Front",
  12938. image: {
  12939. source: "./media/characters/saudade/front.svg",
  12940. extra: 1172 / 1139,
  12941. bottom: 0.035
  12942. }
  12943. },
  12944. },
  12945. [
  12946. {
  12947. name: "Micro",
  12948. height: math.unit(3, "inches")
  12949. },
  12950. {
  12951. name: "Normal",
  12952. height: math.unit(6, "feet"),
  12953. default: true
  12954. },
  12955. {
  12956. name: "Macro",
  12957. height: math.unit(50, "feet")
  12958. },
  12959. {
  12960. name: "Megamacro",
  12961. height: math.unit(2800, "feet")
  12962. },
  12963. ]
  12964. ))
  12965. characterMakers.push(() => makeCharacter(
  12966. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  12967. {
  12968. front: {
  12969. height: math.unit(5 + 4 / 12, "feet"),
  12970. weight: math.unit(100, "lb"),
  12971. name: "Front",
  12972. image: {
  12973. source: "./media/characters/keireer/front.svg",
  12974. extra: 716 / 666,
  12975. bottom: 0.05
  12976. }
  12977. },
  12978. },
  12979. [
  12980. {
  12981. name: "Normal",
  12982. height: math.unit(5 + 4 / 12, "feet"),
  12983. default: true
  12984. },
  12985. ]
  12986. ))
  12987. characterMakers.push(() => makeCharacter(
  12988. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  12989. {
  12990. front: {
  12991. height: math.unit(6, "feet"),
  12992. weight: math.unit(90, "kg"),
  12993. name: "Front",
  12994. image: {
  12995. source: "./media/characters/mirja/front.svg",
  12996. extra: 1789 / 1683,
  12997. bottom: 0.05
  12998. }
  12999. },
  13000. frontDressed: {
  13001. height: math.unit(6, "feet"),
  13002. weight: math.unit(90, "lb"),
  13003. name: "Front (Dressed)",
  13004. image: {
  13005. source: "./media/characters/mirja/front-dressed.svg",
  13006. extra: 1789 / 1683,
  13007. bottom: 0.05
  13008. }
  13009. },
  13010. back: {
  13011. height: math.unit(6, "feet"),
  13012. weight: math.unit(90, "lb"),
  13013. name: "Back",
  13014. image: {
  13015. source: "./media/characters/mirja/back.svg",
  13016. extra: 953 / 917,
  13017. bottom: 0.017
  13018. }
  13019. },
  13020. },
  13021. [
  13022. {
  13023. name: "\"Incognito\"",
  13024. height: math.unit(3, "meters")
  13025. },
  13026. {
  13027. name: "Strolling Size",
  13028. height: math.unit(15, "km")
  13029. },
  13030. {
  13031. name: "Larger Strolling Size",
  13032. height: math.unit(400, "km")
  13033. },
  13034. {
  13035. name: "Preferred Size",
  13036. height: math.unit(5000, "km")
  13037. },
  13038. {
  13039. name: "True Size",
  13040. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13041. default: true
  13042. },
  13043. ]
  13044. ))
  13045. characterMakers.push(() => makeCharacter(
  13046. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13047. {
  13048. front: {
  13049. height: math.unit(15, "feet"),
  13050. weight: math.unit(880, "kg"),
  13051. name: "Front",
  13052. image: {
  13053. source: "./media/characters/nightraver/front.svg",
  13054. extra: 2444 / 2160,
  13055. bottom: 0.027
  13056. }
  13057. },
  13058. back: {
  13059. height: math.unit(15, "feet"),
  13060. weight: math.unit(880, "kg"),
  13061. name: "Back",
  13062. image: {
  13063. source: "./media/characters/nightraver/back.svg",
  13064. extra: 2309 / 2180,
  13065. bottom: 0.005
  13066. }
  13067. },
  13068. sole: {
  13069. height: math.unit(2.878, "feet"),
  13070. name: "Sole",
  13071. image: {
  13072. source: "./media/characters/nightraver/sole.svg"
  13073. }
  13074. },
  13075. foot: {
  13076. height: math.unit(2.285, "feet"),
  13077. name: "Foot",
  13078. image: {
  13079. source: "./media/characters/nightraver/foot.svg"
  13080. }
  13081. },
  13082. maw: {
  13083. height: math.unit(2.67, "feet"),
  13084. name: "Maw",
  13085. image: {
  13086. source: "./media/characters/nightraver/maw.svg"
  13087. }
  13088. },
  13089. },
  13090. [
  13091. {
  13092. name: "Micro",
  13093. height: math.unit(1, "cm")
  13094. },
  13095. {
  13096. name: "Normal",
  13097. height: math.unit(15, "feet"),
  13098. default: true
  13099. },
  13100. {
  13101. name: "Macro",
  13102. height: math.unit(300, "feet")
  13103. },
  13104. {
  13105. name: "Megamacro",
  13106. height: math.unit(300, "miles")
  13107. },
  13108. {
  13109. name: "Gigamacro",
  13110. height: math.unit(10000, "miles")
  13111. },
  13112. ]
  13113. ))
  13114. characterMakers.push(() => makeCharacter(
  13115. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13116. {
  13117. side: {
  13118. height: math.unit(2, "inches"),
  13119. weight: math.unit(5, "grams"),
  13120. name: "Side",
  13121. image: {
  13122. source: "./media/characters/arc/side.svg"
  13123. }
  13124. },
  13125. },
  13126. [
  13127. {
  13128. name: "Micro",
  13129. height: math.unit(2, "inches"),
  13130. default: true
  13131. },
  13132. ]
  13133. ))
  13134. characterMakers.push(() => makeCharacter(
  13135. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13136. {
  13137. front: {
  13138. height: math.unit(1.1938, "meters"),
  13139. weight: math.unit(54, "kg"),
  13140. name: "Front",
  13141. image: {
  13142. source: "./media/characters/nebula-shahar/front.svg",
  13143. extra: 1642 / 1436,
  13144. bottom: 0.06
  13145. }
  13146. },
  13147. },
  13148. [
  13149. {
  13150. name: "Megamicro",
  13151. height: math.unit(0.3, "mm")
  13152. },
  13153. {
  13154. name: "Micro",
  13155. height: math.unit(3, "cm")
  13156. },
  13157. {
  13158. name: "Normal",
  13159. height: math.unit(138, "cm"),
  13160. default: true
  13161. },
  13162. {
  13163. name: "Macro",
  13164. height: math.unit(30, "m")
  13165. },
  13166. ]
  13167. ))
  13168. characterMakers.push(() => makeCharacter(
  13169. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13170. {
  13171. front: {
  13172. height: math.unit(5.24, "feet"),
  13173. weight: math.unit(150, "lb"),
  13174. name: "Front",
  13175. image: {
  13176. source: "./media/characters/shayla/front.svg",
  13177. extra: 1512 / 1414,
  13178. bottom: 0.01
  13179. }
  13180. },
  13181. back: {
  13182. height: math.unit(5.24, "feet"),
  13183. weight: math.unit(150, "lb"),
  13184. name: "Back",
  13185. image: {
  13186. source: "./media/characters/shayla/back.svg",
  13187. extra: 1512 / 1414
  13188. }
  13189. },
  13190. hand: {
  13191. height: math.unit(0.7781496062992126, "feet"),
  13192. name: "Hand",
  13193. image: {
  13194. source: "./media/characters/shayla/hand.svg"
  13195. }
  13196. },
  13197. foot: {
  13198. height: math.unit(1.4206036745406823, "feet"),
  13199. name: "Foot",
  13200. image: {
  13201. source: "./media/characters/shayla/foot.svg"
  13202. }
  13203. },
  13204. },
  13205. [
  13206. {
  13207. name: "Micro",
  13208. height: math.unit(0.32, "feet")
  13209. },
  13210. {
  13211. name: "Normal",
  13212. height: math.unit(5.24, "feet"),
  13213. default: true
  13214. },
  13215. {
  13216. name: "Macro",
  13217. height: math.unit(492.12, "feet")
  13218. },
  13219. {
  13220. name: "Megamacro",
  13221. height: math.unit(186.41, "miles")
  13222. },
  13223. ]
  13224. ))
  13225. characterMakers.push(() => makeCharacter(
  13226. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13227. {
  13228. front: {
  13229. height: math.unit(2.2, "m"),
  13230. weight: math.unit(120, "kg"),
  13231. name: "Front",
  13232. image: {
  13233. source: "./media/characters/pia-jr/front.svg",
  13234. extra: 1000 / 970,
  13235. bottom: 0.035
  13236. }
  13237. },
  13238. hand: {
  13239. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13240. name: "Hand",
  13241. image: {
  13242. source: "./media/characters/pia-jr/hand.svg"
  13243. }
  13244. },
  13245. paw: {
  13246. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13247. name: "Paw",
  13248. image: {
  13249. source: "./media/characters/pia-jr/paw.svg"
  13250. }
  13251. },
  13252. },
  13253. [
  13254. {
  13255. name: "Micro",
  13256. height: math.unit(1.2, "cm")
  13257. },
  13258. {
  13259. name: "Normal",
  13260. height: math.unit(2.2, "m"),
  13261. default: true
  13262. },
  13263. {
  13264. name: "Macro",
  13265. height: math.unit(180, "m")
  13266. },
  13267. {
  13268. name: "Megamacro",
  13269. height: math.unit(420, "km")
  13270. },
  13271. ]
  13272. ))
  13273. characterMakers.push(() => makeCharacter(
  13274. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13275. {
  13276. front: {
  13277. height: math.unit(2, "m"),
  13278. weight: math.unit(115, "kg"),
  13279. name: "Front",
  13280. image: {
  13281. source: "./media/characters/pia-sr/front.svg",
  13282. extra: 760 / 730,
  13283. bottom: 0.015
  13284. }
  13285. },
  13286. back: {
  13287. height: math.unit(2, "m"),
  13288. weight: math.unit(115, "kg"),
  13289. name: "Back",
  13290. image: {
  13291. source: "./media/characters/pia-sr/back.svg",
  13292. extra: 760 / 730,
  13293. bottom: 0.01
  13294. }
  13295. },
  13296. hand: {
  13297. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13298. name: "Hand",
  13299. image: {
  13300. source: "./media/characters/pia-sr/hand.svg"
  13301. }
  13302. },
  13303. foot: {
  13304. height: math.unit(1.83, "feet"),
  13305. name: "Foot",
  13306. image: {
  13307. source: "./media/characters/pia-sr/foot.svg"
  13308. }
  13309. },
  13310. },
  13311. [
  13312. {
  13313. name: "Micro",
  13314. height: math.unit(88, "mm")
  13315. },
  13316. {
  13317. name: "Normal",
  13318. height: math.unit(2, "m"),
  13319. default: true
  13320. },
  13321. {
  13322. name: "Macro",
  13323. height: math.unit(200, "m")
  13324. },
  13325. {
  13326. name: "Megamacro",
  13327. height: math.unit(420, "km")
  13328. },
  13329. ]
  13330. ))
  13331. characterMakers.push(() => makeCharacter(
  13332. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13333. {
  13334. front: {
  13335. height: math.unit(8 + 2 / 12, "feet"),
  13336. weight: math.unit(300, "lb"),
  13337. name: "Front",
  13338. image: {
  13339. source: "./media/characters/kibibyte/front.svg",
  13340. extra: 2221 / 2098,
  13341. bottom: 0.04
  13342. }
  13343. },
  13344. },
  13345. [
  13346. {
  13347. name: "Normal",
  13348. height: math.unit(8 + 2 / 12, "feet"),
  13349. default: true
  13350. },
  13351. {
  13352. name: "Socialable Macro",
  13353. height: math.unit(50, "feet")
  13354. },
  13355. {
  13356. name: "Macro",
  13357. height: math.unit(300, "feet")
  13358. },
  13359. {
  13360. name: "Megamacro",
  13361. height: math.unit(500, "miles")
  13362. },
  13363. ]
  13364. ))
  13365. characterMakers.push(() => makeCharacter(
  13366. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13367. {
  13368. front: {
  13369. height: math.unit(6, "feet"),
  13370. weight: math.unit(150, "lb"),
  13371. name: "Front",
  13372. image: {
  13373. source: "./media/characters/felix/front.svg",
  13374. extra: 762 / 722,
  13375. bottom: 0.02
  13376. }
  13377. },
  13378. frontClothed: {
  13379. height: math.unit(6, "feet"),
  13380. weight: math.unit(150, "lb"),
  13381. name: "Front (Clothed)",
  13382. image: {
  13383. source: "./media/characters/felix/front-clothed.svg",
  13384. extra: 762 / 722,
  13385. bottom: 0.02
  13386. }
  13387. },
  13388. },
  13389. [
  13390. {
  13391. name: "Normal",
  13392. height: math.unit(6 + 8 / 12, "feet"),
  13393. default: true
  13394. },
  13395. {
  13396. name: "Macro",
  13397. height: math.unit(2600, "feet")
  13398. },
  13399. {
  13400. name: "Megamacro",
  13401. height: math.unit(450, "miles")
  13402. },
  13403. ]
  13404. ))
  13405. characterMakers.push(() => makeCharacter(
  13406. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13407. {
  13408. front: {
  13409. height: math.unit(6 + 1 / 12, "feet"),
  13410. weight: math.unit(250, "lb"),
  13411. name: "Front",
  13412. image: {
  13413. source: "./media/characters/tobo/front.svg",
  13414. extra: 608 / 586,
  13415. bottom: 0.023
  13416. }
  13417. },
  13418. back: {
  13419. height: math.unit(6 + 1 / 12, "feet"),
  13420. weight: math.unit(250, "lb"),
  13421. name: "Back",
  13422. image: {
  13423. source: "./media/characters/tobo/back.svg",
  13424. extra: 608 / 586
  13425. }
  13426. },
  13427. },
  13428. [
  13429. {
  13430. name: "Nano",
  13431. height: math.unit(2, "nm")
  13432. },
  13433. {
  13434. name: "Megamicro",
  13435. height: math.unit(0.1, "mm")
  13436. },
  13437. {
  13438. name: "Micro",
  13439. height: math.unit(1, "inch"),
  13440. default: true
  13441. },
  13442. {
  13443. name: "Human-sized",
  13444. height: math.unit(6 + 1 / 12, "feet")
  13445. },
  13446. {
  13447. name: "Macro",
  13448. height: math.unit(250, "feet")
  13449. },
  13450. {
  13451. name: "Megamacro",
  13452. height: math.unit(75, "miles")
  13453. },
  13454. {
  13455. name: "Texas-sized",
  13456. height: math.unit(750, "miles")
  13457. },
  13458. {
  13459. name: "Teramacro",
  13460. height: math.unit(50000, "miles")
  13461. },
  13462. ]
  13463. ))
  13464. characterMakers.push(() => makeCharacter(
  13465. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13466. {
  13467. front: {
  13468. height: math.unit(6, "feet"),
  13469. weight: math.unit(269, "lb"),
  13470. name: "Front",
  13471. image: {
  13472. source: "./media/characters/danny-kapowsky/front.svg",
  13473. extra: 766 / 736,
  13474. bottom: 0.044
  13475. }
  13476. },
  13477. back: {
  13478. height: math.unit(6, "feet"),
  13479. weight: math.unit(269, "lb"),
  13480. name: "Back",
  13481. image: {
  13482. source: "./media/characters/danny-kapowsky/back.svg",
  13483. extra: 797 / 760,
  13484. bottom: 0.025
  13485. }
  13486. },
  13487. },
  13488. [
  13489. {
  13490. name: "Macro",
  13491. height: math.unit(150, "feet"),
  13492. default: true
  13493. },
  13494. {
  13495. name: "Macro+",
  13496. height: math.unit(200, "feet")
  13497. },
  13498. {
  13499. name: "Macro++",
  13500. height: math.unit(300, "feet")
  13501. },
  13502. {
  13503. name: "Macro+++",
  13504. height: math.unit(400, "feet")
  13505. },
  13506. ]
  13507. ))
  13508. characterMakers.push(() => makeCharacter(
  13509. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13510. {
  13511. side: {
  13512. height: math.unit(6, "feet"),
  13513. weight: math.unit(170, "lb"),
  13514. name: "Side",
  13515. image: {
  13516. source: "./media/characters/finn/side.svg",
  13517. extra: 1953 / 1807,
  13518. bottom: 0.057
  13519. }
  13520. },
  13521. },
  13522. [
  13523. {
  13524. name: "Megamacro",
  13525. height: math.unit(14445, "feet"),
  13526. default: true
  13527. },
  13528. ]
  13529. ))
  13530. characterMakers.push(() => makeCharacter(
  13531. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13532. {
  13533. front: {
  13534. height: math.unit(5 + 6 / 12, "feet"),
  13535. weight: math.unit(125, "lb"),
  13536. name: "Front",
  13537. image: {
  13538. source: "./media/characters/roy/front.svg",
  13539. extra: 1,
  13540. bottom: 0.11
  13541. }
  13542. },
  13543. },
  13544. [
  13545. {
  13546. name: "Micro",
  13547. height: math.unit(3, "inches"),
  13548. default: true
  13549. },
  13550. {
  13551. name: "Normal",
  13552. height: math.unit(5 + 6 / 12, "feet")
  13553. },
  13554. {
  13555. name: "Lesser Macro",
  13556. height: math.unit(60, "feet")
  13557. },
  13558. {
  13559. name: "Greater Macro",
  13560. height: math.unit(120, "feet")
  13561. },
  13562. ]
  13563. ))
  13564. characterMakers.push(() => makeCharacter(
  13565. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13566. {
  13567. front: {
  13568. height: math.unit(6, "feet"),
  13569. weight: math.unit(100, "lb"),
  13570. name: "Front",
  13571. image: {
  13572. source: "./media/characters/aevsivs/front.svg",
  13573. extra: 1,
  13574. bottom: 0.03
  13575. }
  13576. },
  13577. back: {
  13578. height: math.unit(6, "feet"),
  13579. weight: math.unit(100, "lb"),
  13580. name: "Back",
  13581. image: {
  13582. source: "./media/characters/aevsivs/back.svg"
  13583. }
  13584. },
  13585. },
  13586. [
  13587. {
  13588. name: "Micro",
  13589. height: math.unit(2, "inches"),
  13590. default: true
  13591. },
  13592. {
  13593. name: "Normal",
  13594. height: math.unit(5, "feet")
  13595. },
  13596. ]
  13597. ))
  13598. characterMakers.push(() => makeCharacter(
  13599. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13600. {
  13601. front: {
  13602. height: math.unit(5 + 7 / 12, "feet"),
  13603. weight: math.unit(159, "lb"),
  13604. name: "Front",
  13605. image: {
  13606. source: "./media/characters/hildegard/front.svg",
  13607. extra: 312 / 286,
  13608. bottom: 0.005
  13609. }
  13610. },
  13611. },
  13612. [
  13613. {
  13614. name: "Normal",
  13615. height: math.unit(5 + 7 / 12, "feet"),
  13616. default: true
  13617. },
  13618. ]
  13619. ))
  13620. characterMakers.push(() => makeCharacter(
  13621. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13622. {
  13623. bernard: {
  13624. height: math.unit(2 + 7 / 12, "feet"),
  13625. weight: math.unit(66, "lb"),
  13626. name: "Bernard",
  13627. rename: true,
  13628. image: {
  13629. source: "./media/characters/bernard-wilder/bernard.svg",
  13630. extra: 192 / 128,
  13631. bottom: 0.05
  13632. }
  13633. },
  13634. wilder: {
  13635. height: math.unit(5 + 8 / 12, "feet"),
  13636. weight: math.unit(143, "lb"),
  13637. name: "Wilder",
  13638. rename: true,
  13639. image: {
  13640. source: "./media/characters/bernard-wilder/wilder.svg",
  13641. extra: 361 / 312,
  13642. bottom: 0.02
  13643. }
  13644. },
  13645. },
  13646. [
  13647. {
  13648. name: "Normal",
  13649. height: math.unit(2 + 7 / 12, "feet"),
  13650. default: true
  13651. },
  13652. ]
  13653. ))
  13654. characterMakers.push(() => makeCharacter(
  13655. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13656. {
  13657. anthro: {
  13658. height: math.unit(6 + 1 / 12, "feet"),
  13659. weight: math.unit(155, "lb"),
  13660. name: "Anthro",
  13661. image: {
  13662. source: "./media/characters/hearth/anthro.svg",
  13663. extra: 260 / 250,
  13664. bottom: 0.02
  13665. }
  13666. },
  13667. feral: {
  13668. height: math.unit(3.78, "feet"),
  13669. weight: math.unit(35, "kg"),
  13670. name: "Feral",
  13671. image: {
  13672. source: "./media/characters/hearth/feral.svg",
  13673. extra: 153 / 135,
  13674. bottom: 0.03
  13675. }
  13676. },
  13677. },
  13678. [
  13679. {
  13680. name: "Normal",
  13681. height: math.unit(6 + 1 / 12, "feet"),
  13682. default: true
  13683. },
  13684. ]
  13685. ))
  13686. characterMakers.push(() => makeCharacter(
  13687. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13688. {
  13689. front: {
  13690. height: math.unit(6, "feet"),
  13691. weight: math.unit(182, "lb"),
  13692. name: "Front",
  13693. image: {
  13694. source: "./media/characters/ingrid/front.svg",
  13695. extra: 294 / 268,
  13696. bottom: 0.027
  13697. }
  13698. },
  13699. },
  13700. [
  13701. {
  13702. name: "Normal",
  13703. height: math.unit(6, "feet"),
  13704. default: true
  13705. },
  13706. ]
  13707. ))
  13708. characterMakers.push(() => makeCharacter(
  13709. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13710. {
  13711. eevee: {
  13712. height: math.unit(2 + 10 / 12, "feet"),
  13713. weight: math.unit(86, "lb"),
  13714. name: "Malgam",
  13715. image: {
  13716. source: "./media/characters/malgam/eevee.svg",
  13717. extra: 218 / 180,
  13718. bottom: 0.2
  13719. }
  13720. },
  13721. sylveon: {
  13722. height: math.unit(4, "feet"),
  13723. weight: math.unit(101, "lb"),
  13724. name: "Future Malgam",
  13725. rename: true,
  13726. image: {
  13727. source: "./media/characters/malgam/sylveon.svg",
  13728. extra: 371 / 325,
  13729. bottom: 0.015
  13730. }
  13731. },
  13732. gigantamax: {
  13733. height: math.unit(50, "feet"),
  13734. name: "Gigantamax Malgam",
  13735. rename: true,
  13736. image: {
  13737. source: "./media/characters/malgam/gigantamax.svg"
  13738. }
  13739. },
  13740. },
  13741. [
  13742. {
  13743. name: "Normal",
  13744. height: math.unit(2 + 10 / 12, "feet"),
  13745. default: true
  13746. },
  13747. ]
  13748. ))
  13749. characterMakers.push(() => makeCharacter(
  13750. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13751. {
  13752. front: {
  13753. height: math.unit(5 + 11 / 12, "feet"),
  13754. weight: math.unit(188, "lb"),
  13755. name: "Front",
  13756. image: {
  13757. source: "./media/characters/fleur/front.svg",
  13758. extra: 309 / 283,
  13759. bottom: 0.007
  13760. }
  13761. },
  13762. },
  13763. [
  13764. {
  13765. name: "Normal",
  13766. height: math.unit(5 + 11 / 12, "feet"),
  13767. default: true
  13768. },
  13769. ]
  13770. ))
  13771. characterMakers.push(() => makeCharacter(
  13772. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13773. {
  13774. front: {
  13775. height: math.unit(5 + 4 / 12, "feet"),
  13776. weight: math.unit(122, "lb"),
  13777. name: "Front",
  13778. image: {
  13779. source: "./media/characters/jude/front.svg",
  13780. extra: 288 / 273,
  13781. bottom: 0.03
  13782. }
  13783. },
  13784. },
  13785. [
  13786. {
  13787. name: "Normal",
  13788. height: math.unit(5 + 4 / 12, "feet"),
  13789. default: true
  13790. },
  13791. ]
  13792. ))
  13793. characterMakers.push(() => makeCharacter(
  13794. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13795. {
  13796. front: {
  13797. height: math.unit(5 + 11 / 12, "feet"),
  13798. weight: math.unit(190, "lb"),
  13799. name: "Front",
  13800. image: {
  13801. source: "./media/characters/seara/front.svg",
  13802. extra: 1,
  13803. bottom: 0.05
  13804. }
  13805. },
  13806. },
  13807. [
  13808. {
  13809. name: "Normal",
  13810. height: math.unit(5 + 11 / 12, "feet"),
  13811. default: true
  13812. },
  13813. ]
  13814. ))
  13815. characterMakers.push(() => makeCharacter(
  13816. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  13817. {
  13818. front: {
  13819. height: math.unit(16 + 5 / 12, "feet"),
  13820. weight: math.unit(524, "lb"),
  13821. name: "Front",
  13822. image: {
  13823. source: "./media/characters/caspian/front.svg",
  13824. extra: 1,
  13825. bottom: 0.04
  13826. }
  13827. },
  13828. },
  13829. [
  13830. {
  13831. name: "Normal",
  13832. height: math.unit(16 + 5 / 12, "feet"),
  13833. default: true
  13834. },
  13835. ]
  13836. ))
  13837. characterMakers.push(() => makeCharacter(
  13838. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  13839. {
  13840. front: {
  13841. height: math.unit(5 + 7 / 12, "feet"),
  13842. weight: math.unit(170, "lb"),
  13843. name: "Front",
  13844. image: {
  13845. source: "./media/characters/mika/front.svg",
  13846. extra: 1,
  13847. bottom: 0.016
  13848. }
  13849. },
  13850. },
  13851. [
  13852. {
  13853. name: "Normal",
  13854. height: math.unit(5 + 7 / 12, "feet"),
  13855. default: true
  13856. },
  13857. ]
  13858. ))
  13859. characterMakers.push(() => makeCharacter(
  13860. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  13861. {
  13862. front: {
  13863. height: math.unit(6 + 2 / 12, "feet"),
  13864. weight: math.unit(268, "lb"),
  13865. name: "Front",
  13866. image: {
  13867. source: "./media/characters/sol/front.svg",
  13868. extra: 247 / 231,
  13869. bottom: 0.05
  13870. }
  13871. },
  13872. },
  13873. [
  13874. {
  13875. name: "Normal",
  13876. height: math.unit(6 + 2 / 12, "feet"),
  13877. default: true
  13878. },
  13879. ]
  13880. ))
  13881. characterMakers.push(() => makeCharacter(
  13882. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  13883. {
  13884. buizel: {
  13885. height: math.unit(2 + 5 / 12, "feet"),
  13886. weight: math.unit(87, "lb"),
  13887. name: "Buizel",
  13888. image: {
  13889. source: "./media/characters/umiko/buizel.svg",
  13890. extra: 172 / 157,
  13891. bottom: 0.01
  13892. }
  13893. },
  13894. floatzel: {
  13895. height: math.unit(5 + 9 / 12, "feet"),
  13896. weight: math.unit(250, "lb"),
  13897. name: "Floatzel",
  13898. image: {
  13899. source: "./media/characters/umiko/floatzel.svg",
  13900. extra: 262 / 248
  13901. }
  13902. },
  13903. },
  13904. [
  13905. {
  13906. name: "Normal",
  13907. height: math.unit(2 + 5 / 12, "feet"),
  13908. default: true
  13909. },
  13910. ]
  13911. ))
  13912. characterMakers.push(() => makeCharacter(
  13913. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  13914. {
  13915. front: {
  13916. height: math.unit(6 + 2 / 12, "feet"),
  13917. weight: math.unit(146, "lb"),
  13918. name: "Front",
  13919. image: {
  13920. source: "./media/characters/iliac/front.svg",
  13921. extra: 389 / 365,
  13922. bottom: 0.035
  13923. }
  13924. },
  13925. },
  13926. [
  13927. {
  13928. name: "Normal",
  13929. height: math.unit(6 + 2 / 12, "feet"),
  13930. default: true
  13931. },
  13932. ]
  13933. ))
  13934. characterMakers.push(() => makeCharacter(
  13935. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  13936. {
  13937. front: {
  13938. height: math.unit(6, "feet"),
  13939. weight: math.unit(170, "lb"),
  13940. name: "Front",
  13941. image: {
  13942. source: "./media/characters/topaz/front.svg",
  13943. extra: 317 / 303,
  13944. bottom: 0.055
  13945. }
  13946. },
  13947. },
  13948. [
  13949. {
  13950. name: "Normal",
  13951. height: math.unit(6, "feet"),
  13952. default: true
  13953. },
  13954. ]
  13955. ))
  13956. characterMakers.push(() => makeCharacter(
  13957. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  13958. {
  13959. front: {
  13960. height: math.unit(5 + 11 / 12, "feet"),
  13961. weight: math.unit(144, "lb"),
  13962. name: "Front",
  13963. image: {
  13964. source: "./media/characters/gabriel/front.svg",
  13965. extra: 285 / 262,
  13966. bottom: 0.004
  13967. }
  13968. },
  13969. },
  13970. [
  13971. {
  13972. name: "Normal",
  13973. height: math.unit(5 + 11 / 12, "feet"),
  13974. default: true
  13975. },
  13976. ]
  13977. ))
  13978. characterMakers.push(() => makeCharacter(
  13979. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  13980. {
  13981. side: {
  13982. height: math.unit(6 + 5 / 12, "feet"),
  13983. weight: math.unit(300, "lb"),
  13984. name: "Side",
  13985. image: {
  13986. source: "./media/characters/tempest-suicune/side.svg",
  13987. extra: 195 / 154,
  13988. bottom: 0.04
  13989. }
  13990. },
  13991. },
  13992. [
  13993. {
  13994. name: "Normal",
  13995. height: math.unit(6 + 5 / 12, "feet"),
  13996. default: true
  13997. },
  13998. ]
  13999. ))
  14000. characterMakers.push(() => makeCharacter(
  14001. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14002. {
  14003. front: {
  14004. height: math.unit(7 + 2 / 12, "feet"),
  14005. weight: math.unit(322, "lb"),
  14006. name: "Front",
  14007. image: {
  14008. source: "./media/characters/vulcan/front.svg",
  14009. extra: 154 / 147,
  14010. bottom: 0.04
  14011. }
  14012. },
  14013. },
  14014. [
  14015. {
  14016. name: "Normal",
  14017. height: math.unit(7 + 2 / 12, "feet"),
  14018. default: true
  14019. },
  14020. ]
  14021. ))
  14022. characterMakers.push(() => makeCharacter(
  14023. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14024. {
  14025. front: {
  14026. height: math.unit(5 + 10 / 12, "feet"),
  14027. weight: math.unit(264, "lb"),
  14028. name: "Front",
  14029. image: {
  14030. source: "./media/characters/gault/front.svg",
  14031. extra: 161 / 140,
  14032. bottom: 0.028
  14033. }
  14034. },
  14035. },
  14036. [
  14037. {
  14038. name: "Normal",
  14039. height: math.unit(5 + 10 / 12, "feet"),
  14040. default: true
  14041. },
  14042. ]
  14043. ))
  14044. characterMakers.push(() => makeCharacter(
  14045. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14046. {
  14047. front: {
  14048. height: math.unit(6, "feet"),
  14049. weight: math.unit(150, "lb"),
  14050. name: "Front",
  14051. image: {
  14052. source: "./media/characters/shard/front.svg",
  14053. extra: 273 / 238,
  14054. bottom: 0.02
  14055. }
  14056. },
  14057. },
  14058. [
  14059. {
  14060. name: "Normal",
  14061. height: math.unit(3 + 6 / 12, "feet"),
  14062. default: true
  14063. },
  14064. ]
  14065. ))
  14066. characterMakers.push(() => makeCharacter(
  14067. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14068. {
  14069. front: {
  14070. height: math.unit(5 + 11 / 12, "feet"),
  14071. weight: math.unit(146, "lb"),
  14072. name: "Front",
  14073. image: {
  14074. source: "./media/characters/ashe/front.svg",
  14075. extra: 400 / 373,
  14076. bottom: 0.01
  14077. }
  14078. },
  14079. },
  14080. [
  14081. {
  14082. name: "Normal",
  14083. height: math.unit(5 + 11 / 12, "feet"),
  14084. default: true
  14085. },
  14086. ]
  14087. ))
  14088. characterMakers.push(() => makeCharacter(
  14089. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14090. {
  14091. front: {
  14092. height: math.unit(5 + 5 / 12, "feet"),
  14093. weight: math.unit(135, "lb"),
  14094. name: "Front",
  14095. image: {
  14096. source: "./media/characters/beatrix/front.svg",
  14097. extra: 392 / 379,
  14098. bottom: 0.01
  14099. }
  14100. },
  14101. },
  14102. [
  14103. {
  14104. name: "Normal",
  14105. height: math.unit(6, "feet"),
  14106. default: true
  14107. },
  14108. ]
  14109. ))
  14110. characterMakers.push(() => makeCharacter(
  14111. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14112. {
  14113. front: {
  14114. height: math.unit(6, "feet"),
  14115. weight: math.unit(150, "lb"),
  14116. name: "Front",
  14117. image: {
  14118. source: "./media/characters/ignatius/front.svg",
  14119. extra: 245 / 222,
  14120. bottom: 0.01
  14121. }
  14122. },
  14123. },
  14124. [
  14125. {
  14126. name: "Normal",
  14127. height: math.unit(5 + 5 / 12, "feet"),
  14128. default: true
  14129. },
  14130. ]
  14131. ))
  14132. characterMakers.push(() => makeCharacter(
  14133. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14134. {
  14135. front: {
  14136. height: math.unit(6 + 2 / 12, "feet"),
  14137. weight: math.unit(138, "lb"),
  14138. name: "Front",
  14139. image: {
  14140. source: "./media/characters/mei-li/front.svg",
  14141. extra: 237 / 229,
  14142. bottom: 0.03
  14143. }
  14144. },
  14145. },
  14146. [
  14147. {
  14148. name: "Normal",
  14149. height: math.unit(6 + 2 / 12, "feet"),
  14150. default: true
  14151. },
  14152. ]
  14153. ))
  14154. characterMakers.push(() => makeCharacter(
  14155. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14156. {
  14157. front: {
  14158. height: math.unit(2 + 4 / 12, "feet"),
  14159. weight: math.unit(62, "lb"),
  14160. name: "Front",
  14161. image: {
  14162. source: "./media/characters/puru/front.svg",
  14163. extra: 206 / 149,
  14164. bottom: 0.06
  14165. }
  14166. },
  14167. },
  14168. [
  14169. {
  14170. name: "Normal",
  14171. height: math.unit(2 + 4 / 12, "feet"),
  14172. default: true
  14173. },
  14174. ]
  14175. ))
  14176. characterMakers.push(() => makeCharacter(
  14177. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14178. {
  14179. taur: {
  14180. height: math.unit(11, "feet"),
  14181. weight: math.unit(500, "lb"),
  14182. name: "Taur",
  14183. image: {
  14184. source: "./media/characters/kee/taur.svg",
  14185. extra: 1,
  14186. bottom: 0.04
  14187. }
  14188. },
  14189. },
  14190. [
  14191. {
  14192. name: "Normal",
  14193. height: math.unit(11, "feet"),
  14194. default: true
  14195. },
  14196. ]
  14197. ))
  14198. characterMakers.push(() => makeCharacter(
  14199. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14200. {
  14201. anthro: {
  14202. height: math.unit(7, "feet"),
  14203. weight: math.unit(190, "lb"),
  14204. name: "Anthro",
  14205. image: {
  14206. source: "./media/characters/cobalt-dracha/anthro.svg",
  14207. extra: 231 / 225,
  14208. bottom: 0.04
  14209. }
  14210. },
  14211. feral: {
  14212. height: math.unit(9 + 7 / 12, "feet"),
  14213. weight: math.unit(294, "lb"),
  14214. name: "Feral",
  14215. image: {
  14216. source: "./media/characters/cobalt-dracha/feral.svg",
  14217. extra: 692 / 633,
  14218. bottom: 0.05
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Normal",
  14225. height: math.unit(7, "feet"),
  14226. default: true
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Java", species: ["snake"], tags: ["naga"] },
  14232. {
  14233. fallen: {
  14234. height: math.unit(11 + 8 / 12, "feet"),
  14235. weight: math.unit(485, "lb"),
  14236. name: "Java (Fallen)",
  14237. rename: true,
  14238. image: {
  14239. source: "./media/characters/java/fallen.svg",
  14240. extra: 226 / 208,
  14241. bottom: 0.005
  14242. }
  14243. },
  14244. godkin: {
  14245. height: math.unit(10 + 6 / 12, "feet"),
  14246. weight: math.unit(328, "lb"),
  14247. name: "Java (Godkin)",
  14248. rename: true,
  14249. image: {
  14250. source: "./media/characters/java/godkin.svg",
  14251. extra: 270 / 262,
  14252. bottom: 0.02
  14253. }
  14254. },
  14255. },
  14256. [
  14257. {
  14258. name: "Normal",
  14259. height: math.unit(11 + 8 / 12, "feet"),
  14260. default: true
  14261. },
  14262. ]
  14263. ))
  14264. characterMakers.push(() => makeCharacter(
  14265. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14266. {
  14267. front: {
  14268. height: math.unit(7 + 8 / 12, "feet"),
  14269. weight: math.unit(320, "lb"),
  14270. name: "Front",
  14271. image: {
  14272. source: "./media/characters/skoll/front.svg",
  14273. extra: 232 / 220,
  14274. bottom: 0.02
  14275. }
  14276. },
  14277. },
  14278. [
  14279. {
  14280. name: "Normal",
  14281. height: math.unit(7 + 8 / 12, "feet"),
  14282. default: true
  14283. },
  14284. ]
  14285. ))
  14286. characterMakers.push(() => makeCharacter(
  14287. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14288. {
  14289. front: {
  14290. height: math.unit(5 + 9 / 12, "feet"),
  14291. weight: math.unit(170, "lb"),
  14292. name: "Front",
  14293. image: {
  14294. source: "./media/characters/purna/front.svg",
  14295. extra: 239 / 229,
  14296. bottom: 0.01
  14297. }
  14298. },
  14299. },
  14300. [
  14301. {
  14302. name: "Normal",
  14303. height: math.unit(5 + 9 / 12, "feet"),
  14304. default: true
  14305. },
  14306. ]
  14307. ))
  14308. characterMakers.push(() => makeCharacter(
  14309. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14310. {
  14311. front: {
  14312. height: math.unit(5 + 9 / 12, "feet"),
  14313. weight: math.unit(142, "lb"),
  14314. name: "Front",
  14315. image: {
  14316. source: "./media/characters/kuva/front.svg",
  14317. extra: 281 / 271,
  14318. bottom: 0.006
  14319. }
  14320. },
  14321. },
  14322. [
  14323. {
  14324. name: "Normal",
  14325. height: math.unit(5 + 9 / 12, "feet"),
  14326. default: true
  14327. },
  14328. ]
  14329. ))
  14330. characterMakers.push(() => makeCharacter(
  14331. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14332. {
  14333. anthro: {
  14334. height: math.unit(9 + 2 / 12, "feet"),
  14335. weight: math.unit(270, "lb"),
  14336. name: "Anthro",
  14337. image: {
  14338. source: "./media/characters/embra/anthro.svg",
  14339. extra: 200 / 187,
  14340. bottom: 0.02
  14341. }
  14342. },
  14343. feral: {
  14344. height: math.unit(18 + 8 / 12, "feet"),
  14345. weight: math.unit(576, "lb"),
  14346. name: "Feral",
  14347. image: {
  14348. source: "./media/characters/embra/feral.svg",
  14349. extra: 152 / 137,
  14350. bottom: 0.037
  14351. }
  14352. },
  14353. },
  14354. [
  14355. {
  14356. name: "Normal",
  14357. height: math.unit(9 + 2 / 12, "feet"),
  14358. default: true
  14359. },
  14360. ]
  14361. ))
  14362. characterMakers.push(() => makeCharacter(
  14363. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14364. {
  14365. anthro: {
  14366. height: math.unit(10 + 9 / 12, "feet"),
  14367. weight: math.unit(224, "lb"),
  14368. name: "Anthro",
  14369. image: {
  14370. source: "./media/characters/grottos/anthro.svg",
  14371. extra: 350 / 332,
  14372. bottom: 0.045
  14373. }
  14374. },
  14375. feral: {
  14376. height: math.unit(20 + 7 / 12, "feet"),
  14377. weight: math.unit(629, "lb"),
  14378. name: "Feral",
  14379. image: {
  14380. source: "./media/characters/grottos/feral.svg",
  14381. extra: 207 / 190,
  14382. bottom: 0.05
  14383. }
  14384. },
  14385. },
  14386. [
  14387. {
  14388. name: "Normal",
  14389. height: math.unit(10 + 9 / 12, "feet"),
  14390. default: true
  14391. },
  14392. ]
  14393. ))
  14394. characterMakers.push(() => makeCharacter(
  14395. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14396. {
  14397. anthro: {
  14398. height: math.unit(9 + 6 / 12, "feet"),
  14399. weight: math.unit(298, "lb"),
  14400. name: "Anthro",
  14401. image: {
  14402. source: "./media/characters/frifna/anthro.svg",
  14403. extra: 282 / 269,
  14404. bottom: 0.015
  14405. }
  14406. },
  14407. feral: {
  14408. height: math.unit(16 + 2 / 12, "feet"),
  14409. weight: math.unit(624, "lb"),
  14410. name: "Feral",
  14411. image: {
  14412. source: "./media/characters/frifna/feral.svg"
  14413. }
  14414. },
  14415. },
  14416. [
  14417. {
  14418. name: "Normal",
  14419. height: math.unit(9 + 6 / 12, "feet"),
  14420. default: true
  14421. },
  14422. ]
  14423. ))
  14424. characterMakers.push(() => makeCharacter(
  14425. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14426. {
  14427. front: {
  14428. height: math.unit(6 + 2 / 12, "feet"),
  14429. weight: math.unit(168, "lb"),
  14430. name: "Front",
  14431. image: {
  14432. source: "./media/characters/elise/front.svg",
  14433. extra: 276 / 271
  14434. }
  14435. },
  14436. },
  14437. [
  14438. {
  14439. name: "Normal",
  14440. height: math.unit(6 + 2 / 12, "feet"),
  14441. default: true
  14442. },
  14443. ]
  14444. ))
  14445. characterMakers.push(() => makeCharacter(
  14446. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14447. {
  14448. front: {
  14449. height: math.unit(5 + 10 / 12, "feet"),
  14450. weight: math.unit(210, "lb"),
  14451. name: "Front",
  14452. image: {
  14453. source: "./media/characters/glade/front.svg",
  14454. extra: 258 / 247,
  14455. bottom: 0.008
  14456. }
  14457. },
  14458. },
  14459. [
  14460. {
  14461. name: "Normal",
  14462. height: math.unit(5 + 10 / 12, "feet"),
  14463. default: true
  14464. },
  14465. ]
  14466. ))
  14467. characterMakers.push(() => makeCharacter(
  14468. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14469. {
  14470. front: {
  14471. height: math.unit(5 + 10 / 12, "feet"),
  14472. weight: math.unit(129, "lb"),
  14473. name: "Front",
  14474. image: {
  14475. source: "./media/characters/rina/front.svg",
  14476. extra: 266 / 255,
  14477. bottom: 0.005
  14478. }
  14479. },
  14480. },
  14481. [
  14482. {
  14483. name: "Normal",
  14484. height: math.unit(5 + 10 / 12, "feet"),
  14485. default: true
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14491. {
  14492. front: {
  14493. height: math.unit(6 + 1 / 12, "feet"),
  14494. weight: math.unit(192, "lb"),
  14495. name: "Front",
  14496. image: {
  14497. source: "./media/characters/veronica/front.svg",
  14498. extra: 319 / 309,
  14499. bottom: 0.005
  14500. }
  14501. },
  14502. },
  14503. [
  14504. {
  14505. name: "Normal",
  14506. height: math.unit(6 + 1 / 12, "feet"),
  14507. default: true
  14508. },
  14509. ]
  14510. ))
  14511. characterMakers.push(() => makeCharacter(
  14512. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14513. {
  14514. front: {
  14515. height: math.unit(9 + 3 / 12, "feet"),
  14516. weight: math.unit(1100, "lb"),
  14517. name: "Front",
  14518. image: {
  14519. source: "./media/characters/braxton/front.svg",
  14520. extra: 1057 / 984,
  14521. bottom: 0.05
  14522. }
  14523. },
  14524. },
  14525. [
  14526. {
  14527. name: "Normal",
  14528. height: math.unit(9 + 3 / 12, "feet")
  14529. },
  14530. {
  14531. name: "Giant",
  14532. height: math.unit(300, "feet"),
  14533. default: true
  14534. },
  14535. {
  14536. name: "Macro",
  14537. height: math.unit(700, "feet")
  14538. },
  14539. {
  14540. name: "Megamacro",
  14541. height: math.unit(6000, "feet")
  14542. },
  14543. ]
  14544. ))
  14545. characterMakers.push(() => makeCharacter(
  14546. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14547. {
  14548. front: {
  14549. height: math.unit(6 + 7 / 12, "feet"),
  14550. weight: math.unit(150, "lb"),
  14551. name: "Front",
  14552. image: {
  14553. source: "./media/characters/blue-feyonics/front.svg",
  14554. extra: 1403 / 1306,
  14555. bottom: 0.047
  14556. }
  14557. },
  14558. },
  14559. [
  14560. {
  14561. name: "Normal",
  14562. height: math.unit(6 + 7 / 12, "feet"),
  14563. default: true
  14564. },
  14565. ]
  14566. ))
  14567. characterMakers.push(() => makeCharacter(
  14568. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14569. {
  14570. front: {
  14571. height: math.unit(1.8, "meters"),
  14572. weight: math.unit(60, "kg"),
  14573. name: "Front",
  14574. image: {
  14575. source: "./media/characters/maxwell/front.svg",
  14576. extra: 2060 / 1873
  14577. }
  14578. },
  14579. },
  14580. [
  14581. {
  14582. name: "Micro",
  14583. height: math.unit(1, "mm")
  14584. },
  14585. {
  14586. name: "Normal",
  14587. height: math.unit(1.8, "meter"),
  14588. default: true
  14589. },
  14590. {
  14591. name: "Macro",
  14592. height: math.unit(30, "meters")
  14593. },
  14594. {
  14595. name: "Megamacro",
  14596. height: math.unit(10, "km")
  14597. },
  14598. ]
  14599. ))
  14600. characterMakers.push(() => makeCharacter(
  14601. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14602. {
  14603. front: {
  14604. height: math.unit(6, "feet"),
  14605. weight: math.unit(150, "lb"),
  14606. name: "Front",
  14607. image: {
  14608. source: "./media/characters/jack/front.svg",
  14609. extra: 1754 / 1640,
  14610. bottom: 0.01
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Normal",
  14617. height: math.unit(80000, "feet"),
  14618. default: true
  14619. },
  14620. {
  14621. name: "Max size",
  14622. height: math.unit(10, "lightyears")
  14623. },
  14624. ]
  14625. ))
  14626. characterMakers.push(() => makeCharacter(
  14627. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14628. {
  14629. upright: {
  14630. height: math.unit(7, "feet"),
  14631. weight: math.unit(170, "lb"),
  14632. name: "Upright",
  14633. image: {
  14634. source: "./media/characters/cafat/upright.svg",
  14635. bottom: 0.01
  14636. }
  14637. },
  14638. uprightFull: {
  14639. height: math.unit(7, "feet"),
  14640. weight: math.unit(170, "lb"),
  14641. name: "Upright (Full)",
  14642. image: {
  14643. source: "./media/characters/cafat/upright-full.svg",
  14644. bottom: 0.01
  14645. }
  14646. },
  14647. side: {
  14648. height: math.unit(5, "feet"),
  14649. weight: math.unit(150, "lb"),
  14650. name: "Side",
  14651. image: {
  14652. source: "./media/characters/cafat/side.svg"
  14653. }
  14654. },
  14655. },
  14656. [
  14657. {
  14658. name: "Small",
  14659. height: math.unit(7, "feet"),
  14660. default: true
  14661. },
  14662. {
  14663. name: "Large",
  14664. height: math.unit(15.5, "feet")
  14665. },
  14666. ]
  14667. ))
  14668. characterMakers.push(() => makeCharacter(
  14669. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14670. {
  14671. front: {
  14672. height: math.unit(6, "feet"),
  14673. weight: math.unit(150, "lb"),
  14674. name: "Front",
  14675. image: {
  14676. source: "./media/characters/verin-raharra/front.svg",
  14677. extra: 5019 / 4835,
  14678. bottom: 0.023
  14679. }
  14680. },
  14681. },
  14682. [
  14683. {
  14684. name: "Normal",
  14685. height: math.unit(7 + 5 / 12, "feet"),
  14686. default: true
  14687. },
  14688. {
  14689. name: "Upsized",
  14690. height: math.unit(20, "feet")
  14691. },
  14692. ]
  14693. ))
  14694. characterMakers.push(() => makeCharacter(
  14695. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14696. {
  14697. front: {
  14698. height: math.unit(7, "feet"),
  14699. weight: math.unit(230, "lb"),
  14700. name: "Front",
  14701. image: {
  14702. source: "./media/characters/nakata/front.svg",
  14703. extra: 1.005,
  14704. bottom: 0.01
  14705. }
  14706. },
  14707. },
  14708. [
  14709. {
  14710. name: "Normal",
  14711. height: math.unit(7, "feet"),
  14712. default: true
  14713. },
  14714. {
  14715. name: "Big",
  14716. height: math.unit(14, "feet")
  14717. },
  14718. {
  14719. name: "Macro",
  14720. height: math.unit(400, "feet")
  14721. },
  14722. ]
  14723. ))
  14724. characterMakers.push(() => makeCharacter(
  14725. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14726. {
  14727. front: {
  14728. height: math.unit(4.91, "feet"),
  14729. weight: math.unit(100, "lb"),
  14730. name: "Front",
  14731. image: {
  14732. source: "./media/characters/lily/front.svg",
  14733. extra: 1585 / 1415,
  14734. bottom: 0.02
  14735. }
  14736. },
  14737. },
  14738. [
  14739. {
  14740. name: "Normal",
  14741. height: math.unit(4.91, "feet"),
  14742. default: true
  14743. },
  14744. ]
  14745. ))
  14746. characterMakers.push(() => makeCharacter(
  14747. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14748. {
  14749. laying: {
  14750. height: math.unit(4 + 4 / 12, "feet"),
  14751. weight: math.unit(600, "lb"),
  14752. name: "Laying",
  14753. image: {
  14754. source: "./media/characters/sheila/laying.svg",
  14755. extra: 1333 / 1265,
  14756. bottom: 0.16
  14757. }
  14758. },
  14759. },
  14760. [
  14761. {
  14762. name: "Normal",
  14763. height: math.unit(4 + 4 / 12, "feet"),
  14764. default: true
  14765. },
  14766. ]
  14767. ))
  14768. characterMakers.push(() => makeCharacter(
  14769. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14770. {
  14771. front: {
  14772. height: math.unit(6, "feet"),
  14773. weight: math.unit(190, "lb"),
  14774. name: "Front",
  14775. image: {
  14776. source: "./media/characters/sax/front.svg",
  14777. extra: 1187 / 973,
  14778. bottom: 0.042
  14779. }
  14780. },
  14781. },
  14782. [
  14783. {
  14784. name: "Micro",
  14785. height: math.unit(4, "inches"),
  14786. default: true
  14787. },
  14788. ]
  14789. ))
  14790. characterMakers.push(() => makeCharacter(
  14791. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14792. {
  14793. front: {
  14794. height: math.unit(6, "feet"),
  14795. weight: math.unit(150, "lb"),
  14796. name: "Front",
  14797. image: {
  14798. source: "./media/characters/pandora/front.svg",
  14799. extra: 2720 / 2556,
  14800. bottom: 0.015
  14801. }
  14802. },
  14803. back: {
  14804. height: math.unit(6, "feet"),
  14805. weight: math.unit(150, "lb"),
  14806. name: "Back",
  14807. image: {
  14808. source: "./media/characters/pandora/back.svg",
  14809. extra: 2720 / 2556,
  14810. bottom: 0.01
  14811. }
  14812. },
  14813. beans: {
  14814. height: math.unit(6 / 8, "feet"),
  14815. name: "Beans",
  14816. image: {
  14817. source: "./media/characters/pandora/beans.svg"
  14818. }
  14819. },
  14820. skirt: {
  14821. height: math.unit(6, "feet"),
  14822. weight: math.unit(150, "lb"),
  14823. name: "Skirt",
  14824. image: {
  14825. source: "./media/characters/pandora/skirt.svg",
  14826. extra: 1622 / 1525,
  14827. bottom: 0.015
  14828. }
  14829. },
  14830. hoodie: {
  14831. height: math.unit(6, "feet"),
  14832. weight: math.unit(150, "lb"),
  14833. name: "Hoodie",
  14834. image: {
  14835. source: "./media/characters/pandora/hoodie.svg",
  14836. extra: 1622 / 1525,
  14837. bottom: 0.015
  14838. }
  14839. },
  14840. casual: {
  14841. height: math.unit(6, "feet"),
  14842. weight: math.unit(150, "lb"),
  14843. name: "Casual",
  14844. image: {
  14845. source: "./media/characters/pandora/casual.svg",
  14846. extra: 1622 / 1525,
  14847. bottom: 0.015
  14848. }
  14849. },
  14850. },
  14851. [
  14852. {
  14853. name: "Normal",
  14854. height: math.unit(6, "feet")
  14855. },
  14856. {
  14857. name: "Big Steppy",
  14858. height: math.unit(1, "km"),
  14859. default: true
  14860. },
  14861. ]
  14862. ))
  14863. characterMakers.push(() => makeCharacter(
  14864. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  14865. {
  14866. side: {
  14867. height: math.unit(10, "feet"),
  14868. weight: math.unit(800, "kg"),
  14869. name: "Side",
  14870. image: {
  14871. source: "./media/characters/venio-darcony/side.svg",
  14872. extra: 1373 / 1003,
  14873. bottom: 0.037
  14874. }
  14875. },
  14876. front: {
  14877. height: math.unit(19, "feet"),
  14878. weight: math.unit(800, "kg"),
  14879. name: "Front",
  14880. image: {
  14881. source: "./media/characters/venio-darcony/front.svg"
  14882. }
  14883. },
  14884. back: {
  14885. height: math.unit(19, "feet"),
  14886. weight: math.unit(800, "kg"),
  14887. name: "Back",
  14888. image: {
  14889. source: "./media/characters/venio-darcony/back.svg"
  14890. }
  14891. },
  14892. sideNsfw: {
  14893. height: math.unit(10, "feet"),
  14894. weight: math.unit(800, "kg"),
  14895. name: "Side (NSFW)",
  14896. image: {
  14897. source: "./media/characters/venio-darcony/side-nsfw.svg",
  14898. extra: 1373 / 1003,
  14899. bottom: 0.037
  14900. }
  14901. },
  14902. frontNsfw: {
  14903. height: math.unit(19, "feet"),
  14904. weight: math.unit(800, "kg"),
  14905. name: "Front (NSFW)",
  14906. image: {
  14907. source: "./media/characters/venio-darcony/front-nsfw.svg"
  14908. }
  14909. },
  14910. backNsfw: {
  14911. height: math.unit(19, "feet"),
  14912. weight: math.unit(800, "kg"),
  14913. name: "Back (NSFW)",
  14914. image: {
  14915. source: "./media/characters/venio-darcony/back-nsfw.svg"
  14916. }
  14917. },
  14918. sideArmored: {
  14919. height: math.unit(10, "feet"),
  14920. weight: math.unit(800, "kg"),
  14921. name: "Side (Armored)",
  14922. image: {
  14923. source: "./media/characters/venio-darcony/side-armored.svg",
  14924. extra: 1373 / 1003,
  14925. bottom: 0.037
  14926. }
  14927. },
  14928. frontArmored: {
  14929. height: math.unit(19, "feet"),
  14930. weight: math.unit(900, "kg"),
  14931. name: "Front (Armored)",
  14932. image: {
  14933. source: "./media/characters/venio-darcony/front-armored.svg"
  14934. }
  14935. },
  14936. backArmored: {
  14937. height: math.unit(19, "feet"),
  14938. weight: math.unit(900, "kg"),
  14939. name: "Back (Armored)",
  14940. image: {
  14941. source: "./media/characters/venio-darcony/back-armored.svg"
  14942. }
  14943. },
  14944. sword: {
  14945. height: math.unit(10, "feet"),
  14946. weight: math.unit(50, "lb"),
  14947. name: "Sword",
  14948. image: {
  14949. source: "./media/characters/venio-darcony/sword.svg"
  14950. }
  14951. },
  14952. },
  14953. [
  14954. {
  14955. name: "Normal",
  14956. height: math.unit(10, "feet")
  14957. },
  14958. {
  14959. name: "Macro",
  14960. height: math.unit(130, "feet"),
  14961. default: true
  14962. },
  14963. {
  14964. name: "Macro+",
  14965. height: math.unit(240, "feet")
  14966. },
  14967. ]
  14968. ))
  14969. characterMakers.push(() => makeCharacter(
  14970. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  14971. {
  14972. front: {
  14973. height: math.unit(6, "feet"),
  14974. weight: math.unit(150, "lb"),
  14975. name: "Front",
  14976. image: {
  14977. source: "./media/characters/veski/front.svg",
  14978. extra: 1299 / 1225,
  14979. bottom: 0.04
  14980. }
  14981. },
  14982. back: {
  14983. height: math.unit(6, "feet"),
  14984. weight: math.unit(150, "lb"),
  14985. name: "Back",
  14986. image: {
  14987. source: "./media/characters/veski/back.svg",
  14988. extra: 1299 / 1225,
  14989. bottom: 0.008
  14990. }
  14991. },
  14992. maw: {
  14993. height: math.unit(1.5 * 1.21, "feet"),
  14994. name: "Maw",
  14995. image: {
  14996. source: "./media/characters/veski/maw.svg"
  14997. }
  14998. },
  14999. },
  15000. [
  15001. {
  15002. name: "Macro",
  15003. height: math.unit(2, "km"),
  15004. default: true
  15005. },
  15006. ]
  15007. ))
  15008. characterMakers.push(() => makeCharacter(
  15009. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15010. {
  15011. front: {
  15012. height: math.unit(5 + 7 / 12, "feet"),
  15013. name: "Front",
  15014. image: {
  15015. source: "./media/characters/isabelle/front.svg",
  15016. extra: 2130 / 1976,
  15017. bottom: 0.05
  15018. }
  15019. },
  15020. },
  15021. [
  15022. {
  15023. name: "Supermicro",
  15024. height: math.unit(10, "micrometers")
  15025. },
  15026. {
  15027. name: "Micro",
  15028. height: math.unit(1, "inch")
  15029. },
  15030. {
  15031. name: "Tiny",
  15032. height: math.unit(5, "inches")
  15033. },
  15034. {
  15035. name: "Standard",
  15036. height: math.unit(5 + 7 / 12, "inches")
  15037. },
  15038. {
  15039. name: "Macro",
  15040. height: math.unit(80, "meters"),
  15041. default: true
  15042. },
  15043. {
  15044. name: "Megamacro",
  15045. height: math.unit(250, "meters")
  15046. },
  15047. {
  15048. name: "Gigamacro",
  15049. height: math.unit(5, "km")
  15050. },
  15051. {
  15052. name: "Cosmic",
  15053. height: math.unit(2.5e6, "miles")
  15054. },
  15055. ]
  15056. ))
  15057. characterMakers.push(() => makeCharacter(
  15058. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15059. {
  15060. front: {
  15061. height: math.unit(6, "feet"),
  15062. weight: math.unit(150, "lb"),
  15063. name: "Front",
  15064. image: {
  15065. source: "./media/characters/hanzo/front.svg",
  15066. extra: 374 / 344,
  15067. bottom: 0.02
  15068. }
  15069. },
  15070. },
  15071. [
  15072. {
  15073. name: "Normal",
  15074. height: math.unit(8, "feet"),
  15075. default: true
  15076. },
  15077. ]
  15078. ))
  15079. characterMakers.push(() => makeCharacter(
  15080. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15081. {
  15082. front: {
  15083. height: math.unit(7, "feet"),
  15084. weight: math.unit(130, "lb"),
  15085. name: "Front",
  15086. image: {
  15087. source: "./media/characters/anna/front.svg",
  15088. extra: 169 / 145,
  15089. bottom: 0.06
  15090. }
  15091. },
  15092. full: {
  15093. height: math.unit(4.96, "feet"),
  15094. weight: math.unit(220, "lb"),
  15095. name: "Full",
  15096. image: {
  15097. source: "./media/characters/anna/full.svg",
  15098. extra: 138 / 114,
  15099. bottom: 0.15
  15100. }
  15101. },
  15102. tongue: {
  15103. height: math.unit(2.53, "feet"),
  15104. name: "Tongue",
  15105. image: {
  15106. source: "./media/characters/anna/tongue.svg"
  15107. }
  15108. },
  15109. },
  15110. [
  15111. {
  15112. name: "Normal",
  15113. height: math.unit(7, "feet"),
  15114. default: true
  15115. },
  15116. ]
  15117. ))
  15118. characterMakers.push(() => makeCharacter(
  15119. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15120. {
  15121. front: {
  15122. height: math.unit(7, "feet"),
  15123. weight: math.unit(150, "lb"),
  15124. name: "Front",
  15125. image: {
  15126. source: "./media/characters/ian-corvid/front.svg",
  15127. extra: 150 / 142,
  15128. bottom: 0.02
  15129. }
  15130. },
  15131. back: {
  15132. height: math.unit(7, "feet"),
  15133. weight: math.unit(150, "lb"),
  15134. name: "Back",
  15135. image: {
  15136. source: "./media/characters/ian-corvid/back.svg",
  15137. extra: 150 / 143,
  15138. bottom: 0.01
  15139. }
  15140. },
  15141. stomping: {
  15142. height: math.unit(7, "feet"),
  15143. weight: math.unit(150, "lb"),
  15144. name: "Stomping",
  15145. image: {
  15146. source: "./media/characters/ian-corvid/stomping.svg",
  15147. extra: 76 / 72
  15148. }
  15149. },
  15150. sitting: {
  15151. height: math.unit(7 / 1.8, "feet"),
  15152. weight: math.unit(150, "lb"),
  15153. name: "Sitting",
  15154. image: {
  15155. source: "./media/characters/ian-corvid/sitting.svg",
  15156. extra: 1400 / 1269,
  15157. bottom: 0.15
  15158. }
  15159. },
  15160. },
  15161. [
  15162. {
  15163. name: "Tiny Microw",
  15164. height: math.unit(1, "inch")
  15165. },
  15166. {
  15167. name: "Microw",
  15168. height: math.unit(6, "inches")
  15169. },
  15170. {
  15171. name: "Crow",
  15172. height: math.unit(7 + 1 / 12, "feet"),
  15173. default: true
  15174. },
  15175. {
  15176. name: "Macrow",
  15177. height: math.unit(176, "feet")
  15178. },
  15179. ]
  15180. ))
  15181. characterMakers.push(() => makeCharacter(
  15182. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15183. {
  15184. front: {
  15185. height: math.unit(5 + 7 / 12, "feet"),
  15186. weight: math.unit(147, "lb"),
  15187. name: "Front",
  15188. image: {
  15189. source: "./media/characters/natalie-kellon/front.svg",
  15190. extra: 1214 / 1141,
  15191. bottom: 0.02
  15192. }
  15193. },
  15194. },
  15195. [
  15196. {
  15197. name: "Micro",
  15198. height: math.unit(1 / 16, "inch")
  15199. },
  15200. {
  15201. name: "Tiny",
  15202. height: math.unit(4, "inches")
  15203. },
  15204. {
  15205. name: "Normal",
  15206. height: math.unit(5 + 7 / 12, "feet"),
  15207. default: true
  15208. },
  15209. {
  15210. name: "Amazon",
  15211. height: math.unit(12, "feet")
  15212. },
  15213. {
  15214. name: "Giantess",
  15215. height: math.unit(160, "meters")
  15216. },
  15217. {
  15218. name: "Titaness",
  15219. height: math.unit(800, "meters")
  15220. },
  15221. ]
  15222. ))
  15223. characterMakers.push(() => makeCharacter(
  15224. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15225. {
  15226. front: {
  15227. height: math.unit(6, "feet"),
  15228. weight: math.unit(150, "lb"),
  15229. name: "Front",
  15230. image: {
  15231. source: "./media/characters/alluria/front.svg",
  15232. extra: 806 / 738,
  15233. bottom: 0.01
  15234. }
  15235. },
  15236. side: {
  15237. height: math.unit(6, "feet"),
  15238. weight: math.unit(150, "lb"),
  15239. name: "Side",
  15240. image: {
  15241. source: "./media/characters/alluria/side.svg",
  15242. extra: 800 / 750,
  15243. }
  15244. },
  15245. back: {
  15246. height: math.unit(6, "feet"),
  15247. weight: math.unit(150, "lb"),
  15248. name: "Back",
  15249. image: {
  15250. source: "./media/characters/alluria/back.svg",
  15251. extra: 806 / 738,
  15252. }
  15253. },
  15254. frontMaid: {
  15255. height: math.unit(6, "feet"),
  15256. weight: math.unit(150, "lb"),
  15257. name: "Front (Maid)",
  15258. image: {
  15259. source: "./media/characters/alluria/front-maid.svg",
  15260. extra: 806 / 738,
  15261. bottom: 0.01
  15262. }
  15263. },
  15264. sideMaid: {
  15265. height: math.unit(6, "feet"),
  15266. weight: math.unit(150, "lb"),
  15267. name: "Side (Maid)",
  15268. image: {
  15269. source: "./media/characters/alluria/side-maid.svg",
  15270. extra: 800 / 750,
  15271. bottom: 0.005
  15272. }
  15273. },
  15274. backMaid: {
  15275. height: math.unit(6, "feet"),
  15276. weight: math.unit(150, "lb"),
  15277. name: "Back (Maid)",
  15278. image: {
  15279. source: "./media/characters/alluria/back-maid.svg",
  15280. extra: 806 / 738,
  15281. }
  15282. },
  15283. },
  15284. [
  15285. {
  15286. name: "Micro",
  15287. height: math.unit(6, "inches"),
  15288. default: true
  15289. },
  15290. ]
  15291. ))
  15292. characterMakers.push(() => makeCharacter(
  15293. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15294. {
  15295. front: {
  15296. height: math.unit(6, "feet"),
  15297. weight: math.unit(150, "lb"),
  15298. name: "Front",
  15299. image: {
  15300. source: "./media/characters/kyle/front.svg",
  15301. extra: 1069 / 962,
  15302. bottom: 77.228 / 1727.45
  15303. }
  15304. },
  15305. },
  15306. [
  15307. {
  15308. name: "Macro",
  15309. height: math.unit(150, "feet"),
  15310. default: true
  15311. },
  15312. ]
  15313. ))
  15314. characterMakers.push(() => makeCharacter(
  15315. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15316. {
  15317. front: {
  15318. height: math.unit(6, "feet"),
  15319. weight: math.unit(300, "lb"),
  15320. name: "Front",
  15321. image: {
  15322. source: "./media/characters/duncan/front.svg",
  15323. extra: 1650 / 1482,
  15324. bottom: 0.05
  15325. }
  15326. },
  15327. },
  15328. [
  15329. {
  15330. name: "Macro",
  15331. height: math.unit(100, "feet"),
  15332. default: true
  15333. },
  15334. ]
  15335. ))
  15336. characterMakers.push(() => makeCharacter(
  15337. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15338. {
  15339. front: {
  15340. height: math.unit(5 + 4 / 12, "feet"),
  15341. weight: math.unit(220, "lb"),
  15342. name: "Front",
  15343. image: {
  15344. source: "./media/characters/memory/front.svg",
  15345. extra: 3641 / 3545,
  15346. bottom: 0.03
  15347. }
  15348. },
  15349. back: {
  15350. height: math.unit(5 + 4 / 12, "feet"),
  15351. weight: math.unit(220, "lb"),
  15352. name: "Back",
  15353. image: {
  15354. source: "./media/characters/memory/back.svg",
  15355. extra: 3641 / 3545,
  15356. bottom: 0.025
  15357. }
  15358. },
  15359. frontSkirt: {
  15360. height: math.unit(5 + 4 / 12, "feet"),
  15361. weight: math.unit(220, "lb"),
  15362. name: "Front (Skirt)",
  15363. image: {
  15364. source: "./media/characters/memory/front-skirt.svg",
  15365. extra: 3641 / 3545,
  15366. bottom: 0.03
  15367. }
  15368. },
  15369. frontDress: {
  15370. height: math.unit(5 + 4 / 12, "feet"),
  15371. weight: math.unit(220, "lb"),
  15372. name: "Front (Dress)",
  15373. image: {
  15374. source: "./media/characters/memory/front-dress.svg",
  15375. extra: 3641 / 3545,
  15376. bottom: 0.03
  15377. }
  15378. },
  15379. },
  15380. [
  15381. {
  15382. name: "Micro",
  15383. height: math.unit(6, "inches"),
  15384. default: true
  15385. },
  15386. {
  15387. name: "Normal",
  15388. height: math.unit(5 + 4 / 12, "feet")
  15389. },
  15390. ]
  15391. ))
  15392. characterMakers.push(() => makeCharacter(
  15393. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15394. {
  15395. front: {
  15396. height: math.unit(4 + 11 / 12, "feet"),
  15397. weight: math.unit(100, "lb"),
  15398. name: "Front",
  15399. image: {
  15400. source: "./media/characters/luno/front.svg",
  15401. extra: 1535 / 1487,
  15402. bottom: 0.03
  15403. }
  15404. },
  15405. },
  15406. [
  15407. {
  15408. name: "Micro",
  15409. height: math.unit(3, "inches")
  15410. },
  15411. {
  15412. name: "Normal",
  15413. height: math.unit(4 + 11 / 12, "feet"),
  15414. default: true
  15415. },
  15416. {
  15417. name: "Macro",
  15418. height: math.unit(300, "feet")
  15419. },
  15420. {
  15421. name: "Megamacro",
  15422. height: math.unit(700, "miles")
  15423. },
  15424. ]
  15425. ))
  15426. characterMakers.push(() => makeCharacter(
  15427. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15428. {
  15429. front: {
  15430. height: math.unit(6 + 2 / 12, "feet"),
  15431. weight: math.unit(170, "lb"),
  15432. name: "Front",
  15433. image: {
  15434. source: "./media/characters/jamesy/front.svg",
  15435. extra: 440 / 382,
  15436. bottom: 0.005
  15437. }
  15438. },
  15439. },
  15440. [
  15441. {
  15442. name: "Micro",
  15443. height: math.unit(3, "inches")
  15444. },
  15445. {
  15446. name: "Normal",
  15447. height: math.unit(6 + 2 / 12, "feet"),
  15448. default: true
  15449. },
  15450. {
  15451. name: "Macro",
  15452. height: math.unit(300, "feet")
  15453. },
  15454. {
  15455. name: "Megamacro",
  15456. height: math.unit(700, "miles")
  15457. },
  15458. ]
  15459. ))
  15460. characterMakers.push(() => makeCharacter(
  15461. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15462. {
  15463. front: {
  15464. height: math.unit(6, "feet"),
  15465. weight: math.unit(160, "lb"),
  15466. name: "Front",
  15467. image: {
  15468. source: "./media/characters/mark/front.svg",
  15469. extra: 3300 / 3100,
  15470. bottom: 136.42 / 3440.47
  15471. }
  15472. },
  15473. },
  15474. [
  15475. {
  15476. name: "Macro",
  15477. height: math.unit(120, "meters")
  15478. },
  15479. {
  15480. name: "Bigger Macro",
  15481. height: math.unit(350, "meters")
  15482. },
  15483. {
  15484. name: "Megamacro",
  15485. height: math.unit(8, "km"),
  15486. default: true
  15487. },
  15488. {
  15489. name: "Continental",
  15490. height: math.unit(4550, "km")
  15491. },
  15492. {
  15493. name: "Planetary",
  15494. height: math.unit(65000, "km")
  15495. },
  15496. ]
  15497. ))
  15498. characterMakers.push(() => makeCharacter(
  15499. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15500. {
  15501. front: {
  15502. height: math.unit(6, "feet"),
  15503. weight: math.unit(400, "lb"),
  15504. name: "Front",
  15505. image: {
  15506. source: "./media/characters/mac/front.svg",
  15507. extra: 1048 / 987.7,
  15508. bottom: 60 / 1107.6,
  15509. }
  15510. },
  15511. },
  15512. [
  15513. {
  15514. name: "Macro",
  15515. height: math.unit(500, "feet"),
  15516. default: true
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15522. {
  15523. front: {
  15524. height: math.unit(5 + 2 / 12, "feet"),
  15525. weight: math.unit(190, "lb"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/bari/front.svg",
  15529. extra: 3156 / 2880,
  15530. bottom: 0.03
  15531. }
  15532. },
  15533. back: {
  15534. height: math.unit(5 + 2 / 12, "feet"),
  15535. weight: math.unit(190, "lb"),
  15536. name: "Back",
  15537. image: {
  15538. source: "./media/characters/bari/back.svg",
  15539. extra: 3260 / 2834,
  15540. bottom: 0.025
  15541. }
  15542. },
  15543. frontPlush: {
  15544. height: math.unit(5 + 2 / 12, "feet"),
  15545. weight: math.unit(190, "lb"),
  15546. name: "Front (Plush)",
  15547. image: {
  15548. source: "./media/characters/bari/front-plush.svg",
  15549. extra: 1112 / 1061,
  15550. bottom: 0.002
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Micro",
  15557. height: math.unit(3, "inches")
  15558. },
  15559. {
  15560. name: "Normal",
  15561. height: math.unit(5 + 2 / 12, "feet"),
  15562. default: true
  15563. },
  15564. {
  15565. name: "Macro",
  15566. height: math.unit(20, "feet")
  15567. },
  15568. ]
  15569. ))
  15570. characterMakers.push(() => makeCharacter(
  15571. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15572. {
  15573. front: {
  15574. height: math.unit(6 + 1 / 12, "feet"),
  15575. weight: math.unit(275, "lb"),
  15576. name: "Front",
  15577. image: {
  15578. source: "./media/characters/hunter-misha-raven/front.svg"
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Mortal",
  15585. height: math.unit(6 + 1 / 12, "feet")
  15586. },
  15587. {
  15588. name: "Divine",
  15589. height: math.unit(1.12134e34, "parsecs"),
  15590. default: true
  15591. },
  15592. ]
  15593. ))
  15594. characterMakers.push(() => makeCharacter(
  15595. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15596. {
  15597. front: {
  15598. height: math.unit(6 + 3 / 12, "feet"),
  15599. weight: math.unit(220, "lb"),
  15600. name: "Front",
  15601. image: {
  15602. source: "./media/characters/max-calore/front.svg",
  15603. extra: 1700 / 1648,
  15604. bottom: 0.01
  15605. }
  15606. },
  15607. back: {
  15608. height: math.unit(6 + 3 / 12, "feet"),
  15609. weight: math.unit(220, "lb"),
  15610. name: "Back",
  15611. image: {
  15612. source: "./media/characters/max-calore/back.svg",
  15613. extra: 1700 / 1648,
  15614. bottom: 0.01
  15615. }
  15616. },
  15617. },
  15618. [
  15619. {
  15620. name: "Normal",
  15621. height: math.unit(6 + 3 / 12, "feet"),
  15622. default: true
  15623. },
  15624. ]
  15625. ))
  15626. characterMakers.push(() => makeCharacter(
  15627. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15628. {
  15629. side: {
  15630. height: math.unit(2 + 8 / 12, "feet"),
  15631. weight: math.unit(99, "lb"),
  15632. name: "Side",
  15633. image: {
  15634. source: "./media/characters/aspen/side.svg",
  15635. extra: 152 / 138,
  15636. bottom: 0.032
  15637. }
  15638. },
  15639. },
  15640. [
  15641. {
  15642. name: "Normal",
  15643. height: math.unit(2 + 8 / 12, "feet"),
  15644. default: true
  15645. },
  15646. ]
  15647. ))
  15648. characterMakers.push(() => makeCharacter(
  15649. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"]},
  15650. {
  15651. side: {
  15652. height: math.unit(3 + 2 / 12, "feet"),
  15653. weight: math.unit(224, "lb"),
  15654. name: "Side",
  15655. image: {
  15656. source: "./media/characters/sheila-feral-wolf/side.svg",
  15657. extra: 179 / 166,
  15658. bottom: 0.03
  15659. }
  15660. },
  15661. },
  15662. [
  15663. {
  15664. name: "Normal",
  15665. height: math.unit(3 + 2 / 12, "feet"),
  15666. default: true
  15667. },
  15668. ]
  15669. ))
  15670. characterMakers.push(() => makeCharacter(
  15671. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15672. {
  15673. side: {
  15674. height: math.unit(1 + 9 / 12, "feet"),
  15675. weight: math.unit(38, "lb"),
  15676. name: "Side",
  15677. image: {
  15678. source: "./media/characters/michelle/side.svg",
  15679. extra: 147 / 136.7,
  15680. bottom: 0.03
  15681. }
  15682. },
  15683. },
  15684. [
  15685. {
  15686. name: "Normal",
  15687. height: math.unit(1 + 9 / 12, "feet"),
  15688. default: true
  15689. },
  15690. ]
  15691. ))
  15692. characterMakers.push(() => makeCharacter(
  15693. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15694. {
  15695. front: {
  15696. height: math.unit(1 + 1 / 12, "feet"),
  15697. weight: math.unit(18, "lb"),
  15698. name: "Front",
  15699. image: {
  15700. source: "./media/characters/nino/front.svg"
  15701. }
  15702. },
  15703. },
  15704. [
  15705. {
  15706. name: "Normal",
  15707. height: math.unit(1 + 1 / 12, "feet"),
  15708. default: true
  15709. },
  15710. ]
  15711. ))
  15712. characterMakers.push(() => makeCharacter(
  15713. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15714. {
  15715. front: {
  15716. height: math.unit(1, "feet"),
  15717. weight: math.unit(16, "lb"),
  15718. name: "Front",
  15719. image: {
  15720. source: "./media/characters/viola/front.svg"
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(1, "feet"),
  15728. default: true
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15734. {
  15735. front: {
  15736. height: math.unit(6 + 5 / 12, "feet"),
  15737. weight: math.unit(580, "lb"),
  15738. name: "Front",
  15739. image: {
  15740. source: "./media/characters/atlas/front.svg",
  15741. extra: 298.5 / 290,
  15742. bottom: 0.015
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Normal",
  15749. height: math.unit(6 + 5 / 12, "feet"),
  15750. default: true
  15751. },
  15752. ]
  15753. ))
  15754. characterMakers.push(() => makeCharacter(
  15755. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15756. {
  15757. side: {
  15758. height: math.unit(1 + 10 / 12, "feet"),
  15759. weight: math.unit(25, "lb"),
  15760. name: "Side",
  15761. image: {
  15762. source: "./media/characters/davy/side.svg",
  15763. extra: 200 / 170,
  15764. bottom: 0.01
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(1 + 10 / 12, "feet"),
  15772. default: true
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15778. {
  15779. side: {
  15780. height: math.unit(4 + 8 / 12, "feet"),
  15781. weight: math.unit(166, "lb"),
  15782. name: "Side",
  15783. image: {
  15784. source: "./media/characters/fiona/side.svg",
  15785. extra: 232 / 220,
  15786. bottom: 0.03
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Normal",
  15793. height: math.unit(4 + 8 / 12, "feet"),
  15794. default: true
  15795. },
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15800. {
  15801. front: {
  15802. height: math.unit(2, "feet"),
  15803. weight: math.unit(62, "lb"),
  15804. name: "Front",
  15805. image: {
  15806. source: "./media/characters/lyla/front.svg",
  15807. bottom: 0.1
  15808. }
  15809. },
  15810. },
  15811. [
  15812. {
  15813. name: "Normal",
  15814. height: math.unit(2, "feet"),
  15815. default: true
  15816. },
  15817. ]
  15818. ))
  15819. characterMakers.push(() => makeCharacter(
  15820. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  15821. {
  15822. side: {
  15823. height: math.unit(1.8, "feet"),
  15824. weight: math.unit(44, "lb"),
  15825. name: "Side",
  15826. image: {
  15827. source: "./media/characters/perseus/side.svg",
  15828. bottom: 0.21
  15829. }
  15830. },
  15831. },
  15832. [
  15833. {
  15834. name: "Normal",
  15835. height: math.unit(1.8, "feet"),
  15836. default: true
  15837. },
  15838. ]
  15839. ))
  15840. characterMakers.push(() => makeCharacter(
  15841. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  15842. {
  15843. side: {
  15844. height: math.unit(4 + 2 / 12, "feet"),
  15845. weight: math.unit(20, "lb"),
  15846. name: "Side",
  15847. image: {
  15848. source: "./media/characters/remus/side.svg"
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Normal",
  15855. height: math.unit(4 + 2 / 12, "feet"),
  15856. default: true
  15857. },
  15858. ]
  15859. ))
  15860. characterMakers.push(() => makeCharacter(
  15861. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  15862. {
  15863. front: {
  15864. height: math.unit(4 + 11 / 12, "feet"),
  15865. weight: math.unit(114, "lb"),
  15866. name: "Front",
  15867. image: {
  15868. source: "./media/characters/raf/front.svg",
  15869. bottom: 0.01
  15870. }
  15871. },
  15872. side: {
  15873. height: math.unit(4 + 11 / 12, "feet"),
  15874. weight: math.unit(114, "lb"),
  15875. name: "Side",
  15876. image: {
  15877. source: "./media/characters/raf/side.svg",
  15878. bottom: 0.005
  15879. }
  15880. },
  15881. },
  15882. [
  15883. {
  15884. name: "Micro",
  15885. height: math.unit(2, "inches")
  15886. },
  15887. {
  15888. name: "Normal",
  15889. height: math.unit(4 + 11 / 12, "feet"),
  15890. default: true
  15891. },
  15892. {
  15893. name: "Macro",
  15894. height: math.unit(70, "feet")
  15895. },
  15896. ]
  15897. ))
  15898. characterMakers.push(() => makeCharacter(
  15899. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  15900. {
  15901. front: {
  15902. height: math.unit(1.5, "meters"),
  15903. weight: math.unit(68, "kg"),
  15904. name: "Front",
  15905. image: {
  15906. source: "./media/characters/liam-einarr/front.svg",
  15907. extra: 2822 / 2666
  15908. }
  15909. },
  15910. back: {
  15911. height: math.unit(1.5, "meters"),
  15912. weight: math.unit(68, "kg"),
  15913. name: "Back",
  15914. image: {
  15915. source: "./media/characters/liam-einarr/back.svg",
  15916. extra: 2822 / 2666,
  15917. bottom: 0.015
  15918. }
  15919. },
  15920. },
  15921. [
  15922. {
  15923. name: "Normal",
  15924. height: math.unit(1.5, "meters"),
  15925. default: true
  15926. },
  15927. {
  15928. name: "Macro",
  15929. height: math.unit(150, "meters")
  15930. },
  15931. {
  15932. name: "Megamacro",
  15933. height: math.unit(35, "km")
  15934. },
  15935. ]
  15936. ))
  15937. characterMakers.push(() => makeCharacter(
  15938. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  15939. {
  15940. front: {
  15941. height: math.unit(6, "feet"),
  15942. weight: math.unit(75, "kg"),
  15943. name: "Front",
  15944. image: {
  15945. source: "./media/characters/linda/front.svg",
  15946. extra: 930 / 874,
  15947. bottom: 0.004
  15948. }
  15949. },
  15950. },
  15951. [
  15952. {
  15953. name: "Normal",
  15954. height: math.unit(6, "feet"),
  15955. default: true
  15956. },
  15957. ]
  15958. ))
  15959. characterMakers.push(() => makeCharacter(
  15960. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  15961. {
  15962. front: {
  15963. height: math.unit(6 + 8 / 12, "feet"),
  15964. weight: math.unit(220, "lb"),
  15965. name: "Front",
  15966. image: {
  15967. source: "./media/characters/caylex/front.svg",
  15968. extra: 821 / 772,
  15969. bottom: 0.07
  15970. }
  15971. },
  15972. back: {
  15973. height: math.unit(6 + 8 / 12, "feet"),
  15974. weight: math.unit(220, "lb"),
  15975. name: "Back",
  15976. image: {
  15977. source: "./media/characters/caylex/back.svg",
  15978. extra: 821 / 772,
  15979. bottom: 0.022
  15980. }
  15981. },
  15982. hand: {
  15983. height: math.unit(1.25, "feet"),
  15984. name: "Hand",
  15985. image: {
  15986. source: "./media/characters/caylex/hand.svg"
  15987. }
  15988. },
  15989. foot: {
  15990. height: math.unit(1.6, "feet"),
  15991. name: "Foot",
  15992. image: {
  15993. source: "./media/characters/caylex/foot.svg"
  15994. }
  15995. },
  15996. armored: {
  15997. height: math.unit(6 + 8 / 12, "feet"),
  15998. weight: math.unit(250, "lb"),
  15999. name: "Armored",
  16000. image: {
  16001. source: "./media/characters/caylex/armored.svg",
  16002. extra: 1420 / 1310,
  16003. bottom: 0.045
  16004. }
  16005. },
  16006. },
  16007. [
  16008. {
  16009. name: "Normal",
  16010. height: math.unit(6 + 8 / 12, "feet"),
  16011. default: true
  16012. },
  16013. {
  16014. name: "Normal+",
  16015. height: math.unit(12, "feet")
  16016. },
  16017. ]
  16018. ))
  16019. characterMakers.push(() => makeCharacter(
  16020. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16021. {
  16022. front: {
  16023. height: math.unit(7 + 6 / 12, "feet"),
  16024. weight: math.unit(288, "lb"),
  16025. name: "Front",
  16026. image: {
  16027. source: "./media/characters/alana/front.svg",
  16028. extra: 679 / 653,
  16029. bottom: 22.5 / 701
  16030. }
  16031. },
  16032. },
  16033. [
  16034. {
  16035. name: "Normal",
  16036. height: math.unit(7 + 6 / 12, "feet")
  16037. },
  16038. {
  16039. name: "Large",
  16040. height: math.unit(50, "feet")
  16041. },
  16042. {
  16043. name: "Macro",
  16044. height: math.unit(100, "feet"),
  16045. default: true
  16046. },
  16047. {
  16048. name: "Macro+",
  16049. height: math.unit(200, "feet")
  16050. },
  16051. ]
  16052. ))
  16053. characterMakers.push(() => makeCharacter(
  16054. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16055. {
  16056. front: {
  16057. height: math.unit(6 + 1 / 12, "feet"),
  16058. weight: math.unit(210, "lb"),
  16059. name: "Front",
  16060. image: {
  16061. source: "./media/characters/hasani/front.svg",
  16062. extra: 244 / 232,
  16063. bottom: 0.01
  16064. }
  16065. },
  16066. back: {
  16067. height: math.unit(6 + 1 / 12, "feet"),
  16068. weight: math.unit(210, "lb"),
  16069. name: "Back",
  16070. image: {
  16071. source: "./media/characters/hasani/back.svg",
  16072. extra: 244 / 232,
  16073. bottom: 0.01
  16074. }
  16075. },
  16076. },
  16077. [
  16078. {
  16079. name: "Normal",
  16080. height: math.unit(6 + 1 / 12, "feet")
  16081. },
  16082. {
  16083. name: "Macro",
  16084. height: math.unit(175, "feet"),
  16085. default: true
  16086. },
  16087. ]
  16088. ))
  16089. characterMakers.push(() => makeCharacter(
  16090. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16091. {
  16092. front: {
  16093. height: math.unit(1.82, "meters"),
  16094. weight: math.unit(140, "lb"),
  16095. name: "Front",
  16096. image: {
  16097. source: "./media/characters/nita/front.svg",
  16098. extra: 2473 / 2363,
  16099. bottom: 0.01
  16100. }
  16101. },
  16102. },
  16103. [
  16104. {
  16105. name: "Normal",
  16106. height: math.unit(1.82, "m")
  16107. },
  16108. {
  16109. name: "Macro",
  16110. height: math.unit(300, "m")
  16111. },
  16112. {
  16113. name: "Mistake Canon",
  16114. height: math.unit(0.5, "miles"),
  16115. default: true
  16116. },
  16117. {
  16118. name: "Big Mistake",
  16119. height: math.unit(13, "miles")
  16120. },
  16121. {
  16122. name: "Playing God",
  16123. height: math.unit(2450, "miles")
  16124. },
  16125. ]
  16126. ))
  16127. characterMakers.push(() => makeCharacter(
  16128. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16129. {
  16130. front: {
  16131. height: math.unit(4, "feet"),
  16132. weight: math.unit(120, "lb"),
  16133. name: "Front",
  16134. image: {
  16135. source: "./media/characters/shiriko/front.svg",
  16136. extra: 195 / 188
  16137. }
  16138. },
  16139. },
  16140. [
  16141. {
  16142. name: "Normal",
  16143. height: math.unit(4, "feet"),
  16144. default: true
  16145. },
  16146. ]
  16147. ))
  16148. characterMakers.push(() => makeCharacter(
  16149. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16150. {
  16151. front: {
  16152. height: math.unit(6, "feet"),
  16153. name: "front",
  16154. image: {
  16155. source: "./media/characters/deja/front.svg",
  16156. extra: 926 / 840,
  16157. bottom: 0.07
  16158. }
  16159. },
  16160. },
  16161. [
  16162. {
  16163. name: "Planck Length",
  16164. height: math.unit(1.6e-35, "meters")
  16165. },
  16166. {
  16167. name: "Normal",
  16168. height: math.unit(30.48, "meters"),
  16169. default: true
  16170. },
  16171. {
  16172. name: "Universal",
  16173. height: math.unit(8.8e26, "meters")
  16174. },
  16175. ]
  16176. ))
  16177. characterMakers.push(() => makeCharacter(
  16178. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16179. {
  16180. side: {
  16181. height: math.unit(8, "feet"),
  16182. weight: math.unit(6300, "lb"),
  16183. name: "Side",
  16184. image: {
  16185. source: "./media/characters/anima/side.svg",
  16186. bottom: 0.035
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Normal",
  16193. height: math.unit(8, "feet"),
  16194. default: true
  16195. },
  16196. ]
  16197. ))
  16198. characterMakers.push(() => makeCharacter(
  16199. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16200. {
  16201. front: {
  16202. height: math.unit(8, "feet"),
  16203. weight: math.unit(350, "lb"),
  16204. name: "Front",
  16205. image: {
  16206. source: "./media/characters/bianca/front.svg",
  16207. extra: 234 / 225,
  16208. bottom: 0.03
  16209. }
  16210. },
  16211. },
  16212. [
  16213. {
  16214. name: "Normal",
  16215. height: math.unit(8, "feet"),
  16216. default: true
  16217. },
  16218. ]
  16219. ))
  16220. characterMakers.push(() => makeCharacter(
  16221. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16222. {
  16223. front: {
  16224. height: math.unit(6, "feet"),
  16225. weight: math.unit(150, "lb"),
  16226. name: "Front",
  16227. image: {
  16228. source: "./media/characters/adinia/front.svg",
  16229. extra: 1845 / 1672,
  16230. bottom: 0.02
  16231. }
  16232. },
  16233. back: {
  16234. height: math.unit(6, "feet"),
  16235. weight: math.unit(150, "lb"),
  16236. name: "Back",
  16237. image: {
  16238. source: "./media/characters/adinia/back.svg",
  16239. extra: 1845 / 1672,
  16240. bottom: 0.002
  16241. }
  16242. },
  16243. },
  16244. [
  16245. {
  16246. name: "Normal",
  16247. height: math.unit(11 + 5 / 12, "feet"),
  16248. default: true
  16249. },
  16250. ]
  16251. ))
  16252. characterMakers.push(() => makeCharacter(
  16253. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16254. {
  16255. front: {
  16256. height: math.unit(3, "meters"),
  16257. weight: math.unit(200, "kg"),
  16258. name: "Front",
  16259. image: {
  16260. source: "./media/characters/lykasa/front.svg",
  16261. extra: 1076 / 976,
  16262. bottom: 0.06
  16263. }
  16264. },
  16265. },
  16266. [
  16267. {
  16268. name: "Normal",
  16269. height: math.unit(3, "meters")
  16270. },
  16271. {
  16272. name: "Kaiju",
  16273. height: math.unit(120, "meters"),
  16274. default: true
  16275. },
  16276. {
  16277. name: "Mega Kaiju",
  16278. height: math.unit(240, "km")
  16279. },
  16280. {
  16281. name: "Giga Kaiju",
  16282. height: math.unit(400, "megameters")
  16283. },
  16284. {
  16285. name: "Tera Kaiju",
  16286. height: math.unit(800, "gigameters")
  16287. },
  16288. {
  16289. name: "Kaiju Dragon Goddess",
  16290. height: math.unit(26, "zettaparsecs")
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16296. {
  16297. side: {
  16298. height: math.unit(283 / 124 * 6, "feet"),
  16299. weight: math.unit(35000, "lb"),
  16300. name: "Side",
  16301. image: {
  16302. source: "./media/characters/malfaren/side.svg",
  16303. extra: 2500 / 1010,
  16304. bottom: 0.01
  16305. }
  16306. },
  16307. front: {
  16308. height: math.unit(22.36, "feet"),
  16309. weight: math.unit(35000, "lb"),
  16310. name: "Front",
  16311. image: {
  16312. source: "./media/characters/malfaren/front.svg",
  16313. extra: 1631 / 1476,
  16314. bottom: 0.01
  16315. }
  16316. },
  16317. maw: {
  16318. height: math.unit(6.9, "feet"),
  16319. name: "Maw",
  16320. image: {
  16321. source: "./media/characters/malfaren/maw.svg"
  16322. }
  16323. },
  16324. },
  16325. [
  16326. {
  16327. name: "Big",
  16328. height: math.unit(283 / 162 * 6, "feet"),
  16329. },
  16330. {
  16331. name: "Bigger",
  16332. height: math.unit(283 / 124 * 6, "feet")
  16333. },
  16334. {
  16335. name: "Massive",
  16336. height: math.unit(283 / 92 * 6, "feet"),
  16337. default: true
  16338. },
  16339. {
  16340. name: "👀💦",
  16341. height: math.unit(283 / 73 * 6, "feet"),
  16342. },
  16343. ]
  16344. ))
  16345. characterMakers.push(() => makeCharacter(
  16346. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16347. {
  16348. front: {
  16349. height: math.unit(1.7, "m"),
  16350. weight: math.unit(70, "kg"),
  16351. name: "Front",
  16352. image: {
  16353. source: "./media/characters/kernel/front.svg",
  16354. extra: 222 / 210,
  16355. bottom: 0.007
  16356. }
  16357. },
  16358. },
  16359. [
  16360. {
  16361. name: "Nano",
  16362. height: math.unit(17, "micrometers")
  16363. },
  16364. {
  16365. name: "Micro",
  16366. height: math.unit(1.7, "mm")
  16367. },
  16368. {
  16369. name: "Small",
  16370. height: math.unit(1.7, "cm")
  16371. },
  16372. {
  16373. name: "Normal",
  16374. height: math.unit(1.7, "m"),
  16375. default: true
  16376. },
  16377. ]
  16378. ))
  16379. characterMakers.push(() => makeCharacter(
  16380. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16381. {
  16382. front: {
  16383. height: math.unit(1.75, "meters"),
  16384. weight: math.unit(65, "kg"),
  16385. name: "Front",
  16386. image: {
  16387. source: "./media/characters/jayne-folest/front.svg",
  16388. extra: 2115 / 2007,
  16389. bottom: 0.02
  16390. }
  16391. },
  16392. back: {
  16393. height: math.unit(1.75, "meters"),
  16394. weight: math.unit(65, "kg"),
  16395. name: "Back",
  16396. image: {
  16397. source: "./media/characters/jayne-folest/back.svg",
  16398. extra: 2115 / 2007,
  16399. bottom: 0.005
  16400. }
  16401. },
  16402. frontClothed: {
  16403. height: math.unit(1.75, "meters"),
  16404. weight: math.unit(65, "kg"),
  16405. name: "Front (Clothed)",
  16406. image: {
  16407. source: "./media/characters/jayne-folest/front-clothed.svg",
  16408. extra: 2115 / 2007,
  16409. bottom: 0.035
  16410. }
  16411. },
  16412. hand: {
  16413. height: math.unit(1 / 1.260, "feet"),
  16414. name: "Hand",
  16415. image: {
  16416. source: "./media/characters/jayne-folest/hand.svg"
  16417. }
  16418. },
  16419. foot: {
  16420. height: math.unit(1 / 0.918, "feet"),
  16421. name: "Foot",
  16422. image: {
  16423. source: "./media/characters/jayne-folest/foot.svg"
  16424. }
  16425. },
  16426. },
  16427. [
  16428. {
  16429. name: "Micro",
  16430. height: math.unit(4, "cm")
  16431. },
  16432. {
  16433. name: "Normal",
  16434. height: math.unit(1.75, "meters")
  16435. },
  16436. {
  16437. name: "Macro",
  16438. height: math.unit(47.5, "meters"),
  16439. default: true
  16440. },
  16441. ]
  16442. ))
  16443. characterMakers.push(() => makeCharacter(
  16444. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16445. {
  16446. front: {
  16447. height: math.unit(180, "cm"),
  16448. weight: math.unit(70, "kg"),
  16449. name: "Front",
  16450. image: {
  16451. source: "./media/characters/algier/front.svg",
  16452. extra: 596 / 572,
  16453. bottom: 0.04
  16454. }
  16455. },
  16456. back: {
  16457. height: math.unit(180, "cm"),
  16458. weight: math.unit(70, "kg"),
  16459. name: "Back",
  16460. image: {
  16461. source: "./media/characters/algier/back.svg",
  16462. extra: 596 / 572,
  16463. bottom: 0.025
  16464. }
  16465. },
  16466. frontdressed: {
  16467. height: math.unit(180, "cm"),
  16468. weight: math.unit(150, "kg"),
  16469. name: "Front-dressed",
  16470. image: {
  16471. source: "./media/characters/algier/front-dressed.svg",
  16472. extra: 596 / 572,
  16473. bottom: 0.038
  16474. }
  16475. },
  16476. },
  16477. [
  16478. {
  16479. name: "Micro",
  16480. height: math.unit(5, "cm")
  16481. },
  16482. {
  16483. name: "Normal",
  16484. height: math.unit(180, "cm"),
  16485. default: true
  16486. },
  16487. {
  16488. name: "Macro",
  16489. height: math.unit(64, "m")
  16490. },
  16491. ]
  16492. ))
  16493. characterMakers.push(() => makeCharacter(
  16494. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16495. {
  16496. upright: {
  16497. height: math.unit(7, "feet"),
  16498. weight: math.unit(300, "lb"),
  16499. name: "Upright",
  16500. image: {
  16501. source: "./media/characters/pretzel/upright.svg",
  16502. extra: 534 / 522,
  16503. bottom: 0.065
  16504. }
  16505. },
  16506. sprawling: {
  16507. height: math.unit(3.75, "feet"),
  16508. weight: math.unit(300, "lb"),
  16509. name: "Sprawling",
  16510. image: {
  16511. source: "./media/characters/pretzel/sprawling.svg",
  16512. extra: 314 / 281,
  16513. bottom: 0.1
  16514. }
  16515. },
  16516. tongue: {
  16517. height: math.unit(2, "feet"),
  16518. name: "Tongue",
  16519. image: {
  16520. source: "./media/characters/pretzel/tongue.svg"
  16521. }
  16522. },
  16523. },
  16524. [
  16525. {
  16526. name: "Normal",
  16527. height: math.unit(7, "feet"),
  16528. default: true
  16529. },
  16530. {
  16531. name: "Oversized",
  16532. height: math.unit(15, "feet")
  16533. },
  16534. {
  16535. name: "Huge",
  16536. height: math.unit(30, "feet")
  16537. },
  16538. {
  16539. name: "Macro",
  16540. height: math.unit(250, "feet")
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16546. {
  16547. sideFront: {
  16548. height: math.unit(5 + 2 / 12, "feet"),
  16549. weight: math.unit(120, "lb"),
  16550. name: "Front Side",
  16551. image: {
  16552. source: "./media/characters/roxi/side-front.svg",
  16553. extra: 2924 / 2717,
  16554. bottom: 0.08
  16555. }
  16556. },
  16557. sideBack: {
  16558. height: math.unit(5 + 2 / 12, "feet"),
  16559. weight: math.unit(120, "lb"),
  16560. name: "Back Side",
  16561. image: {
  16562. source: "./media/characters/roxi/side-back.svg",
  16563. extra: 2904 / 2693,
  16564. bottom: 0.06
  16565. }
  16566. },
  16567. front: {
  16568. height: math.unit(5 + 2 / 12, "feet"),
  16569. weight: math.unit(120, "lb"),
  16570. name: "Front",
  16571. image: {
  16572. source: "./media/characters/roxi/front.svg",
  16573. extra: 2028 / 1907,
  16574. bottom: 0.01
  16575. }
  16576. },
  16577. frontAlt: {
  16578. height: math.unit(5 + 2 / 12, "feet"),
  16579. weight: math.unit(120, "lb"),
  16580. name: "Front (Alt)",
  16581. image: {
  16582. source: "./media/characters/roxi/front-alt.svg",
  16583. extra: 1828 / 1798,
  16584. bottom: 0.01
  16585. }
  16586. },
  16587. sitting: {
  16588. height: math.unit(2.8, "feet"),
  16589. weight: math.unit(120, "lb"),
  16590. name: "Sitting",
  16591. image: {
  16592. source: "./media/characters/roxi/sitting.svg",
  16593. extra: 2660 / 2462,
  16594. bottom: 0.1
  16595. }
  16596. },
  16597. },
  16598. [
  16599. {
  16600. name: "Normal",
  16601. height: math.unit(5 + 2 / 12, "feet"),
  16602. default: true
  16603. },
  16604. ]
  16605. ))
  16606. characterMakers.push(() => makeCharacter(
  16607. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16608. {
  16609. side: {
  16610. height: math.unit(55, "feet"),
  16611. weight: math.unit(153, "tons"),
  16612. name: "Side",
  16613. image: {
  16614. source: "./media/characters/shadow/side.svg",
  16615. extra: 701 / 628,
  16616. bottom: 0.02
  16617. }
  16618. },
  16619. flying: {
  16620. height: math.unit(145, "feet"),
  16621. weight: math.unit(153, "tons"),
  16622. name: "Flying",
  16623. image: {
  16624. source: "./media/characters/shadow/flying.svg"
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Normal",
  16631. height: math.unit(55, "feet"),
  16632. default: true
  16633. },
  16634. ]
  16635. ))
  16636. characterMakers.push(() => makeCharacter(
  16637. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16638. {
  16639. front: {
  16640. height: math.unit(6, "feet"),
  16641. weight: math.unit(200, "lb"),
  16642. name: "Front",
  16643. image: {
  16644. source: "./media/characters/marcie/front.svg",
  16645. extra: 960 / 876,
  16646. bottom: 58 / 1017.87
  16647. }
  16648. },
  16649. },
  16650. [
  16651. {
  16652. name: "Macro",
  16653. height: math.unit(1, "mile"),
  16654. default: true
  16655. },
  16656. ]
  16657. ))
  16658. characterMakers.push(() => makeCharacter(
  16659. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16660. {
  16661. front: {
  16662. height: math.unit(7, "feet"),
  16663. weight: math.unit(200, "lb"),
  16664. name: "Front",
  16665. image: {
  16666. source: "./media/characters/kachina/front.svg",
  16667. extra: 1290.68 / 1119,
  16668. bottom: 36.5 / 1327.18
  16669. }
  16670. },
  16671. },
  16672. [
  16673. {
  16674. name: "Normal",
  16675. height: math.unit(7, "feet"),
  16676. default: true
  16677. },
  16678. ]
  16679. ))
  16680. characterMakers.push(() => makeCharacter(
  16681. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16682. {
  16683. looking: {
  16684. height: math.unit(2, "meters"),
  16685. weight: math.unit(300, "kg"),
  16686. name: "Looking",
  16687. image: {
  16688. source: "./media/characters/kash/looking.svg",
  16689. extra: 474 / 344,
  16690. bottom: 0.03
  16691. }
  16692. },
  16693. side: {
  16694. height: math.unit(2, "meters"),
  16695. weight: math.unit(300, "kg"),
  16696. name: "Side",
  16697. image: {
  16698. source: "./media/characters/kash/side.svg",
  16699. extra: 302 / 251,
  16700. bottom: 0.03
  16701. }
  16702. },
  16703. front: {
  16704. height: math.unit(2, "meters"),
  16705. weight: math.unit(300, "kg"),
  16706. name: "Front",
  16707. image: {
  16708. source: "./media/characters/kash/front.svg",
  16709. extra: 495 / 360,
  16710. bottom: 0.015
  16711. }
  16712. },
  16713. },
  16714. [
  16715. {
  16716. name: "Normal",
  16717. height: math.unit(2, "meters"),
  16718. default: true
  16719. },
  16720. {
  16721. name: "Big",
  16722. height: math.unit(3, "meters")
  16723. },
  16724. {
  16725. name: "Large",
  16726. height: math.unit(5, "meters")
  16727. },
  16728. ]
  16729. ))
  16730. characterMakers.push(() => makeCharacter(
  16731. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16732. {
  16733. feeding: {
  16734. height: math.unit(6.7, "feet"),
  16735. weight: math.unit(350, "lb"),
  16736. name: "Feeding",
  16737. image: {
  16738. source: "./media/characters/lalim/feeding.svg",
  16739. }
  16740. },
  16741. },
  16742. [
  16743. {
  16744. name: "Normal",
  16745. height: math.unit(6.7, "feet"),
  16746. default: true
  16747. },
  16748. ]
  16749. ))
  16750. characterMakers.push(() => makeCharacter(
  16751. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16752. {
  16753. front: {
  16754. height: math.unit(9.5, "feet"),
  16755. weight: math.unit(600, "lb"),
  16756. name: "Front",
  16757. image: {
  16758. source: "./media/characters/de'vout/front.svg",
  16759. extra: 1443 / 1328,
  16760. bottom: 0.025
  16761. }
  16762. },
  16763. back: {
  16764. height: math.unit(9.5, "feet"),
  16765. weight: math.unit(600, "lb"),
  16766. name: "Back",
  16767. image: {
  16768. source: "./media/characters/de'vout/back.svg",
  16769. extra: 1443 / 1328
  16770. }
  16771. },
  16772. frontDressed: {
  16773. height: math.unit(9.5, "feet"),
  16774. weight: math.unit(600, "lb"),
  16775. name: "Front (Dressed",
  16776. image: {
  16777. source: "./media/characters/de'vout/front-dressed.svg",
  16778. extra: 1443 / 1328,
  16779. bottom: 0.025
  16780. }
  16781. },
  16782. backDressed: {
  16783. height: math.unit(9.5, "feet"),
  16784. weight: math.unit(600, "lb"),
  16785. name: "Back (Dressed",
  16786. image: {
  16787. source: "./media/characters/de'vout/back-dressed.svg",
  16788. extra: 1443 / 1328
  16789. }
  16790. },
  16791. },
  16792. [
  16793. {
  16794. name: "Normal",
  16795. height: math.unit(9.5, "feet"),
  16796. default: true
  16797. },
  16798. ]
  16799. ))
  16800. characterMakers.push(() => makeCharacter(
  16801. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16802. {
  16803. front: {
  16804. height: math.unit(8, "feet"),
  16805. weight: math.unit(225, "lb"),
  16806. name: "Front",
  16807. image: {
  16808. source: "./media/characters/talana/front.svg",
  16809. extra: 1410 / 1300,
  16810. bottom: 0.015
  16811. }
  16812. },
  16813. frontDressed: {
  16814. height: math.unit(8, "feet"),
  16815. weight: math.unit(225, "lb"),
  16816. name: "Front (Dressed",
  16817. image: {
  16818. source: "./media/characters/talana/front-dressed.svg",
  16819. extra: 1410 / 1300,
  16820. bottom: 0.015
  16821. }
  16822. },
  16823. },
  16824. [
  16825. {
  16826. name: "Normal",
  16827. height: math.unit(8, "feet"),
  16828. default: true
  16829. },
  16830. ]
  16831. ))
  16832. characterMakers.push(() => makeCharacter(
  16833. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  16834. {
  16835. side: {
  16836. height: math.unit(7.2, "feet"),
  16837. weight: math.unit(150, "lb"),
  16838. name: "Side",
  16839. image: {
  16840. source: "./media/characters/xeauvok/side.svg",
  16841. extra: 1975 / 1523,
  16842. bottom: 0.07
  16843. }
  16844. },
  16845. },
  16846. [
  16847. {
  16848. name: "Normal",
  16849. height: math.unit(7.2, "feet"),
  16850. default: true
  16851. },
  16852. ]
  16853. ))
  16854. characterMakers.push(() => makeCharacter(
  16855. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  16856. {
  16857. side: {
  16858. height: math.unit(10, "feet"),
  16859. weight: math.unit(900, "kg"),
  16860. name: "Side",
  16861. image: {
  16862. source: "./media/characters/zara/side.svg",
  16863. extra: 504 / 498
  16864. }
  16865. },
  16866. },
  16867. [
  16868. {
  16869. name: "Normal",
  16870. height: math.unit(10, "feet"),
  16871. default: true
  16872. },
  16873. ]
  16874. ))
  16875. characterMakers.push(() => makeCharacter(
  16876. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  16877. {
  16878. side: {
  16879. height: math.unit(6, "feet"),
  16880. weight: math.unit(150, "lb"),
  16881. name: "Side",
  16882. image: {
  16883. source: "./media/characters/richard-dragon/side.svg",
  16884. extra: 845 / 340,
  16885. bottom: 0.017
  16886. }
  16887. },
  16888. maw: {
  16889. height: math.unit(2.97, "feet"),
  16890. name: "Maw",
  16891. image: {
  16892. source: "./media/characters/richard-dragon/maw.svg"
  16893. }
  16894. },
  16895. },
  16896. [
  16897. ]
  16898. ))
  16899. characterMakers.push(() => makeCharacter(
  16900. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  16901. {
  16902. front: {
  16903. height: math.unit(4, "feet"),
  16904. weight: math.unit(100, "lb"),
  16905. name: "Front",
  16906. image: {
  16907. source: "./media/characters/richard-smeargle/front.svg",
  16908. extra: 2952 / 2820,
  16909. bottom: 0.028
  16910. }
  16911. },
  16912. },
  16913. [
  16914. {
  16915. name: "Normal",
  16916. height: math.unit(4, "feet"),
  16917. default: true
  16918. },
  16919. {
  16920. name: "Dynamax",
  16921. height: math.unit(20, "meters")
  16922. },
  16923. ]
  16924. ))
  16925. characterMakers.push(() => makeCharacter(
  16926. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  16927. {
  16928. front: {
  16929. height: math.unit(6, "feet"),
  16930. weight: math.unit(110, "lb"),
  16931. name: "Front",
  16932. image: {
  16933. source: "./media/characters/klay/front.svg",
  16934. extra: 962 / 883,
  16935. bottom: 0.04
  16936. }
  16937. },
  16938. back: {
  16939. height: math.unit(6, "feet"),
  16940. weight: math.unit(110, "lb"),
  16941. name: "Back",
  16942. image: {
  16943. source: "./media/characters/klay/back.svg",
  16944. extra: 962 / 883
  16945. }
  16946. },
  16947. beans: {
  16948. height: math.unit(1.15, "feet"),
  16949. name: "Beans",
  16950. image: {
  16951. source: "./media/characters/klay/beans.svg"
  16952. }
  16953. },
  16954. },
  16955. [
  16956. {
  16957. name: "Micro",
  16958. height: math.unit(6, "inches")
  16959. },
  16960. {
  16961. name: "Mini",
  16962. height: math.unit(3, "feet")
  16963. },
  16964. {
  16965. name: "Normal",
  16966. height: math.unit(6, "feet"),
  16967. default: true
  16968. },
  16969. {
  16970. name: "Big",
  16971. height: math.unit(25, "feet")
  16972. },
  16973. {
  16974. name: "Macro",
  16975. height: math.unit(100, "feet")
  16976. },
  16977. {
  16978. name: "Megamacro",
  16979. height: math.unit(400, "feet")
  16980. },
  16981. ]
  16982. ))
  16983. characterMakers.push(() => makeCharacter(
  16984. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  16985. {
  16986. front: {
  16987. height: math.unit(6, "feet"),
  16988. weight: math.unit(160, "lb"),
  16989. name: "Front",
  16990. image: {
  16991. source: "./media/characters/marcus/front.svg",
  16992. extra: 734 / 676,
  16993. bottom: 0.03
  16994. }
  16995. },
  16996. },
  16997. [
  16998. {
  16999. name: "Little",
  17000. height: math.unit(6, "feet")
  17001. },
  17002. {
  17003. name: "Normal",
  17004. height: math.unit(110, "feet"),
  17005. default: true
  17006. },
  17007. {
  17008. name: "Macro",
  17009. height: math.unit(250, "feet")
  17010. },
  17011. {
  17012. name: "Megamacro",
  17013. height: math.unit(1000, "feet")
  17014. },
  17015. ]
  17016. ))
  17017. characterMakers.push(() => makeCharacter(
  17018. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17019. {
  17020. front: {
  17021. height: math.unit(7, "feet"),
  17022. weight: math.unit(275, "lb"),
  17023. name: "Front",
  17024. image: {
  17025. source: "./media/characters/claude-delroute/front.svg",
  17026. extra: 230 / 214,
  17027. bottom: 0.007
  17028. }
  17029. },
  17030. side: {
  17031. height: math.unit(7, "feet"),
  17032. weight: math.unit(275, "lb"),
  17033. name: "Side",
  17034. image: {
  17035. source: "./media/characters/claude-delroute/side.svg",
  17036. extra: 222 / 214,
  17037. bottom: 0.01
  17038. }
  17039. },
  17040. back: {
  17041. height: math.unit(7, "feet"),
  17042. weight: math.unit(275, "lb"),
  17043. name: "Back",
  17044. image: {
  17045. source: "./media/characters/claude-delroute/back.svg",
  17046. extra: 230 / 214,
  17047. bottom: 0.015
  17048. }
  17049. },
  17050. maw: {
  17051. height: math.unit(0.6407, "meters"),
  17052. name: "Maw",
  17053. image: {
  17054. source: "./media/characters/claude-delroute/maw.svg"
  17055. }
  17056. },
  17057. },
  17058. [
  17059. {
  17060. name: "Normal",
  17061. height: math.unit(7, "feet"),
  17062. default: true
  17063. },
  17064. {
  17065. name: "Lorge",
  17066. height: math.unit(20, "feet")
  17067. },
  17068. ]
  17069. ))
  17070. characterMakers.push(() => makeCharacter(
  17071. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17072. {
  17073. front: {
  17074. height: math.unit(8 + 4 / 12, "feet"),
  17075. weight: math.unit(600, "lb"),
  17076. name: "Front",
  17077. image: {
  17078. source: "./media/characters/dragonien/front.svg",
  17079. extra: 100 / 94,
  17080. bottom: 3.3 / 103.3445
  17081. }
  17082. },
  17083. back: {
  17084. height: math.unit(8 + 4 / 12, "feet"),
  17085. weight: math.unit(600, "lb"),
  17086. name: "Back",
  17087. image: {
  17088. source: "./media/characters/dragonien/back.svg",
  17089. extra: 776 / 746,
  17090. bottom: 6.4 / 782.0616
  17091. }
  17092. },
  17093. foot: {
  17094. height: math.unit(1.54, "feet"),
  17095. name: "Foot",
  17096. image: {
  17097. source: "./media/characters/dragonien/foot.svg",
  17098. }
  17099. },
  17100. },
  17101. [
  17102. {
  17103. name: "Normal",
  17104. height: math.unit(8 + 4 / 12, "feet"),
  17105. default: true
  17106. },
  17107. {
  17108. name: "Macro",
  17109. height: math.unit(200, "feet")
  17110. },
  17111. {
  17112. name: "Megamacro",
  17113. height: math.unit(1, "mile")
  17114. },
  17115. {
  17116. name: "Gigamacro",
  17117. height: math.unit(1000, "miles")
  17118. },
  17119. ]
  17120. ))
  17121. characterMakers.push(() => makeCharacter(
  17122. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17123. {
  17124. front: {
  17125. height: math.unit(5 + 2 / 12, "feet"),
  17126. weight: math.unit(110, "lb"),
  17127. name: "Front",
  17128. image: {
  17129. source: "./media/characters/desta/front.svg",
  17130. extra: 1482 / 1417
  17131. }
  17132. },
  17133. side: {
  17134. height: math.unit(5 + 2 / 12, "feet"),
  17135. weight: math.unit(110, "lb"),
  17136. name: "Side",
  17137. image: {
  17138. source: "./media/characters/desta/side.svg",
  17139. extra: 2579 / 2491,
  17140. bottom: 0.053
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Micro",
  17147. height: math.unit(6, "inches")
  17148. },
  17149. {
  17150. name: "Normal",
  17151. height: math.unit(5 + 2 / 12, "feet"),
  17152. default: true
  17153. },
  17154. {
  17155. name: "Macro",
  17156. height: math.unit(62, "feet")
  17157. },
  17158. {
  17159. name: "Megamacro",
  17160. height: math.unit(1800, "feet")
  17161. },
  17162. ]
  17163. ))
  17164. characterMakers.push(() => makeCharacter(
  17165. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17166. {
  17167. front: {
  17168. height: math.unit(10, "feet"),
  17169. weight: math.unit(700, "lb"),
  17170. name: "Front",
  17171. image: {
  17172. source: "./media/characters/storm-alystar/front.svg",
  17173. extra: 2112 / 1898,
  17174. bottom: 0.034
  17175. }
  17176. },
  17177. },
  17178. [
  17179. {
  17180. name: "Micro",
  17181. height: math.unit(3.5, "inches")
  17182. },
  17183. {
  17184. name: "Normal",
  17185. height: math.unit(10, "feet"),
  17186. default: true
  17187. },
  17188. {
  17189. name: "Macro",
  17190. height: math.unit(400, "feet")
  17191. },
  17192. {
  17193. name: "Deific",
  17194. height: math.unit(60, "miles")
  17195. },
  17196. ]
  17197. ))
  17198. characterMakers.push(() => makeCharacter(
  17199. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17200. {
  17201. front: {
  17202. height: math.unit(2.35, "meters"),
  17203. weight: math.unit(119, "kg"),
  17204. name: "Front",
  17205. image: {
  17206. source: "./media/characters/ilia/front.svg",
  17207. extra: 1285 / 1255,
  17208. bottom: 0.06
  17209. }
  17210. },
  17211. },
  17212. [
  17213. {
  17214. name: "Normal",
  17215. height: math.unit(2.35, "meters")
  17216. },
  17217. {
  17218. name: "Macro",
  17219. height: math.unit(140, "meters"),
  17220. default: true
  17221. },
  17222. {
  17223. name: "Megamacro",
  17224. height: math.unit(100, "miles")
  17225. },
  17226. ]
  17227. ))
  17228. characterMakers.push(() => makeCharacter(
  17229. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17230. {
  17231. front: {
  17232. height: math.unit(6 + 5 / 12, "feet"),
  17233. weight: math.unit(190, "lb"),
  17234. name: "Front",
  17235. image: {
  17236. source: "./media/characters/kingdead/front.svg",
  17237. extra: 1228 / 1177
  17238. }
  17239. },
  17240. },
  17241. [
  17242. {
  17243. name: "Micro",
  17244. height: math.unit(7, "inches")
  17245. },
  17246. {
  17247. name: "Normal",
  17248. height: math.unit(6 + 5 / 12, "feet")
  17249. },
  17250. {
  17251. name: "Macro",
  17252. height: math.unit(150, "feet"),
  17253. default: true
  17254. },
  17255. {
  17256. name: "Megamacro",
  17257. height: math.unit(200, "miles")
  17258. },
  17259. ]
  17260. ))
  17261. characterMakers.push(() => makeCharacter(
  17262. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17263. {
  17264. front: {
  17265. height: math.unit(8, "feet"),
  17266. weight: math.unit(600, "lb"),
  17267. name: "Front",
  17268. image: {
  17269. source: "./media/characters/kyrehx/front.svg",
  17270. extra: 1195 / 1095,
  17271. bottom: 0.034
  17272. }
  17273. },
  17274. },
  17275. [
  17276. {
  17277. name: "Micro",
  17278. height: math.unit(2, "inches")
  17279. },
  17280. {
  17281. name: "Normal",
  17282. height: math.unit(8, "feet"),
  17283. default: true
  17284. },
  17285. {
  17286. name: "Macro",
  17287. height: math.unit(255, "feet")
  17288. },
  17289. ]
  17290. ))
  17291. characterMakers.push(() => makeCharacter(
  17292. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17293. {
  17294. front: {
  17295. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17296. weight: math.unit(184, "lb"),
  17297. name: "Front",
  17298. image: {
  17299. source: "./media/characters/xang/front.svg",
  17300. extra: 845 / 755
  17301. }
  17302. },
  17303. },
  17304. [
  17305. {
  17306. name: "Normal",
  17307. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17308. default: true
  17309. },
  17310. {
  17311. name: "Macro",
  17312. height: math.unit(0.935 * 146, "feet")
  17313. },
  17314. {
  17315. name: "Megamacro",
  17316. height: math.unit(0.935 * 3, "miles")
  17317. },
  17318. ]
  17319. ))
  17320. characterMakers.push(() => makeCharacter(
  17321. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17322. {
  17323. frontDressed: {
  17324. height: math.unit(5 + 7 / 12, "feet"),
  17325. weight: math.unit(140, "lb"),
  17326. name: "Front (Dressed)",
  17327. image: {
  17328. source: "./media/characters/doc-weardno/front-dressed.svg",
  17329. extra: 263 / 234
  17330. }
  17331. },
  17332. backDressed: {
  17333. height: math.unit(5 + 7 / 12, "feet"),
  17334. weight: math.unit(140, "lb"),
  17335. name: "Back (Dressed)",
  17336. image: {
  17337. source: "./media/characters/doc-weardno/back-dressed.svg",
  17338. extra: 266 / 238
  17339. }
  17340. },
  17341. front: {
  17342. height: math.unit(5 + 7 / 12, "feet"),
  17343. weight: math.unit(140, "lb"),
  17344. name: "Front",
  17345. image: {
  17346. source: "./media/characters/doc-weardno/front.svg",
  17347. extra: 254 / 233
  17348. }
  17349. },
  17350. },
  17351. [
  17352. {
  17353. name: "Micro",
  17354. height: math.unit(3, "inches")
  17355. },
  17356. {
  17357. name: "Normal",
  17358. height: math.unit(5 + 7 / 12, "feet"),
  17359. default: true
  17360. },
  17361. {
  17362. name: "Macro",
  17363. height: math.unit(25, "feet")
  17364. },
  17365. {
  17366. name: "Megamacro",
  17367. height: math.unit(2, "miles")
  17368. },
  17369. ]
  17370. ))
  17371. characterMakers.push(() => makeCharacter(
  17372. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17373. {
  17374. front: {
  17375. height: math.unit(6 + 2 / 12, "feet"),
  17376. weight: math.unit(153, "lb"),
  17377. name: "Front",
  17378. image: {
  17379. source: "./media/characters/seth-whilst/front.svg",
  17380. bottom: 0.07
  17381. }
  17382. },
  17383. },
  17384. [
  17385. {
  17386. name: "Micro",
  17387. height: math.unit(5, "inches")
  17388. },
  17389. {
  17390. name: "Normal",
  17391. height: math.unit(6 + 2 / 12, "feet"),
  17392. default: true
  17393. },
  17394. ]
  17395. ))
  17396. characterMakers.push(() => makeCharacter(
  17397. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17398. {
  17399. front: {
  17400. height: math.unit(3, "inches"),
  17401. weight: math.unit(8, "grams"),
  17402. name: "Front",
  17403. image: {
  17404. source: "./media/characters/pocket-jabari/front.svg",
  17405. extra: 1024 / 974,
  17406. bottom: 0.039
  17407. }
  17408. },
  17409. },
  17410. [
  17411. {
  17412. name: "Minimicro",
  17413. height: math.unit(8, "mm")
  17414. },
  17415. {
  17416. name: "Micro",
  17417. height: math.unit(3, "inches"),
  17418. default: true
  17419. },
  17420. {
  17421. name: "Normal",
  17422. height: math.unit(3, "feet")
  17423. },
  17424. ]
  17425. ))
  17426. characterMakers.push(() => makeCharacter(
  17427. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17428. {
  17429. front: {
  17430. height: math.unit(15, "feet"),
  17431. weight: math.unit(3280, "lb"),
  17432. name: "Front",
  17433. image: {
  17434. source: "./media/characters/sapphy/front.svg",
  17435. extra: 671 / 577,
  17436. bottom: 0.085
  17437. }
  17438. },
  17439. back: {
  17440. height: math.unit(15, "feet"),
  17441. weight: math.unit(3280, "lb"),
  17442. name: "Back",
  17443. image: {
  17444. source: "./media/characters/sapphy/back.svg",
  17445. extra: 631 / 607,
  17446. bottom: 0.045
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Normal",
  17453. height: math.unit(15, "feet")
  17454. },
  17455. {
  17456. name: "Casual Macro",
  17457. height: math.unit(120, "feet")
  17458. },
  17459. {
  17460. name: "Macro",
  17461. height: math.unit(2150, "feet"),
  17462. default: true
  17463. },
  17464. {
  17465. name: "Megamacro",
  17466. height: math.unit(8, "miles")
  17467. },
  17468. {
  17469. name: "Galaxy Mom",
  17470. height: math.unit(6, "megalightyears")
  17471. },
  17472. ]
  17473. ))
  17474. characterMakers.push(() => makeCharacter(
  17475. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17476. {
  17477. front: {
  17478. height: math.unit(6, "feet"),
  17479. weight: math.unit(170, "lb"),
  17480. name: "Front",
  17481. image: {
  17482. source: "./media/characters/kiro/front.svg",
  17483. extra: 1064 / 1012,
  17484. bottom: 0.052
  17485. }
  17486. },
  17487. },
  17488. [
  17489. {
  17490. name: "Micro",
  17491. height: math.unit(6, "inches")
  17492. },
  17493. {
  17494. name: "Normal",
  17495. height: math.unit(6, "feet"),
  17496. default: true
  17497. },
  17498. {
  17499. name: "Macro",
  17500. height: math.unit(72, "feet")
  17501. },
  17502. ]
  17503. ))
  17504. characterMakers.push(() => makeCharacter(
  17505. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17506. {
  17507. front: {
  17508. height: math.unit(5 + 9 / 12, "feet"),
  17509. weight: math.unit(175, "lb"),
  17510. name: "Front",
  17511. image: {
  17512. source: "./media/characters/irishfox/front.svg",
  17513. extra: 1912 / 1680,
  17514. bottom: 0.02
  17515. }
  17516. },
  17517. },
  17518. [
  17519. {
  17520. name: "Nano",
  17521. height: math.unit(1, "mm")
  17522. },
  17523. {
  17524. name: "Micro",
  17525. height: math.unit(2, "inches")
  17526. },
  17527. {
  17528. name: "Normal",
  17529. height: math.unit(5 + 9 / 12, "feet"),
  17530. default: true
  17531. },
  17532. {
  17533. name: "Macro",
  17534. height: math.unit(45, "feet")
  17535. },
  17536. ]
  17537. ))
  17538. characterMakers.push(() => makeCharacter(
  17539. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17540. {
  17541. front: {
  17542. height: math.unit(6 + 1 / 12, "feet"),
  17543. weight: math.unit(150, "lb"),
  17544. name: "Front",
  17545. image: {
  17546. source: "./media/characters/aronai-sieyes/front.svg",
  17547. extra: 1556 / 1480,
  17548. bottom: 0.015
  17549. }
  17550. },
  17551. side: {
  17552. height: math.unit(6 + 1 / 12, "feet"),
  17553. weight: math.unit(150, "lb"),
  17554. name: "Side",
  17555. image: {
  17556. source: "./media/characters/aronai-sieyes/side.svg",
  17557. extra: 1433 / 1390,
  17558. bottom: 0.0393
  17559. }
  17560. },
  17561. back: {
  17562. height: math.unit(6 + 1 / 12, "feet"),
  17563. weight: math.unit(150, "lb"),
  17564. name: "Back",
  17565. image: {
  17566. source: "./media/characters/aronai-sieyes/back.svg",
  17567. extra: 1544 / 1494,
  17568. bottom: 0.02
  17569. }
  17570. },
  17571. frontClothed: {
  17572. height: math.unit(6 + 1 / 12, "feet"),
  17573. weight: math.unit(150, "lb"),
  17574. name: "Front (Clothed)",
  17575. image: {
  17576. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17577. extra: 1582 / 1527
  17578. }
  17579. },
  17580. feral: {
  17581. height: math.unit(18, "feet"),
  17582. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17583. name: "Feral",
  17584. image: {
  17585. source: "./media/characters/aronai-sieyes/feral.svg",
  17586. extra: 1530 / 1240,
  17587. bottom: 0.035
  17588. }
  17589. },
  17590. },
  17591. [
  17592. {
  17593. name: "Micro",
  17594. height: math.unit(2, "inches")
  17595. },
  17596. {
  17597. name: "Normal",
  17598. height: math.unit(6 + 1 / 12, "feet"),
  17599. default: true
  17600. }
  17601. ]
  17602. ))
  17603. characterMakers.push(() => makeCharacter(
  17604. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17605. {
  17606. front: {
  17607. height: math.unit(12, "feet"),
  17608. weight: math.unit(410, "kg"),
  17609. name: "Front",
  17610. image: {
  17611. source: "./media/characters/xuna/front.svg",
  17612. extra: 2184 / 1980
  17613. }
  17614. },
  17615. side: {
  17616. height: math.unit(12, "feet"),
  17617. weight: math.unit(410, "kg"),
  17618. name: "Side",
  17619. image: {
  17620. source: "./media/characters/xuna/side.svg",
  17621. extra: 2184 / 1980
  17622. }
  17623. },
  17624. back: {
  17625. height: math.unit(12, "feet"),
  17626. weight: math.unit(410, "kg"),
  17627. name: "Back",
  17628. image: {
  17629. source: "./media/characters/xuna/back.svg",
  17630. extra: 2184 / 1980
  17631. }
  17632. },
  17633. },
  17634. [
  17635. {
  17636. name: "Nano glow",
  17637. height: math.unit(10, "nm")
  17638. },
  17639. {
  17640. name: "Micro floof",
  17641. height: math.unit(0.3, "m")
  17642. },
  17643. {
  17644. name: "Huggable softy boi",
  17645. height: math.unit(3.6576, "m"),
  17646. default: true
  17647. },
  17648. {
  17649. name: "Admirable floof",
  17650. height: math.unit(80, "meters")
  17651. },
  17652. {
  17653. name: "Gentle macro",
  17654. height: math.unit(300, "meters")
  17655. },
  17656. {
  17657. name: "Very careful floof",
  17658. height: math.unit(3200, "meters")
  17659. },
  17660. {
  17661. name: "The mega floof",
  17662. height: math.unit(36000, "meters")
  17663. },
  17664. {
  17665. name: "Giga-fur-Wicker",
  17666. height: math.unit(4800000, "meters")
  17667. },
  17668. {
  17669. name: "Licky world",
  17670. height: math.unit(20000000, "meters")
  17671. },
  17672. {
  17673. name: "Floofy cyan sun",
  17674. height: math.unit(1500000000, "meters")
  17675. },
  17676. {
  17677. name: "Milky Wicker",
  17678. height: math.unit(1000000000000000000000, "meters")
  17679. },
  17680. {
  17681. name: "The observing Wicker",
  17682. height: math.unit(999999999999999999999999999, "meters")
  17683. },
  17684. ]
  17685. ))
  17686. characterMakers.push(() => makeCharacter(
  17687. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17688. {
  17689. front: {
  17690. height: math.unit(5 + 9 / 12, "feet"),
  17691. weight: math.unit(150, "lb"),
  17692. name: "Front",
  17693. image: {
  17694. source: "./media/characters/arokha-sieyes/front.svg",
  17695. extra: 1425 / 1284,
  17696. bottom: 0.05
  17697. }
  17698. },
  17699. },
  17700. [
  17701. {
  17702. name: "Normal",
  17703. height: math.unit(5 + 9 / 12, "feet")
  17704. },
  17705. {
  17706. name: "Macro",
  17707. height: math.unit(30, "meters"),
  17708. default: true
  17709. },
  17710. ]
  17711. ))
  17712. characterMakers.push(() => makeCharacter(
  17713. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17714. {
  17715. front: {
  17716. height: math.unit(6, "feet"),
  17717. weight: math.unit(180, "lb"),
  17718. name: "Front",
  17719. image: {
  17720. source: "./media/characters/arokh-sieyes/front.svg",
  17721. extra: 1830 / 1769,
  17722. bottom: 0.01
  17723. }
  17724. },
  17725. },
  17726. [
  17727. {
  17728. name: "Normal",
  17729. height: math.unit(6, "feet")
  17730. },
  17731. {
  17732. name: "Macro",
  17733. height: math.unit(30, "meters"),
  17734. default: true
  17735. },
  17736. ]
  17737. ))
  17738. characterMakers.push(() => makeCharacter(
  17739. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17740. {
  17741. side: {
  17742. height: math.unit(13 + 1 / 12, "feet"),
  17743. weight: math.unit(8.5, "tonnes"),
  17744. name: "Side",
  17745. image: {
  17746. source: "./media/characters/goldeneye/side.svg",
  17747. extra: 1182 / 778,
  17748. bottom: 0.067
  17749. }
  17750. },
  17751. paw: {
  17752. height: math.unit(3.4, "feet"),
  17753. name: "Paw",
  17754. image: {
  17755. source: "./media/characters/goldeneye/paw.svg"
  17756. }
  17757. },
  17758. },
  17759. [
  17760. {
  17761. name: "Normal",
  17762. height: math.unit(13 + 1 / 12, "feet"),
  17763. default: true
  17764. },
  17765. ]
  17766. ))
  17767. characterMakers.push(() => makeCharacter(
  17768. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17769. {
  17770. front: {
  17771. height: math.unit(6 + 1 / 12, "feet"),
  17772. weight: math.unit(210, "lb"),
  17773. name: "Front",
  17774. image: {
  17775. source: "./media/characters/leonardo-lycheborne/front.svg",
  17776. extra: 390 / 365,
  17777. bottom: 0.032
  17778. }
  17779. },
  17780. side: {
  17781. height: math.unit(6 + 1 / 12, "feet"),
  17782. weight: math.unit(210, "lb"),
  17783. name: "Side",
  17784. image: {
  17785. source: "./media/characters/leonardo-lycheborne/side.svg",
  17786. extra: 390 / 365,
  17787. bottom: 0.005
  17788. }
  17789. },
  17790. back: {
  17791. height: math.unit(6 + 1 / 12, "feet"),
  17792. weight: math.unit(210, "lb"),
  17793. name: "Back",
  17794. image: {
  17795. source: "./media/characters/leonardo-lycheborne/back.svg",
  17796. extra: 392 / 366,
  17797. bottom: 0.01
  17798. }
  17799. },
  17800. hand: {
  17801. height: math.unit(1.08, "feet"),
  17802. name: "Hand",
  17803. image: {
  17804. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17805. }
  17806. },
  17807. foot: {
  17808. height: math.unit(1.32, "feet"),
  17809. name: "Foot",
  17810. image: {
  17811. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17812. }
  17813. },
  17814. were: {
  17815. height: math.unit(20, "feet"),
  17816. weight: math.unit(7800, "lb"),
  17817. name: "Were",
  17818. image: {
  17819. source: "./media/characters/leonardo-lycheborne/were.svg",
  17820. extra: 308 / 294,
  17821. bottom: 0.048
  17822. }
  17823. },
  17824. feral: {
  17825. height: math.unit(7.5, "feet"),
  17826. weight: math.unit(600, "lb"),
  17827. name: "Feral",
  17828. image: {
  17829. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17830. extra: 210 / 186,
  17831. bottom: 0.108
  17832. }
  17833. },
  17834. taur: {
  17835. height: math.unit(11, "feet"),
  17836. weight: math.unit(3300, "lb"),
  17837. name: "Taur",
  17838. image: {
  17839. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17840. extra: 320 / 303,
  17841. bottom: 0.025
  17842. }
  17843. },
  17844. barghest: {
  17845. height: math.unit(11, "feet"),
  17846. weight: math.unit(1300, "lb"),
  17847. name: "Barghest",
  17848. image: {
  17849. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17850. extra: 323 / 302,
  17851. bottom: 0.027
  17852. }
  17853. },
  17854. dick: {
  17855. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17856. name: "Dick",
  17857. image: {
  17858. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17859. }
  17860. },
  17861. dickWere: {
  17862. height: math.unit((20) / 3.8, "feet"),
  17863. name: "Dick (Were)",
  17864. image: {
  17865. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17866. }
  17867. },
  17868. },
  17869. [
  17870. {
  17871. name: "Normal",
  17872. height: math.unit(6 + 1 / 12, "feet"),
  17873. default: true
  17874. },
  17875. ]
  17876. ))
  17877. characterMakers.push(() => makeCharacter(
  17878. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  17879. {
  17880. front: {
  17881. height: math.unit(10, "feet"),
  17882. weight: math.unit(350, "lb"),
  17883. name: "Front",
  17884. image: {
  17885. source: "./media/characters/jet/front.svg",
  17886. extra: 2050 / 1980,
  17887. bottom: 0.013
  17888. }
  17889. },
  17890. back: {
  17891. height: math.unit(10, "feet"),
  17892. weight: math.unit(350, "lb"),
  17893. name: "Back",
  17894. image: {
  17895. source: "./media/characters/jet/back.svg",
  17896. extra: 2050 / 1980,
  17897. bottom: 0.013
  17898. }
  17899. },
  17900. },
  17901. [
  17902. {
  17903. name: "Micro",
  17904. height: math.unit(6, "inches")
  17905. },
  17906. {
  17907. name: "Normal",
  17908. height: math.unit(10, "feet"),
  17909. default: true
  17910. },
  17911. {
  17912. name: "Macro",
  17913. height: math.unit(100, "feet")
  17914. },
  17915. ]
  17916. ))
  17917. characterMakers.push(() => makeCharacter(
  17918. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  17919. {
  17920. front: {
  17921. height: math.unit(15, "feet"),
  17922. weight: math.unit(2800, "lb"),
  17923. name: "Front",
  17924. image: {
  17925. source: "./media/characters/tanarath/front.svg",
  17926. extra: 2392 / 2220,
  17927. bottom: 0.03
  17928. }
  17929. },
  17930. back: {
  17931. height: math.unit(15, "feet"),
  17932. weight: math.unit(2800, "lb"),
  17933. name: "Back",
  17934. image: {
  17935. source: "./media/characters/tanarath/back.svg",
  17936. extra: 2392 / 2220,
  17937. bottom: 0.03
  17938. }
  17939. },
  17940. },
  17941. [
  17942. {
  17943. name: "Normal",
  17944. height: math.unit(15, "feet"),
  17945. default: true
  17946. },
  17947. ]
  17948. ))
  17949. characterMakers.push(() => makeCharacter(
  17950. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  17951. {
  17952. front: {
  17953. height: math.unit(7 + 1 / 12, "feet"),
  17954. weight: math.unit(175, "lb"),
  17955. name: "Front",
  17956. image: {
  17957. source: "./media/characters/patty-cattybatty/front.svg",
  17958. extra: 908 / 874,
  17959. bottom: 0.025
  17960. }
  17961. },
  17962. },
  17963. [
  17964. {
  17965. name: "Micro",
  17966. height: math.unit(1, "inch")
  17967. },
  17968. {
  17969. name: "Normal",
  17970. height: math.unit(7 + 1 / 12, "feet")
  17971. },
  17972. {
  17973. name: "Mini Macro",
  17974. height: math.unit(155, "feet")
  17975. },
  17976. {
  17977. name: "Macro",
  17978. height: math.unit(1077, "feet")
  17979. },
  17980. {
  17981. name: "Mega Macro",
  17982. height: math.unit(47650, "feet"),
  17983. default: true
  17984. },
  17985. {
  17986. name: "Giga Macro",
  17987. height: math.unit(440, "miles")
  17988. },
  17989. {
  17990. name: "Tera Macro",
  17991. height: math.unit(8700, "miles")
  17992. },
  17993. {
  17994. name: "Planetary Macro",
  17995. height: math.unit(32700, "miles")
  17996. },
  17997. {
  17998. name: "Solar Macro",
  17999. height: math.unit(550000, "miles")
  18000. },
  18001. {
  18002. name: "Celestial Macro",
  18003. height: math.unit(2.5, "AU")
  18004. },
  18005. ]
  18006. ))
  18007. characterMakers.push(() => makeCharacter(
  18008. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18009. {
  18010. front: {
  18011. height: math.unit(4 + 5 / 12, "feet"),
  18012. weight: math.unit(90, "lb"),
  18013. name: "Front",
  18014. image: {
  18015. source: "./media/characters/cappu/front.svg",
  18016. extra: 1247 / 1152,
  18017. bottom: 0.012
  18018. }
  18019. },
  18020. },
  18021. [
  18022. {
  18023. name: "Normal",
  18024. height: math.unit(4 + 5 / 12, "feet"),
  18025. default: true
  18026. },
  18027. ]
  18028. ))
  18029. characterMakers.push(() => makeCharacter(
  18030. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18031. {
  18032. frontDressed: {
  18033. height: math.unit(70, "cm"),
  18034. weight: math.unit(6, "kg"),
  18035. name: "Front (Dressed)",
  18036. image: {
  18037. source: "./media/characters/sebi/front-dressed.svg",
  18038. extra: 713.5 / 686.5,
  18039. bottom: 0.003
  18040. }
  18041. },
  18042. front: {
  18043. height: math.unit(70, "cm"),
  18044. weight: math.unit(5, "kg"),
  18045. name: "Front",
  18046. image: {
  18047. source: "./media/characters/sebi/front.svg",
  18048. extra: 713.5 / 686.5,
  18049. bottom: 0.003
  18050. }
  18051. }
  18052. },
  18053. [
  18054. {
  18055. name: "Normal",
  18056. height: math.unit(70, "cm"),
  18057. default: true
  18058. },
  18059. {
  18060. name: "Macro",
  18061. height: math.unit(8, "meters")
  18062. },
  18063. ]
  18064. ))
  18065. characterMakers.push(() => makeCharacter(
  18066. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18067. {
  18068. front: {
  18069. height: math.unit(6, "feet"),
  18070. weight: math.unit(150, "lb"),
  18071. name: "Front",
  18072. image: {
  18073. source: "./media/characters/typhek/front.svg",
  18074. extra: 1948 / 1929,
  18075. bottom: 0.025
  18076. }
  18077. },
  18078. side: {
  18079. height: math.unit(6, "feet"),
  18080. weight: math.unit(150, "lb"),
  18081. name: "Side",
  18082. image: {
  18083. source: "./media/characters/typhek/side.svg",
  18084. extra: 2034 / 2010,
  18085. bottom: 0.003
  18086. }
  18087. },
  18088. back: {
  18089. height: math.unit(6, "feet"),
  18090. weight: math.unit(150, "lb"),
  18091. name: "Back",
  18092. image: {
  18093. source: "./media/characters/typhek/back.svg",
  18094. extra: 2005 / 1978,
  18095. bottom: 0.004
  18096. }
  18097. },
  18098. palm: {
  18099. height: math.unit(1.2, "feet"),
  18100. name: "Palm",
  18101. image: {
  18102. source: "./media/characters/typhek/palm.svg"
  18103. }
  18104. },
  18105. fist: {
  18106. height: math.unit(1.1, "feet"),
  18107. name: "Fist",
  18108. image: {
  18109. source: "./media/characters/typhek/fist.svg"
  18110. }
  18111. },
  18112. foot: {
  18113. height: math.unit(1.57, "feet"),
  18114. name: "Foot",
  18115. image: {
  18116. source: "./media/characters/typhek/foot.svg"
  18117. }
  18118. },
  18119. sole: {
  18120. height: math.unit(2.05, "feet"),
  18121. name: "Sole",
  18122. image: {
  18123. source: "./media/characters/typhek/sole.svg"
  18124. }
  18125. },
  18126. },
  18127. [
  18128. {
  18129. name: "Macro",
  18130. height: math.unit(40, "stories"),
  18131. default: true
  18132. },
  18133. {
  18134. name: "Megamacro",
  18135. height: math.unit(1, "mile")
  18136. },
  18137. {
  18138. name: "Gigamacro",
  18139. height: math.unit(4000, "solarradii")
  18140. },
  18141. {
  18142. name: "Universal",
  18143. height: math.unit(1.1, "universes")
  18144. }
  18145. ]
  18146. ))
  18147. characterMakers.push(() => makeCharacter(
  18148. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18149. {
  18150. side: {
  18151. height: math.unit(5 + 7 / 12, "feet"),
  18152. weight: math.unit(150, "lb"),
  18153. name: "Side",
  18154. image: {
  18155. source: "./media/characters/kassy/side.svg",
  18156. extra: 1280 / 1225,
  18157. bottom: 0.002
  18158. }
  18159. },
  18160. front: {
  18161. height: math.unit(5 + 7 / 12, "feet"),
  18162. weight: math.unit(150, "lb"),
  18163. name: "Front",
  18164. image: {
  18165. source: "./media/characters/kassy/front.svg",
  18166. extra: 1280 / 1225,
  18167. bottom: 0.025
  18168. }
  18169. },
  18170. back: {
  18171. height: math.unit(5 + 7 / 12, "feet"),
  18172. weight: math.unit(150, "lb"),
  18173. name: "Back",
  18174. image: {
  18175. source: "./media/characters/kassy/back.svg",
  18176. extra: 1280 / 1225,
  18177. bottom: 0.002
  18178. }
  18179. },
  18180. foot: {
  18181. height: math.unit(1.266, "feet"),
  18182. name: "Foot",
  18183. image: {
  18184. source: "./media/characters/kassy/foot.svg"
  18185. }
  18186. },
  18187. },
  18188. [
  18189. {
  18190. name: "Normal",
  18191. height: math.unit(5 + 7 / 12, "feet")
  18192. },
  18193. {
  18194. name: "Macro",
  18195. height: math.unit(137, "feet"),
  18196. default: true
  18197. },
  18198. {
  18199. name: "Megamacro",
  18200. height: math.unit(1, "mile")
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18206. {
  18207. front: {
  18208. height: math.unit(6 + 1 / 12, "feet"),
  18209. weight: math.unit(200, "lb"),
  18210. name: "Front",
  18211. image: {
  18212. source: "./media/characters/neil/front.svg",
  18213. extra: 1326 / 1250,
  18214. bottom: 0.023
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Normal",
  18221. height: math.unit(6 + 1 / 12, "feet"),
  18222. default: true
  18223. },
  18224. {
  18225. name: "Macro",
  18226. height: math.unit(200, "feet")
  18227. },
  18228. ]
  18229. ))
  18230. characterMakers.push(() => makeCharacter(
  18231. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18232. {
  18233. front: {
  18234. height: math.unit(5 + 9 / 12, "feet"),
  18235. weight: math.unit(190, "lb"),
  18236. name: "Front",
  18237. image: {
  18238. source: "./media/characters/atticus/front.svg",
  18239. extra: 2934 / 2785,
  18240. bottom: 0.025
  18241. }
  18242. },
  18243. },
  18244. [
  18245. {
  18246. name: "Normal",
  18247. height: math.unit(5 + 9 / 12, "feet"),
  18248. default: true
  18249. },
  18250. {
  18251. name: "Macro",
  18252. height: math.unit(180, "feet")
  18253. },
  18254. ]
  18255. ))
  18256. characterMakers.push(() => makeCharacter(
  18257. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18258. {
  18259. side: {
  18260. height: math.unit(9, "feet"),
  18261. weight: math.unit(650, "lb"),
  18262. name: "Side",
  18263. image: {
  18264. source: "./media/characters/milo/side.svg",
  18265. extra: 2644 / 2310,
  18266. bottom: 0.032
  18267. }
  18268. },
  18269. },
  18270. [
  18271. {
  18272. name: "Normal",
  18273. height: math.unit(9, "feet"),
  18274. default: true
  18275. },
  18276. {
  18277. name: "Macro",
  18278. height: math.unit(300, "feet")
  18279. },
  18280. ]
  18281. ))
  18282. characterMakers.push(() => makeCharacter(
  18283. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18284. {
  18285. side: {
  18286. height: math.unit(8, "meters"),
  18287. weight: math.unit(90000, "kg"),
  18288. name: "Side",
  18289. image: {
  18290. source: "./media/characters/ijzer/side.svg",
  18291. extra: 2756 / 1600,
  18292. bottom: 0.01
  18293. }
  18294. },
  18295. },
  18296. [
  18297. {
  18298. name: "Small",
  18299. height: math.unit(3, "meters")
  18300. },
  18301. {
  18302. name: "Normal",
  18303. height: math.unit(8, "meters"),
  18304. default: true
  18305. },
  18306. {
  18307. name: "Normal+",
  18308. height: math.unit(10, "meters")
  18309. },
  18310. {
  18311. name: "Bigger",
  18312. height: math.unit(24, "meters")
  18313. },
  18314. {
  18315. name: "Huge",
  18316. height: math.unit(80, "meters")
  18317. },
  18318. ]
  18319. ))
  18320. characterMakers.push(() => makeCharacter(
  18321. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18322. {
  18323. front: {
  18324. height: math.unit(6 + 2 / 12, "feet"),
  18325. weight: math.unit(153, "lb"),
  18326. name: "Front",
  18327. image: {
  18328. source: "./media/characters/luca-cervicum/front.svg",
  18329. extra: 370 / 327,
  18330. bottom: 0.015
  18331. }
  18332. },
  18333. back: {
  18334. height: math.unit(6 + 2 / 12, "feet"),
  18335. weight: math.unit(153, "lb"),
  18336. name: "Back",
  18337. image: {
  18338. source: "./media/characters/luca-cervicum/back.svg",
  18339. extra: 367 / 333,
  18340. bottom: 0.005
  18341. }
  18342. },
  18343. frontGear: {
  18344. height: math.unit(6 + 2 / 12, "feet"),
  18345. weight: math.unit(173, "lb"),
  18346. name: "Front (Gear)",
  18347. image: {
  18348. source: "./media/characters/luca-cervicum/front-gear.svg",
  18349. extra: 377 / 333,
  18350. bottom: 0.006
  18351. }
  18352. },
  18353. },
  18354. [
  18355. {
  18356. name: "Normal",
  18357. height: math.unit(6 + 2 / 12, "feet"),
  18358. default: true
  18359. },
  18360. ]
  18361. ))
  18362. characterMakers.push(() => makeCharacter(
  18363. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18364. {
  18365. front: {
  18366. height: math.unit(6 + 1 / 12, "feet"),
  18367. weight: math.unit(304, "lb"),
  18368. name: "Front",
  18369. image: {
  18370. source: "./media/characters/oliver/front.svg",
  18371. extra: 157 / 143,
  18372. bottom: 0.08
  18373. }
  18374. },
  18375. },
  18376. [
  18377. {
  18378. name: "Normal",
  18379. height: math.unit(6 + 1 / 12, "feet"),
  18380. default: true
  18381. },
  18382. ]
  18383. ))
  18384. characterMakers.push(() => makeCharacter(
  18385. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18386. {
  18387. front: {
  18388. height: math.unit(5 + 7 / 12, "feet"),
  18389. weight: math.unit(140, "lb"),
  18390. name: "Front",
  18391. image: {
  18392. source: "./media/characters/shane/front.svg",
  18393. extra: 304 / 289,
  18394. bottom: 0.005
  18395. }
  18396. },
  18397. },
  18398. [
  18399. {
  18400. name: "Normal",
  18401. height: math.unit(5 + 7 / 12, "feet"),
  18402. default: true
  18403. },
  18404. ]
  18405. ))
  18406. characterMakers.push(() => makeCharacter(
  18407. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18408. {
  18409. front: {
  18410. height: math.unit(5 + 9 / 12, "feet"),
  18411. weight: math.unit(178, "lb"),
  18412. name: "Front",
  18413. image: {
  18414. source: "./media/characters/shin/front.svg",
  18415. extra: 159 / 151,
  18416. bottom: 0.015
  18417. }
  18418. },
  18419. },
  18420. [
  18421. {
  18422. name: "Normal",
  18423. height: math.unit(5 + 9 / 12, "feet"),
  18424. default: true
  18425. },
  18426. ]
  18427. ))
  18428. characterMakers.push(() => makeCharacter(
  18429. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18430. {
  18431. front: {
  18432. height: math.unit(5 + 10 / 12, "feet"),
  18433. weight: math.unit(168, "lb"),
  18434. name: "Front",
  18435. image: {
  18436. source: "./media/characters/xerxes/front.svg",
  18437. extra: 282 / 260,
  18438. bottom: 0.045
  18439. }
  18440. },
  18441. },
  18442. [
  18443. {
  18444. name: "Normal",
  18445. height: math.unit(5 + 10 / 12, "feet"),
  18446. default: true
  18447. },
  18448. ]
  18449. ))
  18450. characterMakers.push(() => makeCharacter(
  18451. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18452. {
  18453. front: {
  18454. height: math.unit(6 + 7 / 12, "feet"),
  18455. weight: math.unit(208, "lb"),
  18456. name: "Front",
  18457. image: {
  18458. source: "./media/characters/chaska/front.svg",
  18459. extra: 332 / 319,
  18460. bottom: 0.015
  18461. }
  18462. },
  18463. },
  18464. [
  18465. {
  18466. name: "Normal",
  18467. height: math.unit(6 + 7 / 12, "feet"),
  18468. default: true
  18469. },
  18470. ]
  18471. ))
  18472. characterMakers.push(() => makeCharacter(
  18473. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18474. {
  18475. front: {
  18476. height: math.unit(5 + 8 / 12, "feet"),
  18477. weight: math.unit(208, "lb"),
  18478. name: "Front",
  18479. image: {
  18480. source: "./media/characters/enuk/front.svg",
  18481. extra: 437 / 406,
  18482. bottom: 0.02
  18483. }
  18484. },
  18485. },
  18486. [
  18487. {
  18488. name: "Normal",
  18489. height: math.unit(5 + 8 / 12, "feet"),
  18490. default: true
  18491. },
  18492. ]
  18493. ))
  18494. characterMakers.push(() => makeCharacter(
  18495. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18496. {
  18497. front: {
  18498. height: math.unit(5 + 10 / 12, "feet"),
  18499. weight: math.unit(252, "lb"),
  18500. name: "Front",
  18501. image: {
  18502. source: "./media/characters/bruun/front.svg",
  18503. extra: 197 / 187,
  18504. bottom: 0.012
  18505. }
  18506. },
  18507. },
  18508. [
  18509. {
  18510. name: "Normal",
  18511. height: math.unit(5 + 10 / 12, "feet"),
  18512. default: true
  18513. },
  18514. ]
  18515. ))
  18516. characterMakers.push(() => makeCharacter(
  18517. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18518. {
  18519. front: {
  18520. height: math.unit(6 + 10 / 12, "feet"),
  18521. weight: math.unit(255, "lb"),
  18522. name: "Front",
  18523. image: {
  18524. source: "./media/characters/alexeev/front.svg",
  18525. extra: 213 / 200,
  18526. bottom: 0.05
  18527. }
  18528. },
  18529. },
  18530. [
  18531. {
  18532. name: "Normal",
  18533. height: math.unit(6 + 10 / 12, "feet"),
  18534. default: true
  18535. },
  18536. ]
  18537. ))
  18538. characterMakers.push(() => makeCharacter(
  18539. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18540. {
  18541. front: {
  18542. height: math.unit(2 + 8 / 12, "feet"),
  18543. weight: math.unit(22, "lb"),
  18544. name: "Front",
  18545. image: {
  18546. source: "./media/characters/evelyn/front.svg",
  18547. extra: 208 / 180
  18548. }
  18549. },
  18550. },
  18551. [
  18552. {
  18553. name: "Normal",
  18554. height: math.unit(2 + 8 / 12, "feet"),
  18555. default: true
  18556. },
  18557. ]
  18558. ))
  18559. characterMakers.push(() => makeCharacter(
  18560. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18561. {
  18562. front: {
  18563. height: math.unit(5 + 9 / 12, "feet"),
  18564. weight: math.unit(139, "lb"),
  18565. name: "Front",
  18566. image: {
  18567. source: "./media/characters/inca/front.svg",
  18568. extra: 294 / 291,
  18569. bottom: 0.03
  18570. }
  18571. },
  18572. },
  18573. [
  18574. {
  18575. name: "Normal",
  18576. height: math.unit(5 + 9 / 12, "feet"),
  18577. default: true
  18578. },
  18579. ]
  18580. ))
  18581. characterMakers.push(() => makeCharacter(
  18582. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18583. {
  18584. front: {
  18585. height: math.unit(5 + 1 / 12, "feet"),
  18586. weight: math.unit(84, "lb"),
  18587. name: "Front",
  18588. image: {
  18589. source: "./media/characters/magdalene/front.svg",
  18590. extra: 293 / 273
  18591. }
  18592. },
  18593. },
  18594. [
  18595. {
  18596. name: "Normal",
  18597. height: math.unit(5 + 1 / 12, "feet"),
  18598. default: true
  18599. },
  18600. ]
  18601. ))
  18602. characterMakers.push(() => makeCharacter(
  18603. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18604. {
  18605. front: {
  18606. height: math.unit(6 + 3 / 12, "feet"),
  18607. weight: math.unit(185, "lb"),
  18608. name: "Front",
  18609. image: {
  18610. source: "./media/characters/mera/front.svg",
  18611. extra: 291 / 277,
  18612. bottom: 0.03
  18613. }
  18614. },
  18615. },
  18616. [
  18617. {
  18618. name: "Normal",
  18619. height: math.unit(6 + 3 / 12, "feet"),
  18620. default: true
  18621. },
  18622. ]
  18623. ))
  18624. characterMakers.push(() => makeCharacter(
  18625. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18626. {
  18627. front: {
  18628. height: math.unit(6 + 7 / 12, "feet"),
  18629. weight: math.unit(160, "lb"),
  18630. name: "Front",
  18631. image: {
  18632. source: "./media/characters/ceres/front.svg",
  18633. extra: 1023 / 950,
  18634. bottom: 0.027
  18635. }
  18636. },
  18637. back: {
  18638. height: math.unit(6 + 7 / 12, "feet"),
  18639. weight: math.unit(160, "lb"),
  18640. name: "Back",
  18641. image: {
  18642. source: "./media/characters/ceres/back.svg",
  18643. extra: 1023 / 950
  18644. }
  18645. },
  18646. },
  18647. [
  18648. {
  18649. name: "Normal",
  18650. height: math.unit(6 + 7 / 12, "feet"),
  18651. default: true
  18652. },
  18653. ]
  18654. ))
  18655. characterMakers.push(() => makeCharacter(
  18656. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18657. {
  18658. front: {
  18659. height: math.unit(5 + 10 / 12, "feet"),
  18660. weight: math.unit(150, "lb"),
  18661. name: "Front",
  18662. image: {
  18663. source: "./media/characters/kris/front.svg",
  18664. extra: 885 / 803,
  18665. bottom: 0.03
  18666. }
  18667. },
  18668. },
  18669. [
  18670. {
  18671. name: "Normal",
  18672. height: math.unit(5 + 10 / 12, "feet"),
  18673. default: true
  18674. },
  18675. ]
  18676. ))
  18677. characterMakers.push(() => makeCharacter(
  18678. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18679. {
  18680. front: {
  18681. height: math.unit(7, "feet"),
  18682. weight: math.unit(120, "kg"),
  18683. name: "Front",
  18684. image: {
  18685. source: "./media/characters/taluthus/front.svg",
  18686. extra: 903 / 833,
  18687. bottom: 0.015
  18688. }
  18689. },
  18690. },
  18691. [
  18692. {
  18693. name: "Normal",
  18694. height: math.unit(7, "feet"),
  18695. default: true
  18696. },
  18697. {
  18698. name: "Macro",
  18699. height: math.unit(300, "feet")
  18700. },
  18701. ]
  18702. ))
  18703. characterMakers.push(() => makeCharacter(
  18704. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18705. {
  18706. front: {
  18707. height: math.unit(5 + 9 / 12, "feet"),
  18708. weight: math.unit(145, "lb"),
  18709. name: "Front",
  18710. image: {
  18711. source: "./media/characters/dawn/front.svg",
  18712. extra: 2094 / 2016,
  18713. bottom: 0.025
  18714. }
  18715. },
  18716. back: {
  18717. height: math.unit(5 + 9 / 12, "feet"),
  18718. weight: math.unit(160, "lb"),
  18719. name: "Back",
  18720. image: {
  18721. source: "./media/characters/dawn/back.svg",
  18722. extra: 2112 / 2080,
  18723. bottom: 0.005
  18724. }
  18725. },
  18726. },
  18727. [
  18728. {
  18729. name: "Normal",
  18730. height: math.unit(6 + 7 / 12, "feet"),
  18731. default: true
  18732. },
  18733. ]
  18734. ))
  18735. characterMakers.push(() => makeCharacter(
  18736. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18737. {
  18738. anthro: {
  18739. height: math.unit(8 + 3 / 12, "feet"),
  18740. weight: math.unit(450, "lb"),
  18741. name: "Anthro",
  18742. image: {
  18743. source: "./media/characters/arador/anthro.svg",
  18744. extra: 1835 / 1718,
  18745. bottom: 0.025
  18746. }
  18747. },
  18748. feral: {
  18749. height: math.unit(4, "feet"),
  18750. weight: math.unit(200, "lb"),
  18751. name: "Feral",
  18752. image: {
  18753. source: "./media/characters/arador/feral.svg",
  18754. extra: 1683 / 1514,
  18755. bottom: 0.07
  18756. }
  18757. },
  18758. },
  18759. [
  18760. {
  18761. name: "Normal",
  18762. height: math.unit(8 + 3 / 12, "feet")
  18763. },
  18764. {
  18765. name: "Macro",
  18766. height: math.unit(82.5, "feet"),
  18767. default: true
  18768. },
  18769. ]
  18770. ))
  18771. characterMakers.push(() => makeCharacter(
  18772. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18773. {
  18774. front: {
  18775. height: math.unit(5 + 10 / 12, "feet"),
  18776. weight: math.unit(125, "lb"),
  18777. name: "Front",
  18778. image: {
  18779. source: "./media/characters/dharsi/front.svg",
  18780. extra: 716 / 630,
  18781. bottom: 0.035
  18782. }
  18783. },
  18784. },
  18785. [
  18786. {
  18787. name: "Nano",
  18788. height: math.unit(100, "nm")
  18789. },
  18790. {
  18791. name: "Micro",
  18792. height: math.unit(2, "inches")
  18793. },
  18794. {
  18795. name: "Normal",
  18796. height: math.unit(5 + 10 / 12, "feet"),
  18797. default: true
  18798. },
  18799. {
  18800. name: "Macro",
  18801. height: math.unit(1000, "feet")
  18802. },
  18803. {
  18804. name: "Megamacro",
  18805. height: math.unit(10, "miles")
  18806. },
  18807. {
  18808. name: "Gigamacro",
  18809. height: math.unit(3000, "miles")
  18810. },
  18811. {
  18812. name: "Teramacro",
  18813. height: math.unit(500000, "miles")
  18814. },
  18815. {
  18816. name: "Teramacro+",
  18817. height: math.unit(30, "galaxies")
  18818. },
  18819. ]
  18820. ))
  18821. characterMakers.push(() => makeCharacter(
  18822. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  18823. {
  18824. front: {
  18825. height: math.unit(6, "feet"),
  18826. weight: math.unit(150, "lb"),
  18827. name: "Front",
  18828. image: {
  18829. source: "./media/characters/deathy/front.svg",
  18830. extra: 1552 / 1463,
  18831. bottom: 0.025
  18832. }
  18833. },
  18834. side: {
  18835. height: math.unit(6, "feet"),
  18836. weight: math.unit(150, "lb"),
  18837. name: "Side",
  18838. image: {
  18839. source: "./media/characters/deathy/side.svg",
  18840. extra: 1604 / 1455,
  18841. bottom: 0.025
  18842. }
  18843. },
  18844. back: {
  18845. height: math.unit(6, "feet"),
  18846. weight: math.unit(150, "lb"),
  18847. name: "Back",
  18848. image: {
  18849. source: "./media/characters/deathy/back.svg",
  18850. extra: 1580 / 1463,
  18851. bottom: 0.005
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Micro",
  18858. height: math.unit(5, "millimeters")
  18859. },
  18860. {
  18861. name: "Normal",
  18862. height: math.unit(6 + 5 / 12, "feet"),
  18863. default: true
  18864. },
  18865. ]
  18866. ))
  18867. characterMakers.push(() => makeCharacter(
  18868. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  18869. {
  18870. front: {
  18871. height: math.unit(16, "feet"),
  18872. weight: math.unit(4000, "lb"),
  18873. name: "Front",
  18874. image: {
  18875. source: "./media/characters/juniper/front.svg",
  18876. bottom: 0.04
  18877. }
  18878. },
  18879. },
  18880. [
  18881. {
  18882. name: "Normal",
  18883. height: math.unit(16, "feet"),
  18884. default: true
  18885. },
  18886. ]
  18887. ))
  18888. characterMakers.push(() => makeCharacter(
  18889. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  18890. {
  18891. front: {
  18892. height: math.unit(6, "feet"),
  18893. weight: math.unit(150, "lb"),
  18894. name: "Front",
  18895. image: {
  18896. source: "./media/characters/hipster/front.svg",
  18897. extra: 1312 / 1209,
  18898. bottom: 0.025
  18899. }
  18900. },
  18901. back: {
  18902. height: math.unit(6, "feet"),
  18903. weight: math.unit(150, "lb"),
  18904. name: "Back",
  18905. image: {
  18906. source: "./media/characters/hipster/back.svg",
  18907. extra: 1281 / 1196,
  18908. bottom: 0.01
  18909. }
  18910. },
  18911. },
  18912. [
  18913. {
  18914. name: "Micro",
  18915. height: math.unit(1, "mm")
  18916. },
  18917. {
  18918. name: "Normal",
  18919. height: math.unit(4, "inches"),
  18920. default: true
  18921. },
  18922. {
  18923. name: "Macro",
  18924. height: math.unit(500, "feet")
  18925. },
  18926. {
  18927. name: "Megamacro",
  18928. height: math.unit(1000, "miles")
  18929. },
  18930. ]
  18931. ))
  18932. characterMakers.push(() => makeCharacter(
  18933. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  18934. {
  18935. front: {
  18936. height: math.unit(6, "feet"),
  18937. weight: math.unit(150, "lb"),
  18938. name: "Front",
  18939. image: {
  18940. source: "./media/characters/tendirmuldr/front.svg",
  18941. extra: 1878 / 1772,
  18942. bottom: 0.015
  18943. }
  18944. },
  18945. },
  18946. [
  18947. {
  18948. name: "Megamacro",
  18949. height: math.unit(1500, "miles"),
  18950. default: true
  18951. },
  18952. ]
  18953. ))
  18954. characterMakers.push(() => makeCharacter(
  18955. { name: "Mort", species: ["demon"], tags: ["feral"] },
  18956. {
  18957. front: {
  18958. height: math.unit(14, "feet"),
  18959. weight: math.unit(12000, "lb"),
  18960. name: "Front",
  18961. image: {
  18962. source: "./media/characters/mort/front.svg",
  18963. extra: 365 / 318,
  18964. bottom: 0.01
  18965. }
  18966. },
  18967. side: {
  18968. height: math.unit(14, "feet"),
  18969. weight: math.unit(12000, "lb"),
  18970. name: "Side",
  18971. image: {
  18972. source: "./media/characters/mort/side.svg",
  18973. extra: 365 / 318,
  18974. bottom: 0.052
  18975. },
  18976. default: true
  18977. },
  18978. back: {
  18979. height: math.unit(14, "feet"),
  18980. weight: math.unit(12000, "lb"),
  18981. name: "Back",
  18982. image: {
  18983. source: "./media/characters/mort/back.svg",
  18984. extra: 371 / 332,
  18985. bottom: 0.18
  18986. }
  18987. },
  18988. },
  18989. [
  18990. {
  18991. name: "Normal",
  18992. height: math.unit(14, "feet"),
  18993. default: true
  18994. },
  18995. ]
  18996. ))
  18997. characterMakers.push(() => makeCharacter(
  18998. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  18999. {
  19000. front: {
  19001. height: math.unit(8, "feet"),
  19002. weight: math.unit(1, "ton"),
  19003. name: "Front",
  19004. image: {
  19005. source: "./media/characters/lycoa/front.svg",
  19006. extra: 1875 / 1789,
  19007. bottom: 0.022
  19008. }
  19009. },
  19010. back: {
  19011. height: math.unit(8, "feet"),
  19012. weight: math.unit(1, "ton"),
  19013. name: "Back",
  19014. image: {
  19015. source: "./media/characters/lycoa/back.svg",
  19016. extra: 1835 / 1781,
  19017. bottom: 0.03
  19018. }
  19019. },
  19020. },
  19021. [
  19022. {
  19023. name: "Normal",
  19024. height: math.unit(8, "feet"),
  19025. default: true
  19026. },
  19027. {
  19028. name: "Macro",
  19029. height: math.unit(30, "feet")
  19030. },
  19031. ]
  19032. ))
  19033. characterMakers.push(() => makeCharacter(
  19034. { name: "Naldara", species: ["jackalope"], tags: ["anthro"] },
  19035. {
  19036. front: {
  19037. height: math.unit(4 + 2 / 12, "feet"),
  19038. weight: math.unit(70, "lb"),
  19039. name: "Front",
  19040. image: {
  19041. source: "./media/characters/naldara/front.svg",
  19042. extra: 841 / 720,
  19043. bottom: 0.04
  19044. }
  19045. },
  19046. },
  19047. [
  19048. {
  19049. name: "Normal",
  19050. height: math.unit(4 + 2 / 12, "feet"),
  19051. default: true
  19052. },
  19053. ]
  19054. ))
  19055. characterMakers.push(() => makeCharacter(
  19056. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19057. {
  19058. front: {
  19059. height: math.unit(13 + 7 / 12, "feet"),
  19060. weight: math.unit(1500, "lb"),
  19061. name: "Front",
  19062. image: {
  19063. source: "./media/characters/briar/front.svg",
  19064. extra: 626 / 596,
  19065. bottom: 0.08
  19066. }
  19067. },
  19068. },
  19069. [
  19070. {
  19071. name: "Normal",
  19072. height: math.unit(13 + 7 / 12, "feet"),
  19073. default: true
  19074. },
  19075. ]
  19076. ))
  19077. characterMakers.push(() => makeCharacter(
  19078. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19079. {
  19080. side: {
  19081. height: math.unit(10, "feet"),
  19082. weight: math.unit(500, "lb"),
  19083. name: "Side",
  19084. image: {
  19085. source: "./media/characters/vanguard/side.svg",
  19086. extra: 502 / 425,
  19087. bottom: 0.087
  19088. }
  19089. },
  19090. },
  19091. [
  19092. {
  19093. name: "Normal",
  19094. height: math.unit(10, "feet"),
  19095. default: true
  19096. },
  19097. ]
  19098. ))
  19099. characterMakers.push(() => makeCharacter(
  19100. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19101. {
  19102. front: {
  19103. height: math.unit(7.5, "feet"),
  19104. weight: math.unit(2, "lb"),
  19105. name: "Front",
  19106. image: {
  19107. source: "./media/characters/artemis/front.svg",
  19108. extra: 1192 / 1075,
  19109. bottom: 0.07
  19110. }
  19111. },
  19112. },
  19113. [
  19114. {
  19115. name: "Normal",
  19116. height: math.unit(7.5, "feet"),
  19117. default: true
  19118. },
  19119. {
  19120. name: "Enlarged",
  19121. height: math.unit(12, "feet")
  19122. },
  19123. ]
  19124. ))
  19125. characterMakers.push(() => makeCharacter(
  19126. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19127. {
  19128. front: {
  19129. height: math.unit(5 + 3 / 12, "feet"),
  19130. weight: math.unit(160, "lb"),
  19131. name: "Front",
  19132. image: {
  19133. source: "./media/characters/kira/front.svg",
  19134. extra: 906 / 786,
  19135. bottom: 0.01
  19136. }
  19137. },
  19138. back: {
  19139. height: math.unit(5 + 3 / 12, "feet"),
  19140. weight: math.unit(160, "lb"),
  19141. name: "Back",
  19142. image: {
  19143. source: "./media/characters/kira/back.svg",
  19144. extra: 882 / 757,
  19145. bottom: 0.005
  19146. }
  19147. },
  19148. frontDressed: {
  19149. height: math.unit(5 + 3 / 12, "feet"),
  19150. weight: math.unit(160, "lb"),
  19151. name: "Front (Dressed)",
  19152. image: {
  19153. source: "./media/characters/kira/front-dressed.svg",
  19154. extra: 906 / 786,
  19155. bottom: 0.01
  19156. }
  19157. },
  19158. beans: {
  19159. height: math.unit(0.92, "feet"),
  19160. name: "Beans",
  19161. image: {
  19162. source: "./media/characters/kira/beans.svg"
  19163. }
  19164. },
  19165. },
  19166. [
  19167. {
  19168. name: "Normal",
  19169. height: math.unit(5 + 3 / 12, "feet"),
  19170. default: true
  19171. },
  19172. ]
  19173. ))
  19174. characterMakers.push(() => makeCharacter(
  19175. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19176. {
  19177. front: {
  19178. height: math.unit(5 + 4 / 12, "feet"),
  19179. weight: math.unit(145, "lb"),
  19180. name: "Front",
  19181. image: {
  19182. source: "./media/characters/scramble/front.svg",
  19183. extra: 763 / 727,
  19184. bottom: 0.05
  19185. }
  19186. },
  19187. back: {
  19188. height: math.unit(5 + 4 / 12, "feet"),
  19189. weight: math.unit(145, "lb"),
  19190. name: "Back",
  19191. image: {
  19192. source: "./media/characters/scramble/back.svg",
  19193. extra: 826 / 737,
  19194. bottom: 0.002
  19195. }
  19196. },
  19197. },
  19198. [
  19199. {
  19200. name: "Normal",
  19201. height: math.unit(5 + 4 / 12, "feet"),
  19202. default: true
  19203. },
  19204. ]
  19205. ))
  19206. characterMakers.push(() => makeCharacter(
  19207. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19208. {
  19209. side: {
  19210. height: math.unit(6 + 2 / 12, "feet"),
  19211. weight: math.unit(190, "lb"),
  19212. name: "Side",
  19213. image: {
  19214. source: "./media/characters/biscuit/side.svg",
  19215. extra: 858 / 791,
  19216. bottom: 0.044
  19217. }
  19218. },
  19219. },
  19220. [
  19221. {
  19222. name: "Normal",
  19223. height: math.unit(6 + 2 / 12, "feet"),
  19224. default: true
  19225. },
  19226. ]
  19227. ))
  19228. characterMakers.push(() => makeCharacter(
  19229. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19230. {
  19231. front: {
  19232. height: math.unit(5 + 2 / 12, "feet"),
  19233. weight: math.unit(120, "lb"),
  19234. name: "Front",
  19235. image: {
  19236. source: "./media/characters/poffin/front.svg",
  19237. extra: 786 / 680,
  19238. bottom: 0.005
  19239. }
  19240. },
  19241. },
  19242. [
  19243. {
  19244. name: "Normal",
  19245. height: math.unit(5 + 2 / 12, "feet"),
  19246. default: true
  19247. },
  19248. ]
  19249. ))
  19250. characterMakers.push(() => makeCharacter(
  19251. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19252. {
  19253. front: {
  19254. height: math.unit(6 + 3 / 12, "feet"),
  19255. weight: math.unit(519, "lb"),
  19256. name: "Front",
  19257. image: {
  19258. source: "./media/characters/dhari/front.svg",
  19259. extra: 1048 / 946,
  19260. bottom: 0.015
  19261. }
  19262. },
  19263. back: {
  19264. height: math.unit(6 + 3 / 12, "feet"),
  19265. weight: math.unit(519, "lb"),
  19266. name: "Back",
  19267. image: {
  19268. source: "./media/characters/dhari/back.svg",
  19269. extra: 1048 / 931,
  19270. bottom: 0.005
  19271. }
  19272. },
  19273. frontDressed: {
  19274. height: math.unit(6 + 3 / 12, "feet"),
  19275. weight: math.unit(519, "lb"),
  19276. name: "Front (Dressed)",
  19277. image: {
  19278. source: "./media/characters/dhari/front-dressed.svg",
  19279. extra: 1713 / 1546,
  19280. bottom: 0.02
  19281. }
  19282. },
  19283. backDressed: {
  19284. height: math.unit(6 + 3 / 12, "feet"),
  19285. weight: math.unit(519, "lb"),
  19286. name: "Back (Dressed)",
  19287. image: {
  19288. source: "./media/characters/dhari/back-dressed.svg",
  19289. extra: 1699 / 1537,
  19290. bottom: 0.01
  19291. }
  19292. },
  19293. maw: {
  19294. height: math.unit(0.95, "feet"),
  19295. name: "Maw",
  19296. image: {
  19297. source: "./media/characters/dhari/maw.svg"
  19298. }
  19299. },
  19300. wereFront: {
  19301. height: math.unit(12 + 8 / 12, "feet"),
  19302. weight: math.unit(4000, "lb"),
  19303. name: "Front (Were)",
  19304. image: {
  19305. source: "./media/characters/dhari/were-front.svg",
  19306. extra: 1065 / 969,
  19307. bottom: 0.015
  19308. }
  19309. },
  19310. wereBack: {
  19311. height: math.unit(12 + 8 / 12, "feet"),
  19312. weight: math.unit(4000, "lb"),
  19313. name: "Back (Were)",
  19314. image: {
  19315. source: "./media/characters/dhari/were-back.svg",
  19316. extra: 1065 / 969,
  19317. bottom: 0.012
  19318. }
  19319. },
  19320. wereMaw: {
  19321. height: math.unit(0.625, "meters"),
  19322. name: "Maw (Were)",
  19323. image: {
  19324. source: "./media/characters/dhari/were-maw.svg"
  19325. }
  19326. },
  19327. },
  19328. [
  19329. {
  19330. name: "Normal",
  19331. height: math.unit(6 + 3 / 12, "feet"),
  19332. default: true
  19333. },
  19334. ]
  19335. ))
  19336. characterMakers.push(() => makeCharacter(
  19337. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19338. {
  19339. anthro: {
  19340. height: math.unit(5 + 7 / 12, "feet"),
  19341. weight: math.unit(175, "lb"),
  19342. name: "Anthro",
  19343. image: {
  19344. source: "./media/characters/rena-dyne/anthro.svg",
  19345. extra: 1849 / 1785,
  19346. bottom: 0.005
  19347. }
  19348. },
  19349. taur: {
  19350. height: math.unit(15 + 6 / 12, "feet"),
  19351. weight: math.unit(8000, "lb"),
  19352. name: "Taur",
  19353. image: {
  19354. source: "./media/characters/rena-dyne/taur.svg",
  19355. extra: 2315 / 2234,
  19356. bottom: 0.033
  19357. }
  19358. },
  19359. },
  19360. [
  19361. {
  19362. name: "Normal",
  19363. height: math.unit(5 + 7 / 12, "feet"),
  19364. default: true
  19365. },
  19366. ]
  19367. ))
  19368. characterMakers.push(() => makeCharacter(
  19369. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19370. {
  19371. front: {
  19372. height: math.unit(8, "feet"),
  19373. weight: math.unit(600, "lb"),
  19374. name: "Front",
  19375. image: {
  19376. source: "./media/characters/weremeep/front.svg",
  19377. extra: 967 / 862,
  19378. bottom: 0.01
  19379. }
  19380. },
  19381. },
  19382. [
  19383. {
  19384. name: "Normal",
  19385. height: math.unit(8, "feet"),
  19386. default: true
  19387. },
  19388. {
  19389. name: "Lorg",
  19390. height: math.unit(12, "feet")
  19391. },
  19392. {
  19393. name: "Oh Lawd She Comin'",
  19394. height: math.unit(20, "feet")
  19395. },
  19396. ]
  19397. ))
  19398. characterMakers.push(() => makeCharacter(
  19399. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19400. {
  19401. front: {
  19402. height: math.unit(4, "feet"),
  19403. weight: math.unit(90, "lb"),
  19404. name: "Front",
  19405. image: {
  19406. source: "./media/characters/reza/front.svg",
  19407. extra: 1183 / 1111,
  19408. bottom: 0.017
  19409. }
  19410. },
  19411. back: {
  19412. height: math.unit(4, "feet"),
  19413. weight: math.unit(90, "lb"),
  19414. name: "Back",
  19415. image: {
  19416. source: "./media/characters/reza/back.svg",
  19417. extra: 1183 / 1111,
  19418. bottom: 0.01
  19419. }
  19420. },
  19421. drake: {
  19422. height: math.unit(30, "feet"),
  19423. weight: math.unit(246960, "lb"),
  19424. name: "Drake",
  19425. image: {
  19426. source: "./media/characters/reza/drake.svg",
  19427. extra: 2350/2024,
  19428. bottom: 60.7/2403
  19429. }
  19430. },
  19431. },
  19432. [
  19433. {
  19434. name: "Normal",
  19435. height: math.unit(4, "feet"),
  19436. default: true
  19437. },
  19438. ]
  19439. ))
  19440. characterMakers.push(() => makeCharacter(
  19441. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19442. {
  19443. side: {
  19444. height: math.unit(15, "feet"),
  19445. weight: math.unit(14, "tons"),
  19446. name: "Side",
  19447. image: {
  19448. source: "./media/characters/athea/side.svg",
  19449. extra: 960 / 540,
  19450. bottom: 0.003
  19451. }
  19452. },
  19453. sitting: {
  19454. height: math.unit(6 * 2.85, "feet"),
  19455. weight: math.unit(14, "tons"),
  19456. name: "Sitting",
  19457. image: {
  19458. source: "./media/characters/athea/sitting.svg",
  19459. extra: 621 / 581,
  19460. bottom: 0.075
  19461. }
  19462. },
  19463. maw: {
  19464. height: math.unit(7.59498031496063, "feet"),
  19465. name: "Maw",
  19466. image: {
  19467. source: "./media/characters/athea/maw.svg"
  19468. }
  19469. },
  19470. },
  19471. [
  19472. {
  19473. name: "Lap Cat",
  19474. height: math.unit(2.5, "feet")
  19475. },
  19476. {
  19477. name: "Minimacro",
  19478. height: math.unit(15, "feet"),
  19479. default: true
  19480. },
  19481. {
  19482. name: "Macro",
  19483. height: math.unit(120, "feet")
  19484. },
  19485. {
  19486. name: "Macro+",
  19487. height: math.unit(640, "feet")
  19488. },
  19489. {
  19490. name: "Colossus",
  19491. height: math.unit(2.2, "miles")
  19492. },
  19493. ]
  19494. ))
  19495. characterMakers.push(() => makeCharacter(
  19496. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19497. {
  19498. front: {
  19499. height: math.unit(8 + 8 / 12, "feet"),
  19500. weight: math.unit(130, "kg"),
  19501. name: "Front",
  19502. image: {
  19503. source: "./media/characters/seroko/front.svg",
  19504. extra: 1385 / 1280,
  19505. bottom: 0.025
  19506. }
  19507. },
  19508. back: {
  19509. height: math.unit(8 + 8 / 12, "feet"),
  19510. weight: math.unit(130, "kg"),
  19511. name: "Back",
  19512. image: {
  19513. source: "./media/characters/seroko/back.svg",
  19514. extra: 1369 / 1238,
  19515. bottom: 0.018
  19516. }
  19517. },
  19518. frontDressed: {
  19519. height: math.unit(8 + 8 / 12, "feet"),
  19520. weight: math.unit(130, "kg"),
  19521. name: "Front (Dressed)",
  19522. image: {
  19523. source: "./media/characters/seroko/front-dressed.svg",
  19524. extra: 1366 / 1275,
  19525. bottom: 0.03
  19526. }
  19527. },
  19528. },
  19529. [
  19530. {
  19531. name: "Normal",
  19532. height: math.unit(8 + 8 / 12, "feet"),
  19533. default: true
  19534. },
  19535. ]
  19536. ))
  19537. characterMakers.push(() => makeCharacter(
  19538. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19539. {
  19540. front: {
  19541. height: math.unit(5.5, "feet"),
  19542. weight: math.unit(160, "lb"),
  19543. name: "Front",
  19544. image: {
  19545. source: "./media/characters/quatzi/front.svg",
  19546. extra: 2346 / 2242,
  19547. bottom: 0.015
  19548. }
  19549. },
  19550. },
  19551. [
  19552. {
  19553. name: "Normal",
  19554. height: math.unit(5.5, "feet"),
  19555. default: true
  19556. },
  19557. {
  19558. name: "Big",
  19559. height: math.unit(7.7, "feet")
  19560. },
  19561. ]
  19562. ))
  19563. characterMakers.push(() => makeCharacter(
  19564. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19565. {
  19566. front: {
  19567. height: math.unit(5 + 11 / 12, "feet"),
  19568. weight: math.unit(180, "lb"),
  19569. name: "Front",
  19570. image: {
  19571. source: "./media/characters/sen/front.svg",
  19572. extra: 1321 / 1254,
  19573. bottom: 0.015
  19574. }
  19575. },
  19576. side: {
  19577. height: math.unit(5 + 11 / 12, "feet"),
  19578. weight: math.unit(180, "lb"),
  19579. name: "Side",
  19580. image: {
  19581. source: "./media/characters/sen/side.svg",
  19582. extra: 1321 / 1254,
  19583. bottom: 0.007
  19584. }
  19585. },
  19586. back: {
  19587. height: math.unit(5 + 11 / 12, "feet"),
  19588. weight: math.unit(180, "lb"),
  19589. name: "Back",
  19590. image: {
  19591. source: "./media/characters/sen/back.svg",
  19592. extra: 1321 / 1254
  19593. }
  19594. },
  19595. },
  19596. [
  19597. {
  19598. name: "Normal",
  19599. height: math.unit(5 + 11 / 12, "feet"),
  19600. default: true
  19601. },
  19602. ]
  19603. ))
  19604. characterMakers.push(() => makeCharacter(
  19605. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19606. {
  19607. front: {
  19608. height: math.unit(166.6, "cm"),
  19609. weight: math.unit(66.6, "kg"),
  19610. name: "Front",
  19611. image: {
  19612. source: "./media/characters/fruity/front.svg",
  19613. extra: 1510 / 1386,
  19614. bottom: 0.04
  19615. }
  19616. },
  19617. back: {
  19618. height: math.unit(166.6, "cm"),
  19619. weight: math.unit(66.6, "lb"),
  19620. name: "Back",
  19621. image: {
  19622. source: "./media/characters/fruity/back.svg",
  19623. extra: 1563 / 1435,
  19624. bottom: 0.005
  19625. }
  19626. },
  19627. },
  19628. [
  19629. {
  19630. name: "Normal",
  19631. height: math.unit(166.6, "cm"),
  19632. default: true
  19633. },
  19634. {
  19635. name: "Demonic",
  19636. height: math.unit(166.6, "feet")
  19637. },
  19638. ]
  19639. ))
  19640. characterMakers.push(() => makeCharacter(
  19641. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19642. {
  19643. side: {
  19644. height: math.unit(10, "feet"),
  19645. weight: math.unit(500, "lb"),
  19646. name: "Side",
  19647. image: {
  19648. source: "./media/characters/zost/side.svg",
  19649. extra: 966 / 880,
  19650. bottom: 0.075
  19651. }
  19652. },
  19653. mawFront: {
  19654. height: math.unit(1.08, "meters"),
  19655. name: "Maw (Front)",
  19656. image: {
  19657. source: "./media/characters/zost/maw-front.svg"
  19658. }
  19659. },
  19660. mawSide: {
  19661. height: math.unit(2.66, "feet"),
  19662. name: "Maw (Side)",
  19663. image: {
  19664. source: "./media/characters/zost/maw-side.svg"
  19665. }
  19666. },
  19667. },
  19668. [
  19669. {
  19670. name: "Normal",
  19671. height: math.unit(10, "feet"),
  19672. default: true
  19673. },
  19674. ]
  19675. ))
  19676. characterMakers.push(() => makeCharacter(
  19677. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  19678. {
  19679. front: {
  19680. height: math.unit(5 + 4 / 12, "feet"),
  19681. weight: math.unit(120, "lb"),
  19682. name: "Front",
  19683. image: {
  19684. source: "./media/characters/luci/front.svg",
  19685. extra: 1985 / 1884,
  19686. bottom: 0.04
  19687. }
  19688. },
  19689. back: {
  19690. height: math.unit(5 + 4 / 12, "feet"),
  19691. weight: math.unit(120, "lb"),
  19692. name: "Back",
  19693. image: {
  19694. source: "./media/characters/luci/back.svg",
  19695. extra: 1892 / 1791,
  19696. bottom: 0.002
  19697. }
  19698. },
  19699. },
  19700. [
  19701. {
  19702. name: "Normal",
  19703. height: math.unit(5 + 4 / 12, "feet"),
  19704. default: true
  19705. },
  19706. ]
  19707. ))
  19708. characterMakers.push(() => makeCharacter(
  19709. { name: "2th", species: ["monster"], tags: ["anthro"] },
  19710. {
  19711. front: {
  19712. height: math.unit(1500, "feet"),
  19713. weight: math.unit(3.8e6, "tons"),
  19714. name: "Front",
  19715. image: {
  19716. source: "./media/characters/2th/front.svg",
  19717. extra: 3489 / 3350,
  19718. bottom: 0.1
  19719. }
  19720. },
  19721. foot: {
  19722. height: math.unit(461, "feet"),
  19723. name: "Foot",
  19724. image: {
  19725. source: "./media/characters/2th/foot.svg"
  19726. }
  19727. },
  19728. },
  19729. [
  19730. {
  19731. name: "\"Micro\"",
  19732. height: math.unit(15 + 7 / 12, "feet")
  19733. },
  19734. {
  19735. name: "Normal",
  19736. height: math.unit(1500, "feet"),
  19737. default: true
  19738. },
  19739. {
  19740. name: "Macro",
  19741. height: math.unit(5000, "feet")
  19742. },
  19743. {
  19744. name: "Megamacro",
  19745. height: math.unit(15, "miles")
  19746. },
  19747. {
  19748. name: "Gigamacro",
  19749. height: math.unit(4000, "miles")
  19750. },
  19751. {
  19752. name: "Galactic",
  19753. height: math.unit(50, "AU")
  19754. },
  19755. ]
  19756. ))
  19757. characterMakers.push(() => makeCharacter(
  19758. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  19759. {
  19760. front: {
  19761. height: math.unit(5 + 6 / 12, "feet"),
  19762. weight: math.unit(220, "lb"),
  19763. name: "Front",
  19764. image: {
  19765. source: "./media/characters/amethyst/front.svg",
  19766. extra: 2078 / 2040,
  19767. bottom: 0.045
  19768. }
  19769. },
  19770. back: {
  19771. height: math.unit(5 + 6 / 12, "feet"),
  19772. weight: math.unit(220, "lb"),
  19773. name: "Back",
  19774. image: {
  19775. source: "./media/characters/amethyst/back.svg",
  19776. extra: 2021 / 1989,
  19777. bottom: 0.02
  19778. }
  19779. },
  19780. },
  19781. [
  19782. {
  19783. name: "Normal",
  19784. height: math.unit(5 + 6 / 12, "feet"),
  19785. default: true
  19786. },
  19787. ]
  19788. ))
  19789. characterMakers.push(() => makeCharacter(
  19790. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  19791. {
  19792. front: {
  19793. height: math.unit(4 + 11 / 12, "feet"),
  19794. weight: math.unit(120, "lb"),
  19795. name: "Front",
  19796. image: {
  19797. source: "./media/characters/yumi-akiyama/front.svg",
  19798. extra: 1327 / 1235,
  19799. bottom: 0.02
  19800. }
  19801. },
  19802. back: {
  19803. height: math.unit(4 + 11 / 12, "feet"),
  19804. weight: math.unit(120, "lb"),
  19805. name: "Back",
  19806. image: {
  19807. source: "./media/characters/yumi-akiyama/back.svg",
  19808. extra: 1287 / 1245,
  19809. bottom: 0.002
  19810. }
  19811. },
  19812. },
  19813. [
  19814. {
  19815. name: "Galactic",
  19816. height: math.unit(50, "galaxies"),
  19817. default: true
  19818. },
  19819. {
  19820. name: "Universal",
  19821. height: math.unit(100, "universes")
  19822. },
  19823. ]
  19824. ))
  19825. characterMakers.push(() => makeCharacter(
  19826. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  19827. {
  19828. front: {
  19829. height: math.unit(8, "feet"),
  19830. weight: math.unit(500, "lb"),
  19831. name: "Front",
  19832. image: {
  19833. source: "./media/characters/rifter-yrmori/front.svg",
  19834. extra: 1180 / 1125,
  19835. bottom: 0.02
  19836. }
  19837. },
  19838. back: {
  19839. height: math.unit(8, "feet"),
  19840. weight: math.unit(500, "lb"),
  19841. name: "Back",
  19842. image: {
  19843. source: "./media/characters/rifter-yrmori/back.svg",
  19844. extra: 1190 / 1145,
  19845. bottom: 0.001
  19846. }
  19847. },
  19848. wings: {
  19849. height: math.unit(7.75, "feet"),
  19850. weight: math.unit(500, "lb"),
  19851. name: "Wings",
  19852. image: {
  19853. source: "./media/characters/rifter-yrmori/wings.svg",
  19854. extra: 1357 / 1285
  19855. }
  19856. },
  19857. maw: {
  19858. height: math.unit(0.8, "feet"),
  19859. name: "Maw",
  19860. image: {
  19861. source: "./media/characters/rifter-yrmori/maw.svg"
  19862. }
  19863. },
  19864. },
  19865. [
  19866. {
  19867. name: "Normal",
  19868. height: math.unit(8, "feet"),
  19869. default: true
  19870. },
  19871. {
  19872. name: "Macro",
  19873. height: math.unit(42, "meters")
  19874. },
  19875. ]
  19876. ))
  19877. characterMakers.push(() => makeCharacter(
  19878. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  19879. {
  19880. were: {
  19881. height: math.unit(25 + 6 / 12, "feet"),
  19882. weight: math.unit(10000, "lb"),
  19883. name: "Were",
  19884. image: {
  19885. source: "./media/characters/tahajin/were.svg",
  19886. extra: 801 / 770,
  19887. bottom: 0.042
  19888. }
  19889. },
  19890. aquatic: {
  19891. height: math.unit(6 + 4 / 12, "feet"),
  19892. weight: math.unit(160, "lb"),
  19893. name: "Aquatic",
  19894. image: {
  19895. source: "./media/characters/tahajin/aquatic.svg",
  19896. extra: 572 / 542,
  19897. bottom: 0.04
  19898. }
  19899. },
  19900. chow: {
  19901. height: math.unit(8 + 11 / 12, "feet"),
  19902. weight: math.unit(450, "lb"),
  19903. name: "Chow",
  19904. image: {
  19905. source: "./media/characters/tahajin/chow.svg",
  19906. extra: 660 / 640,
  19907. bottom: 0.015
  19908. }
  19909. },
  19910. demiNaga: {
  19911. height: math.unit(6 + 8 / 12, "feet"),
  19912. weight: math.unit(300, "lb"),
  19913. name: "Demi Naga",
  19914. image: {
  19915. source: "./media/characters/tahajin/demi-naga.svg",
  19916. extra: 643 / 615,
  19917. bottom: 0.1
  19918. }
  19919. },
  19920. data: {
  19921. height: math.unit(5, "inches"),
  19922. weight: math.unit(0.1, "lb"),
  19923. name: "Data",
  19924. image: {
  19925. source: "./media/characters/tahajin/data.svg"
  19926. }
  19927. },
  19928. fluu: {
  19929. height: math.unit(5 + 7 / 12, "feet"),
  19930. weight: math.unit(140, "lb"),
  19931. name: "Fluu",
  19932. image: {
  19933. source: "./media/characters/tahajin/fluu.svg",
  19934. extra: 628 / 592,
  19935. bottom: 0.02
  19936. }
  19937. },
  19938. starWarrior: {
  19939. height: math.unit(4 + 5 / 12, "feet"),
  19940. weight: math.unit(50, "lb"),
  19941. name: "Star Warrior",
  19942. image: {
  19943. source: "./media/characters/tahajin/star-warrior.svg"
  19944. }
  19945. },
  19946. },
  19947. [
  19948. {
  19949. name: "Normal",
  19950. height: math.unit(25 + 6 / 12, "feet"),
  19951. default: true
  19952. },
  19953. ]
  19954. ))
  19955. characterMakers.push(() => makeCharacter(
  19956. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  19957. {
  19958. front: {
  19959. height: math.unit(8, "feet"),
  19960. weight: math.unit(350, "lb"),
  19961. name: "Front",
  19962. image: {
  19963. source: "./media/characters/gabira/front.svg",
  19964. extra: 608 / 580,
  19965. bottom: 0.03
  19966. }
  19967. },
  19968. back: {
  19969. height: math.unit(8, "feet"),
  19970. weight: math.unit(350, "lb"),
  19971. name: "Back",
  19972. image: {
  19973. source: "./media/characters/gabira/back.svg",
  19974. extra: 608 / 580,
  19975. bottom: 0.03
  19976. }
  19977. },
  19978. },
  19979. [
  19980. {
  19981. name: "Normal",
  19982. height: math.unit(8, "feet"),
  19983. default: true
  19984. },
  19985. ]
  19986. ))
  19987. characterMakers.push(() => makeCharacter(
  19988. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  19989. {
  19990. front: {
  19991. height: math.unit(5 + 3 / 12, "feet"),
  19992. weight: math.unit(137, "lb"),
  19993. name: "Front",
  19994. image: {
  19995. source: "./media/characters/sasha-katraine/front.svg",
  19996. bottom: 0.045
  19997. }
  19998. },
  19999. },
  20000. [
  20001. {
  20002. name: "Micro",
  20003. height: math.unit(5, "inches")
  20004. },
  20005. {
  20006. name: "Normal",
  20007. height: math.unit(5 + 3 / 12, "feet"),
  20008. default: true
  20009. },
  20010. ]
  20011. ))
  20012. characterMakers.push(() => makeCharacter(
  20013. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20014. {
  20015. side: {
  20016. height: math.unit(4, "inches"),
  20017. weight: math.unit(200, "grams"),
  20018. name: "Side",
  20019. image: {
  20020. source: "./media/characters/der/side.svg",
  20021. extra: 719 / 400,
  20022. bottom: 30.6 / 749.9187
  20023. }
  20024. },
  20025. },
  20026. [
  20027. {
  20028. name: "Micro",
  20029. height: math.unit(4, "inches"),
  20030. default: true
  20031. },
  20032. ]
  20033. ))
  20034. characterMakers.push(() => makeCharacter(
  20035. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20036. {
  20037. side: {
  20038. height: math.unit(30, "meters"),
  20039. weight: math.unit(700, "tonnes"),
  20040. name: "Side",
  20041. image: {
  20042. source: "./media/characters/fixerdragon/side.svg",
  20043. extra: (1293.0514 - 116.03) / 1106.86,
  20044. bottom: 116.03 / 1293.0514
  20045. }
  20046. },
  20047. },
  20048. [
  20049. {
  20050. name: "Planck",
  20051. height: math.unit(1.6e-35, "meters")
  20052. },
  20053. {
  20054. name: "Micro",
  20055. height: math.unit(0.4, "meters")
  20056. },
  20057. {
  20058. name: "Normal",
  20059. height: math.unit(30, "meters"),
  20060. default: true
  20061. },
  20062. {
  20063. name: "Megamacro",
  20064. height: math.unit(1.2, "megameters")
  20065. },
  20066. {
  20067. name: "Teramacro",
  20068. height: math.unit(130, "terameters")
  20069. },
  20070. {
  20071. name: "Yottamacro",
  20072. height: math.unit(6200, "yottameters")
  20073. },
  20074. ]
  20075. ));
  20076. characterMakers.push(() => makeCharacter(
  20077. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20078. {
  20079. front: {
  20080. height: math.unit(8, "feet"),
  20081. weight: math.unit(250, "lb"),
  20082. name: "Front",
  20083. image: {
  20084. source: "./media/characters/kite/front.svg",
  20085. extra: 2796 / 2659,
  20086. bottom: 0.002
  20087. }
  20088. },
  20089. },
  20090. [
  20091. {
  20092. name: "Normal",
  20093. height: math.unit(8, "feet"),
  20094. default: true
  20095. },
  20096. {
  20097. name: "Macro",
  20098. height: math.unit(360, "feet")
  20099. },
  20100. {
  20101. name: "Megamacro",
  20102. height: math.unit(1500, "feet")
  20103. },
  20104. ]
  20105. ))
  20106. characterMakers.push(() => makeCharacter(
  20107. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20108. {
  20109. front: {
  20110. height: math.unit(5 + 10 / 12, "feet"),
  20111. weight: math.unit(150, "lb"),
  20112. name: "Front",
  20113. image: {
  20114. source: "./media/characters/poojawa-vynar/front.svg",
  20115. extra: (1506.1547 - 55) / 1356.6,
  20116. bottom: 55 / 1506.1547
  20117. }
  20118. },
  20119. frontTailless: {
  20120. height: math.unit(5 + 10 / 12, "feet"),
  20121. weight: math.unit(150, "lb"),
  20122. name: "Front (Tailless)",
  20123. image: {
  20124. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20125. extra: (1506.1547 - 55) / 1356.6,
  20126. bottom: 55 / 1506.1547
  20127. }
  20128. },
  20129. },
  20130. [
  20131. {
  20132. name: "Normal",
  20133. height: math.unit(5 + 10 / 12, "feet"),
  20134. default: true
  20135. },
  20136. ]
  20137. ))
  20138. characterMakers.push(() => makeCharacter(
  20139. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20140. {
  20141. front: {
  20142. height: math.unit(293, "meters"),
  20143. weight: math.unit(70400, "tons"),
  20144. name: "Front",
  20145. image: {
  20146. source: "./media/characters/violette/front.svg",
  20147. extra: 1227 / 1180,
  20148. bottom: 0.005
  20149. }
  20150. },
  20151. back: {
  20152. height: math.unit(293, "meters"),
  20153. weight: math.unit(70400, "tons"),
  20154. name: "Back",
  20155. image: {
  20156. source: "./media/characters/violette/back.svg",
  20157. extra: 1227 / 1180,
  20158. bottom: 0.005
  20159. }
  20160. },
  20161. },
  20162. [
  20163. {
  20164. name: "Macro",
  20165. height: math.unit(293, "meters"),
  20166. default: true
  20167. },
  20168. ]
  20169. ))
  20170. characterMakers.push(() => makeCharacter(
  20171. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20172. {
  20173. front: {
  20174. height: math.unit(1050, "feet"),
  20175. weight: math.unit(200000, "tons"),
  20176. name: "Front",
  20177. image: {
  20178. source: "./media/characters/alessandra/front.svg",
  20179. extra: 960 / 912,
  20180. bottom: 0.06
  20181. }
  20182. },
  20183. },
  20184. [
  20185. {
  20186. name: "Macro",
  20187. height: math.unit(1050, "feet")
  20188. },
  20189. {
  20190. name: "Macro+",
  20191. height: math.unit(900, "meters"),
  20192. default: true
  20193. },
  20194. ]
  20195. ))
  20196. characterMakers.push(() => makeCharacter(
  20197. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20198. {
  20199. front: {
  20200. height: math.unit(5, "feet"),
  20201. weight: math.unit(187, "lb"),
  20202. name: "Front",
  20203. image: {
  20204. source: "./media/characters/person/front.svg",
  20205. extra: 3087 / 2945,
  20206. bottom: 91 / 3181
  20207. }
  20208. },
  20209. },
  20210. [
  20211. {
  20212. name: "Micro",
  20213. height: math.unit(3, "inches")
  20214. },
  20215. {
  20216. name: "Normal",
  20217. height: math.unit(5, "feet"),
  20218. default: true
  20219. },
  20220. {
  20221. name: "Macro",
  20222. height: math.unit(90, "feet")
  20223. },
  20224. {
  20225. name: "Max Size",
  20226. height: math.unit(280, "feet")
  20227. },
  20228. ]
  20229. ))
  20230. characterMakers.push(() => makeCharacter(
  20231. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20232. {
  20233. front: {
  20234. height: math.unit(4.5, "meters"),
  20235. weight: math.unit(3200, "lb"),
  20236. name: "Front",
  20237. image: {
  20238. source: "./media/characters/ty/front.svg",
  20239. extra: 1038 / 960,
  20240. bottom: 31.156 / 1068
  20241. }
  20242. },
  20243. back: {
  20244. height: math.unit(4.5, "meters"),
  20245. weight: math.unit(3200, "lb"),
  20246. name: "Back",
  20247. image: {
  20248. source: "./media/characters/ty/back.svg",
  20249. extra: 1044 / 966,
  20250. bottom: 7.48 / 1049
  20251. }
  20252. },
  20253. },
  20254. [
  20255. {
  20256. name: "Normal",
  20257. height: math.unit(4.5, "meters"),
  20258. default: true
  20259. },
  20260. ]
  20261. ))
  20262. characterMakers.push(() => makeCharacter(
  20263. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20264. {
  20265. front: {
  20266. height: math.unit(5 + 4 / 12, "feet"),
  20267. weight: math.unit(115, "lb"),
  20268. name: "Front",
  20269. image: {
  20270. source: "./media/characters/rocky/front.svg",
  20271. extra: 1012 / 975,
  20272. bottom: 54 / 1066
  20273. }
  20274. },
  20275. },
  20276. [
  20277. {
  20278. name: "Normal",
  20279. height: math.unit(5 + 4 / 12, "feet"),
  20280. default: true
  20281. },
  20282. ]
  20283. ))
  20284. characterMakers.push(() => makeCharacter(
  20285. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20286. {
  20287. upright: {
  20288. height: math.unit(6, "meters"),
  20289. weight: math.unit(4000, "kg"),
  20290. name: "Upright",
  20291. image: {
  20292. source: "./media/characters/ruin/upright.svg",
  20293. extra: 668 / 661,
  20294. bottom: 42 / 799.8396
  20295. }
  20296. },
  20297. },
  20298. [
  20299. {
  20300. name: "Normal",
  20301. height: math.unit(6, "meters"),
  20302. default: true
  20303. },
  20304. ]
  20305. ))
  20306. characterMakers.push(() => makeCharacter(
  20307. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20308. {
  20309. front: {
  20310. height: math.unit(5, "feet"),
  20311. weight: math.unit(106, "lb"),
  20312. name: "Front",
  20313. image: {
  20314. source: "./media/characters/robin/front.svg",
  20315. extra: 862 / 799,
  20316. bottom: 42.4 / 914.8856
  20317. }
  20318. },
  20319. },
  20320. [
  20321. {
  20322. name: "Normal",
  20323. height: math.unit(5, "feet"),
  20324. default: true
  20325. },
  20326. ]
  20327. ))
  20328. characterMakers.push(() => makeCharacter(
  20329. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20330. {
  20331. side: {
  20332. height: math.unit(3, "feet"),
  20333. weight: math.unit(225, "lb"),
  20334. name: "Side",
  20335. image: {
  20336. source: "./media/characters/saian/side.svg",
  20337. extra: 566 / 356,
  20338. bottom: 79.7 / 643
  20339. }
  20340. },
  20341. maw: {
  20342. height: math.unit(2.85, "feet"),
  20343. name: "Maw",
  20344. image: {
  20345. source: "./media/characters/saian/maw.svg"
  20346. }
  20347. },
  20348. },
  20349. [
  20350. {
  20351. name: "Normal",
  20352. height: math.unit(3, "feet"),
  20353. default: true
  20354. },
  20355. ]
  20356. ))
  20357. characterMakers.push(() => makeCharacter(
  20358. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20359. {
  20360. side: {
  20361. height: math.unit(8, "feet"),
  20362. weight: math.unit(300, "lb"),
  20363. name: "Side",
  20364. image: {
  20365. source: "./media/characters/equus-silvermane/side.svg",
  20366. extra: 2176 / 2050,
  20367. bottom: 65.7 / 2245
  20368. }
  20369. },
  20370. front: {
  20371. height: math.unit(8, "feet"),
  20372. weight: math.unit(300, "lb"),
  20373. name: "Front",
  20374. image: {
  20375. source: "./media/characters/equus-silvermane/front.svg",
  20376. extra: 4633 / 4400,
  20377. bottom: 71.3 / 4706.915
  20378. }
  20379. },
  20380. sideStepping: {
  20381. height: math.unit(8, "feet"),
  20382. weight: math.unit(300, "lb"),
  20383. name: "Side (Stepping)",
  20384. image: {
  20385. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20386. extra: 1968 / 1860,
  20387. bottom: 16.4 / 1989
  20388. }
  20389. },
  20390. },
  20391. [
  20392. {
  20393. name: "Normal",
  20394. height: math.unit(8, "feet")
  20395. },
  20396. {
  20397. name: "Minimacro",
  20398. height: math.unit(75, "feet"),
  20399. default: true
  20400. },
  20401. {
  20402. name: "Macro",
  20403. height: math.unit(150, "feet")
  20404. },
  20405. {
  20406. name: "Macro+",
  20407. height: math.unit(1000, "feet")
  20408. },
  20409. {
  20410. name: "Megamacro",
  20411. height: math.unit(1, "mile")
  20412. },
  20413. ]
  20414. ))
  20415. characterMakers.push(() => makeCharacter(
  20416. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20417. {
  20418. side: {
  20419. height: math.unit(20, "feet"),
  20420. weight: math.unit(30000, "kg"),
  20421. name: "Side",
  20422. image: {
  20423. source: "./media/characters/windar/side.svg",
  20424. extra: 1491 / 1248,
  20425. bottom: 82.56 / 1568
  20426. }
  20427. },
  20428. },
  20429. [
  20430. {
  20431. name: "Normal",
  20432. height: math.unit(20, "feet"),
  20433. default: true
  20434. },
  20435. ]
  20436. ))
  20437. characterMakers.push(() => makeCharacter(
  20438. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20439. {
  20440. side: {
  20441. height: math.unit(15.66, "feet"),
  20442. weight: math.unit(150, "lb"),
  20443. name: "Side",
  20444. image: {
  20445. source: "./media/characters/melody/side.svg",
  20446. extra: 1097 / 944,
  20447. bottom: 11.8 / 1109
  20448. }
  20449. },
  20450. sideOutfit: {
  20451. height: math.unit(15.66, "feet"),
  20452. weight: math.unit(150, "lb"),
  20453. name: "Side (Outfit)",
  20454. image: {
  20455. source: "./media/characters/melody/side-outfit.svg",
  20456. extra: 1097 / 944,
  20457. bottom: 11.8 / 1109
  20458. }
  20459. },
  20460. },
  20461. [
  20462. {
  20463. name: "Normal",
  20464. height: math.unit(15.66, "feet"),
  20465. default: true
  20466. },
  20467. ]
  20468. ))
  20469. characterMakers.push(() => makeCharacter(
  20470. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20471. {
  20472. front: {
  20473. height: math.unit(8, "feet"),
  20474. weight: math.unit(325, "lb"),
  20475. name: "Front",
  20476. image: {
  20477. source: "./media/characters/windera/front.svg",
  20478. extra: 3180 / 2845,
  20479. bottom: 178 / 3365
  20480. }
  20481. },
  20482. },
  20483. [
  20484. {
  20485. name: "Normal",
  20486. height: math.unit(8, "feet"),
  20487. default: true
  20488. },
  20489. ]
  20490. ))
  20491. characterMakers.push(() => makeCharacter(
  20492. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20493. {
  20494. front: {
  20495. height: math.unit(28.75, "feet"),
  20496. weight: math.unit(2000, "kg"),
  20497. name: "Front",
  20498. image: {
  20499. source: "./media/characters/sonear/front.svg",
  20500. extra: 1041.1 / 964.9,
  20501. bottom: 53.7 / 1096.6
  20502. }
  20503. },
  20504. },
  20505. [
  20506. {
  20507. name: "Normal",
  20508. height: math.unit(28.75, "feet"),
  20509. default: true
  20510. },
  20511. ]
  20512. ))
  20513. characterMakers.push(() => makeCharacter(
  20514. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20515. {
  20516. side: {
  20517. height: math.unit(25.5, "feet"),
  20518. weight: math.unit(23000, "kg"),
  20519. name: "Side",
  20520. image: {
  20521. source: "./media/characters/kanara/side.svg"
  20522. }
  20523. },
  20524. },
  20525. [
  20526. {
  20527. name: "Normal",
  20528. height: math.unit(25.5, "feet"),
  20529. default: true
  20530. },
  20531. ]
  20532. ))
  20533. characterMakers.push(() => makeCharacter(
  20534. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20535. {
  20536. side: {
  20537. height: math.unit(10, "feet"),
  20538. weight: math.unit(1000, "kg"),
  20539. name: "Side",
  20540. image: {
  20541. source: "./media/characters/ereus/side.svg",
  20542. extra: 1157 / 959,
  20543. bottom: 153 / 1312.5
  20544. }
  20545. },
  20546. },
  20547. [
  20548. {
  20549. name: "Normal",
  20550. height: math.unit(10, "feet"),
  20551. default: true
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20557. {
  20558. side: {
  20559. height: math.unit(4.5, "feet"),
  20560. weight: math.unit(500, "lb"),
  20561. name: "Side",
  20562. image: {
  20563. source: "./media/characters/e-ter/side.svg",
  20564. extra: 1550 / 1248,
  20565. bottom: 146 / 1694
  20566. }
  20567. },
  20568. },
  20569. [
  20570. {
  20571. name: "Normal",
  20572. height: math.unit(4.5, "feet"),
  20573. default: true
  20574. },
  20575. ]
  20576. ))
  20577. characterMakers.push(() => makeCharacter(
  20578. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20579. {
  20580. side: {
  20581. height: math.unit(9.7, "feet"),
  20582. weight: math.unit(4000, "kg"),
  20583. name: "Side",
  20584. image: {
  20585. source: "./media/characters/yamie/side.svg"
  20586. }
  20587. },
  20588. },
  20589. [
  20590. {
  20591. name: "Normal",
  20592. height: math.unit(9.7, "feet"),
  20593. default: true
  20594. },
  20595. ]
  20596. ))
  20597. characterMakers.push(() => makeCharacter(
  20598. { name: "Anders", species: ["unicorn"], tags: ["anthro"] },
  20599. {
  20600. front: {
  20601. height: math.unit(50, "feet"),
  20602. weight: math.unit(50000, "kg"),
  20603. name: "Front",
  20604. image: {
  20605. source: "./media/characters/anders/front.svg",
  20606. extra: 570 / 539,
  20607. bottom: 14.7 / 586.7
  20608. }
  20609. },
  20610. },
  20611. [
  20612. {
  20613. name: "Large",
  20614. height: math.unit(50, "feet")
  20615. },
  20616. {
  20617. name: "Macro",
  20618. height: math.unit(2000, "feet"),
  20619. default: true
  20620. },
  20621. {
  20622. name: "Megamacro",
  20623. height: math.unit(12, "miles")
  20624. },
  20625. ]
  20626. ))
  20627. characterMakers.push(() => makeCharacter(
  20628. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20629. {
  20630. front: {
  20631. height: math.unit(7 + 2 / 12, "feet"),
  20632. weight: math.unit(300, "lb"),
  20633. name: "Front",
  20634. image: {
  20635. source: "./media/characters/reban/front.svg",
  20636. extra: 516 / 487,
  20637. bottom: 42.82 / 558.356
  20638. }
  20639. },
  20640. dick: {
  20641. height: math.unit(7 / 5, "feet"),
  20642. name: "Dick",
  20643. image: {
  20644. source: "./media/characters/reban/dick.svg"
  20645. }
  20646. },
  20647. },
  20648. [
  20649. {
  20650. name: "Natural Height",
  20651. height: math.unit(7 + 2 / 12, "feet")
  20652. },
  20653. {
  20654. name: "Macro",
  20655. height: math.unit(500, "feet"),
  20656. default: true
  20657. },
  20658. {
  20659. name: "Canon Height",
  20660. height: math.unit(50, "AU")
  20661. },
  20662. ]
  20663. ))
  20664. characterMakers.push(() => makeCharacter(
  20665. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20666. {
  20667. front: {
  20668. height: math.unit(6, "feet"),
  20669. weight: math.unit(150, "lb"),
  20670. name: "Front",
  20671. image: {
  20672. source: "./media/characters/terrance-keayes/front.svg",
  20673. extra: 1.005,
  20674. bottom: 151 / 1615
  20675. }
  20676. },
  20677. side: {
  20678. height: math.unit(6, "feet"),
  20679. weight: math.unit(150, "lb"),
  20680. name: "Side",
  20681. image: {
  20682. source: "./media/characters/terrance-keayes/side.svg",
  20683. extra: 1.005,
  20684. bottom: 129.4 / 1544
  20685. }
  20686. },
  20687. back: {
  20688. height: math.unit(6, "feet"),
  20689. weight: math.unit(150, "lb"),
  20690. name: "Back",
  20691. image: {
  20692. source: "./media/characters/terrance-keayes/back.svg",
  20693. extra: 1.005,
  20694. bottom: 58.4 / 1557.3
  20695. }
  20696. },
  20697. dick: {
  20698. height: math.unit(6 * 0.208, "feet"),
  20699. name: "Dick",
  20700. image: {
  20701. source: "./media/characters/terrance-keayes/dick.svg"
  20702. }
  20703. },
  20704. },
  20705. [
  20706. {
  20707. name: "Canon Height",
  20708. height: math.unit(35, "miles"),
  20709. default: true
  20710. },
  20711. ]
  20712. ))
  20713. characterMakers.push(() => makeCharacter(
  20714. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  20715. {
  20716. front: {
  20717. height: math.unit(6, "feet"),
  20718. weight: math.unit(150, "lb"),
  20719. name: "Front",
  20720. image: {
  20721. source: "./media/characters/ofelia/front.svg",
  20722. extra: 546 / 541,
  20723. bottom: 39 / 583
  20724. }
  20725. },
  20726. back: {
  20727. height: math.unit(6, "feet"),
  20728. weight: math.unit(150, "lb"),
  20729. name: "Back",
  20730. image: {
  20731. source: "./media/characters/ofelia/back.svg",
  20732. extra: 564 / 559.5,
  20733. bottom: 8.69 / 573.02
  20734. }
  20735. },
  20736. maw: {
  20737. height: math.unit(1, "feet"),
  20738. name: "Maw",
  20739. image: {
  20740. source: "./media/characters/ofelia/maw.svg"
  20741. }
  20742. },
  20743. foot: {
  20744. height: math.unit(1.949, "feet"),
  20745. name: "Foot",
  20746. image: {
  20747. source: "./media/characters/ofelia/foot.svg"
  20748. }
  20749. },
  20750. },
  20751. [
  20752. {
  20753. name: "Canon Height",
  20754. height: math.unit(2000, "miles"),
  20755. default: true
  20756. },
  20757. ]
  20758. ))
  20759. characterMakers.push(() => makeCharacter(
  20760. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  20761. {
  20762. front: {
  20763. height: math.unit(6, "feet"),
  20764. weight: math.unit(150, "lb"),
  20765. name: "Front",
  20766. image: {
  20767. source: "./media/characters/samuel/front.svg",
  20768. extra: 265 / 258,
  20769. bottom: 2 / 266.1566
  20770. }
  20771. },
  20772. },
  20773. [
  20774. {
  20775. name: "Macro",
  20776. height: math.unit(100, "feet"),
  20777. default: true
  20778. },
  20779. {
  20780. name: "Full Size",
  20781. height: math.unit(1000, "miles")
  20782. },
  20783. ]
  20784. ))
  20785. characterMakers.push(() => makeCharacter(
  20786. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  20787. {
  20788. front: {
  20789. height: math.unit(6, "feet"),
  20790. weight: math.unit(300, "lb"),
  20791. name: "Front",
  20792. image: {
  20793. source: "./media/characters/beishir-kiel/front.svg",
  20794. extra: 569 / 547,
  20795. bottom: 41.9 / 609
  20796. }
  20797. },
  20798. maw: {
  20799. height: math.unit(6 * 0.202, "feet"),
  20800. name: "Maw",
  20801. image: {
  20802. source: "./media/characters/beishir-kiel/maw.svg"
  20803. }
  20804. },
  20805. },
  20806. [
  20807. {
  20808. name: "Macro",
  20809. height: math.unit(300, "feet"),
  20810. default: true
  20811. },
  20812. ]
  20813. ))
  20814. characterMakers.push(() => makeCharacter(
  20815. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  20816. {
  20817. front: {
  20818. height: math.unit(5 + 8 / 12, "feet"),
  20819. weight: math.unit(120, "lb"),
  20820. name: "Front",
  20821. image: {
  20822. source: "./media/characters/logan-grey/front.svg",
  20823. extra: 2539 / 2393,
  20824. bottom: 97.6 / 2636.37
  20825. }
  20826. },
  20827. frontAlt: {
  20828. height: math.unit(5 + 8 / 12, "feet"),
  20829. weight: math.unit(120, "lb"),
  20830. name: "Front (Alt)",
  20831. image: {
  20832. source: "./media/characters/logan-grey/front-alt.svg",
  20833. extra: 958 / 893,
  20834. bottom: 15 / 970.768
  20835. }
  20836. },
  20837. back: {
  20838. height: math.unit(5 + 8 / 12, "feet"),
  20839. weight: math.unit(120, "lb"),
  20840. name: "Back",
  20841. image: {
  20842. source: "./media/characters/logan-grey/back.svg",
  20843. extra: 958 / 893,
  20844. bottom: 2.1881 / 970.9788
  20845. }
  20846. },
  20847. dick: {
  20848. height: math.unit(1.437, "feet"),
  20849. name: "Dick",
  20850. image: {
  20851. source: "./media/characters/logan-grey/dick.svg"
  20852. }
  20853. },
  20854. },
  20855. [
  20856. {
  20857. name: "Normal",
  20858. height: math.unit(5 + 8 / 12, "feet")
  20859. },
  20860. {
  20861. name: "The 500 Foot Femboy",
  20862. height: math.unit(500, "feet"),
  20863. default: true
  20864. },
  20865. {
  20866. name: "Megmacro",
  20867. height: math.unit(20, "miles")
  20868. },
  20869. ]
  20870. ))
  20871. characterMakers.push(() => makeCharacter(
  20872. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  20873. {
  20874. front: {
  20875. height: math.unit(8 + 2 / 12, "feet"),
  20876. weight: math.unit(275, "lb"),
  20877. name: "Front",
  20878. image: {
  20879. source: "./media/characters/draganta/front.svg",
  20880. extra: 1177 / 1135,
  20881. bottom: 33.46 / 1212.1
  20882. }
  20883. },
  20884. },
  20885. [
  20886. {
  20887. name: "Normal",
  20888. height: math.unit(8 + 6 / 12, "feet"),
  20889. default: true
  20890. },
  20891. {
  20892. name: "Macro",
  20893. height: math.unit(150, "feet")
  20894. },
  20895. {
  20896. name: "Megamacro",
  20897. height: math.unit(1000, "miles")
  20898. },
  20899. ]
  20900. ))
  20901. characterMakers.push(() => makeCharacter(
  20902. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  20903. {
  20904. front: {
  20905. height: math.unit(1.72, "m"),
  20906. weight: math.unit(80, "lb"),
  20907. name: "Front",
  20908. image: {
  20909. source: "./media/characters/voski/front.svg",
  20910. extra: 2076.22 / 2022.4,
  20911. bottom: 102.7 / 2177.3866
  20912. }
  20913. },
  20914. frontNsfw: {
  20915. height: math.unit(1.72, "m"),
  20916. weight: math.unit(80, "lb"),
  20917. name: "Front (NSFW)",
  20918. image: {
  20919. source: "./media/characters/voski/front-nsfw.svg",
  20920. extra: 2076.22 / 2022.4,
  20921. bottom: 102.7 / 2177.3866
  20922. }
  20923. },
  20924. back: {
  20925. height: math.unit(1.72, "m"),
  20926. weight: math.unit(80, "lb"),
  20927. name: "Back",
  20928. image: {
  20929. source: "./media/characters/voski/back.svg",
  20930. extra: 2104 / 2051,
  20931. bottom: 10.45 / 2113.63
  20932. }
  20933. },
  20934. },
  20935. [
  20936. {
  20937. name: "Normal",
  20938. height: math.unit(1.72, "m")
  20939. },
  20940. {
  20941. name: "Macro",
  20942. height: math.unit(55, "m"),
  20943. default: true
  20944. },
  20945. {
  20946. name: "Macro+",
  20947. height: math.unit(300, "m")
  20948. },
  20949. {
  20950. name: "Macro++",
  20951. height: math.unit(700, "m")
  20952. },
  20953. {
  20954. name: "Macro+++",
  20955. height: math.unit(4500, "m")
  20956. },
  20957. {
  20958. name: "Macro++++",
  20959. height: math.unit(45, "km")
  20960. },
  20961. {
  20962. name: "Macro+++++",
  20963. height: math.unit(1220, "km")
  20964. },
  20965. ]
  20966. ))
  20967. characterMakers.push(() => makeCharacter(
  20968. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  20969. {
  20970. front: {
  20971. height: math.unit(2.3, "m"),
  20972. weight: math.unit(304, "kg"),
  20973. name: "Front",
  20974. image: {
  20975. source: "./media/characters/icowom-lee/front.svg",
  20976. extra: 3076 / 2933,
  20977. bottom: 51.4 / 3125.1889
  20978. }
  20979. },
  20980. },
  20981. [
  20982. {
  20983. name: "Normal",
  20984. height: math.unit(2.3, "meters"),
  20985. default: true
  20986. },
  20987. {
  20988. name: "Macro",
  20989. height: math.unit(94, "meters"),
  20990. default: true
  20991. },
  20992. ]
  20993. ))
  20994. characterMakers.push(() => makeCharacter(
  20995. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  20996. {
  20997. front: {
  20998. height: math.unit(22, "meters"),
  20999. weight: math.unit(21000, "kg"),
  21000. name: "Front",
  21001. image: {
  21002. source: "./media/characters/shock-diamond/front.svg",
  21003. extra: 2204 / 2053,
  21004. bottom: 65 / 2239.47
  21005. }
  21006. },
  21007. frontNude: {
  21008. height: math.unit(22, "meters"),
  21009. weight: math.unit(21000, "kg"),
  21010. name: "Front (Nude)",
  21011. image: {
  21012. source: "./media/characters/shock-diamond/front-nude.svg",
  21013. extra: 2514 / 2285,
  21014. bottom: 13 / 2527.56
  21015. }
  21016. },
  21017. },
  21018. [
  21019. {
  21020. name: "Normal",
  21021. height: math.unit(3, "meters")
  21022. },
  21023. {
  21024. name: "Macro",
  21025. height: math.unit(22, "meters"),
  21026. default: true
  21027. },
  21028. ]
  21029. ))
  21030. characterMakers.push(() => makeCharacter(
  21031. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21032. {
  21033. front: {
  21034. height: math.unit(5 + 4 / 12, "feet"),
  21035. weight: math.unit(120, "lb"),
  21036. name: "Front",
  21037. image: {
  21038. source: "./media/characters/rory/front.svg",
  21039. extra: 589 / 556,
  21040. bottom: 45.7 / 635.76
  21041. }
  21042. },
  21043. frontNude: {
  21044. height: math.unit(5 + 4 / 12, "feet"),
  21045. weight: math.unit(120, "lb"),
  21046. name: "Front (Nude)",
  21047. image: {
  21048. source: "./media/characters/rory/front-nude.svg",
  21049. extra: 589 / 556,
  21050. bottom: 45.7 / 635.76
  21051. }
  21052. },
  21053. side: {
  21054. height: math.unit(5 + 4 / 12, "feet"),
  21055. weight: math.unit(120, "lb"),
  21056. name: "Side",
  21057. image: {
  21058. source: "./media/characters/rory/side.svg",
  21059. extra: 597 / 564,
  21060. bottom: 55 / 653
  21061. }
  21062. },
  21063. back: {
  21064. height: math.unit(5 + 4 / 12, "feet"),
  21065. weight: math.unit(120, "lb"),
  21066. name: "Back",
  21067. image: {
  21068. source: "./media/characters/rory/back.svg",
  21069. extra: 620 / 585,
  21070. bottom: 8.86 / 630.43
  21071. }
  21072. },
  21073. dick: {
  21074. height: math.unit(0.86, "feet"),
  21075. name: "Dick",
  21076. image: {
  21077. source: "./media/characters/rory/dick.svg"
  21078. }
  21079. },
  21080. },
  21081. [
  21082. {
  21083. name: "Normal",
  21084. height: math.unit(5 + 4 / 12, "feet"),
  21085. default: true
  21086. },
  21087. {
  21088. name: "Macro",
  21089. height: math.unit(100, "feet")
  21090. },
  21091. {
  21092. name: "Macro+",
  21093. height: math.unit(140, "feet")
  21094. },
  21095. {
  21096. name: "Macro++",
  21097. height: math.unit(300, "feet")
  21098. },
  21099. ]
  21100. ))
  21101. characterMakers.push(() => makeCharacter(
  21102. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21103. {
  21104. front: {
  21105. height: math.unit(5 + 9 / 12, "feet"),
  21106. weight: math.unit(190, "lb"),
  21107. name: "Front",
  21108. image: {
  21109. source: "./media/characters/sprisk/front.svg",
  21110. extra: 1225 / 1180,
  21111. bottom: 42.7 / 1266.4
  21112. }
  21113. },
  21114. frontNsfw: {
  21115. height: math.unit(5 + 9 / 12, "feet"),
  21116. weight: math.unit(190, "lb"),
  21117. name: "Front (NSFW)",
  21118. image: {
  21119. source: "./media/characters/sprisk/front-nsfw.svg",
  21120. extra: 1225 / 1180,
  21121. bottom: 42.7 / 1266.4
  21122. }
  21123. },
  21124. back: {
  21125. height: math.unit(5 + 9 / 12, "feet"),
  21126. weight: math.unit(190, "lb"),
  21127. name: "Back",
  21128. image: {
  21129. source: "./media/characters/sprisk/back.svg",
  21130. extra: 1247 / 1200,
  21131. bottom: 5.6 / 1253.04
  21132. }
  21133. },
  21134. },
  21135. [
  21136. {
  21137. name: "Tiny",
  21138. height: math.unit(2, "inches")
  21139. },
  21140. {
  21141. name: "Normal",
  21142. height: math.unit(5 + 9 / 12, "feet"),
  21143. default: true
  21144. },
  21145. {
  21146. name: "Mini Macro",
  21147. height: math.unit(18, "feet")
  21148. },
  21149. {
  21150. name: "Macro",
  21151. height: math.unit(100, "feet")
  21152. },
  21153. {
  21154. name: "MACRO",
  21155. height: math.unit(50, "miles")
  21156. },
  21157. {
  21158. name: "M A C R O",
  21159. height: math.unit(300, "miles")
  21160. },
  21161. ]
  21162. ))
  21163. characterMakers.push(() => makeCharacter(
  21164. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21165. {
  21166. side: {
  21167. height: math.unit(15.6, "meters"),
  21168. weight: math.unit(700000, "kg"),
  21169. name: "Side",
  21170. image: {
  21171. source: "./media/characters/bunsen/side.svg",
  21172. extra: 1644 / 358
  21173. }
  21174. },
  21175. foot: {
  21176. height: math.unit(1.611 * 1644 / 358, "meter"),
  21177. name: "Foot",
  21178. image: {
  21179. source: "./media/characters/bunsen/foot.svg"
  21180. }
  21181. },
  21182. },
  21183. [
  21184. {
  21185. name: "Small",
  21186. height: math.unit(10, "feet")
  21187. },
  21188. {
  21189. name: "Normal",
  21190. height: math.unit(15.6, "meters"),
  21191. default: true
  21192. },
  21193. ]
  21194. ))
  21195. characterMakers.push(() => makeCharacter(
  21196. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21197. {
  21198. front: {
  21199. height: math.unit(4 + 11 / 12, "feet"),
  21200. weight: math.unit(140, "lb"),
  21201. name: "Front",
  21202. image: {
  21203. source: "./media/characters/sesh/front.svg",
  21204. extra: 3420 / 3231,
  21205. bottom: 72 / 3949.5
  21206. }
  21207. },
  21208. },
  21209. [
  21210. {
  21211. name: "Normal",
  21212. height: math.unit(4 + 11 / 12, "feet")
  21213. },
  21214. {
  21215. name: "Grown",
  21216. height: math.unit(15, "feet"),
  21217. default: true
  21218. },
  21219. {
  21220. name: "Macro",
  21221. height: math.unit(1500, "feet")
  21222. },
  21223. {
  21224. name: "Megamacro",
  21225. height: math.unit(30, "miles")
  21226. },
  21227. {
  21228. name: "Continental",
  21229. height: math.unit(3000, "miles")
  21230. },
  21231. {
  21232. name: "Gravity Mass",
  21233. height: math.unit(300000, "miles")
  21234. },
  21235. {
  21236. name: "Planet Buster",
  21237. height: math.unit(30000000, "miles")
  21238. },
  21239. {
  21240. name: "Big",
  21241. height: math.unit(3000000000, "miles")
  21242. },
  21243. ]
  21244. ))
  21245. characterMakers.push(() => makeCharacter(
  21246. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21247. {
  21248. front: {
  21249. height: math.unit(9, "feet"),
  21250. weight: math.unit(350, "lb"),
  21251. name: "Front",
  21252. image: {
  21253. source: "./media/characters/pepper/front.svg",
  21254. extra: 1448/1312,
  21255. bottom: 9.4/1457.88
  21256. }
  21257. },
  21258. back: {
  21259. height: math.unit(9, "feet"),
  21260. weight: math.unit(350, "lb"),
  21261. name: "Back",
  21262. image: {
  21263. source: "./media/characters/pepper/back.svg",
  21264. extra: 1423/1300,
  21265. bottom: 4.6/1429
  21266. }
  21267. },
  21268. maw: {
  21269. height: math.unit(0.932, "feet"),
  21270. name: "Maw",
  21271. image: {
  21272. source: "./media/characters/pepper/maw.svg"
  21273. }
  21274. },
  21275. },
  21276. [
  21277. {
  21278. name: "Normal",
  21279. height: math.unit(9, "feet"),
  21280. default: true
  21281. },
  21282. ]
  21283. ))
  21284. characterMakers.push(() => makeCharacter(
  21285. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21286. {
  21287. front: {
  21288. height: math.unit(6, "feet"),
  21289. weight: math.unit(150, "lb"),
  21290. name: "Front",
  21291. image: {
  21292. source: "./media/characters/maelstrom/front.svg",
  21293. extra: 2100/1883,
  21294. bottom: 94/2196.7
  21295. }
  21296. },
  21297. },
  21298. [
  21299. {
  21300. name: "Less Kaiju",
  21301. height: math.unit(200, "feet")
  21302. },
  21303. {
  21304. name: "Kaiju",
  21305. height: math.unit(400, "feet"),
  21306. default: true
  21307. },
  21308. {
  21309. name: "Kaiju-er",
  21310. height: math.unit(600, "feet")
  21311. },
  21312. ]
  21313. ))
  21314. characterMakers.push(() => makeCharacter(
  21315. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21316. {
  21317. front: {
  21318. height: math.unit(6 + 5/12, "feet"),
  21319. weight: math.unit(180, "lb"),
  21320. name: "Front",
  21321. image: {
  21322. source: "./media/characters/lexir/front.svg",
  21323. extra: 180/172,
  21324. bottom: 12/192
  21325. }
  21326. },
  21327. back: {
  21328. height: math.unit(6 + 5/12, "feet"),
  21329. weight: math.unit(180, "lb"),
  21330. name: "Back",
  21331. image: {
  21332. source: "./media/characters/lexir/back.svg",
  21333. extra: 183.84/175.5,
  21334. bottom: 3.1/187
  21335. }
  21336. },
  21337. },
  21338. [
  21339. {
  21340. name: "Very Smal",
  21341. height: math.unit(1, "nm")
  21342. },
  21343. {
  21344. name: "Normal",
  21345. height: math.unit(6 + 5/12, "feet"),
  21346. default: true
  21347. },
  21348. {
  21349. name: "Macro",
  21350. height: math.unit(1, "mile")
  21351. },
  21352. {
  21353. name: "Megamacro",
  21354. height: math.unit(50, "miles")
  21355. },
  21356. ]
  21357. ))
  21358. characterMakers.push(() => makeCharacter(
  21359. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21360. {
  21361. front: {
  21362. height: math.unit(1.5, "meters"),
  21363. weight: math.unit(100, "lb"),
  21364. name: "Front",
  21365. image: {
  21366. source: "./media/characters/maksio/front.svg",
  21367. extra: 1549/1531,
  21368. bottom: 123.7/1674.5429
  21369. }
  21370. },
  21371. back: {
  21372. height: math.unit(1.5, "meters"),
  21373. weight: math.unit(100, "lb"),
  21374. name: "Back",
  21375. image: {
  21376. source: "./media/characters/maksio/back.svg",
  21377. extra: 1541/1509,
  21378. bottom: 97/1639
  21379. }
  21380. },
  21381. hand: {
  21382. height: math.unit(0.621, "feet"),
  21383. name: "Hand",
  21384. image: {
  21385. source: "./media/characters/maksio/hand.svg"
  21386. }
  21387. },
  21388. foot: {
  21389. height: math.unit(1.611, "feet"),
  21390. name: "Foot",
  21391. image: {
  21392. source: "./media/characters/maksio/foot.svg"
  21393. }
  21394. },
  21395. },
  21396. [
  21397. {
  21398. name: "Shrunken",
  21399. height: math.unit(10, "cm")
  21400. },
  21401. {
  21402. name: "Normal",
  21403. height: math.unit(150, "cm"),
  21404. default: true
  21405. },
  21406. ]
  21407. ))
  21408. characterMakers.push(() => makeCharacter(
  21409. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21410. {
  21411. front: {
  21412. height: math.unit(100, "feet"),
  21413. name: "Front",
  21414. image: {
  21415. source: "./media/characters/erza-bear/front.svg",
  21416. extra: 2449/2390,
  21417. bottom: 46/2494
  21418. }
  21419. },
  21420. back: {
  21421. height: math.unit(100, "feet"),
  21422. name: "Back",
  21423. image: {
  21424. source: "./media/characters/erza-bear/back.svg",
  21425. extra: 2489/2430,
  21426. bottom: 85.4/2480
  21427. }
  21428. },
  21429. tail: {
  21430. height: math.unit(42, "feet"),
  21431. name: "Tail",
  21432. image: {
  21433. source: "./media/characters/erza-bear/tail.svg"
  21434. }
  21435. },
  21436. tongue: {
  21437. height: math.unit(8, "feet"),
  21438. name: "Tongue",
  21439. image: {
  21440. source: "./media/characters/erza-bear/tongue.svg"
  21441. }
  21442. },
  21443. dick: {
  21444. height: math.unit(10.5, "feet"),
  21445. name: "Dick",
  21446. image: {
  21447. source: "./media/characters/erza-bear/dick.svg"
  21448. }
  21449. },
  21450. dickVertical: {
  21451. height: math.unit(16.9, "feet"),
  21452. name: "Dick (Vertical)",
  21453. image: {
  21454. source: "./media/characters/erza-bear/dick-vertical.svg"
  21455. }
  21456. },
  21457. },
  21458. [
  21459. {
  21460. name: "Macro",
  21461. height: math.unit(100, "feet"),
  21462. default: true
  21463. },
  21464. ]
  21465. ))
  21466. characterMakers.push(() => makeCharacter(
  21467. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21468. {
  21469. front: {
  21470. height: math.unit(172, "cm"),
  21471. weight: math.unit(73, "kg"),
  21472. name: "Front",
  21473. image: {
  21474. source: "./media/characters/violet-flor/front.svg",
  21475. extra: 1530/1442,
  21476. bottom: 61.9/1588.8
  21477. }
  21478. },
  21479. back: {
  21480. height: math.unit(180, "cm"),
  21481. weight: math.unit(73, "kg"),
  21482. name: "Back",
  21483. image: {
  21484. source: "./media/characters/violet-flor/back.svg",
  21485. extra: 1692/1630,
  21486. bottom: 20/1712
  21487. }
  21488. },
  21489. },
  21490. [
  21491. {
  21492. name: "Normal",
  21493. height: math.unit(172, "cm"),
  21494. default: true
  21495. },
  21496. ]
  21497. ))
  21498. characterMakers.push(() => makeCharacter(
  21499. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21500. {
  21501. front: {
  21502. height: math.unit(6, "feet"),
  21503. weight: math.unit(220, "lb"),
  21504. name: "Front",
  21505. image: {
  21506. source: "./media/characters/lynn-rhea/front.svg",
  21507. extra: 310/273
  21508. }
  21509. },
  21510. back: {
  21511. height: math.unit(6, "feet"),
  21512. weight: math.unit(220, "lb"),
  21513. name: "Back",
  21514. image: {
  21515. source: "./media/characters/lynn-rhea/back.svg",
  21516. extra: 310/273
  21517. }
  21518. },
  21519. dicks: {
  21520. height: math.unit(0.9, "feet"),
  21521. name: "Dicks",
  21522. image: {
  21523. source: "./media/characters/lynn-rhea/dicks.svg"
  21524. }
  21525. },
  21526. slit: {
  21527. height: math.unit(0.4, "feet"),
  21528. name: "Slit",
  21529. image: {
  21530. source: "./media/characters/lynn-rhea/slit.svg"
  21531. }
  21532. },
  21533. },
  21534. [
  21535. {
  21536. name: "Micro",
  21537. height: math.unit(1, "inch")
  21538. },
  21539. {
  21540. name: "Macro",
  21541. height: math.unit(60, "feet"),
  21542. default: true
  21543. },
  21544. {
  21545. name: "Megamacro",
  21546. height: math.unit(2, "miles")
  21547. },
  21548. {
  21549. name: "Gigamacro",
  21550. height: math.unit(3, "earths")
  21551. },
  21552. {
  21553. name: "Galactic",
  21554. height: math.unit(0.8, "galaxies")
  21555. },
  21556. ]
  21557. ))
  21558. characterMakers.push(() => makeCharacter(
  21559. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21560. {
  21561. front: {
  21562. height: math.unit(1600, "feet"),
  21563. weight: math.unit(85758785169, "kg"),
  21564. name: "Front",
  21565. image: {
  21566. source: "./media/characters/valathos/front.svg",
  21567. extra: 1451/1339
  21568. }
  21569. },
  21570. },
  21571. [
  21572. {
  21573. name: "Macro",
  21574. height: math.unit(1600, "feet"),
  21575. default: true
  21576. },
  21577. ]
  21578. ))
  21579. characterMakers.push(() => makeCharacter(
  21580. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21581. {
  21582. front: {
  21583. height: math.unit(7 + 5/12, "feet"),
  21584. weight: math.unit(300, "lb"),
  21585. name: "Front",
  21586. image: {
  21587. source: "./media/characters/azula/front.svg",
  21588. extra: 3208/2880,
  21589. bottom: 80.2/3277
  21590. }
  21591. },
  21592. back: {
  21593. height: math.unit(7 + 5/12, "feet"),
  21594. weight: math.unit(300, "lb"),
  21595. name: "Back",
  21596. image: {
  21597. source: "./media/characters/azula/back.svg",
  21598. extra: 3169/2822,
  21599. bottom: 150.6/3321
  21600. }
  21601. },
  21602. },
  21603. [
  21604. {
  21605. name: "Normal",
  21606. height: math.unit(7 + 5/12, "feet"),
  21607. default: true
  21608. },
  21609. {
  21610. name: "Big",
  21611. height: math.unit(20, "feet")
  21612. },
  21613. ]
  21614. ))
  21615. characterMakers.push(() => makeCharacter(
  21616. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  21617. {
  21618. front: {
  21619. height: math.unit(5 + 1/12, "feet"),
  21620. weight: math.unit(110, "lb"),
  21621. name: "Front",
  21622. image: {
  21623. source: "./media/characters/rupert/front.svg",
  21624. extra: 1549/1495,
  21625. bottom: 54.2/1604.4
  21626. }
  21627. },
  21628. },
  21629. [
  21630. {
  21631. name: "Normal",
  21632. height: math.unit(5 + 1/12, "feet"),
  21633. default: true
  21634. },
  21635. ]
  21636. ))
  21637. characterMakers.push(() => makeCharacter(
  21638. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  21639. {
  21640. front: {
  21641. height: math.unit(8 + 4/12, "feet"),
  21642. weight: math.unit(350, "lb"),
  21643. name: "Front",
  21644. image: {
  21645. source: "./media/characters/sheera-castellar/front.svg",
  21646. extra: 1957/1894,
  21647. bottom: 26.97/1975.017
  21648. }
  21649. },
  21650. side: {
  21651. height: math.unit(8 + 4/12, "feet"),
  21652. weight: math.unit(350, "lb"),
  21653. name: "Side",
  21654. image: {
  21655. source: "./media/characters/sheera-castellar/side.svg",
  21656. extra: 1957/1894
  21657. }
  21658. },
  21659. back: {
  21660. height: math.unit(8 + 4/12, "feet"),
  21661. weight: math.unit(350, "lb"),
  21662. name: "Back",
  21663. image: {
  21664. source: "./media/characters/sheera-castellar/back.svg",
  21665. extra: 1957/1894
  21666. }
  21667. },
  21668. angled: {
  21669. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  21670. weight: math.unit(350, "lb"),
  21671. name: "Angled",
  21672. image: {
  21673. source: "./media/characters/sheera-castellar/angled.svg",
  21674. extra: 1807/1707,
  21675. bottom: 68/1875
  21676. }
  21677. },
  21678. genitals: {
  21679. height: math.unit(2.2, "feet"),
  21680. name: "Genitals",
  21681. image: {
  21682. source: "./media/characters/sheera-castellar/genitals.svg"
  21683. }
  21684. },
  21685. },
  21686. [
  21687. {
  21688. name: "Normal",
  21689. height: math.unit(8 + 4/12, "feet")
  21690. },
  21691. {
  21692. name: "Macro",
  21693. height: math.unit(150, "feet"),
  21694. default: true
  21695. },
  21696. {
  21697. name: "Macro+",
  21698. height: math.unit(800, "feet")
  21699. },
  21700. ]
  21701. ))
  21702. characterMakers.push(() => makeCharacter(
  21703. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  21704. {
  21705. front: {
  21706. height: math.unit(6, "feet"),
  21707. weight: math.unit(150, "lb"),
  21708. name: "Front",
  21709. image: {
  21710. source: "./media/characters/jaipur/front.svg",
  21711. extra: 3860/3731,
  21712. bottom: 287/4140
  21713. }
  21714. },
  21715. back: {
  21716. height: math.unit(6, "feet"),
  21717. weight: math.unit(150, "lb"),
  21718. name: "Back",
  21719. image: {
  21720. source: "./media/characters/jaipur/back.svg",
  21721. extra: 4060/3930,
  21722. bottom: 151/4200
  21723. }
  21724. },
  21725. },
  21726. [
  21727. {
  21728. name: "Normal",
  21729. height: math.unit(1.85, "meters"),
  21730. default: true
  21731. },
  21732. {
  21733. name: "Macro",
  21734. height: math.unit(150, "meters")
  21735. },
  21736. {
  21737. name: "Macro+",
  21738. height: math.unit(0.5, "miles")
  21739. },
  21740. {
  21741. name: "Macro++",
  21742. height: math.unit(2.5, "miles")
  21743. },
  21744. {
  21745. name: "Macro+++",
  21746. height: math.unit(12, "miles")
  21747. },
  21748. {
  21749. name: "Macro++++",
  21750. height: math.unit(120, "miles")
  21751. },
  21752. {
  21753. name: "Macro+++++",
  21754. height: math.unit(1200, "miles")
  21755. },
  21756. ]
  21757. ))
  21758. characterMakers.push(() => makeCharacter(
  21759. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  21760. {
  21761. front: {
  21762. height: math.unit(6, "feet"),
  21763. weight: math.unit(150, "lb"),
  21764. name: "Front",
  21765. image: {
  21766. source: "./media/characters/sheila-wolf/front.svg",
  21767. extra: 1931/1808,
  21768. bottom: 29.5/1960
  21769. }
  21770. },
  21771. dick: {
  21772. height: math.unit(1.464, "feet"),
  21773. name: "Dick",
  21774. image: {
  21775. source: "./media/characters/sheila-wolf/dick.svg"
  21776. }
  21777. },
  21778. muzzle: {
  21779. height: math.unit(0.513, "feet"),
  21780. name: "Muzzle",
  21781. image: {
  21782. source: "./media/characters/sheila-wolf/muzzle.svg"
  21783. }
  21784. },
  21785. },
  21786. [
  21787. {
  21788. name: "Macro",
  21789. height: math.unit(70, "feet"),
  21790. default: true
  21791. },
  21792. ]
  21793. ))
  21794. characterMakers.push(() => makeCharacter(
  21795. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  21796. {
  21797. front: {
  21798. height: math.unit(32, "meters"),
  21799. weight: math.unit(300000, "kg"),
  21800. name: "Front",
  21801. image: {
  21802. source: "./media/characters/almor/front.svg",
  21803. extra: 1408/1322,
  21804. bottom: 94.6/1506.5
  21805. }
  21806. },
  21807. },
  21808. [
  21809. {
  21810. name: "Macro",
  21811. height: math.unit(32, "meters"),
  21812. default: true
  21813. },
  21814. ]
  21815. ))
  21816. characterMakers.push(() => makeCharacter(
  21817. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  21818. {
  21819. front: {
  21820. height: math.unit(7, "feet"),
  21821. weight: math.unit(200, "lb"),
  21822. name: "Front",
  21823. image: {
  21824. source: "./media/characters/silver/front.svg",
  21825. extra: 472.1/450.5,
  21826. bottom: 26.5/499.424
  21827. }
  21828. },
  21829. },
  21830. [
  21831. {
  21832. name: "Normal",
  21833. height: math.unit(7, "feet"),
  21834. default: true
  21835. },
  21836. {
  21837. name: "Macro",
  21838. height: math.unit(800, "feet")
  21839. },
  21840. {
  21841. name: "Megamacro",
  21842. height: math.unit(250, "miles")
  21843. },
  21844. ]
  21845. ))
  21846. characterMakers.push(() => makeCharacter(
  21847. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  21848. {
  21849. front: {
  21850. height: math.unit(6, "feet"),
  21851. weight: math.unit(150, "lb"),
  21852. name: "Front",
  21853. image: {
  21854. source: "./media/characters/pliskin/front.svg",
  21855. extra: 1469/1359,
  21856. bottom: 70/1540
  21857. }
  21858. },
  21859. },
  21860. [
  21861. {
  21862. name: "Micro",
  21863. height: math.unit(3, "inches")
  21864. },
  21865. {
  21866. name: "Normal",
  21867. height: math.unit(5 + 11/12, "feet"),
  21868. default: true
  21869. },
  21870. {
  21871. name: "Macro",
  21872. height: math.unit(120, "feet")
  21873. },
  21874. ]
  21875. ))
  21876. characterMakers.push(() => makeCharacter(
  21877. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  21878. {
  21879. front: {
  21880. height: math.unit(6, "feet"),
  21881. weight: math.unit(150, "lb"),
  21882. name: "Front",
  21883. image: {
  21884. source: "./media/characters/sammy/front.svg",
  21885. extra: 1193/1089,
  21886. bottom: 30.5/1226
  21887. }
  21888. },
  21889. },
  21890. [
  21891. {
  21892. name: "Macro",
  21893. height: math.unit(1700, "feet"),
  21894. default: true
  21895. },
  21896. {
  21897. name: "Examacro",
  21898. height: math.unit(2.5e9, "lightyears")
  21899. },
  21900. ]
  21901. ))
  21902. characterMakers.push(() => makeCharacter(
  21903. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  21904. {
  21905. front: {
  21906. height: math.unit(21, "meters"),
  21907. weight: math.unit(12, "tonnes"),
  21908. name: "Front",
  21909. image: {
  21910. source: "./media/characters/kuru/front.svg",
  21911. extra: 4301/3785,
  21912. bottom: 371.3/4691
  21913. }
  21914. },
  21915. },
  21916. [
  21917. {
  21918. name: "Macro",
  21919. height: math.unit(21, "meters"),
  21920. default: true
  21921. },
  21922. ]
  21923. ))
  21924. characterMakers.push(() => makeCharacter(
  21925. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  21926. {
  21927. front: {
  21928. height: math.unit(23, "meters"),
  21929. weight: math.unit(12.2, "tonnes"),
  21930. name: "Front",
  21931. image: {
  21932. source: "./media/characters/rakka/front.svg",
  21933. extra: 4670/4169,
  21934. bottom: 301/4968.7
  21935. }
  21936. },
  21937. },
  21938. [
  21939. {
  21940. name: "Macro",
  21941. height: math.unit(23, "meters"),
  21942. default: true
  21943. },
  21944. ]
  21945. ))
  21946. characterMakers.push(() => makeCharacter(
  21947. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  21948. {
  21949. front: {
  21950. height: math.unit(6, "feet"),
  21951. weight: math.unit(150, "lb"),
  21952. name: "Front",
  21953. image: {
  21954. source: "./media/characters/rhys-feline/front.svg",
  21955. extra: 2488/2308,
  21956. bottom: 35.67/2519.19
  21957. }
  21958. },
  21959. },
  21960. [
  21961. {
  21962. name: "Really Small",
  21963. height: math.unit(1, "nm")
  21964. },
  21965. {
  21966. name: "Micro",
  21967. height: math.unit(4, "inches")
  21968. },
  21969. {
  21970. name: "Normal",
  21971. height: math.unit(4 + 10/12, "feet"),
  21972. default: true
  21973. },
  21974. {
  21975. name: "Macro",
  21976. height: math.unit(100, "feet")
  21977. },
  21978. {
  21979. name: "Megamacto",
  21980. height: math.unit(50, "miles")
  21981. },
  21982. ]
  21983. ))
  21984. characterMakers.push(() => makeCharacter(
  21985. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  21986. {
  21987. side: {
  21988. height: math.unit(30, "feet"),
  21989. weight: math.unit(35000, "kg"),
  21990. name: "Side",
  21991. image: {
  21992. source: "./media/characters/alydar/side.svg",
  21993. extra: 234/222,
  21994. bottom: 6.5/241
  21995. }
  21996. },
  21997. front: {
  21998. height: math.unit(30, "feet"),
  21999. weight: math.unit(35000, "kg"),
  22000. name: "Front",
  22001. image: {
  22002. source: "./media/characters/alydar/front.svg",
  22003. extra: 223.37/210.2,
  22004. bottom: 22.3/246.76
  22005. }
  22006. },
  22007. top: {
  22008. height: math.unit(64.54, "feet"),
  22009. weight: math.unit(35000, "kg"),
  22010. name: "Top",
  22011. image: {
  22012. source: "./media/characters/alydar/top.svg"
  22013. }
  22014. },
  22015. anthro: {
  22016. height: math.unit(30, "feet"),
  22017. weight: math.unit(9000, "kg"),
  22018. name: "Anthro",
  22019. image: {
  22020. source: "./media/characters/alydar/anthro.svg",
  22021. extra: 432/421,
  22022. bottom: 7.18/440
  22023. }
  22024. },
  22025. maw: {
  22026. height: math.unit(11.693, "feet"),
  22027. name: "Maw",
  22028. image: {
  22029. source: "./media/characters/alydar/maw.svg"
  22030. }
  22031. },
  22032. head: {
  22033. height: math.unit(11.693, "feet"),
  22034. name: "Head",
  22035. image: {
  22036. source: "./media/characters/alydar/head.svg"
  22037. }
  22038. },
  22039. headAlt: {
  22040. height: math.unit(12.861, "feet"),
  22041. name: "Head (Alt)",
  22042. image: {
  22043. source: "./media/characters/alydar/head-alt.svg"
  22044. }
  22045. },
  22046. wing: {
  22047. height: math.unit(20.712, "feet"),
  22048. name: "Wing",
  22049. image: {
  22050. source: "./media/characters/alydar/wing.svg"
  22051. }
  22052. },
  22053. wingFeather: {
  22054. height: math.unit(9.662, "feet"),
  22055. name: "Wing Feather",
  22056. image: {
  22057. source: "./media/characters/alydar/wing-feather.svg"
  22058. }
  22059. },
  22060. countourFeather: {
  22061. height: math.unit(4.154, "feet"),
  22062. name: "Contour Feather",
  22063. image: {
  22064. source: "./media/characters/alydar/contour-feather.svg"
  22065. }
  22066. },
  22067. },
  22068. [
  22069. {
  22070. name: "Diplomatic",
  22071. height: math.unit(13, "feet"),
  22072. default: true
  22073. },
  22074. {
  22075. name: "Small",
  22076. height: math.unit(30, "feet")
  22077. },
  22078. {
  22079. name: "Normal",
  22080. height: math.unit(95, "feet"),
  22081. default: true
  22082. },
  22083. {
  22084. name: "Large",
  22085. height: math.unit(285, "feet")
  22086. },
  22087. {
  22088. name: "Incomprehensible",
  22089. height: math.unit(450, "megameters")
  22090. },
  22091. ]
  22092. ))
  22093. characterMakers.push(() => makeCharacter(
  22094. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22095. {
  22096. side: {
  22097. height: math.unit(11, "feet"),
  22098. weight: math.unit(1750, "kg"),
  22099. name: "Side",
  22100. image: {
  22101. source: "./media/characters/selicia/side.svg",
  22102. extra: 440/396,
  22103. bottom: 24.8/465.979
  22104. }
  22105. },
  22106. maw: {
  22107. height: math.unit(4.665, "feet"),
  22108. name: "Maw",
  22109. image: {
  22110. source: "./media/characters/selicia/maw.svg"
  22111. }
  22112. },
  22113. },
  22114. [
  22115. {
  22116. name: "Normal",
  22117. height: math.unit(11, "feet"),
  22118. default: true
  22119. },
  22120. ]
  22121. ))
  22122. characterMakers.push(() => makeCharacter(
  22123. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22124. {
  22125. side: {
  22126. height: math.unit(2 + 6 /12, "feet"),
  22127. weight: math.unit(30, "lb"),
  22128. name: "Side",
  22129. image: {
  22130. source: "./media/characters/layla/side.svg",
  22131. extra: 244/188,
  22132. bottom: 18.2/262.1
  22133. }
  22134. },
  22135. back: {
  22136. height: math.unit(2 + 6 /12, "feet"),
  22137. weight: math.unit(30, "lb"),
  22138. name: "Back",
  22139. image: {
  22140. source: "./media/characters/layla/back.svg",
  22141. extra: 308/241.5,
  22142. bottom: 8.9/316.8
  22143. }
  22144. },
  22145. cumming: {
  22146. height: math.unit(2 + 6 /12, "feet"),
  22147. weight: math.unit(30, "lb"),
  22148. name: "Cumming",
  22149. image: {
  22150. source: "./media/characters/layla/cumming.svg",
  22151. extra: 342/279,
  22152. bottom: 595/938
  22153. }
  22154. },
  22155. dickFlaccid: {
  22156. height: math.unit(2.595, "feet"),
  22157. name: "Flaccid Genitals",
  22158. image: {
  22159. source: "./media/characters/layla/dick-flaccid.svg"
  22160. }
  22161. },
  22162. dickErect: {
  22163. height: math.unit(2.359, "feet"),
  22164. name: "Erect Genitals",
  22165. image: {
  22166. source: "./media/characters/layla/dick-erect.svg"
  22167. }
  22168. },
  22169. },
  22170. [
  22171. {
  22172. name: "Micro",
  22173. height: math.unit(1, "inch")
  22174. },
  22175. {
  22176. name: "Small",
  22177. height: math.unit(1, "foot")
  22178. },
  22179. {
  22180. name: "Normal",
  22181. height: math.unit(2 + 6/12, "feet"),
  22182. default: true
  22183. },
  22184. {
  22185. name: "Macro",
  22186. height: math.unit(200, "feet")
  22187. },
  22188. {
  22189. name: "Megamacro",
  22190. height: math.unit(1000, "miles")
  22191. },
  22192. {
  22193. name: "Planetary",
  22194. height: math.unit(8000, "miles")
  22195. },
  22196. {
  22197. name: "True Layla",
  22198. height: math.unit(200000*7, "multiverses")
  22199. },
  22200. ]
  22201. ))
  22202. characterMakers.push(() => makeCharacter(
  22203. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22204. {
  22205. back: {
  22206. height: math.unit(10.5, "feet"),
  22207. weight: math.unit(800, "lb"),
  22208. name: "Back",
  22209. image: {
  22210. source: "./media/characters/knox/back.svg",
  22211. extra: 1486/1089,
  22212. bottom: 107/1601.4
  22213. }
  22214. },
  22215. side: {
  22216. height: math.unit(10.5, "feet"),
  22217. weight: math.unit(800, "lb"),
  22218. name: "Side",
  22219. image: {
  22220. source: "./media/characters/knox/side.svg",
  22221. extra: 244/218,
  22222. bottom: 14/260
  22223. }
  22224. },
  22225. },
  22226. [
  22227. {
  22228. name: "Compact",
  22229. height: math.unit(10.5, "feet"),
  22230. default: true
  22231. },
  22232. {
  22233. name: "Dynamax",
  22234. height: math.unit(210, "feet")
  22235. },
  22236. {
  22237. name: "Full Macro",
  22238. height: math.unit(850, "feet")
  22239. },
  22240. ]
  22241. ))
  22242. characterMakers.push(() => makeCharacter(
  22243. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22244. {
  22245. front: {
  22246. height: math.unit(6, "feet"),
  22247. weight: math.unit(152, "lb"),
  22248. name: "Front",
  22249. image: {
  22250. source: "./media/characters/shin-pikachu/front.svg",
  22251. extra: 1574/1480,
  22252. bottom: 53.3/1626
  22253. }
  22254. },
  22255. hand: {
  22256. height: math.unit(1.055, "feet"),
  22257. name: "Hand",
  22258. image: {
  22259. source: "./media/characters/shin-pikachu/hand.svg"
  22260. }
  22261. },
  22262. foot: {
  22263. height: math.unit(1.1, "feet"),
  22264. name: "Foot",
  22265. image: {
  22266. source: "./media/characters/shin-pikachu/foot.svg"
  22267. }
  22268. },
  22269. collar: {
  22270. height: math.unit(0.386, "feet"),
  22271. name: "Collar",
  22272. image: {
  22273. source: "./media/characters/shin-pikachu/collar.svg"
  22274. }
  22275. },
  22276. },
  22277. [
  22278. {
  22279. name: "Smallest",
  22280. height: math.unit(0.5, "inches")
  22281. },
  22282. {
  22283. name: "Micro",
  22284. height: math.unit(6, "inches")
  22285. },
  22286. {
  22287. name: "Normal",
  22288. height: math.unit(6, "feet"),
  22289. default: true
  22290. },
  22291. {
  22292. name: "Macro",
  22293. height: math.unit(150, "feet")
  22294. },
  22295. ]
  22296. ))
  22297. characterMakers.push(() => makeCharacter(
  22298. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22299. {
  22300. front: {
  22301. height: math.unit(28, "feet"),
  22302. weight: math.unit(10500, "lb"),
  22303. name: "Front",
  22304. image: {
  22305. source: "./media/characters/kayda/front.svg",
  22306. extra: 1536/1428,
  22307. bottom: 68.7/1603
  22308. }
  22309. },
  22310. back: {
  22311. height: math.unit(28, "feet"),
  22312. weight: math.unit(10500, "lb"),
  22313. name: "Back",
  22314. image: {
  22315. source: "./media/characters/kayda/back.svg",
  22316. extra: 1557/1464,
  22317. bottom: 39.5/1597.49
  22318. }
  22319. },
  22320. dick: {
  22321. height: math.unit(3.858, "feet"),
  22322. name: "Dick",
  22323. image: {
  22324. source: "./media/characters/kayda/dick.svg"
  22325. }
  22326. },
  22327. },
  22328. [
  22329. {
  22330. name: "Macro",
  22331. height: math.unit(28, "feet"),
  22332. default: true
  22333. },
  22334. ]
  22335. ))
  22336. characterMakers.push(() => makeCharacter(
  22337. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22338. {
  22339. front: {
  22340. height: math.unit(10 + 11/12, "feet"),
  22341. weight: math.unit(1400, "lb"),
  22342. name: "Front",
  22343. image: {
  22344. source: "./media/characters/brian/front.svg",
  22345. extra: 737/692,
  22346. bottom: 55.4/785
  22347. }
  22348. },
  22349. },
  22350. [
  22351. {
  22352. name: "Normal",
  22353. height: math.unit(10 + 11/12, "feet"),
  22354. default: true
  22355. },
  22356. ]
  22357. ))
  22358. characterMakers.push(() => makeCharacter(
  22359. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22360. {
  22361. front: {
  22362. height: math.unit(5 + 8/12, "feet"),
  22363. weight: math.unit(140, "lb"),
  22364. name: "Front",
  22365. image: {
  22366. source: "./media/characters/khemri/front.svg",
  22367. extra: 4780/4059,
  22368. bottom: 80.1/4859.25
  22369. }
  22370. },
  22371. },
  22372. [
  22373. {
  22374. name: "Micro",
  22375. height: math.unit(6, "inches")
  22376. },
  22377. {
  22378. name: "Normal",
  22379. height: math.unit(5 + 8/12, "feet"),
  22380. default: true
  22381. },
  22382. ]
  22383. ))
  22384. characterMakers.push(() => makeCharacter(
  22385. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22386. {
  22387. front: {
  22388. height: math.unit(13, "feet"),
  22389. weight: math.unit(1700, "lb"),
  22390. name: "Front",
  22391. image: {
  22392. source: "./media/characters/felix-braveheart/front.svg",
  22393. extra: 1222/1157,
  22394. bottom: 53.2/1280
  22395. }
  22396. },
  22397. back: {
  22398. height: math.unit(13, "feet"),
  22399. weight: math.unit(1700, "lb"),
  22400. name: "Back",
  22401. image: {
  22402. source: "./media/characters/felix-braveheart/back.svg",
  22403. extra: 1277/1203,
  22404. bottom: 50.2/1327
  22405. }
  22406. },
  22407. feral: {
  22408. height: math.unit(6, "feet"),
  22409. weight: math.unit(400, "lb"),
  22410. name: "Feral",
  22411. image: {
  22412. source: "./media/characters/felix-braveheart/feral.svg",
  22413. extra: 682/625,
  22414. bottom: 6.9/688
  22415. }
  22416. },
  22417. },
  22418. [
  22419. {
  22420. name: "Normal",
  22421. height: math.unit(13, "feet"),
  22422. default: true
  22423. },
  22424. ]
  22425. ))
  22426. characterMakers.push(() => makeCharacter(
  22427. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22428. {
  22429. side: {
  22430. height: math.unit(5 + 11/12, "feet"),
  22431. weight: math.unit(1400, "lb"),
  22432. name: "Side",
  22433. image: {
  22434. source: "./media/characters/shadow-blade/side.svg",
  22435. extra: 1726/1267,
  22436. bottom: 58.4/1785
  22437. }
  22438. },
  22439. },
  22440. [
  22441. {
  22442. name: "Normal",
  22443. height: math.unit(5 + 11/12, "feet"),
  22444. default: true
  22445. },
  22446. ]
  22447. ))
  22448. characterMakers.push(() => makeCharacter(
  22449. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22450. {
  22451. front: {
  22452. height: math.unit(1 + 6/12, "feet"),
  22453. weight: math.unit(25, "lb"),
  22454. name: "Front",
  22455. image: {
  22456. source: "./media/characters/karla-halldor/front.svg",
  22457. extra: 1459/1383,
  22458. bottom: 12/1472
  22459. }
  22460. },
  22461. },
  22462. [
  22463. {
  22464. name: "Normal",
  22465. height: math.unit(1 + 6/12, "feet"),
  22466. default: true
  22467. },
  22468. ]
  22469. ))
  22470. characterMakers.push(() => makeCharacter(
  22471. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22472. {
  22473. front: {
  22474. height: math.unit(6 + 2/12, "feet"),
  22475. weight: math.unit(160, "lb"),
  22476. name: "Front",
  22477. image: {
  22478. source: "./media/characters/ariam/front.svg",
  22479. extra: 714/617,
  22480. bottom: 23.4/737,
  22481. }
  22482. },
  22483. squatting: {
  22484. height: math.unit(4.1, "feet"),
  22485. weight: math.unit(160, "lb"),
  22486. name: "Squatting",
  22487. image: {
  22488. source: "./media/characters/ariam/squatting.svg",
  22489. extra: 2617/2112,
  22490. bottom: 61.2/2681,
  22491. }
  22492. },
  22493. },
  22494. [
  22495. {
  22496. name: "Normal",
  22497. height: math.unit(6 + 2/12, "feet"),
  22498. default: true
  22499. },
  22500. {
  22501. name: "Normal+",
  22502. height: math.unit(4, "meters")
  22503. },
  22504. {
  22505. name: "Macro",
  22506. height: math.unit(50, "meters")
  22507. },
  22508. {
  22509. name: "Macro+",
  22510. height: math.unit(100, "meters")
  22511. },
  22512. {
  22513. name: "Megamacro",
  22514. height: math.unit(20, "km")
  22515. },
  22516. ]
  22517. ))
  22518. characterMakers.push(() => makeCharacter(
  22519. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22520. {
  22521. front: {
  22522. height: math.unit(1.67, "meters"),
  22523. weight: math.unit(140, "lb"),
  22524. name: "Front",
  22525. image: {
  22526. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22527. extra: 438/410,
  22528. bottom: 0.75/439
  22529. }
  22530. },
  22531. },
  22532. [
  22533. {
  22534. name: "Shrunken",
  22535. height: math.unit(7.6, "cm")
  22536. },
  22537. {
  22538. name: "Human Scale",
  22539. height: math.unit(1.67, "meters")
  22540. },
  22541. {
  22542. name: "Wolxi Scale",
  22543. height: math.unit(36.7, "meters"),
  22544. default: true
  22545. },
  22546. ]
  22547. ))
  22548. characterMakers.push(() => makeCharacter(
  22549. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22550. {
  22551. front: {
  22552. height: math.unit(1.73, "meters"),
  22553. weight: math.unit(240, "lb"),
  22554. name: "Front",
  22555. image: {
  22556. source: "./media/characters/izue-two-mothers/front.svg",
  22557. extra: 469/437,
  22558. bottom: 1.24/470.6
  22559. }
  22560. },
  22561. },
  22562. [
  22563. {
  22564. name: "Shrunken",
  22565. height: math.unit(7.86, "cm")
  22566. },
  22567. {
  22568. name: "Human Scale",
  22569. height: math.unit(1.73, "meters")
  22570. },
  22571. {
  22572. name: "Wolxi Scale",
  22573. height: math.unit(38, "meters"),
  22574. default: true
  22575. },
  22576. ]
  22577. ))
  22578. characterMakers.push(() => makeCharacter(
  22579. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22580. {
  22581. front: {
  22582. height: math.unit(1.55, "meters"),
  22583. weight: math.unit(120, "lb"),
  22584. name: "Front",
  22585. image: {
  22586. source: "./media/characters/teeku-love-shack/front.svg",
  22587. extra: 387/362,
  22588. bottom: 1.51/388
  22589. }
  22590. },
  22591. },
  22592. [
  22593. {
  22594. name: "Shrunken",
  22595. height: math.unit(7, "cm")
  22596. },
  22597. {
  22598. name: "Human Scale",
  22599. height: math.unit(1.55, "meters")
  22600. },
  22601. {
  22602. name: "Wolxi Scale",
  22603. height: math.unit(34.1, "meters"),
  22604. default: true
  22605. },
  22606. ]
  22607. ))
  22608. characterMakers.push(() => makeCharacter(
  22609. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22610. {
  22611. front: {
  22612. height: math.unit(1.83, "meters"),
  22613. weight: math.unit(135, "lb"),
  22614. name: "Front",
  22615. image: {
  22616. source: "./media/characters/dejma-the-red/front.svg",
  22617. extra: 480/458,
  22618. bottom: 1.8/482
  22619. }
  22620. },
  22621. },
  22622. [
  22623. {
  22624. name: "Shrunken",
  22625. height: math.unit(8.3, "cm")
  22626. },
  22627. {
  22628. name: "Human Scale",
  22629. height: math.unit(1.83, "meters")
  22630. },
  22631. {
  22632. name: "Wolxi Scale",
  22633. height: math.unit(40, "meters"),
  22634. default: true
  22635. },
  22636. ]
  22637. ))
  22638. characterMakers.push(() => makeCharacter(
  22639. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  22640. {
  22641. front: {
  22642. height: math.unit(1.78, "meters"),
  22643. weight: math.unit(65, "kg"),
  22644. name: "Front",
  22645. image: {
  22646. source: "./media/characters/aki/front.svg",
  22647. extra: 452/415
  22648. }
  22649. },
  22650. frontNsfw: {
  22651. height: math.unit(1.78, "meters"),
  22652. weight: math.unit(65, "kg"),
  22653. name: "Front (NSFW)",
  22654. image: {
  22655. source: "./media/characters/aki/front-nsfw.svg",
  22656. extra: 452/415
  22657. }
  22658. },
  22659. back: {
  22660. height: math.unit(1.78, "meters"),
  22661. weight: math.unit(65, "kg"),
  22662. name: "Back",
  22663. image: {
  22664. source: "./media/characters/aki/back.svg",
  22665. extra: 452/415
  22666. }
  22667. },
  22668. rump: {
  22669. height: math.unit(2.05, "feet"),
  22670. name: "Rump",
  22671. image: {
  22672. source: "./media/characters/aki/rump.svg"
  22673. }
  22674. },
  22675. dick: {
  22676. height: math.unit(0.95, "feet"),
  22677. name: "Dick",
  22678. image: {
  22679. source: "./media/characters/aki/dick.svg"
  22680. }
  22681. },
  22682. },
  22683. [
  22684. {
  22685. name: "Micro",
  22686. height: math.unit(15, "cm")
  22687. },
  22688. {
  22689. name: "Normal",
  22690. height: math.unit(178, "cm"),
  22691. default: true
  22692. },
  22693. {
  22694. name: "Macro",
  22695. height: math.unit(214, "m")
  22696. },
  22697. {
  22698. name: "Macro+",
  22699. height: math.unit(534, "m")
  22700. },
  22701. ]
  22702. ))
  22703. characterMakers.push(() => makeCharacter(
  22704. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  22705. {
  22706. front: {
  22707. height: math.unit(5 + 5/12, "feet"),
  22708. weight: math.unit(120, "lb"),
  22709. name: "Front",
  22710. image: {
  22711. source: "./media/characters/ari/front.svg",
  22712. extra: 714.5/682,
  22713. bottom: 8/722.5
  22714. }
  22715. },
  22716. },
  22717. [
  22718. {
  22719. name: "Normal",
  22720. height: math.unit(5 + 5/12, "feet")
  22721. },
  22722. {
  22723. name: "Macro",
  22724. height: math.unit(100, "feet"),
  22725. default: true
  22726. },
  22727. {
  22728. name: "Megamacro",
  22729. height: math.unit(100, "miles")
  22730. },
  22731. {
  22732. name: "Gigamacro",
  22733. height: math.unit(80000, "miles")
  22734. },
  22735. ]
  22736. ))
  22737. characterMakers.push(() => makeCharacter(
  22738. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  22739. {
  22740. side: {
  22741. height: math.unit(9, "feet"),
  22742. weight: math.unit(400, "kg"),
  22743. name: "Side",
  22744. image: {
  22745. source: "./media/characters/bolt/side.svg",
  22746. extra: 1126/896,
  22747. bottom: 60/1187.3,
  22748. }
  22749. },
  22750. },
  22751. [
  22752. {
  22753. name: "Micro",
  22754. height: math.unit(5, "inches")
  22755. },
  22756. {
  22757. name: "Normal",
  22758. height: math.unit(9, "feet"),
  22759. default: true
  22760. },
  22761. {
  22762. name: "Macro",
  22763. height: math.unit(700, "feet")
  22764. },
  22765. {
  22766. name: "Max Size",
  22767. height: math.unit(1.52e22, "yottameters")
  22768. },
  22769. ]
  22770. ))
  22771. characterMakers.push(() => makeCharacter(
  22772. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  22773. {
  22774. front: {
  22775. height: math.unit(4.53, "meters"),
  22776. weight: math.unit(3, "tons"),
  22777. name: "Front",
  22778. image: {
  22779. source: "./media/characters/draekon-sylviar/front.svg",
  22780. extra: 1228/1068,
  22781. bottom: 41/1270
  22782. }
  22783. },
  22784. tail: {
  22785. height: math.unit(1.772, "meter"),
  22786. name: "Tail",
  22787. image: {
  22788. source: "./media/characters/draekon-sylviar/tail.svg"
  22789. }
  22790. },
  22791. head: {
  22792. height: math.unit(1.331, "meter"),
  22793. name: "Head",
  22794. image: {
  22795. source: "./media/characters/draekon-sylviar/head.svg"
  22796. }
  22797. },
  22798. hand: {
  22799. height: math.unit(0.564, "meter"),
  22800. name: "Hand",
  22801. image: {
  22802. source: "./media/characters/draekon-sylviar/hand.svg"
  22803. }
  22804. },
  22805. foot: {
  22806. height: math.unit(0.621, "meter"),
  22807. name: "Foot",
  22808. image: {
  22809. source: "./media/characters/draekon-sylviar/foot.svg",
  22810. bottom: 32/324
  22811. }
  22812. },
  22813. dick: {
  22814. height: math.unit(61, "cm"),
  22815. name: "Dick",
  22816. image: {
  22817. source: "./media/characters/draekon-sylviar/dick.svg"
  22818. }
  22819. },
  22820. dickseparated: {
  22821. height: math.unit(61, "cm"),
  22822. name: "Dick-separated",
  22823. image: {
  22824. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  22825. }
  22826. },
  22827. },
  22828. [
  22829. {
  22830. name: "Small",
  22831. height: math.unit(4.53/2, "meters"),
  22832. default: true
  22833. },
  22834. {
  22835. name: "Normal",
  22836. height: math.unit(4.53, "meters"),
  22837. default: true
  22838. },
  22839. {
  22840. name: "Large",
  22841. height: math.unit(4.53*2, "meters"),
  22842. },
  22843. ]
  22844. ))
  22845. characterMakers.push(() => makeCharacter(
  22846. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  22847. {
  22848. front: {
  22849. height: math.unit(6 + 2/12, "feet"),
  22850. weight: math.unit(180, "lb"),
  22851. name: "Front",
  22852. image: {
  22853. source: "./media/characters/brawler/front.svg",
  22854. extra: 3301/3027,
  22855. bottom: 138/3439
  22856. }
  22857. },
  22858. },
  22859. [
  22860. {
  22861. name: "Normal",
  22862. height: math.unit(6 + 2/12, "feet"),
  22863. default: true
  22864. },
  22865. ]
  22866. ))
  22867. characterMakers.push(() => makeCharacter(
  22868. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  22869. {
  22870. front: {
  22871. height: math.unit(11, "feet"),
  22872. weight: math.unit(1000, "lb"),
  22873. name: "Front",
  22874. image: {
  22875. source: "./media/characters/alex/front.svg",
  22876. bottom: 44.5/620
  22877. }
  22878. },
  22879. },
  22880. [
  22881. {
  22882. name: "Micro",
  22883. height: math.unit(5, "inches")
  22884. },
  22885. {
  22886. name: "Normal",
  22887. height: math.unit(11, "feet"),
  22888. default: true
  22889. },
  22890. {
  22891. name: "Macro",
  22892. height: math.unit(9.5e9, "feet")
  22893. },
  22894. {
  22895. name: "Max Size",
  22896. height: math.unit(1.4e283, "yottameters")
  22897. },
  22898. ]
  22899. ))
  22900. characterMakers.push(() => makeCharacter(
  22901. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  22902. {
  22903. female: {
  22904. height: math.unit(29.9, "m"),
  22905. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  22906. name: "Female",
  22907. image: {
  22908. source: "./media/characters/zenari/female.svg",
  22909. extra: 3281.6/3217,
  22910. bottom: 72.2/3353
  22911. }
  22912. },
  22913. male: {
  22914. height: math.unit(27.7, "m"),
  22915. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  22916. name: "Male",
  22917. image: {
  22918. source: "./media/characters/zenari/male.svg",
  22919. extra: 3008/2991,
  22920. bottom: 54.6/3069
  22921. }
  22922. },
  22923. },
  22924. [
  22925. {
  22926. name: "Macro",
  22927. height: math.unit(29.7, "meters"),
  22928. default: true
  22929. },
  22930. ]
  22931. ))
  22932. characterMakers.push(() => makeCharacter(
  22933. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  22934. {
  22935. female: {
  22936. height: math.unit(23.8, "m"),
  22937. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22938. name: "Female",
  22939. image: {
  22940. source: "./media/characters/mactarian/female.svg",
  22941. extra: 2662/2569,
  22942. bottom: 73/2736
  22943. }
  22944. },
  22945. male: {
  22946. height: math.unit(23.8, "m"),
  22947. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22948. name: "Male",
  22949. image: {
  22950. source: "./media/characters/mactarian/male.svg",
  22951. extra: 2673/2600,
  22952. bottom: 76/2750
  22953. }
  22954. },
  22955. },
  22956. [
  22957. {
  22958. name: "Macro",
  22959. height: math.unit(23.8, "meters"),
  22960. default: true
  22961. },
  22962. ]
  22963. ))
  22964. characterMakers.push(() => makeCharacter(
  22965. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  22966. {
  22967. female: {
  22968. height: math.unit(19.3, "m"),
  22969. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  22970. name: "Female",
  22971. image: {
  22972. source: "./media/characters/umok/female.svg",
  22973. extra: 2186/2078,
  22974. bottom: 87/2277
  22975. }
  22976. },
  22977. male: {
  22978. height: math.unit(19.5, "m"),
  22979. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  22980. name: "Male",
  22981. image: {
  22982. source: "./media/characters/umok/male.svg",
  22983. extra: 2233/2140,
  22984. bottom: 24.4/2258
  22985. }
  22986. },
  22987. },
  22988. [
  22989. {
  22990. name: "Macro",
  22991. height: math.unit(19.3, "meters"),
  22992. default: true
  22993. },
  22994. ]
  22995. ))
  22996. characterMakers.push(() => makeCharacter(
  22997. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  22998. {
  22999. female: {
  23000. height: math.unit(26.15, "m"),
  23001. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  23002. name: "Female",
  23003. image: {
  23004. source: "./media/characters/joraxian/female.svg",
  23005. extra: 2943/2831,
  23006. bottom: 27/2972
  23007. }
  23008. },
  23009. male: {
  23010. height: math.unit(25.4, "m"),
  23011. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  23012. name: "Male",
  23013. image: {
  23014. source: "./media/characters/joraxian/male.svg",
  23015. extra: 2835/2741,
  23016. bottom: 27/2862
  23017. }
  23018. },
  23019. },
  23020. [
  23021. {
  23022. name: "Macro",
  23023. height: math.unit(26.15, "meters"),
  23024. default: true
  23025. },
  23026. ]
  23027. ))
  23028. characterMakers.push(() => makeCharacter(
  23029. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23030. {
  23031. female: {
  23032. height: math.unit(21.6, "m"),
  23033. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  23034. name: "Female",
  23035. image: {
  23036. source: "./media/characters/sthara/female.svg",
  23037. extra: 2516/2347,
  23038. bottom: 21.5/2537
  23039. }
  23040. },
  23041. male: {
  23042. height: math.unit(24, "m"),
  23043. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  23044. name: "Male",
  23045. image: {
  23046. source: "./media/characters/sthara/male.svg",
  23047. extra: 2732/2607,
  23048. bottom: 23/2732
  23049. }
  23050. },
  23051. },
  23052. [
  23053. {
  23054. name: "Macro",
  23055. height: math.unit(21.6, "meters"),
  23056. default: true
  23057. },
  23058. ]
  23059. ))
  23060. characterMakers.push(() => makeCharacter(
  23061. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23062. {
  23063. front: {
  23064. height: math.unit(6 + 4/12, "feet"),
  23065. weight: math.unit(175, "lb"),
  23066. name: "Front",
  23067. image: {
  23068. source: "./media/characters/luka-bryzant/front.svg",
  23069. extra: 311/289,
  23070. bottom: 4/315
  23071. }
  23072. },
  23073. back: {
  23074. height: math.unit(6 + 4/12, "feet"),
  23075. weight: math.unit(175, "lb"),
  23076. name: "Back",
  23077. image: {
  23078. source: "./media/characters/luka-bryzant/back.svg",
  23079. extra: 311/289,
  23080. bottom: 3.8/313.7
  23081. }
  23082. },
  23083. },
  23084. [
  23085. {
  23086. name: "Micro",
  23087. height: math.unit(10, "inches")
  23088. },
  23089. {
  23090. name: "Normal",
  23091. height: math.unit(6 + 4/12, "feet"),
  23092. default: true
  23093. },
  23094. {
  23095. name: "Large",
  23096. height: math.unit(12, "feet")
  23097. },
  23098. ]
  23099. ))
  23100. characterMakers.push(() => makeCharacter(
  23101. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23102. {
  23103. front: {
  23104. height: math.unit(5 + 7/12, "feet"),
  23105. weight: math.unit(185, "lb"),
  23106. name: "Front",
  23107. image: {
  23108. source: "./media/characters/aman-aquila/front.svg",
  23109. extra: 1013/976,
  23110. bottom: 45.6/1057
  23111. }
  23112. },
  23113. side: {
  23114. height: math.unit(5 + 7/12, "feet"),
  23115. weight: math.unit(185, "lb"),
  23116. name: "Side",
  23117. image: {
  23118. source: "./media/characters/aman-aquila/side.svg",
  23119. extra: 1054/1011,
  23120. bottom: 15/1070
  23121. }
  23122. },
  23123. back: {
  23124. height: math.unit(5 + 7/12, "feet"),
  23125. weight: math.unit(185, "lb"),
  23126. name: "Back",
  23127. image: {
  23128. source: "./media/characters/aman-aquila/back.svg",
  23129. extra: 1026/970,
  23130. bottom: 12/1039
  23131. }
  23132. },
  23133. head: {
  23134. height: math.unit(1.211, "feet"),
  23135. name: "Head",
  23136. image: {
  23137. source: "./media/characters/aman-aquila/head.svg",
  23138. }
  23139. },
  23140. },
  23141. [
  23142. {
  23143. name: "Minimicro",
  23144. height: math.unit(0.057, "inches")
  23145. },
  23146. {
  23147. name: "Micro",
  23148. height: math.unit(7, "inches")
  23149. },
  23150. {
  23151. name: "Mini",
  23152. height: math.unit(3 + 7/12, "feet")
  23153. },
  23154. {
  23155. name: "Normal",
  23156. height: math.unit(5 + 7/12, "feet"),
  23157. default: true
  23158. },
  23159. {
  23160. name: "Macro",
  23161. height: math.unit(157 + 7/12, "feet")
  23162. },
  23163. {
  23164. name: "Megamacro",
  23165. height: math.unit(1557 + 7/12, "feet")
  23166. },
  23167. {
  23168. name: "Gigamacro",
  23169. height: math.unit(15557 + 7/12, "feet")
  23170. },
  23171. ]
  23172. ))
  23173. characterMakers.push(() => makeCharacter(
  23174. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23175. {
  23176. front: {
  23177. height: math.unit(3 + 2/12, "inches"),
  23178. weight: math.unit(0.3, "ounces"),
  23179. name: "Front",
  23180. image: {
  23181. source: "./media/characters/hiphae/front.svg",
  23182. extra: 1931/1683,
  23183. bottom: 24/1955
  23184. }
  23185. },
  23186. },
  23187. [
  23188. {
  23189. name: "Normal",
  23190. height: math.unit(3 + 1/2, "inches"),
  23191. default: true
  23192. },
  23193. ]
  23194. ))
  23195. characterMakers.push(() => makeCharacter(
  23196. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23197. {
  23198. front: {
  23199. height: math.unit(5 + 10/12, "feet"),
  23200. weight: math.unit(165, "lb"),
  23201. name: "Front",
  23202. image: {
  23203. source: "./media/characters/nicky/front.svg",
  23204. extra: 3144/2886,
  23205. bottom: 45.6/3192
  23206. }
  23207. },
  23208. back: {
  23209. height: math.unit(5 + 10/12, "feet"),
  23210. weight: math.unit(165, "lb"),
  23211. name: "Back",
  23212. image: {
  23213. source: "./media/characters/nicky/back.svg",
  23214. extra: 3055/2804,
  23215. bottom: 28.4/3087
  23216. }
  23217. },
  23218. frontclothed: {
  23219. height: math.unit(5 + 10/12, "feet"),
  23220. weight: math.unit(165, "lb"),
  23221. name: "Front-clothed",
  23222. image: {
  23223. source: "./media/characters/nicky/front-clothed.svg",
  23224. extra: 3184.9/2926.9,
  23225. bottom: 86.5/3239.9
  23226. }
  23227. },
  23228. foot: {
  23229. height: math.unit(1.16, "feet"),
  23230. name: "Foot",
  23231. image: {
  23232. source: "./media/characters/nicky/foot.svg"
  23233. }
  23234. },
  23235. feet: {
  23236. height: math.unit(1.34, "feet"),
  23237. name: "Feet",
  23238. image: {
  23239. source: "./media/characters/nicky/feet.svg"
  23240. }
  23241. },
  23242. maw: {
  23243. height: math.unit(0.9, "feet"),
  23244. name: "Maw",
  23245. image: {
  23246. source: "./media/characters/nicky/maw.svg"
  23247. }
  23248. },
  23249. },
  23250. [
  23251. {
  23252. name: "Normal",
  23253. height: math.unit(5 + 10/12, "feet"),
  23254. default: true
  23255. },
  23256. {
  23257. name: "Macro",
  23258. height: math.unit(60, "feet")
  23259. },
  23260. {
  23261. name: "Megamacro",
  23262. height: math.unit(1, "mile")
  23263. },
  23264. ]
  23265. ))
  23266. characterMakers.push(() => makeCharacter(
  23267. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23268. {
  23269. side: {
  23270. height: math.unit(10, "feet"),
  23271. weight: math.unit(600, "lb"),
  23272. name: "Side",
  23273. image: {
  23274. source: "./media/characters/blair/side.svg",
  23275. bottom: 16.6/475,
  23276. extra: 458/431
  23277. }
  23278. },
  23279. },
  23280. [
  23281. {
  23282. name: "Micro",
  23283. height: math.unit(8, "inches")
  23284. },
  23285. {
  23286. name: "Normal",
  23287. height: math.unit(10, "feet"),
  23288. default: true
  23289. },
  23290. {
  23291. name: "Macro",
  23292. height: math.unit(180, "feet")
  23293. },
  23294. ]
  23295. ))
  23296. characterMakers.push(() => makeCharacter(
  23297. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23298. {
  23299. front: {
  23300. height: math.unit(5 + 4/12, "feet"),
  23301. weight: math.unit(125, "lb"),
  23302. name: "Front",
  23303. image: {
  23304. source: "./media/characters/fisher/front.svg",
  23305. extra: 444/390,
  23306. bottom: 2/444.8
  23307. }
  23308. },
  23309. },
  23310. [
  23311. {
  23312. name: "Micro",
  23313. height: math.unit(4, "inches")
  23314. },
  23315. {
  23316. name: "Normal",
  23317. height: math.unit(5 + 4/12, "feet"),
  23318. default: true
  23319. },
  23320. {
  23321. name: "Macro",
  23322. height: math.unit(100, "feet")
  23323. },
  23324. ]
  23325. ))
  23326. characterMakers.push(() => makeCharacter(
  23327. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23328. {
  23329. front: {
  23330. height: math.unit(6.71, "feet"),
  23331. weight: math.unit(200, "lb"),
  23332. capacity: math.unit(1000000, "people"),
  23333. name: "Front",
  23334. image: {
  23335. source: "./media/characters/gliss/front.svg",
  23336. extra: 2347/2231,
  23337. bottom: 113/2462
  23338. }
  23339. },
  23340. hammerspaceSize: {
  23341. height: math.unit(6.71*717, "feet"),
  23342. weight: math.unit(200, "lb"),
  23343. capacity: math.unit(1000000, "people"),
  23344. name: "Hammerspace Size",
  23345. image: {
  23346. source: "./media/characters/gliss/front.svg",
  23347. extra: 2347/2231,
  23348. bottom: 113/2462
  23349. }
  23350. },
  23351. },
  23352. [
  23353. {
  23354. name: "Normal",
  23355. height: math.unit(6.71, "feet"),
  23356. default: true
  23357. },
  23358. ]
  23359. ))
  23360. characterMakers.push(() => makeCharacter(
  23361. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23362. {
  23363. side: {
  23364. height: math.unit(1.44, "m"),
  23365. weight: math.unit(80, "kg"),
  23366. name: "Side",
  23367. image: {
  23368. source: "./media/characters/dune-anderson/side.svg",
  23369. bottom: 49/1426
  23370. }
  23371. },
  23372. },
  23373. [
  23374. {
  23375. name: "Wolf-sized",
  23376. height: math.unit(1.44, "meters")
  23377. },
  23378. {
  23379. name: "Normal",
  23380. height: math.unit(5.05, "meters"),
  23381. default: true
  23382. },
  23383. {
  23384. name: "Big",
  23385. height: math.unit(14.4, "meters")
  23386. },
  23387. {
  23388. name: "Huge",
  23389. height: math.unit(144, "meters")
  23390. },
  23391. ]
  23392. ))
  23393. characterMakers.push(() => makeCharacter(
  23394. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23395. {
  23396. front: {
  23397. height: math.unit(7, "feet"),
  23398. weight: math.unit(425, "lb"),
  23399. name: "Front",
  23400. image: {
  23401. source: "./media/characters/hind/front.svg",
  23402. extra: 2091/1860,
  23403. bottom: 129/2220
  23404. }
  23405. },
  23406. back: {
  23407. height: math.unit(7, "feet"),
  23408. weight: math.unit(425, "lb"),
  23409. name: "Back",
  23410. image: {
  23411. source: "./media/characters/hind/back.svg",
  23412. extra: 2091/1860,
  23413. bottom: 24.6/2309
  23414. }
  23415. },
  23416. tail: {
  23417. height: math.unit(2.8, "feet"),
  23418. name: "Tail",
  23419. image: {
  23420. source: "./media/characters/hind/tail.svg"
  23421. }
  23422. },
  23423. head: {
  23424. height: math.unit(2.55, "feet"),
  23425. name: "Head",
  23426. image: {
  23427. source: "./media/characters/hind/head.svg"
  23428. }
  23429. },
  23430. },
  23431. [
  23432. {
  23433. name: "XS",
  23434. height: math.unit(0.7, "feet")
  23435. },
  23436. {
  23437. name: "Normal",
  23438. height: math.unit(7, "feet"),
  23439. default: true
  23440. },
  23441. {
  23442. name: "XL",
  23443. height: math.unit(70, "feet")
  23444. },
  23445. ]
  23446. ))
  23447. characterMakers.push(() => makeCharacter(
  23448. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23449. {
  23450. front: {
  23451. height: math.unit(6, "feet"),
  23452. weight: math.unit(150, "lb"),
  23453. name: "Front",
  23454. image: {
  23455. source: "./media/characters/dylan-skaven/front.svg",
  23456. extra: 2318/2063,
  23457. bottom: 93.4/2410
  23458. }
  23459. },
  23460. },
  23461. [
  23462. {
  23463. name: "Nano",
  23464. height: math.unit(1, "mm")
  23465. },
  23466. {
  23467. name: "Micro",
  23468. height: math.unit(1, "cm")
  23469. },
  23470. {
  23471. name: "Normal",
  23472. height: math.unit(2.1, "meters"),
  23473. default: true
  23474. },
  23475. ]
  23476. ))
  23477. characterMakers.push(() => makeCharacter(
  23478. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23479. {
  23480. front: {
  23481. height: math.unit(7 + 5/12, "feet"),
  23482. weight: math.unit(357, "lb"),
  23483. name: "Front",
  23484. image: {
  23485. source: "./media/characters/solex-draconov/front.svg",
  23486. extra: 1993/1865,
  23487. bottom: 117/2111
  23488. }
  23489. },
  23490. },
  23491. [
  23492. {
  23493. name: "Natural Height",
  23494. height: math.unit(7 + 5/12, "feet"),
  23495. default: true
  23496. },
  23497. {
  23498. name: "Macro",
  23499. height: math.unit(350, "feet")
  23500. },
  23501. {
  23502. name: "Macro+",
  23503. height: math.unit(1000, "feet")
  23504. },
  23505. {
  23506. name: "Megamacro",
  23507. height: math.unit(20, "km")
  23508. },
  23509. {
  23510. name: "Megamacro+",
  23511. height: math.unit(1000, "km")
  23512. },
  23513. {
  23514. name: "Gigamacro",
  23515. height: math.unit(2.5, "Gm")
  23516. },
  23517. {
  23518. name: "Teramacro",
  23519. height: math.unit(15, "Tm")
  23520. },
  23521. {
  23522. name: "Galactic",
  23523. height: math.unit(30, "Zm")
  23524. },
  23525. {
  23526. name: "Universal",
  23527. height: math.unit(21000, "Ym")
  23528. },
  23529. {
  23530. name: "Omniversal",
  23531. height: math.unit(9.861e50, "Ym")
  23532. },
  23533. {
  23534. name: "Existential",
  23535. height: math.unit(1e300, "meters")
  23536. },
  23537. ]
  23538. ))
  23539. characterMakers.push(() => makeCharacter(
  23540. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23541. {
  23542. side: {
  23543. height: math.unit(25, "feet"),
  23544. weight: math.unit(90000, "lb"),
  23545. name: "Side",
  23546. image: {
  23547. source: "./media/characters/mandarax/side.svg",
  23548. extra: 614/332,
  23549. bottom: 55/630
  23550. }
  23551. },
  23552. head: {
  23553. height: math.unit(11.4, "feet"),
  23554. name: "Head",
  23555. image: {
  23556. source: "./media/characters/mandarax/head.svg"
  23557. }
  23558. },
  23559. belly: {
  23560. height: math.unit(33, "feet"),
  23561. name: "Belly",
  23562. capacity: math.unit(500, "people"),
  23563. image: {
  23564. source: "./media/characters/mandarax/belly.svg"
  23565. }
  23566. },
  23567. dick: {
  23568. height: math.unit(8.46, "feet"),
  23569. name: "Dick",
  23570. image: {
  23571. source: "./media/characters/mandarax/dick.svg"
  23572. }
  23573. },
  23574. top: {
  23575. height: math.unit(28, "meters"),
  23576. name: "Top",
  23577. image: {
  23578. source: "./media/characters/mandarax/top.svg"
  23579. }
  23580. },
  23581. },
  23582. [
  23583. {
  23584. name: "Normal",
  23585. height: math.unit(25, "feet"),
  23586. default: true
  23587. },
  23588. ]
  23589. ))
  23590. characterMakers.push(() => makeCharacter(
  23591. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23592. {
  23593. front: {
  23594. height: math.unit(5, "feet"),
  23595. weight: math.unit(90, "lb"),
  23596. name: "Front",
  23597. image: {
  23598. source: "./media/characters/pixil/front.svg",
  23599. extra: 2000/1618,
  23600. bottom: 12.3/2011
  23601. }
  23602. },
  23603. },
  23604. [
  23605. {
  23606. name: "Normal",
  23607. height: math.unit(5, "feet"),
  23608. default: true
  23609. },
  23610. {
  23611. name: "Megamacro",
  23612. height: math.unit(10, "miles"),
  23613. },
  23614. ]
  23615. ))
  23616. characterMakers.push(() => makeCharacter(
  23617. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23618. {
  23619. front: {
  23620. height: math.unit(7 + 2/12, "feet"),
  23621. weight: math.unit(200, "lb"),
  23622. name: "Front",
  23623. image: {
  23624. source: "./media/characters/angel/front.svg",
  23625. extra: 1830/1737,
  23626. bottom: 22.6/1854,
  23627. }
  23628. },
  23629. },
  23630. [
  23631. {
  23632. name: "Normal",
  23633. height: math.unit(7 + 2/12, "feet"),
  23634. default: true
  23635. },
  23636. {
  23637. name: "Macro",
  23638. height: math.unit(1000, "feet")
  23639. },
  23640. {
  23641. name: "Megamacro",
  23642. height: math.unit(2, "miles")
  23643. },
  23644. {
  23645. name: "Gigamacro",
  23646. height: math.unit(20, "earths")
  23647. },
  23648. ]
  23649. ))
  23650. characterMakers.push(() => makeCharacter(
  23651. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  23652. {
  23653. front: {
  23654. height: math.unit(5, "feet"),
  23655. weight: math.unit(180, "lb"),
  23656. name: "Front",
  23657. image: {
  23658. source: "./media/characters/mekana/front.svg",
  23659. extra: 1671/1605,
  23660. bottom: 3.5/1691
  23661. }
  23662. },
  23663. side: {
  23664. height: math.unit(5, "feet"),
  23665. weight: math.unit(180, "lb"),
  23666. name: "Side",
  23667. image: {
  23668. source: "./media/characters/mekana/side.svg",
  23669. extra: 1671/1605,
  23670. bottom: 3.5/1691
  23671. }
  23672. },
  23673. back: {
  23674. height: math.unit(5, "feet"),
  23675. weight: math.unit(180, "lb"),
  23676. name: "Back",
  23677. image: {
  23678. source: "./media/characters/mekana/back.svg",
  23679. extra: 1671/1605,
  23680. bottom: 3.5/1691
  23681. }
  23682. },
  23683. },
  23684. [
  23685. {
  23686. name: "Normal",
  23687. height: math.unit(5, "feet"),
  23688. default: true
  23689. },
  23690. ]
  23691. ))
  23692. characterMakers.push(() => makeCharacter(
  23693. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  23694. {
  23695. front: {
  23696. height: math.unit(4 + 6/12, "feet"),
  23697. weight: math.unit(80, "lb"),
  23698. name: "Front",
  23699. image: {
  23700. source: "./media/characters/pixie/front.svg",
  23701. extra: 1924/1825,
  23702. bottom: 22.4/1946
  23703. }
  23704. },
  23705. },
  23706. [
  23707. {
  23708. name: "Normal",
  23709. height: math.unit(4 + 6/12, "feet"),
  23710. default: true
  23711. },
  23712. {
  23713. name: "Macro",
  23714. height: math.unit(40, "feet")
  23715. },
  23716. ]
  23717. ))
  23718. //characters
  23719. function makeCharacters() {
  23720. const results = [];
  23721. characterMakers.forEach(character => {
  23722. results.push(character());
  23723. });
  23724. return results;
  23725. }