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

24427 строки
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. }
  5407. },
  5408. },
  5409. [
  5410. {
  5411. name: "Normal",
  5412. height: math.unit(2.35, "meters")
  5413. },
  5414. {
  5415. name: "Macro",
  5416. height: math.unit(60, "meters"),
  5417. default: true
  5418. },
  5419. {
  5420. name: "Megamacro",
  5421. height: math.unit(10000, "kilometers")
  5422. },
  5423. ]
  5424. ))
  5425. characterMakers.push(() => makeCharacter(
  5426. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5427. {
  5428. front: {
  5429. height: math.unit(7, "feet"),
  5430. weight: math.unit(250, "lbs"),
  5431. name: "Front",
  5432. image: {
  5433. source: "./media/characters/archy/front.svg"
  5434. }
  5435. }
  5436. },
  5437. [
  5438. {
  5439. name: "Micro",
  5440. height: math.unit(1, "inch")
  5441. },
  5442. {
  5443. name: "Shorty",
  5444. height: math.unit(5, "feet")
  5445. },
  5446. {
  5447. name: "Normal",
  5448. height: math.unit(7, "feet")
  5449. },
  5450. {
  5451. name: "Macro",
  5452. height: math.unit(600, "meters"),
  5453. default: true
  5454. },
  5455. {
  5456. name: "Megamacro",
  5457. height: math.unit(1, "mile")
  5458. },
  5459. ]
  5460. ))
  5461. characterMakers.push(() => makeCharacter(
  5462. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5463. {
  5464. front: {
  5465. height: math.unit(1.65, "meters"),
  5466. weight: math.unit(74, "kg"),
  5467. name: "Front",
  5468. image: {
  5469. source: "./media/characters/berri/front.svg"
  5470. }
  5471. }
  5472. },
  5473. [
  5474. {
  5475. name: "Normal",
  5476. height: math.unit(1.65, "meters")
  5477. },
  5478. {
  5479. name: "Macro",
  5480. height: math.unit(60, "m"),
  5481. default: true
  5482. },
  5483. {
  5484. name: "Megamacro",
  5485. height: math.unit(9.213, "km")
  5486. },
  5487. {
  5488. name: "Planet Eater",
  5489. height: math.unit(489, "megameters")
  5490. },
  5491. {
  5492. name: "Teramacro",
  5493. height: math.unit(2471635000000, "meters")
  5494. },
  5495. {
  5496. name: "Examacro",
  5497. height: math.unit(8.0624e+26, "meters")
  5498. }
  5499. ]
  5500. ))
  5501. characterMakers.push(() => makeCharacter(
  5502. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5503. {
  5504. front: {
  5505. height: math.unit(1.72, "meters"),
  5506. weight: math.unit(68, "kg"),
  5507. name: "Front",
  5508. image: {
  5509. source: "./media/characters/lexi/front.svg"
  5510. }
  5511. }
  5512. },
  5513. [
  5514. {
  5515. name: "Very Smol",
  5516. height: math.unit(10, "mm")
  5517. },
  5518. {
  5519. name: "Micro",
  5520. height: math.unit(6.8, "cm"),
  5521. default: true
  5522. },
  5523. {
  5524. name: "Normal",
  5525. height: math.unit(1.72, "m")
  5526. }
  5527. ]
  5528. ))
  5529. characterMakers.push(() => makeCharacter(
  5530. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5531. {
  5532. front: {
  5533. height: math.unit(1.69, "meters"),
  5534. weight: math.unit(68, "kg"),
  5535. name: "Front",
  5536. image: {
  5537. source: "./media/characters/martin/front.svg",
  5538. extra: 596 / 581
  5539. }
  5540. }
  5541. },
  5542. [
  5543. {
  5544. name: "Micro",
  5545. height: math.unit(6.85, "cm"),
  5546. default: true
  5547. },
  5548. {
  5549. name: "Normal",
  5550. height: math.unit(1.69, "m")
  5551. }
  5552. ]
  5553. ))
  5554. characterMakers.push(() => makeCharacter(
  5555. { name: "Juno", species: ["shiba-inu"], tags: ["anthro"] },
  5556. {
  5557. front: {
  5558. height: math.unit(1.69, "meters"),
  5559. weight: math.unit(68, "kg"),
  5560. name: "Front",
  5561. image: {
  5562. source: "./media/characters/juno/front.svg"
  5563. }
  5564. }
  5565. },
  5566. [
  5567. {
  5568. name: "Micro",
  5569. height: math.unit(7, "cm")
  5570. },
  5571. {
  5572. name: "Normal",
  5573. height: math.unit(1.89, "m")
  5574. },
  5575. {
  5576. name: "Macro",
  5577. height: math.unit(353, "meters"),
  5578. default: true
  5579. }
  5580. ]
  5581. ))
  5582. characterMakers.push(() => makeCharacter(
  5583. { name: "Samantha", species: ["canine"], tags: ["anthro"] },
  5584. {
  5585. front: {
  5586. height: math.unit(1.93, "meters"),
  5587. weight: math.unit(83, "kg"),
  5588. name: "Front",
  5589. image: {
  5590. source: "./media/characters/samantha/front.svg"
  5591. }
  5592. },
  5593. frontClothed: {
  5594. height: math.unit(1.93, "meters"),
  5595. weight: math.unit(83, "kg"),
  5596. name: "Front (Clothed)",
  5597. image: {
  5598. source: "./media/characters/samantha/front-clothed.svg"
  5599. }
  5600. },
  5601. back: {
  5602. height: math.unit(1.93, "meters"),
  5603. weight: math.unit(83, "kg"),
  5604. name: "Back",
  5605. image: {
  5606. source: "./media/characters/samantha/back.svg"
  5607. }
  5608. },
  5609. },
  5610. [
  5611. {
  5612. name: "Normal",
  5613. height: math.unit(1.93, "m")
  5614. },
  5615. {
  5616. name: "Macro",
  5617. height: math.unit(74, "meters"),
  5618. default: true
  5619. },
  5620. {
  5621. name: "Macro+",
  5622. height: math.unit(223, "meters"),
  5623. },
  5624. {
  5625. name: "Megamacro",
  5626. height: math.unit(8381, "meters"),
  5627. },
  5628. {
  5629. name: "Megamacro+",
  5630. height: math.unit(12000, "kilometers")
  5631. },
  5632. ]
  5633. ))
  5634. characterMakers.push(() => makeCharacter(
  5635. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5636. {
  5637. front: {
  5638. height: math.unit(1.92, "meters"),
  5639. weight: math.unit(80, "kg"),
  5640. name: "Front",
  5641. image: {
  5642. source: "./media/characters/dr-clay/front.svg"
  5643. }
  5644. },
  5645. frontClothed: {
  5646. height: math.unit(1.92, "meters"),
  5647. weight: math.unit(80, "kg"),
  5648. name: "Front (Clothed)",
  5649. image: {
  5650. source: "./media/characters/dr-clay/front-clothed.svg"
  5651. }
  5652. }
  5653. },
  5654. [
  5655. {
  5656. name: "Normal",
  5657. height: math.unit(1.92, "m")
  5658. },
  5659. {
  5660. name: "Macro",
  5661. height: math.unit(214, "meters"),
  5662. default: true
  5663. },
  5664. {
  5665. name: "Macro+",
  5666. height: math.unit(12.237, "meters"),
  5667. },
  5668. {
  5669. name: "Megamacro",
  5670. height: math.unit(557, "megameters"),
  5671. },
  5672. {
  5673. name: "Unimaginable",
  5674. height: math.unit(120e9, "lightyears")
  5675. },
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5680. {
  5681. front: {
  5682. height: math.unit(2, "meters"),
  5683. weight: math.unit(80, "kg"),
  5684. name: "Front",
  5685. image: {
  5686. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5687. }
  5688. }
  5689. },
  5690. [
  5691. {
  5692. name: "Teramacro",
  5693. height: math.unit(500000, "lightyears"),
  5694. default: true
  5695. },
  5696. ]
  5697. ))
  5698. characterMakers.push(() => makeCharacter(
  5699. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5700. {
  5701. front: {
  5702. height: math.unit(2, "meters"),
  5703. weight: math.unit(150, "kg"),
  5704. name: "Front",
  5705. image: {
  5706. source: "./media/characters/vemus/front.svg",
  5707. extra: 2384 / 2084,
  5708. bottom: 0.0123
  5709. }
  5710. }
  5711. },
  5712. [
  5713. {
  5714. name: "Normal",
  5715. height: math.unit(3.75, "meters"),
  5716. default: true
  5717. },
  5718. {
  5719. name: "Big",
  5720. height: math.unit(8, "meters")
  5721. },
  5722. {
  5723. name: "Macro",
  5724. height: math.unit(100, "meters")
  5725. },
  5726. {
  5727. name: "Macro+",
  5728. height: math.unit(1500, "meters")
  5729. },
  5730. {
  5731. name: "Stellar",
  5732. height: math.unit(14e8, "meters")
  5733. },
  5734. ]
  5735. ))
  5736. characterMakers.push(() => makeCharacter(
  5737. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5738. {
  5739. front: {
  5740. height: math.unit(2, "meters"),
  5741. weight: math.unit(70, "kg"),
  5742. name: "Front",
  5743. image: {
  5744. source: "./media/characters/beherit/front.svg",
  5745. extra: 1408 / 1242
  5746. }
  5747. }
  5748. },
  5749. [
  5750. {
  5751. name: "Normal",
  5752. height: math.unit(6, "feet")
  5753. },
  5754. {
  5755. name: "Lorg",
  5756. height: math.unit(25, "feet"),
  5757. default: true
  5758. },
  5759. {
  5760. name: "Lorger",
  5761. height: math.unit(75, "feet")
  5762. },
  5763. {
  5764. name: "Macro",
  5765. height: math.unit(200, "meters")
  5766. },
  5767. ]
  5768. ))
  5769. characterMakers.push(() => makeCharacter(
  5770. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5771. {
  5772. front: {
  5773. height: math.unit(2, "meters"),
  5774. weight: math.unit(150, "kg"),
  5775. name: "Front",
  5776. image: {
  5777. source: "./media/characters/everett/front.svg",
  5778. extra: 2038 / 1737,
  5779. bottom: 0.03
  5780. }
  5781. },
  5782. paw: {
  5783. height: math.unit(2 / 3.6, "meters"),
  5784. name: "Paw",
  5785. image: {
  5786. source: "./media/characters/everett/paw.svg"
  5787. }
  5788. },
  5789. },
  5790. [
  5791. {
  5792. name: "Normal",
  5793. height: math.unit(15, "feet"),
  5794. default: true
  5795. },
  5796. {
  5797. name: "Lorg",
  5798. height: math.unit(70, "feet"),
  5799. default: true
  5800. },
  5801. {
  5802. name: "Lorger",
  5803. height: math.unit(250, "feet")
  5804. },
  5805. {
  5806. name: "Macro",
  5807. height: math.unit(500, "meters")
  5808. },
  5809. ]
  5810. ))
  5811. characterMakers.push(() => makeCharacter(
  5812. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5813. {
  5814. front: {
  5815. height: math.unit(2, "meters"),
  5816. weight: math.unit(86, "kg"),
  5817. name: "Front",
  5818. image: {
  5819. source: "./media/characters/rose-lion/front.svg"
  5820. }
  5821. },
  5822. bent: {
  5823. height: math.unit(2 / 1.4288, "meters"),
  5824. weight: math.unit(86, "kg"),
  5825. name: "Bent",
  5826. image: {
  5827. source: "./media/characters/rose-lion/bent.svg"
  5828. }
  5829. }
  5830. },
  5831. [
  5832. {
  5833. name: "Mini-Micro",
  5834. height: math.unit(1, "cm")
  5835. },
  5836. {
  5837. name: "Micro",
  5838. height: math.unit(3.5, "inches"),
  5839. default: true
  5840. },
  5841. {
  5842. name: "Normal",
  5843. height: math.unit(6 + 1 / 6, "feet")
  5844. },
  5845. {
  5846. name: "Mini-Macro",
  5847. height: math.unit(9 + 10 / 12, "feet")
  5848. },
  5849. ]
  5850. ))
  5851. characterMakers.push(() => makeCharacter(
  5852. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5853. {
  5854. front: {
  5855. height: math.unit(2, "meters"),
  5856. weight: math.unit(350, "lbs"),
  5857. name: "Front",
  5858. image: {
  5859. source: "./media/characters/regal/front.svg"
  5860. }
  5861. },
  5862. back: {
  5863. height: math.unit(2, "meters"),
  5864. weight: math.unit(350, "lbs"),
  5865. name: "Back",
  5866. image: {
  5867. source: "./media/characters/regal/back.svg"
  5868. }
  5869. },
  5870. },
  5871. [
  5872. {
  5873. name: "Macro",
  5874. height: math.unit(350, "feet"),
  5875. default: true
  5876. }
  5877. ]
  5878. ))
  5879. characterMakers.push(() => makeCharacter(
  5880. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  5881. {
  5882. front: {
  5883. height: math.unit(4 + 11 / 12, "feet"),
  5884. weight: math.unit(100, "lbs"),
  5885. name: "Front",
  5886. image: {
  5887. source: "./media/characters/opal/front.svg"
  5888. }
  5889. },
  5890. frontAlt: {
  5891. height: math.unit(4 + 11 / 12, "feet"),
  5892. weight: math.unit(100, "lbs"),
  5893. name: "Front (Alt)",
  5894. image: {
  5895. source: "./media/characters/opal/front-alt.svg"
  5896. }
  5897. },
  5898. },
  5899. [
  5900. {
  5901. name: "Small",
  5902. height: math.unit(4 + 11 / 12, "feet")
  5903. },
  5904. {
  5905. name: "Normal",
  5906. height: math.unit(20, "feet"),
  5907. default: true
  5908. },
  5909. {
  5910. name: "Macro",
  5911. height: math.unit(120, "feet")
  5912. },
  5913. {
  5914. name: "Megamacro",
  5915. height: math.unit(80, "miles")
  5916. },
  5917. {
  5918. name: "True Size",
  5919. height: math.unit(100000, "lightyears")
  5920. },
  5921. ]
  5922. ))
  5923. characterMakers.push(() => makeCharacter(
  5924. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  5925. {
  5926. front: {
  5927. height: math.unit(6, "feet"),
  5928. weight: math.unit(200, "lbs"),
  5929. name: "Front",
  5930. image: {
  5931. source: "./media/characters/vector-wuff/front.svg"
  5932. }
  5933. }
  5934. },
  5935. [
  5936. {
  5937. name: "Normal",
  5938. height: math.unit(2.8, "meters")
  5939. },
  5940. {
  5941. name: "Macro",
  5942. height: math.unit(450, "meters"),
  5943. default: true
  5944. },
  5945. {
  5946. name: "Megamacro",
  5947. height: math.unit(15, "kilometers")
  5948. }
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  5953. {
  5954. front: {
  5955. height: math.unit(6, "feet"),
  5956. weight: math.unit(256, "lbs"),
  5957. name: "Front",
  5958. image: {
  5959. source: "./media/characters/dannik/front.svg"
  5960. }
  5961. }
  5962. },
  5963. [
  5964. {
  5965. name: "Macro",
  5966. height: math.unit(69.57, "meters"),
  5967. default: true
  5968. },
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  5973. {
  5974. front: {
  5975. height: math.unit(6, "feet"),
  5976. weight: math.unit(120, "lbs"),
  5977. name: "Front",
  5978. image: {
  5979. source: "./media/characters/azura-saharah/front.svg"
  5980. }
  5981. },
  5982. back: {
  5983. height: math.unit(6, "feet"),
  5984. weight: math.unit(120, "lbs"),
  5985. name: "Back",
  5986. image: {
  5987. source: "./media/characters/azura-saharah/back.svg"
  5988. }
  5989. },
  5990. },
  5991. [
  5992. {
  5993. name: "Macro",
  5994. height: math.unit(100, "feet"),
  5995. default: true
  5996. },
  5997. ]
  5998. ))
  5999. characterMakers.push(() => makeCharacter(
  6000. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6001. {
  6002. side: {
  6003. height: math.unit(5 + 4 / 12, "feet"),
  6004. weight: math.unit(163, "lbs"),
  6005. name: "Side",
  6006. image: {
  6007. source: "./media/characters/kennedy/side.svg"
  6008. }
  6009. }
  6010. },
  6011. [
  6012. {
  6013. name: "Standard Doggo",
  6014. height: math.unit(5 + 4 / 12, "feet")
  6015. },
  6016. {
  6017. name: "Big Doggo",
  6018. height: math.unit(25 + 3 / 12, "feet"),
  6019. default: true
  6020. },
  6021. ]
  6022. ))
  6023. characterMakers.push(() => makeCharacter(
  6024. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6025. {
  6026. front: {
  6027. height: math.unit(6, "feet"),
  6028. weight: math.unit(90, "lbs"),
  6029. name: "Front",
  6030. image: {
  6031. source: "./media/characters/odi-lunar/front.svg"
  6032. }
  6033. }
  6034. },
  6035. [
  6036. {
  6037. name: "Micro",
  6038. height: math.unit(3, "inches"),
  6039. default: true
  6040. },
  6041. {
  6042. name: "Normal",
  6043. height: math.unit(5.5, "feet")
  6044. }
  6045. ]
  6046. ))
  6047. characterMakers.push(() => makeCharacter(
  6048. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6049. {
  6050. back: {
  6051. height: math.unit(6, "feet"),
  6052. weight: math.unit(220, "lbs"),
  6053. name: "Back",
  6054. image: {
  6055. source: "./media/characters/mandake/back.svg"
  6056. }
  6057. }
  6058. },
  6059. [
  6060. {
  6061. name: "Normal",
  6062. height: math.unit(7, "feet"),
  6063. default: true
  6064. },
  6065. {
  6066. name: "Macro",
  6067. height: math.unit(78, "feet")
  6068. },
  6069. {
  6070. name: "Macro+",
  6071. height: math.unit(300, "meters")
  6072. },
  6073. {
  6074. name: "Macro++",
  6075. height: math.unit(2400, "feet")
  6076. },
  6077. {
  6078. name: "Megamacro",
  6079. height: math.unit(5167, "meters")
  6080. },
  6081. {
  6082. name: "Gigamacro",
  6083. height: math.unit(41769, "miles")
  6084. },
  6085. ]
  6086. ))
  6087. characterMakers.push(() => makeCharacter(
  6088. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6089. {
  6090. front: {
  6091. height: math.unit(6, "feet"),
  6092. weight: math.unit(120, "lbs"),
  6093. name: "Front",
  6094. image: {
  6095. source: "./media/characters/yozey/front.svg"
  6096. }
  6097. },
  6098. frontAlt: {
  6099. height: math.unit(6, "feet"),
  6100. weight: math.unit(120, "lbs"),
  6101. name: "Front (Alt)",
  6102. image: {
  6103. source: "./media/characters/yozey/front-alt.svg"
  6104. }
  6105. },
  6106. side: {
  6107. height: math.unit(6, "feet"),
  6108. weight: math.unit(120, "lbs"),
  6109. name: "Side",
  6110. image: {
  6111. source: "./media/characters/yozey/side.svg"
  6112. }
  6113. },
  6114. },
  6115. [
  6116. {
  6117. name: "Micro",
  6118. height: math.unit(3, "inches"),
  6119. default: true
  6120. },
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(6, "feet")
  6124. }
  6125. ]
  6126. ))
  6127. characterMakers.push(() => makeCharacter(
  6128. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6129. {
  6130. front: {
  6131. height: math.unit(6, "feet"),
  6132. weight: math.unit(103, "lbs"),
  6133. name: "Front",
  6134. image: {
  6135. source: "./media/characters/valeska-voss/front.svg"
  6136. }
  6137. }
  6138. },
  6139. [
  6140. {
  6141. name: "Mini-Sized Sub",
  6142. height: math.unit(3.1, "inches")
  6143. },
  6144. {
  6145. name: "Mid-Sized Sub",
  6146. height: math.unit(6.2, "inches")
  6147. },
  6148. {
  6149. name: "Full-Sized Sub",
  6150. height: math.unit(9.3, "inches")
  6151. },
  6152. {
  6153. name: "Normal",
  6154. height: math.unit(5 + 2 / 12, "foot"),
  6155. default: true
  6156. },
  6157. ]
  6158. ))
  6159. characterMakers.push(() => makeCharacter(
  6160. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6161. {
  6162. front: {
  6163. height: math.unit(6, "feet"),
  6164. weight: math.unit(160, "lbs"),
  6165. name: "Front",
  6166. image: {
  6167. source: "./media/characters/gene-zeta/front.svg",
  6168. bottom: 0.03,
  6169. extra: 1
  6170. }
  6171. }
  6172. },
  6173. [
  6174. {
  6175. name: "Normal",
  6176. height: math.unit(6.25, "foot"),
  6177. default: true
  6178. },
  6179. ]
  6180. ))
  6181. characterMakers.push(() => makeCharacter(
  6182. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6183. {
  6184. front: {
  6185. height: math.unit(6, "feet"),
  6186. weight: math.unit(350, "lbs"),
  6187. name: "Front",
  6188. image: {
  6189. source: "./media/characters/razinox/front.svg",
  6190. extra: 1686 / 1548,
  6191. bottom: 28.2/1868
  6192. }
  6193. },
  6194. back: {
  6195. height: math.unit(6, "feet"),
  6196. weight: math.unit(350, "lbs"),
  6197. name: "Back",
  6198. image: {
  6199. source: "./media/characters/razinox/back.svg",
  6200. extra: 1660 / 1590,
  6201. bottom: 15/1665
  6202. }
  6203. },
  6204. },
  6205. [
  6206. {
  6207. name: "Normal",
  6208. height: math.unit(10 + 8 / 12, "foot")
  6209. },
  6210. {
  6211. name: "Minimacro",
  6212. height: math.unit(15, "foot")
  6213. },
  6214. {
  6215. name: "Macro",
  6216. height: math.unit(60, "foot"),
  6217. default: true
  6218. },
  6219. {
  6220. name: "Megamacro",
  6221. height: math.unit(5, "miles")
  6222. },
  6223. {
  6224. name: "Gigamacro",
  6225. height: math.unit(6000, "miles")
  6226. },
  6227. ]
  6228. ))
  6229. characterMakers.push(() => makeCharacter(
  6230. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6231. {
  6232. front: {
  6233. height: math.unit(6, "feet"),
  6234. weight: math.unit(150, "lbs"),
  6235. name: "Front",
  6236. image: {
  6237. source: "./media/characters/cobalt/front.svg"
  6238. }
  6239. }
  6240. },
  6241. [
  6242. {
  6243. name: "Normal",
  6244. height: math.unit(8 + 1 / 12, "foot")
  6245. },
  6246. {
  6247. name: "Macro",
  6248. height: math.unit(111, "foot"),
  6249. default: true
  6250. },
  6251. {
  6252. name: "Supracosmic",
  6253. height: math.unit(1e42, "feet")
  6254. },
  6255. ]
  6256. ))
  6257. characterMakers.push(() => makeCharacter(
  6258. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6259. {
  6260. front: {
  6261. height: math.unit(6, "feet"),
  6262. weight: math.unit(140, "lbs"),
  6263. name: "Front",
  6264. image: {
  6265. source: "./media/characters/amanda/front.svg"
  6266. }
  6267. }
  6268. },
  6269. [
  6270. {
  6271. name: "Micro",
  6272. height: math.unit(5, "inches"),
  6273. default: true
  6274. },
  6275. ]
  6276. ))
  6277. characterMakers.push(() => makeCharacter(
  6278. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6279. {
  6280. front: {
  6281. height: math.unit(5.59, "feet"),
  6282. weight: math.unit(250, "lbs"),
  6283. name: "Front",
  6284. image: {
  6285. source: "./media/characters/teal/front.svg"
  6286. }
  6287. },
  6288. frontAlt: {
  6289. height: math.unit(6, "feet"),
  6290. weight: math.unit(250, "lbs"),
  6291. name: "Front (Alt)",
  6292. image: {
  6293. source: "./media/characters/teal/front-alt.svg",
  6294. bottom: 0.04,
  6295. extra: 1
  6296. }
  6297. },
  6298. },
  6299. [
  6300. {
  6301. name: "Normal",
  6302. height: math.unit(12, "feet"),
  6303. default: true
  6304. },
  6305. {
  6306. name: "Macro",
  6307. height: math.unit(300, "feet")
  6308. },
  6309. ]
  6310. ))
  6311. characterMakers.push(() => makeCharacter(
  6312. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6313. {
  6314. frontCat: {
  6315. height: math.unit(6, "feet"),
  6316. weight: math.unit(180, "lbs"),
  6317. name: "Front (Cat)",
  6318. image: {
  6319. source: "./media/characters/ravin-amulet/front-cat.svg"
  6320. }
  6321. },
  6322. frontCatAlt: {
  6323. height: math.unit(6, "feet"),
  6324. weight: math.unit(180, "lbs"),
  6325. name: "Front (Alt, Cat)",
  6326. image: {
  6327. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6328. }
  6329. },
  6330. frontWerewolf: {
  6331. height: math.unit(6 * 1.2, "feet"),
  6332. weight: math.unit(225, "lbs"),
  6333. name: "Front (Werewolf)",
  6334. image: {
  6335. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6336. }
  6337. },
  6338. backWerewolf: {
  6339. height: math.unit(6 * 1.2, "feet"),
  6340. weight: math.unit(225, "lbs"),
  6341. name: "Back (Werewolf)",
  6342. image: {
  6343. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6344. }
  6345. },
  6346. },
  6347. [
  6348. {
  6349. name: "Nano",
  6350. height: math.unit(1, "micrometer")
  6351. },
  6352. {
  6353. name: "Micro",
  6354. height: math.unit(1, "inch")
  6355. },
  6356. {
  6357. name: "Normal",
  6358. height: math.unit(6, "feet"),
  6359. default: true
  6360. },
  6361. {
  6362. name: "Macro",
  6363. height: math.unit(60, "feet")
  6364. }
  6365. ]
  6366. ))
  6367. characterMakers.push(() => makeCharacter(
  6368. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6369. {
  6370. front: {
  6371. height: math.unit(6, "feet"),
  6372. weight: math.unit(165, "lbs"),
  6373. name: "Front",
  6374. image: {
  6375. source: "./media/characters/fluoresce/front.svg"
  6376. }
  6377. }
  6378. },
  6379. [
  6380. {
  6381. name: "Micro",
  6382. height: math.unit(6, "cm")
  6383. },
  6384. {
  6385. name: "Normal",
  6386. height: math.unit(5 + 7 / 12, "feet"),
  6387. default: true
  6388. },
  6389. {
  6390. name: "Macro",
  6391. height: math.unit(56, "feet")
  6392. },
  6393. {
  6394. name: "Megamacro",
  6395. height: math.unit(1.9, "miles")
  6396. },
  6397. ]
  6398. ))
  6399. characterMakers.push(() => makeCharacter(
  6400. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6401. {
  6402. front: {
  6403. height: math.unit(9 + 6 / 12, "feet"),
  6404. weight: math.unit(523, "lbs"),
  6405. name: "Side",
  6406. image: {
  6407. source: "./media/characters/aurora/side.svg"
  6408. }
  6409. }
  6410. },
  6411. [
  6412. {
  6413. name: "Normal",
  6414. height: math.unit(9 + 6 / 12, "feet")
  6415. },
  6416. {
  6417. name: "Macro",
  6418. height: math.unit(96, "feet"),
  6419. default: true
  6420. },
  6421. {
  6422. name: "Macro+",
  6423. height: math.unit(243, "feet")
  6424. },
  6425. ]
  6426. ))
  6427. characterMakers.push(() => makeCharacter(
  6428. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6429. {
  6430. front: {
  6431. height: math.unit(194, "cm"),
  6432. weight: math.unit(90, "kg"),
  6433. name: "Front",
  6434. image: {
  6435. source: "./media/characters/ranek/front.svg"
  6436. }
  6437. },
  6438. side: {
  6439. height: math.unit(194, "cm"),
  6440. weight: math.unit(90, "kg"),
  6441. name: "Side",
  6442. image: {
  6443. source: "./media/characters/ranek/side.svg"
  6444. }
  6445. },
  6446. back: {
  6447. height: math.unit(194, "cm"),
  6448. weight: math.unit(90, "kg"),
  6449. name: "Back",
  6450. image: {
  6451. source: "./media/characters/ranek/back.svg"
  6452. }
  6453. },
  6454. feral: {
  6455. height: math.unit(30, "cm"),
  6456. weight: math.unit(1.6, "lbs"),
  6457. name: "Feral",
  6458. image: {
  6459. source: "./media/characters/ranek/feral.svg"
  6460. }
  6461. },
  6462. },
  6463. [
  6464. {
  6465. name: "Normal",
  6466. height: math.unit(194, "cm"),
  6467. default: true
  6468. },
  6469. {
  6470. name: "Macro",
  6471. height: math.unit(100, "meters")
  6472. },
  6473. ]
  6474. ))
  6475. characterMakers.push(() => makeCharacter(
  6476. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6477. {
  6478. front: {
  6479. height: math.unit(5 + 6 / 12, "feet"),
  6480. weight: math.unit(153, "lbs"),
  6481. name: "Front",
  6482. image: {
  6483. source: "./media/characters/andrew-cooper/front.svg"
  6484. }
  6485. },
  6486. },
  6487. [
  6488. {
  6489. name: "Nano",
  6490. height: math.unit(1, "mm")
  6491. },
  6492. {
  6493. name: "Micro",
  6494. height: math.unit(2, "inches")
  6495. },
  6496. {
  6497. name: "Normal",
  6498. height: math.unit(5 + 6 / 12, "feet"),
  6499. default: true
  6500. }
  6501. ]
  6502. ))
  6503. characterMakers.push(() => makeCharacter(
  6504. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6505. {
  6506. front: {
  6507. height: math.unit(6, "feet"),
  6508. weight: math.unit(180, "lbs"),
  6509. name: "Front",
  6510. image: {
  6511. source: "./media/characters/akane-sato/front.svg",
  6512. extra: 1219 / 1140
  6513. }
  6514. },
  6515. back: {
  6516. height: math.unit(6, "feet"),
  6517. weight: math.unit(180, "lbs"),
  6518. name: "Back",
  6519. image: {
  6520. source: "./media/characters/akane-sato/back.svg",
  6521. extra: 1219 / 1170
  6522. }
  6523. },
  6524. },
  6525. [
  6526. {
  6527. name: "Normal",
  6528. height: math.unit(2.5, "meters")
  6529. },
  6530. {
  6531. name: "Macro",
  6532. height: math.unit(250, "meters"),
  6533. default: true
  6534. },
  6535. {
  6536. name: "Megamacro",
  6537. height: math.unit(25, "km")
  6538. },
  6539. ]
  6540. ))
  6541. characterMakers.push(() => makeCharacter(
  6542. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6543. {
  6544. front: {
  6545. height: math.unit(6, "feet"),
  6546. weight: math.unit(65, "kg"),
  6547. name: "Front",
  6548. image: {
  6549. source: "./media/characters/rook/front.svg",
  6550. extra: 960/950
  6551. }
  6552. }
  6553. },
  6554. [
  6555. {
  6556. name: "Normal",
  6557. height: math.unit(8.8, "feet")
  6558. },
  6559. {
  6560. name: "Macro",
  6561. height: math.unit(88, "feet"),
  6562. default: true
  6563. },
  6564. {
  6565. name: "Megamacro",
  6566. height: math.unit(8, "miles")
  6567. },
  6568. ]
  6569. ))
  6570. characterMakers.push(() => makeCharacter(
  6571. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6572. {
  6573. front: {
  6574. height: math.unit(12 + 2 / 12, "feet"),
  6575. weight: math.unit(808, "lbs"),
  6576. name: "Front",
  6577. image: {
  6578. source: "./media/characters/prodigy/front.svg"
  6579. }
  6580. }
  6581. },
  6582. [
  6583. {
  6584. name: "Normal",
  6585. height: math.unit(12 + 2 / 12, "feet"),
  6586. default: true
  6587. },
  6588. {
  6589. name: "Macro",
  6590. height: math.unit(143, "feet")
  6591. },
  6592. {
  6593. name: "Macro+",
  6594. height: math.unit(400, "feet")
  6595. },
  6596. ]
  6597. ))
  6598. characterMakers.push(() => makeCharacter(
  6599. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6600. {
  6601. front: {
  6602. height: math.unit(6, "feet"),
  6603. weight: math.unit(225, "lbs"),
  6604. name: "Front",
  6605. image: {
  6606. source: "./media/characters/daniel/front.svg"
  6607. }
  6608. },
  6609. leaning: {
  6610. height: math.unit(6, "feet"),
  6611. weight: math.unit(225, "lbs"),
  6612. name: "Leaning",
  6613. image: {
  6614. source: "./media/characters/daniel/leaning.svg"
  6615. }
  6616. },
  6617. },
  6618. [
  6619. {
  6620. name: "Macro",
  6621. height: math.unit(1000, "feet"),
  6622. default: true
  6623. },
  6624. ]
  6625. ))
  6626. characterMakers.push(() => makeCharacter(
  6627. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6628. {
  6629. front: {
  6630. height: math.unit(6, "feet"),
  6631. weight: math.unit(88, "lbs"),
  6632. name: "Front",
  6633. image: {
  6634. source: "./media/characters/chiros/front.svg",
  6635. extra: 306 / 226
  6636. }
  6637. },
  6638. side: {
  6639. height: math.unit(6, "feet"),
  6640. weight: math.unit(88, "lbs"),
  6641. name: "Side",
  6642. image: {
  6643. source: "./media/characters/chiros/side.svg",
  6644. extra: 306 / 226
  6645. }
  6646. },
  6647. },
  6648. [
  6649. {
  6650. name: "Normal",
  6651. height: math.unit(6, "cm"),
  6652. default: true
  6653. },
  6654. ]
  6655. ))
  6656. characterMakers.push(() => makeCharacter(
  6657. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6658. {
  6659. front: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(100, "lbs"),
  6662. name: "Front",
  6663. image: {
  6664. source: "./media/characters/selka/front.svg",
  6665. extra: 947 / 887
  6666. }
  6667. }
  6668. },
  6669. [
  6670. {
  6671. name: "Normal",
  6672. height: math.unit(5, "cm"),
  6673. default: true
  6674. },
  6675. ]
  6676. ))
  6677. characterMakers.push(() => makeCharacter(
  6678. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6679. {
  6680. front: {
  6681. height: math.unit(8 + 3 / 12, "feet"),
  6682. weight: math.unit(424, "lbs"),
  6683. name: "Front",
  6684. image: {
  6685. source: "./media/characters/verin/front.svg",
  6686. extra: 1845 / 1550
  6687. }
  6688. },
  6689. frontArmored: {
  6690. height: math.unit(8 + 3 / 12, "feet"),
  6691. weight: math.unit(424, "lbs"),
  6692. name: "Front (Armored)",
  6693. image: {
  6694. source: "./media/characters/verin/front-armor.svg",
  6695. extra: 1845 / 1550,
  6696. bottom: 0.01
  6697. }
  6698. },
  6699. back: {
  6700. height: math.unit(8 + 3 / 12, "feet"),
  6701. weight: math.unit(424, "lbs"),
  6702. name: "Back",
  6703. image: {
  6704. source: "./media/characters/verin/back.svg",
  6705. bottom: 0.1,
  6706. extra: 1
  6707. }
  6708. },
  6709. foot: {
  6710. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6711. name: "Foot",
  6712. image: {
  6713. source: "./media/characters/verin/foot.svg"
  6714. }
  6715. },
  6716. },
  6717. [
  6718. {
  6719. name: "Normal",
  6720. height: math.unit(8 + 3 / 12, "feet")
  6721. },
  6722. {
  6723. name: "Minimacro",
  6724. height: math.unit(21, "feet"),
  6725. default: true
  6726. },
  6727. {
  6728. name: "Macro",
  6729. height: math.unit(626, "feet")
  6730. },
  6731. ]
  6732. ))
  6733. characterMakers.push(() => makeCharacter(
  6734. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6735. {
  6736. front: {
  6737. height: math.unit(2.718, "meters"),
  6738. weight: math.unit(150, "lbs"),
  6739. name: "Front",
  6740. image: {
  6741. source: "./media/characters/sovrim-terraquian/front.svg"
  6742. }
  6743. },
  6744. back: {
  6745. height: math.unit(2.718, "meters"),
  6746. weight: math.unit(150, "lbs"),
  6747. name: "Back",
  6748. image: {
  6749. source: "./media/characters/sovrim-terraquian/back.svg"
  6750. }
  6751. }
  6752. },
  6753. [
  6754. {
  6755. name: "Micro",
  6756. height: math.unit(2, "inches")
  6757. },
  6758. {
  6759. name: "Small",
  6760. height: math.unit(1, "meter")
  6761. },
  6762. {
  6763. name: "Normal",
  6764. height: math.unit(Math.E, "meters"),
  6765. default: true
  6766. },
  6767. {
  6768. name: "Macro",
  6769. height: math.unit(20, "meters")
  6770. },
  6771. {
  6772. name: "Macro+",
  6773. height: math.unit(400, "meters")
  6774. },
  6775. ]
  6776. ))
  6777. characterMakers.push(() => makeCharacter(
  6778. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6779. {
  6780. front: {
  6781. height: math.unit(7, "feet"),
  6782. weight: math.unit(489, "lbs"),
  6783. name: "Front",
  6784. image: {
  6785. source: "./media/characters/reece-silvermane/front.svg",
  6786. bottom: 0.02,
  6787. extra: 1
  6788. }
  6789. },
  6790. },
  6791. [
  6792. {
  6793. name: "Macro",
  6794. height: math.unit(1.5, "miles"),
  6795. default: true
  6796. },
  6797. ]
  6798. ))
  6799. characterMakers.push(() => makeCharacter(
  6800. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6801. {
  6802. front: {
  6803. height: math.unit(6, "feet"),
  6804. weight: math.unit(78, "kg"),
  6805. name: "Front",
  6806. image: {
  6807. source: "./media/characters/kane/front.svg",
  6808. extra: 978 / 899
  6809. }
  6810. },
  6811. },
  6812. [
  6813. {
  6814. name: "Normal",
  6815. height: math.unit(2.1, "m"),
  6816. },
  6817. {
  6818. name: "Macro",
  6819. height: math.unit(1, "km"),
  6820. default: true
  6821. },
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(6, "feet"),
  6829. weight: math.unit(200, "kg"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/tegon/front.svg",
  6833. bottom: 0.01,
  6834. extra: 1
  6835. }
  6836. },
  6837. },
  6838. [
  6839. {
  6840. name: "Micro",
  6841. height: math.unit(1, "inch")
  6842. },
  6843. {
  6844. name: "Normal",
  6845. height: math.unit(6 + 3 / 12, "feet"),
  6846. default: true
  6847. },
  6848. {
  6849. name: "Macro",
  6850. height: math.unit(300, "feet")
  6851. },
  6852. {
  6853. name: "Megamacro",
  6854. height: math.unit(69, "miles")
  6855. },
  6856. ]
  6857. ))
  6858. characterMakers.push(() => makeCharacter(
  6859. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  6860. {
  6861. side: {
  6862. height: math.unit(6, "feet"),
  6863. weight: math.unit(2304, "lbs"),
  6864. name: "Side",
  6865. image: {
  6866. source: "./media/characters/arcturax/side.svg",
  6867. extra: 790 / 376,
  6868. bottom: 0.01
  6869. }
  6870. },
  6871. },
  6872. [
  6873. {
  6874. name: "Micro",
  6875. height: math.unit(2, "inch")
  6876. },
  6877. {
  6878. name: "Normal",
  6879. height: math.unit(6, "feet")
  6880. },
  6881. {
  6882. name: "Macro",
  6883. height: math.unit(39, "feet"),
  6884. default: true
  6885. },
  6886. {
  6887. name: "Megamacro",
  6888. height: math.unit(7, "miles")
  6889. },
  6890. ]
  6891. ))
  6892. characterMakers.push(() => makeCharacter(
  6893. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  6894. {
  6895. front: {
  6896. height: math.unit(6, "feet"),
  6897. weight: math.unit(50, "lbs"),
  6898. name: "Front",
  6899. image: {
  6900. source: "./media/characters/sentri/front.svg",
  6901. extra: 1750 / 1570,
  6902. bottom: 0.025
  6903. }
  6904. },
  6905. frontAlt: {
  6906. height: math.unit(6, "feet"),
  6907. weight: math.unit(50, "lbs"),
  6908. name: "Front (Alt)",
  6909. image: {
  6910. source: "./media/characters/sentri/front-alt.svg",
  6911. extra: 1750 / 1570,
  6912. bottom: 0.025
  6913. }
  6914. },
  6915. },
  6916. [
  6917. {
  6918. name: "Normal",
  6919. height: math.unit(15, "feet"),
  6920. default: true
  6921. },
  6922. {
  6923. name: "Macro",
  6924. height: math.unit(2500, "feet")
  6925. }
  6926. ]
  6927. ))
  6928. characterMakers.push(() => makeCharacter(
  6929. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  6930. {
  6931. front: {
  6932. height: math.unit(5 + 8 / 12, "feet"),
  6933. weight: math.unit(130, "lbs"),
  6934. name: "Front",
  6935. image: {
  6936. source: "./media/characters/corvin/front.svg",
  6937. extra: 1803 / 1629
  6938. }
  6939. },
  6940. frontShirt: {
  6941. height: math.unit(5 + 8 / 12, "feet"),
  6942. weight: math.unit(130, "lbs"),
  6943. name: "Front (Shirt)",
  6944. image: {
  6945. source: "./media/characters/corvin/front-shirt.svg",
  6946. extra: 1803 / 1629
  6947. }
  6948. },
  6949. frontPoncho: {
  6950. height: math.unit(5 + 8 / 12, "feet"),
  6951. weight: math.unit(130, "lbs"),
  6952. name: "Front (Poncho)",
  6953. image: {
  6954. source: "./media/characters/corvin/front-poncho.svg",
  6955. extra: 1803 / 1629
  6956. }
  6957. },
  6958. side: {
  6959. height: math.unit(5 + 8 / 12, "feet"),
  6960. weight: math.unit(130, "lbs"),
  6961. name: "Side",
  6962. image: {
  6963. source: "./media/characters/corvin/side.svg",
  6964. extra: 1012 / 945
  6965. }
  6966. },
  6967. back: {
  6968. height: math.unit(5 + 8 / 12, "feet"),
  6969. weight: math.unit(130, "lbs"),
  6970. name: "Back",
  6971. image: {
  6972. source: "./media/characters/corvin/back.svg",
  6973. extra: 1803 / 1629
  6974. }
  6975. },
  6976. },
  6977. [
  6978. {
  6979. name: "Micro",
  6980. height: math.unit(3, "inches")
  6981. },
  6982. {
  6983. name: "Normal",
  6984. height: math.unit(5 + 8 / 12, "feet")
  6985. },
  6986. {
  6987. name: "Macro",
  6988. height: math.unit(300, "feet"),
  6989. default: true
  6990. },
  6991. {
  6992. name: "Megamacro",
  6993. height: math.unit(500, "miles")
  6994. }
  6995. ]
  6996. ))
  6997. characterMakers.push(() => makeCharacter(
  6998. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  6999. {
  7000. front: {
  7001. height: math.unit(6, "feet"),
  7002. weight: math.unit(135, "lbs"),
  7003. name: "Front",
  7004. image: {
  7005. source: "./media/characters/q/front.svg",
  7006. extra: 854 / 752,
  7007. bottom: 0.005
  7008. }
  7009. },
  7010. back: {
  7011. height: math.unit(6, "feet"),
  7012. weight: math.unit(130, "lbs"),
  7013. name: "Back",
  7014. image: {
  7015. source: "./media/characters/q/back.svg",
  7016. extra: 854 / 752
  7017. }
  7018. },
  7019. },
  7020. [
  7021. {
  7022. name: "Macro",
  7023. height: math.unit(90, "feet"),
  7024. default: true
  7025. },
  7026. {
  7027. name: "Extra Macro",
  7028. height: math.unit(300, "feet"),
  7029. },
  7030. {
  7031. name: "BIG WALF",
  7032. height: math.unit(750, "feet"),
  7033. },
  7034. ]
  7035. ))
  7036. characterMakers.push(() => makeCharacter(
  7037. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7038. {
  7039. front: {
  7040. height: math.unit(6, "feet"),
  7041. weight: math.unit(150, "lbs"),
  7042. name: "Front",
  7043. image: {
  7044. source: "./media/characters/carley/front.svg",
  7045. extra: 3927 / 3540,
  7046. bottom: 0.03
  7047. }
  7048. }
  7049. },
  7050. [
  7051. {
  7052. name: "Normal",
  7053. height: math.unit(6 + 3 / 12, "feet")
  7054. },
  7055. {
  7056. name: "Macro",
  7057. height: math.unit(185, "feet"),
  7058. default: true
  7059. },
  7060. {
  7061. name: "Megamacro",
  7062. height: math.unit(8, "miles"),
  7063. },
  7064. ]
  7065. ))
  7066. characterMakers.push(() => makeCharacter(
  7067. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7068. {
  7069. front: {
  7070. height: math.unit(3, "feet"),
  7071. weight: math.unit(28, "lbs"),
  7072. name: "Front",
  7073. image: {
  7074. source: "./media/characters/citrine/front.svg"
  7075. }
  7076. }
  7077. },
  7078. [
  7079. {
  7080. name: "Normal",
  7081. height: math.unit(3, "feet"),
  7082. default: true
  7083. }
  7084. ]
  7085. ))
  7086. characterMakers.push(() => makeCharacter(
  7087. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7088. {
  7089. front: {
  7090. height: math.unit(14, "feet"),
  7091. weight: math.unit(1450, "kg"),
  7092. capacity: math.unit(15, "people"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/aura-starwind/front.svg",
  7096. extra: 1455 / 1335
  7097. }
  7098. },
  7099. side: {
  7100. height: math.unit(14, "feet"),
  7101. weight: math.unit(1450, "kg"),
  7102. capacity: math.unit(15, "people"),
  7103. name: "Side",
  7104. image: {
  7105. source: "./media/characters/aura-starwind/side.svg",
  7106. extra: 1654 / 1497
  7107. }
  7108. },
  7109. taur: {
  7110. height: math.unit(18, "feet"),
  7111. weight: math.unit(5500, "kg"),
  7112. capacity: math.unit(50, "people"),
  7113. name: "Taur",
  7114. image: {
  7115. source: "./media/characters/aura-starwind/taur.svg",
  7116. extra: 1760 / 1650
  7117. }
  7118. },
  7119. feral: {
  7120. height: math.unit(46, "feet"),
  7121. weight: math.unit(25000, "kg"),
  7122. capacity: math.unit(120, "people"),
  7123. name: "Feral",
  7124. image: {
  7125. source: "./media/characters/aura-starwind/feral.svg"
  7126. }
  7127. },
  7128. },
  7129. [
  7130. {
  7131. name: "Normal",
  7132. height: math.unit(14, "feet"),
  7133. default: true
  7134. },
  7135. {
  7136. name: "Macro",
  7137. height: math.unit(50, "meters")
  7138. },
  7139. {
  7140. name: "Megamacro",
  7141. height: math.unit(5000, "meters")
  7142. },
  7143. {
  7144. name: "Gigamacro",
  7145. height: math.unit(100000, "kilometers")
  7146. },
  7147. ]
  7148. ))
  7149. characterMakers.push(() => makeCharacter(
  7150. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7151. {
  7152. front: {
  7153. height: math.unit(2 + 7 / 12, "feet"),
  7154. weight: math.unit(32, "lbs"),
  7155. name: "Front",
  7156. image: {
  7157. source: "./media/characters/rivet/front.svg",
  7158. extra: 1716 / 1658,
  7159. bottom: 0.03
  7160. }
  7161. },
  7162. foot: {
  7163. height: math.unit(0.551, "feet"),
  7164. name: "Rivet's Foot",
  7165. image: {
  7166. source: "./media/characters/rivet/foot.svg"
  7167. },
  7168. rename: true
  7169. }
  7170. },
  7171. [
  7172. {
  7173. name: "Micro",
  7174. height: math.unit(1.5, "inches"),
  7175. },
  7176. {
  7177. name: "Normal",
  7178. height: math.unit(2 + 7 / 12, "feet"),
  7179. default: true
  7180. },
  7181. {
  7182. name: "Macro",
  7183. height: math.unit(85, "feet")
  7184. },
  7185. {
  7186. name: "Megamacro",
  7187. height: math.unit(2.2, "km")
  7188. }
  7189. ]
  7190. ))
  7191. characterMakers.push(() => makeCharacter(
  7192. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7193. {
  7194. front: {
  7195. height: math.unit(5 + 9 / 12, "feet"),
  7196. weight: math.unit(150, "lbs"),
  7197. name: "Front",
  7198. image: {
  7199. source: "./media/characters/coffee/front.svg",
  7200. extra: 3666 / 3032,
  7201. bottom: 0.04
  7202. }
  7203. },
  7204. foot: {
  7205. height: math.unit(1.29, "feet"),
  7206. name: "Foot",
  7207. image: {
  7208. source: "./media/characters/coffee/foot.svg"
  7209. }
  7210. },
  7211. },
  7212. [
  7213. {
  7214. name: "Micro",
  7215. height: math.unit(2, "inches"),
  7216. },
  7217. {
  7218. name: "Normal",
  7219. height: math.unit(5 + 9 / 12, "feet"),
  7220. default: true
  7221. },
  7222. {
  7223. name: "Macro",
  7224. height: math.unit(800, "feet")
  7225. },
  7226. {
  7227. name: "Megamacro",
  7228. height: math.unit(25, "miles")
  7229. }
  7230. ]
  7231. ))
  7232. characterMakers.push(() => makeCharacter(
  7233. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7234. {
  7235. front: {
  7236. height: math.unit(6, "feet"),
  7237. weight: math.unit(200, "lbs"),
  7238. name: "Front",
  7239. image: {
  7240. source: "./media/characters/chari-gal/front.svg",
  7241. extra: 1568 / 1385,
  7242. bottom: 0.047
  7243. }
  7244. },
  7245. gigantamax: {
  7246. height: math.unit(6 * 16, "feet"),
  7247. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7248. name: "Gigantamax",
  7249. image: {
  7250. source: "./media/characters/chari-gal/gigantamax.svg",
  7251. extra: 1124 / 888,
  7252. bottom: 0.03
  7253. }
  7254. },
  7255. },
  7256. [
  7257. {
  7258. name: "Normal",
  7259. height: math.unit(5 + 7 / 12, "feet")
  7260. },
  7261. {
  7262. name: "Macro",
  7263. height: math.unit(200, "feet"),
  7264. default: true
  7265. }
  7266. ]
  7267. ))
  7268. characterMakers.push(() => makeCharacter(
  7269. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7270. {
  7271. front: {
  7272. height: math.unit(6, "feet"),
  7273. weight: math.unit(150, "lbs"),
  7274. name: "Front",
  7275. image: {
  7276. source: "./media/characters/nova/front.svg",
  7277. extra: 5000 / 4722,
  7278. bottom: 0.02
  7279. }
  7280. }
  7281. },
  7282. [
  7283. {
  7284. name: "Micro-",
  7285. height: math.unit(0.8, "inches")
  7286. },
  7287. {
  7288. name: "Micro",
  7289. height: math.unit(2, "inches"),
  7290. default: true
  7291. },
  7292. ]
  7293. ))
  7294. characterMakers.push(() => makeCharacter(
  7295. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7296. {
  7297. front: {
  7298. height: math.unit(3 + 1 / 12, "feet"),
  7299. weight: math.unit(21.7, "lbs"),
  7300. name: "Front",
  7301. image: {
  7302. source: "./media/characters/argent/front.svg",
  7303. extra: 1565 / 1416,
  7304. bottom: 0.01
  7305. }
  7306. }
  7307. },
  7308. [
  7309. {
  7310. name: "Micro",
  7311. height: math.unit(2, "inches")
  7312. },
  7313. {
  7314. name: "Normal",
  7315. height: math.unit(3 + 1 / 12, "feet"),
  7316. default: true
  7317. },
  7318. {
  7319. name: "Macro",
  7320. height: math.unit(120, "feet")
  7321. },
  7322. ]
  7323. ))
  7324. characterMakers.push(() => makeCharacter(
  7325. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7326. {
  7327. lamp: {
  7328. height: math.unit(7 * 1559 / 989, "feet"),
  7329. name: "Magic Lamp",
  7330. image: {
  7331. source: "./media/characters/mira-al-cul/lamp.svg",
  7332. extra: 1617 / 1559
  7333. }
  7334. },
  7335. front: {
  7336. height: math.unit(7, "feet"),
  7337. name: "Front",
  7338. image: {
  7339. source: "./media/characters/mira-al-cul/front.svg",
  7340. extra: 1044 / 990
  7341. }
  7342. },
  7343. },
  7344. [
  7345. {
  7346. name: "Heavily Restricted",
  7347. height: math.unit(7 * 1559 / 989, "feet")
  7348. },
  7349. {
  7350. name: "Freshly Freed",
  7351. height: math.unit(50 * 1559 / 989, "feet")
  7352. },
  7353. {
  7354. name: "World Encompassing",
  7355. height: math.unit(10000 * 1559 / 989, "miles")
  7356. },
  7357. {
  7358. name: "Galactic",
  7359. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7360. },
  7361. {
  7362. name: "Palmed Universe",
  7363. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7364. default: true
  7365. },
  7366. {
  7367. name: "Multiversal Matriarch",
  7368. height: math.unit(8.87e10, "yottameters")
  7369. },
  7370. {
  7371. name: "Void Mother",
  7372. height: math.unit(3.14e110, "yottaparsecs")
  7373. },
  7374. ]
  7375. ))
  7376. characterMakers.push(() => makeCharacter(
  7377. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7378. {
  7379. front: {
  7380. height: math.unit(17 + 1 / 12, "feet"),
  7381. weight: math.unit(476.2 * 5, "lbs"),
  7382. name: "Front",
  7383. image: {
  7384. source: "./media/characters/kuro-shi-uchū/front.svg",
  7385. extra: 2329 / 1835,
  7386. bottom: 0.02
  7387. }
  7388. },
  7389. },
  7390. [
  7391. {
  7392. name: "Micro",
  7393. height: math.unit(2, "inches")
  7394. },
  7395. {
  7396. name: "Normal",
  7397. height: math.unit(12, "meters")
  7398. },
  7399. {
  7400. name: "Planetary",
  7401. height: math.unit(0.00929, "AU"),
  7402. default: true
  7403. },
  7404. {
  7405. name: "Universal",
  7406. height: math.unit(20, "gigaparsecs")
  7407. },
  7408. ]
  7409. ))
  7410. characterMakers.push(() => makeCharacter(
  7411. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7412. {
  7413. front: {
  7414. height: math.unit(5 + 2 / 12, "feet"),
  7415. weight: math.unit(120, "lbs"),
  7416. name: "Front",
  7417. image: {
  7418. source: "./media/characters/katherine/front.svg",
  7419. extra: 2075 / 1969
  7420. }
  7421. },
  7422. dress: {
  7423. height: math.unit(5 + 2 / 12, "feet"),
  7424. weight: math.unit(120, "lbs"),
  7425. name: "Dress",
  7426. image: {
  7427. source: "./media/characters/katherine/dress.svg",
  7428. extra: 2258 / 2064
  7429. }
  7430. },
  7431. },
  7432. [
  7433. {
  7434. name: "Micro",
  7435. height: math.unit(1, "inches"),
  7436. default: true
  7437. },
  7438. {
  7439. name: "Normal",
  7440. height: math.unit(5 + 2 / 12, "feet")
  7441. },
  7442. {
  7443. name: "Macro",
  7444. height: math.unit(100, "meters")
  7445. },
  7446. {
  7447. name: "Megamacro",
  7448. height: math.unit(80, "miles")
  7449. },
  7450. ]
  7451. ))
  7452. characterMakers.push(() => makeCharacter(
  7453. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7454. {
  7455. front: {
  7456. height: math.unit(7 + 8 / 12, "feet"),
  7457. weight: math.unit(250, "lbs"),
  7458. name: "Front",
  7459. image: {
  7460. source: "./media/characters/yevis/front.svg",
  7461. extra: 1938 / 1755
  7462. }
  7463. }
  7464. },
  7465. [
  7466. {
  7467. name: "Mortal",
  7468. height: math.unit(7 + 8 / 12, "feet")
  7469. },
  7470. {
  7471. name: "Battle",
  7472. height: math.unit(25 + 11 / 12, "feet")
  7473. },
  7474. {
  7475. name: "Wrath",
  7476. height: math.unit(1654 + 11 / 12, "feet")
  7477. },
  7478. {
  7479. name: "Planet Destroyer",
  7480. height: math.unit(12000, "miles")
  7481. },
  7482. {
  7483. name: "Galaxy Conqueror",
  7484. height: math.unit(1.45, "zettameters"),
  7485. default: true
  7486. },
  7487. {
  7488. name: "Universal War",
  7489. height: math.unit(184, "gigaparsecs")
  7490. },
  7491. {
  7492. name: "Eternity War",
  7493. height: math.unit(1.98e55, "yottaparsecs")
  7494. },
  7495. ]
  7496. ))
  7497. characterMakers.push(() => makeCharacter(
  7498. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7499. {
  7500. front: {
  7501. height: math.unit(5 + 8 / 12, "feet"),
  7502. weight: math.unit(63, "kg"),
  7503. name: "Front",
  7504. image: {
  7505. source: "./media/characters/xavier/front.svg",
  7506. extra: 944 / 883
  7507. }
  7508. },
  7509. frontStretch: {
  7510. height: math.unit(5 + 8 / 12, "feet"),
  7511. weight: math.unit(63, "kg"),
  7512. name: "Stretching",
  7513. image: {
  7514. source: "./media/characters/xavier/front-stretch.svg",
  7515. extra: 962 / 820
  7516. }
  7517. },
  7518. },
  7519. [
  7520. {
  7521. name: "Normal",
  7522. height: math.unit(5 + 8 / 12, "feet")
  7523. },
  7524. {
  7525. name: "Macro",
  7526. height: math.unit(100, "meters"),
  7527. default: true
  7528. },
  7529. {
  7530. name: "McLargeHuge",
  7531. height: math.unit(10, "miles")
  7532. },
  7533. ]
  7534. ))
  7535. characterMakers.push(() => makeCharacter(
  7536. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7537. {
  7538. front: {
  7539. height: math.unit(5 + 5 / 12, "feet"),
  7540. weight: math.unit(150, "lb"),
  7541. name: "Front",
  7542. image: {
  7543. source: "./media/characters/joshii/front.svg"
  7544. }
  7545. },
  7546. foot: {
  7547. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7548. name: "Foot",
  7549. image: {
  7550. source: "./media/characters/joshii/foot.svg"
  7551. }
  7552. },
  7553. },
  7554. [
  7555. {
  7556. name: "Micro",
  7557. height: math.unit(2, "inches")
  7558. },
  7559. {
  7560. name: "Normal",
  7561. height: math.unit(5 + 5 / 12, "feet"),
  7562. default: true
  7563. },
  7564. {
  7565. name: "Macro",
  7566. height: math.unit(785, "feet")
  7567. },
  7568. {
  7569. name: "Megamacro",
  7570. height: math.unit(24.5, "miles")
  7571. },
  7572. ]
  7573. ))
  7574. characterMakers.push(() => makeCharacter(
  7575. { name: "Goddess Elizabeth", species: ["wolf"], tags: ["anthro"] },
  7576. {
  7577. front: {
  7578. height: math.unit(6, "feet"),
  7579. weight: math.unit(150, "lb"),
  7580. name: "Front",
  7581. image: {
  7582. source: "./media/characters/goddess-elizabeth/front.svg",
  7583. extra: 1800 / 1525,
  7584. bottom: 0.005
  7585. }
  7586. },
  7587. foot: {
  7588. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7589. name: "Foot",
  7590. image: {
  7591. source: "./media/characters/goddess-elizabeth/foot.svg"
  7592. }
  7593. },
  7594. mouth: {
  7595. height: math.unit(6, "feet"),
  7596. name: "Mouth",
  7597. image: {
  7598. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7599. }
  7600. },
  7601. },
  7602. [
  7603. {
  7604. name: "Micro",
  7605. height: math.unit(12, "feet")
  7606. },
  7607. {
  7608. name: "Normal",
  7609. height: math.unit(80, "miles"),
  7610. default: true
  7611. },
  7612. {
  7613. name: "Macro",
  7614. height: math.unit(15000, "parsecs")
  7615. },
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7620. {
  7621. front: {
  7622. height: math.unit(5 + 9 / 12, "feet"),
  7623. weight: math.unit(144, "lb"),
  7624. name: "Front",
  7625. image: {
  7626. source: "./media/characters/kara/front.svg"
  7627. }
  7628. },
  7629. feet: {
  7630. height: math.unit(6 / 6.765, "feet"),
  7631. name: "Kara's Feet",
  7632. rename: true,
  7633. image: {
  7634. source: "./media/characters/kara/feet.svg"
  7635. }
  7636. },
  7637. },
  7638. [
  7639. {
  7640. name: "Normal",
  7641. height: math.unit(5 + 9 / 12, "feet")
  7642. },
  7643. {
  7644. name: "Macro",
  7645. height: math.unit(174, "feet"),
  7646. default: true
  7647. },
  7648. ]
  7649. ))
  7650. characterMakers.push(() => makeCharacter(
  7651. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7652. {
  7653. front: {
  7654. height: math.unit(18, "feet"),
  7655. weight: math.unit(4050, "lb"),
  7656. name: "Front",
  7657. image: {
  7658. source: "./media/characters/tyrone/front.svg",
  7659. extra: 2520 / 2402,
  7660. bottom: 0.025
  7661. }
  7662. },
  7663. },
  7664. [
  7665. {
  7666. name: "Normal",
  7667. height: math.unit(18, "feet"),
  7668. default: true
  7669. },
  7670. {
  7671. name: "Macro",
  7672. height: math.unit(300, "feet")
  7673. },
  7674. ]
  7675. ))
  7676. characterMakers.push(() => makeCharacter(
  7677. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7678. {
  7679. front: {
  7680. height: math.unit(7 + 8 / 12, "feet"),
  7681. weight: math.unit(120, "lb"),
  7682. name: "Front",
  7683. image: {
  7684. source: "./media/characters/danny/front.svg",
  7685. extra: 1490 / 1350
  7686. }
  7687. },
  7688. back: {
  7689. height: math.unit(7 + 8 / 12, "feet"),
  7690. weight: math.unit(120, "lb"),
  7691. name: "Back",
  7692. image: {
  7693. source: "./media/characters/danny/back.svg",
  7694. extra: 1490 / 1350
  7695. }
  7696. },
  7697. },
  7698. [
  7699. {
  7700. name: "Normal",
  7701. height: math.unit(7 + 8 / 12, "feet"),
  7702. default: true
  7703. },
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7708. {
  7709. front: {
  7710. height: math.unit(3.5, "inches"),
  7711. weight: math.unit(19, "grams"),
  7712. name: "Front",
  7713. image: {
  7714. source: "./media/characters/mallow/front.svg",
  7715. extra: 471 / 431
  7716. }
  7717. },
  7718. back: {
  7719. height: math.unit(3.5, "inches"),
  7720. weight: math.unit(19, "grams"),
  7721. name: "Back",
  7722. image: {
  7723. source: "./media/characters/mallow/back.svg",
  7724. extra: 471 / 431
  7725. }
  7726. },
  7727. },
  7728. [
  7729. {
  7730. name: "Normal",
  7731. height: math.unit(3.5, "inches"),
  7732. default: true
  7733. },
  7734. ]
  7735. ))
  7736. characterMakers.push(() => makeCharacter(
  7737. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7738. {
  7739. front: {
  7740. height: math.unit(9, "feet"),
  7741. weight: math.unit(230, "kg"),
  7742. name: "Front",
  7743. image: {
  7744. source: "./media/characters/starry-aqua/front.svg"
  7745. }
  7746. },
  7747. back: {
  7748. height: math.unit(9, "feet"),
  7749. weight: math.unit(230, "kg"),
  7750. name: "Back",
  7751. image: {
  7752. source: "./media/characters/starry-aqua/back.svg"
  7753. }
  7754. },
  7755. hand: {
  7756. height: math.unit(9 * 0.1168, "feet"),
  7757. name: "Hand",
  7758. image: {
  7759. source: "./media/characters/starry-aqua/hand.svg"
  7760. }
  7761. },
  7762. foot: {
  7763. height: math.unit(9 * 0.18, "feet"),
  7764. name: "Foot",
  7765. image: {
  7766. source: "./media/characters/starry-aqua/foot.svg"
  7767. }
  7768. }
  7769. },
  7770. [
  7771. {
  7772. name: "Micro",
  7773. height: math.unit(3, "inches")
  7774. },
  7775. {
  7776. name: "Normal",
  7777. height: math.unit(9, "feet")
  7778. },
  7779. {
  7780. name: "Macro",
  7781. height: math.unit(300, "feet"),
  7782. default: true
  7783. },
  7784. {
  7785. name: "Megamacro",
  7786. height: math.unit(3200, "feet")
  7787. }
  7788. ]
  7789. ))
  7790. characterMakers.push(() => makeCharacter(
  7791. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7792. {
  7793. front: {
  7794. height: math.unit(6, "feet"),
  7795. weight: math.unit(230, "lb"),
  7796. name: "Front",
  7797. image: {
  7798. source: "./media/characters/luka/front.svg",
  7799. extra: 1,
  7800. bottom: 0.025
  7801. }
  7802. },
  7803. },
  7804. [
  7805. {
  7806. name: "Normal",
  7807. height: math.unit(12 + 8 / 12, "feet"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Minimacro",
  7812. height: math.unit(20, "feet")
  7813. },
  7814. {
  7815. name: "Macro",
  7816. height: math.unit(250, "feet")
  7817. },
  7818. {
  7819. name: "Megamacro",
  7820. height: math.unit(5, "miles")
  7821. },
  7822. {
  7823. name: "Gigamacro",
  7824. height: math.unit(8000, "miles")
  7825. },
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(6, "feet"),
  7833. weight: math.unit(150, "lb"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/natalie-nightring/front.svg",
  7837. extra: 1,
  7838. bottom: 0.06
  7839. }
  7840. },
  7841. },
  7842. [
  7843. {
  7844. name: "Uh Oh",
  7845. height: math.unit(0.1, "mm")
  7846. },
  7847. {
  7848. name: "Small",
  7849. height: math.unit(3, "inches")
  7850. },
  7851. {
  7852. name: "Human Scale",
  7853. height: math.unit(6, "feet")
  7854. },
  7855. {
  7856. name: "Librarian",
  7857. height: math.unit(50, "feet"),
  7858. default: true
  7859. },
  7860. {
  7861. name: "Immense",
  7862. height: math.unit(200, "miles")
  7863. },
  7864. ]
  7865. ))
  7866. characterMakers.push(() => makeCharacter(
  7867. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  7868. {
  7869. front: {
  7870. height: math.unit(6, "feet"),
  7871. weight: math.unit(180, "lbs"),
  7872. name: "Front",
  7873. image: {
  7874. source: "./media/characters/danni-rosie/front.svg",
  7875. extra: 1260 / 1128,
  7876. bottom: 0.022
  7877. }
  7878. },
  7879. },
  7880. [
  7881. {
  7882. name: "Micro",
  7883. height: math.unit(2, "inches"),
  7884. default: true
  7885. },
  7886. ]
  7887. ))
  7888. characterMakers.push(() => makeCharacter(
  7889. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  7890. {
  7891. front: {
  7892. height: math.unit(5 + 9 / 12, "feet"),
  7893. weight: math.unit(220, "lb"),
  7894. name: "Front",
  7895. image: {
  7896. source: "./media/characters/samantha-kruse/front.svg",
  7897. extra: (985 / 935),
  7898. bottom: 0.03
  7899. }
  7900. },
  7901. frontUndressed: {
  7902. height: math.unit(5 + 9 / 12, "feet"),
  7903. weight: math.unit(220, "lb"),
  7904. name: "Front (Undressed)",
  7905. image: {
  7906. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7907. extra: (973 / 923),
  7908. bottom: 0.025
  7909. }
  7910. },
  7911. fat: {
  7912. height: math.unit(5 + 9 / 12, "feet"),
  7913. weight: math.unit(900, "lb"),
  7914. name: "Front (Fat)",
  7915. image: {
  7916. source: "./media/characters/samantha-kruse/fat.svg",
  7917. extra: 2688 / 2561
  7918. }
  7919. },
  7920. },
  7921. [
  7922. {
  7923. name: "Normal",
  7924. height: math.unit(5 + 9 / 12, "feet"),
  7925. default: true
  7926. }
  7927. ]
  7928. ))
  7929. characterMakers.push(() => makeCharacter(
  7930. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  7931. {
  7932. back: {
  7933. height: math.unit(5 + 4 / 12, "feet"),
  7934. weight: math.unit(4963, "lb"),
  7935. name: "Back",
  7936. image: {
  7937. source: "./media/characters/amelia-rosie/back.svg",
  7938. extra: 1113 / 963,
  7939. bottom: 0.01
  7940. }
  7941. },
  7942. },
  7943. [
  7944. {
  7945. name: "Level 0",
  7946. height: math.unit(5 + 4 / 12, "feet")
  7947. },
  7948. {
  7949. name: "Level 1",
  7950. height: math.unit(164597, "feet"),
  7951. default: true
  7952. },
  7953. {
  7954. name: "Level 2",
  7955. height: math.unit(956243, "miles")
  7956. },
  7957. {
  7958. name: "Level 3",
  7959. height: math.unit(29421709423, "miles")
  7960. },
  7961. {
  7962. name: "Level 4",
  7963. height: math.unit(154, "lightyears")
  7964. },
  7965. {
  7966. name: "Level 5",
  7967. height: math.unit(4738272, "lightyears")
  7968. },
  7969. {
  7970. name: "Level 6",
  7971. height: math.unit(145787152896, "lightyears")
  7972. },
  7973. ]
  7974. ))
  7975. characterMakers.push(() => makeCharacter(
  7976. { name: "Rook Kitara", species: ["mammal"], tags: ["anthro"] },
  7977. {
  7978. front: {
  7979. height: math.unit(5 + 11 / 12, "feet"),
  7980. weight: math.unit(65, "kg"),
  7981. name: "Front",
  7982. image: {
  7983. source: "./media/characters/rook-kitara/front.svg",
  7984. extra: 1347 / 1274,
  7985. bottom: 0.005
  7986. }
  7987. },
  7988. },
  7989. [
  7990. {
  7991. name: "Totally Unfair",
  7992. height: math.unit(1.8, "mm")
  7993. },
  7994. {
  7995. name: "Lap Rookie",
  7996. height: math.unit(1.4, "feet")
  7997. },
  7998. {
  7999. name: "Normal",
  8000. height: math.unit(5 + 11 / 12, "feet"),
  8001. default: true
  8002. },
  8003. {
  8004. name: "How Did This Happen",
  8005. height: math.unit(80, "miles")
  8006. }
  8007. ]
  8008. ))
  8009. characterMakers.push(() => makeCharacter(
  8010. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8011. {
  8012. front: {
  8013. height: math.unit(7, "feet"),
  8014. weight: math.unit(300, "lb"),
  8015. name: "Front",
  8016. image: {
  8017. source: "./media/characters/pisces/front.svg",
  8018. extra: 2255 / 2115,
  8019. bottom: 0.03
  8020. }
  8021. },
  8022. back: {
  8023. height: math.unit(7, "feet"),
  8024. weight: math.unit(300, "lb"),
  8025. name: "Back",
  8026. image: {
  8027. source: "./media/characters/pisces/back.svg",
  8028. extra: 2146 / 2055,
  8029. bottom: 0.04
  8030. }
  8031. },
  8032. },
  8033. [
  8034. {
  8035. name: "Normal",
  8036. height: math.unit(7, "feet"),
  8037. default: true
  8038. },
  8039. {
  8040. name: "Swimming Pool",
  8041. height: math.unit(12.2, "meters")
  8042. },
  8043. {
  8044. name: "Olympic Swimming Pool",
  8045. height: math.unit(56.3, "meters")
  8046. },
  8047. {
  8048. name: "Lake Superior",
  8049. height: math.unit(93900, "meters")
  8050. },
  8051. {
  8052. name: "Mediterranean Sea",
  8053. height: math.unit(644457, "meters")
  8054. },
  8055. {
  8056. name: "World's Oceans",
  8057. height: math.unit(4567491, "meters")
  8058. },
  8059. ]
  8060. ))
  8061. characterMakers.push(() => makeCharacter(
  8062. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8063. {
  8064. front: {
  8065. height: math.unit(2.3, "meters"),
  8066. weight: math.unit(120, "kg"),
  8067. name: "Front",
  8068. image: {
  8069. source: "./media/characters/zelas/front.svg"
  8070. }
  8071. },
  8072. side: {
  8073. height: math.unit(2.3, "meters"),
  8074. weight: math.unit(120, "kg"),
  8075. name: "Side",
  8076. image: {
  8077. source: "./media/characters/zelas/side.svg"
  8078. }
  8079. },
  8080. back: {
  8081. height: math.unit(2.3, "meters"),
  8082. weight: math.unit(120, "kg"),
  8083. name: "Back",
  8084. image: {
  8085. source: "./media/characters/zelas/back.svg"
  8086. }
  8087. },
  8088. foot: {
  8089. height: math.unit(1.116, "feet"),
  8090. name: "Foot",
  8091. image: {
  8092. source: "./media/characters/zelas/foot.svg"
  8093. }
  8094. },
  8095. },
  8096. [
  8097. {
  8098. name: "Normal",
  8099. height: math.unit(2.3, "meters")
  8100. },
  8101. {
  8102. name: "Macro",
  8103. height: math.unit(30, "meters"),
  8104. default: true
  8105. },
  8106. ]
  8107. ))
  8108. characterMakers.push(() => makeCharacter(
  8109. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8110. {
  8111. front: {
  8112. height: math.unit(1, "inch"),
  8113. weight: math.unit(0.21, "grams"),
  8114. name: "Front",
  8115. image: {
  8116. source: "./media/characters/talbot/front.svg",
  8117. extra: 594 / 544
  8118. }
  8119. },
  8120. },
  8121. [
  8122. {
  8123. name: "Micro",
  8124. height: math.unit(1, "inch"),
  8125. default: true
  8126. },
  8127. ]
  8128. ))
  8129. characterMakers.push(() => makeCharacter(
  8130. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8131. {
  8132. front: {
  8133. height: math.unit(3 + 3 / 12, "feet"),
  8134. weight: math.unit(51.8, "lb"),
  8135. name: "Front",
  8136. image: {
  8137. source: "./media/characters/fliss/front.svg",
  8138. extra: 840 / 640
  8139. }
  8140. },
  8141. },
  8142. [
  8143. {
  8144. name: "Teeny Tiny",
  8145. height: math.unit(1, "mm")
  8146. },
  8147. {
  8148. name: "Small",
  8149. height: math.unit(1, "inch"),
  8150. default: true
  8151. },
  8152. {
  8153. name: "Standard Sylveon",
  8154. height: math.unit(3 + 3 / 12, "feet")
  8155. },
  8156. {
  8157. name: "Large Nuisance",
  8158. height: math.unit(33, "feet")
  8159. },
  8160. {
  8161. name: "City Filler",
  8162. height: math.unit(3000, "feet")
  8163. },
  8164. {
  8165. name: "New Horizon",
  8166. height: math.unit(6000, "miles")
  8167. },
  8168. ]
  8169. ))
  8170. characterMakers.push(() => makeCharacter(
  8171. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8172. {
  8173. front: {
  8174. height: math.unit(5, "cm"),
  8175. weight: math.unit(1.94, "g"),
  8176. name: "Front",
  8177. image: {
  8178. source: "./media/characters/fleta/front.svg",
  8179. extra: 835 / 803
  8180. }
  8181. },
  8182. back: {
  8183. height: math.unit(5, "cm"),
  8184. weight: math.unit(1.94, "g"),
  8185. name: "Back",
  8186. image: {
  8187. source: "./media/characters/fleta/back.svg",
  8188. extra: 835 / 803
  8189. }
  8190. },
  8191. },
  8192. [
  8193. {
  8194. name: "Micro",
  8195. height: math.unit(5, "cm"),
  8196. default: true
  8197. },
  8198. ]
  8199. ))
  8200. characterMakers.push(() => makeCharacter(
  8201. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8202. {
  8203. front: {
  8204. height: math.unit(6, "feet"),
  8205. weight: math.unit(225, "lb"),
  8206. name: "Front",
  8207. image: {
  8208. source: "./media/characters/dominic/front.svg",
  8209. extra: 1770 / 1620,
  8210. bottom: 0.025
  8211. }
  8212. },
  8213. back: {
  8214. height: math.unit(6, "feet"),
  8215. weight: math.unit(225, "lb"),
  8216. name: "Back",
  8217. image: {
  8218. source: "./media/characters/dominic/back.svg",
  8219. extra: 1745 / 1620,
  8220. bottom: 0.065
  8221. }
  8222. },
  8223. },
  8224. [
  8225. {
  8226. name: "Nano",
  8227. height: math.unit(0.1, "mm")
  8228. },
  8229. {
  8230. name: "Micro-",
  8231. height: math.unit(1, "mm")
  8232. },
  8233. {
  8234. name: "Micro",
  8235. height: math.unit(4, "inches")
  8236. },
  8237. {
  8238. name: "Normal",
  8239. height: math.unit(6 + 4 / 12, "feet"),
  8240. default: true
  8241. },
  8242. {
  8243. name: "Macro",
  8244. height: math.unit(115, "feet")
  8245. },
  8246. {
  8247. name: "Macro+",
  8248. height: math.unit(955, "feet")
  8249. },
  8250. {
  8251. name: "Megamacro",
  8252. height: math.unit(8990, "feet")
  8253. },
  8254. {
  8255. name: "Gigmacro",
  8256. height: math.unit(9310, "miles")
  8257. },
  8258. {
  8259. name: "Teramacro",
  8260. height: math.unit(1567005010, "miles")
  8261. },
  8262. {
  8263. name: "Examacro",
  8264. height: math.unit(1425, "parsecs")
  8265. },
  8266. ]
  8267. ))
  8268. characterMakers.push(() => makeCharacter(
  8269. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8270. {
  8271. front: {
  8272. height: math.unit(400, "feet"),
  8273. weight: math.unit(44444444, "lb"),
  8274. name: "Front",
  8275. image: {
  8276. source: "./media/characters/major-colonel/front.svg"
  8277. }
  8278. },
  8279. back: {
  8280. height: math.unit(400, "feet"),
  8281. weight: math.unit(44444444, "lb"),
  8282. name: "Back",
  8283. image: {
  8284. source: "./media/characters/major-colonel/back.svg"
  8285. }
  8286. },
  8287. },
  8288. [
  8289. {
  8290. name: "Macro",
  8291. height: math.unit(400, "feet"),
  8292. default: true
  8293. },
  8294. ]
  8295. ))
  8296. characterMakers.push(() => makeCharacter(
  8297. { name: "Axel Lycan", species: ["cat"], tags: ["anthro"] },
  8298. {
  8299. front: {
  8300. height: math.unit(6, "feet"),
  8301. weight: math.unit(120, "lb"),
  8302. name: "Front",
  8303. image: {
  8304. source: "./media/characters/axel-lycan/front.svg",
  8305. extra: 1,
  8306. bottom: 0.08
  8307. }
  8308. },
  8309. },
  8310. [
  8311. {
  8312. name: "Macro",
  8313. height: math.unit(1, "km"),
  8314. default: true
  8315. },
  8316. ]
  8317. ))
  8318. characterMakers.push(() => makeCharacter(
  8319. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8320. {
  8321. front: {
  8322. height: math.unit(5 + 9 / 12, "feet"),
  8323. weight: math.unit(175, "lb"),
  8324. name: "Front",
  8325. image: {
  8326. source: "./media/characters/vanrel-hyena/front.svg",
  8327. extra: 1086 / 1010,
  8328. bottom: 0.04
  8329. }
  8330. },
  8331. },
  8332. [
  8333. {
  8334. name: "Normal",
  8335. height: math.unit(5 + 9 / 12, "feet"),
  8336. default: true
  8337. },
  8338. ]
  8339. ))
  8340. characterMakers.push(() => makeCharacter(
  8341. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8342. {
  8343. front: {
  8344. height: math.unit(6, "feet"),
  8345. weight: math.unit(103, "lb"),
  8346. name: "Front",
  8347. image: {
  8348. source: "./media/characters/abbott-absol/front.svg",
  8349. extra: 2010 / 1842
  8350. }
  8351. },
  8352. },
  8353. [
  8354. {
  8355. name: "Megamicro",
  8356. height: math.unit(0.1, "mm")
  8357. },
  8358. {
  8359. name: "Micro",
  8360. height: math.unit(1, "inch")
  8361. },
  8362. {
  8363. name: "Normal",
  8364. height: math.unit(6, "feet"),
  8365. default: true
  8366. },
  8367. ]
  8368. ))
  8369. characterMakers.push(() => makeCharacter(
  8370. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8371. {
  8372. front: {
  8373. height: math.unit(6, "feet"),
  8374. weight: math.unit(264, "lb"),
  8375. name: "Front",
  8376. image: {
  8377. source: "./media/characters/hector/front.svg",
  8378. extra: 2280 / 2130,
  8379. bottom: 0.07
  8380. }
  8381. },
  8382. },
  8383. [
  8384. {
  8385. name: "Normal",
  8386. height: math.unit(12.25, "foot"),
  8387. default: true
  8388. },
  8389. {
  8390. name: "Macro",
  8391. height: math.unit(160, "feet")
  8392. },
  8393. ]
  8394. ))
  8395. characterMakers.push(() => makeCharacter(
  8396. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8397. {
  8398. front: {
  8399. height: math.unit(6, "feet"),
  8400. weight: math.unit(150, "lb"),
  8401. name: "Front",
  8402. image: {
  8403. source: "./media/characters/sal/front.svg",
  8404. extra: 1846 / 1699,
  8405. bottom: 0.04
  8406. }
  8407. },
  8408. },
  8409. [
  8410. {
  8411. name: "Megamacro",
  8412. height: math.unit(10, "miles"),
  8413. default: true
  8414. },
  8415. ]
  8416. ))
  8417. characterMakers.push(() => makeCharacter(
  8418. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8419. {
  8420. front: {
  8421. height: math.unit(3, "meters"),
  8422. weight: math.unit(450, "kg"),
  8423. name: "front",
  8424. image: {
  8425. source: "./media/characters/ranger/front.svg",
  8426. extra: 2401 / 2243,
  8427. bottom: 0.05
  8428. }
  8429. },
  8430. },
  8431. [
  8432. {
  8433. name: "Normal",
  8434. height: math.unit(3, "meters"),
  8435. default: true
  8436. },
  8437. ]
  8438. ))
  8439. characterMakers.push(() => makeCharacter(
  8440. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8441. {
  8442. front: {
  8443. height: math.unit(14, "feet"),
  8444. weight: math.unit(800, "kg"),
  8445. name: "Front",
  8446. image: {
  8447. source: "./media/characters/theresa/front.svg",
  8448. extra: 3575 / 3346,
  8449. bottom: 0.03
  8450. }
  8451. },
  8452. },
  8453. [
  8454. {
  8455. name: "Normal",
  8456. height: math.unit(14, "feet"),
  8457. default: true
  8458. },
  8459. ]
  8460. ))
  8461. characterMakers.push(() => makeCharacter(
  8462. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8463. {
  8464. front: {
  8465. height: math.unit(6, "feet"),
  8466. weight: math.unit(3, "kg"),
  8467. name: "Front",
  8468. image: {
  8469. source: "./media/characters/ine/front.svg",
  8470. extra: 678 / 539,
  8471. bottom: 0.023
  8472. }
  8473. },
  8474. },
  8475. [
  8476. {
  8477. name: "Normal",
  8478. height: math.unit(2.265, "feet"),
  8479. default: true
  8480. },
  8481. ]
  8482. ))
  8483. characterMakers.push(() => makeCharacter(
  8484. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8485. {
  8486. front: {
  8487. height: math.unit(5, "feet"),
  8488. weight: math.unit(30, "kg"),
  8489. name: "Front",
  8490. image: {
  8491. source: "./media/characters/vial/front.svg",
  8492. extra: 1365 / 1277,
  8493. bottom: 0.04
  8494. }
  8495. },
  8496. },
  8497. [
  8498. {
  8499. name: "Normal",
  8500. height: math.unit(5, "feet"),
  8501. default: true
  8502. },
  8503. ]
  8504. ))
  8505. characterMakers.push(() => makeCharacter(
  8506. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8507. {
  8508. side: {
  8509. height: math.unit(3.4, "meters"),
  8510. weight: math.unit(1000, "lb"),
  8511. name: "Side",
  8512. image: {
  8513. source: "./media/characters/rovoska/side.svg",
  8514. extra: 4403 / 1515
  8515. }
  8516. },
  8517. },
  8518. [
  8519. {
  8520. name: "Normal",
  8521. height: math.unit(3.4, "meters"),
  8522. default: true
  8523. },
  8524. ]
  8525. ))
  8526. characterMakers.push(() => makeCharacter(
  8527. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8528. {
  8529. front: {
  8530. height: math.unit(8, "feet"),
  8531. weight: math.unit(315, "lb"),
  8532. name: "Front",
  8533. image: {
  8534. source: "./media/characters/gunner-rotthbauer/front.svg"
  8535. }
  8536. },
  8537. back: {
  8538. height: math.unit(8, "feet"),
  8539. weight: math.unit(315, "lb"),
  8540. name: "Back",
  8541. image: {
  8542. source: "./media/characters/gunner-rotthbauer/back.svg"
  8543. }
  8544. },
  8545. },
  8546. [
  8547. {
  8548. name: "Micro",
  8549. height: math.unit(3.5, "inches")
  8550. },
  8551. {
  8552. name: "Normal",
  8553. height: math.unit(8, "feet"),
  8554. default: true
  8555. },
  8556. {
  8557. name: "Macro",
  8558. height: math.unit(250, "feet")
  8559. },
  8560. {
  8561. name: "Megamacro",
  8562. height: math.unit(1, "AU")
  8563. },
  8564. ]
  8565. ))
  8566. characterMakers.push(() => makeCharacter(
  8567. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8568. {
  8569. front: {
  8570. height: math.unit(5 + 5 / 12, "feet"),
  8571. weight: math.unit(140, "lb"),
  8572. name: "Front",
  8573. image: {
  8574. source: "./media/characters/allatia/front.svg",
  8575. extra: 1227 / 1180,
  8576. bottom: 0.027
  8577. }
  8578. },
  8579. },
  8580. [
  8581. {
  8582. name: "Normal",
  8583. height: math.unit(5 + 5 / 12, "feet")
  8584. },
  8585. {
  8586. name: "Macro",
  8587. height: math.unit(250, "feet"),
  8588. default: true
  8589. },
  8590. {
  8591. name: "Megamacro",
  8592. height: math.unit(8, "miles")
  8593. }
  8594. ]
  8595. ))
  8596. characterMakers.push(() => makeCharacter(
  8597. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8598. {
  8599. front: {
  8600. height: math.unit(6, "feet"),
  8601. weight: math.unit(120, "lb"),
  8602. name: "Front",
  8603. image: {
  8604. source: "./media/characters/tene/front.svg",
  8605. extra: 1728 / 1578,
  8606. bottom: 0.022
  8607. }
  8608. },
  8609. stomping: {
  8610. height: math.unit(2.025, "meters"),
  8611. weight: math.unit(120, "lb"),
  8612. name: "Stomping",
  8613. image: {
  8614. source: "./media/characters/tene/stomping.svg",
  8615. extra: 938 / 873,
  8616. bottom: 0.01
  8617. }
  8618. },
  8619. sitting: {
  8620. height: math.unit(1, "meter"),
  8621. weight: math.unit(120, "lb"),
  8622. name: "Sitting",
  8623. image: {
  8624. source: "./media/characters/tene/sitting.svg",
  8625. extra: 437 / 415,
  8626. bottom: 0.1
  8627. }
  8628. },
  8629. feral: {
  8630. height: math.unit(3.9, "feet"),
  8631. weight: math.unit(250, "lb"),
  8632. name: "Feral",
  8633. image: {
  8634. source: "./media/characters/tene/feral.svg",
  8635. extra: 717 / 458,
  8636. bottom: 0.179
  8637. }
  8638. },
  8639. },
  8640. [
  8641. {
  8642. name: "Normal",
  8643. height: math.unit(6, "feet")
  8644. },
  8645. {
  8646. name: "Macro",
  8647. height: math.unit(300, "feet"),
  8648. default: true
  8649. },
  8650. {
  8651. name: "Megamacro",
  8652. height: math.unit(5, "miles")
  8653. },
  8654. ]
  8655. ))
  8656. characterMakers.push(() => makeCharacter(
  8657. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8658. {
  8659. side: {
  8660. height: math.unit(6, "feet"),
  8661. name: "Side",
  8662. image: {
  8663. source: "./media/characters/evander/side.svg",
  8664. extra: 877 / 477
  8665. }
  8666. },
  8667. },
  8668. [
  8669. {
  8670. name: "Normal",
  8671. height: math.unit(0.83, "meters"),
  8672. default: true
  8673. },
  8674. ]
  8675. ))
  8676. characterMakers.push(() => makeCharacter(
  8677. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8678. {
  8679. front: {
  8680. height: math.unit(12, "feet"),
  8681. weight: math.unit(1000, "lb"),
  8682. name: "Front",
  8683. image: {
  8684. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8685. extra: 1762 / 1611
  8686. }
  8687. },
  8688. back: {
  8689. height: math.unit(12, "feet"),
  8690. weight: math.unit(1000, "lb"),
  8691. name: "Back",
  8692. image: {
  8693. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8694. extra: 1762 / 1611
  8695. }
  8696. },
  8697. },
  8698. [
  8699. {
  8700. name: "Normal",
  8701. height: math.unit(12, "feet"),
  8702. default: true
  8703. },
  8704. {
  8705. name: "Kaiju",
  8706. height: math.unit(150, "feet")
  8707. },
  8708. ]
  8709. ))
  8710. characterMakers.push(() => makeCharacter(
  8711. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8712. {
  8713. front: {
  8714. height: math.unit(6, "feet"),
  8715. weight: math.unit(150, "lb"),
  8716. name: "Front",
  8717. image: {
  8718. source: "./media/characters/zero-alurus/front.svg"
  8719. }
  8720. },
  8721. back: {
  8722. height: math.unit(6, "feet"),
  8723. weight: math.unit(150, "lb"),
  8724. name: "Back",
  8725. image: {
  8726. source: "./media/characters/zero-alurus/back.svg"
  8727. }
  8728. },
  8729. },
  8730. [
  8731. {
  8732. name: "Normal",
  8733. height: math.unit(5 + 10 / 12, "feet")
  8734. },
  8735. {
  8736. name: "Macro",
  8737. height: math.unit(60, "feet"),
  8738. default: true
  8739. },
  8740. {
  8741. name: "Macro+",
  8742. height: math.unit(450, "feet")
  8743. },
  8744. ]
  8745. ))
  8746. characterMakers.push(() => makeCharacter(
  8747. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8748. {
  8749. front: {
  8750. height: math.unit(6, "feet"),
  8751. weight: math.unit(200, "lb"),
  8752. name: "Front",
  8753. image: {
  8754. source: "./media/characters/mega-shi/front.svg",
  8755. extra: 1279 / 1250,
  8756. bottom: 0.02
  8757. }
  8758. },
  8759. back: {
  8760. height: math.unit(6, "feet"),
  8761. weight: math.unit(200, "lb"),
  8762. name: "Back",
  8763. image: {
  8764. source: "./media/characters/mega-shi/back.svg",
  8765. extra: 1279 / 1250,
  8766. bottom: 0.02
  8767. }
  8768. },
  8769. },
  8770. [
  8771. {
  8772. name: "Micro",
  8773. height: math.unit(16 + 6 / 12, "feet")
  8774. },
  8775. {
  8776. name: "Third Dimension",
  8777. height: math.unit(40, "meters")
  8778. },
  8779. {
  8780. name: "Normal",
  8781. height: math.unit(660, "feet"),
  8782. default: true
  8783. },
  8784. {
  8785. name: "Megamacro",
  8786. height: math.unit(10, "miles")
  8787. },
  8788. {
  8789. name: "Planetary Launch",
  8790. height: math.unit(500, "miles")
  8791. },
  8792. {
  8793. name: "Interstellar",
  8794. height: math.unit(1e9, "miles")
  8795. },
  8796. {
  8797. name: "Leaving the Universe",
  8798. height: math.unit(1, "gigaparsec")
  8799. },
  8800. {
  8801. name: "Travelling Universes",
  8802. height: math.unit(30e15, "parsecs")
  8803. },
  8804. ]
  8805. ))
  8806. characterMakers.push(() => makeCharacter(
  8807. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8808. {
  8809. front: {
  8810. height: math.unit(6, "feet"),
  8811. weight: math.unit(150, "lb"),
  8812. name: "Front",
  8813. image: {
  8814. source: "./media/characters/odyssey/front.svg",
  8815. extra: 1782 / 1582,
  8816. bottom: 0.01
  8817. }
  8818. },
  8819. side: {
  8820. height: math.unit(5.7, "feet"),
  8821. weight: math.unit(140, "lb"),
  8822. name: "Side",
  8823. image: {
  8824. source: "./media/characters/odyssey/side.svg",
  8825. extra: 6462 / 5700
  8826. }
  8827. },
  8828. },
  8829. [
  8830. {
  8831. name: "Normal",
  8832. height: math.unit(5 + 4 / 12, "feet")
  8833. },
  8834. {
  8835. name: "Macro",
  8836. height: math.unit(1, "km")
  8837. },
  8838. {
  8839. name: "Megamacro",
  8840. height: math.unit(3000, "km")
  8841. },
  8842. {
  8843. name: "Gigamacro",
  8844. height: math.unit(1, "AU"),
  8845. default: true
  8846. },
  8847. {
  8848. name: "Omniversal",
  8849. height: math.unit(100e14, "lightyears")
  8850. },
  8851. ]
  8852. ))
  8853. characterMakers.push(() => makeCharacter(
  8854. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  8855. {
  8856. front: {
  8857. height: math.unit(6, "feet"),
  8858. weight: math.unit(300, "lb"),
  8859. name: "Front",
  8860. image: {
  8861. source: "./media/characters/mekuto/front.svg",
  8862. extra: 921 / 832,
  8863. bottom: 0.03
  8864. }
  8865. },
  8866. hand: {
  8867. height: math.unit(6 / 10.24, "feet"),
  8868. name: "Hand",
  8869. image: {
  8870. source: "./media/characters/mekuto/hand.svg"
  8871. }
  8872. },
  8873. foot: {
  8874. height: math.unit(6 / 5.05, "feet"),
  8875. name: "Foot",
  8876. image: {
  8877. source: "./media/characters/mekuto/foot.svg"
  8878. }
  8879. },
  8880. },
  8881. [
  8882. {
  8883. name: "Minimicro",
  8884. height: math.unit(0.2, "inches")
  8885. },
  8886. {
  8887. name: "Micro",
  8888. height: math.unit(1.5, "inches")
  8889. },
  8890. {
  8891. name: "Normal",
  8892. height: math.unit(5 + 11 / 12, "feet"),
  8893. default: true
  8894. },
  8895. {
  8896. name: "Minimacro",
  8897. height: math.unit(17 + 9 / 12, "feet")
  8898. },
  8899. {
  8900. name: "Macro",
  8901. height: math.unit(177.5, "feet")
  8902. },
  8903. {
  8904. name: "Megamacro",
  8905. height: math.unit(152, "miles")
  8906. },
  8907. ]
  8908. ))
  8909. characterMakers.push(() => makeCharacter(
  8910. { name: "Dafydd Tomos", species: ["unknown"], tags: ["anthro"] },
  8911. {
  8912. front: {
  8913. height: math.unit(6.5, "inches"),
  8914. weight: math.unit(13, "oz"),
  8915. name: "Front",
  8916. image: {
  8917. source: "./media/characters/dafydd-tomos/front.svg",
  8918. extra: 2990 / 2603,
  8919. bottom: 0.03
  8920. }
  8921. },
  8922. },
  8923. [
  8924. {
  8925. name: "Micro",
  8926. height: math.unit(6.5, "inches"),
  8927. default: true
  8928. },
  8929. ]
  8930. ))
  8931. characterMakers.push(() => makeCharacter(
  8932. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  8933. {
  8934. front: {
  8935. height: math.unit(6, "feet"),
  8936. weight: math.unit(150, "lb"),
  8937. name: "Front",
  8938. image: {
  8939. source: "./media/characters/splinter/front.svg",
  8940. extra: 2990 / 2882,
  8941. bottom: 0.04
  8942. }
  8943. },
  8944. back: {
  8945. height: math.unit(6, "feet"),
  8946. weight: math.unit(150, "lb"),
  8947. name: "Back",
  8948. image: {
  8949. source: "./media/characters/splinter/back.svg",
  8950. extra: 2990 / 2882,
  8951. bottom: 0.04
  8952. }
  8953. },
  8954. },
  8955. [
  8956. {
  8957. name: "Normal",
  8958. height: math.unit(6, "feet")
  8959. },
  8960. {
  8961. name: "Macro",
  8962. height: math.unit(230, "meters"),
  8963. default: true
  8964. },
  8965. ]
  8966. ))
  8967. characterMakers.push(() => makeCharacter(
  8968. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  8969. {
  8970. front: {
  8971. height: math.unit(4 + 10 / 12, "feet"),
  8972. weight: math.unit(480, "lb"),
  8973. name: "Front",
  8974. image: {
  8975. source: "./media/characters/snow-gabumon/front.svg",
  8976. extra: 1140 / 963,
  8977. bottom: 0.058
  8978. }
  8979. },
  8980. back: {
  8981. height: math.unit(4 + 10 / 12, "feet"),
  8982. weight: math.unit(480, "lb"),
  8983. name: "Back",
  8984. image: {
  8985. source: "./media/characters/snow-gabumon/back.svg",
  8986. extra: 1115 / 962,
  8987. bottom: 0.041
  8988. }
  8989. },
  8990. frontUndresed: {
  8991. height: math.unit(4 + 10 / 12, "feet"),
  8992. weight: math.unit(480, "lb"),
  8993. name: "Front (Undressed)",
  8994. image: {
  8995. source: "./media/characters/snow-gabumon/front-undressed.svg",
  8996. extra: 1061 / 960,
  8997. bottom: 0.045
  8998. }
  8999. },
  9000. },
  9001. [
  9002. {
  9003. name: "Micro",
  9004. height: math.unit(1, "inch")
  9005. },
  9006. {
  9007. name: "Normal",
  9008. height: math.unit(4 + 10 / 12, "feet"),
  9009. default: true
  9010. },
  9011. {
  9012. name: "Macro",
  9013. height: math.unit(200, "feet")
  9014. },
  9015. {
  9016. name: "Megamacro",
  9017. height: math.unit(120, "miles")
  9018. },
  9019. {
  9020. name: "Gigamacro",
  9021. height: math.unit(9800, "miles")
  9022. },
  9023. ]
  9024. ))
  9025. characterMakers.push(() => makeCharacter(
  9026. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9027. {
  9028. front: {
  9029. height: math.unit(1.7, "meters"),
  9030. weight: math.unit(140, "lb"),
  9031. name: "Front",
  9032. image: {
  9033. source: "./media/characters/moody/front.svg",
  9034. extra: 3226 / 3007,
  9035. bottom: 0.087
  9036. }
  9037. },
  9038. },
  9039. [
  9040. {
  9041. name: "Micro",
  9042. height: math.unit(1, "mm")
  9043. },
  9044. {
  9045. name: "Normal",
  9046. height: math.unit(1.7, "meters"),
  9047. default: true
  9048. },
  9049. {
  9050. name: "Macro",
  9051. height: math.unit(80, "meters")
  9052. },
  9053. {
  9054. name: "Macro+",
  9055. height: math.unit(500, "meters")
  9056. },
  9057. ]
  9058. ))
  9059. characterMakers.push(() => makeCharacter(
  9060. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9061. {
  9062. front: {
  9063. height: math.unit(6, "feet"),
  9064. weight: math.unit(150, "lb"),
  9065. name: "Front",
  9066. image: {
  9067. source: "./media/characters/zyas/front.svg",
  9068. extra: 1180 / 1120,
  9069. bottom: 0.045
  9070. }
  9071. },
  9072. },
  9073. [
  9074. {
  9075. name: "Normal",
  9076. height: math.unit(10, "feet"),
  9077. default: true
  9078. },
  9079. {
  9080. name: "Macro",
  9081. height: math.unit(500, "feet")
  9082. },
  9083. {
  9084. name: "Megamacro",
  9085. height: math.unit(5, "miles")
  9086. },
  9087. {
  9088. name: "Teramacro",
  9089. height: math.unit(150000, "miles")
  9090. },
  9091. ]
  9092. ))
  9093. characterMakers.push(() => makeCharacter(
  9094. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9095. {
  9096. front: {
  9097. height: math.unit(6, "feet"),
  9098. weight: math.unit(150, "lb"),
  9099. name: "Front",
  9100. image: {
  9101. source: "./media/characters/cuon/front.svg",
  9102. extra: 1390 / 1320,
  9103. bottom: 0.008
  9104. }
  9105. },
  9106. },
  9107. [
  9108. {
  9109. name: "Micro",
  9110. height: math.unit(3, "inches")
  9111. },
  9112. {
  9113. name: "Normal",
  9114. height: math.unit(18 + 9 / 12, "feet"),
  9115. default: true
  9116. },
  9117. {
  9118. name: "Macro",
  9119. height: math.unit(360, "feet")
  9120. },
  9121. {
  9122. name: "Megamacro",
  9123. height: math.unit(360, "miles")
  9124. },
  9125. ]
  9126. ))
  9127. characterMakers.push(() => makeCharacter(
  9128. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9129. {
  9130. front: {
  9131. height: math.unit(2.4, "meters"),
  9132. weight: math.unit(70, "kg"),
  9133. name: "Front",
  9134. image: {
  9135. source: "./media/characters/nyanuxk/front.svg",
  9136. extra: 1172 / 1084,
  9137. bottom: 0.065
  9138. }
  9139. },
  9140. side: {
  9141. height: math.unit(2.4, "meters"),
  9142. weight: math.unit(70, "kg"),
  9143. name: "Side",
  9144. image: {
  9145. source: "./media/characters/nyanuxk/side.svg",
  9146. extra: 1190 / 1132,
  9147. bottom: 0.007
  9148. }
  9149. },
  9150. back: {
  9151. height: math.unit(2.4, "meters"),
  9152. weight: math.unit(70, "kg"),
  9153. name: "Back",
  9154. image: {
  9155. source: "./media/characters/nyanuxk/back.svg",
  9156. extra: 1200 / 1141,
  9157. bottom: 0.015
  9158. }
  9159. },
  9160. foot: {
  9161. height: math.unit(0.52, "meters"),
  9162. name: "Foot",
  9163. image: {
  9164. source: "./media/characters/nyanuxk/foot.svg"
  9165. }
  9166. },
  9167. },
  9168. [
  9169. {
  9170. name: "Micro",
  9171. height: math.unit(2, "cm")
  9172. },
  9173. {
  9174. name: "Normal",
  9175. height: math.unit(2.4, "meters"),
  9176. default: true
  9177. },
  9178. {
  9179. name: "Smaller Macro",
  9180. height: math.unit(120, "meters")
  9181. },
  9182. {
  9183. name: "Bigger Macro",
  9184. height: math.unit(1.2, "km")
  9185. },
  9186. {
  9187. name: "Megamacro",
  9188. height: math.unit(15, "kilometers")
  9189. },
  9190. {
  9191. name: "Gigamacro",
  9192. height: math.unit(2000, "km")
  9193. },
  9194. {
  9195. name: "Teramacro",
  9196. height: math.unit(500000, "km")
  9197. },
  9198. ]
  9199. ))
  9200. characterMakers.push(() => makeCharacter(
  9201. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9202. {
  9203. side: {
  9204. height: math.unit(6, "feet"),
  9205. name: "Side",
  9206. image: {
  9207. source: "./media/characters/ailbhe/side.svg",
  9208. extra: 757 / 464,
  9209. bottom: 0.041
  9210. }
  9211. },
  9212. },
  9213. [
  9214. {
  9215. name: "Normal",
  9216. height: math.unit(1.07, "meters"),
  9217. default: true
  9218. },
  9219. ]
  9220. ))
  9221. characterMakers.push(() => makeCharacter(
  9222. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9223. {
  9224. front: {
  9225. height: math.unit(6, "feet"),
  9226. weight: math.unit(120, "kg"),
  9227. name: "Front",
  9228. image: {
  9229. source: "./media/characters/zevulfius/front.svg",
  9230. extra: 965 / 903
  9231. }
  9232. },
  9233. side: {
  9234. height: math.unit(6, "feet"),
  9235. weight: math.unit(120, "kg"),
  9236. name: "Side",
  9237. image: {
  9238. source: "./media/characters/zevulfius/side.svg",
  9239. extra: 939 / 900
  9240. }
  9241. },
  9242. back: {
  9243. height: math.unit(6, "feet"),
  9244. weight: math.unit(120, "kg"),
  9245. name: "Back",
  9246. image: {
  9247. source: "./media/characters/zevulfius/back.svg",
  9248. extra: 918 / 854,
  9249. bottom: 0.005
  9250. }
  9251. },
  9252. foot: {
  9253. height: math.unit(6 / 3.72, "feet"),
  9254. name: "Foot",
  9255. image: {
  9256. source: "./media/characters/zevulfius/foot.svg"
  9257. }
  9258. },
  9259. },
  9260. [
  9261. {
  9262. name: "Macro",
  9263. height: math.unit(750, "meters")
  9264. },
  9265. {
  9266. name: "Megamacro",
  9267. height: math.unit(20, "km"),
  9268. default: true
  9269. },
  9270. {
  9271. name: "Gigamacro",
  9272. height: math.unit(2000, "km")
  9273. },
  9274. {
  9275. name: "Teramacro",
  9276. height: math.unit(250000, "km")
  9277. },
  9278. ]
  9279. ))
  9280. characterMakers.push(() => makeCharacter(
  9281. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9282. {
  9283. front: {
  9284. height: math.unit(100, "feet"),
  9285. weight: math.unit(350, "kg"),
  9286. name: "Front",
  9287. image: {
  9288. source: "./media/characters/rikes/front.svg",
  9289. extra: 1565 / 1483,
  9290. bottom: 0.017
  9291. }
  9292. },
  9293. },
  9294. [
  9295. {
  9296. name: "Macro",
  9297. height: math.unit(100, "feet"),
  9298. default: true
  9299. },
  9300. ]
  9301. ))
  9302. characterMakers.push(() => makeCharacter(
  9303. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9304. {
  9305. anthro: {
  9306. height: math.unit(8, "feet"),
  9307. weight: math.unit(120, "kg"),
  9308. name: "Anthro",
  9309. image: {
  9310. source: "./media/characters/adam-silver-mane/anthro.svg",
  9311. extra: 5743 / 5339,
  9312. bottom: 0.07
  9313. }
  9314. },
  9315. taur: {
  9316. height: math.unit(16, "feet"),
  9317. weight: math.unit(1500, "kg"),
  9318. name: "Taur",
  9319. image: {
  9320. source: "./media/characters/adam-silver-mane/taur.svg",
  9321. extra: 1713 / 1571,
  9322. bottom: 0.01
  9323. }
  9324. },
  9325. },
  9326. [
  9327. {
  9328. name: "Normal",
  9329. height: math.unit(8, "feet")
  9330. },
  9331. {
  9332. name: "Minimacro",
  9333. height: math.unit(80, "feet")
  9334. },
  9335. {
  9336. name: "Macro",
  9337. height: math.unit(800, "feet"),
  9338. default: true
  9339. },
  9340. {
  9341. name: "Megamacro",
  9342. height: math.unit(8000, "feet")
  9343. },
  9344. {
  9345. name: "Gigamacro",
  9346. height: math.unit(800, "miles")
  9347. },
  9348. {
  9349. name: "Teramacro",
  9350. height: math.unit(80000, "miles")
  9351. },
  9352. {
  9353. name: "Celestial",
  9354. height: math.unit(8e6, "miles")
  9355. },
  9356. {
  9357. name: "Star Dragon",
  9358. height: math.unit(800000, "parsecs")
  9359. },
  9360. {
  9361. name: "Godly",
  9362. height: math.unit(800, "teraparsecs")
  9363. },
  9364. ]
  9365. ))
  9366. characterMakers.push(() => makeCharacter(
  9367. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9368. {
  9369. front: {
  9370. height: math.unit(6, "feet"),
  9371. weight: math.unit(150, "lb"),
  9372. name: "Front",
  9373. image: {
  9374. source: "./media/characters/ky'owin/front.svg",
  9375. extra: 3888 / 3068,
  9376. bottom: 0.015
  9377. }
  9378. },
  9379. },
  9380. [
  9381. {
  9382. name: "Normal",
  9383. height: math.unit(6 + 8 / 12, "feet")
  9384. },
  9385. {
  9386. name: "Large",
  9387. height: math.unit(68, "feet")
  9388. },
  9389. {
  9390. name: "Macro",
  9391. height: math.unit(132, "feet")
  9392. },
  9393. {
  9394. name: "Macro+",
  9395. height: math.unit(340, "feet")
  9396. },
  9397. {
  9398. name: "Macro++",
  9399. height: math.unit(680, "feet"),
  9400. default: true
  9401. },
  9402. {
  9403. name: "Megamacro",
  9404. height: math.unit(1, "mile")
  9405. },
  9406. {
  9407. name: "Megamacro+",
  9408. height: math.unit(10, "miles")
  9409. },
  9410. ]
  9411. ))
  9412. characterMakers.push(() => makeCharacter(
  9413. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9414. {
  9415. front: {
  9416. height: math.unit(4, "feet"),
  9417. weight: math.unit(50, "lb"),
  9418. name: "Front",
  9419. image: {
  9420. source: "./media/characters/mal/front.svg",
  9421. extra: 785 / 724,
  9422. bottom: 0.07
  9423. }
  9424. },
  9425. },
  9426. [
  9427. {
  9428. name: "Micro",
  9429. height: math.unit(4, "inches")
  9430. },
  9431. {
  9432. name: "Normal",
  9433. height: math.unit(4, "feet"),
  9434. default: true
  9435. },
  9436. {
  9437. name: "Macro",
  9438. height: math.unit(200, "feet")
  9439. },
  9440. ]
  9441. ))
  9442. characterMakers.push(() => makeCharacter(
  9443. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9444. {
  9445. front: {
  9446. height: math.unit(6, "feet"),
  9447. weight: math.unit(150, "lb"),
  9448. name: "Front",
  9449. image: {
  9450. source: "./media/characters/jordan-deware/front.svg",
  9451. extra: 1191 / 1012
  9452. }
  9453. },
  9454. },
  9455. [
  9456. {
  9457. name: "Nano",
  9458. height: math.unit(0.01, "mm")
  9459. },
  9460. {
  9461. name: "Minimicro",
  9462. height: math.unit(1, "mm")
  9463. },
  9464. {
  9465. name: "Micro",
  9466. height: math.unit(0.5, "inches")
  9467. },
  9468. {
  9469. name: "Normal",
  9470. height: math.unit(4, "feet"),
  9471. default: true
  9472. },
  9473. {
  9474. name: "Minimacro",
  9475. height: math.unit(40, "meters")
  9476. },
  9477. {
  9478. name: "Small Macro",
  9479. height: math.unit(400, "meters")
  9480. },
  9481. {
  9482. name: "Macro",
  9483. height: math.unit(4, "miles")
  9484. },
  9485. {
  9486. name: "Megamacro",
  9487. height: math.unit(40, "miles")
  9488. },
  9489. {
  9490. name: "Megamacro+",
  9491. height: math.unit(400, "miles")
  9492. },
  9493. {
  9494. name: "Gigamacro",
  9495. height: math.unit(400000, "miles")
  9496. },
  9497. ]
  9498. ))
  9499. characterMakers.push(() => makeCharacter(
  9500. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9501. {
  9502. side: {
  9503. height: math.unit(6, "feet"),
  9504. weight: math.unit(150, "lb"),
  9505. name: "Side",
  9506. image: {
  9507. source: "./media/characters/kimiko/side.svg",
  9508. extra: 600 / 358
  9509. }
  9510. },
  9511. },
  9512. [
  9513. {
  9514. name: "Normal",
  9515. height: math.unit(15, "feet"),
  9516. default: true
  9517. },
  9518. {
  9519. name: "Macro",
  9520. height: math.unit(220, "feet")
  9521. },
  9522. {
  9523. name: "Macro+",
  9524. height: math.unit(1450, "feet")
  9525. },
  9526. {
  9527. name: "Megamacro",
  9528. height: math.unit(11500, "feet")
  9529. },
  9530. {
  9531. name: "Gigamacro",
  9532. height: math.unit(9500, "miles")
  9533. },
  9534. {
  9535. name: "Teramacro",
  9536. height: math.unit(2208005005, "miles")
  9537. },
  9538. {
  9539. name: "Examacro",
  9540. height: math.unit(2750, "parsecs")
  9541. },
  9542. {
  9543. name: "Zettamacro",
  9544. height: math.unit(101500, "parsecs")
  9545. },
  9546. ]
  9547. ))
  9548. characterMakers.push(() => makeCharacter(
  9549. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9550. {
  9551. front: {
  9552. height: math.unit(6, "feet"),
  9553. weight: math.unit(70, "kg"),
  9554. name: "Front",
  9555. image: {
  9556. source: "./media/characters/andrew-sleepy/front.svg"
  9557. }
  9558. },
  9559. side: {
  9560. height: math.unit(6, "feet"),
  9561. weight: math.unit(70, "kg"),
  9562. name: "Side",
  9563. image: {
  9564. source: "./media/characters/andrew-sleepy/side.svg"
  9565. }
  9566. },
  9567. },
  9568. [
  9569. {
  9570. name: "Micro",
  9571. height: math.unit(1, "mm"),
  9572. default: true
  9573. },
  9574. ]
  9575. ))
  9576. characterMakers.push(() => makeCharacter(
  9577. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9578. {
  9579. front: {
  9580. height: math.unit(6, "feet"),
  9581. weight: math.unit(150, "lb"),
  9582. name: "Front",
  9583. image: {
  9584. source: "./media/characters/judio/front.svg",
  9585. extra: 1258 / 1110
  9586. }
  9587. },
  9588. },
  9589. [
  9590. {
  9591. name: "Normal",
  9592. height: math.unit(5 + 6 / 12, "feet")
  9593. },
  9594. {
  9595. name: "Macro",
  9596. height: math.unit(1000, "feet"),
  9597. default: true
  9598. },
  9599. {
  9600. name: "Megamacro",
  9601. height: math.unit(10, "miles")
  9602. },
  9603. ]
  9604. ))
  9605. characterMakers.push(() => makeCharacter(
  9606. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9607. {
  9608. front: {
  9609. height: math.unit(6, "feet"),
  9610. weight: math.unit(68, "kg"),
  9611. name: "Front",
  9612. image: {
  9613. source: "./media/characters/nomaxice/front.svg",
  9614. extra: 1498 / 1073,
  9615. bottom: 0.075
  9616. }
  9617. },
  9618. foot: {
  9619. height: math.unit(1.1, "feet"),
  9620. name: "Foot",
  9621. image: {
  9622. source: "./media/characters/nomaxice/foot.svg"
  9623. }
  9624. },
  9625. },
  9626. [
  9627. {
  9628. name: "Micro",
  9629. height: math.unit(8, "cm")
  9630. },
  9631. {
  9632. name: "Norm",
  9633. height: math.unit(1.82, "m")
  9634. },
  9635. {
  9636. name: "Norm+",
  9637. height: math.unit(8.8, "feet")
  9638. },
  9639. {
  9640. name: "Big",
  9641. height: math.unit(8, "meters"),
  9642. default: true
  9643. },
  9644. {
  9645. name: "Macro",
  9646. height: math.unit(18, "meters")
  9647. },
  9648. {
  9649. name: "Macro+",
  9650. height: math.unit(88, "meters")
  9651. },
  9652. ]
  9653. ))
  9654. characterMakers.push(() => makeCharacter(
  9655. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9656. {
  9657. front: {
  9658. height: math.unit(12, "feet"),
  9659. weight: math.unit(1.5, "tons"),
  9660. name: "Front",
  9661. image: {
  9662. source: "./media/characters/dydros/front.svg",
  9663. extra: 863 / 800,
  9664. bottom: 0.015
  9665. }
  9666. },
  9667. back: {
  9668. height: math.unit(12, "feet"),
  9669. weight: math.unit(1.5, "tons"),
  9670. name: "Back",
  9671. image: {
  9672. source: "./media/characters/dydros/back.svg",
  9673. extra: 900 / 843,
  9674. bottom: 0.005
  9675. }
  9676. },
  9677. },
  9678. [
  9679. {
  9680. name: "Normal",
  9681. height: math.unit(12, "feet"),
  9682. default: true
  9683. },
  9684. ]
  9685. ))
  9686. characterMakers.push(() => makeCharacter(
  9687. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9688. {
  9689. front: {
  9690. height: math.unit(6, "feet"),
  9691. weight: math.unit(100, "kg"),
  9692. name: "Front",
  9693. image: {
  9694. source: "./media/characters/riggi/front.svg",
  9695. extra: 5787 / 5303
  9696. }
  9697. },
  9698. hyper: {
  9699. height: math.unit(6 * 5 / 3, "feet"),
  9700. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9701. name: "Hyper",
  9702. image: {
  9703. source: "./media/characters/riggi/hyper.svg",
  9704. extra: 3595 / 3485
  9705. }
  9706. },
  9707. },
  9708. [
  9709. {
  9710. name: "Small Macro",
  9711. height: math.unit(50, "feet")
  9712. },
  9713. {
  9714. name: "Default",
  9715. height: math.unit(200, "feet"),
  9716. default: true
  9717. },
  9718. {
  9719. name: "Loom",
  9720. height: math.unit(10000, "feet")
  9721. },
  9722. {
  9723. name: "Cruising Altitude",
  9724. height: math.unit(30000, "feet")
  9725. },
  9726. {
  9727. name: "Megamacro",
  9728. height: math.unit(100, "miles")
  9729. },
  9730. {
  9731. name: "Continent Sized",
  9732. height: math.unit(2800, "miles")
  9733. },
  9734. {
  9735. name: "Earth Sized",
  9736. height: math.unit(8000, "miles")
  9737. },
  9738. ]
  9739. ))
  9740. characterMakers.push(() => makeCharacter(
  9741. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9742. {
  9743. front: {
  9744. height: math.unit(6, "feet"),
  9745. weight: math.unit(250, "lb"),
  9746. name: "Front",
  9747. image: {
  9748. source: "./media/characters/alexi/front.svg",
  9749. extra: 3483 / 3291,
  9750. bottom: 0.04
  9751. }
  9752. },
  9753. back: {
  9754. height: math.unit(6, "feet"),
  9755. weight: math.unit(250, "lb"),
  9756. name: "Back",
  9757. image: {
  9758. source: "./media/characters/alexi/back.svg",
  9759. extra: 3533 / 3356,
  9760. bottom: 0.021
  9761. }
  9762. },
  9763. frontTransforming: {
  9764. height: math.unit(8.58, "feet"),
  9765. weight: math.unit(1300, "lb"),
  9766. name: "Transforming",
  9767. image: {
  9768. source: "./media/characters/alexi/front-transforming.svg",
  9769. extra: 437 / 409,
  9770. bottom: 19/458.66
  9771. }
  9772. },
  9773. frontTransformed: {
  9774. height: math.unit(12.5, "feet"),
  9775. weight: math.unit(4000, "lb"),
  9776. name: "Transformed",
  9777. image: {
  9778. source: "./media/characters/alexi/front-transformed.svg",
  9779. extra: 639 / 614,
  9780. bottom: 30.55/671
  9781. }
  9782. },
  9783. },
  9784. [
  9785. {
  9786. name: "Normal",
  9787. height: math.unit(3, "meters"),
  9788. default: true
  9789. },
  9790. {
  9791. name: "Minimacro",
  9792. height: math.unit(30, "meters")
  9793. },
  9794. {
  9795. name: "Macro",
  9796. height: math.unit(500, "meters")
  9797. },
  9798. {
  9799. name: "Megamacro",
  9800. height: math.unit(9000, "km")
  9801. },
  9802. {
  9803. name: "Teramacro",
  9804. height: math.unit(384000, "km")
  9805. },
  9806. ]
  9807. ))
  9808. characterMakers.push(() => makeCharacter(
  9809. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9810. {
  9811. front: {
  9812. height: math.unit(6, "feet"),
  9813. weight: math.unit(150, "lb"),
  9814. name: "Front",
  9815. image: {
  9816. source: "./media/characters/kayroo/front.svg",
  9817. extra: 1153 / 1038,
  9818. bottom: 0.06
  9819. }
  9820. },
  9821. foot: {
  9822. height: math.unit(6, "feet"),
  9823. weight: math.unit(150, "lb"),
  9824. name: "Foot",
  9825. image: {
  9826. source: "./media/characters/kayroo/foot.svg"
  9827. }
  9828. },
  9829. },
  9830. [
  9831. {
  9832. name: "Normal",
  9833. height: math.unit(8, "feet"),
  9834. default: true
  9835. },
  9836. {
  9837. name: "Minimacro",
  9838. height: math.unit(250, "feet")
  9839. },
  9840. {
  9841. name: "Macro",
  9842. height: math.unit(2800, "feet")
  9843. },
  9844. {
  9845. name: "Megamacro",
  9846. height: math.unit(5200, "feet")
  9847. },
  9848. {
  9849. name: "Gigamacro",
  9850. height: math.unit(27000, "feet")
  9851. },
  9852. {
  9853. name: "Omega",
  9854. height: math.unit(45000, "feet")
  9855. },
  9856. ]
  9857. ))
  9858. characterMakers.push(() => makeCharacter(
  9859. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  9860. {
  9861. front: {
  9862. height: math.unit(18, "feet"),
  9863. weight: math.unit(5800, "lb"),
  9864. name: "Front",
  9865. image: {
  9866. source: "./media/characters/rhys/front.svg",
  9867. extra: 3386 / 3090,
  9868. bottom: 0.07
  9869. }
  9870. },
  9871. },
  9872. [
  9873. {
  9874. name: "Normal",
  9875. height: math.unit(18, "feet"),
  9876. default: true
  9877. },
  9878. {
  9879. name: "Working Size",
  9880. height: math.unit(200, "feet")
  9881. },
  9882. {
  9883. name: "Demolition Size",
  9884. height: math.unit(2000, "feet")
  9885. },
  9886. {
  9887. name: "Maximum Licensed Size",
  9888. height: math.unit(5, "miles")
  9889. },
  9890. {
  9891. name: "Maximum Observed Size",
  9892. height: math.unit(10, "yottameters")
  9893. },
  9894. ]
  9895. ))
  9896. characterMakers.push(() => makeCharacter(
  9897. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  9898. {
  9899. front: {
  9900. height: math.unit(6, "feet"),
  9901. weight: math.unit(250, "lb"),
  9902. name: "Front",
  9903. image: {
  9904. source: "./media/characters/toto/front.svg",
  9905. extra: 527 / 479,
  9906. bottom: 0.05
  9907. }
  9908. },
  9909. },
  9910. [
  9911. {
  9912. name: "Micro",
  9913. height: math.unit(3, "feet")
  9914. },
  9915. {
  9916. name: "Normal",
  9917. height: math.unit(10, "feet")
  9918. },
  9919. {
  9920. name: "Macro",
  9921. height: math.unit(150, "feet"),
  9922. default: true
  9923. },
  9924. {
  9925. name: "Megamacro",
  9926. height: math.unit(1200, "feet")
  9927. },
  9928. ]
  9929. ))
  9930. characterMakers.push(() => makeCharacter(
  9931. { name: "King", species: ["lion"], tags: ["anthro"] },
  9932. {
  9933. back: {
  9934. height: math.unit(6, "feet"),
  9935. weight: math.unit(150, "lb"),
  9936. name: "Back",
  9937. image: {
  9938. source: "./media/characters/king/back.svg"
  9939. }
  9940. },
  9941. },
  9942. [
  9943. {
  9944. name: "Micro",
  9945. height: math.unit(2, "inches")
  9946. },
  9947. {
  9948. name: "Normal",
  9949. height: math.unit(8, "feet")
  9950. },
  9951. {
  9952. name: "Macro",
  9953. height: math.unit(200, "feet"),
  9954. default: true
  9955. },
  9956. {
  9957. name: "Megamacro",
  9958. height: math.unit(50, "miles")
  9959. },
  9960. ]
  9961. ))
  9962. characterMakers.push(() => makeCharacter(
  9963. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  9964. {
  9965. anthro: {
  9966. height: math.unit(6 + 5 / 12, "feet"),
  9967. weight: math.unit(280, "lb"),
  9968. name: "Anthro",
  9969. image: {
  9970. source: "./media/characters/cordite/anthro.svg",
  9971. extra: 1986 / 1905,
  9972. bottom: 0.025
  9973. }
  9974. },
  9975. feral: {
  9976. height: math.unit(2, "feet"),
  9977. weight: math.unit(90, "lb"),
  9978. name: "Feral",
  9979. image: {
  9980. source: "./media/characters/cordite/feral.svg",
  9981. extra: 1260 / 755,
  9982. bottom: 0.05
  9983. }
  9984. },
  9985. },
  9986. [
  9987. {
  9988. name: "Normal",
  9989. height: math.unit(6 + 5 / 12, "feet"),
  9990. default: true
  9991. },
  9992. ]
  9993. ))
  9994. characterMakers.push(() => makeCharacter(
  9995. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  9996. {
  9997. front: {
  9998. height: math.unit(6, "feet"),
  9999. weight: math.unit(150, "lb"),
  10000. name: "Front",
  10001. image: {
  10002. source: "./media/characters/pianostrong/front.svg",
  10003. extra: 6577 / 6254,
  10004. bottom: 0.02
  10005. }
  10006. },
  10007. side: {
  10008. height: math.unit(6, "feet"),
  10009. weight: math.unit(150, "lb"),
  10010. name: "Side",
  10011. image: {
  10012. source: "./media/characters/pianostrong/side.svg",
  10013. extra: 6106 / 5730
  10014. }
  10015. },
  10016. back: {
  10017. height: math.unit(6, "feet"),
  10018. weight: math.unit(150, "lb"),
  10019. name: "Back",
  10020. image: {
  10021. source: "./media/characters/pianostrong/back.svg",
  10022. extra: 6085 / 5733,
  10023. bottom: 0.01
  10024. }
  10025. },
  10026. },
  10027. [
  10028. {
  10029. name: "Macro",
  10030. height: math.unit(100, "feet")
  10031. },
  10032. {
  10033. name: "Macro+",
  10034. height: math.unit(300, "feet"),
  10035. default: true
  10036. },
  10037. {
  10038. name: "Macro++",
  10039. height: math.unit(1000, "feet")
  10040. },
  10041. ]
  10042. ))
  10043. characterMakers.push(() => makeCharacter(
  10044. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10045. {
  10046. front: {
  10047. height: math.unit(6, "feet"),
  10048. weight: math.unit(150, "lb"),
  10049. name: "Front",
  10050. image: {
  10051. source: "./media/characters/kona/front.svg",
  10052. extra: 2960 / 2629,
  10053. bottom: 0.005
  10054. }
  10055. },
  10056. },
  10057. [
  10058. {
  10059. name: "Normal",
  10060. height: math.unit(11 + 8 / 12, "feet")
  10061. },
  10062. {
  10063. name: "Macro",
  10064. height: math.unit(850, "feet"),
  10065. default: true
  10066. },
  10067. {
  10068. name: "Macro+",
  10069. height: math.unit(1.5, "km"),
  10070. default: true
  10071. },
  10072. {
  10073. name: "Megamacro",
  10074. height: math.unit(80, "miles")
  10075. },
  10076. {
  10077. name: "Gigamacro",
  10078. height: math.unit(3500, "miles")
  10079. },
  10080. ]
  10081. ))
  10082. characterMakers.push(() => makeCharacter(
  10083. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10084. {
  10085. side: {
  10086. height: math.unit(1.9, "meters"),
  10087. weight: math.unit(326, "kg"),
  10088. name: "Side",
  10089. image: {
  10090. source: "./media/characters/levi/side.svg",
  10091. extra: 1704 / 1334,
  10092. bottom: 0.02
  10093. }
  10094. },
  10095. },
  10096. [
  10097. {
  10098. name: "Normal",
  10099. height: math.unit(1.9, "meters"),
  10100. default: true
  10101. },
  10102. {
  10103. name: "Macro",
  10104. height: math.unit(20, "meters")
  10105. },
  10106. {
  10107. name: "Macro+",
  10108. height: math.unit(200, "meters")
  10109. },
  10110. {
  10111. name: "Megamacro",
  10112. height: math.unit(2, "km")
  10113. },
  10114. {
  10115. name: "Megamacro+",
  10116. height: math.unit(20, "km")
  10117. },
  10118. {
  10119. name: "Gigamacro",
  10120. height: math.unit(2500, "km")
  10121. },
  10122. {
  10123. name: "Gigamacro+",
  10124. height: math.unit(120000, "km")
  10125. },
  10126. {
  10127. name: "Teramacro",
  10128. height: math.unit(7.77e6, "km")
  10129. },
  10130. ]
  10131. ))
  10132. characterMakers.push(() => makeCharacter(
  10133. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10134. {
  10135. front: {
  10136. height: math.unit(6 + 4 / 12, "feet"),
  10137. weight: math.unit(188, "lb"),
  10138. name: "Front",
  10139. image: {
  10140. source: "./media/characters/bmc/front.svg",
  10141. extra: 1067 / 1022,
  10142. bottom: 0.047
  10143. }
  10144. },
  10145. },
  10146. [
  10147. {
  10148. name: "Human-sized",
  10149. height: math.unit(6 + 4 / 12, "feet")
  10150. },
  10151. {
  10152. name: "Small",
  10153. height: math.unit(250, "feet")
  10154. },
  10155. {
  10156. name: "Normal",
  10157. height: math.unit(1250, "feet"),
  10158. default: true
  10159. },
  10160. {
  10161. name: "Good Day",
  10162. height: math.unit(88, "miles")
  10163. },
  10164. {
  10165. name: "Largest Measured Size",
  10166. height: math.unit(11.2e6, "lightyears")
  10167. },
  10168. ]
  10169. ))
  10170. characterMakers.push(() => makeCharacter(
  10171. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10172. {
  10173. front: {
  10174. height: math.unit(20, "feet"),
  10175. weight: math.unit(2016, "kg"),
  10176. name: "Front",
  10177. image: {
  10178. source: "./media/characters/sven-the-kaiju/front.svg",
  10179. extra: 1479 / 1449,
  10180. bottom: 0.05
  10181. }
  10182. },
  10183. },
  10184. [
  10185. {
  10186. name: "Fairy",
  10187. height: math.unit(6, "inches")
  10188. },
  10189. {
  10190. name: "Normal",
  10191. height: math.unit(20, "feet"),
  10192. default: true
  10193. },
  10194. {
  10195. name: "Rampage",
  10196. height: math.unit(200, "feet")
  10197. },
  10198. {
  10199. name: "Archfey Forest Guardian",
  10200. height: math.unit(1, "mile")
  10201. },
  10202. ]
  10203. ))
  10204. characterMakers.push(() => makeCharacter(
  10205. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10206. {
  10207. front: {
  10208. height: math.unit(4, "meters"),
  10209. weight: math.unit(2, "tons"),
  10210. name: "Front",
  10211. image: {
  10212. source: "./media/characters/marik/front.svg",
  10213. extra: 1057 / 1003,
  10214. bottom: 0.08
  10215. }
  10216. },
  10217. },
  10218. [
  10219. {
  10220. name: "Normal",
  10221. height: math.unit(4, "meters"),
  10222. default: true
  10223. },
  10224. {
  10225. name: "Macro",
  10226. height: math.unit(20, "meters")
  10227. },
  10228. {
  10229. name: "Megamacro",
  10230. height: math.unit(50, "km")
  10231. },
  10232. {
  10233. name: "Gigamacro",
  10234. height: math.unit(100, "km")
  10235. },
  10236. {
  10237. name: "Alpha Macro",
  10238. height: math.unit(7.88e7, "yottameters")
  10239. },
  10240. ]
  10241. ))
  10242. characterMakers.push(() => makeCharacter(
  10243. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10244. {
  10245. front: {
  10246. height: math.unit(6, "feet"),
  10247. weight: math.unit(110, "lb"),
  10248. name: "Front",
  10249. image: {
  10250. source: "./media/characters/mel/front.svg",
  10251. extra: 736 / 617,
  10252. bottom: 0.017
  10253. }
  10254. },
  10255. },
  10256. [
  10257. {
  10258. name: "Pico",
  10259. height: math.unit(3, "pm")
  10260. },
  10261. {
  10262. name: "Nano",
  10263. height: math.unit(3, "nm")
  10264. },
  10265. {
  10266. name: "Micro",
  10267. height: math.unit(0.3, "mm"),
  10268. default: true
  10269. },
  10270. {
  10271. name: "Micro+",
  10272. height: math.unit(3, "mm")
  10273. },
  10274. {
  10275. name: "Normal",
  10276. height: math.unit(5 + 10.5 / 12, "feet")
  10277. },
  10278. ]
  10279. ))
  10280. characterMakers.push(() => makeCharacter(
  10281. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10282. {
  10283. kaiju: {
  10284. height: math.unit(1.75, "meters"),
  10285. weight: math.unit(55, "kg"),
  10286. name: "Kaiju",
  10287. image: {
  10288. source: "./media/characters/lykonous/kaiju.svg",
  10289. extra: 1055 / 946,
  10290. bottom: 0.135
  10291. }
  10292. },
  10293. },
  10294. [
  10295. {
  10296. name: "Normal",
  10297. height: math.unit(2.5, "meters"),
  10298. default: true
  10299. },
  10300. {
  10301. name: "Kaiju Dragon",
  10302. height: math.unit(60, "meters")
  10303. },
  10304. {
  10305. name: "Mega Kaiju",
  10306. height: math.unit(120, "km")
  10307. },
  10308. {
  10309. name: "Giga Kaiju",
  10310. height: math.unit(200, "megameters")
  10311. },
  10312. {
  10313. name: "Terra Kaiju",
  10314. height: math.unit(400, "gigameters")
  10315. },
  10316. {
  10317. name: "Kaiju Dragon God",
  10318. height: math.unit(13000, "exaparsecs")
  10319. },
  10320. ]
  10321. ))
  10322. characterMakers.push(() => makeCharacter(
  10323. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10324. {
  10325. front: {
  10326. height: math.unit(6, "feet"),
  10327. weight: math.unit(150, "lb"),
  10328. name: "Front",
  10329. image: {
  10330. source: "./media/characters/blü/front.svg",
  10331. extra: 1883 / 1564,
  10332. bottom: 0.031
  10333. }
  10334. },
  10335. },
  10336. [
  10337. {
  10338. name: "Normal",
  10339. height: math.unit(13, "feet"),
  10340. default: true
  10341. },
  10342. {
  10343. name: "Big Boi",
  10344. height: math.unit(150, "meters")
  10345. },
  10346. {
  10347. name: "Mini Stomper",
  10348. height: math.unit(300, "meters")
  10349. },
  10350. {
  10351. name: "Macro",
  10352. height: math.unit(1000, "meters")
  10353. },
  10354. {
  10355. name: "Megamacro",
  10356. height: math.unit(11000, "meters")
  10357. },
  10358. {
  10359. name: "Gigamacro",
  10360. height: math.unit(11000, "km")
  10361. },
  10362. {
  10363. name: "Teramacro",
  10364. height: math.unit(420000, "km")
  10365. },
  10366. {
  10367. name: "Examacro",
  10368. height: math.unit(120, "parsecs")
  10369. },
  10370. {
  10371. name: "God Tho",
  10372. height: math.unit(98000000000, "parsecs")
  10373. },
  10374. ]
  10375. ))
  10376. characterMakers.push(() => makeCharacter(
  10377. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10378. {
  10379. taurFront: {
  10380. height: math.unit(6, "feet"),
  10381. weight: math.unit(200, "lb"),
  10382. name: "Taur (Front)",
  10383. image: {
  10384. source: "./media/characters/scales/taur-front.svg",
  10385. extra: 1,
  10386. bottom: 0.05
  10387. }
  10388. },
  10389. taurBack: {
  10390. height: math.unit(6, "feet"),
  10391. weight: math.unit(200, "lb"),
  10392. name: "Taur (Back)",
  10393. image: {
  10394. source: "./media/characters/scales/taur-back.svg",
  10395. extra: 1,
  10396. bottom: 0.08
  10397. }
  10398. },
  10399. anthro: {
  10400. height: math.unit(6 * 7 / 12, "feet"),
  10401. weight: math.unit(100, "lb"),
  10402. name: "Anthro",
  10403. image: {
  10404. source: "./media/characters/scales/anthro.svg",
  10405. extra: 1,
  10406. bottom: 0.06
  10407. }
  10408. },
  10409. },
  10410. [
  10411. {
  10412. name: "Normal",
  10413. height: math.unit(12, "feet"),
  10414. default: true
  10415. },
  10416. ]
  10417. ))
  10418. characterMakers.push(() => makeCharacter(
  10419. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10420. {
  10421. front: {
  10422. height: math.unit(6, "feet"),
  10423. weight: math.unit(150, "lb"),
  10424. name: "Front",
  10425. image: {
  10426. source: "./media/characters/koragos/front.svg",
  10427. extra: 841 / 794,
  10428. bottom: 0.035
  10429. }
  10430. },
  10431. back: {
  10432. height: math.unit(6, "feet"),
  10433. weight: math.unit(150, "lb"),
  10434. name: "Back",
  10435. image: {
  10436. source: "./media/characters/koragos/back.svg",
  10437. extra: 841 / 810,
  10438. bottom: 0.022
  10439. }
  10440. },
  10441. },
  10442. [
  10443. {
  10444. name: "Normal",
  10445. height: math.unit(6 + 11 / 12, "feet"),
  10446. default: true
  10447. },
  10448. {
  10449. name: "Macro",
  10450. height: math.unit(490, "feet")
  10451. },
  10452. {
  10453. name: "Megamacro",
  10454. height: math.unit(10, "miles")
  10455. },
  10456. {
  10457. name: "Gigamacro",
  10458. height: math.unit(50, "miles")
  10459. },
  10460. ]
  10461. ))
  10462. characterMakers.push(() => makeCharacter(
  10463. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10464. {
  10465. front: {
  10466. height: math.unit(6, "feet"),
  10467. weight: math.unit(250, "lb"),
  10468. name: "Front",
  10469. image: {
  10470. source: "./media/characters/xylrem/front.svg",
  10471. extra: 3323 / 3050,
  10472. bottom: 0.065
  10473. }
  10474. },
  10475. },
  10476. [
  10477. {
  10478. name: "Micro",
  10479. height: math.unit(4, "feet")
  10480. },
  10481. {
  10482. name: "Normal",
  10483. height: math.unit(16, "feet"),
  10484. default: true
  10485. },
  10486. {
  10487. name: "Macro",
  10488. height: math.unit(2720, "feet")
  10489. },
  10490. {
  10491. name: "Megamacro",
  10492. height: math.unit(25000, "miles")
  10493. },
  10494. ]
  10495. ))
  10496. characterMakers.push(() => makeCharacter(
  10497. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10498. {
  10499. front: {
  10500. height: math.unit(8, "feet"),
  10501. weight: math.unit(250, "kg"),
  10502. name: "Front",
  10503. image: {
  10504. source: "./media/characters/ikideru/front.svg",
  10505. extra: 930 / 870,
  10506. bottom: 0.087
  10507. }
  10508. },
  10509. back: {
  10510. height: math.unit(8, "feet"),
  10511. weight: math.unit(250, "kg"),
  10512. name: "Back",
  10513. image: {
  10514. source: "./media/characters/ikideru/back.svg",
  10515. extra: 919 / 852,
  10516. bottom: 0.055
  10517. }
  10518. },
  10519. },
  10520. [
  10521. {
  10522. name: "Rare",
  10523. height: math.unit(8, "feet"),
  10524. default: true
  10525. },
  10526. {
  10527. name: "Playful Loom",
  10528. height: math.unit(80, "feet")
  10529. },
  10530. {
  10531. name: "City Leaner",
  10532. height: math.unit(230, "feet")
  10533. },
  10534. {
  10535. name: "Megamacro",
  10536. height: math.unit(2500, "feet")
  10537. },
  10538. {
  10539. name: "Gigamacro",
  10540. height: math.unit(26400, "feet")
  10541. },
  10542. {
  10543. name: "Tectonic Shifter",
  10544. height: math.unit(1.7, "megameters")
  10545. },
  10546. {
  10547. name: "Planet Carer",
  10548. height: math.unit(21, "megameters")
  10549. },
  10550. {
  10551. name: "God",
  10552. height: math.unit(11157.22, "parsecs")
  10553. },
  10554. ]
  10555. ))
  10556. characterMakers.push(() => makeCharacter(
  10557. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10558. {
  10559. front: {
  10560. height: math.unit(6, "feet"),
  10561. weight: math.unit(120, "lb"),
  10562. name: "Front",
  10563. image: {
  10564. source: "./media/characters/neo/front.svg"
  10565. }
  10566. },
  10567. },
  10568. [
  10569. {
  10570. name: "Micro",
  10571. height: math.unit(2, "inches"),
  10572. default: true
  10573. },
  10574. {
  10575. name: "Human Size",
  10576. height: math.unit(5 + 8 / 12, "feet")
  10577. },
  10578. ]
  10579. ))
  10580. characterMakers.push(() => makeCharacter(
  10581. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10582. {
  10583. front: {
  10584. height: math.unit(13 + 10 / 12, "feet"),
  10585. weight: math.unit(5320, "lb"),
  10586. name: "Front",
  10587. image: {
  10588. source: "./media/characters/chauncey-chantz/front.svg",
  10589. extra: 1587 / 1435,
  10590. bottom: 0.02
  10591. }
  10592. },
  10593. },
  10594. [
  10595. {
  10596. name: "Normal",
  10597. height: math.unit(13 + 10 / 12, "feet"),
  10598. default: true
  10599. },
  10600. {
  10601. name: "Macro",
  10602. height: math.unit(45, "feet")
  10603. },
  10604. {
  10605. name: "Megamacro",
  10606. height: math.unit(250, "miles")
  10607. },
  10608. {
  10609. name: "Planetary",
  10610. height: math.unit(10000, "miles")
  10611. },
  10612. {
  10613. name: "Galactic",
  10614. height: math.unit(40000, "parsecs")
  10615. },
  10616. {
  10617. name: "Universal",
  10618. height: math.unit(1, "yottameter")
  10619. },
  10620. ]
  10621. ))
  10622. characterMakers.push(() => makeCharacter(
  10623. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10624. {
  10625. front: {
  10626. height: math.unit(6, "feet"),
  10627. weight: math.unit(150, "lb"),
  10628. name: "Front",
  10629. image: {
  10630. source: "./media/characters/epifox/front.svg",
  10631. extra: 1,
  10632. bottom: 0.075
  10633. }
  10634. },
  10635. },
  10636. [
  10637. {
  10638. name: "Micro",
  10639. height: math.unit(6, "inches")
  10640. },
  10641. {
  10642. name: "Normal",
  10643. height: math.unit(12, "feet"),
  10644. default: true
  10645. },
  10646. {
  10647. name: "Macro",
  10648. height: math.unit(3810, "feet")
  10649. },
  10650. {
  10651. name: "Megamacro",
  10652. height: math.unit(500, "miles")
  10653. },
  10654. ]
  10655. ))
  10656. characterMakers.push(() => makeCharacter(
  10657. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10658. {
  10659. front: {
  10660. height: math.unit(1.8796, "m"),
  10661. weight: math.unit(230, "lb"),
  10662. name: "Front",
  10663. image: {
  10664. source: "./media/characters/colin-t/front.svg",
  10665. extra: 1272 / 1193,
  10666. bottom: 0.07
  10667. }
  10668. },
  10669. },
  10670. [
  10671. {
  10672. name: "Micro",
  10673. height: math.unit(0.571, "meters")
  10674. },
  10675. {
  10676. name: "Normal",
  10677. height: math.unit(1.8796, "meters"),
  10678. default: true
  10679. },
  10680. {
  10681. name: "Tall",
  10682. height: math.unit(4, "meters")
  10683. },
  10684. {
  10685. name: "Macro",
  10686. height: math.unit(67.241, "meters")
  10687. },
  10688. {
  10689. name: "Megamacro",
  10690. height: math.unit(371.856, "meters")
  10691. },
  10692. {
  10693. name: "Planetary",
  10694. height: math.unit(12631.5689, "km")
  10695. },
  10696. ]
  10697. ))
  10698. characterMakers.push(() => makeCharacter(
  10699. { name: "Matvei", species: ["shark"], tags: ["anthro"]},
  10700. {
  10701. front: {
  10702. height: math.unit(1.85, "meters"),
  10703. weight: math.unit(80, "kg"),
  10704. name: "Front",
  10705. image: {
  10706. source: "./media/characters/matvei/front.svg",
  10707. extra: 614 / 594,
  10708. bottom: 0.01
  10709. }
  10710. },
  10711. },
  10712. [
  10713. {
  10714. name: "Normal",
  10715. height: math.unit(1.85, "meters"),
  10716. default: true
  10717. },
  10718. ]
  10719. ))
  10720. characterMakers.push(() => makeCharacter(
  10721. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10722. {
  10723. front: {
  10724. height: math.unit(5 + 9 / 12, "feet"),
  10725. weight: math.unit(70, "lb"),
  10726. name: "Front",
  10727. image: {
  10728. source: "./media/characters/quincy/front.svg",
  10729. extra: 3041 / 2751
  10730. }
  10731. },
  10732. back: {
  10733. height: math.unit(5 + 9 / 12, "feet"),
  10734. weight: math.unit(70, "lb"),
  10735. name: "Back",
  10736. image: {
  10737. source: "./media/characters/quincy/back.svg",
  10738. extra: 3041 / 2751
  10739. }
  10740. },
  10741. flying: {
  10742. height: math.unit(5 + 4 / 12, "feet"),
  10743. weight: math.unit(70, "lb"),
  10744. name: "Flying",
  10745. image: {
  10746. source: "./media/characters/quincy/flying.svg",
  10747. extra: 1044 / 930
  10748. }
  10749. },
  10750. },
  10751. [
  10752. {
  10753. name: "Micro",
  10754. height: math.unit(3, "cm")
  10755. },
  10756. {
  10757. name: "Normal",
  10758. height: math.unit(5 + 9 / 12, "feet")
  10759. },
  10760. {
  10761. name: "Macro",
  10762. height: math.unit(200, "meters"),
  10763. default: true
  10764. },
  10765. {
  10766. name: "Megamacro",
  10767. height: math.unit(1000, "meters")
  10768. },
  10769. ]
  10770. ))
  10771. characterMakers.push(() => makeCharacter(
  10772. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10773. {
  10774. front: {
  10775. height: math.unit(4 + 7 / 12, "feet"),
  10776. weight: math.unit(150, "lb"),
  10777. name: "Front",
  10778. image: {
  10779. source: "./media/characters/vanrel/front.svg",
  10780. extra: 1,
  10781. bottom: 0.02
  10782. }
  10783. },
  10784. elemental: {
  10785. height: math.unit(3, "feet"),
  10786. weight: math.unit(150, "lb"),
  10787. name: "Elemental",
  10788. image: {
  10789. source: "./media/characters/vanrel/elemental.svg",
  10790. extra: 192.3/162.8,
  10791. bottom: 1.79/194.17
  10792. }
  10793. },
  10794. side: {
  10795. height: math.unit(4 + 7 / 12, "feet"),
  10796. weight: math.unit(150, "lb"),
  10797. name: "Side",
  10798. image: {
  10799. source: "./media/characters/vanrel/side.svg",
  10800. extra: 1,
  10801. bottom: 0.025
  10802. }
  10803. },
  10804. tome: {
  10805. height: math.unit(1.35, "feet"),
  10806. weight: math.unit(10, "lb"),
  10807. name: "Vanrel's Tome",
  10808. rename: true,
  10809. image: {
  10810. source: "./media/characters/vanrel/tome.svg"
  10811. }
  10812. },
  10813. beans: {
  10814. height: math.unit(0.89, "feet"),
  10815. name: "Beans",
  10816. image: {
  10817. source: "./media/characters/vanrel/beans.svg"
  10818. }
  10819. },
  10820. },
  10821. [
  10822. {
  10823. name: "Normal",
  10824. height: math.unit(4 + 7 / 12, "feet"),
  10825. default: true
  10826. },
  10827. ]
  10828. ))
  10829. characterMakers.push(() => makeCharacter(
  10830. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  10831. {
  10832. front: {
  10833. height: math.unit(7 + 5 / 12, "feet"),
  10834. weight: math.unit(150, "lb"),
  10835. name: "Front",
  10836. image: {
  10837. source: "./media/characters/kuiper-vanrel/front.svg",
  10838. extra: 1118 / 1068,
  10839. bottom: 0.09
  10840. }
  10841. },
  10842. foot: {
  10843. height: math.unit(0.55, "meters"),
  10844. name: "Foot",
  10845. image: {
  10846. source: "./media/characters/kuiper-vanrel/foot.svg",
  10847. }
  10848. },
  10849. battle: {
  10850. height: math.unit(6.824, "feet"),
  10851. weight: math.unit(150, "lb"),
  10852. name: "Battle",
  10853. image: {
  10854. source: "./media/characters/kuiper-vanrel/battle.svg",
  10855. extra: 1466/1327,
  10856. bottom: 29/1492.5
  10857. }
  10858. },
  10859. },
  10860. [
  10861. {
  10862. name: "Normal",
  10863. height: math.unit(7 + 5 / 12, "feet"),
  10864. default: true
  10865. },
  10866. ]
  10867. ))
  10868. characterMakers.push(() => makeCharacter(
  10869. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  10870. {
  10871. front: {
  10872. height: math.unit(8 + 5 / 12, "feet"),
  10873. weight: math.unit(150, "lb"),
  10874. name: "Front",
  10875. image: {
  10876. source: "./media/characters/keset-vanrel/front.svg",
  10877. extra: 1150 / 1084,
  10878. bottom: 0.05
  10879. }
  10880. },
  10881. hand: {
  10882. height: math.unit(0.6, "meters"),
  10883. name: "Hand",
  10884. image: {
  10885. source: "./media/characters/keset-vanrel/hand.svg"
  10886. }
  10887. },
  10888. foot: {
  10889. height: math.unit(0.94978, "meters"),
  10890. name: "Foot",
  10891. image: {
  10892. source: "./media/characters/keset-vanrel/foot.svg"
  10893. }
  10894. },
  10895. battle: {
  10896. height: math.unit(7.408, "feet"),
  10897. weight: math.unit(150, "lb"),
  10898. name: "Battle",
  10899. image: {
  10900. source: "./media/characters/keset-vanrel/battle.svg",
  10901. extra: 1890/1386,
  10902. bottom: 73.28/1970
  10903. }
  10904. },
  10905. },
  10906. [
  10907. {
  10908. name: "Normal",
  10909. height: math.unit(8 + 5 / 12, "feet"),
  10910. default: true
  10911. },
  10912. ]
  10913. ))
  10914. characterMakers.push(() => makeCharacter(
  10915. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  10916. {
  10917. front: {
  10918. height: math.unit(6, "feet"),
  10919. weight: math.unit(150, "lb"),
  10920. name: "Front",
  10921. image: {
  10922. source: "./media/characters/neos/front.svg",
  10923. extra: 1696 / 992,
  10924. bottom: 0.14
  10925. }
  10926. },
  10927. },
  10928. [
  10929. {
  10930. name: "Normal",
  10931. height: math.unit(54, "cm"),
  10932. default: true
  10933. },
  10934. {
  10935. name: "Macro",
  10936. height: math.unit(100, "m")
  10937. },
  10938. {
  10939. name: "Megamacro",
  10940. height: math.unit(10, "km")
  10941. },
  10942. {
  10943. name: "Megamacro+",
  10944. height: math.unit(100, "km")
  10945. },
  10946. {
  10947. name: "Gigamacro",
  10948. height: math.unit(100, "Mm")
  10949. },
  10950. {
  10951. name: "Teramacro",
  10952. height: math.unit(100, "Gm")
  10953. },
  10954. {
  10955. name: "Examacro",
  10956. height: math.unit(100, "Em")
  10957. },
  10958. {
  10959. name: "Godly",
  10960. height: math.unit(10000, "Ym")
  10961. },
  10962. {
  10963. name: "Beyond Godly",
  10964. height: math.unit(10000000, "Ym")
  10965. },
  10966. ]
  10967. ))
  10968. characterMakers.push(() => makeCharacter(
  10969. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  10970. {
  10971. feminine: {
  10972. height: math.unit(5, "feet"),
  10973. weight: math.unit(100, "lb"),
  10974. name: "Feminine",
  10975. image: {
  10976. source: "./media/characters/sammy-mouse/feminine.svg",
  10977. extra: 2526 / 2425,
  10978. bottom: 0.123
  10979. }
  10980. },
  10981. masculine: {
  10982. height: math.unit(5, "feet"),
  10983. weight: math.unit(100, "lb"),
  10984. name: "Masculine",
  10985. image: {
  10986. source: "./media/characters/sammy-mouse/masculine.svg",
  10987. extra: 2526 / 2425,
  10988. bottom: 0.123
  10989. }
  10990. },
  10991. },
  10992. [
  10993. {
  10994. name: "Micro",
  10995. height: math.unit(5, "inches")
  10996. },
  10997. {
  10998. name: "Normal",
  10999. height: math.unit(5, "feet"),
  11000. default: true
  11001. },
  11002. {
  11003. name: "Macro",
  11004. height: math.unit(60, "feet")
  11005. },
  11006. ]
  11007. ))
  11008. characterMakers.push(() => makeCharacter(
  11009. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11010. {
  11011. front: {
  11012. height: math.unit(4, "feet"),
  11013. weight: math.unit(50, "lb"),
  11014. name: "Front",
  11015. image: {
  11016. source: "./media/characters/kole/front.svg",
  11017. extra: 1423 / 1303,
  11018. bottom: 0.025
  11019. }
  11020. },
  11021. back: {
  11022. height: math.unit(4, "feet"),
  11023. weight: math.unit(50, "lb"),
  11024. name: "Back",
  11025. image: {
  11026. source: "./media/characters/kole/back.svg",
  11027. extra: 1426 / 1280,
  11028. bottom: 0.02
  11029. }
  11030. },
  11031. },
  11032. [
  11033. {
  11034. name: "Normal",
  11035. height: math.unit(4, "feet"),
  11036. default: true
  11037. },
  11038. ]
  11039. ))
  11040. characterMakers.push(() => makeCharacter(
  11041. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11042. {
  11043. front: {
  11044. height: math.unit(2 + 6 / 12, "feet"),
  11045. weight: math.unit(20, "lb"),
  11046. name: "Front",
  11047. image: {
  11048. source: "./media/characters/rufran/front.svg",
  11049. extra: 2041 / 1839,
  11050. bottom: 0.055
  11051. }
  11052. },
  11053. back: {
  11054. height: math.unit(2 + 6 / 12, "feet"),
  11055. weight: math.unit(20, "lb"),
  11056. name: "Back",
  11057. image: {
  11058. source: "./media/characters/rufran/back.svg",
  11059. extra: 2054 / 1839,
  11060. bottom: 0.01
  11061. }
  11062. },
  11063. hand: {
  11064. height: math.unit(0.2166, "meters"),
  11065. name: "Hand",
  11066. image: {
  11067. source: "./media/characters/rufran/hand.svg"
  11068. }
  11069. },
  11070. foot: {
  11071. height: math.unit(0.185, "meters"),
  11072. name: "Foot",
  11073. image: {
  11074. source: "./media/characters/rufran/foot.svg"
  11075. }
  11076. },
  11077. },
  11078. [
  11079. {
  11080. name: "Micro",
  11081. height: math.unit(1, "inch")
  11082. },
  11083. {
  11084. name: "Normal",
  11085. height: math.unit(2 + 6 / 12, "feet"),
  11086. default: true
  11087. },
  11088. {
  11089. name: "Big",
  11090. height: math.unit(60, "feet")
  11091. },
  11092. {
  11093. name: "Macro",
  11094. height: math.unit(325, "feet")
  11095. },
  11096. ]
  11097. ))
  11098. characterMakers.push(() => makeCharacter(
  11099. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11100. {
  11101. front: {
  11102. height: math.unit(0.3, "meters"),
  11103. weight: math.unit(3.5, "kg"),
  11104. name: "Front",
  11105. image: {
  11106. source: "./media/characters/chip/front.svg",
  11107. extra: 748 / 674
  11108. }
  11109. },
  11110. },
  11111. [
  11112. {
  11113. name: "Micro",
  11114. height: math.unit(1, "inch"),
  11115. default: true
  11116. },
  11117. ]
  11118. ))
  11119. characterMakers.push(() => makeCharacter(
  11120. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11121. {
  11122. side: {
  11123. height: math.unit(2.3, "meters"),
  11124. weight: math.unit(3500, "lb"),
  11125. name: "Side",
  11126. image: {
  11127. source: "./media/characters/torvid/side.svg",
  11128. extra: 1972 / 722,
  11129. bottom: 0.035
  11130. }
  11131. },
  11132. },
  11133. [
  11134. {
  11135. name: "Normal",
  11136. height: math.unit(2.3, "meters"),
  11137. default: true
  11138. },
  11139. ]
  11140. ))
  11141. characterMakers.push(() => makeCharacter(
  11142. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11143. {
  11144. front: {
  11145. height: math.unit(2, "meters"),
  11146. weight: math.unit(150.5, "kg"),
  11147. name: "Front",
  11148. image: {
  11149. source: "./media/characters/susan/front.svg",
  11150. extra: 693 / 635,
  11151. bottom: 0.05
  11152. }
  11153. },
  11154. },
  11155. [
  11156. {
  11157. name: "Megamacro",
  11158. height: math.unit(505, "miles"),
  11159. default: true
  11160. },
  11161. ]
  11162. ))
  11163. characterMakers.push(() => makeCharacter(
  11164. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11165. {
  11166. front: {
  11167. height: math.unit(6, "feet"),
  11168. weight: math.unit(150, "lb"),
  11169. name: "Front",
  11170. image: {
  11171. source: "./media/characters/raindrops/front.svg",
  11172. extra: 2655 / 2461,
  11173. bottom: 0.02
  11174. }
  11175. },
  11176. back: {
  11177. height: math.unit(6, "feet"),
  11178. weight: math.unit(150, "lb"),
  11179. name: "Back",
  11180. image: {
  11181. source: "./media/characters/raindrops/back.svg",
  11182. extra: 2574 / 2400,
  11183. bottom: 0.03
  11184. }
  11185. },
  11186. },
  11187. [
  11188. {
  11189. name: "Micro",
  11190. height: math.unit(6, "inches")
  11191. },
  11192. {
  11193. name: "Normal",
  11194. height: math.unit(6 + 2 / 12, "feet")
  11195. },
  11196. {
  11197. name: "Macro",
  11198. height: math.unit(131, "feet"),
  11199. default: true
  11200. },
  11201. {
  11202. name: "Megamacro",
  11203. height: math.unit(15, "miles")
  11204. },
  11205. {
  11206. name: "Gigamacro",
  11207. height: math.unit(4000, "miles")
  11208. },
  11209. {
  11210. name: "Teramacro",
  11211. height: math.unit(315000, "miles")
  11212. },
  11213. ]
  11214. ))
  11215. characterMakers.push(() => makeCharacter(
  11216. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11217. {
  11218. front: {
  11219. height: math.unit(2.794, "meters"),
  11220. weight: math.unit(325, "kg"),
  11221. name: "Front",
  11222. image: {
  11223. source: "./media/characters/tezwa/front.svg",
  11224. extra: 2083 / 1906,
  11225. bottom: 0.031
  11226. }
  11227. },
  11228. foot: {
  11229. height: math.unit(0.687, "meters"),
  11230. name: "Foot",
  11231. image: {
  11232. source: "./media/characters/tezwa/foot.svg"
  11233. }
  11234. },
  11235. },
  11236. [
  11237. {
  11238. name: "Normal",
  11239. height: math.unit(9 + 2 / 12, "feet"),
  11240. default: true
  11241. },
  11242. ]
  11243. ))
  11244. characterMakers.push(() => makeCharacter(
  11245. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11246. {
  11247. front: {
  11248. height: math.unit(58, "feet"),
  11249. weight: math.unit(89000, "lb"),
  11250. name: "Front",
  11251. image: {
  11252. source: "./media/characters/typhus/front.svg",
  11253. extra: 816 / 800,
  11254. bottom: 0.065
  11255. }
  11256. },
  11257. },
  11258. [
  11259. {
  11260. name: "Macro",
  11261. height: math.unit(58, "feet"),
  11262. default: true
  11263. },
  11264. ]
  11265. ))
  11266. characterMakers.push(() => makeCharacter(
  11267. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11268. {
  11269. front: {
  11270. height: math.unit(12, "feet"),
  11271. weight: math.unit(6, "tonnes"),
  11272. name: "Front",
  11273. image: {
  11274. source: "./media/characters/lyra-von-wulf/front.svg",
  11275. extra: 1,
  11276. bottom: 0.10
  11277. }
  11278. },
  11279. frontMecha: {
  11280. height: math.unit(12, "feet"),
  11281. weight: math.unit(12, "tonnes"),
  11282. name: "Front (Mecha)",
  11283. image: {
  11284. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11285. extra: 1,
  11286. bottom: 0.042
  11287. }
  11288. },
  11289. maw: {
  11290. height: math.unit(2.2, "feet"),
  11291. name: "Maw",
  11292. image: {
  11293. source: "./media/characters/lyra-von-wulf/maw.svg"
  11294. }
  11295. },
  11296. },
  11297. [
  11298. {
  11299. name: "Normal",
  11300. height: math.unit(12, "feet"),
  11301. default: true
  11302. },
  11303. {
  11304. name: "Classic",
  11305. height: math.unit(50, "feet")
  11306. },
  11307. {
  11308. name: "Macro",
  11309. height: math.unit(500, "feet")
  11310. },
  11311. {
  11312. name: "Megamacro",
  11313. height: math.unit(1, "mile")
  11314. },
  11315. {
  11316. name: "Gigamacro",
  11317. height: math.unit(400, "miles")
  11318. },
  11319. {
  11320. name: "Teramacro",
  11321. height: math.unit(22000, "miles")
  11322. },
  11323. {
  11324. name: "Solarmacro",
  11325. height: math.unit(8600000, "miles")
  11326. },
  11327. {
  11328. name: "Galactic",
  11329. height: math.unit(1057000, "lightyears")
  11330. },
  11331. ]
  11332. ))
  11333. characterMakers.push(() => makeCharacter(
  11334. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11335. {
  11336. front: {
  11337. height: math.unit(6 + 10 / 12, "feet"),
  11338. weight: math.unit(150, "lb"),
  11339. name: "Front",
  11340. image: {
  11341. source: "./media/characters/dixon/front.svg",
  11342. extra: 3361 / 3209,
  11343. bottom: 0.01
  11344. }
  11345. },
  11346. },
  11347. [
  11348. {
  11349. name: "Normal",
  11350. height: math.unit(6 + 10 / 12, "feet"),
  11351. default: true
  11352. },
  11353. {
  11354. name: "Big",
  11355. height: math.unit(12, "meters")
  11356. },
  11357. {
  11358. name: "Macro",
  11359. height: math.unit(500, "meters")
  11360. },
  11361. {
  11362. name: "Megamacro",
  11363. height: math.unit(2, "km")
  11364. },
  11365. ]
  11366. ))
  11367. characterMakers.push(() => makeCharacter(
  11368. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11369. {
  11370. front: {
  11371. height: math.unit(185, "cm"),
  11372. weight: math.unit(68, "kg"),
  11373. name: "Front",
  11374. image: {
  11375. source: "./media/characters/kauko/front.svg",
  11376. extra: 1455 / 1421,
  11377. bottom: 0.03
  11378. }
  11379. },
  11380. back: {
  11381. height: math.unit(185, "cm"),
  11382. weight: math.unit(68, "kg"),
  11383. name: "Back",
  11384. image: {
  11385. source: "./media/characters/kauko/back.svg",
  11386. extra: 1455 / 1421,
  11387. bottom: 0.004
  11388. }
  11389. },
  11390. },
  11391. [
  11392. {
  11393. name: "Normal",
  11394. height: math.unit(185, "cm"),
  11395. default: true
  11396. },
  11397. ]
  11398. ))
  11399. characterMakers.push(() => makeCharacter(
  11400. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11401. {
  11402. front: {
  11403. height: math.unit(6, "feet"),
  11404. weight: math.unit(150, "kg"),
  11405. name: "Front",
  11406. image: {
  11407. source: "./media/characters/varg/front.svg",
  11408. extra: 1108 / 1018,
  11409. bottom: 0.0375
  11410. }
  11411. },
  11412. },
  11413. [
  11414. {
  11415. name: "Normal",
  11416. height: math.unit(5, "meters")
  11417. },
  11418. {
  11419. name: "Macro",
  11420. height: math.unit(200, "meters")
  11421. },
  11422. {
  11423. name: "Megamacro",
  11424. height: math.unit(20, "kilometers")
  11425. },
  11426. {
  11427. name: "True Size",
  11428. height: math.unit(211, "km"),
  11429. default: true
  11430. },
  11431. {
  11432. name: "Gigamacro",
  11433. height: math.unit(1000, "km")
  11434. },
  11435. {
  11436. name: "Gigamacro+",
  11437. height: math.unit(8000, "km")
  11438. },
  11439. {
  11440. name: "Teramacro",
  11441. height: math.unit(1000000, "km")
  11442. },
  11443. ]
  11444. ))
  11445. characterMakers.push(() => makeCharacter(
  11446. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11447. {
  11448. front: {
  11449. height: math.unit(7 + 7 / 12, "feet"),
  11450. weight: math.unit(267, "lb"),
  11451. name: "Front",
  11452. image: {
  11453. source: "./media/characters/dayza/front.svg",
  11454. extra: 1262 / 1200,
  11455. bottom: 0.035
  11456. }
  11457. },
  11458. side: {
  11459. height: math.unit(7 + 7 / 12, "feet"),
  11460. weight: math.unit(267, "lb"),
  11461. name: "Side",
  11462. image: {
  11463. source: "./media/characters/dayza/side.svg",
  11464. extra: 1295 / 1245,
  11465. bottom: 0.05
  11466. }
  11467. },
  11468. back: {
  11469. height: math.unit(7 + 7 / 12, "feet"),
  11470. weight: math.unit(267, "lb"),
  11471. name: "Back",
  11472. image: {
  11473. source: "./media/characters/dayza/back.svg",
  11474. extra: 1241 / 1170
  11475. }
  11476. },
  11477. },
  11478. [
  11479. {
  11480. name: "Normal",
  11481. height: math.unit(7 + 7 / 12, "feet"),
  11482. default: true
  11483. },
  11484. {
  11485. name: "Macro",
  11486. height: math.unit(155, "feet")
  11487. },
  11488. ]
  11489. ))
  11490. characterMakers.push(() => makeCharacter(
  11491. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11492. {
  11493. front: {
  11494. height: math.unit(6 + 5 / 12, "feet"),
  11495. weight: math.unit(160, "lb"),
  11496. name: "Front",
  11497. image: {
  11498. source: "./media/characters/xanthos/front.svg",
  11499. extra: 1,
  11500. bottom: 0.04
  11501. }
  11502. },
  11503. back: {
  11504. height: math.unit(6 + 5 / 12, "feet"),
  11505. weight: math.unit(160, "lb"),
  11506. name: "Back",
  11507. image: {
  11508. source: "./media/characters/xanthos/back.svg",
  11509. extra: 1,
  11510. bottom: 0.03
  11511. }
  11512. },
  11513. hand: {
  11514. height: math.unit(0.928, "feet"),
  11515. name: "Hand",
  11516. image: {
  11517. source: "./media/characters/xanthos/hand.svg"
  11518. }
  11519. },
  11520. foot: {
  11521. height: math.unit(1.286, "feet"),
  11522. name: "Foot",
  11523. image: {
  11524. source: "./media/characters/xanthos/foot.svg"
  11525. }
  11526. },
  11527. },
  11528. [
  11529. {
  11530. name: "Normal",
  11531. height: math.unit(6 + 5 / 12, "feet"),
  11532. default: true
  11533. },
  11534. {
  11535. name: "Normal+",
  11536. height: math.unit(6, "meters")
  11537. },
  11538. {
  11539. name: "Macro",
  11540. height: math.unit(40, "feet")
  11541. },
  11542. {
  11543. name: "Macro+",
  11544. height: math.unit(200, "meters")
  11545. },
  11546. {
  11547. name: "Megamacro",
  11548. height: math.unit(20, "km")
  11549. },
  11550. {
  11551. name: "Megamacro+",
  11552. height: math.unit(100, "km")
  11553. },
  11554. ]
  11555. ))
  11556. characterMakers.push(() => makeCharacter(
  11557. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11558. {
  11559. front: {
  11560. height: math.unit(6 + 3 / 12, "feet"),
  11561. weight: math.unit(215, "lb"),
  11562. name: "Front",
  11563. image: {
  11564. source: "./media/characters/grynn/front.svg",
  11565. extra: 4627 / 4209,
  11566. bottom: 0.047
  11567. }
  11568. },
  11569. },
  11570. [
  11571. {
  11572. name: "Micro",
  11573. height: math.unit(6, "inches")
  11574. },
  11575. {
  11576. name: "Normal",
  11577. height: math.unit(6 + 3 / 12, "feet"),
  11578. default: true
  11579. },
  11580. {
  11581. name: "Big",
  11582. height: math.unit(104, "feet")
  11583. },
  11584. {
  11585. name: "Macro",
  11586. height: math.unit(944, "feet")
  11587. },
  11588. {
  11589. name: "Macro+",
  11590. height: math.unit(9480, "feet")
  11591. },
  11592. {
  11593. name: "Megamacro",
  11594. height: math.unit(78752, "feet")
  11595. },
  11596. {
  11597. name: "Megamacro+",
  11598. height: math.unit(630128, "feet")
  11599. },
  11600. {
  11601. name: "Megamacro++",
  11602. height: math.unit(3150695, "feet")
  11603. },
  11604. ]
  11605. ))
  11606. characterMakers.push(() => makeCharacter(
  11607. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11608. {
  11609. front: {
  11610. height: math.unit(7 + 5 / 12, "feet"),
  11611. weight: math.unit(450, "lb"),
  11612. name: "Front",
  11613. image: {
  11614. source: "./media/characters/mocha-aura/front.svg",
  11615. extra: 1907 / 1817,
  11616. bottom: 0.04
  11617. }
  11618. },
  11619. back: {
  11620. height: math.unit(7 + 5 / 12, "feet"),
  11621. weight: math.unit(450, "lb"),
  11622. name: "Back",
  11623. image: {
  11624. source: "./media/characters/mocha-aura/back.svg",
  11625. extra: 1900 / 1825,
  11626. bottom: 0.045
  11627. }
  11628. },
  11629. },
  11630. [
  11631. {
  11632. name: "Nano",
  11633. height: math.unit(1, "nm")
  11634. },
  11635. {
  11636. name: "Megamicro",
  11637. height: math.unit(1, "mm")
  11638. },
  11639. {
  11640. name: "Micro",
  11641. height: math.unit(3, "inches")
  11642. },
  11643. {
  11644. name: "Normal",
  11645. height: math.unit(7 + 5 / 12, "feet"),
  11646. default: true
  11647. },
  11648. {
  11649. name: "Macro",
  11650. height: math.unit(30, "feet")
  11651. },
  11652. {
  11653. name: "Megamacro",
  11654. height: math.unit(3500, "feet")
  11655. },
  11656. {
  11657. name: "Teramacro",
  11658. height: math.unit(500000, "miles")
  11659. },
  11660. {
  11661. name: "Petamacro",
  11662. height: math.unit(50000000000000000, "parsecs")
  11663. },
  11664. ]
  11665. ))
  11666. characterMakers.push(() => makeCharacter(
  11667. { name: "Ilisha Devya", species: ["alligator", "cobra"], tags: ["anthro"] },
  11668. {
  11669. front: {
  11670. height: math.unit(6, "feet"),
  11671. weight: math.unit(150, "lb"),
  11672. name: "Front",
  11673. image: {
  11674. source: "./media/characters/ilisha-devya/front.svg",
  11675. extra: 1,
  11676. bottom: 0.175
  11677. }
  11678. },
  11679. back: {
  11680. height: math.unit(6, "feet"),
  11681. weight: math.unit(150, "lb"),
  11682. name: "Back",
  11683. image: {
  11684. source: "./media/characters/ilisha-devya/back.svg",
  11685. extra: 1,
  11686. bottom: 0.015
  11687. }
  11688. },
  11689. },
  11690. [
  11691. {
  11692. name: "Macro",
  11693. height: math.unit(500, "feet"),
  11694. default: true
  11695. },
  11696. {
  11697. name: "Megamacro",
  11698. height: math.unit(10, "miles")
  11699. },
  11700. {
  11701. name: "Gigamacro",
  11702. height: math.unit(100000, "miles")
  11703. },
  11704. {
  11705. name: "Examacro",
  11706. height: math.unit(1e9, "lightyears")
  11707. },
  11708. {
  11709. name: "Omniversal",
  11710. height: math.unit(1e33, "lightyears")
  11711. },
  11712. {
  11713. name: "Beyond Infinite",
  11714. height: math.unit(1e100, "lightyears")
  11715. },
  11716. ]
  11717. ))
  11718. characterMakers.push(() => makeCharacter(
  11719. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11720. {
  11721. Side: {
  11722. height: math.unit(6, "feet"),
  11723. weight: math.unit(150, "lb"),
  11724. name: "Side",
  11725. image: {
  11726. source: "./media/characters/mira/side.svg",
  11727. extra: 900 / 799,
  11728. bottom: 0.02
  11729. }
  11730. },
  11731. },
  11732. [
  11733. {
  11734. name: "Human Size",
  11735. height: math.unit(6, "feet")
  11736. },
  11737. {
  11738. name: "Macro",
  11739. height: math.unit(100, "feet"),
  11740. default: true
  11741. },
  11742. {
  11743. name: "Megamacro",
  11744. height: math.unit(10, "miles")
  11745. },
  11746. {
  11747. name: "Gigamacro",
  11748. height: math.unit(25000, "miles")
  11749. },
  11750. {
  11751. name: "Teramacro",
  11752. height: math.unit(300, "AU")
  11753. },
  11754. {
  11755. name: "Full Size",
  11756. height: math.unit(4.5e10, "lightyears")
  11757. },
  11758. ]
  11759. ))
  11760. characterMakers.push(() => makeCharacter(
  11761. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11762. {
  11763. front: {
  11764. height: math.unit(6, "feet"),
  11765. weight: math.unit(150, "lb"),
  11766. name: "Front",
  11767. image: {
  11768. source: "./media/characters/holly/front.svg",
  11769. extra: 639 / 606
  11770. }
  11771. },
  11772. back: {
  11773. height: math.unit(6, "feet"),
  11774. weight: math.unit(150, "lb"),
  11775. name: "Back",
  11776. image: {
  11777. source: "./media/characters/holly/back.svg",
  11778. extra: 623 / 598
  11779. }
  11780. },
  11781. frontWorking: {
  11782. height: math.unit(6, "feet"),
  11783. weight: math.unit(150, "lb"),
  11784. name: "Front (Working)",
  11785. image: {
  11786. source: "./media/characters/holly/front-working.svg",
  11787. extra: 607 / 577,
  11788. bottom: 0.048
  11789. }
  11790. },
  11791. },
  11792. [
  11793. {
  11794. name: "Normal",
  11795. height: math.unit(12 + 3 / 12, "feet"),
  11796. default: true
  11797. },
  11798. ]
  11799. ))
  11800. characterMakers.push(() => makeCharacter(
  11801. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11802. {
  11803. front: {
  11804. height: math.unit(6, "feet"),
  11805. weight: math.unit(150, "lb"),
  11806. name: "Front",
  11807. image: {
  11808. source: "./media/characters/porter/front.svg",
  11809. extra: 1,
  11810. bottom: 0.01
  11811. }
  11812. },
  11813. frontRobes: {
  11814. height: math.unit(6, "feet"),
  11815. weight: math.unit(150, "lb"),
  11816. name: "Front (Robes)",
  11817. image: {
  11818. source: "./media/characters/porter/front-robes.svg",
  11819. extra: 1.01,
  11820. bottom: 0.01
  11821. }
  11822. },
  11823. },
  11824. [
  11825. {
  11826. name: "Normal",
  11827. height: math.unit(11 + 9 / 12, "feet"),
  11828. default: true
  11829. },
  11830. ]
  11831. ))
  11832. characterMakers.push(() => makeCharacter(
  11833. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  11834. {
  11835. legendary: {
  11836. height: math.unit(6, "feet"),
  11837. weight: math.unit(150, "lb"),
  11838. name: "Legendary",
  11839. image: {
  11840. source: "./media/characters/lucy/legendary.svg",
  11841. extra: 1355 / 1100,
  11842. bottom: 0.045
  11843. }
  11844. },
  11845. },
  11846. [
  11847. {
  11848. name: "Legendary",
  11849. height: math.unit(86882 * 2, "miles"),
  11850. default: true
  11851. },
  11852. ]
  11853. ))
  11854. characterMakers.push(() => makeCharacter(
  11855. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  11856. {
  11857. front: {
  11858. height: math.unit(6, "feet"),
  11859. weight: math.unit(150, "lb"),
  11860. name: "Front",
  11861. image: {
  11862. source: "./media/characters/drusilla/front.svg",
  11863. extra: 678 / 635,
  11864. bottom: 0.03
  11865. }
  11866. },
  11867. back: {
  11868. height: math.unit(6, "feet"),
  11869. weight: math.unit(150, "lb"),
  11870. name: "Back",
  11871. image: {
  11872. source: "./media/characters/drusilla/back.svg",
  11873. extra: 678 / 635,
  11874. bottom: 0.005
  11875. }
  11876. },
  11877. },
  11878. [
  11879. {
  11880. name: "Macro",
  11881. height: math.unit(100, "feet")
  11882. },
  11883. {
  11884. name: "Canon Height",
  11885. height: math.unit(2000, "feet"),
  11886. default: true
  11887. },
  11888. ]
  11889. ))
  11890. characterMakers.push(() => makeCharacter(
  11891. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  11892. {
  11893. front: {
  11894. height: math.unit(6, "feet"),
  11895. weight: math.unit(180, "lb"),
  11896. name: "Front",
  11897. image: {
  11898. source: "./media/characters/renard-thatch/front.svg",
  11899. extra: 2411 / 2275,
  11900. bottom: 0.01
  11901. }
  11902. },
  11903. frontPosing: {
  11904. height: math.unit(6, "feet"),
  11905. weight: math.unit(180, "lb"),
  11906. name: "Front (Posing)",
  11907. image: {
  11908. source: "./media/characters/renard-thatch/front-posing.svg",
  11909. extra: 2381 / 2261,
  11910. bottom: 0.01
  11911. }
  11912. },
  11913. back: {
  11914. height: math.unit(6, "feet"),
  11915. weight: math.unit(180, "lb"),
  11916. name: "Back",
  11917. image: {
  11918. source: "./media/characters/renard-thatch/back.svg",
  11919. extra: 2428 / 2288
  11920. }
  11921. },
  11922. },
  11923. [
  11924. {
  11925. name: "Micro",
  11926. height: math.unit(3, "inches")
  11927. },
  11928. {
  11929. name: "Default",
  11930. height: math.unit(6, "feet"),
  11931. default: true
  11932. },
  11933. {
  11934. name: "Macro",
  11935. height: math.unit(75, "feet")
  11936. },
  11937. ]
  11938. ))
  11939. characterMakers.push(() => makeCharacter(
  11940. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  11941. {
  11942. front: {
  11943. height: math.unit(1450, "feet"),
  11944. weight: math.unit(1.21e6, "tons"),
  11945. name: "Front",
  11946. image: {
  11947. source: "./media/characters/sekvra/front.svg",
  11948. extra: 1,
  11949. bottom: 0.03
  11950. }
  11951. },
  11952. frontClothed: {
  11953. height: math.unit(1450, "feet"),
  11954. weight: math.unit(1.21e6, "tons"),
  11955. name: "Front (Clothed)",
  11956. image: {
  11957. source: "./media/characters/sekvra/front-clothed.svg",
  11958. extra: 1,
  11959. bottom: 0.03
  11960. }
  11961. },
  11962. side: {
  11963. height: math.unit(1450, "feet"),
  11964. weight: math.unit(1.21e6, "tons"),
  11965. name: "Side",
  11966. image: {
  11967. source: "./media/characters/sekvra/side.svg",
  11968. extra: 1,
  11969. bottom: 0.025
  11970. }
  11971. },
  11972. back: {
  11973. height: math.unit(1450, "feet"),
  11974. weight: math.unit(1.21e6, "tons"),
  11975. name: "Back",
  11976. image: {
  11977. source: "./media/characters/sekvra/back.svg",
  11978. extra: 1,
  11979. bottom: 0.005
  11980. }
  11981. },
  11982. },
  11983. [
  11984. {
  11985. name: "Macro",
  11986. height: math.unit(1450, "feet"),
  11987. default: true
  11988. },
  11989. {
  11990. name: "Megamacro",
  11991. height: math.unit(15000, "feet")
  11992. },
  11993. ]
  11994. ))
  11995. characterMakers.push(() => makeCharacter(
  11996. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  11997. {
  11998. front: {
  11999. height: math.unit(6, "feet"),
  12000. weight: math.unit(150, "lb"),
  12001. name: "Front",
  12002. image: {
  12003. source: "./media/characters/carmine/front.svg",
  12004. extra: 1,
  12005. bottom: 0.035
  12006. }
  12007. },
  12008. frontArmor: {
  12009. height: math.unit(6, "feet"),
  12010. weight: math.unit(150, "lb"),
  12011. name: "Front (Armor)",
  12012. image: {
  12013. source: "./media/characters/carmine/front-armor.svg",
  12014. extra: 1,
  12015. bottom: 0.035
  12016. }
  12017. },
  12018. },
  12019. [
  12020. {
  12021. name: "Large",
  12022. height: math.unit(1, "mile")
  12023. },
  12024. {
  12025. name: "Huge",
  12026. height: math.unit(40, "miles"),
  12027. default: true
  12028. },
  12029. {
  12030. name: "Colossal",
  12031. height: math.unit(2500, "miles")
  12032. },
  12033. ]
  12034. ))
  12035. characterMakers.push(() => makeCharacter(
  12036. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12037. {
  12038. front: {
  12039. height: math.unit(6, "feet"),
  12040. weight: math.unit(150, "lb"),
  12041. name: "Front",
  12042. image: {
  12043. source: "./media/characters/elyssia/front.svg",
  12044. extra: 2201 / 2035,
  12045. bottom: 0.05
  12046. }
  12047. },
  12048. frontClothed: {
  12049. height: math.unit(6, "feet"),
  12050. weight: math.unit(150, "lb"),
  12051. name: "Front (Clothed)",
  12052. image: {
  12053. source: "./media/characters/elyssia/front-clothed.svg",
  12054. extra: 2201 / 2035,
  12055. bottom: 0.05
  12056. }
  12057. },
  12058. back: {
  12059. height: math.unit(6, "feet"),
  12060. weight: math.unit(150, "lb"),
  12061. name: "Back",
  12062. image: {
  12063. source: "./media/characters/elyssia/back.svg",
  12064. extra: 2201 / 2035,
  12065. bottom: 0.013
  12066. }
  12067. },
  12068. },
  12069. [
  12070. {
  12071. name: "Smaller",
  12072. height: math.unit(150, "feet")
  12073. },
  12074. {
  12075. name: "Standard",
  12076. height: math.unit(1400, "feet"),
  12077. default: true
  12078. },
  12079. {
  12080. name: "Distracted",
  12081. height: math.unit(15000, "feet")
  12082. },
  12083. ]
  12084. ))
  12085. characterMakers.push(() => makeCharacter(
  12086. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12087. {
  12088. front: {
  12089. height: math.unit(7 + 4 / 12, "feet"),
  12090. weight: math.unit(500, "lb"),
  12091. name: "Front",
  12092. image: {
  12093. source: "./media/characters/geno-maxwell/front.svg",
  12094. extra: 2207 / 2040,
  12095. bottom: 0.015
  12096. }
  12097. },
  12098. },
  12099. [
  12100. {
  12101. name: "Micro",
  12102. height: math.unit(3, "inches")
  12103. },
  12104. {
  12105. name: "Normal",
  12106. height: math.unit(7 + 4 / 12, "feet"),
  12107. default: true
  12108. },
  12109. {
  12110. name: "Macro",
  12111. height: math.unit(220, "feet")
  12112. },
  12113. {
  12114. name: "Megamacro",
  12115. height: math.unit(11, "miles")
  12116. },
  12117. ]
  12118. ))
  12119. characterMakers.push(() => makeCharacter(
  12120. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12121. {
  12122. front: {
  12123. height: math.unit(7 + 4 / 12, "feet"),
  12124. weight: math.unit(500, "lb"),
  12125. name: "Front",
  12126. image: {
  12127. source: "./media/characters/regena-maxwell/front.svg",
  12128. extra: 3115 / 2770,
  12129. bottom: 0.02
  12130. }
  12131. },
  12132. },
  12133. [
  12134. {
  12135. name: "Normal",
  12136. height: math.unit(7 + 4 / 12, "feet"),
  12137. default: true
  12138. },
  12139. {
  12140. name: "Macro",
  12141. height: math.unit(220, "feet")
  12142. },
  12143. {
  12144. name: "Megamacro",
  12145. height: math.unit(11, "miles")
  12146. },
  12147. ]
  12148. ))
  12149. characterMakers.push(() => makeCharacter(
  12150. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12151. {
  12152. front: {
  12153. height: math.unit(6, "feet"),
  12154. weight: math.unit(150, "lb"),
  12155. name: "Front",
  12156. image: {
  12157. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12158. extra: 860 / 690,
  12159. bottom: 0.03
  12160. }
  12161. },
  12162. },
  12163. [
  12164. {
  12165. name: "Normal",
  12166. height: math.unit(1.7, "meters"),
  12167. default: true
  12168. },
  12169. ]
  12170. ))
  12171. characterMakers.push(() => makeCharacter(
  12172. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12173. {
  12174. front: {
  12175. height: math.unit(6, "feet"),
  12176. weight: math.unit(150, "lb"),
  12177. name: "Front",
  12178. image: {
  12179. source: "./media/characters/quilly/front.svg",
  12180. extra: 890 / 776
  12181. }
  12182. },
  12183. },
  12184. [
  12185. {
  12186. name: "Gigamacro",
  12187. height: math.unit(404090, "miles"),
  12188. default: true
  12189. },
  12190. ]
  12191. ))
  12192. characterMakers.push(() => makeCharacter(
  12193. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12194. {
  12195. front: {
  12196. height: math.unit(7 + 8 / 12, "feet"),
  12197. weight: math.unit(350, "lb"),
  12198. name: "Front",
  12199. image: {
  12200. source: "./media/characters/tempest/front.svg",
  12201. extra: 1175 / 1086,
  12202. bottom: 0.02
  12203. }
  12204. },
  12205. },
  12206. [
  12207. {
  12208. name: "Normal",
  12209. height: math.unit(7 + 8 / 12, "feet"),
  12210. default: true
  12211. },
  12212. ]
  12213. ))
  12214. characterMakers.push(() => makeCharacter(
  12215. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12216. {
  12217. side: {
  12218. height: math.unit(4 + 5 / 12, "feet"),
  12219. weight: math.unit(80, "lb"),
  12220. name: "Side",
  12221. image: {
  12222. source: "./media/characters/rodger/side.svg",
  12223. extra: 1235 / 1118
  12224. }
  12225. },
  12226. },
  12227. [
  12228. {
  12229. name: "Micro",
  12230. height: math.unit(1, "inch")
  12231. },
  12232. {
  12233. name: "Normal",
  12234. height: math.unit(4 + 5 / 12, "feet"),
  12235. default: true
  12236. },
  12237. {
  12238. name: "Macro",
  12239. height: math.unit(120, "feet")
  12240. },
  12241. ]
  12242. ))
  12243. characterMakers.push(() => makeCharacter(
  12244. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12245. {
  12246. front: {
  12247. height: math.unit(6, "feet"),
  12248. weight: math.unit(150, "lb"),
  12249. name: "Front",
  12250. image: {
  12251. source: "./media/characters/danyel/front.svg",
  12252. extra: 1185 / 1123,
  12253. bottom: 0.05
  12254. }
  12255. },
  12256. },
  12257. [
  12258. {
  12259. name: "Shrunken",
  12260. height: math.unit(0.5, "mm")
  12261. },
  12262. {
  12263. name: "Micro",
  12264. height: math.unit(1, "mm"),
  12265. default: true
  12266. },
  12267. {
  12268. name: "Upsized",
  12269. height: math.unit(5 + 5 / 12, "feet")
  12270. },
  12271. ]
  12272. ))
  12273. characterMakers.push(() => makeCharacter(
  12274. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12275. {
  12276. front: {
  12277. height: math.unit(5 + 6 / 12, "feet"),
  12278. weight: math.unit(200, "lb"),
  12279. name: "Front",
  12280. image: {
  12281. source: "./media/characters/vivian-bijoux/front.svg",
  12282. extra: 1,
  12283. bottom: 0.072
  12284. }
  12285. },
  12286. },
  12287. [
  12288. {
  12289. name: "Normal",
  12290. height: math.unit(5 + 6 / 12, "feet"),
  12291. default: true
  12292. },
  12293. {
  12294. name: "Bad Dream",
  12295. height: math.unit(500, "feet")
  12296. },
  12297. {
  12298. name: "Nightmare",
  12299. height: math.unit(500, "miles")
  12300. },
  12301. ]
  12302. ))
  12303. characterMakers.push(() => makeCharacter(
  12304. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12305. {
  12306. front: {
  12307. height: math.unit(6 + 1 / 12, "feet"),
  12308. weight: math.unit(260, "lb"),
  12309. name: "Front",
  12310. image: {
  12311. source: "./media/characters/zeta/front.svg",
  12312. extra: 1968 / 1889,
  12313. bottom: 0.06
  12314. }
  12315. },
  12316. back: {
  12317. height: math.unit(6 + 1 / 12, "feet"),
  12318. weight: math.unit(260, "lb"),
  12319. name: "Back",
  12320. image: {
  12321. source: "./media/characters/zeta/back.svg",
  12322. extra: 1944 / 1858,
  12323. bottom: 0.03
  12324. }
  12325. },
  12326. hand: {
  12327. height: math.unit(1.112, "feet"),
  12328. name: "Hand",
  12329. image: {
  12330. source: "./media/characters/zeta/hand.svg"
  12331. }
  12332. },
  12333. foot: {
  12334. height: math.unit(1.48, "feet"),
  12335. name: "Foot",
  12336. image: {
  12337. source: "./media/characters/zeta/foot.svg"
  12338. }
  12339. },
  12340. },
  12341. [
  12342. {
  12343. name: "Micro",
  12344. height: math.unit(6, "inches")
  12345. },
  12346. {
  12347. name: "Normal",
  12348. height: math.unit(6 + 1 / 12, "feet"),
  12349. default: true
  12350. },
  12351. {
  12352. name: "Macro",
  12353. height: math.unit(20, "feet")
  12354. },
  12355. ]
  12356. ))
  12357. characterMakers.push(() => makeCharacter(
  12358. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12359. {
  12360. front: {
  12361. height: math.unit(6, "feet"),
  12362. weight: math.unit(150, "lb"),
  12363. name: "Front",
  12364. image: {
  12365. source: "./media/characters/jamie-larsen/front.svg",
  12366. extra: 962 / 933,
  12367. bottom: 0.02
  12368. }
  12369. },
  12370. back: {
  12371. height: math.unit(6, "feet"),
  12372. weight: math.unit(150, "lb"),
  12373. name: "Back",
  12374. image: {
  12375. source: "./media/characters/jamie-larsen/back.svg",
  12376. extra: 997 / 946
  12377. }
  12378. },
  12379. },
  12380. [
  12381. {
  12382. name: "Macro",
  12383. height: math.unit(28 + 7 / 12, "feet"),
  12384. default: true
  12385. },
  12386. {
  12387. name: "Macro+",
  12388. height: math.unit(180, "feet")
  12389. },
  12390. {
  12391. name: "Megamacro",
  12392. height: math.unit(10, "miles")
  12393. },
  12394. {
  12395. name: "Gigamacro",
  12396. height: math.unit(200000, "miles")
  12397. },
  12398. ]
  12399. ))
  12400. characterMakers.push(() => makeCharacter(
  12401. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12402. {
  12403. front: {
  12404. height: math.unit(6, "feet"),
  12405. weight: math.unit(120, "lb"),
  12406. name: "Front",
  12407. image: {
  12408. source: "./media/characters/vance/front.svg",
  12409. extra: 1980 / 1890,
  12410. bottom: 0.09
  12411. }
  12412. },
  12413. back: {
  12414. height: math.unit(6, "feet"),
  12415. weight: math.unit(120, "lb"),
  12416. name: "Back",
  12417. image: {
  12418. source: "./media/characters/vance/back.svg",
  12419. extra: 2081 / 1994,
  12420. bottom: 0.014
  12421. }
  12422. },
  12423. hand: {
  12424. height: math.unit(0.88, "feet"),
  12425. name: "Hand",
  12426. image: {
  12427. source: "./media/characters/vance/hand.svg"
  12428. }
  12429. },
  12430. foot: {
  12431. height: math.unit(0.64, "feet"),
  12432. name: "Foot",
  12433. image: {
  12434. source: "./media/characters/vance/foot.svg"
  12435. }
  12436. },
  12437. },
  12438. [
  12439. {
  12440. name: "Small",
  12441. height: math.unit(90, "feet"),
  12442. default: true
  12443. },
  12444. {
  12445. name: "Macro",
  12446. height: math.unit(100, "meters")
  12447. },
  12448. {
  12449. name: "Megamacro",
  12450. height: math.unit(15, "miles")
  12451. },
  12452. ]
  12453. ))
  12454. characterMakers.push(() => makeCharacter(
  12455. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12456. {
  12457. front: {
  12458. height: math.unit(6, "feet"),
  12459. weight: math.unit(180, "lb"),
  12460. name: "Front",
  12461. image: {
  12462. source: "./media/characters/xochitl/front.svg",
  12463. extra: 2297 / 2261,
  12464. bottom: 0.065
  12465. }
  12466. },
  12467. back: {
  12468. height: math.unit(6, "feet"),
  12469. weight: math.unit(180, "lb"),
  12470. name: "Back",
  12471. image: {
  12472. source: "./media/characters/xochitl/back.svg",
  12473. extra: 2386 / 2354,
  12474. bottom: 0.01
  12475. }
  12476. },
  12477. foot: {
  12478. height: math.unit(6 / 5 * 1.15, "feet"),
  12479. weight: math.unit(150, "lb"),
  12480. name: "Foot",
  12481. image: {
  12482. source: "./media/characters/xochitl/foot.svg"
  12483. }
  12484. },
  12485. },
  12486. [
  12487. {
  12488. name: "Macro",
  12489. height: math.unit(80, "feet")
  12490. },
  12491. {
  12492. name: "Macro+",
  12493. height: math.unit(400, "feet"),
  12494. default: true
  12495. },
  12496. {
  12497. name: "Gigamacro",
  12498. height: math.unit(80000, "miles")
  12499. },
  12500. {
  12501. name: "Gigamacro+",
  12502. height: math.unit(400000, "miles")
  12503. },
  12504. {
  12505. name: "Teramacro",
  12506. height: math.unit(300, "AU")
  12507. },
  12508. ]
  12509. ))
  12510. characterMakers.push(() => makeCharacter(
  12511. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12512. {
  12513. front: {
  12514. height: math.unit(6, "feet"),
  12515. weight: math.unit(150, "lb"),
  12516. name: "Front",
  12517. image: {
  12518. source: "./media/characters/vincent/front.svg",
  12519. extra: 1130 / 1080,
  12520. bottom: 0.055
  12521. }
  12522. },
  12523. beak: {
  12524. height: math.unit(6 * 0.1, "feet"),
  12525. name: "Beak",
  12526. image: {
  12527. source: "./media/characters/vincent/beak.svg"
  12528. }
  12529. },
  12530. hand: {
  12531. height: math.unit(6 * 0.85, "feet"),
  12532. weight: math.unit(150, "lb"),
  12533. name: "Hand",
  12534. image: {
  12535. source: "./media/characters/vincent/hand.svg"
  12536. }
  12537. },
  12538. foot: {
  12539. height: math.unit(6 * 0.19, "feet"),
  12540. weight: math.unit(150, "lb"),
  12541. name: "Foot",
  12542. image: {
  12543. source: "./media/characters/vincent/foot.svg"
  12544. }
  12545. },
  12546. },
  12547. [
  12548. {
  12549. name: "Base",
  12550. height: math.unit(6 + 5 / 12, "feet"),
  12551. default: true
  12552. },
  12553. {
  12554. name: "Macro",
  12555. height: math.unit(300, "feet")
  12556. },
  12557. {
  12558. name: "Megamacro",
  12559. height: math.unit(2, "miles")
  12560. },
  12561. {
  12562. name: "Gigamacro",
  12563. height: math.unit(1000, "miles")
  12564. },
  12565. ]
  12566. ))
  12567. characterMakers.push(() => makeCharacter(
  12568. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12569. {
  12570. front: {
  12571. height: math.unit(6 + 2 / 12, "feet"),
  12572. weight: math.unit(265, "lb"),
  12573. name: "Front",
  12574. image: {
  12575. source: "./media/characters/jay/front.svg",
  12576. extra: 1510 / 1430,
  12577. bottom: 0.042
  12578. }
  12579. },
  12580. back: {
  12581. height: math.unit(6 + 2 / 12, "feet"),
  12582. weight: math.unit(265, "lb"),
  12583. name: "Back",
  12584. image: {
  12585. source: "./media/characters/jay/back.svg",
  12586. extra: 1510 / 1430,
  12587. bottom: 0.025
  12588. }
  12589. },
  12590. clothed: {
  12591. height: math.unit(6 + 2 / 12, "feet"),
  12592. weight: math.unit(265, "lb"),
  12593. name: "Front (Clothed)",
  12594. image: {
  12595. source: "./media/characters/jay/clothed.svg",
  12596. extra: 744 / 699,
  12597. bottom: 0.043
  12598. }
  12599. },
  12600. head: {
  12601. height: math.unit(1.772, "feet"),
  12602. name: "Head",
  12603. image: {
  12604. source: "./media/characters/jay/head.svg"
  12605. }
  12606. },
  12607. sizeRay: {
  12608. height: math.unit(1.331, "feet"),
  12609. name: "Size Ray",
  12610. image: {
  12611. source: "./media/characters/jay/size-ray.svg"
  12612. }
  12613. },
  12614. },
  12615. [
  12616. {
  12617. name: "Micro",
  12618. height: math.unit(1, "inch")
  12619. },
  12620. {
  12621. name: "Normal",
  12622. height: math.unit(6 + 2 / 12, "feet"),
  12623. default: true
  12624. },
  12625. {
  12626. name: "Macro",
  12627. height: math.unit(1, "mile")
  12628. },
  12629. {
  12630. name: "Megamacro",
  12631. height: math.unit(100, "miles")
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12637. {
  12638. front: {
  12639. height: math.unit(2, "meters"),
  12640. weight: math.unit(500, "kg"),
  12641. name: "Front",
  12642. image: {
  12643. source: "./media/characters/coatl/front.svg",
  12644. extra: 3948 / 3500,
  12645. bottom: 0.082
  12646. }
  12647. },
  12648. },
  12649. [
  12650. {
  12651. name: "Normal",
  12652. height: math.unit(4, "meters")
  12653. },
  12654. {
  12655. name: "Macro",
  12656. height: math.unit(100, "meters"),
  12657. default: true
  12658. },
  12659. {
  12660. name: "Macro+",
  12661. height: math.unit(300, "meters")
  12662. },
  12663. {
  12664. name: "Megamacro",
  12665. height: math.unit(3, "gigameters")
  12666. },
  12667. {
  12668. name: "Megamacro+",
  12669. height: math.unit(300, "terameters")
  12670. },
  12671. {
  12672. name: "Megamacro++",
  12673. height: math.unit(3, "lightyears")
  12674. },
  12675. ]
  12676. ))
  12677. characterMakers.push(() => makeCharacter(
  12678. { name: "Shiroryu", species: ["dragon"], tags: ["anthro"] },
  12679. {
  12680. front: {
  12681. height: math.unit(6, "feet"),
  12682. weight: math.unit(50, "kg"),
  12683. name: "front",
  12684. image: {
  12685. source: "./media/characters/shiroryu/front.svg",
  12686. extra: 1990 / 1935
  12687. }
  12688. },
  12689. },
  12690. [
  12691. {
  12692. name: "Mortal Mingling",
  12693. height: math.unit(3, "meters")
  12694. },
  12695. {
  12696. name: "Kaiju-ish",
  12697. height: math.unit(250, "meters")
  12698. },
  12699. {
  12700. name: "Somewhat Godly",
  12701. height: math.unit(400, "km"),
  12702. default: true
  12703. },
  12704. {
  12705. name: "Planetary",
  12706. height: math.unit(300, "megameters")
  12707. },
  12708. {
  12709. name: "Galaxy-dwarfing",
  12710. height: math.unit(450, "kiloparsecs")
  12711. },
  12712. {
  12713. name: "Universe Eater",
  12714. height: math.unit(150, "gigaparsecs")
  12715. },
  12716. {
  12717. name: "Almost Immeasurable",
  12718. height: math.unit(1.3e266, "yottaparsecs")
  12719. },
  12720. ]
  12721. ))
  12722. characterMakers.push(() => makeCharacter(
  12723. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12724. {
  12725. front: {
  12726. height: math.unit(6, "feet"),
  12727. weight: math.unit(150, "lb"),
  12728. name: "Front",
  12729. image: {
  12730. source: "./media/characters/umeko/front.svg",
  12731. extra: 1,
  12732. bottom: 0.019
  12733. }
  12734. },
  12735. frontArmored: {
  12736. height: math.unit(6, "feet"),
  12737. weight: math.unit(150, "lb"),
  12738. name: "Front (Armored)",
  12739. image: {
  12740. source: "./media/characters/umeko/front-armored.svg",
  12741. extra: 1,
  12742. bottom: 0.021
  12743. }
  12744. },
  12745. },
  12746. [
  12747. {
  12748. name: "Macro",
  12749. height: math.unit(220, "feet"),
  12750. default: true
  12751. },
  12752. {
  12753. name: "Guardian Dragon",
  12754. height: math.unit(50, "miles")
  12755. },
  12756. {
  12757. name: "Cosmic",
  12758. height: math.unit(800000, "miles")
  12759. },
  12760. ]
  12761. ))
  12762. characterMakers.push(() => makeCharacter(
  12763. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12764. {
  12765. front: {
  12766. height: math.unit(6, "feet"),
  12767. weight: math.unit(150, "lb"),
  12768. name: "Front",
  12769. image: {
  12770. source: "./media/characters/cassidy/front.svg",
  12771. extra: 1,
  12772. bottom: 0.043
  12773. }
  12774. },
  12775. },
  12776. [
  12777. {
  12778. name: "Canon Height",
  12779. height: math.unit(120, "feet"),
  12780. default: true
  12781. },
  12782. {
  12783. name: "Macro+",
  12784. height: math.unit(400, "feet")
  12785. },
  12786. {
  12787. name: "Macro++",
  12788. height: math.unit(4000, "feet")
  12789. },
  12790. {
  12791. name: "Megamacro",
  12792. height: math.unit(3, "miles")
  12793. },
  12794. ]
  12795. ))
  12796. characterMakers.push(() => makeCharacter(
  12797. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12798. {
  12799. front: {
  12800. height: math.unit(6, "feet"),
  12801. weight: math.unit(150, "lb"),
  12802. name: "Front",
  12803. image: {
  12804. source: "./media/characters/isaac/front.svg",
  12805. extra: 896 / 815,
  12806. bottom: 0.11
  12807. }
  12808. },
  12809. },
  12810. [
  12811. {
  12812. name: "Human Size",
  12813. height: math.unit(8, "feet"),
  12814. default: true
  12815. },
  12816. {
  12817. name: "Macro",
  12818. height: math.unit(400, "feet")
  12819. },
  12820. {
  12821. name: "Megamacro",
  12822. height: math.unit(50, "miles")
  12823. },
  12824. {
  12825. name: "Canon Height",
  12826. height: math.unit(200, "AU")
  12827. },
  12828. ]
  12829. ))
  12830. characterMakers.push(() => makeCharacter(
  12831. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  12832. {
  12833. front: {
  12834. height: math.unit(6, "feet"),
  12835. weight: math.unit(72, "kg"),
  12836. name: "Front",
  12837. image: {
  12838. source: "./media/characters/sleekit/front.svg",
  12839. extra: 4693 / 4487,
  12840. bottom: 0.012
  12841. }
  12842. },
  12843. },
  12844. [
  12845. {
  12846. name: "Minimum Height",
  12847. height: math.unit(10, "meters")
  12848. },
  12849. {
  12850. name: "Smaller",
  12851. height: math.unit(25, "meters")
  12852. },
  12853. {
  12854. name: "Larger",
  12855. height: math.unit(38, "meters"),
  12856. default: true
  12857. },
  12858. {
  12859. name: "Maximum height",
  12860. height: math.unit(100, "meters")
  12861. },
  12862. ]
  12863. ))
  12864. characterMakers.push(() => makeCharacter(
  12865. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  12866. {
  12867. front: {
  12868. height: math.unit(6, "feet"),
  12869. weight: math.unit(150, "lb"),
  12870. name: "Front",
  12871. image: {
  12872. source: "./media/characters/nillia/front.svg",
  12873. extra: 2195 / 2037,
  12874. bottom: 0.005
  12875. }
  12876. },
  12877. back: {
  12878. height: math.unit(6, "feet"),
  12879. weight: math.unit(150, "lb"),
  12880. name: "Back",
  12881. image: {
  12882. source: "./media/characters/nillia/back.svg",
  12883. extra: 2195 / 2037,
  12884. bottom: 0.005
  12885. }
  12886. },
  12887. },
  12888. [
  12889. {
  12890. name: "Canon Height",
  12891. height: math.unit(489, "feet"),
  12892. default: true
  12893. }
  12894. ]
  12895. ))
  12896. characterMakers.push(() => makeCharacter(
  12897. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  12898. {
  12899. front: {
  12900. height: math.unit(6, "feet"),
  12901. weight: math.unit(150, "lb"),
  12902. name: "Front",
  12903. image: {
  12904. source: "./media/characters/mesmyriza/front.svg",
  12905. extra: 2067 / 1784,
  12906. bottom: 0.035
  12907. }
  12908. },
  12909. foot: {
  12910. height: math.unit(6 / (250 / 35), "feet"),
  12911. name: "Foot",
  12912. image: {
  12913. source: "./media/characters/mesmyriza/foot.svg"
  12914. }
  12915. },
  12916. },
  12917. [
  12918. {
  12919. name: "Macro",
  12920. height: math.unit(457, "meters"),
  12921. default: true
  12922. },
  12923. {
  12924. name: "Megamacro",
  12925. height: math.unit(8, "megameters")
  12926. },
  12927. ]
  12928. ))
  12929. characterMakers.push(() => makeCharacter(
  12930. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  12931. {
  12932. front: {
  12933. height: math.unit(6, "feet"),
  12934. weight: math.unit(250, "lb"),
  12935. name: "Front",
  12936. image: {
  12937. source: "./media/characters/saudade/front.svg",
  12938. extra: 1172 / 1139,
  12939. bottom: 0.035
  12940. }
  12941. },
  12942. },
  12943. [
  12944. {
  12945. name: "Micro",
  12946. height: math.unit(3, "inches")
  12947. },
  12948. {
  12949. name: "Normal",
  12950. height: math.unit(6, "feet"),
  12951. default: true
  12952. },
  12953. {
  12954. name: "Macro",
  12955. height: math.unit(50, "feet")
  12956. },
  12957. {
  12958. name: "Megamacro",
  12959. height: math.unit(2800, "feet")
  12960. },
  12961. ]
  12962. ))
  12963. characterMakers.push(() => makeCharacter(
  12964. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  12965. {
  12966. front: {
  12967. height: math.unit(5 + 4 / 12, "feet"),
  12968. weight: math.unit(100, "lb"),
  12969. name: "Front",
  12970. image: {
  12971. source: "./media/characters/keireer/front.svg",
  12972. extra: 716 / 666,
  12973. bottom: 0.05
  12974. }
  12975. },
  12976. },
  12977. [
  12978. {
  12979. name: "Normal",
  12980. height: math.unit(5 + 4 / 12, "feet"),
  12981. default: true
  12982. },
  12983. ]
  12984. ))
  12985. characterMakers.push(() => makeCharacter(
  12986. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  12987. {
  12988. front: {
  12989. height: math.unit(6, "feet"),
  12990. weight: math.unit(90, "kg"),
  12991. name: "Front",
  12992. image: {
  12993. source: "./media/characters/mirja/front.svg",
  12994. extra: 1789 / 1683,
  12995. bottom: 0.05
  12996. }
  12997. },
  12998. frontDressed: {
  12999. height: math.unit(6, "feet"),
  13000. weight: math.unit(90, "lb"),
  13001. name: "Front (Dressed)",
  13002. image: {
  13003. source: "./media/characters/mirja/front-dressed.svg",
  13004. extra: 1789 / 1683,
  13005. bottom: 0.05
  13006. }
  13007. },
  13008. back: {
  13009. height: math.unit(6, "feet"),
  13010. weight: math.unit(90, "lb"),
  13011. name: "Back",
  13012. image: {
  13013. source: "./media/characters/mirja/back.svg",
  13014. extra: 953 / 917,
  13015. bottom: 0.017
  13016. }
  13017. },
  13018. },
  13019. [
  13020. {
  13021. name: "\"Incognito\"",
  13022. height: math.unit(3, "meters")
  13023. },
  13024. {
  13025. name: "Strolling Size",
  13026. height: math.unit(15, "km")
  13027. },
  13028. {
  13029. name: "Larger Strolling Size",
  13030. height: math.unit(400, "km")
  13031. },
  13032. {
  13033. name: "Preferred Size",
  13034. height: math.unit(5000, "km")
  13035. },
  13036. {
  13037. name: "True Size",
  13038. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13039. default: true
  13040. },
  13041. ]
  13042. ))
  13043. characterMakers.push(() => makeCharacter(
  13044. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13045. {
  13046. front: {
  13047. height: math.unit(15, "feet"),
  13048. weight: math.unit(880, "kg"),
  13049. name: "Front",
  13050. image: {
  13051. source: "./media/characters/nightraver/front.svg",
  13052. extra: 2444 / 2160,
  13053. bottom: 0.027
  13054. }
  13055. },
  13056. back: {
  13057. height: math.unit(15, "feet"),
  13058. weight: math.unit(880, "kg"),
  13059. name: "Back",
  13060. image: {
  13061. source: "./media/characters/nightraver/back.svg",
  13062. extra: 2309 / 2180,
  13063. bottom: 0.005
  13064. }
  13065. },
  13066. sole: {
  13067. height: math.unit(2.878, "feet"),
  13068. name: "Sole",
  13069. image: {
  13070. source: "./media/characters/nightraver/sole.svg"
  13071. }
  13072. },
  13073. foot: {
  13074. height: math.unit(2.285, "feet"),
  13075. name: "Foot",
  13076. image: {
  13077. source: "./media/characters/nightraver/foot.svg"
  13078. }
  13079. },
  13080. maw: {
  13081. height: math.unit(2.67, "feet"),
  13082. name: "Maw",
  13083. image: {
  13084. source: "./media/characters/nightraver/maw.svg"
  13085. }
  13086. },
  13087. },
  13088. [
  13089. {
  13090. name: "Micro",
  13091. height: math.unit(1, "cm")
  13092. },
  13093. {
  13094. name: "Normal",
  13095. height: math.unit(15, "feet"),
  13096. default: true
  13097. },
  13098. {
  13099. name: "Macro",
  13100. height: math.unit(300, "feet")
  13101. },
  13102. {
  13103. name: "Megamacro",
  13104. height: math.unit(300, "miles")
  13105. },
  13106. {
  13107. name: "Gigamacro",
  13108. height: math.unit(10000, "miles")
  13109. },
  13110. ]
  13111. ))
  13112. characterMakers.push(() => makeCharacter(
  13113. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13114. {
  13115. side: {
  13116. height: math.unit(2, "inches"),
  13117. weight: math.unit(5, "grams"),
  13118. name: "Side",
  13119. image: {
  13120. source: "./media/characters/arc/side.svg"
  13121. }
  13122. },
  13123. },
  13124. [
  13125. {
  13126. name: "Micro",
  13127. height: math.unit(2, "inches"),
  13128. default: true
  13129. },
  13130. ]
  13131. ))
  13132. characterMakers.push(() => makeCharacter(
  13133. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13134. {
  13135. front: {
  13136. height: math.unit(1.1938, "meters"),
  13137. weight: math.unit(54, "kg"),
  13138. name: "Front",
  13139. image: {
  13140. source: "./media/characters/nebula-shahar/front.svg",
  13141. extra: 1642 / 1436,
  13142. bottom: 0.06
  13143. }
  13144. },
  13145. },
  13146. [
  13147. {
  13148. name: "Megamicro",
  13149. height: math.unit(0.3, "mm")
  13150. },
  13151. {
  13152. name: "Micro",
  13153. height: math.unit(3, "cm")
  13154. },
  13155. {
  13156. name: "Normal",
  13157. height: math.unit(138, "cm"),
  13158. default: true
  13159. },
  13160. {
  13161. name: "Macro",
  13162. height: math.unit(30, "m")
  13163. },
  13164. ]
  13165. ))
  13166. characterMakers.push(() => makeCharacter(
  13167. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13168. {
  13169. front: {
  13170. height: math.unit(5.24, "feet"),
  13171. weight: math.unit(150, "lb"),
  13172. name: "Front",
  13173. image: {
  13174. source: "./media/characters/shayla/front.svg",
  13175. extra: 1512 / 1414,
  13176. bottom: 0.01
  13177. }
  13178. },
  13179. back: {
  13180. height: math.unit(5.24, "feet"),
  13181. weight: math.unit(150, "lb"),
  13182. name: "Back",
  13183. image: {
  13184. source: "./media/characters/shayla/back.svg",
  13185. extra: 1512 / 1414
  13186. }
  13187. },
  13188. hand: {
  13189. height: math.unit(0.7781496062992126, "feet"),
  13190. name: "Hand",
  13191. image: {
  13192. source: "./media/characters/shayla/hand.svg"
  13193. }
  13194. },
  13195. foot: {
  13196. height: math.unit(1.4206036745406823, "feet"),
  13197. name: "Foot",
  13198. image: {
  13199. source: "./media/characters/shayla/foot.svg"
  13200. }
  13201. },
  13202. },
  13203. [
  13204. {
  13205. name: "Micro",
  13206. height: math.unit(0.32, "feet")
  13207. },
  13208. {
  13209. name: "Normal",
  13210. height: math.unit(5.24, "feet"),
  13211. default: true
  13212. },
  13213. {
  13214. name: "Macro",
  13215. height: math.unit(492.12, "feet")
  13216. },
  13217. {
  13218. name: "Megamacro",
  13219. height: math.unit(186.41, "miles")
  13220. },
  13221. ]
  13222. ))
  13223. characterMakers.push(() => makeCharacter(
  13224. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13225. {
  13226. front: {
  13227. height: math.unit(2.2, "m"),
  13228. weight: math.unit(120, "kg"),
  13229. name: "Front",
  13230. image: {
  13231. source: "./media/characters/pia-jr/front.svg",
  13232. extra: 1000 / 970,
  13233. bottom: 0.035
  13234. }
  13235. },
  13236. hand: {
  13237. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13238. name: "Hand",
  13239. image: {
  13240. source: "./media/characters/pia-jr/hand.svg"
  13241. }
  13242. },
  13243. paw: {
  13244. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13245. name: "Paw",
  13246. image: {
  13247. source: "./media/characters/pia-jr/paw.svg"
  13248. }
  13249. },
  13250. },
  13251. [
  13252. {
  13253. name: "Micro",
  13254. height: math.unit(1.2, "cm")
  13255. },
  13256. {
  13257. name: "Normal",
  13258. height: math.unit(2.2, "m"),
  13259. default: true
  13260. },
  13261. {
  13262. name: "Macro",
  13263. height: math.unit(180, "m")
  13264. },
  13265. {
  13266. name: "Megamacro",
  13267. height: math.unit(420, "km")
  13268. },
  13269. ]
  13270. ))
  13271. characterMakers.push(() => makeCharacter(
  13272. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13273. {
  13274. front: {
  13275. height: math.unit(2, "m"),
  13276. weight: math.unit(115, "kg"),
  13277. name: "Front",
  13278. image: {
  13279. source: "./media/characters/pia-sr/front.svg",
  13280. extra: 760 / 730,
  13281. bottom: 0.015
  13282. }
  13283. },
  13284. back: {
  13285. height: math.unit(2, "m"),
  13286. weight: math.unit(115, "kg"),
  13287. name: "Back",
  13288. image: {
  13289. source: "./media/characters/pia-sr/back.svg",
  13290. extra: 760 / 730,
  13291. bottom: 0.01
  13292. }
  13293. },
  13294. hand: {
  13295. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13296. name: "Hand",
  13297. image: {
  13298. source: "./media/characters/pia-sr/hand.svg"
  13299. }
  13300. },
  13301. foot: {
  13302. height: math.unit(1.83, "feet"),
  13303. name: "Foot",
  13304. image: {
  13305. source: "./media/characters/pia-sr/foot.svg"
  13306. }
  13307. },
  13308. },
  13309. [
  13310. {
  13311. name: "Micro",
  13312. height: math.unit(88, "mm")
  13313. },
  13314. {
  13315. name: "Normal",
  13316. height: math.unit(2, "m"),
  13317. default: true
  13318. },
  13319. {
  13320. name: "Macro",
  13321. height: math.unit(200, "m")
  13322. },
  13323. {
  13324. name: "Megamacro",
  13325. height: math.unit(420, "km")
  13326. },
  13327. ]
  13328. ))
  13329. characterMakers.push(() => makeCharacter(
  13330. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13331. {
  13332. front: {
  13333. height: math.unit(8 + 2 / 12, "feet"),
  13334. weight: math.unit(300, "lb"),
  13335. name: "Front",
  13336. image: {
  13337. source: "./media/characters/kibibyte/front.svg",
  13338. extra: 2221 / 2098,
  13339. bottom: 0.04
  13340. }
  13341. },
  13342. },
  13343. [
  13344. {
  13345. name: "Normal",
  13346. height: math.unit(8 + 2 / 12, "feet"),
  13347. default: true
  13348. },
  13349. {
  13350. name: "Socialable Macro",
  13351. height: math.unit(50, "feet")
  13352. },
  13353. {
  13354. name: "Macro",
  13355. height: math.unit(300, "feet")
  13356. },
  13357. {
  13358. name: "Megamacro",
  13359. height: math.unit(500, "miles")
  13360. },
  13361. ]
  13362. ))
  13363. characterMakers.push(() => makeCharacter(
  13364. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13365. {
  13366. front: {
  13367. height: math.unit(6, "feet"),
  13368. weight: math.unit(150, "lb"),
  13369. name: "Front",
  13370. image: {
  13371. source: "./media/characters/felix/front.svg",
  13372. extra: 762 / 722,
  13373. bottom: 0.02
  13374. }
  13375. },
  13376. frontClothed: {
  13377. height: math.unit(6, "feet"),
  13378. weight: math.unit(150, "lb"),
  13379. name: "Front (Clothed)",
  13380. image: {
  13381. source: "./media/characters/felix/front-clothed.svg",
  13382. extra: 762 / 722,
  13383. bottom: 0.02
  13384. }
  13385. },
  13386. },
  13387. [
  13388. {
  13389. name: "Normal",
  13390. height: math.unit(6 + 8 / 12, "feet"),
  13391. default: true
  13392. },
  13393. {
  13394. name: "Macro",
  13395. height: math.unit(2600, "feet")
  13396. },
  13397. {
  13398. name: "Megamacro",
  13399. height: math.unit(450, "miles")
  13400. },
  13401. ]
  13402. ))
  13403. characterMakers.push(() => makeCharacter(
  13404. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13405. {
  13406. front: {
  13407. height: math.unit(6 + 1 / 12, "feet"),
  13408. weight: math.unit(250, "lb"),
  13409. name: "Front",
  13410. image: {
  13411. source: "./media/characters/tobo/front.svg",
  13412. extra: 608 / 586,
  13413. bottom: 0.023
  13414. }
  13415. },
  13416. back: {
  13417. height: math.unit(6 + 1 / 12, "feet"),
  13418. weight: math.unit(250, "lb"),
  13419. name: "Back",
  13420. image: {
  13421. source: "./media/characters/tobo/back.svg",
  13422. extra: 608 / 586
  13423. }
  13424. },
  13425. },
  13426. [
  13427. {
  13428. name: "Nano",
  13429. height: math.unit(2, "nm")
  13430. },
  13431. {
  13432. name: "Megamicro",
  13433. height: math.unit(0.1, "mm")
  13434. },
  13435. {
  13436. name: "Micro",
  13437. height: math.unit(1, "inch"),
  13438. default: true
  13439. },
  13440. {
  13441. name: "Human-sized",
  13442. height: math.unit(6 + 1 / 12, "feet")
  13443. },
  13444. {
  13445. name: "Macro",
  13446. height: math.unit(250, "feet")
  13447. },
  13448. {
  13449. name: "Megamacro",
  13450. height: math.unit(75, "miles")
  13451. },
  13452. {
  13453. name: "Texas-sized",
  13454. height: math.unit(750, "miles")
  13455. },
  13456. {
  13457. name: "Teramacro",
  13458. height: math.unit(50000, "miles")
  13459. },
  13460. ]
  13461. ))
  13462. characterMakers.push(() => makeCharacter(
  13463. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13464. {
  13465. front: {
  13466. height: math.unit(6, "feet"),
  13467. weight: math.unit(269, "lb"),
  13468. name: "Front",
  13469. image: {
  13470. source: "./media/characters/danny-kapowsky/front.svg",
  13471. extra: 766 / 736,
  13472. bottom: 0.044
  13473. }
  13474. },
  13475. back: {
  13476. height: math.unit(6, "feet"),
  13477. weight: math.unit(269, "lb"),
  13478. name: "Back",
  13479. image: {
  13480. source: "./media/characters/danny-kapowsky/back.svg",
  13481. extra: 797 / 760,
  13482. bottom: 0.025
  13483. }
  13484. },
  13485. },
  13486. [
  13487. {
  13488. name: "Macro",
  13489. height: math.unit(150, "feet"),
  13490. default: true
  13491. },
  13492. {
  13493. name: "Macro+",
  13494. height: math.unit(200, "feet")
  13495. },
  13496. {
  13497. name: "Macro++",
  13498. height: math.unit(300, "feet")
  13499. },
  13500. {
  13501. name: "Macro+++",
  13502. height: math.unit(400, "feet")
  13503. },
  13504. ]
  13505. ))
  13506. characterMakers.push(() => makeCharacter(
  13507. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13508. {
  13509. side: {
  13510. height: math.unit(6, "feet"),
  13511. weight: math.unit(170, "lb"),
  13512. name: "Side",
  13513. image: {
  13514. source: "./media/characters/finn/side.svg",
  13515. extra: 1953 / 1807,
  13516. bottom: 0.057
  13517. }
  13518. },
  13519. },
  13520. [
  13521. {
  13522. name: "Megamacro",
  13523. height: math.unit(14445, "feet"),
  13524. default: true
  13525. },
  13526. ]
  13527. ))
  13528. characterMakers.push(() => makeCharacter(
  13529. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13530. {
  13531. front: {
  13532. height: math.unit(5 + 6 / 12, "feet"),
  13533. weight: math.unit(125, "lb"),
  13534. name: "Front",
  13535. image: {
  13536. source: "./media/characters/roy/front.svg",
  13537. extra: 1,
  13538. bottom: 0.11
  13539. }
  13540. },
  13541. },
  13542. [
  13543. {
  13544. name: "Micro",
  13545. height: math.unit(3, "inches"),
  13546. default: true
  13547. },
  13548. {
  13549. name: "Normal",
  13550. height: math.unit(5 + 6 / 12, "feet")
  13551. },
  13552. {
  13553. name: "Lesser Macro",
  13554. height: math.unit(60, "feet")
  13555. },
  13556. {
  13557. name: "Greater Macro",
  13558. height: math.unit(120, "feet")
  13559. },
  13560. ]
  13561. ))
  13562. characterMakers.push(() => makeCharacter(
  13563. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13564. {
  13565. front: {
  13566. height: math.unit(6, "feet"),
  13567. weight: math.unit(100, "lb"),
  13568. name: "Front",
  13569. image: {
  13570. source: "./media/characters/aevsivs/front.svg",
  13571. extra: 1,
  13572. bottom: 0.03
  13573. }
  13574. },
  13575. back: {
  13576. height: math.unit(6, "feet"),
  13577. weight: math.unit(100, "lb"),
  13578. name: "Back",
  13579. image: {
  13580. source: "./media/characters/aevsivs/back.svg"
  13581. }
  13582. },
  13583. },
  13584. [
  13585. {
  13586. name: "Micro",
  13587. height: math.unit(2, "inches"),
  13588. default: true
  13589. },
  13590. {
  13591. name: "Normal",
  13592. height: math.unit(5, "feet")
  13593. },
  13594. ]
  13595. ))
  13596. characterMakers.push(() => makeCharacter(
  13597. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13598. {
  13599. front: {
  13600. height: math.unit(5 + 7 / 12, "feet"),
  13601. weight: math.unit(159, "lb"),
  13602. name: "Front",
  13603. image: {
  13604. source: "./media/characters/hildegard/front.svg",
  13605. extra: 312 / 286,
  13606. bottom: 0.005
  13607. }
  13608. },
  13609. },
  13610. [
  13611. {
  13612. name: "Normal",
  13613. height: math.unit(5 + 7 / 12, "feet"),
  13614. default: true
  13615. },
  13616. ]
  13617. ))
  13618. characterMakers.push(() => makeCharacter(
  13619. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13620. {
  13621. bernard: {
  13622. height: math.unit(2 + 7 / 12, "feet"),
  13623. weight: math.unit(66, "lb"),
  13624. name: "Bernard",
  13625. rename: true,
  13626. image: {
  13627. source: "./media/characters/bernard-wilder/bernard.svg",
  13628. extra: 192 / 128,
  13629. bottom: 0.05
  13630. }
  13631. },
  13632. wilder: {
  13633. height: math.unit(5 + 8 / 12, "feet"),
  13634. weight: math.unit(143, "lb"),
  13635. name: "Wilder",
  13636. rename: true,
  13637. image: {
  13638. source: "./media/characters/bernard-wilder/wilder.svg",
  13639. extra: 361 / 312,
  13640. bottom: 0.02
  13641. }
  13642. },
  13643. },
  13644. [
  13645. {
  13646. name: "Normal",
  13647. height: math.unit(2 + 7 / 12, "feet"),
  13648. default: true
  13649. },
  13650. ]
  13651. ))
  13652. characterMakers.push(() => makeCharacter(
  13653. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13654. {
  13655. anthro: {
  13656. height: math.unit(6 + 1 / 12, "feet"),
  13657. weight: math.unit(155, "lb"),
  13658. name: "Anthro",
  13659. image: {
  13660. source: "./media/characters/hearth/anthro.svg",
  13661. extra: 260 / 250,
  13662. bottom: 0.02
  13663. }
  13664. },
  13665. feral: {
  13666. height: math.unit(3.78, "feet"),
  13667. weight: math.unit(35, "kg"),
  13668. name: "Feral",
  13669. image: {
  13670. source: "./media/characters/hearth/feral.svg",
  13671. extra: 153 / 135,
  13672. bottom: 0.03
  13673. }
  13674. },
  13675. },
  13676. [
  13677. {
  13678. name: "Normal",
  13679. height: math.unit(6 + 1 / 12, "feet"),
  13680. default: true
  13681. },
  13682. ]
  13683. ))
  13684. characterMakers.push(() => makeCharacter(
  13685. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13686. {
  13687. front: {
  13688. height: math.unit(6, "feet"),
  13689. weight: math.unit(182, "lb"),
  13690. name: "Front",
  13691. image: {
  13692. source: "./media/characters/ingrid/front.svg",
  13693. extra: 294 / 268,
  13694. bottom: 0.027
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Normal",
  13701. height: math.unit(6, "feet"),
  13702. default: true
  13703. },
  13704. ]
  13705. ))
  13706. characterMakers.push(() => makeCharacter(
  13707. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13708. {
  13709. eevee: {
  13710. height: math.unit(2 + 10 / 12, "feet"),
  13711. weight: math.unit(86, "lb"),
  13712. name: "Malgam",
  13713. image: {
  13714. source: "./media/characters/malgam/eevee.svg",
  13715. extra: 218 / 180,
  13716. bottom: 0.2
  13717. }
  13718. },
  13719. sylveon: {
  13720. height: math.unit(4, "feet"),
  13721. weight: math.unit(101, "lb"),
  13722. name: "Future Malgam",
  13723. rename: true,
  13724. image: {
  13725. source: "./media/characters/malgam/sylveon.svg",
  13726. extra: 371 / 325,
  13727. bottom: 0.015
  13728. }
  13729. },
  13730. gigantamax: {
  13731. height: math.unit(50, "feet"),
  13732. name: "Gigantamax Malgam",
  13733. rename: true,
  13734. image: {
  13735. source: "./media/characters/malgam/gigantamax.svg"
  13736. }
  13737. },
  13738. },
  13739. [
  13740. {
  13741. name: "Normal",
  13742. height: math.unit(2 + 10 / 12, "feet"),
  13743. default: true
  13744. },
  13745. ]
  13746. ))
  13747. characterMakers.push(() => makeCharacter(
  13748. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13749. {
  13750. front: {
  13751. height: math.unit(5 + 11 / 12, "feet"),
  13752. weight: math.unit(188, "lb"),
  13753. name: "Front",
  13754. image: {
  13755. source: "./media/characters/fleur/front.svg",
  13756. extra: 309 / 283,
  13757. bottom: 0.007
  13758. }
  13759. },
  13760. },
  13761. [
  13762. {
  13763. name: "Normal",
  13764. height: math.unit(5 + 11 / 12, "feet"),
  13765. default: true
  13766. },
  13767. ]
  13768. ))
  13769. characterMakers.push(() => makeCharacter(
  13770. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13771. {
  13772. front: {
  13773. height: math.unit(5 + 4 / 12, "feet"),
  13774. weight: math.unit(122, "lb"),
  13775. name: "Front",
  13776. image: {
  13777. source: "./media/characters/jude/front.svg",
  13778. extra: 288 / 273,
  13779. bottom: 0.03
  13780. }
  13781. },
  13782. },
  13783. [
  13784. {
  13785. name: "Normal",
  13786. height: math.unit(5 + 4 / 12, "feet"),
  13787. default: true
  13788. },
  13789. ]
  13790. ))
  13791. characterMakers.push(() => makeCharacter(
  13792. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13793. {
  13794. front: {
  13795. height: math.unit(5 + 11 / 12, "feet"),
  13796. weight: math.unit(190, "lb"),
  13797. name: "Front",
  13798. image: {
  13799. source: "./media/characters/seara/front.svg",
  13800. extra: 1,
  13801. bottom: 0.05
  13802. }
  13803. },
  13804. },
  13805. [
  13806. {
  13807. name: "Normal",
  13808. height: math.unit(5 + 11 / 12, "feet"),
  13809. default: true
  13810. },
  13811. ]
  13812. ))
  13813. characterMakers.push(() => makeCharacter(
  13814. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  13815. {
  13816. front: {
  13817. height: math.unit(16 + 5 / 12, "feet"),
  13818. weight: math.unit(524, "lb"),
  13819. name: "Front",
  13820. image: {
  13821. source: "./media/characters/caspian/front.svg",
  13822. extra: 1,
  13823. bottom: 0.04
  13824. }
  13825. },
  13826. },
  13827. [
  13828. {
  13829. name: "Normal",
  13830. height: math.unit(16 + 5 / 12, "feet"),
  13831. default: true
  13832. },
  13833. ]
  13834. ))
  13835. characterMakers.push(() => makeCharacter(
  13836. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  13837. {
  13838. front: {
  13839. height: math.unit(5 + 7 / 12, "feet"),
  13840. weight: math.unit(170, "lb"),
  13841. name: "Front",
  13842. image: {
  13843. source: "./media/characters/mika/front.svg",
  13844. extra: 1,
  13845. bottom: 0.016
  13846. }
  13847. },
  13848. },
  13849. [
  13850. {
  13851. name: "Normal",
  13852. height: math.unit(5 + 7 / 12, "feet"),
  13853. default: true
  13854. },
  13855. ]
  13856. ))
  13857. characterMakers.push(() => makeCharacter(
  13858. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  13859. {
  13860. front: {
  13861. height: math.unit(6 + 2 / 12, "feet"),
  13862. weight: math.unit(268, "lb"),
  13863. name: "Front",
  13864. image: {
  13865. source: "./media/characters/sol/front.svg",
  13866. extra: 247 / 231,
  13867. bottom: 0.05
  13868. }
  13869. },
  13870. },
  13871. [
  13872. {
  13873. name: "Normal",
  13874. height: math.unit(6 + 2 / 12, "feet"),
  13875. default: true
  13876. },
  13877. ]
  13878. ))
  13879. characterMakers.push(() => makeCharacter(
  13880. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  13881. {
  13882. buizel: {
  13883. height: math.unit(2 + 5 / 12, "feet"),
  13884. weight: math.unit(87, "lb"),
  13885. name: "Buizel",
  13886. image: {
  13887. source: "./media/characters/umiko/buizel.svg",
  13888. extra: 172 / 157,
  13889. bottom: 0.01
  13890. }
  13891. },
  13892. floatzel: {
  13893. height: math.unit(5 + 9 / 12, "feet"),
  13894. weight: math.unit(250, "lb"),
  13895. name: "Floatzel",
  13896. image: {
  13897. source: "./media/characters/umiko/floatzel.svg",
  13898. extra: 262 / 248
  13899. }
  13900. },
  13901. },
  13902. [
  13903. {
  13904. name: "Normal",
  13905. height: math.unit(2 + 5 / 12, "feet"),
  13906. default: true
  13907. },
  13908. ]
  13909. ))
  13910. characterMakers.push(() => makeCharacter(
  13911. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  13912. {
  13913. front: {
  13914. height: math.unit(6 + 2 / 12, "feet"),
  13915. weight: math.unit(146, "lb"),
  13916. name: "Front",
  13917. image: {
  13918. source: "./media/characters/iliac/front.svg",
  13919. extra: 389 / 365,
  13920. bottom: 0.035
  13921. }
  13922. },
  13923. },
  13924. [
  13925. {
  13926. name: "Normal",
  13927. height: math.unit(6 + 2 / 12, "feet"),
  13928. default: true
  13929. },
  13930. ]
  13931. ))
  13932. characterMakers.push(() => makeCharacter(
  13933. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  13934. {
  13935. front: {
  13936. height: math.unit(6, "feet"),
  13937. weight: math.unit(170, "lb"),
  13938. name: "Front",
  13939. image: {
  13940. source: "./media/characters/topaz/front.svg",
  13941. extra: 317 / 303,
  13942. bottom: 0.055
  13943. }
  13944. },
  13945. },
  13946. [
  13947. {
  13948. name: "Normal",
  13949. height: math.unit(6, "feet"),
  13950. default: true
  13951. },
  13952. ]
  13953. ))
  13954. characterMakers.push(() => makeCharacter(
  13955. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  13956. {
  13957. front: {
  13958. height: math.unit(5 + 11 / 12, "feet"),
  13959. weight: math.unit(144, "lb"),
  13960. name: "Front",
  13961. image: {
  13962. source: "./media/characters/gabriel/front.svg",
  13963. extra: 285 / 262,
  13964. bottom: 0.004
  13965. }
  13966. },
  13967. },
  13968. [
  13969. {
  13970. name: "Normal",
  13971. height: math.unit(5 + 11 / 12, "feet"),
  13972. default: true
  13973. },
  13974. ]
  13975. ))
  13976. characterMakers.push(() => makeCharacter(
  13977. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  13978. {
  13979. side: {
  13980. height: math.unit(6 + 5 / 12, "feet"),
  13981. weight: math.unit(300, "lb"),
  13982. name: "Side",
  13983. image: {
  13984. source: "./media/characters/tempest-suicune/side.svg",
  13985. extra: 195 / 154,
  13986. bottom: 0.04
  13987. }
  13988. },
  13989. },
  13990. [
  13991. {
  13992. name: "Normal",
  13993. height: math.unit(6 + 5 / 12, "feet"),
  13994. default: true
  13995. },
  13996. ]
  13997. ))
  13998. characterMakers.push(() => makeCharacter(
  13999. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14000. {
  14001. front: {
  14002. height: math.unit(7 + 2 / 12, "feet"),
  14003. weight: math.unit(322, "lb"),
  14004. name: "Front",
  14005. image: {
  14006. source: "./media/characters/vulcan/front.svg",
  14007. extra: 154 / 147,
  14008. bottom: 0.04
  14009. }
  14010. },
  14011. },
  14012. [
  14013. {
  14014. name: "Normal",
  14015. height: math.unit(7 + 2 / 12, "feet"),
  14016. default: true
  14017. },
  14018. ]
  14019. ))
  14020. characterMakers.push(() => makeCharacter(
  14021. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14022. {
  14023. front: {
  14024. height: math.unit(5 + 10 / 12, "feet"),
  14025. weight: math.unit(264, "lb"),
  14026. name: "Front",
  14027. image: {
  14028. source: "./media/characters/gault/front.svg",
  14029. extra: 161 / 140,
  14030. bottom: 0.028
  14031. }
  14032. },
  14033. },
  14034. [
  14035. {
  14036. name: "Normal",
  14037. height: math.unit(5 + 10 / 12, "feet"),
  14038. default: true
  14039. },
  14040. ]
  14041. ))
  14042. characterMakers.push(() => makeCharacter(
  14043. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14044. {
  14045. front: {
  14046. height: math.unit(6, "feet"),
  14047. weight: math.unit(150, "lb"),
  14048. name: "Front",
  14049. image: {
  14050. source: "./media/characters/shard/front.svg",
  14051. extra: 273 / 238,
  14052. bottom: 0.02
  14053. }
  14054. },
  14055. },
  14056. [
  14057. {
  14058. name: "Normal",
  14059. height: math.unit(3 + 6 / 12, "feet"),
  14060. default: true
  14061. },
  14062. ]
  14063. ))
  14064. characterMakers.push(() => makeCharacter(
  14065. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14066. {
  14067. front: {
  14068. height: math.unit(5 + 11 / 12, "feet"),
  14069. weight: math.unit(146, "lb"),
  14070. name: "Front",
  14071. image: {
  14072. source: "./media/characters/ashe/front.svg",
  14073. extra: 400 / 373,
  14074. bottom: 0.01
  14075. }
  14076. },
  14077. },
  14078. [
  14079. {
  14080. name: "Normal",
  14081. height: math.unit(5 + 11 / 12, "feet"),
  14082. default: true
  14083. },
  14084. ]
  14085. ))
  14086. characterMakers.push(() => makeCharacter(
  14087. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14088. {
  14089. front: {
  14090. height: math.unit(5 + 5 / 12, "feet"),
  14091. weight: math.unit(135, "lb"),
  14092. name: "Front",
  14093. image: {
  14094. source: "./media/characters/beatrix/front.svg",
  14095. extra: 392 / 379,
  14096. bottom: 0.01
  14097. }
  14098. },
  14099. },
  14100. [
  14101. {
  14102. name: "Normal",
  14103. height: math.unit(6, "feet"),
  14104. default: true
  14105. },
  14106. ]
  14107. ))
  14108. characterMakers.push(() => makeCharacter(
  14109. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14110. {
  14111. front: {
  14112. height: math.unit(6, "feet"),
  14113. weight: math.unit(150, "lb"),
  14114. name: "Front",
  14115. image: {
  14116. source: "./media/characters/ignatius/front.svg",
  14117. extra: 245 / 222,
  14118. bottom: 0.01
  14119. }
  14120. },
  14121. },
  14122. [
  14123. {
  14124. name: "Normal",
  14125. height: math.unit(5 + 5 / 12, "feet"),
  14126. default: true
  14127. },
  14128. ]
  14129. ))
  14130. characterMakers.push(() => makeCharacter(
  14131. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14132. {
  14133. front: {
  14134. height: math.unit(6 + 2 / 12, "feet"),
  14135. weight: math.unit(138, "lb"),
  14136. name: "Front",
  14137. image: {
  14138. source: "./media/characters/mei-li/front.svg",
  14139. extra: 237 / 229,
  14140. bottom: 0.03
  14141. }
  14142. },
  14143. },
  14144. [
  14145. {
  14146. name: "Normal",
  14147. height: math.unit(6 + 2 / 12, "feet"),
  14148. default: true
  14149. },
  14150. ]
  14151. ))
  14152. characterMakers.push(() => makeCharacter(
  14153. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14154. {
  14155. front: {
  14156. height: math.unit(2 + 4 / 12, "feet"),
  14157. weight: math.unit(62, "lb"),
  14158. name: "Front",
  14159. image: {
  14160. source: "./media/characters/puru/front.svg",
  14161. extra: 206 / 149,
  14162. bottom: 0.06
  14163. }
  14164. },
  14165. },
  14166. [
  14167. {
  14168. name: "Normal",
  14169. height: math.unit(2 + 4 / 12, "feet"),
  14170. default: true
  14171. },
  14172. ]
  14173. ))
  14174. characterMakers.push(() => makeCharacter(
  14175. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14176. {
  14177. taur: {
  14178. height: math.unit(11, "feet"),
  14179. weight: math.unit(500, "lb"),
  14180. name: "Taur",
  14181. image: {
  14182. source: "./media/characters/kee/taur.svg",
  14183. extra: 1,
  14184. bottom: 0.04
  14185. }
  14186. },
  14187. },
  14188. [
  14189. {
  14190. name: "Normal",
  14191. height: math.unit(11, "feet"),
  14192. default: true
  14193. },
  14194. ]
  14195. ))
  14196. characterMakers.push(() => makeCharacter(
  14197. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14198. {
  14199. anthro: {
  14200. height: math.unit(7, "feet"),
  14201. weight: math.unit(190, "lb"),
  14202. name: "Anthro",
  14203. image: {
  14204. source: "./media/characters/cobalt-dracha/anthro.svg",
  14205. extra: 231 / 225,
  14206. bottom: 0.04
  14207. }
  14208. },
  14209. feral: {
  14210. height: math.unit(9 + 7 / 12, "feet"),
  14211. weight: math.unit(294, "lb"),
  14212. name: "Feral",
  14213. image: {
  14214. source: "./media/characters/cobalt-dracha/feral.svg",
  14215. extra: 692 / 633,
  14216. bottom: 0.05
  14217. }
  14218. },
  14219. },
  14220. [
  14221. {
  14222. name: "Normal",
  14223. height: math.unit(7, "feet"),
  14224. default: true
  14225. },
  14226. ]
  14227. ))
  14228. characterMakers.push(() => makeCharacter(
  14229. { name: "Java", species: ["snake"], tags: ["naga"] },
  14230. {
  14231. fallen: {
  14232. height: math.unit(11 + 8 / 12, "feet"),
  14233. weight: math.unit(485, "lb"),
  14234. name: "Java (Fallen)",
  14235. rename: true,
  14236. image: {
  14237. source: "./media/characters/java/fallen.svg",
  14238. extra: 226 / 208,
  14239. bottom: 0.005
  14240. }
  14241. },
  14242. godkin: {
  14243. height: math.unit(10 + 6 / 12, "feet"),
  14244. weight: math.unit(328, "lb"),
  14245. name: "Java (Godkin)",
  14246. rename: true,
  14247. image: {
  14248. source: "./media/characters/java/godkin.svg",
  14249. extra: 270 / 262,
  14250. bottom: 0.02
  14251. }
  14252. },
  14253. },
  14254. [
  14255. {
  14256. name: "Normal",
  14257. height: math.unit(11 + 8 / 12, "feet"),
  14258. default: true
  14259. },
  14260. ]
  14261. ))
  14262. characterMakers.push(() => makeCharacter(
  14263. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14264. {
  14265. front: {
  14266. height: math.unit(7 + 8 / 12, "feet"),
  14267. weight: math.unit(320, "lb"),
  14268. name: "Front",
  14269. image: {
  14270. source: "./media/characters/skoll/front.svg",
  14271. extra: 232 / 220,
  14272. bottom: 0.02
  14273. }
  14274. },
  14275. },
  14276. [
  14277. {
  14278. name: "Normal",
  14279. height: math.unit(7 + 8 / 12, "feet"),
  14280. default: true
  14281. },
  14282. ]
  14283. ))
  14284. characterMakers.push(() => makeCharacter(
  14285. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14286. {
  14287. front: {
  14288. height: math.unit(5 + 9 / 12, "feet"),
  14289. weight: math.unit(170, "lb"),
  14290. name: "Front",
  14291. image: {
  14292. source: "./media/characters/purna/front.svg",
  14293. extra: 239 / 229,
  14294. bottom: 0.01
  14295. }
  14296. },
  14297. },
  14298. [
  14299. {
  14300. name: "Normal",
  14301. height: math.unit(5 + 9 / 12, "feet"),
  14302. default: true
  14303. },
  14304. ]
  14305. ))
  14306. characterMakers.push(() => makeCharacter(
  14307. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14308. {
  14309. front: {
  14310. height: math.unit(5 + 9 / 12, "feet"),
  14311. weight: math.unit(142, "lb"),
  14312. name: "Front",
  14313. image: {
  14314. source: "./media/characters/kuva/front.svg",
  14315. extra: 281 / 271,
  14316. bottom: 0.006
  14317. }
  14318. },
  14319. },
  14320. [
  14321. {
  14322. name: "Normal",
  14323. height: math.unit(5 + 9 / 12, "feet"),
  14324. default: true
  14325. },
  14326. ]
  14327. ))
  14328. characterMakers.push(() => makeCharacter(
  14329. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14330. {
  14331. anthro: {
  14332. height: math.unit(9 + 2 / 12, "feet"),
  14333. weight: math.unit(270, "lb"),
  14334. name: "Anthro",
  14335. image: {
  14336. source: "./media/characters/embra/anthro.svg",
  14337. extra: 200 / 187,
  14338. bottom: 0.02
  14339. }
  14340. },
  14341. feral: {
  14342. height: math.unit(18 + 8 / 12, "feet"),
  14343. weight: math.unit(576, "lb"),
  14344. name: "Feral",
  14345. image: {
  14346. source: "./media/characters/embra/feral.svg",
  14347. extra: 152 / 137,
  14348. bottom: 0.037
  14349. }
  14350. },
  14351. },
  14352. [
  14353. {
  14354. name: "Normal",
  14355. height: math.unit(9 + 2 / 12, "feet"),
  14356. default: true
  14357. },
  14358. ]
  14359. ))
  14360. characterMakers.push(() => makeCharacter(
  14361. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14362. {
  14363. anthro: {
  14364. height: math.unit(10 + 9 / 12, "feet"),
  14365. weight: math.unit(224, "lb"),
  14366. name: "Anthro",
  14367. image: {
  14368. source: "./media/characters/grottos/anthro.svg",
  14369. extra: 350 / 332,
  14370. bottom: 0.045
  14371. }
  14372. },
  14373. feral: {
  14374. height: math.unit(20 + 7 / 12, "feet"),
  14375. weight: math.unit(629, "lb"),
  14376. name: "Feral",
  14377. image: {
  14378. source: "./media/characters/grottos/feral.svg",
  14379. extra: 207 / 190,
  14380. bottom: 0.05
  14381. }
  14382. },
  14383. },
  14384. [
  14385. {
  14386. name: "Normal",
  14387. height: math.unit(10 + 9 / 12, "feet"),
  14388. default: true
  14389. },
  14390. ]
  14391. ))
  14392. characterMakers.push(() => makeCharacter(
  14393. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14394. {
  14395. anthro: {
  14396. height: math.unit(9 + 6 / 12, "feet"),
  14397. weight: math.unit(298, "lb"),
  14398. name: "Anthro",
  14399. image: {
  14400. source: "./media/characters/frifna/anthro.svg",
  14401. extra: 282 / 269,
  14402. bottom: 0.015
  14403. }
  14404. },
  14405. feral: {
  14406. height: math.unit(16 + 2 / 12, "feet"),
  14407. weight: math.unit(624, "lb"),
  14408. name: "Feral",
  14409. image: {
  14410. source: "./media/characters/frifna/feral.svg"
  14411. }
  14412. },
  14413. },
  14414. [
  14415. {
  14416. name: "Normal",
  14417. height: math.unit(9 + 6 / 12, "feet"),
  14418. default: true
  14419. },
  14420. ]
  14421. ))
  14422. characterMakers.push(() => makeCharacter(
  14423. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14424. {
  14425. front: {
  14426. height: math.unit(6 + 2 / 12, "feet"),
  14427. weight: math.unit(168, "lb"),
  14428. name: "Front",
  14429. image: {
  14430. source: "./media/characters/elise/front.svg",
  14431. extra: 276 / 271
  14432. }
  14433. },
  14434. },
  14435. [
  14436. {
  14437. name: "Normal",
  14438. height: math.unit(6 + 2 / 12, "feet"),
  14439. default: true
  14440. },
  14441. ]
  14442. ))
  14443. characterMakers.push(() => makeCharacter(
  14444. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14445. {
  14446. front: {
  14447. height: math.unit(5 + 10 / 12, "feet"),
  14448. weight: math.unit(210, "lb"),
  14449. name: "Front",
  14450. image: {
  14451. source: "./media/characters/glade/front.svg",
  14452. extra: 258 / 247,
  14453. bottom: 0.008
  14454. }
  14455. },
  14456. },
  14457. [
  14458. {
  14459. name: "Normal",
  14460. height: math.unit(5 + 10 / 12, "feet"),
  14461. default: true
  14462. },
  14463. ]
  14464. ))
  14465. characterMakers.push(() => makeCharacter(
  14466. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14467. {
  14468. front: {
  14469. height: math.unit(5 + 10 / 12, "feet"),
  14470. weight: math.unit(129, "lb"),
  14471. name: "Front",
  14472. image: {
  14473. source: "./media/characters/rina/front.svg",
  14474. extra: 266 / 255,
  14475. bottom: 0.005
  14476. }
  14477. },
  14478. },
  14479. [
  14480. {
  14481. name: "Normal",
  14482. height: math.unit(5 + 10 / 12, "feet"),
  14483. default: true
  14484. },
  14485. ]
  14486. ))
  14487. characterMakers.push(() => makeCharacter(
  14488. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14489. {
  14490. front: {
  14491. height: math.unit(6 + 1 / 12, "feet"),
  14492. weight: math.unit(192, "lb"),
  14493. name: "Front",
  14494. image: {
  14495. source: "./media/characters/veronica/front.svg",
  14496. extra: 319 / 309,
  14497. bottom: 0.005
  14498. }
  14499. },
  14500. },
  14501. [
  14502. {
  14503. name: "Normal",
  14504. height: math.unit(6 + 1 / 12, "feet"),
  14505. default: true
  14506. },
  14507. ]
  14508. ))
  14509. characterMakers.push(() => makeCharacter(
  14510. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14511. {
  14512. front: {
  14513. height: math.unit(9 + 3 / 12, "feet"),
  14514. weight: math.unit(1100, "lb"),
  14515. name: "Front",
  14516. image: {
  14517. source: "./media/characters/braxton/front.svg",
  14518. extra: 1057 / 984,
  14519. bottom: 0.05
  14520. }
  14521. },
  14522. },
  14523. [
  14524. {
  14525. name: "Normal",
  14526. height: math.unit(9 + 3 / 12, "feet")
  14527. },
  14528. {
  14529. name: "Giant",
  14530. height: math.unit(300, "feet"),
  14531. default: true
  14532. },
  14533. {
  14534. name: "Macro",
  14535. height: math.unit(700, "feet")
  14536. },
  14537. {
  14538. name: "Megamacro",
  14539. height: math.unit(6000, "feet")
  14540. },
  14541. ]
  14542. ))
  14543. characterMakers.push(() => makeCharacter(
  14544. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14545. {
  14546. front: {
  14547. height: math.unit(6 + 7 / 12, "feet"),
  14548. weight: math.unit(150, "lb"),
  14549. name: "Front",
  14550. image: {
  14551. source: "./media/characters/blue-feyonics/front.svg",
  14552. extra: 1403 / 1306,
  14553. bottom: 0.047
  14554. }
  14555. },
  14556. },
  14557. [
  14558. {
  14559. name: "Normal",
  14560. height: math.unit(6 + 7 / 12, "feet"),
  14561. default: true
  14562. },
  14563. ]
  14564. ))
  14565. characterMakers.push(() => makeCharacter(
  14566. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14567. {
  14568. front: {
  14569. height: math.unit(1.8, "meters"),
  14570. weight: math.unit(60, "kg"),
  14571. name: "Front",
  14572. image: {
  14573. source: "./media/characters/maxwell/front.svg",
  14574. extra: 2060 / 1873
  14575. }
  14576. },
  14577. },
  14578. [
  14579. {
  14580. name: "Micro",
  14581. height: math.unit(1, "mm")
  14582. },
  14583. {
  14584. name: "Normal",
  14585. height: math.unit(1.8, "meter"),
  14586. default: true
  14587. },
  14588. {
  14589. name: "Macro",
  14590. height: math.unit(30, "meters")
  14591. },
  14592. {
  14593. name: "Megamacro",
  14594. height: math.unit(10, "km")
  14595. },
  14596. ]
  14597. ))
  14598. characterMakers.push(() => makeCharacter(
  14599. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14600. {
  14601. front: {
  14602. height: math.unit(6, "feet"),
  14603. weight: math.unit(150, "lb"),
  14604. name: "Front",
  14605. image: {
  14606. source: "./media/characters/jack/front.svg",
  14607. extra: 1754 / 1640,
  14608. bottom: 0.01
  14609. }
  14610. },
  14611. },
  14612. [
  14613. {
  14614. name: "Normal",
  14615. height: math.unit(80000, "feet"),
  14616. default: true
  14617. },
  14618. {
  14619. name: "Max size",
  14620. height: math.unit(10, "lightyears")
  14621. },
  14622. ]
  14623. ))
  14624. characterMakers.push(() => makeCharacter(
  14625. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14626. {
  14627. upright: {
  14628. height: math.unit(7, "feet"),
  14629. weight: math.unit(170, "lb"),
  14630. name: "Upright",
  14631. image: {
  14632. source: "./media/characters/cafat/upright.svg",
  14633. bottom: 0.01
  14634. }
  14635. },
  14636. uprightFull: {
  14637. height: math.unit(7, "feet"),
  14638. weight: math.unit(170, "lb"),
  14639. name: "Upright (Full)",
  14640. image: {
  14641. source: "./media/characters/cafat/upright-full.svg",
  14642. bottom: 0.01
  14643. }
  14644. },
  14645. side: {
  14646. height: math.unit(5, "feet"),
  14647. weight: math.unit(150, "lb"),
  14648. name: "Side",
  14649. image: {
  14650. source: "./media/characters/cafat/side.svg"
  14651. }
  14652. },
  14653. },
  14654. [
  14655. {
  14656. name: "Small",
  14657. height: math.unit(7, "feet"),
  14658. default: true
  14659. },
  14660. {
  14661. name: "Large",
  14662. height: math.unit(15.5, "feet")
  14663. },
  14664. ]
  14665. ))
  14666. characterMakers.push(() => makeCharacter(
  14667. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14668. {
  14669. front: {
  14670. height: math.unit(6, "feet"),
  14671. weight: math.unit(150, "lb"),
  14672. name: "Front",
  14673. image: {
  14674. source: "./media/characters/verin-raharra/front.svg",
  14675. extra: 5019 / 4835,
  14676. bottom: 0.023
  14677. }
  14678. },
  14679. },
  14680. [
  14681. {
  14682. name: "Normal",
  14683. height: math.unit(7 + 5 / 12, "feet"),
  14684. default: true
  14685. },
  14686. {
  14687. name: "Upsized",
  14688. height: math.unit(20, "feet")
  14689. },
  14690. ]
  14691. ))
  14692. characterMakers.push(() => makeCharacter(
  14693. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14694. {
  14695. front: {
  14696. height: math.unit(7, "feet"),
  14697. weight: math.unit(230, "lb"),
  14698. name: "Front",
  14699. image: {
  14700. source: "./media/characters/nakata/front.svg",
  14701. extra: 1.005,
  14702. bottom: 0.01
  14703. }
  14704. },
  14705. },
  14706. [
  14707. {
  14708. name: "Normal",
  14709. height: math.unit(7, "feet"),
  14710. default: true
  14711. },
  14712. {
  14713. name: "Big",
  14714. height: math.unit(14, "feet")
  14715. },
  14716. {
  14717. name: "Macro",
  14718. height: math.unit(400, "feet")
  14719. },
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14724. {
  14725. front: {
  14726. height: math.unit(4.91, "feet"),
  14727. weight: math.unit(100, "lb"),
  14728. name: "Front",
  14729. image: {
  14730. source: "./media/characters/lily/front.svg",
  14731. extra: 1585 / 1415,
  14732. bottom: 0.02
  14733. }
  14734. },
  14735. },
  14736. [
  14737. {
  14738. name: "Normal",
  14739. height: math.unit(4.91, "feet"),
  14740. default: true
  14741. },
  14742. ]
  14743. ))
  14744. characterMakers.push(() => makeCharacter(
  14745. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14746. {
  14747. laying: {
  14748. height: math.unit(4 + 4 / 12, "feet"),
  14749. weight: math.unit(600, "lb"),
  14750. name: "Laying",
  14751. image: {
  14752. source: "./media/characters/sheila/laying.svg",
  14753. extra: 1333 / 1265,
  14754. bottom: 0.16
  14755. }
  14756. },
  14757. },
  14758. [
  14759. {
  14760. name: "Normal",
  14761. height: math.unit(4 + 4 / 12, "feet"),
  14762. default: true
  14763. },
  14764. ]
  14765. ))
  14766. characterMakers.push(() => makeCharacter(
  14767. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14768. {
  14769. front: {
  14770. height: math.unit(6, "feet"),
  14771. weight: math.unit(190, "lb"),
  14772. name: "Front",
  14773. image: {
  14774. source: "./media/characters/sax/front.svg",
  14775. extra: 1187 / 973,
  14776. bottom: 0.042
  14777. }
  14778. },
  14779. },
  14780. [
  14781. {
  14782. name: "Micro",
  14783. height: math.unit(4, "inches"),
  14784. default: true
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14790. {
  14791. front: {
  14792. height: math.unit(6, "feet"),
  14793. weight: math.unit(150, "lb"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/pandora/front.svg",
  14797. extra: 2720 / 2556,
  14798. bottom: 0.015
  14799. }
  14800. },
  14801. back: {
  14802. height: math.unit(6, "feet"),
  14803. weight: math.unit(150, "lb"),
  14804. name: "Back",
  14805. image: {
  14806. source: "./media/characters/pandora/back.svg",
  14807. extra: 2720 / 2556,
  14808. bottom: 0.01
  14809. }
  14810. },
  14811. beans: {
  14812. height: math.unit(6 / 8, "feet"),
  14813. name: "Beans",
  14814. image: {
  14815. source: "./media/characters/pandora/beans.svg"
  14816. }
  14817. },
  14818. skirt: {
  14819. height: math.unit(6, "feet"),
  14820. weight: math.unit(150, "lb"),
  14821. name: "Skirt",
  14822. image: {
  14823. source: "./media/characters/pandora/skirt.svg",
  14824. extra: 1622 / 1525,
  14825. bottom: 0.015
  14826. }
  14827. },
  14828. hoodie: {
  14829. height: math.unit(6, "feet"),
  14830. weight: math.unit(150, "lb"),
  14831. name: "Hoodie",
  14832. image: {
  14833. source: "./media/characters/pandora/hoodie.svg",
  14834. extra: 1622 / 1525,
  14835. bottom: 0.015
  14836. }
  14837. },
  14838. casual: {
  14839. height: math.unit(6, "feet"),
  14840. weight: math.unit(150, "lb"),
  14841. name: "Casual",
  14842. image: {
  14843. source: "./media/characters/pandora/casual.svg",
  14844. extra: 1622 / 1525,
  14845. bottom: 0.015
  14846. }
  14847. },
  14848. },
  14849. [
  14850. {
  14851. name: "Normal",
  14852. height: math.unit(6, "feet")
  14853. },
  14854. {
  14855. name: "Big Steppy",
  14856. height: math.unit(1, "km"),
  14857. default: true
  14858. },
  14859. ]
  14860. ))
  14861. characterMakers.push(() => makeCharacter(
  14862. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  14863. {
  14864. side: {
  14865. height: math.unit(10, "feet"),
  14866. weight: math.unit(800, "kg"),
  14867. name: "Side",
  14868. image: {
  14869. source: "./media/characters/venio-darcony/side.svg",
  14870. extra: 1373 / 1003,
  14871. bottom: 0.037
  14872. }
  14873. },
  14874. front: {
  14875. height: math.unit(19, "feet"),
  14876. weight: math.unit(800, "kg"),
  14877. name: "Front",
  14878. image: {
  14879. source: "./media/characters/venio-darcony/front.svg"
  14880. }
  14881. },
  14882. back: {
  14883. height: math.unit(19, "feet"),
  14884. weight: math.unit(800, "kg"),
  14885. name: "Back",
  14886. image: {
  14887. source: "./media/characters/venio-darcony/back.svg"
  14888. }
  14889. },
  14890. sideNsfw: {
  14891. height: math.unit(10, "feet"),
  14892. weight: math.unit(800, "kg"),
  14893. name: "Side (NSFW)",
  14894. image: {
  14895. source: "./media/characters/venio-darcony/side-nsfw.svg",
  14896. extra: 1373 / 1003,
  14897. bottom: 0.037
  14898. }
  14899. },
  14900. frontNsfw: {
  14901. height: math.unit(19, "feet"),
  14902. weight: math.unit(800, "kg"),
  14903. name: "Front (NSFW)",
  14904. image: {
  14905. source: "./media/characters/venio-darcony/front-nsfw.svg"
  14906. }
  14907. },
  14908. backNsfw: {
  14909. height: math.unit(19, "feet"),
  14910. weight: math.unit(800, "kg"),
  14911. name: "Back (NSFW)",
  14912. image: {
  14913. source: "./media/characters/venio-darcony/back-nsfw.svg"
  14914. }
  14915. },
  14916. sideArmored: {
  14917. height: math.unit(10, "feet"),
  14918. weight: math.unit(800, "kg"),
  14919. name: "Side (Armored)",
  14920. image: {
  14921. source: "./media/characters/venio-darcony/side-armored.svg",
  14922. extra: 1373 / 1003,
  14923. bottom: 0.037
  14924. }
  14925. },
  14926. frontArmored: {
  14927. height: math.unit(19, "feet"),
  14928. weight: math.unit(900, "kg"),
  14929. name: "Front (Armored)",
  14930. image: {
  14931. source: "./media/characters/venio-darcony/front-armored.svg"
  14932. }
  14933. },
  14934. backArmored: {
  14935. height: math.unit(19, "feet"),
  14936. weight: math.unit(900, "kg"),
  14937. name: "Back (Armored)",
  14938. image: {
  14939. source: "./media/characters/venio-darcony/back-armored.svg"
  14940. }
  14941. },
  14942. sword: {
  14943. height: math.unit(10, "feet"),
  14944. weight: math.unit(50, "lb"),
  14945. name: "Sword",
  14946. image: {
  14947. source: "./media/characters/venio-darcony/sword.svg"
  14948. }
  14949. },
  14950. },
  14951. [
  14952. {
  14953. name: "Normal",
  14954. height: math.unit(10, "feet")
  14955. },
  14956. {
  14957. name: "Macro",
  14958. height: math.unit(130, "feet"),
  14959. default: true
  14960. },
  14961. {
  14962. name: "Macro+",
  14963. height: math.unit(240, "feet")
  14964. },
  14965. ]
  14966. ))
  14967. characterMakers.push(() => makeCharacter(
  14968. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  14969. {
  14970. front: {
  14971. height: math.unit(6, "feet"),
  14972. weight: math.unit(150, "lb"),
  14973. name: "Front",
  14974. image: {
  14975. source: "./media/characters/veski/front.svg",
  14976. extra: 1299 / 1225,
  14977. bottom: 0.04
  14978. }
  14979. },
  14980. back: {
  14981. height: math.unit(6, "feet"),
  14982. weight: math.unit(150, "lb"),
  14983. name: "Back",
  14984. image: {
  14985. source: "./media/characters/veski/back.svg",
  14986. extra: 1299 / 1225,
  14987. bottom: 0.008
  14988. }
  14989. },
  14990. maw: {
  14991. height: math.unit(1.5 * 1.21, "feet"),
  14992. name: "Maw",
  14993. image: {
  14994. source: "./media/characters/veski/maw.svg"
  14995. }
  14996. },
  14997. },
  14998. [
  14999. {
  15000. name: "Macro",
  15001. height: math.unit(2, "km"),
  15002. default: true
  15003. },
  15004. ]
  15005. ))
  15006. characterMakers.push(() => makeCharacter(
  15007. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15008. {
  15009. front: {
  15010. height: math.unit(5 + 7 / 12, "feet"),
  15011. name: "Front",
  15012. image: {
  15013. source: "./media/characters/isabelle/front.svg",
  15014. extra: 2130 / 1976,
  15015. bottom: 0.05
  15016. }
  15017. },
  15018. },
  15019. [
  15020. {
  15021. name: "Supermicro",
  15022. height: math.unit(10, "micrometers")
  15023. },
  15024. {
  15025. name: "Micro",
  15026. height: math.unit(1, "inch")
  15027. },
  15028. {
  15029. name: "Tiny",
  15030. height: math.unit(5, "inches")
  15031. },
  15032. {
  15033. name: "Standard",
  15034. height: math.unit(5 + 7 / 12, "inches")
  15035. },
  15036. {
  15037. name: "Macro",
  15038. height: math.unit(80, "meters"),
  15039. default: true
  15040. },
  15041. {
  15042. name: "Megamacro",
  15043. height: math.unit(250, "meters")
  15044. },
  15045. {
  15046. name: "Gigamacro",
  15047. height: math.unit(5, "km")
  15048. },
  15049. {
  15050. name: "Cosmic",
  15051. height: math.unit(2.5e6, "miles")
  15052. },
  15053. ]
  15054. ))
  15055. characterMakers.push(() => makeCharacter(
  15056. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15057. {
  15058. front: {
  15059. height: math.unit(6, "feet"),
  15060. weight: math.unit(150, "lb"),
  15061. name: "Front",
  15062. image: {
  15063. source: "./media/characters/hanzo/front.svg",
  15064. extra: 374 / 344,
  15065. bottom: 0.02
  15066. }
  15067. },
  15068. },
  15069. [
  15070. {
  15071. name: "Normal",
  15072. height: math.unit(8, "feet"),
  15073. default: true
  15074. },
  15075. ]
  15076. ))
  15077. characterMakers.push(() => makeCharacter(
  15078. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15079. {
  15080. front: {
  15081. height: math.unit(7, "feet"),
  15082. weight: math.unit(130, "lb"),
  15083. name: "Front",
  15084. image: {
  15085. source: "./media/characters/anna/front.svg",
  15086. extra: 169 / 145,
  15087. bottom: 0.06
  15088. }
  15089. },
  15090. full: {
  15091. height: math.unit(4.96, "feet"),
  15092. weight: math.unit(220, "lb"),
  15093. name: "Full",
  15094. image: {
  15095. source: "./media/characters/anna/full.svg",
  15096. extra: 138 / 114,
  15097. bottom: 0.15
  15098. }
  15099. },
  15100. tongue: {
  15101. height: math.unit(2.53, "feet"),
  15102. name: "Tongue",
  15103. image: {
  15104. source: "./media/characters/anna/tongue.svg"
  15105. }
  15106. },
  15107. },
  15108. [
  15109. {
  15110. name: "Normal",
  15111. height: math.unit(7, "feet"),
  15112. default: true
  15113. },
  15114. ]
  15115. ))
  15116. characterMakers.push(() => makeCharacter(
  15117. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15118. {
  15119. front: {
  15120. height: math.unit(7, "feet"),
  15121. weight: math.unit(150, "lb"),
  15122. name: "Front",
  15123. image: {
  15124. source: "./media/characters/ian-corvid/front.svg",
  15125. extra: 150 / 142,
  15126. bottom: 0.02
  15127. }
  15128. },
  15129. back: {
  15130. height: math.unit(7, "feet"),
  15131. weight: math.unit(150, "lb"),
  15132. name: "Back",
  15133. image: {
  15134. source: "./media/characters/ian-corvid/back.svg",
  15135. extra: 150 / 143,
  15136. bottom: 0.01
  15137. }
  15138. },
  15139. stomping: {
  15140. height: math.unit(7, "feet"),
  15141. weight: math.unit(150, "lb"),
  15142. name: "Stomping",
  15143. image: {
  15144. source: "./media/characters/ian-corvid/stomping.svg",
  15145. extra: 76 / 72
  15146. }
  15147. },
  15148. sitting: {
  15149. height: math.unit(7 / 1.8, "feet"),
  15150. weight: math.unit(150, "lb"),
  15151. name: "Sitting",
  15152. image: {
  15153. source: "./media/characters/ian-corvid/sitting.svg",
  15154. extra: 1400 / 1269,
  15155. bottom: 0.15
  15156. }
  15157. },
  15158. },
  15159. [
  15160. {
  15161. name: "Tiny Microw",
  15162. height: math.unit(1, "inch")
  15163. },
  15164. {
  15165. name: "Microw",
  15166. height: math.unit(6, "inches")
  15167. },
  15168. {
  15169. name: "Crow",
  15170. height: math.unit(7 + 1 / 12, "feet"),
  15171. default: true
  15172. },
  15173. {
  15174. name: "Macrow",
  15175. height: math.unit(176, "feet")
  15176. },
  15177. ]
  15178. ))
  15179. characterMakers.push(() => makeCharacter(
  15180. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15181. {
  15182. front: {
  15183. height: math.unit(5 + 7 / 12, "feet"),
  15184. weight: math.unit(147, "lb"),
  15185. name: "Front",
  15186. image: {
  15187. source: "./media/characters/natalie-kellon/front.svg",
  15188. extra: 1214 / 1141,
  15189. bottom: 0.02
  15190. }
  15191. },
  15192. },
  15193. [
  15194. {
  15195. name: "Micro",
  15196. height: math.unit(1 / 16, "inch")
  15197. },
  15198. {
  15199. name: "Tiny",
  15200. height: math.unit(4, "inches")
  15201. },
  15202. {
  15203. name: "Normal",
  15204. height: math.unit(5 + 7 / 12, "feet"),
  15205. default: true
  15206. },
  15207. {
  15208. name: "Amazon",
  15209. height: math.unit(12, "feet")
  15210. },
  15211. {
  15212. name: "Giantess",
  15213. height: math.unit(160, "meters")
  15214. },
  15215. {
  15216. name: "Titaness",
  15217. height: math.unit(800, "meters")
  15218. },
  15219. ]
  15220. ))
  15221. characterMakers.push(() => makeCharacter(
  15222. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15223. {
  15224. front: {
  15225. height: math.unit(6, "feet"),
  15226. weight: math.unit(150, "lb"),
  15227. name: "Front",
  15228. image: {
  15229. source: "./media/characters/alluria/front.svg",
  15230. extra: 806 / 738,
  15231. bottom: 0.01
  15232. }
  15233. },
  15234. side: {
  15235. height: math.unit(6, "feet"),
  15236. weight: math.unit(150, "lb"),
  15237. name: "Side",
  15238. image: {
  15239. source: "./media/characters/alluria/side.svg",
  15240. extra: 800 / 750,
  15241. }
  15242. },
  15243. back: {
  15244. height: math.unit(6, "feet"),
  15245. weight: math.unit(150, "lb"),
  15246. name: "Back",
  15247. image: {
  15248. source: "./media/characters/alluria/back.svg",
  15249. extra: 806 / 738,
  15250. }
  15251. },
  15252. frontMaid: {
  15253. height: math.unit(6, "feet"),
  15254. weight: math.unit(150, "lb"),
  15255. name: "Front (Maid)",
  15256. image: {
  15257. source: "./media/characters/alluria/front-maid.svg",
  15258. extra: 806 / 738,
  15259. bottom: 0.01
  15260. }
  15261. },
  15262. sideMaid: {
  15263. height: math.unit(6, "feet"),
  15264. weight: math.unit(150, "lb"),
  15265. name: "Side (Maid)",
  15266. image: {
  15267. source: "./media/characters/alluria/side-maid.svg",
  15268. extra: 800 / 750,
  15269. bottom: 0.005
  15270. }
  15271. },
  15272. backMaid: {
  15273. height: math.unit(6, "feet"),
  15274. weight: math.unit(150, "lb"),
  15275. name: "Back (Maid)",
  15276. image: {
  15277. source: "./media/characters/alluria/back-maid.svg",
  15278. extra: 806 / 738,
  15279. }
  15280. },
  15281. },
  15282. [
  15283. {
  15284. name: "Micro",
  15285. height: math.unit(6, "inches"),
  15286. default: true
  15287. },
  15288. ]
  15289. ))
  15290. characterMakers.push(() => makeCharacter(
  15291. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15292. {
  15293. front: {
  15294. height: math.unit(6, "feet"),
  15295. weight: math.unit(150, "lb"),
  15296. name: "Front",
  15297. image: {
  15298. source: "./media/characters/kyle/front.svg",
  15299. extra: 1069 / 962,
  15300. bottom: 77.228 / 1727.45
  15301. }
  15302. },
  15303. },
  15304. [
  15305. {
  15306. name: "Macro",
  15307. height: math.unit(150, "feet"),
  15308. default: true
  15309. },
  15310. ]
  15311. ))
  15312. characterMakers.push(() => makeCharacter(
  15313. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15314. {
  15315. front: {
  15316. height: math.unit(6, "feet"),
  15317. weight: math.unit(300, "lb"),
  15318. name: "Front",
  15319. image: {
  15320. source: "./media/characters/duncan/front.svg",
  15321. extra: 1650 / 1482,
  15322. bottom: 0.05
  15323. }
  15324. },
  15325. },
  15326. [
  15327. {
  15328. name: "Macro",
  15329. height: math.unit(100, "feet"),
  15330. default: true
  15331. },
  15332. ]
  15333. ))
  15334. characterMakers.push(() => makeCharacter(
  15335. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15336. {
  15337. front: {
  15338. height: math.unit(5 + 4 / 12, "feet"),
  15339. weight: math.unit(220, "lb"),
  15340. name: "Front",
  15341. image: {
  15342. source: "./media/characters/memory/front.svg",
  15343. extra: 3641 / 3545,
  15344. bottom: 0.03
  15345. }
  15346. },
  15347. back: {
  15348. height: math.unit(5 + 4 / 12, "feet"),
  15349. weight: math.unit(220, "lb"),
  15350. name: "Back",
  15351. image: {
  15352. source: "./media/characters/memory/back.svg",
  15353. extra: 3641 / 3545,
  15354. bottom: 0.025
  15355. }
  15356. },
  15357. frontSkirt: {
  15358. height: math.unit(5 + 4 / 12, "feet"),
  15359. weight: math.unit(220, "lb"),
  15360. name: "Front (Skirt)",
  15361. image: {
  15362. source: "./media/characters/memory/front-skirt.svg",
  15363. extra: 3641 / 3545,
  15364. bottom: 0.03
  15365. }
  15366. },
  15367. frontDress: {
  15368. height: math.unit(5 + 4 / 12, "feet"),
  15369. weight: math.unit(220, "lb"),
  15370. name: "Front (Dress)",
  15371. image: {
  15372. source: "./media/characters/memory/front-dress.svg",
  15373. extra: 3641 / 3545,
  15374. bottom: 0.03
  15375. }
  15376. },
  15377. },
  15378. [
  15379. {
  15380. name: "Micro",
  15381. height: math.unit(6, "inches"),
  15382. default: true
  15383. },
  15384. {
  15385. name: "Normal",
  15386. height: math.unit(5 + 4 / 12, "feet")
  15387. },
  15388. ]
  15389. ))
  15390. characterMakers.push(() => makeCharacter(
  15391. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15392. {
  15393. front: {
  15394. height: math.unit(4 + 11 / 12, "feet"),
  15395. weight: math.unit(100, "lb"),
  15396. name: "Front",
  15397. image: {
  15398. source: "./media/characters/luno/front.svg",
  15399. extra: 1535 / 1487,
  15400. bottom: 0.03
  15401. }
  15402. },
  15403. },
  15404. [
  15405. {
  15406. name: "Micro",
  15407. height: math.unit(3, "inches")
  15408. },
  15409. {
  15410. name: "Normal",
  15411. height: math.unit(4 + 11 / 12, "feet"),
  15412. default: true
  15413. },
  15414. {
  15415. name: "Macro",
  15416. height: math.unit(300, "feet")
  15417. },
  15418. {
  15419. name: "Megamacro",
  15420. height: math.unit(700, "miles")
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15426. {
  15427. front: {
  15428. height: math.unit(6 + 2 / 12, "feet"),
  15429. weight: math.unit(170, "lb"),
  15430. name: "Front",
  15431. image: {
  15432. source: "./media/characters/jamesy/front.svg",
  15433. extra: 440 / 382,
  15434. bottom: 0.005
  15435. }
  15436. },
  15437. },
  15438. [
  15439. {
  15440. name: "Micro",
  15441. height: math.unit(3, "inches")
  15442. },
  15443. {
  15444. name: "Normal",
  15445. height: math.unit(6 + 2 / 12, "feet"),
  15446. default: true
  15447. },
  15448. {
  15449. name: "Macro",
  15450. height: math.unit(300, "feet")
  15451. },
  15452. {
  15453. name: "Megamacro",
  15454. height: math.unit(700, "miles")
  15455. },
  15456. ]
  15457. ))
  15458. characterMakers.push(() => makeCharacter(
  15459. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15460. {
  15461. front: {
  15462. height: math.unit(6, "feet"),
  15463. weight: math.unit(160, "lb"),
  15464. name: "Front",
  15465. image: {
  15466. source: "./media/characters/mark/front.svg",
  15467. extra: 3300 / 3100,
  15468. bottom: 136.42 / 3440.47
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Macro",
  15475. height: math.unit(120, "meters")
  15476. },
  15477. {
  15478. name: "Bigger Macro",
  15479. height: math.unit(350, "meters")
  15480. },
  15481. {
  15482. name: "Megamacro",
  15483. height: math.unit(8, "km"),
  15484. default: true
  15485. },
  15486. {
  15487. name: "Continental",
  15488. height: math.unit(4550, "km")
  15489. },
  15490. {
  15491. name: "Planetary",
  15492. height: math.unit(65000, "km")
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15498. {
  15499. front: {
  15500. height: math.unit(6, "feet"),
  15501. weight: math.unit(400, "lb"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/mac/front.svg",
  15505. extra: 1048 / 987.7,
  15506. bottom: 60 / 1107.6,
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Macro",
  15513. height: math.unit(500, "feet"),
  15514. default: true
  15515. },
  15516. ]
  15517. ))
  15518. characterMakers.push(() => makeCharacter(
  15519. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15520. {
  15521. front: {
  15522. height: math.unit(5 + 2 / 12, "feet"),
  15523. weight: math.unit(190, "lb"),
  15524. name: "Front",
  15525. image: {
  15526. source: "./media/characters/bari/front.svg",
  15527. extra: 3156 / 2880,
  15528. bottom: 0.03
  15529. }
  15530. },
  15531. back: {
  15532. height: math.unit(5 + 2 / 12, "feet"),
  15533. weight: math.unit(190, "lb"),
  15534. name: "Back",
  15535. image: {
  15536. source: "./media/characters/bari/back.svg",
  15537. extra: 3260 / 2834,
  15538. bottom: 0.025
  15539. }
  15540. },
  15541. frontPlush: {
  15542. height: math.unit(5 + 2 / 12, "feet"),
  15543. weight: math.unit(190, "lb"),
  15544. name: "Front (Plush)",
  15545. image: {
  15546. source: "./media/characters/bari/front-plush.svg",
  15547. extra: 1112 / 1061,
  15548. bottom: 0.002
  15549. }
  15550. },
  15551. },
  15552. [
  15553. {
  15554. name: "Micro",
  15555. height: math.unit(3, "inches")
  15556. },
  15557. {
  15558. name: "Normal",
  15559. height: math.unit(5 + 2 / 12, "feet"),
  15560. default: true
  15561. },
  15562. {
  15563. name: "Macro",
  15564. height: math.unit(20, "feet")
  15565. },
  15566. ]
  15567. ))
  15568. characterMakers.push(() => makeCharacter(
  15569. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15570. {
  15571. front: {
  15572. height: math.unit(6 + 1 / 12, "feet"),
  15573. weight: math.unit(275, "lb"),
  15574. name: "Front",
  15575. image: {
  15576. source: "./media/characters/hunter-misha-raven/front.svg"
  15577. }
  15578. },
  15579. },
  15580. [
  15581. {
  15582. name: "Mortal",
  15583. height: math.unit(6 + 1 / 12, "feet")
  15584. },
  15585. {
  15586. name: "Divine",
  15587. height: math.unit(1.12134e34, "parsecs"),
  15588. default: true
  15589. },
  15590. ]
  15591. ))
  15592. characterMakers.push(() => makeCharacter(
  15593. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15594. {
  15595. front: {
  15596. height: math.unit(6 + 3 / 12, "feet"),
  15597. weight: math.unit(220, "lb"),
  15598. name: "Front",
  15599. image: {
  15600. source: "./media/characters/max-calore/front.svg",
  15601. extra: 1700 / 1648,
  15602. bottom: 0.01
  15603. }
  15604. },
  15605. back: {
  15606. height: math.unit(6 + 3 / 12, "feet"),
  15607. weight: math.unit(220, "lb"),
  15608. name: "Back",
  15609. image: {
  15610. source: "./media/characters/max-calore/back.svg",
  15611. extra: 1700 / 1648,
  15612. bottom: 0.01
  15613. }
  15614. },
  15615. },
  15616. [
  15617. {
  15618. name: "Normal",
  15619. height: math.unit(6 + 3 / 12, "feet"),
  15620. default: true
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15626. {
  15627. side: {
  15628. height: math.unit(2 + 8 / 12, "feet"),
  15629. weight: math.unit(99, "lb"),
  15630. name: "Side",
  15631. image: {
  15632. source: "./media/characters/aspen/side.svg",
  15633. extra: 152 / 138,
  15634. bottom: 0.032
  15635. }
  15636. },
  15637. },
  15638. [
  15639. {
  15640. name: "Normal",
  15641. height: math.unit(2 + 8 / 12, "feet"),
  15642. default: true
  15643. },
  15644. ]
  15645. ))
  15646. characterMakers.push(() => makeCharacter(
  15647. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"]},
  15648. {
  15649. side: {
  15650. height: math.unit(3 + 2 / 12, "feet"),
  15651. weight: math.unit(224, "lb"),
  15652. name: "Side",
  15653. image: {
  15654. source: "./media/characters/sheila-feral-wolf/side.svg",
  15655. extra: 179 / 166,
  15656. bottom: 0.03
  15657. }
  15658. },
  15659. },
  15660. [
  15661. {
  15662. name: "Normal",
  15663. height: math.unit(3 + 2 / 12, "feet"),
  15664. default: true
  15665. },
  15666. ]
  15667. ))
  15668. characterMakers.push(() => makeCharacter(
  15669. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15670. {
  15671. side: {
  15672. height: math.unit(1 + 9 / 12, "feet"),
  15673. weight: math.unit(38, "lb"),
  15674. name: "Side",
  15675. image: {
  15676. source: "./media/characters/michelle/side.svg",
  15677. extra: 147 / 136.7,
  15678. bottom: 0.03
  15679. }
  15680. },
  15681. },
  15682. [
  15683. {
  15684. name: "Normal",
  15685. height: math.unit(1 + 9 / 12, "feet"),
  15686. default: true
  15687. },
  15688. ]
  15689. ))
  15690. characterMakers.push(() => makeCharacter(
  15691. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15692. {
  15693. front: {
  15694. height: math.unit(1 + 1 / 12, "feet"),
  15695. weight: math.unit(18, "lb"),
  15696. name: "Front",
  15697. image: {
  15698. source: "./media/characters/nino/front.svg"
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(1 + 1 / 12, "feet"),
  15706. default: true
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15712. {
  15713. front: {
  15714. height: math.unit(1, "feet"),
  15715. weight: math.unit(16, "lb"),
  15716. name: "Front",
  15717. image: {
  15718. source: "./media/characters/viola/front.svg"
  15719. }
  15720. },
  15721. },
  15722. [
  15723. {
  15724. name: "Normal",
  15725. height: math.unit(1, "feet"),
  15726. default: true
  15727. },
  15728. ]
  15729. ))
  15730. characterMakers.push(() => makeCharacter(
  15731. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15732. {
  15733. front: {
  15734. height: math.unit(6 + 5 / 12, "feet"),
  15735. weight: math.unit(580, "lb"),
  15736. name: "Front",
  15737. image: {
  15738. source: "./media/characters/atlas/front.svg",
  15739. extra: 298.5 / 290,
  15740. bottom: 0.015
  15741. }
  15742. },
  15743. },
  15744. [
  15745. {
  15746. name: "Normal",
  15747. height: math.unit(6 + 5 / 12, "feet"),
  15748. default: true
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15754. {
  15755. side: {
  15756. height: math.unit(1 + 10 / 12, "feet"),
  15757. weight: math.unit(25, "lb"),
  15758. name: "Side",
  15759. image: {
  15760. source: "./media/characters/davy/side.svg",
  15761. extra: 200 / 170,
  15762. bottom: 0.01
  15763. }
  15764. },
  15765. },
  15766. [
  15767. {
  15768. name: "Normal",
  15769. height: math.unit(1 + 10 / 12, "feet"),
  15770. default: true
  15771. },
  15772. ]
  15773. ))
  15774. characterMakers.push(() => makeCharacter(
  15775. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15776. {
  15777. side: {
  15778. height: math.unit(4 + 8 / 12, "feet"),
  15779. weight: math.unit(166, "lb"),
  15780. name: "Side",
  15781. image: {
  15782. source: "./media/characters/fiona/side.svg",
  15783. extra: 232 / 220,
  15784. bottom: 0.03
  15785. }
  15786. },
  15787. },
  15788. [
  15789. {
  15790. name: "Normal",
  15791. height: math.unit(4 + 8 / 12, "feet"),
  15792. default: true
  15793. },
  15794. ]
  15795. ))
  15796. characterMakers.push(() => makeCharacter(
  15797. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15798. {
  15799. front: {
  15800. height: math.unit(2, "feet"),
  15801. weight: math.unit(62, "lb"),
  15802. name: "Front",
  15803. image: {
  15804. source: "./media/characters/lyla/front.svg",
  15805. bottom: 0.1
  15806. }
  15807. },
  15808. },
  15809. [
  15810. {
  15811. name: "Normal",
  15812. height: math.unit(2, "feet"),
  15813. default: true
  15814. },
  15815. ]
  15816. ))
  15817. characterMakers.push(() => makeCharacter(
  15818. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  15819. {
  15820. side: {
  15821. height: math.unit(1.8, "feet"),
  15822. weight: math.unit(44, "lb"),
  15823. name: "Side",
  15824. image: {
  15825. source: "./media/characters/perseus/side.svg",
  15826. bottom: 0.21
  15827. }
  15828. },
  15829. },
  15830. [
  15831. {
  15832. name: "Normal",
  15833. height: math.unit(1.8, "feet"),
  15834. default: true
  15835. },
  15836. ]
  15837. ))
  15838. characterMakers.push(() => makeCharacter(
  15839. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  15840. {
  15841. side: {
  15842. height: math.unit(4 + 2 / 12, "feet"),
  15843. weight: math.unit(20, "lb"),
  15844. name: "Side",
  15845. image: {
  15846. source: "./media/characters/remus/side.svg"
  15847. }
  15848. },
  15849. },
  15850. [
  15851. {
  15852. name: "Normal",
  15853. height: math.unit(4 + 2 / 12, "feet"),
  15854. default: true
  15855. },
  15856. ]
  15857. ))
  15858. characterMakers.push(() => makeCharacter(
  15859. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  15860. {
  15861. front: {
  15862. height: math.unit(4 + 11 / 12, "feet"),
  15863. weight: math.unit(114, "lb"),
  15864. name: "Front",
  15865. image: {
  15866. source: "./media/characters/raf/front.svg",
  15867. bottom: 0.01
  15868. }
  15869. },
  15870. side: {
  15871. height: math.unit(4 + 11 / 12, "feet"),
  15872. weight: math.unit(114, "lb"),
  15873. name: "Side",
  15874. image: {
  15875. source: "./media/characters/raf/side.svg",
  15876. bottom: 0.005
  15877. }
  15878. },
  15879. },
  15880. [
  15881. {
  15882. name: "Micro",
  15883. height: math.unit(2, "inches")
  15884. },
  15885. {
  15886. name: "Normal",
  15887. height: math.unit(4 + 11 / 12, "feet"),
  15888. default: true
  15889. },
  15890. {
  15891. name: "Macro",
  15892. height: math.unit(70, "feet")
  15893. },
  15894. ]
  15895. ))
  15896. characterMakers.push(() => makeCharacter(
  15897. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  15898. {
  15899. front: {
  15900. height: math.unit(1.5, "meters"),
  15901. weight: math.unit(68, "kg"),
  15902. name: "Front",
  15903. image: {
  15904. source: "./media/characters/liam-einarr/front.svg",
  15905. extra: 2822 / 2666
  15906. }
  15907. },
  15908. back: {
  15909. height: math.unit(1.5, "meters"),
  15910. weight: math.unit(68, "kg"),
  15911. name: "Back",
  15912. image: {
  15913. source: "./media/characters/liam-einarr/back.svg",
  15914. extra: 2822 / 2666,
  15915. bottom: 0.015
  15916. }
  15917. },
  15918. },
  15919. [
  15920. {
  15921. name: "Normal",
  15922. height: math.unit(1.5, "meters"),
  15923. default: true
  15924. },
  15925. {
  15926. name: "Macro",
  15927. height: math.unit(150, "meters")
  15928. },
  15929. {
  15930. name: "Megamacro",
  15931. height: math.unit(35, "km")
  15932. },
  15933. ]
  15934. ))
  15935. characterMakers.push(() => makeCharacter(
  15936. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  15937. {
  15938. front: {
  15939. height: math.unit(6, "feet"),
  15940. weight: math.unit(75, "kg"),
  15941. name: "Front",
  15942. image: {
  15943. source: "./media/characters/linda/front.svg",
  15944. extra: 930 / 874,
  15945. bottom: 0.004
  15946. }
  15947. },
  15948. },
  15949. [
  15950. {
  15951. name: "Normal",
  15952. height: math.unit(6, "feet"),
  15953. default: true
  15954. },
  15955. ]
  15956. ))
  15957. characterMakers.push(() => makeCharacter(
  15958. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  15959. {
  15960. front: {
  15961. height: math.unit(6 + 8 / 12, "feet"),
  15962. weight: math.unit(220, "lb"),
  15963. name: "Front",
  15964. image: {
  15965. source: "./media/characters/caylex/front.svg",
  15966. extra: 821 / 772,
  15967. bottom: 0.07
  15968. }
  15969. },
  15970. back: {
  15971. height: math.unit(6 + 8 / 12, "feet"),
  15972. weight: math.unit(220, "lb"),
  15973. name: "Back",
  15974. image: {
  15975. source: "./media/characters/caylex/back.svg",
  15976. extra: 821 / 772,
  15977. bottom: 0.022
  15978. }
  15979. },
  15980. hand: {
  15981. height: math.unit(1.25, "feet"),
  15982. name: "Hand",
  15983. image: {
  15984. source: "./media/characters/caylex/hand.svg"
  15985. }
  15986. },
  15987. foot: {
  15988. height: math.unit(1.6, "feet"),
  15989. name: "Foot",
  15990. image: {
  15991. source: "./media/characters/caylex/foot.svg"
  15992. }
  15993. },
  15994. armored: {
  15995. height: math.unit(6 + 8 / 12, "feet"),
  15996. weight: math.unit(250, "lb"),
  15997. name: "Armored",
  15998. image: {
  15999. source: "./media/characters/caylex/armored.svg",
  16000. extra: 1420 / 1310,
  16001. bottom: 0.045
  16002. }
  16003. },
  16004. },
  16005. [
  16006. {
  16007. name: "Normal",
  16008. height: math.unit(6 + 8 / 12, "feet"),
  16009. default: true
  16010. },
  16011. {
  16012. name: "Normal+",
  16013. height: math.unit(12, "feet")
  16014. },
  16015. ]
  16016. ))
  16017. characterMakers.push(() => makeCharacter(
  16018. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16019. {
  16020. front: {
  16021. height: math.unit(7 + 6 / 12, "feet"),
  16022. weight: math.unit(288, "lb"),
  16023. name: "Front",
  16024. image: {
  16025. source: "./media/characters/alana/front.svg",
  16026. extra: 679 / 653,
  16027. bottom: 22.5 / 701
  16028. }
  16029. },
  16030. },
  16031. [
  16032. {
  16033. name: "Normal",
  16034. height: math.unit(7 + 6 / 12, "feet")
  16035. },
  16036. {
  16037. name: "Large",
  16038. height: math.unit(50, "feet")
  16039. },
  16040. {
  16041. name: "Macro",
  16042. height: math.unit(100, "feet"),
  16043. default: true
  16044. },
  16045. {
  16046. name: "Macro+",
  16047. height: math.unit(200, "feet")
  16048. },
  16049. ]
  16050. ))
  16051. characterMakers.push(() => makeCharacter(
  16052. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16053. {
  16054. front: {
  16055. height: math.unit(6 + 1 / 12, "feet"),
  16056. weight: math.unit(210, "lb"),
  16057. name: "Front",
  16058. image: {
  16059. source: "./media/characters/hasani/front.svg",
  16060. extra: 244 / 232,
  16061. bottom: 0.01
  16062. }
  16063. },
  16064. back: {
  16065. height: math.unit(6 + 1 / 12, "feet"),
  16066. weight: math.unit(210, "lb"),
  16067. name: "Back",
  16068. image: {
  16069. source: "./media/characters/hasani/back.svg",
  16070. extra: 244 / 232,
  16071. bottom: 0.01
  16072. }
  16073. },
  16074. },
  16075. [
  16076. {
  16077. name: "Normal",
  16078. height: math.unit(6 + 1 / 12, "feet")
  16079. },
  16080. {
  16081. name: "Macro",
  16082. height: math.unit(175, "feet"),
  16083. default: true
  16084. },
  16085. ]
  16086. ))
  16087. characterMakers.push(() => makeCharacter(
  16088. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16089. {
  16090. front: {
  16091. height: math.unit(1.82, "meters"),
  16092. weight: math.unit(140, "lb"),
  16093. name: "Front",
  16094. image: {
  16095. source: "./media/characters/nita/front.svg",
  16096. extra: 2473 / 2363,
  16097. bottom: 0.01
  16098. }
  16099. },
  16100. },
  16101. [
  16102. {
  16103. name: "Normal",
  16104. height: math.unit(1.82, "m")
  16105. },
  16106. {
  16107. name: "Macro",
  16108. height: math.unit(300, "m")
  16109. },
  16110. {
  16111. name: "Mistake Canon",
  16112. height: math.unit(0.5, "miles"),
  16113. default: true
  16114. },
  16115. {
  16116. name: "Big Mistake",
  16117. height: math.unit(13, "miles")
  16118. },
  16119. {
  16120. name: "Playing God",
  16121. height: math.unit(2450, "miles")
  16122. },
  16123. ]
  16124. ))
  16125. characterMakers.push(() => makeCharacter(
  16126. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16127. {
  16128. front: {
  16129. height: math.unit(4, "feet"),
  16130. weight: math.unit(120, "lb"),
  16131. name: "Front",
  16132. image: {
  16133. source: "./media/characters/shiriko/front.svg",
  16134. extra: 195 / 188
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Normal",
  16141. height: math.unit(4, "feet"),
  16142. default: true
  16143. },
  16144. ]
  16145. ))
  16146. characterMakers.push(() => makeCharacter(
  16147. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16148. {
  16149. front: {
  16150. height: math.unit(6, "feet"),
  16151. name: "front",
  16152. image: {
  16153. source: "./media/characters/deja/front.svg",
  16154. extra: 926 / 840,
  16155. bottom: 0.07
  16156. }
  16157. },
  16158. },
  16159. [
  16160. {
  16161. name: "Planck Length",
  16162. height: math.unit(1.6e-35, "meters")
  16163. },
  16164. {
  16165. name: "Normal",
  16166. height: math.unit(30.48, "meters"),
  16167. default: true
  16168. },
  16169. {
  16170. name: "Universal",
  16171. height: math.unit(8.8e26, "meters")
  16172. },
  16173. ]
  16174. ))
  16175. characterMakers.push(() => makeCharacter(
  16176. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16177. {
  16178. side: {
  16179. height: math.unit(8, "feet"),
  16180. weight: math.unit(6300, "lb"),
  16181. name: "Side",
  16182. image: {
  16183. source: "./media/characters/anima/side.svg",
  16184. bottom: 0.035
  16185. }
  16186. },
  16187. },
  16188. [
  16189. {
  16190. name: "Normal",
  16191. height: math.unit(8, "feet"),
  16192. default: true
  16193. },
  16194. ]
  16195. ))
  16196. characterMakers.push(() => makeCharacter(
  16197. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16198. {
  16199. front: {
  16200. height: math.unit(8, "feet"),
  16201. weight: math.unit(350, "lb"),
  16202. name: "Front",
  16203. image: {
  16204. source: "./media/characters/bianca/front.svg",
  16205. extra: 234 / 225,
  16206. bottom: 0.03
  16207. }
  16208. },
  16209. },
  16210. [
  16211. {
  16212. name: "Normal",
  16213. height: math.unit(8, "feet"),
  16214. default: true
  16215. },
  16216. ]
  16217. ))
  16218. characterMakers.push(() => makeCharacter(
  16219. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16220. {
  16221. front: {
  16222. height: math.unit(6, "feet"),
  16223. weight: math.unit(150, "lb"),
  16224. name: "Front",
  16225. image: {
  16226. source: "./media/characters/adinia/front.svg",
  16227. extra: 1845 / 1672,
  16228. bottom: 0.02
  16229. }
  16230. },
  16231. back: {
  16232. height: math.unit(6, "feet"),
  16233. weight: math.unit(150, "lb"),
  16234. name: "Back",
  16235. image: {
  16236. source: "./media/characters/adinia/back.svg",
  16237. extra: 1845 / 1672,
  16238. bottom: 0.002
  16239. }
  16240. },
  16241. },
  16242. [
  16243. {
  16244. name: "Normal",
  16245. height: math.unit(11 + 5 / 12, "feet"),
  16246. default: true
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16252. {
  16253. front: {
  16254. height: math.unit(3, "meters"),
  16255. weight: math.unit(200, "kg"),
  16256. name: "Front",
  16257. image: {
  16258. source: "./media/characters/lykasa/front.svg",
  16259. extra: 1076 / 976,
  16260. bottom: 0.06
  16261. }
  16262. },
  16263. },
  16264. [
  16265. {
  16266. name: "Normal",
  16267. height: math.unit(3, "meters")
  16268. },
  16269. {
  16270. name: "Kaiju",
  16271. height: math.unit(120, "meters"),
  16272. default: true
  16273. },
  16274. {
  16275. name: "Mega Kaiju",
  16276. height: math.unit(240, "km")
  16277. },
  16278. {
  16279. name: "Giga Kaiju",
  16280. height: math.unit(400, "megameters")
  16281. },
  16282. {
  16283. name: "Tera Kaiju",
  16284. height: math.unit(800, "gigameters")
  16285. },
  16286. {
  16287. name: "Kaiju Dragon Goddess",
  16288. height: math.unit(26, "zettaparsecs")
  16289. },
  16290. ]
  16291. ))
  16292. characterMakers.push(() => makeCharacter(
  16293. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16294. {
  16295. side: {
  16296. height: math.unit(283 / 124 * 6, "feet"),
  16297. weight: math.unit(35000, "lb"),
  16298. name: "Side",
  16299. image: {
  16300. source: "./media/characters/malfaren/side.svg",
  16301. extra: 2500 / 1010,
  16302. bottom: 0.01
  16303. }
  16304. },
  16305. front: {
  16306. height: math.unit(22.36, "feet"),
  16307. weight: math.unit(35000, "lb"),
  16308. name: "Front",
  16309. image: {
  16310. source: "./media/characters/malfaren/front.svg",
  16311. extra: 1631 / 1476,
  16312. bottom: 0.01
  16313. }
  16314. },
  16315. maw: {
  16316. height: math.unit(6.9, "feet"),
  16317. name: "Maw",
  16318. image: {
  16319. source: "./media/characters/malfaren/maw.svg"
  16320. }
  16321. },
  16322. },
  16323. [
  16324. {
  16325. name: "Big",
  16326. height: math.unit(283 / 162 * 6, "feet"),
  16327. },
  16328. {
  16329. name: "Bigger",
  16330. height: math.unit(283 / 124 * 6, "feet")
  16331. },
  16332. {
  16333. name: "Massive",
  16334. height: math.unit(283 / 92 * 6, "feet"),
  16335. default: true
  16336. },
  16337. {
  16338. name: "👀💦",
  16339. height: math.unit(283 / 73 * 6, "feet"),
  16340. },
  16341. ]
  16342. ))
  16343. characterMakers.push(() => makeCharacter(
  16344. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16345. {
  16346. front: {
  16347. height: math.unit(1.7, "m"),
  16348. weight: math.unit(70, "kg"),
  16349. name: "Front",
  16350. image: {
  16351. source: "./media/characters/kernel/front.svg",
  16352. extra: 222 / 210,
  16353. bottom: 0.007
  16354. }
  16355. },
  16356. },
  16357. [
  16358. {
  16359. name: "Nano",
  16360. height: math.unit(17, "micrometers")
  16361. },
  16362. {
  16363. name: "Micro",
  16364. height: math.unit(1.7, "mm")
  16365. },
  16366. {
  16367. name: "Small",
  16368. height: math.unit(1.7, "cm")
  16369. },
  16370. {
  16371. name: "Normal",
  16372. height: math.unit(1.7, "m"),
  16373. default: true
  16374. },
  16375. ]
  16376. ))
  16377. characterMakers.push(() => makeCharacter(
  16378. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16379. {
  16380. front: {
  16381. height: math.unit(1.75, "meters"),
  16382. weight: math.unit(65, "kg"),
  16383. name: "Front",
  16384. image: {
  16385. source: "./media/characters/jayne-folest/front.svg",
  16386. extra: 2115 / 2007,
  16387. bottom: 0.02
  16388. }
  16389. },
  16390. back: {
  16391. height: math.unit(1.75, "meters"),
  16392. weight: math.unit(65, "kg"),
  16393. name: "Back",
  16394. image: {
  16395. source: "./media/characters/jayne-folest/back.svg",
  16396. extra: 2115 / 2007,
  16397. bottom: 0.005
  16398. }
  16399. },
  16400. frontClothed: {
  16401. height: math.unit(1.75, "meters"),
  16402. weight: math.unit(65, "kg"),
  16403. name: "Front (Clothed)",
  16404. image: {
  16405. source: "./media/characters/jayne-folest/front-clothed.svg",
  16406. extra: 2115 / 2007,
  16407. bottom: 0.035
  16408. }
  16409. },
  16410. hand: {
  16411. height: math.unit(1 / 1.260, "feet"),
  16412. name: "Hand",
  16413. image: {
  16414. source: "./media/characters/jayne-folest/hand.svg"
  16415. }
  16416. },
  16417. foot: {
  16418. height: math.unit(1 / 0.918, "feet"),
  16419. name: "Foot",
  16420. image: {
  16421. source: "./media/characters/jayne-folest/foot.svg"
  16422. }
  16423. },
  16424. },
  16425. [
  16426. {
  16427. name: "Micro",
  16428. height: math.unit(4, "cm")
  16429. },
  16430. {
  16431. name: "Normal",
  16432. height: math.unit(1.75, "meters")
  16433. },
  16434. {
  16435. name: "Macro",
  16436. height: math.unit(47.5, "meters"),
  16437. default: true
  16438. },
  16439. ]
  16440. ))
  16441. characterMakers.push(() => makeCharacter(
  16442. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16443. {
  16444. front: {
  16445. height: math.unit(180, "cm"),
  16446. weight: math.unit(70, "kg"),
  16447. name: "Front",
  16448. image: {
  16449. source: "./media/characters/algier/front.svg",
  16450. extra: 596 / 572,
  16451. bottom: 0.04
  16452. }
  16453. },
  16454. back: {
  16455. height: math.unit(180, "cm"),
  16456. weight: math.unit(70, "kg"),
  16457. name: "Back",
  16458. image: {
  16459. source: "./media/characters/algier/back.svg",
  16460. extra: 596 / 572,
  16461. bottom: 0.025
  16462. }
  16463. },
  16464. frontdressed: {
  16465. height: math.unit(180, "cm"),
  16466. weight: math.unit(150, "kg"),
  16467. name: "Front-dressed",
  16468. image: {
  16469. source: "./media/characters/algier/front-dressed.svg",
  16470. extra: 596 / 572,
  16471. bottom: 0.038
  16472. }
  16473. },
  16474. },
  16475. [
  16476. {
  16477. name: "Micro",
  16478. height: math.unit(5, "cm")
  16479. },
  16480. {
  16481. name: "Normal",
  16482. height: math.unit(180, "cm"),
  16483. default: true
  16484. },
  16485. {
  16486. name: "Macro",
  16487. height: math.unit(64, "m")
  16488. },
  16489. ]
  16490. ))
  16491. characterMakers.push(() => makeCharacter(
  16492. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16493. {
  16494. upright: {
  16495. height: math.unit(7, "feet"),
  16496. weight: math.unit(300, "lb"),
  16497. name: "Upright",
  16498. image: {
  16499. source: "./media/characters/pretzel/upright.svg",
  16500. extra: 534 / 522,
  16501. bottom: 0.065
  16502. }
  16503. },
  16504. sprawling: {
  16505. height: math.unit(3.75, "feet"),
  16506. weight: math.unit(300, "lb"),
  16507. name: "Sprawling",
  16508. image: {
  16509. source: "./media/characters/pretzel/sprawling.svg",
  16510. extra: 314 / 281,
  16511. bottom: 0.1
  16512. }
  16513. },
  16514. tongue: {
  16515. height: math.unit(2, "feet"),
  16516. name: "Tongue",
  16517. image: {
  16518. source: "./media/characters/pretzel/tongue.svg"
  16519. }
  16520. },
  16521. },
  16522. [
  16523. {
  16524. name: "Normal",
  16525. height: math.unit(7, "feet"),
  16526. default: true
  16527. },
  16528. {
  16529. name: "Oversized",
  16530. height: math.unit(15, "feet")
  16531. },
  16532. {
  16533. name: "Huge",
  16534. height: math.unit(30, "feet")
  16535. },
  16536. {
  16537. name: "Macro",
  16538. height: math.unit(250, "feet")
  16539. },
  16540. ]
  16541. ))
  16542. characterMakers.push(() => makeCharacter(
  16543. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16544. {
  16545. sideFront: {
  16546. height: math.unit(5 + 2 / 12, "feet"),
  16547. weight: math.unit(120, "lb"),
  16548. name: "Front Side",
  16549. image: {
  16550. source: "./media/characters/roxi/side-front.svg",
  16551. extra: 2924 / 2717,
  16552. bottom: 0.08
  16553. }
  16554. },
  16555. sideBack: {
  16556. height: math.unit(5 + 2 / 12, "feet"),
  16557. weight: math.unit(120, "lb"),
  16558. name: "Back Side",
  16559. image: {
  16560. source: "./media/characters/roxi/side-back.svg",
  16561. extra: 2904 / 2693,
  16562. bottom: 0.06
  16563. }
  16564. },
  16565. front: {
  16566. height: math.unit(5 + 2 / 12, "feet"),
  16567. weight: math.unit(120, "lb"),
  16568. name: "Front",
  16569. image: {
  16570. source: "./media/characters/roxi/front.svg",
  16571. extra: 2028 / 1907,
  16572. bottom: 0.01
  16573. }
  16574. },
  16575. frontAlt: {
  16576. height: math.unit(5 + 2 / 12, "feet"),
  16577. weight: math.unit(120, "lb"),
  16578. name: "Front (Alt)",
  16579. image: {
  16580. source: "./media/characters/roxi/front-alt.svg",
  16581. extra: 1828 / 1798,
  16582. bottom: 0.01
  16583. }
  16584. },
  16585. sitting: {
  16586. height: math.unit(2.8, "feet"),
  16587. weight: math.unit(120, "lb"),
  16588. name: "Sitting",
  16589. image: {
  16590. source: "./media/characters/roxi/sitting.svg",
  16591. extra: 2660 / 2462,
  16592. bottom: 0.1
  16593. }
  16594. },
  16595. },
  16596. [
  16597. {
  16598. name: "Normal",
  16599. height: math.unit(5 + 2 / 12, "feet"),
  16600. default: true
  16601. },
  16602. ]
  16603. ))
  16604. characterMakers.push(() => makeCharacter(
  16605. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16606. {
  16607. side: {
  16608. height: math.unit(55, "feet"),
  16609. weight: math.unit(153, "tons"),
  16610. name: "Side",
  16611. image: {
  16612. source: "./media/characters/shadow/side.svg",
  16613. extra: 701 / 628,
  16614. bottom: 0.02
  16615. }
  16616. },
  16617. flying: {
  16618. height: math.unit(145, "feet"),
  16619. weight: math.unit(153, "tons"),
  16620. name: "Flying",
  16621. image: {
  16622. source: "./media/characters/shadow/flying.svg"
  16623. }
  16624. },
  16625. },
  16626. [
  16627. {
  16628. name: "Normal",
  16629. height: math.unit(55, "feet"),
  16630. default: true
  16631. },
  16632. ]
  16633. ))
  16634. characterMakers.push(() => makeCharacter(
  16635. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16636. {
  16637. front: {
  16638. height: math.unit(6, "feet"),
  16639. weight: math.unit(200, "lb"),
  16640. name: "Front",
  16641. image: {
  16642. source: "./media/characters/marcie/front.svg",
  16643. extra: 960 / 876,
  16644. bottom: 58 / 1017.87
  16645. }
  16646. },
  16647. },
  16648. [
  16649. {
  16650. name: "Macro",
  16651. height: math.unit(1, "mile"),
  16652. default: true
  16653. },
  16654. ]
  16655. ))
  16656. characterMakers.push(() => makeCharacter(
  16657. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16658. {
  16659. front: {
  16660. height: math.unit(7, "feet"),
  16661. weight: math.unit(200, "lb"),
  16662. name: "Front",
  16663. image: {
  16664. source: "./media/characters/kachina/front.svg",
  16665. extra: 1290.68 / 1119,
  16666. bottom: 36.5 / 1327.18
  16667. }
  16668. },
  16669. },
  16670. [
  16671. {
  16672. name: "Normal",
  16673. height: math.unit(7, "feet"),
  16674. default: true
  16675. },
  16676. ]
  16677. ))
  16678. characterMakers.push(() => makeCharacter(
  16679. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16680. {
  16681. looking: {
  16682. height: math.unit(2, "meters"),
  16683. weight: math.unit(300, "kg"),
  16684. name: "Looking",
  16685. image: {
  16686. source: "./media/characters/kash/looking.svg",
  16687. extra: 474 / 344,
  16688. bottom: 0.03
  16689. }
  16690. },
  16691. side: {
  16692. height: math.unit(2, "meters"),
  16693. weight: math.unit(300, "kg"),
  16694. name: "Side",
  16695. image: {
  16696. source: "./media/characters/kash/side.svg",
  16697. extra: 302 / 251,
  16698. bottom: 0.03
  16699. }
  16700. },
  16701. front: {
  16702. height: math.unit(2, "meters"),
  16703. weight: math.unit(300, "kg"),
  16704. name: "Front",
  16705. image: {
  16706. source: "./media/characters/kash/front.svg",
  16707. extra: 495 / 360,
  16708. bottom: 0.015
  16709. }
  16710. },
  16711. },
  16712. [
  16713. {
  16714. name: "Normal",
  16715. height: math.unit(2, "meters"),
  16716. default: true
  16717. },
  16718. {
  16719. name: "Big",
  16720. height: math.unit(3, "meters")
  16721. },
  16722. {
  16723. name: "Large",
  16724. height: math.unit(5, "meters")
  16725. },
  16726. ]
  16727. ))
  16728. characterMakers.push(() => makeCharacter(
  16729. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16730. {
  16731. feeding: {
  16732. height: math.unit(6.7, "feet"),
  16733. weight: math.unit(350, "lb"),
  16734. name: "Feeding",
  16735. image: {
  16736. source: "./media/characters/lalim/feeding.svg",
  16737. }
  16738. },
  16739. },
  16740. [
  16741. {
  16742. name: "Normal",
  16743. height: math.unit(6.7, "feet"),
  16744. default: true
  16745. },
  16746. ]
  16747. ))
  16748. characterMakers.push(() => makeCharacter(
  16749. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16750. {
  16751. front: {
  16752. height: math.unit(9.5, "feet"),
  16753. weight: math.unit(600, "lb"),
  16754. name: "Front",
  16755. image: {
  16756. source: "./media/characters/de'vout/front.svg",
  16757. extra: 1443 / 1328,
  16758. bottom: 0.025
  16759. }
  16760. },
  16761. back: {
  16762. height: math.unit(9.5, "feet"),
  16763. weight: math.unit(600, "lb"),
  16764. name: "Back",
  16765. image: {
  16766. source: "./media/characters/de'vout/back.svg",
  16767. extra: 1443 / 1328
  16768. }
  16769. },
  16770. frontDressed: {
  16771. height: math.unit(9.5, "feet"),
  16772. weight: math.unit(600, "lb"),
  16773. name: "Front (Dressed",
  16774. image: {
  16775. source: "./media/characters/de'vout/front-dressed.svg",
  16776. extra: 1443 / 1328,
  16777. bottom: 0.025
  16778. }
  16779. },
  16780. backDressed: {
  16781. height: math.unit(9.5, "feet"),
  16782. weight: math.unit(600, "lb"),
  16783. name: "Back (Dressed",
  16784. image: {
  16785. source: "./media/characters/de'vout/back-dressed.svg",
  16786. extra: 1443 / 1328
  16787. }
  16788. },
  16789. },
  16790. [
  16791. {
  16792. name: "Normal",
  16793. height: math.unit(9.5, "feet"),
  16794. default: true
  16795. },
  16796. ]
  16797. ))
  16798. characterMakers.push(() => makeCharacter(
  16799. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16800. {
  16801. front: {
  16802. height: math.unit(8, "feet"),
  16803. weight: math.unit(225, "lb"),
  16804. name: "Front",
  16805. image: {
  16806. source: "./media/characters/talana/front.svg",
  16807. extra: 1410 / 1300,
  16808. bottom: 0.015
  16809. }
  16810. },
  16811. frontDressed: {
  16812. height: math.unit(8, "feet"),
  16813. weight: math.unit(225, "lb"),
  16814. name: "Front (Dressed",
  16815. image: {
  16816. source: "./media/characters/talana/front-dressed.svg",
  16817. extra: 1410 / 1300,
  16818. bottom: 0.015
  16819. }
  16820. },
  16821. },
  16822. [
  16823. {
  16824. name: "Normal",
  16825. height: math.unit(8, "feet"),
  16826. default: true
  16827. },
  16828. ]
  16829. ))
  16830. characterMakers.push(() => makeCharacter(
  16831. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  16832. {
  16833. side: {
  16834. height: math.unit(7.2, "feet"),
  16835. weight: math.unit(150, "lb"),
  16836. name: "Side",
  16837. image: {
  16838. source: "./media/characters/xeauvok/side.svg",
  16839. extra: 1975 / 1523,
  16840. bottom: 0.07
  16841. }
  16842. },
  16843. },
  16844. [
  16845. {
  16846. name: "Normal",
  16847. height: math.unit(7.2, "feet"),
  16848. default: true
  16849. },
  16850. ]
  16851. ))
  16852. characterMakers.push(() => makeCharacter(
  16853. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  16854. {
  16855. side: {
  16856. height: math.unit(10, "feet"),
  16857. weight: math.unit(900, "kg"),
  16858. name: "Side",
  16859. image: {
  16860. source: "./media/characters/zara/side.svg",
  16861. extra: 504 / 498
  16862. }
  16863. },
  16864. },
  16865. [
  16866. {
  16867. name: "Normal",
  16868. height: math.unit(10, "feet"),
  16869. default: true
  16870. },
  16871. ]
  16872. ))
  16873. characterMakers.push(() => makeCharacter(
  16874. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  16875. {
  16876. side: {
  16877. height: math.unit(6, "feet"),
  16878. weight: math.unit(150, "lb"),
  16879. name: "Side",
  16880. image: {
  16881. source: "./media/characters/richard-dragon/side.svg",
  16882. extra: 845 / 340,
  16883. bottom: 0.017
  16884. }
  16885. },
  16886. maw: {
  16887. height: math.unit(2.97, "feet"),
  16888. name: "Maw",
  16889. image: {
  16890. source: "./media/characters/richard-dragon/maw.svg"
  16891. }
  16892. },
  16893. },
  16894. [
  16895. ]
  16896. ))
  16897. characterMakers.push(() => makeCharacter(
  16898. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  16899. {
  16900. front: {
  16901. height: math.unit(4, "feet"),
  16902. weight: math.unit(100, "lb"),
  16903. name: "Front",
  16904. image: {
  16905. source: "./media/characters/richard-smeargle/front.svg",
  16906. extra: 2952 / 2820,
  16907. bottom: 0.028
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(4, "feet"),
  16915. default: true
  16916. },
  16917. {
  16918. name: "Dynamax",
  16919. height: math.unit(20, "meters")
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  16925. {
  16926. front: {
  16927. height: math.unit(6, "feet"),
  16928. weight: math.unit(110, "lb"),
  16929. name: "Front",
  16930. image: {
  16931. source: "./media/characters/klay/front.svg",
  16932. extra: 962 / 883,
  16933. bottom: 0.04
  16934. }
  16935. },
  16936. back: {
  16937. height: math.unit(6, "feet"),
  16938. weight: math.unit(110, "lb"),
  16939. name: "Back",
  16940. image: {
  16941. source: "./media/characters/klay/back.svg",
  16942. extra: 962 / 883
  16943. }
  16944. },
  16945. beans: {
  16946. height: math.unit(1.15, "feet"),
  16947. name: "Beans",
  16948. image: {
  16949. source: "./media/characters/klay/beans.svg"
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Micro",
  16956. height: math.unit(6, "inches")
  16957. },
  16958. {
  16959. name: "Mini",
  16960. height: math.unit(3, "feet")
  16961. },
  16962. {
  16963. name: "Normal",
  16964. height: math.unit(6, "feet"),
  16965. default: true
  16966. },
  16967. {
  16968. name: "Big",
  16969. height: math.unit(25, "feet")
  16970. },
  16971. {
  16972. name: "Macro",
  16973. height: math.unit(100, "feet")
  16974. },
  16975. {
  16976. name: "Megamacro",
  16977. height: math.unit(400, "feet")
  16978. },
  16979. ]
  16980. ))
  16981. characterMakers.push(() => makeCharacter(
  16982. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  16983. {
  16984. front: {
  16985. height: math.unit(6, "feet"),
  16986. weight: math.unit(160, "lb"),
  16987. name: "Front",
  16988. image: {
  16989. source: "./media/characters/marcus/front.svg",
  16990. extra: 734 / 676,
  16991. bottom: 0.03
  16992. }
  16993. },
  16994. },
  16995. [
  16996. {
  16997. name: "Little",
  16998. height: math.unit(6, "feet")
  16999. },
  17000. {
  17001. name: "Normal",
  17002. height: math.unit(110, "feet"),
  17003. default: true
  17004. },
  17005. {
  17006. name: "Macro",
  17007. height: math.unit(250, "feet")
  17008. },
  17009. {
  17010. name: "Megamacro",
  17011. height: math.unit(1000, "feet")
  17012. },
  17013. ]
  17014. ))
  17015. characterMakers.push(() => makeCharacter(
  17016. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17017. {
  17018. front: {
  17019. height: math.unit(7, "feet"),
  17020. weight: math.unit(275, "lb"),
  17021. name: "Front",
  17022. image: {
  17023. source: "./media/characters/claude-delroute/front.svg",
  17024. extra: 230 / 214,
  17025. bottom: 0.007
  17026. }
  17027. },
  17028. side: {
  17029. height: math.unit(7, "feet"),
  17030. weight: math.unit(275, "lb"),
  17031. name: "Side",
  17032. image: {
  17033. source: "./media/characters/claude-delroute/side.svg",
  17034. extra: 222 / 214,
  17035. bottom: 0.01
  17036. }
  17037. },
  17038. back: {
  17039. height: math.unit(7, "feet"),
  17040. weight: math.unit(275, "lb"),
  17041. name: "Back",
  17042. image: {
  17043. source: "./media/characters/claude-delroute/back.svg",
  17044. extra: 230 / 214,
  17045. bottom: 0.015
  17046. }
  17047. },
  17048. maw: {
  17049. height: math.unit(0.6407, "meters"),
  17050. name: "Maw",
  17051. image: {
  17052. source: "./media/characters/claude-delroute/maw.svg"
  17053. }
  17054. },
  17055. },
  17056. [
  17057. {
  17058. name: "Normal",
  17059. height: math.unit(7, "feet"),
  17060. default: true
  17061. },
  17062. {
  17063. name: "Lorge",
  17064. height: math.unit(20, "feet")
  17065. },
  17066. ]
  17067. ))
  17068. characterMakers.push(() => makeCharacter(
  17069. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17070. {
  17071. front: {
  17072. height: math.unit(8 + 4 / 12, "feet"),
  17073. weight: math.unit(600, "lb"),
  17074. name: "Front",
  17075. image: {
  17076. source: "./media/characters/dragonien/front.svg",
  17077. extra: 100 / 94,
  17078. bottom: 3.3 / 103.3445
  17079. }
  17080. },
  17081. back: {
  17082. height: math.unit(8 + 4 / 12, "feet"),
  17083. weight: math.unit(600, "lb"),
  17084. name: "Back",
  17085. image: {
  17086. source: "./media/characters/dragonien/back.svg",
  17087. extra: 776 / 746,
  17088. bottom: 6.4 / 782.0616
  17089. }
  17090. },
  17091. foot: {
  17092. height: math.unit(1.54, "feet"),
  17093. name: "Foot",
  17094. image: {
  17095. source: "./media/characters/dragonien/foot.svg",
  17096. }
  17097. },
  17098. },
  17099. [
  17100. {
  17101. name: "Normal",
  17102. height: math.unit(8 + 4 / 12, "feet"),
  17103. default: true
  17104. },
  17105. {
  17106. name: "Macro",
  17107. height: math.unit(200, "feet")
  17108. },
  17109. {
  17110. name: "Megamacro",
  17111. height: math.unit(1, "mile")
  17112. },
  17113. {
  17114. name: "Gigamacro",
  17115. height: math.unit(1000, "miles")
  17116. },
  17117. ]
  17118. ))
  17119. characterMakers.push(() => makeCharacter(
  17120. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17121. {
  17122. front: {
  17123. height: math.unit(5 + 2 / 12, "feet"),
  17124. weight: math.unit(110, "lb"),
  17125. name: "Front",
  17126. image: {
  17127. source: "./media/characters/desta/front.svg",
  17128. extra: 1482 / 1417
  17129. }
  17130. },
  17131. side: {
  17132. height: math.unit(5 + 2 / 12, "feet"),
  17133. weight: math.unit(110, "lb"),
  17134. name: "Side",
  17135. image: {
  17136. source: "./media/characters/desta/side.svg",
  17137. extra: 2579 / 2491,
  17138. bottom: 0.053
  17139. }
  17140. },
  17141. },
  17142. [
  17143. {
  17144. name: "Micro",
  17145. height: math.unit(6, "inches")
  17146. },
  17147. {
  17148. name: "Normal",
  17149. height: math.unit(5 + 2 / 12, "feet"),
  17150. default: true
  17151. },
  17152. {
  17153. name: "Macro",
  17154. height: math.unit(62, "feet")
  17155. },
  17156. {
  17157. name: "Megamacro",
  17158. height: math.unit(1800, "feet")
  17159. },
  17160. ]
  17161. ))
  17162. characterMakers.push(() => makeCharacter(
  17163. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17164. {
  17165. front: {
  17166. height: math.unit(10, "feet"),
  17167. weight: math.unit(700, "lb"),
  17168. name: "Front",
  17169. image: {
  17170. source: "./media/characters/storm-alystar/front.svg",
  17171. extra: 2112 / 1898,
  17172. bottom: 0.034
  17173. }
  17174. },
  17175. },
  17176. [
  17177. {
  17178. name: "Micro",
  17179. height: math.unit(3.5, "inches")
  17180. },
  17181. {
  17182. name: "Normal",
  17183. height: math.unit(10, "feet"),
  17184. default: true
  17185. },
  17186. {
  17187. name: "Macro",
  17188. height: math.unit(400, "feet")
  17189. },
  17190. {
  17191. name: "Deific",
  17192. height: math.unit(60, "miles")
  17193. },
  17194. ]
  17195. ))
  17196. characterMakers.push(() => makeCharacter(
  17197. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17198. {
  17199. front: {
  17200. height: math.unit(2.35, "meters"),
  17201. weight: math.unit(119, "kg"),
  17202. name: "Front",
  17203. image: {
  17204. source: "./media/characters/ilia/front.svg",
  17205. extra: 1285 / 1255,
  17206. bottom: 0.06
  17207. }
  17208. },
  17209. },
  17210. [
  17211. {
  17212. name: "Normal",
  17213. height: math.unit(2.35, "meters")
  17214. },
  17215. {
  17216. name: "Macro",
  17217. height: math.unit(140, "meters"),
  17218. default: true
  17219. },
  17220. {
  17221. name: "Megamacro",
  17222. height: math.unit(100, "miles")
  17223. },
  17224. ]
  17225. ))
  17226. characterMakers.push(() => makeCharacter(
  17227. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17228. {
  17229. front: {
  17230. height: math.unit(6 + 5 / 12, "feet"),
  17231. weight: math.unit(190, "lb"),
  17232. name: "Front",
  17233. image: {
  17234. source: "./media/characters/kingdead/front.svg",
  17235. extra: 1228 / 1177
  17236. }
  17237. },
  17238. },
  17239. [
  17240. {
  17241. name: "Micro",
  17242. height: math.unit(7, "inches")
  17243. },
  17244. {
  17245. name: "Normal",
  17246. height: math.unit(6 + 5 / 12, "feet")
  17247. },
  17248. {
  17249. name: "Macro",
  17250. height: math.unit(150, "feet"),
  17251. default: true
  17252. },
  17253. {
  17254. name: "Megamacro",
  17255. height: math.unit(200, "miles")
  17256. },
  17257. ]
  17258. ))
  17259. characterMakers.push(() => makeCharacter(
  17260. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17261. {
  17262. front: {
  17263. height: math.unit(8, "feet"),
  17264. weight: math.unit(600, "lb"),
  17265. name: "Front",
  17266. image: {
  17267. source: "./media/characters/kyrehx/front.svg",
  17268. extra: 1195 / 1095,
  17269. bottom: 0.034
  17270. }
  17271. },
  17272. },
  17273. [
  17274. {
  17275. name: "Micro",
  17276. height: math.unit(2, "inches")
  17277. },
  17278. {
  17279. name: "Normal",
  17280. height: math.unit(8, "feet"),
  17281. default: true
  17282. },
  17283. {
  17284. name: "Macro",
  17285. height: math.unit(255, "feet")
  17286. },
  17287. ]
  17288. ))
  17289. characterMakers.push(() => makeCharacter(
  17290. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17291. {
  17292. front: {
  17293. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17294. weight: math.unit(184, "lb"),
  17295. name: "Front",
  17296. image: {
  17297. source: "./media/characters/xang/front.svg",
  17298. extra: 845 / 755
  17299. }
  17300. },
  17301. },
  17302. [
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17306. default: true
  17307. },
  17308. {
  17309. name: "Macro",
  17310. height: math.unit(0.935 * 146, "feet")
  17311. },
  17312. {
  17313. name: "Megamacro",
  17314. height: math.unit(0.935 * 3, "miles")
  17315. },
  17316. ]
  17317. ))
  17318. characterMakers.push(() => makeCharacter(
  17319. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17320. {
  17321. frontDressed: {
  17322. height: math.unit(5 + 7 / 12, "feet"),
  17323. weight: math.unit(140, "lb"),
  17324. name: "Front (Dressed)",
  17325. image: {
  17326. source: "./media/characters/doc-weardno/front-dressed.svg",
  17327. extra: 263 / 234
  17328. }
  17329. },
  17330. backDressed: {
  17331. height: math.unit(5 + 7 / 12, "feet"),
  17332. weight: math.unit(140, "lb"),
  17333. name: "Back (Dressed)",
  17334. image: {
  17335. source: "./media/characters/doc-weardno/back-dressed.svg",
  17336. extra: 266 / 238
  17337. }
  17338. },
  17339. front: {
  17340. height: math.unit(5 + 7 / 12, "feet"),
  17341. weight: math.unit(140, "lb"),
  17342. name: "Front",
  17343. image: {
  17344. source: "./media/characters/doc-weardno/front.svg",
  17345. extra: 254 / 233
  17346. }
  17347. },
  17348. },
  17349. [
  17350. {
  17351. name: "Micro",
  17352. height: math.unit(3, "inches")
  17353. },
  17354. {
  17355. name: "Normal",
  17356. height: math.unit(5 + 7 / 12, "feet"),
  17357. default: true
  17358. },
  17359. {
  17360. name: "Macro",
  17361. height: math.unit(25, "feet")
  17362. },
  17363. {
  17364. name: "Megamacro",
  17365. height: math.unit(2, "miles")
  17366. },
  17367. ]
  17368. ))
  17369. characterMakers.push(() => makeCharacter(
  17370. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17371. {
  17372. front: {
  17373. height: math.unit(6 + 2 / 12, "feet"),
  17374. weight: math.unit(153, "lb"),
  17375. name: "Front",
  17376. image: {
  17377. source: "./media/characters/seth-whilst/front.svg",
  17378. bottom: 0.07
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Micro",
  17385. height: math.unit(5, "inches")
  17386. },
  17387. {
  17388. name: "Normal",
  17389. height: math.unit(6 + 2 / 12, "feet"),
  17390. default: true
  17391. },
  17392. ]
  17393. ))
  17394. characterMakers.push(() => makeCharacter(
  17395. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17396. {
  17397. front: {
  17398. height: math.unit(3, "inches"),
  17399. weight: math.unit(8, "grams"),
  17400. name: "Front",
  17401. image: {
  17402. source: "./media/characters/pocket-jabari/front.svg",
  17403. extra: 1024 / 974,
  17404. bottom: 0.039
  17405. }
  17406. },
  17407. },
  17408. [
  17409. {
  17410. name: "Minimicro",
  17411. height: math.unit(8, "mm")
  17412. },
  17413. {
  17414. name: "Micro",
  17415. height: math.unit(3, "inches"),
  17416. default: true
  17417. },
  17418. {
  17419. name: "Normal",
  17420. height: math.unit(3, "feet")
  17421. },
  17422. ]
  17423. ))
  17424. characterMakers.push(() => makeCharacter(
  17425. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17426. {
  17427. front: {
  17428. height: math.unit(15, "feet"),
  17429. weight: math.unit(3280, "lb"),
  17430. name: "Front",
  17431. image: {
  17432. source: "./media/characters/sapphy/front.svg",
  17433. extra: 671 / 577,
  17434. bottom: 0.085
  17435. }
  17436. },
  17437. back: {
  17438. height: math.unit(15, "feet"),
  17439. weight: math.unit(3280, "lb"),
  17440. name: "Back",
  17441. image: {
  17442. source: "./media/characters/sapphy/back.svg",
  17443. extra: 631 / 607,
  17444. bottom: 0.045
  17445. }
  17446. },
  17447. },
  17448. [
  17449. {
  17450. name: "Normal",
  17451. height: math.unit(15, "feet")
  17452. },
  17453. {
  17454. name: "Casual Macro",
  17455. height: math.unit(120, "feet")
  17456. },
  17457. {
  17458. name: "Macro",
  17459. height: math.unit(2150, "feet"),
  17460. default: true
  17461. },
  17462. {
  17463. name: "Megamacro",
  17464. height: math.unit(8, "miles")
  17465. },
  17466. {
  17467. name: "Galaxy Mom",
  17468. height: math.unit(6, "megalightyears")
  17469. },
  17470. ]
  17471. ))
  17472. characterMakers.push(() => makeCharacter(
  17473. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17474. {
  17475. front: {
  17476. height: math.unit(6, "feet"),
  17477. weight: math.unit(170, "lb"),
  17478. name: "Front",
  17479. image: {
  17480. source: "./media/characters/kiro/front.svg",
  17481. extra: 1064 / 1012,
  17482. bottom: 0.052
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Micro",
  17489. height: math.unit(6, "inches")
  17490. },
  17491. {
  17492. name: "Normal",
  17493. height: math.unit(6, "feet"),
  17494. default: true
  17495. },
  17496. {
  17497. name: "Macro",
  17498. height: math.unit(72, "feet")
  17499. },
  17500. ]
  17501. ))
  17502. characterMakers.push(() => makeCharacter(
  17503. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17504. {
  17505. front: {
  17506. height: math.unit(5 + 9 / 12, "feet"),
  17507. weight: math.unit(175, "lb"),
  17508. name: "Front",
  17509. image: {
  17510. source: "./media/characters/irishfox/front.svg",
  17511. extra: 1912 / 1680,
  17512. bottom: 0.02
  17513. }
  17514. },
  17515. },
  17516. [
  17517. {
  17518. name: "Nano",
  17519. height: math.unit(1, "mm")
  17520. },
  17521. {
  17522. name: "Micro",
  17523. height: math.unit(2, "inches")
  17524. },
  17525. {
  17526. name: "Normal",
  17527. height: math.unit(5 + 9 / 12, "feet"),
  17528. default: true
  17529. },
  17530. {
  17531. name: "Macro",
  17532. height: math.unit(45, "feet")
  17533. },
  17534. ]
  17535. ))
  17536. characterMakers.push(() => makeCharacter(
  17537. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17538. {
  17539. front: {
  17540. height: math.unit(6 + 1 / 12, "feet"),
  17541. weight: math.unit(150, "lb"),
  17542. name: "Front",
  17543. image: {
  17544. source: "./media/characters/aronai-sieyes/front.svg",
  17545. extra: 1556 / 1480,
  17546. bottom: 0.015
  17547. }
  17548. },
  17549. side: {
  17550. height: math.unit(6 + 1 / 12, "feet"),
  17551. weight: math.unit(150, "lb"),
  17552. name: "Side",
  17553. image: {
  17554. source: "./media/characters/aronai-sieyes/side.svg",
  17555. extra: 1433 / 1390,
  17556. bottom: 0.0393
  17557. }
  17558. },
  17559. back: {
  17560. height: math.unit(6 + 1 / 12, "feet"),
  17561. weight: math.unit(150, "lb"),
  17562. name: "Back",
  17563. image: {
  17564. source: "./media/characters/aronai-sieyes/back.svg",
  17565. extra: 1544 / 1494,
  17566. bottom: 0.02
  17567. }
  17568. },
  17569. frontClothed: {
  17570. height: math.unit(6 + 1 / 12, "feet"),
  17571. weight: math.unit(150, "lb"),
  17572. name: "Front (Clothed)",
  17573. image: {
  17574. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17575. extra: 1582 / 1527
  17576. }
  17577. },
  17578. feral: {
  17579. height: math.unit(18, "feet"),
  17580. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17581. name: "Feral",
  17582. image: {
  17583. source: "./media/characters/aronai-sieyes/feral.svg",
  17584. extra: 1530 / 1240,
  17585. bottom: 0.035
  17586. }
  17587. },
  17588. },
  17589. [
  17590. {
  17591. name: "Micro",
  17592. height: math.unit(2, "inches")
  17593. },
  17594. {
  17595. name: "Normal",
  17596. height: math.unit(6 + 1 / 12, "feet"),
  17597. default: true
  17598. }
  17599. ]
  17600. ))
  17601. characterMakers.push(() => makeCharacter(
  17602. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17603. {
  17604. front: {
  17605. height: math.unit(12, "feet"),
  17606. weight: math.unit(410, "kg"),
  17607. name: "Front",
  17608. image: {
  17609. source: "./media/characters/xuna/front.svg",
  17610. extra: 2184 / 1980
  17611. }
  17612. },
  17613. side: {
  17614. height: math.unit(12, "feet"),
  17615. weight: math.unit(410, "kg"),
  17616. name: "Side",
  17617. image: {
  17618. source: "./media/characters/xuna/side.svg",
  17619. extra: 2184 / 1980
  17620. }
  17621. },
  17622. back: {
  17623. height: math.unit(12, "feet"),
  17624. weight: math.unit(410, "kg"),
  17625. name: "Back",
  17626. image: {
  17627. source: "./media/characters/xuna/back.svg",
  17628. extra: 2184 / 1980
  17629. }
  17630. },
  17631. },
  17632. [
  17633. {
  17634. name: "Nano glow",
  17635. height: math.unit(10, "nm")
  17636. },
  17637. {
  17638. name: "Micro floof",
  17639. height: math.unit(0.3, "m")
  17640. },
  17641. {
  17642. name: "Huggable softy boi",
  17643. height: math.unit(3.6576, "m"),
  17644. default: true
  17645. },
  17646. {
  17647. name: "Admirable floof",
  17648. height: math.unit(80, "meters")
  17649. },
  17650. {
  17651. name: "Gentle macro",
  17652. height: math.unit(300, "meters")
  17653. },
  17654. {
  17655. name: "Very careful floof",
  17656. height: math.unit(3200, "meters")
  17657. },
  17658. {
  17659. name: "The mega floof",
  17660. height: math.unit(36000, "meters")
  17661. },
  17662. {
  17663. name: "Giga-fur-Wicker",
  17664. height: math.unit(4800000, "meters")
  17665. },
  17666. {
  17667. name: "Licky world",
  17668. height: math.unit(20000000, "meters")
  17669. },
  17670. {
  17671. name: "Floofy cyan sun",
  17672. height: math.unit(1500000000, "meters")
  17673. },
  17674. {
  17675. name: "Milky Wicker",
  17676. height: math.unit(1000000000000000000000, "meters")
  17677. },
  17678. {
  17679. name: "The observing Wicker",
  17680. height: math.unit(999999999999999999999999999, "meters")
  17681. },
  17682. ]
  17683. ))
  17684. characterMakers.push(() => makeCharacter(
  17685. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17686. {
  17687. front: {
  17688. height: math.unit(5 + 9 / 12, "feet"),
  17689. weight: math.unit(150, "lb"),
  17690. name: "Front",
  17691. image: {
  17692. source: "./media/characters/arokha-sieyes/front.svg",
  17693. extra: 1425 / 1284,
  17694. bottom: 0.05
  17695. }
  17696. },
  17697. },
  17698. [
  17699. {
  17700. name: "Normal",
  17701. height: math.unit(5 + 9 / 12, "feet")
  17702. },
  17703. {
  17704. name: "Macro",
  17705. height: math.unit(30, "meters"),
  17706. default: true
  17707. },
  17708. ]
  17709. ))
  17710. characterMakers.push(() => makeCharacter(
  17711. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17712. {
  17713. front: {
  17714. height: math.unit(6, "feet"),
  17715. weight: math.unit(180, "lb"),
  17716. name: "Front",
  17717. image: {
  17718. source: "./media/characters/arokh-sieyes/front.svg",
  17719. extra: 1830 / 1769,
  17720. bottom: 0.01
  17721. }
  17722. },
  17723. },
  17724. [
  17725. {
  17726. name: "Normal",
  17727. height: math.unit(6, "feet")
  17728. },
  17729. {
  17730. name: "Macro",
  17731. height: math.unit(30, "meters"),
  17732. default: true
  17733. },
  17734. ]
  17735. ))
  17736. characterMakers.push(() => makeCharacter(
  17737. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17738. {
  17739. side: {
  17740. height: math.unit(13 + 1 / 12, "feet"),
  17741. weight: math.unit(8.5, "tonnes"),
  17742. name: "Side",
  17743. image: {
  17744. source: "./media/characters/goldeneye/side.svg",
  17745. extra: 1182 / 778,
  17746. bottom: 0.067
  17747. }
  17748. },
  17749. paw: {
  17750. height: math.unit(3.4, "feet"),
  17751. name: "Paw",
  17752. image: {
  17753. source: "./media/characters/goldeneye/paw.svg"
  17754. }
  17755. },
  17756. },
  17757. [
  17758. {
  17759. name: "Normal",
  17760. height: math.unit(13 + 1 / 12, "feet"),
  17761. default: true
  17762. },
  17763. ]
  17764. ))
  17765. characterMakers.push(() => makeCharacter(
  17766. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17767. {
  17768. front: {
  17769. height: math.unit(6 + 1 / 12, "feet"),
  17770. weight: math.unit(210, "lb"),
  17771. name: "Front",
  17772. image: {
  17773. source: "./media/characters/leonardo-lycheborne/front.svg",
  17774. extra: 390 / 365,
  17775. bottom: 0.032
  17776. }
  17777. },
  17778. side: {
  17779. height: math.unit(6 + 1 / 12, "feet"),
  17780. weight: math.unit(210, "lb"),
  17781. name: "Side",
  17782. image: {
  17783. source: "./media/characters/leonardo-lycheborne/side.svg",
  17784. extra: 390 / 365,
  17785. bottom: 0.005
  17786. }
  17787. },
  17788. back: {
  17789. height: math.unit(6 + 1 / 12, "feet"),
  17790. weight: math.unit(210, "lb"),
  17791. name: "Back",
  17792. image: {
  17793. source: "./media/characters/leonardo-lycheborne/back.svg",
  17794. extra: 392 / 366,
  17795. bottom: 0.01
  17796. }
  17797. },
  17798. hand: {
  17799. height: math.unit(1.08, "feet"),
  17800. name: "Hand",
  17801. image: {
  17802. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17803. }
  17804. },
  17805. foot: {
  17806. height: math.unit(1.32, "feet"),
  17807. name: "Foot",
  17808. image: {
  17809. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17810. }
  17811. },
  17812. were: {
  17813. height: math.unit(20, "feet"),
  17814. weight: math.unit(7800, "lb"),
  17815. name: "Were",
  17816. image: {
  17817. source: "./media/characters/leonardo-lycheborne/were.svg",
  17818. extra: 308 / 294,
  17819. bottom: 0.048
  17820. }
  17821. },
  17822. feral: {
  17823. height: math.unit(7.5, "feet"),
  17824. weight: math.unit(600, "lb"),
  17825. name: "Feral",
  17826. image: {
  17827. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17828. extra: 210 / 186,
  17829. bottom: 0.108
  17830. }
  17831. },
  17832. taur: {
  17833. height: math.unit(11, "feet"),
  17834. weight: math.unit(3300, "lb"),
  17835. name: "Taur",
  17836. image: {
  17837. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17838. extra: 320 / 303,
  17839. bottom: 0.025
  17840. }
  17841. },
  17842. barghest: {
  17843. height: math.unit(11, "feet"),
  17844. weight: math.unit(1300, "lb"),
  17845. name: "Barghest",
  17846. image: {
  17847. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17848. extra: 323 / 302,
  17849. bottom: 0.027
  17850. }
  17851. },
  17852. dick: {
  17853. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17854. name: "Dick",
  17855. image: {
  17856. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17857. }
  17858. },
  17859. dickWere: {
  17860. height: math.unit((20) / 3.8, "feet"),
  17861. name: "Dick (Were)",
  17862. image: {
  17863. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17864. }
  17865. },
  17866. },
  17867. [
  17868. {
  17869. name: "Normal",
  17870. height: math.unit(6 + 1 / 12, "feet"),
  17871. default: true
  17872. },
  17873. ]
  17874. ))
  17875. characterMakers.push(() => makeCharacter(
  17876. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  17877. {
  17878. front: {
  17879. height: math.unit(10, "feet"),
  17880. weight: math.unit(350, "lb"),
  17881. name: "Front",
  17882. image: {
  17883. source: "./media/characters/jet/front.svg",
  17884. extra: 2050 / 1980,
  17885. bottom: 0.013
  17886. }
  17887. },
  17888. back: {
  17889. height: math.unit(10, "feet"),
  17890. weight: math.unit(350, "lb"),
  17891. name: "Back",
  17892. image: {
  17893. source: "./media/characters/jet/back.svg",
  17894. extra: 2050 / 1980,
  17895. bottom: 0.013
  17896. }
  17897. },
  17898. },
  17899. [
  17900. {
  17901. name: "Micro",
  17902. height: math.unit(6, "inches")
  17903. },
  17904. {
  17905. name: "Normal",
  17906. height: math.unit(10, "feet"),
  17907. default: true
  17908. },
  17909. {
  17910. name: "Macro",
  17911. height: math.unit(100, "feet")
  17912. },
  17913. ]
  17914. ))
  17915. characterMakers.push(() => makeCharacter(
  17916. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  17917. {
  17918. front: {
  17919. height: math.unit(15, "feet"),
  17920. weight: math.unit(2800, "lb"),
  17921. name: "Front",
  17922. image: {
  17923. source: "./media/characters/tanarath/front.svg",
  17924. extra: 2392 / 2220,
  17925. bottom: 0.03
  17926. }
  17927. },
  17928. back: {
  17929. height: math.unit(15, "feet"),
  17930. weight: math.unit(2800, "lb"),
  17931. name: "Back",
  17932. image: {
  17933. source: "./media/characters/tanarath/back.svg",
  17934. extra: 2392 / 2220,
  17935. bottom: 0.03
  17936. }
  17937. },
  17938. },
  17939. [
  17940. {
  17941. name: "Normal",
  17942. height: math.unit(15, "feet"),
  17943. default: true
  17944. },
  17945. ]
  17946. ))
  17947. characterMakers.push(() => makeCharacter(
  17948. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  17949. {
  17950. front: {
  17951. height: math.unit(7 + 1 / 12, "feet"),
  17952. weight: math.unit(175, "lb"),
  17953. name: "Front",
  17954. image: {
  17955. source: "./media/characters/patty-cattybatty/front.svg",
  17956. extra: 908 / 874,
  17957. bottom: 0.025
  17958. }
  17959. },
  17960. },
  17961. [
  17962. {
  17963. name: "Micro",
  17964. height: math.unit(1, "inch")
  17965. },
  17966. {
  17967. name: "Normal",
  17968. height: math.unit(7 + 1 / 12, "feet")
  17969. },
  17970. {
  17971. name: "Mini Macro",
  17972. height: math.unit(155, "feet")
  17973. },
  17974. {
  17975. name: "Macro",
  17976. height: math.unit(1077, "feet")
  17977. },
  17978. {
  17979. name: "Mega Macro",
  17980. height: math.unit(47650, "feet"),
  17981. default: true
  17982. },
  17983. {
  17984. name: "Giga Macro",
  17985. height: math.unit(440, "miles")
  17986. },
  17987. {
  17988. name: "Tera Macro",
  17989. height: math.unit(8700, "miles")
  17990. },
  17991. {
  17992. name: "Planetary Macro",
  17993. height: math.unit(32700, "miles")
  17994. },
  17995. {
  17996. name: "Solar Macro",
  17997. height: math.unit(550000, "miles")
  17998. },
  17999. {
  18000. name: "Celestial Macro",
  18001. height: math.unit(2.5, "AU")
  18002. },
  18003. ]
  18004. ))
  18005. characterMakers.push(() => makeCharacter(
  18006. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18007. {
  18008. front: {
  18009. height: math.unit(4 + 5 / 12, "feet"),
  18010. weight: math.unit(90, "lb"),
  18011. name: "Front",
  18012. image: {
  18013. source: "./media/characters/cappu/front.svg",
  18014. extra: 1247 / 1152,
  18015. bottom: 0.012
  18016. }
  18017. },
  18018. },
  18019. [
  18020. {
  18021. name: "Normal",
  18022. height: math.unit(4 + 5 / 12, "feet"),
  18023. default: true
  18024. },
  18025. ]
  18026. ))
  18027. characterMakers.push(() => makeCharacter(
  18028. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18029. {
  18030. frontDressed: {
  18031. height: math.unit(70, "cm"),
  18032. weight: math.unit(6, "kg"),
  18033. name: "Front (Dressed)",
  18034. image: {
  18035. source: "./media/characters/sebi/front-dressed.svg",
  18036. extra: 713.5 / 686.5,
  18037. bottom: 0.003
  18038. }
  18039. },
  18040. front: {
  18041. height: math.unit(70, "cm"),
  18042. weight: math.unit(5, "kg"),
  18043. name: "Front",
  18044. image: {
  18045. source: "./media/characters/sebi/front.svg",
  18046. extra: 713.5 / 686.5,
  18047. bottom: 0.003
  18048. }
  18049. }
  18050. },
  18051. [
  18052. {
  18053. name: "Normal",
  18054. height: math.unit(70, "cm"),
  18055. default: true
  18056. },
  18057. {
  18058. name: "Macro",
  18059. height: math.unit(8, "meters")
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18065. {
  18066. front: {
  18067. height: math.unit(6, "feet"),
  18068. weight: math.unit(150, "lb"),
  18069. name: "Front",
  18070. image: {
  18071. source: "./media/characters/typhek/front.svg",
  18072. extra: 1948 / 1929,
  18073. bottom: 0.025
  18074. }
  18075. },
  18076. side: {
  18077. height: math.unit(6, "feet"),
  18078. weight: math.unit(150, "lb"),
  18079. name: "Side",
  18080. image: {
  18081. source: "./media/characters/typhek/side.svg",
  18082. extra: 2034 / 2010,
  18083. bottom: 0.003
  18084. }
  18085. },
  18086. back: {
  18087. height: math.unit(6, "feet"),
  18088. weight: math.unit(150, "lb"),
  18089. name: "Back",
  18090. image: {
  18091. source: "./media/characters/typhek/back.svg",
  18092. extra: 2005 / 1978,
  18093. bottom: 0.004
  18094. }
  18095. },
  18096. palm: {
  18097. height: math.unit(1.2, "feet"),
  18098. name: "Palm",
  18099. image: {
  18100. source: "./media/characters/typhek/palm.svg"
  18101. }
  18102. },
  18103. fist: {
  18104. height: math.unit(1.1, "feet"),
  18105. name: "Fist",
  18106. image: {
  18107. source: "./media/characters/typhek/fist.svg"
  18108. }
  18109. },
  18110. foot: {
  18111. height: math.unit(1.57, "feet"),
  18112. name: "Foot",
  18113. image: {
  18114. source: "./media/characters/typhek/foot.svg"
  18115. }
  18116. },
  18117. sole: {
  18118. height: math.unit(2.05, "feet"),
  18119. name: "Sole",
  18120. image: {
  18121. source: "./media/characters/typhek/sole.svg"
  18122. }
  18123. },
  18124. },
  18125. [
  18126. {
  18127. name: "Macro",
  18128. height: math.unit(40, "stories"),
  18129. default: true
  18130. },
  18131. {
  18132. name: "Megamacro",
  18133. height: math.unit(1, "mile")
  18134. },
  18135. {
  18136. name: "Gigamacro",
  18137. height: math.unit(4000, "solarradii")
  18138. },
  18139. {
  18140. name: "Universal",
  18141. height: math.unit(1.1, "universes")
  18142. }
  18143. ]
  18144. ))
  18145. characterMakers.push(() => makeCharacter(
  18146. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18147. {
  18148. side: {
  18149. height: math.unit(5 + 7 / 12, "feet"),
  18150. weight: math.unit(150, "lb"),
  18151. name: "Side",
  18152. image: {
  18153. source: "./media/characters/kassy/side.svg",
  18154. extra: 1280 / 1225,
  18155. bottom: 0.002
  18156. }
  18157. },
  18158. front: {
  18159. height: math.unit(5 + 7 / 12, "feet"),
  18160. weight: math.unit(150, "lb"),
  18161. name: "Front",
  18162. image: {
  18163. source: "./media/characters/kassy/front.svg",
  18164. extra: 1280 / 1225,
  18165. bottom: 0.025
  18166. }
  18167. },
  18168. back: {
  18169. height: math.unit(5 + 7 / 12, "feet"),
  18170. weight: math.unit(150, "lb"),
  18171. name: "Back",
  18172. image: {
  18173. source: "./media/characters/kassy/back.svg",
  18174. extra: 1280 / 1225,
  18175. bottom: 0.002
  18176. }
  18177. },
  18178. foot: {
  18179. height: math.unit(1.266, "feet"),
  18180. name: "Foot",
  18181. image: {
  18182. source: "./media/characters/kassy/foot.svg"
  18183. }
  18184. },
  18185. },
  18186. [
  18187. {
  18188. name: "Normal",
  18189. height: math.unit(5 + 7 / 12, "feet")
  18190. },
  18191. {
  18192. name: "Macro",
  18193. height: math.unit(137, "feet"),
  18194. default: true
  18195. },
  18196. {
  18197. name: "Megamacro",
  18198. height: math.unit(1, "mile")
  18199. },
  18200. ]
  18201. ))
  18202. characterMakers.push(() => makeCharacter(
  18203. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18204. {
  18205. front: {
  18206. height: math.unit(6 + 1 / 12, "feet"),
  18207. weight: math.unit(200, "lb"),
  18208. name: "Front",
  18209. image: {
  18210. source: "./media/characters/neil/front.svg",
  18211. extra: 1326 / 1250,
  18212. bottom: 0.023
  18213. }
  18214. },
  18215. },
  18216. [
  18217. {
  18218. name: "Normal",
  18219. height: math.unit(6 + 1 / 12, "feet"),
  18220. default: true
  18221. },
  18222. {
  18223. name: "Macro",
  18224. height: math.unit(200, "feet")
  18225. },
  18226. ]
  18227. ))
  18228. characterMakers.push(() => makeCharacter(
  18229. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18230. {
  18231. front: {
  18232. height: math.unit(5 + 9 / 12, "feet"),
  18233. weight: math.unit(190, "lb"),
  18234. name: "Front",
  18235. image: {
  18236. source: "./media/characters/atticus/front.svg",
  18237. extra: 2934 / 2785,
  18238. bottom: 0.025
  18239. }
  18240. },
  18241. },
  18242. [
  18243. {
  18244. name: "Normal",
  18245. height: math.unit(5 + 9 / 12, "feet"),
  18246. default: true
  18247. },
  18248. {
  18249. name: "Macro",
  18250. height: math.unit(180, "feet")
  18251. },
  18252. ]
  18253. ))
  18254. characterMakers.push(() => makeCharacter(
  18255. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18256. {
  18257. side: {
  18258. height: math.unit(9, "feet"),
  18259. weight: math.unit(650, "lb"),
  18260. name: "Side",
  18261. image: {
  18262. source: "./media/characters/milo/side.svg",
  18263. extra: 2644 / 2310,
  18264. bottom: 0.032
  18265. }
  18266. },
  18267. },
  18268. [
  18269. {
  18270. name: "Normal",
  18271. height: math.unit(9, "feet"),
  18272. default: true
  18273. },
  18274. {
  18275. name: "Macro",
  18276. height: math.unit(300, "feet")
  18277. },
  18278. ]
  18279. ))
  18280. characterMakers.push(() => makeCharacter(
  18281. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18282. {
  18283. side: {
  18284. height: math.unit(8, "meters"),
  18285. weight: math.unit(90000, "kg"),
  18286. name: "Side",
  18287. image: {
  18288. source: "./media/characters/ijzer/side.svg",
  18289. extra: 2756 / 1600,
  18290. bottom: 0.01
  18291. }
  18292. },
  18293. },
  18294. [
  18295. {
  18296. name: "Small",
  18297. height: math.unit(3, "meters")
  18298. },
  18299. {
  18300. name: "Normal",
  18301. height: math.unit(8, "meters"),
  18302. default: true
  18303. },
  18304. {
  18305. name: "Normal+",
  18306. height: math.unit(10, "meters")
  18307. },
  18308. {
  18309. name: "Bigger",
  18310. height: math.unit(24, "meters")
  18311. },
  18312. {
  18313. name: "Huge",
  18314. height: math.unit(80, "meters")
  18315. },
  18316. ]
  18317. ))
  18318. characterMakers.push(() => makeCharacter(
  18319. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18320. {
  18321. front: {
  18322. height: math.unit(6 + 2 / 12, "feet"),
  18323. weight: math.unit(153, "lb"),
  18324. name: "Front",
  18325. image: {
  18326. source: "./media/characters/luca-cervicum/front.svg",
  18327. extra: 370 / 327,
  18328. bottom: 0.015
  18329. }
  18330. },
  18331. back: {
  18332. height: math.unit(6 + 2 / 12, "feet"),
  18333. weight: math.unit(153, "lb"),
  18334. name: "Back",
  18335. image: {
  18336. source: "./media/characters/luca-cervicum/back.svg",
  18337. extra: 367 / 333,
  18338. bottom: 0.005
  18339. }
  18340. },
  18341. frontGear: {
  18342. height: math.unit(6 + 2 / 12, "feet"),
  18343. weight: math.unit(173, "lb"),
  18344. name: "Front (Gear)",
  18345. image: {
  18346. source: "./media/characters/luca-cervicum/front-gear.svg",
  18347. extra: 377 / 333,
  18348. bottom: 0.006
  18349. }
  18350. },
  18351. },
  18352. [
  18353. {
  18354. name: "Normal",
  18355. height: math.unit(6 + 2 / 12, "feet"),
  18356. default: true
  18357. },
  18358. ]
  18359. ))
  18360. characterMakers.push(() => makeCharacter(
  18361. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18362. {
  18363. front: {
  18364. height: math.unit(6 + 1 / 12, "feet"),
  18365. weight: math.unit(304, "lb"),
  18366. name: "Front",
  18367. image: {
  18368. source: "./media/characters/oliver/front.svg",
  18369. extra: 157 / 143,
  18370. bottom: 0.08
  18371. }
  18372. },
  18373. },
  18374. [
  18375. {
  18376. name: "Normal",
  18377. height: math.unit(6 + 1 / 12, "feet"),
  18378. default: true
  18379. },
  18380. ]
  18381. ))
  18382. characterMakers.push(() => makeCharacter(
  18383. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18384. {
  18385. front: {
  18386. height: math.unit(5 + 7 / 12, "feet"),
  18387. weight: math.unit(140, "lb"),
  18388. name: "Front",
  18389. image: {
  18390. source: "./media/characters/shane/front.svg",
  18391. extra: 304 / 289,
  18392. bottom: 0.005
  18393. }
  18394. },
  18395. },
  18396. [
  18397. {
  18398. name: "Normal",
  18399. height: math.unit(5 + 7 / 12, "feet"),
  18400. default: true
  18401. },
  18402. ]
  18403. ))
  18404. characterMakers.push(() => makeCharacter(
  18405. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18406. {
  18407. front: {
  18408. height: math.unit(5 + 9 / 12, "feet"),
  18409. weight: math.unit(178, "lb"),
  18410. name: "Front",
  18411. image: {
  18412. source: "./media/characters/shin/front.svg",
  18413. extra: 159 / 151,
  18414. bottom: 0.015
  18415. }
  18416. },
  18417. },
  18418. [
  18419. {
  18420. name: "Normal",
  18421. height: math.unit(5 + 9 / 12, "feet"),
  18422. default: true
  18423. },
  18424. ]
  18425. ))
  18426. characterMakers.push(() => makeCharacter(
  18427. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18428. {
  18429. front: {
  18430. height: math.unit(5 + 10 / 12, "feet"),
  18431. weight: math.unit(168, "lb"),
  18432. name: "Front",
  18433. image: {
  18434. source: "./media/characters/xerxes/front.svg",
  18435. extra: 282 / 260,
  18436. bottom: 0.045
  18437. }
  18438. },
  18439. },
  18440. [
  18441. {
  18442. name: "Normal",
  18443. height: math.unit(5 + 10 / 12, "feet"),
  18444. default: true
  18445. },
  18446. ]
  18447. ))
  18448. characterMakers.push(() => makeCharacter(
  18449. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18450. {
  18451. front: {
  18452. height: math.unit(6 + 7 / 12, "feet"),
  18453. weight: math.unit(208, "lb"),
  18454. name: "Front",
  18455. image: {
  18456. source: "./media/characters/chaska/front.svg",
  18457. extra: 332 / 319,
  18458. bottom: 0.015
  18459. }
  18460. },
  18461. },
  18462. [
  18463. {
  18464. name: "Normal",
  18465. height: math.unit(6 + 7 / 12, "feet"),
  18466. default: true
  18467. },
  18468. ]
  18469. ))
  18470. characterMakers.push(() => makeCharacter(
  18471. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18472. {
  18473. front: {
  18474. height: math.unit(5 + 8 / 12, "feet"),
  18475. weight: math.unit(208, "lb"),
  18476. name: "Front",
  18477. image: {
  18478. source: "./media/characters/enuk/front.svg",
  18479. extra: 437 / 406,
  18480. bottom: 0.02
  18481. }
  18482. },
  18483. },
  18484. [
  18485. {
  18486. name: "Normal",
  18487. height: math.unit(5 + 8 / 12, "feet"),
  18488. default: true
  18489. },
  18490. ]
  18491. ))
  18492. characterMakers.push(() => makeCharacter(
  18493. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18494. {
  18495. front: {
  18496. height: math.unit(5 + 10 / 12, "feet"),
  18497. weight: math.unit(252, "lb"),
  18498. name: "Front",
  18499. image: {
  18500. source: "./media/characters/bruun/front.svg",
  18501. extra: 197 / 187,
  18502. bottom: 0.012
  18503. }
  18504. },
  18505. },
  18506. [
  18507. {
  18508. name: "Normal",
  18509. height: math.unit(5 + 10 / 12, "feet"),
  18510. default: true
  18511. },
  18512. ]
  18513. ))
  18514. characterMakers.push(() => makeCharacter(
  18515. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18516. {
  18517. front: {
  18518. height: math.unit(6 + 10 / 12, "feet"),
  18519. weight: math.unit(255, "lb"),
  18520. name: "Front",
  18521. image: {
  18522. source: "./media/characters/alexeev/front.svg",
  18523. extra: 213 / 200,
  18524. bottom: 0.05
  18525. }
  18526. },
  18527. },
  18528. [
  18529. {
  18530. name: "Normal",
  18531. height: math.unit(6 + 10 / 12, "feet"),
  18532. default: true
  18533. },
  18534. ]
  18535. ))
  18536. characterMakers.push(() => makeCharacter(
  18537. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18538. {
  18539. front: {
  18540. height: math.unit(2 + 8 / 12, "feet"),
  18541. weight: math.unit(22, "lb"),
  18542. name: "Front",
  18543. image: {
  18544. source: "./media/characters/evelyn/front.svg",
  18545. extra: 208 / 180
  18546. }
  18547. },
  18548. },
  18549. [
  18550. {
  18551. name: "Normal",
  18552. height: math.unit(2 + 8 / 12, "feet"),
  18553. default: true
  18554. },
  18555. ]
  18556. ))
  18557. characterMakers.push(() => makeCharacter(
  18558. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18559. {
  18560. front: {
  18561. height: math.unit(5 + 9 / 12, "feet"),
  18562. weight: math.unit(139, "lb"),
  18563. name: "Front",
  18564. image: {
  18565. source: "./media/characters/inca/front.svg",
  18566. extra: 294 / 291,
  18567. bottom: 0.03
  18568. }
  18569. },
  18570. },
  18571. [
  18572. {
  18573. name: "Normal",
  18574. height: math.unit(5 + 9 / 12, "feet"),
  18575. default: true
  18576. },
  18577. ]
  18578. ))
  18579. characterMakers.push(() => makeCharacter(
  18580. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18581. {
  18582. front: {
  18583. height: math.unit(5 + 1 / 12, "feet"),
  18584. weight: math.unit(84, "lb"),
  18585. name: "Front",
  18586. image: {
  18587. source: "./media/characters/magdalene/front.svg",
  18588. extra: 293 / 273
  18589. }
  18590. },
  18591. },
  18592. [
  18593. {
  18594. name: "Normal",
  18595. height: math.unit(5 + 1 / 12, "feet"),
  18596. default: true
  18597. },
  18598. ]
  18599. ))
  18600. characterMakers.push(() => makeCharacter(
  18601. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18602. {
  18603. front: {
  18604. height: math.unit(6 + 3 / 12, "feet"),
  18605. weight: math.unit(185, "lb"),
  18606. name: "Front",
  18607. image: {
  18608. source: "./media/characters/mera/front.svg",
  18609. extra: 291 / 277,
  18610. bottom: 0.03
  18611. }
  18612. },
  18613. },
  18614. [
  18615. {
  18616. name: "Normal",
  18617. height: math.unit(6 + 3 / 12, "feet"),
  18618. default: true
  18619. },
  18620. ]
  18621. ))
  18622. characterMakers.push(() => makeCharacter(
  18623. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18624. {
  18625. front: {
  18626. height: math.unit(6 + 7 / 12, "feet"),
  18627. weight: math.unit(160, "lb"),
  18628. name: "Front",
  18629. image: {
  18630. source: "./media/characters/ceres/front.svg",
  18631. extra: 1023 / 950,
  18632. bottom: 0.027
  18633. }
  18634. },
  18635. back: {
  18636. height: math.unit(6 + 7 / 12, "feet"),
  18637. weight: math.unit(160, "lb"),
  18638. name: "Back",
  18639. image: {
  18640. source: "./media/characters/ceres/back.svg",
  18641. extra: 1023 / 950
  18642. }
  18643. },
  18644. },
  18645. [
  18646. {
  18647. name: "Normal",
  18648. height: math.unit(6 + 7 / 12, "feet"),
  18649. default: true
  18650. },
  18651. ]
  18652. ))
  18653. characterMakers.push(() => makeCharacter(
  18654. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18655. {
  18656. front: {
  18657. height: math.unit(5 + 10 / 12, "feet"),
  18658. weight: math.unit(150, "lb"),
  18659. name: "Front",
  18660. image: {
  18661. source: "./media/characters/kris/front.svg",
  18662. extra: 885 / 803,
  18663. bottom: 0.03
  18664. }
  18665. },
  18666. },
  18667. [
  18668. {
  18669. name: "Normal",
  18670. height: math.unit(5 + 10 / 12, "feet"),
  18671. default: true
  18672. },
  18673. ]
  18674. ))
  18675. characterMakers.push(() => makeCharacter(
  18676. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18677. {
  18678. front: {
  18679. height: math.unit(7, "feet"),
  18680. weight: math.unit(120, "kg"),
  18681. name: "Front",
  18682. image: {
  18683. source: "./media/characters/taluthus/front.svg",
  18684. extra: 903 / 833,
  18685. bottom: 0.015
  18686. }
  18687. },
  18688. },
  18689. [
  18690. {
  18691. name: "Normal",
  18692. height: math.unit(7, "feet"),
  18693. default: true
  18694. },
  18695. {
  18696. name: "Macro",
  18697. height: math.unit(300, "feet")
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18703. {
  18704. front: {
  18705. height: math.unit(5 + 9 / 12, "feet"),
  18706. weight: math.unit(145, "lb"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/dawn/front.svg",
  18710. extra: 2094 / 2016,
  18711. bottom: 0.025
  18712. }
  18713. },
  18714. back: {
  18715. height: math.unit(5 + 9 / 12, "feet"),
  18716. weight: math.unit(160, "lb"),
  18717. name: "Back",
  18718. image: {
  18719. source: "./media/characters/dawn/back.svg",
  18720. extra: 2112 / 2080,
  18721. bottom: 0.005
  18722. }
  18723. },
  18724. },
  18725. [
  18726. {
  18727. name: "Normal",
  18728. height: math.unit(6 + 7 / 12, "feet"),
  18729. default: true
  18730. },
  18731. ]
  18732. ))
  18733. characterMakers.push(() => makeCharacter(
  18734. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18735. {
  18736. anthro: {
  18737. height: math.unit(8 + 3 / 12, "feet"),
  18738. weight: math.unit(450, "lb"),
  18739. name: "Anthro",
  18740. image: {
  18741. source: "./media/characters/arador/anthro.svg",
  18742. extra: 1835 / 1718,
  18743. bottom: 0.025
  18744. }
  18745. },
  18746. feral: {
  18747. height: math.unit(4, "feet"),
  18748. weight: math.unit(200, "lb"),
  18749. name: "Feral",
  18750. image: {
  18751. source: "./media/characters/arador/feral.svg",
  18752. extra: 1683 / 1514,
  18753. bottom: 0.07
  18754. }
  18755. },
  18756. },
  18757. [
  18758. {
  18759. name: "Normal",
  18760. height: math.unit(8 + 3 / 12, "feet")
  18761. },
  18762. {
  18763. name: "Macro",
  18764. height: math.unit(82.5, "feet"),
  18765. default: true
  18766. },
  18767. ]
  18768. ))
  18769. characterMakers.push(() => makeCharacter(
  18770. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18771. {
  18772. front: {
  18773. height: math.unit(5 + 10 / 12, "feet"),
  18774. weight: math.unit(125, "lb"),
  18775. name: "Front",
  18776. image: {
  18777. source: "./media/characters/dharsi/front.svg",
  18778. extra: 716 / 630,
  18779. bottom: 0.035
  18780. }
  18781. },
  18782. },
  18783. [
  18784. {
  18785. name: "Nano",
  18786. height: math.unit(100, "nm")
  18787. },
  18788. {
  18789. name: "Micro",
  18790. height: math.unit(2, "inches")
  18791. },
  18792. {
  18793. name: "Normal",
  18794. height: math.unit(5 + 10 / 12, "feet"),
  18795. default: true
  18796. },
  18797. {
  18798. name: "Macro",
  18799. height: math.unit(1000, "feet")
  18800. },
  18801. {
  18802. name: "Megamacro",
  18803. height: math.unit(10, "miles")
  18804. },
  18805. {
  18806. name: "Gigamacro",
  18807. height: math.unit(3000, "miles")
  18808. },
  18809. {
  18810. name: "Teramacro",
  18811. height: math.unit(500000, "miles")
  18812. },
  18813. {
  18814. name: "Teramacro+",
  18815. height: math.unit(30, "galaxies")
  18816. },
  18817. ]
  18818. ))
  18819. characterMakers.push(() => makeCharacter(
  18820. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  18821. {
  18822. front: {
  18823. height: math.unit(6, "feet"),
  18824. weight: math.unit(150, "lb"),
  18825. name: "Front",
  18826. image: {
  18827. source: "./media/characters/deathy/front.svg",
  18828. extra: 1552 / 1463,
  18829. bottom: 0.025
  18830. }
  18831. },
  18832. side: {
  18833. height: math.unit(6, "feet"),
  18834. weight: math.unit(150, "lb"),
  18835. name: "Side",
  18836. image: {
  18837. source: "./media/characters/deathy/side.svg",
  18838. extra: 1604 / 1455,
  18839. bottom: 0.025
  18840. }
  18841. },
  18842. back: {
  18843. height: math.unit(6, "feet"),
  18844. weight: math.unit(150, "lb"),
  18845. name: "Back",
  18846. image: {
  18847. source: "./media/characters/deathy/back.svg",
  18848. extra: 1580 / 1463,
  18849. bottom: 0.005
  18850. }
  18851. },
  18852. },
  18853. [
  18854. {
  18855. name: "Micro",
  18856. height: math.unit(5, "millimeters")
  18857. },
  18858. {
  18859. name: "Normal",
  18860. height: math.unit(6 + 5 / 12, "feet"),
  18861. default: true
  18862. },
  18863. ]
  18864. ))
  18865. characterMakers.push(() => makeCharacter(
  18866. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  18867. {
  18868. front: {
  18869. height: math.unit(16, "feet"),
  18870. weight: math.unit(4000, "lb"),
  18871. name: "Front",
  18872. image: {
  18873. source: "./media/characters/juniper/front.svg",
  18874. bottom: 0.04
  18875. }
  18876. },
  18877. },
  18878. [
  18879. {
  18880. name: "Normal",
  18881. height: math.unit(16, "feet"),
  18882. default: true
  18883. },
  18884. ]
  18885. ))
  18886. characterMakers.push(() => makeCharacter(
  18887. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  18888. {
  18889. front: {
  18890. height: math.unit(6, "feet"),
  18891. weight: math.unit(150, "lb"),
  18892. name: "Front",
  18893. image: {
  18894. source: "./media/characters/hipster/front.svg",
  18895. extra: 1312 / 1209,
  18896. bottom: 0.025
  18897. }
  18898. },
  18899. back: {
  18900. height: math.unit(6, "feet"),
  18901. weight: math.unit(150, "lb"),
  18902. name: "Back",
  18903. image: {
  18904. source: "./media/characters/hipster/back.svg",
  18905. extra: 1281 / 1196,
  18906. bottom: 0.01
  18907. }
  18908. },
  18909. },
  18910. [
  18911. {
  18912. name: "Micro",
  18913. height: math.unit(1, "mm")
  18914. },
  18915. {
  18916. name: "Normal",
  18917. height: math.unit(4, "inches"),
  18918. default: true
  18919. },
  18920. {
  18921. name: "Macro",
  18922. height: math.unit(500, "feet")
  18923. },
  18924. {
  18925. name: "Megamacro",
  18926. height: math.unit(1000, "miles")
  18927. },
  18928. ]
  18929. ))
  18930. characterMakers.push(() => makeCharacter(
  18931. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  18932. {
  18933. front: {
  18934. height: math.unit(6, "feet"),
  18935. weight: math.unit(150, "lb"),
  18936. name: "Front",
  18937. image: {
  18938. source: "./media/characters/tendirmuldr/front.svg",
  18939. extra: 1878 / 1772,
  18940. bottom: 0.015
  18941. }
  18942. },
  18943. },
  18944. [
  18945. {
  18946. name: "Megamacro",
  18947. height: math.unit(1500, "miles"),
  18948. default: true
  18949. },
  18950. ]
  18951. ))
  18952. characterMakers.push(() => makeCharacter(
  18953. { name: "Mort", species: ["demon"], tags: ["feral"] },
  18954. {
  18955. front: {
  18956. height: math.unit(14, "feet"),
  18957. weight: math.unit(12000, "lb"),
  18958. name: "Front",
  18959. image: {
  18960. source: "./media/characters/mort/front.svg",
  18961. extra: 365 / 318,
  18962. bottom: 0.01
  18963. }
  18964. },
  18965. side: {
  18966. height: math.unit(14, "feet"),
  18967. weight: math.unit(12000, "lb"),
  18968. name: "Side",
  18969. image: {
  18970. source: "./media/characters/mort/side.svg",
  18971. extra: 365 / 318,
  18972. bottom: 0.052
  18973. },
  18974. default: true
  18975. },
  18976. back: {
  18977. height: math.unit(14, "feet"),
  18978. weight: math.unit(12000, "lb"),
  18979. name: "Back",
  18980. image: {
  18981. source: "./media/characters/mort/back.svg",
  18982. extra: 371 / 332,
  18983. bottom: 0.18
  18984. }
  18985. },
  18986. },
  18987. [
  18988. {
  18989. name: "Normal",
  18990. height: math.unit(14, "feet"),
  18991. default: true
  18992. },
  18993. ]
  18994. ))
  18995. characterMakers.push(() => makeCharacter(
  18996. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  18997. {
  18998. front: {
  18999. height: math.unit(8, "feet"),
  19000. weight: math.unit(1, "ton"),
  19001. name: "Front",
  19002. image: {
  19003. source: "./media/characters/lycoa/front.svg",
  19004. extra: 1875 / 1789,
  19005. bottom: 0.022
  19006. }
  19007. },
  19008. back: {
  19009. height: math.unit(8, "feet"),
  19010. weight: math.unit(1, "ton"),
  19011. name: "Back",
  19012. image: {
  19013. source: "./media/characters/lycoa/back.svg",
  19014. extra: 1835 / 1781,
  19015. bottom: 0.03
  19016. }
  19017. },
  19018. },
  19019. [
  19020. {
  19021. name: "Normal",
  19022. height: math.unit(8, "feet"),
  19023. default: true
  19024. },
  19025. {
  19026. name: "Macro",
  19027. height: math.unit(30, "feet")
  19028. },
  19029. ]
  19030. ))
  19031. characterMakers.push(() => makeCharacter(
  19032. { name: "Naldara", species: ["jackalope"], tags: ["anthro"] },
  19033. {
  19034. front: {
  19035. height: math.unit(4 + 2 / 12, "feet"),
  19036. weight: math.unit(70, "lb"),
  19037. name: "Front",
  19038. image: {
  19039. source: "./media/characters/naldara/front.svg",
  19040. extra: 841 / 720,
  19041. bottom: 0.04
  19042. }
  19043. },
  19044. },
  19045. [
  19046. {
  19047. name: "Normal",
  19048. height: math.unit(4 + 2 / 12, "feet"),
  19049. default: true
  19050. },
  19051. ]
  19052. ))
  19053. characterMakers.push(() => makeCharacter(
  19054. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19055. {
  19056. front: {
  19057. height: math.unit(13 + 7 / 12, "feet"),
  19058. weight: math.unit(1500, "lb"),
  19059. name: "Front",
  19060. image: {
  19061. source: "./media/characters/briar/front.svg",
  19062. extra: 626 / 596,
  19063. bottom: 0.08
  19064. }
  19065. },
  19066. },
  19067. [
  19068. {
  19069. name: "Normal",
  19070. height: math.unit(13 + 7 / 12, "feet"),
  19071. default: true
  19072. },
  19073. ]
  19074. ))
  19075. characterMakers.push(() => makeCharacter(
  19076. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19077. {
  19078. side: {
  19079. height: math.unit(10, "feet"),
  19080. weight: math.unit(500, "lb"),
  19081. name: "Side",
  19082. image: {
  19083. source: "./media/characters/vanguard/side.svg",
  19084. extra: 502 / 425,
  19085. bottom: 0.087
  19086. }
  19087. },
  19088. },
  19089. [
  19090. {
  19091. name: "Normal",
  19092. height: math.unit(10, "feet"),
  19093. default: true
  19094. },
  19095. ]
  19096. ))
  19097. characterMakers.push(() => makeCharacter(
  19098. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19099. {
  19100. front: {
  19101. height: math.unit(7.5, "feet"),
  19102. weight: math.unit(2, "lb"),
  19103. name: "Front",
  19104. image: {
  19105. source: "./media/characters/artemis/front.svg",
  19106. extra: 1192 / 1075,
  19107. bottom: 0.07
  19108. }
  19109. },
  19110. },
  19111. [
  19112. {
  19113. name: "Normal",
  19114. height: math.unit(7.5, "feet"),
  19115. default: true
  19116. },
  19117. {
  19118. name: "Enlarged",
  19119. height: math.unit(12, "feet")
  19120. },
  19121. ]
  19122. ))
  19123. characterMakers.push(() => makeCharacter(
  19124. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19125. {
  19126. front: {
  19127. height: math.unit(5 + 3 / 12, "feet"),
  19128. weight: math.unit(160, "lb"),
  19129. name: "Front",
  19130. image: {
  19131. source: "./media/characters/kira/front.svg",
  19132. extra: 906 / 786,
  19133. bottom: 0.01
  19134. }
  19135. },
  19136. back: {
  19137. height: math.unit(5 + 3 / 12, "feet"),
  19138. weight: math.unit(160, "lb"),
  19139. name: "Back",
  19140. image: {
  19141. source: "./media/characters/kira/back.svg",
  19142. extra: 882 / 757,
  19143. bottom: 0.005
  19144. }
  19145. },
  19146. frontDressed: {
  19147. height: math.unit(5 + 3 / 12, "feet"),
  19148. weight: math.unit(160, "lb"),
  19149. name: "Front (Dressed)",
  19150. image: {
  19151. source: "./media/characters/kira/front-dressed.svg",
  19152. extra: 906 / 786,
  19153. bottom: 0.01
  19154. }
  19155. },
  19156. beans: {
  19157. height: math.unit(0.92, "feet"),
  19158. name: "Beans",
  19159. image: {
  19160. source: "./media/characters/kira/beans.svg"
  19161. }
  19162. },
  19163. },
  19164. [
  19165. {
  19166. name: "Normal",
  19167. height: math.unit(5 + 3 / 12, "feet"),
  19168. default: true
  19169. },
  19170. ]
  19171. ))
  19172. characterMakers.push(() => makeCharacter(
  19173. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19174. {
  19175. front: {
  19176. height: math.unit(5 + 4 / 12, "feet"),
  19177. weight: math.unit(145, "lb"),
  19178. name: "Front",
  19179. image: {
  19180. source: "./media/characters/scramble/front.svg",
  19181. extra: 763 / 727,
  19182. bottom: 0.05
  19183. }
  19184. },
  19185. back: {
  19186. height: math.unit(5 + 4 / 12, "feet"),
  19187. weight: math.unit(145, "lb"),
  19188. name: "Back",
  19189. image: {
  19190. source: "./media/characters/scramble/back.svg",
  19191. extra: 826 / 737,
  19192. bottom: 0.002
  19193. }
  19194. },
  19195. },
  19196. [
  19197. {
  19198. name: "Normal",
  19199. height: math.unit(5 + 4 / 12, "feet"),
  19200. default: true
  19201. },
  19202. ]
  19203. ))
  19204. characterMakers.push(() => makeCharacter(
  19205. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19206. {
  19207. side: {
  19208. height: math.unit(6 + 2 / 12, "feet"),
  19209. weight: math.unit(190, "lb"),
  19210. name: "Side",
  19211. image: {
  19212. source: "./media/characters/biscuit/side.svg",
  19213. extra: 858 / 791,
  19214. bottom: 0.044
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(6 + 2 / 12, "feet"),
  19222. default: true
  19223. },
  19224. ]
  19225. ))
  19226. characterMakers.push(() => makeCharacter(
  19227. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19228. {
  19229. front: {
  19230. height: math.unit(5 + 2 / 12, "feet"),
  19231. weight: math.unit(120, "lb"),
  19232. name: "Front",
  19233. image: {
  19234. source: "./media/characters/poffin/front.svg",
  19235. extra: 786 / 680,
  19236. bottom: 0.005
  19237. }
  19238. },
  19239. },
  19240. [
  19241. {
  19242. name: "Normal",
  19243. height: math.unit(5 + 2 / 12, "feet"),
  19244. default: true
  19245. },
  19246. ]
  19247. ))
  19248. characterMakers.push(() => makeCharacter(
  19249. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19250. {
  19251. front: {
  19252. height: math.unit(6 + 3 / 12, "feet"),
  19253. weight: math.unit(519, "lb"),
  19254. name: "Front",
  19255. image: {
  19256. source: "./media/characters/dhari/front.svg",
  19257. extra: 1048 / 946,
  19258. bottom: 0.015
  19259. }
  19260. },
  19261. back: {
  19262. height: math.unit(6 + 3 / 12, "feet"),
  19263. weight: math.unit(519, "lb"),
  19264. name: "Back",
  19265. image: {
  19266. source: "./media/characters/dhari/back.svg",
  19267. extra: 1048 / 931,
  19268. bottom: 0.005
  19269. }
  19270. },
  19271. frontDressed: {
  19272. height: math.unit(6 + 3 / 12, "feet"),
  19273. weight: math.unit(519, "lb"),
  19274. name: "Front (Dressed)",
  19275. image: {
  19276. source: "./media/characters/dhari/front-dressed.svg",
  19277. extra: 1713 / 1546,
  19278. bottom: 0.02
  19279. }
  19280. },
  19281. backDressed: {
  19282. height: math.unit(6 + 3 / 12, "feet"),
  19283. weight: math.unit(519, "lb"),
  19284. name: "Back (Dressed)",
  19285. image: {
  19286. source: "./media/characters/dhari/back-dressed.svg",
  19287. extra: 1699 / 1537,
  19288. bottom: 0.01
  19289. }
  19290. },
  19291. maw: {
  19292. height: math.unit(0.95, "feet"),
  19293. name: "Maw",
  19294. image: {
  19295. source: "./media/characters/dhari/maw.svg"
  19296. }
  19297. },
  19298. wereFront: {
  19299. height: math.unit(12 + 8 / 12, "feet"),
  19300. weight: math.unit(4000, "lb"),
  19301. name: "Front (Were)",
  19302. image: {
  19303. source: "./media/characters/dhari/were-front.svg",
  19304. extra: 1065 / 969,
  19305. bottom: 0.015
  19306. }
  19307. },
  19308. wereBack: {
  19309. height: math.unit(12 + 8 / 12, "feet"),
  19310. weight: math.unit(4000, "lb"),
  19311. name: "Back (Were)",
  19312. image: {
  19313. source: "./media/characters/dhari/were-back.svg",
  19314. extra: 1065 / 969,
  19315. bottom: 0.012
  19316. }
  19317. },
  19318. wereMaw: {
  19319. height: math.unit(0.625, "meters"),
  19320. name: "Maw (Were)",
  19321. image: {
  19322. source: "./media/characters/dhari/were-maw.svg"
  19323. }
  19324. },
  19325. },
  19326. [
  19327. {
  19328. name: "Normal",
  19329. height: math.unit(6 + 3 / 12, "feet"),
  19330. default: true
  19331. },
  19332. ]
  19333. ))
  19334. characterMakers.push(() => makeCharacter(
  19335. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19336. {
  19337. anthro: {
  19338. height: math.unit(5 + 7 / 12, "feet"),
  19339. weight: math.unit(175, "lb"),
  19340. name: "Anthro",
  19341. image: {
  19342. source: "./media/characters/rena-dyne/anthro.svg",
  19343. extra: 1849 / 1785,
  19344. bottom: 0.005
  19345. }
  19346. },
  19347. taur: {
  19348. height: math.unit(15 + 6 / 12, "feet"),
  19349. weight: math.unit(8000, "lb"),
  19350. name: "Taur",
  19351. image: {
  19352. source: "./media/characters/rena-dyne/taur.svg",
  19353. extra: 2315 / 2234,
  19354. bottom: 0.033
  19355. }
  19356. },
  19357. },
  19358. [
  19359. {
  19360. name: "Normal",
  19361. height: math.unit(5 + 7 / 12, "feet"),
  19362. default: true
  19363. },
  19364. ]
  19365. ))
  19366. characterMakers.push(() => makeCharacter(
  19367. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19368. {
  19369. front: {
  19370. height: math.unit(8, "feet"),
  19371. weight: math.unit(600, "lb"),
  19372. name: "Front",
  19373. image: {
  19374. source: "./media/characters/weremeep/front.svg",
  19375. extra: 967 / 862,
  19376. bottom: 0.01
  19377. }
  19378. },
  19379. },
  19380. [
  19381. {
  19382. name: "Normal",
  19383. height: math.unit(8, "feet"),
  19384. default: true
  19385. },
  19386. {
  19387. name: "Lorg",
  19388. height: math.unit(12, "feet")
  19389. },
  19390. {
  19391. name: "Oh Lawd She Comin'",
  19392. height: math.unit(20, "feet")
  19393. },
  19394. ]
  19395. ))
  19396. characterMakers.push(() => makeCharacter(
  19397. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19398. {
  19399. front: {
  19400. height: math.unit(4, "feet"),
  19401. weight: math.unit(90, "lb"),
  19402. name: "Front",
  19403. image: {
  19404. source: "./media/characters/reza/front.svg",
  19405. extra: 1183 / 1111,
  19406. bottom: 0.017
  19407. }
  19408. },
  19409. back: {
  19410. height: math.unit(4, "feet"),
  19411. weight: math.unit(90, "lb"),
  19412. name: "Back",
  19413. image: {
  19414. source: "./media/characters/reza/back.svg",
  19415. extra: 1183 / 1111,
  19416. bottom: 0.01
  19417. }
  19418. },
  19419. drake: {
  19420. height: math.unit(30, "feet"),
  19421. weight: math.unit(246960, "lb"),
  19422. name: "Drake",
  19423. image: {
  19424. source: "./media/characters/reza/drake.svg",
  19425. extra: 2350/2024,
  19426. bottom: 60.7/2403
  19427. }
  19428. },
  19429. },
  19430. [
  19431. {
  19432. name: "Normal",
  19433. height: math.unit(4, "feet"),
  19434. default: true
  19435. },
  19436. ]
  19437. ))
  19438. characterMakers.push(() => makeCharacter(
  19439. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19440. {
  19441. side: {
  19442. height: math.unit(15, "feet"),
  19443. weight: math.unit(14, "tons"),
  19444. name: "Side",
  19445. image: {
  19446. source: "./media/characters/athea/side.svg",
  19447. extra: 960 / 540,
  19448. bottom: 0.003
  19449. }
  19450. },
  19451. sitting: {
  19452. height: math.unit(6 * 2.85, "feet"),
  19453. weight: math.unit(14, "tons"),
  19454. name: "Sitting",
  19455. image: {
  19456. source: "./media/characters/athea/sitting.svg",
  19457. extra: 621 / 581,
  19458. bottom: 0.075
  19459. }
  19460. },
  19461. maw: {
  19462. height: math.unit(7.59498031496063, "feet"),
  19463. name: "Maw",
  19464. image: {
  19465. source: "./media/characters/athea/maw.svg"
  19466. }
  19467. },
  19468. },
  19469. [
  19470. {
  19471. name: "Lap Cat",
  19472. height: math.unit(2.5, "feet")
  19473. },
  19474. {
  19475. name: "Minimacro",
  19476. height: math.unit(15, "feet"),
  19477. default: true
  19478. },
  19479. {
  19480. name: "Macro",
  19481. height: math.unit(120, "feet")
  19482. },
  19483. {
  19484. name: "Macro+",
  19485. height: math.unit(640, "feet")
  19486. },
  19487. {
  19488. name: "Colossus",
  19489. height: math.unit(2.2, "miles")
  19490. },
  19491. ]
  19492. ))
  19493. characterMakers.push(() => makeCharacter(
  19494. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19495. {
  19496. front: {
  19497. height: math.unit(8 + 8 / 12, "feet"),
  19498. weight: math.unit(130, "kg"),
  19499. name: "Front",
  19500. image: {
  19501. source: "./media/characters/seroko/front.svg",
  19502. extra: 1385 / 1280,
  19503. bottom: 0.025
  19504. }
  19505. },
  19506. back: {
  19507. height: math.unit(8 + 8 / 12, "feet"),
  19508. weight: math.unit(130, "kg"),
  19509. name: "Back",
  19510. image: {
  19511. source: "./media/characters/seroko/back.svg",
  19512. extra: 1369 / 1238,
  19513. bottom: 0.018
  19514. }
  19515. },
  19516. frontDressed: {
  19517. height: math.unit(8 + 8 / 12, "feet"),
  19518. weight: math.unit(130, "kg"),
  19519. name: "Front (Dressed)",
  19520. image: {
  19521. source: "./media/characters/seroko/front-dressed.svg",
  19522. extra: 1366 / 1275,
  19523. bottom: 0.03
  19524. }
  19525. },
  19526. },
  19527. [
  19528. {
  19529. name: "Normal",
  19530. height: math.unit(8 + 8 / 12, "feet"),
  19531. default: true
  19532. },
  19533. ]
  19534. ))
  19535. characterMakers.push(() => makeCharacter(
  19536. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19537. {
  19538. front: {
  19539. height: math.unit(5.5, "feet"),
  19540. weight: math.unit(160, "lb"),
  19541. name: "Front",
  19542. image: {
  19543. source: "./media/characters/quatzi/front.svg",
  19544. extra: 2346 / 2242,
  19545. bottom: 0.015
  19546. }
  19547. },
  19548. },
  19549. [
  19550. {
  19551. name: "Normal",
  19552. height: math.unit(5.5, "feet"),
  19553. default: true
  19554. },
  19555. {
  19556. name: "Big",
  19557. height: math.unit(7.7, "feet")
  19558. },
  19559. ]
  19560. ))
  19561. characterMakers.push(() => makeCharacter(
  19562. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19563. {
  19564. front: {
  19565. height: math.unit(5 + 11 / 12, "feet"),
  19566. weight: math.unit(180, "lb"),
  19567. name: "Front",
  19568. image: {
  19569. source: "./media/characters/sen/front.svg",
  19570. extra: 1321 / 1254,
  19571. bottom: 0.015
  19572. }
  19573. },
  19574. side: {
  19575. height: math.unit(5 + 11 / 12, "feet"),
  19576. weight: math.unit(180, "lb"),
  19577. name: "Side",
  19578. image: {
  19579. source: "./media/characters/sen/side.svg",
  19580. extra: 1321 / 1254,
  19581. bottom: 0.007
  19582. }
  19583. },
  19584. back: {
  19585. height: math.unit(5 + 11 / 12, "feet"),
  19586. weight: math.unit(180, "lb"),
  19587. name: "Back",
  19588. image: {
  19589. source: "./media/characters/sen/back.svg",
  19590. extra: 1321 / 1254
  19591. }
  19592. },
  19593. },
  19594. [
  19595. {
  19596. name: "Normal",
  19597. height: math.unit(5 + 11 / 12, "feet"),
  19598. default: true
  19599. },
  19600. ]
  19601. ))
  19602. characterMakers.push(() => makeCharacter(
  19603. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19604. {
  19605. front: {
  19606. height: math.unit(166.6, "cm"),
  19607. weight: math.unit(66.6, "kg"),
  19608. name: "Front",
  19609. image: {
  19610. source: "./media/characters/fruity/front.svg",
  19611. extra: 1510 / 1386,
  19612. bottom: 0.04
  19613. }
  19614. },
  19615. back: {
  19616. height: math.unit(166.6, "cm"),
  19617. weight: math.unit(66.6, "lb"),
  19618. name: "Back",
  19619. image: {
  19620. source: "./media/characters/fruity/back.svg",
  19621. extra: 1563 / 1435,
  19622. bottom: 0.005
  19623. }
  19624. },
  19625. },
  19626. [
  19627. {
  19628. name: "Normal",
  19629. height: math.unit(166.6, "cm"),
  19630. default: true
  19631. },
  19632. {
  19633. name: "Demonic",
  19634. height: math.unit(166.6, "feet")
  19635. },
  19636. ]
  19637. ))
  19638. characterMakers.push(() => makeCharacter(
  19639. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19640. {
  19641. side: {
  19642. height: math.unit(10, "feet"),
  19643. weight: math.unit(500, "lb"),
  19644. name: "Side",
  19645. image: {
  19646. source: "./media/characters/zost/side.svg",
  19647. extra: 966 / 880,
  19648. bottom: 0.075
  19649. }
  19650. },
  19651. mawFront: {
  19652. height: math.unit(1.08, "meters"),
  19653. name: "Maw (Front)",
  19654. image: {
  19655. source: "./media/characters/zost/maw-front.svg"
  19656. }
  19657. },
  19658. mawSide: {
  19659. height: math.unit(2.66, "feet"),
  19660. name: "Maw (Side)",
  19661. image: {
  19662. source: "./media/characters/zost/maw-side.svg"
  19663. }
  19664. },
  19665. },
  19666. [
  19667. {
  19668. name: "Normal",
  19669. height: math.unit(10, "feet"),
  19670. default: true
  19671. },
  19672. ]
  19673. ))
  19674. characterMakers.push(() => makeCharacter(
  19675. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  19676. {
  19677. front: {
  19678. height: math.unit(5 + 4 / 12, "feet"),
  19679. weight: math.unit(120, "lb"),
  19680. name: "Front",
  19681. image: {
  19682. source: "./media/characters/luci/front.svg",
  19683. extra: 1985 / 1884,
  19684. bottom: 0.04
  19685. }
  19686. },
  19687. back: {
  19688. height: math.unit(5 + 4 / 12, "feet"),
  19689. weight: math.unit(120, "lb"),
  19690. name: "Back",
  19691. image: {
  19692. source: "./media/characters/luci/back.svg",
  19693. extra: 1892 / 1791,
  19694. bottom: 0.002
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(5 + 4 / 12, "feet"),
  19702. default: true
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "2th", species: ["monster"], tags: ["anthro"] },
  19708. {
  19709. front: {
  19710. height: math.unit(1500, "feet"),
  19711. weight: math.unit(3.8e6, "tons"),
  19712. name: "Front",
  19713. image: {
  19714. source: "./media/characters/2th/front.svg",
  19715. extra: 3489 / 3350,
  19716. bottom: 0.1
  19717. }
  19718. },
  19719. foot: {
  19720. height: math.unit(461, "feet"),
  19721. name: "Foot",
  19722. image: {
  19723. source: "./media/characters/2th/foot.svg"
  19724. }
  19725. },
  19726. },
  19727. [
  19728. {
  19729. name: "\"Micro\"",
  19730. height: math.unit(15 + 7 / 12, "feet")
  19731. },
  19732. {
  19733. name: "Normal",
  19734. height: math.unit(1500, "feet"),
  19735. default: true
  19736. },
  19737. {
  19738. name: "Macro",
  19739. height: math.unit(5000, "feet")
  19740. },
  19741. {
  19742. name: "Megamacro",
  19743. height: math.unit(15, "miles")
  19744. },
  19745. {
  19746. name: "Gigamacro",
  19747. height: math.unit(4000, "miles")
  19748. },
  19749. {
  19750. name: "Galactic",
  19751. height: math.unit(50, "AU")
  19752. },
  19753. ]
  19754. ))
  19755. characterMakers.push(() => makeCharacter(
  19756. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  19757. {
  19758. front: {
  19759. height: math.unit(5 + 6 / 12, "feet"),
  19760. weight: math.unit(220, "lb"),
  19761. name: "Front",
  19762. image: {
  19763. source: "./media/characters/amethyst/front.svg",
  19764. extra: 2078 / 2040,
  19765. bottom: 0.045
  19766. }
  19767. },
  19768. back: {
  19769. height: math.unit(5 + 6 / 12, "feet"),
  19770. weight: math.unit(220, "lb"),
  19771. name: "Back",
  19772. image: {
  19773. source: "./media/characters/amethyst/back.svg",
  19774. extra: 2021 / 1989,
  19775. bottom: 0.02
  19776. }
  19777. },
  19778. },
  19779. [
  19780. {
  19781. name: "Normal",
  19782. height: math.unit(5 + 6 / 12, "feet"),
  19783. default: true
  19784. },
  19785. ]
  19786. ))
  19787. characterMakers.push(() => makeCharacter(
  19788. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  19789. {
  19790. front: {
  19791. height: math.unit(4 + 11 / 12, "feet"),
  19792. weight: math.unit(120, "lb"),
  19793. name: "Front",
  19794. image: {
  19795. source: "./media/characters/yumi-akiyama/front.svg",
  19796. extra: 1327 / 1235,
  19797. bottom: 0.02
  19798. }
  19799. },
  19800. back: {
  19801. height: math.unit(4 + 11 / 12, "feet"),
  19802. weight: math.unit(120, "lb"),
  19803. name: "Back",
  19804. image: {
  19805. source: "./media/characters/yumi-akiyama/back.svg",
  19806. extra: 1287 / 1245,
  19807. bottom: 0.002
  19808. }
  19809. },
  19810. },
  19811. [
  19812. {
  19813. name: "Galactic",
  19814. height: math.unit(50, "galaxies"),
  19815. default: true
  19816. },
  19817. {
  19818. name: "Universal",
  19819. height: math.unit(100, "universes")
  19820. },
  19821. ]
  19822. ))
  19823. characterMakers.push(() => makeCharacter(
  19824. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  19825. {
  19826. front: {
  19827. height: math.unit(8, "feet"),
  19828. weight: math.unit(500, "lb"),
  19829. name: "Front",
  19830. image: {
  19831. source: "./media/characters/rifter-yrmori/front.svg",
  19832. extra: 1180 / 1125,
  19833. bottom: 0.02
  19834. }
  19835. },
  19836. back: {
  19837. height: math.unit(8, "feet"),
  19838. weight: math.unit(500, "lb"),
  19839. name: "Back",
  19840. image: {
  19841. source: "./media/characters/rifter-yrmori/back.svg",
  19842. extra: 1190 / 1145,
  19843. bottom: 0.001
  19844. }
  19845. },
  19846. wings: {
  19847. height: math.unit(7.75, "feet"),
  19848. weight: math.unit(500, "lb"),
  19849. name: "Wings",
  19850. image: {
  19851. source: "./media/characters/rifter-yrmori/wings.svg",
  19852. extra: 1357 / 1285
  19853. }
  19854. },
  19855. maw: {
  19856. height: math.unit(0.8, "feet"),
  19857. name: "Maw",
  19858. image: {
  19859. source: "./media/characters/rifter-yrmori/maw.svg"
  19860. }
  19861. },
  19862. },
  19863. [
  19864. {
  19865. name: "Normal",
  19866. height: math.unit(8, "feet"),
  19867. default: true
  19868. },
  19869. {
  19870. name: "Macro",
  19871. height: math.unit(42, "meters")
  19872. },
  19873. ]
  19874. ))
  19875. characterMakers.push(() => makeCharacter(
  19876. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  19877. {
  19878. were: {
  19879. height: math.unit(25 + 6 / 12, "feet"),
  19880. weight: math.unit(10000, "lb"),
  19881. name: "Were",
  19882. image: {
  19883. source: "./media/characters/tahajin/were.svg",
  19884. extra: 801 / 770,
  19885. bottom: 0.042
  19886. }
  19887. },
  19888. aquatic: {
  19889. height: math.unit(6 + 4 / 12, "feet"),
  19890. weight: math.unit(160, "lb"),
  19891. name: "Aquatic",
  19892. image: {
  19893. source: "./media/characters/tahajin/aquatic.svg",
  19894. extra: 572 / 542,
  19895. bottom: 0.04
  19896. }
  19897. },
  19898. chow: {
  19899. height: math.unit(8 + 11 / 12, "feet"),
  19900. weight: math.unit(450, "lb"),
  19901. name: "Chow",
  19902. image: {
  19903. source: "./media/characters/tahajin/chow.svg",
  19904. extra: 660 / 640,
  19905. bottom: 0.015
  19906. }
  19907. },
  19908. demiNaga: {
  19909. height: math.unit(6 + 8 / 12, "feet"),
  19910. weight: math.unit(300, "lb"),
  19911. name: "Demi Naga",
  19912. image: {
  19913. source: "./media/characters/tahajin/demi-naga.svg",
  19914. extra: 643 / 615,
  19915. bottom: 0.1
  19916. }
  19917. },
  19918. data: {
  19919. height: math.unit(5, "inches"),
  19920. weight: math.unit(0.1, "lb"),
  19921. name: "Data",
  19922. image: {
  19923. source: "./media/characters/tahajin/data.svg"
  19924. }
  19925. },
  19926. fluu: {
  19927. height: math.unit(5 + 7 / 12, "feet"),
  19928. weight: math.unit(140, "lb"),
  19929. name: "Fluu",
  19930. image: {
  19931. source: "./media/characters/tahajin/fluu.svg",
  19932. extra: 628 / 592,
  19933. bottom: 0.02
  19934. }
  19935. },
  19936. starWarrior: {
  19937. height: math.unit(4 + 5 / 12, "feet"),
  19938. weight: math.unit(50, "lb"),
  19939. name: "Star Warrior",
  19940. image: {
  19941. source: "./media/characters/tahajin/star-warrior.svg"
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Normal",
  19948. height: math.unit(25 + 6 / 12, "feet"),
  19949. default: true
  19950. },
  19951. ]
  19952. ))
  19953. characterMakers.push(() => makeCharacter(
  19954. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  19955. {
  19956. front: {
  19957. height: math.unit(8, "feet"),
  19958. weight: math.unit(350, "lb"),
  19959. name: "Front",
  19960. image: {
  19961. source: "./media/characters/gabira/front.svg",
  19962. extra: 608 / 580,
  19963. bottom: 0.03
  19964. }
  19965. },
  19966. back: {
  19967. height: math.unit(8, "feet"),
  19968. weight: math.unit(350, "lb"),
  19969. name: "Back",
  19970. image: {
  19971. source: "./media/characters/gabira/back.svg",
  19972. extra: 608 / 580,
  19973. bottom: 0.03
  19974. }
  19975. },
  19976. },
  19977. [
  19978. {
  19979. name: "Normal",
  19980. height: math.unit(8, "feet"),
  19981. default: true
  19982. },
  19983. ]
  19984. ))
  19985. characterMakers.push(() => makeCharacter(
  19986. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  19987. {
  19988. front: {
  19989. height: math.unit(5 + 3 / 12, "feet"),
  19990. weight: math.unit(137, "lb"),
  19991. name: "Front",
  19992. image: {
  19993. source: "./media/characters/sasha-katraine/front.svg",
  19994. bottom: 0.045
  19995. }
  19996. },
  19997. },
  19998. [
  19999. {
  20000. name: "Micro",
  20001. height: math.unit(5, "inches")
  20002. },
  20003. {
  20004. name: "Normal",
  20005. height: math.unit(5 + 3 / 12, "feet"),
  20006. default: true
  20007. },
  20008. ]
  20009. ))
  20010. characterMakers.push(() => makeCharacter(
  20011. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20012. {
  20013. side: {
  20014. height: math.unit(4, "inches"),
  20015. weight: math.unit(200, "grams"),
  20016. name: "Side",
  20017. image: {
  20018. source: "./media/characters/der/side.svg",
  20019. extra: 719 / 400,
  20020. bottom: 30.6 / 749.9187
  20021. }
  20022. },
  20023. },
  20024. [
  20025. {
  20026. name: "Micro",
  20027. height: math.unit(4, "inches"),
  20028. default: true
  20029. },
  20030. ]
  20031. ))
  20032. characterMakers.push(() => makeCharacter(
  20033. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20034. {
  20035. side: {
  20036. height: math.unit(30, "meters"),
  20037. weight: math.unit(700, "tonnes"),
  20038. name: "Side",
  20039. image: {
  20040. source: "./media/characters/fixerdragon/side.svg",
  20041. extra: (1293.0514 - 116.03) / 1106.86,
  20042. bottom: 116.03 / 1293.0514
  20043. }
  20044. },
  20045. },
  20046. [
  20047. {
  20048. name: "Planck",
  20049. height: math.unit(1.6e-35, "meters")
  20050. },
  20051. {
  20052. name: "Micro",
  20053. height: math.unit(0.4, "meters")
  20054. },
  20055. {
  20056. name: "Normal",
  20057. height: math.unit(30, "meters"),
  20058. default: true
  20059. },
  20060. {
  20061. name: "Megamacro",
  20062. height: math.unit(1.2, "megameters")
  20063. },
  20064. {
  20065. name: "Teramacro",
  20066. height: math.unit(130, "terameters")
  20067. },
  20068. {
  20069. name: "Yottamacro",
  20070. height: math.unit(6200, "yottameters")
  20071. },
  20072. ]
  20073. ));
  20074. characterMakers.push(() => makeCharacter(
  20075. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20076. {
  20077. front: {
  20078. height: math.unit(8, "feet"),
  20079. weight: math.unit(250, "lb"),
  20080. name: "Front",
  20081. image: {
  20082. source: "./media/characters/kite/front.svg",
  20083. extra: 2796 / 2659,
  20084. bottom: 0.002
  20085. }
  20086. },
  20087. },
  20088. [
  20089. {
  20090. name: "Normal",
  20091. height: math.unit(8, "feet"),
  20092. default: true
  20093. },
  20094. {
  20095. name: "Macro",
  20096. height: math.unit(360, "feet")
  20097. },
  20098. {
  20099. name: "Megamacro",
  20100. height: math.unit(1500, "feet")
  20101. },
  20102. ]
  20103. ))
  20104. characterMakers.push(() => makeCharacter(
  20105. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20106. {
  20107. front: {
  20108. height: math.unit(5 + 10 / 12, "feet"),
  20109. weight: math.unit(150, "lb"),
  20110. name: "Front",
  20111. image: {
  20112. source: "./media/characters/poojawa-vynar/front.svg",
  20113. extra: (1506.1547 - 55) / 1356.6,
  20114. bottom: 55 / 1506.1547
  20115. }
  20116. },
  20117. frontTailless: {
  20118. height: math.unit(5 + 10 / 12, "feet"),
  20119. weight: math.unit(150, "lb"),
  20120. name: "Front (Tailless)",
  20121. image: {
  20122. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20123. extra: (1506.1547 - 55) / 1356.6,
  20124. bottom: 55 / 1506.1547
  20125. }
  20126. },
  20127. },
  20128. [
  20129. {
  20130. name: "Normal",
  20131. height: math.unit(5 + 10 / 12, "feet"),
  20132. default: true
  20133. },
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20138. {
  20139. front: {
  20140. height: math.unit(293, "meters"),
  20141. weight: math.unit(70400, "tons"),
  20142. name: "Front",
  20143. image: {
  20144. source: "./media/characters/violette/front.svg",
  20145. extra: 1227 / 1180,
  20146. bottom: 0.005
  20147. }
  20148. },
  20149. back: {
  20150. height: math.unit(293, "meters"),
  20151. weight: math.unit(70400, "tons"),
  20152. name: "Back",
  20153. image: {
  20154. source: "./media/characters/violette/back.svg",
  20155. extra: 1227 / 1180,
  20156. bottom: 0.005
  20157. }
  20158. },
  20159. },
  20160. [
  20161. {
  20162. name: "Macro",
  20163. height: math.unit(293, "meters"),
  20164. default: true
  20165. },
  20166. ]
  20167. ))
  20168. characterMakers.push(() => makeCharacter(
  20169. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20170. {
  20171. front: {
  20172. height: math.unit(1050, "feet"),
  20173. weight: math.unit(200000, "tons"),
  20174. name: "Front",
  20175. image: {
  20176. source: "./media/characters/alessandra/front.svg",
  20177. extra: 960 / 912,
  20178. bottom: 0.06
  20179. }
  20180. },
  20181. },
  20182. [
  20183. {
  20184. name: "Macro",
  20185. height: math.unit(1050, "feet")
  20186. },
  20187. {
  20188. name: "Macro+",
  20189. height: math.unit(900, "meters"),
  20190. default: true
  20191. },
  20192. ]
  20193. ))
  20194. characterMakers.push(() => makeCharacter(
  20195. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20196. {
  20197. front: {
  20198. height: math.unit(5, "feet"),
  20199. weight: math.unit(187, "lb"),
  20200. name: "Front",
  20201. image: {
  20202. source: "./media/characters/person/front.svg",
  20203. extra: 3087 / 2945,
  20204. bottom: 91 / 3181
  20205. }
  20206. },
  20207. },
  20208. [
  20209. {
  20210. name: "Micro",
  20211. height: math.unit(3, "inches")
  20212. },
  20213. {
  20214. name: "Normal",
  20215. height: math.unit(5, "feet"),
  20216. default: true
  20217. },
  20218. {
  20219. name: "Macro",
  20220. height: math.unit(90, "feet")
  20221. },
  20222. {
  20223. name: "Max Size",
  20224. height: math.unit(280, "feet")
  20225. },
  20226. ]
  20227. ))
  20228. characterMakers.push(() => makeCharacter(
  20229. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20230. {
  20231. front: {
  20232. height: math.unit(4.5, "meters"),
  20233. weight: math.unit(3200, "lb"),
  20234. name: "Front",
  20235. image: {
  20236. source: "./media/characters/ty/front.svg",
  20237. extra: 1038 / 960,
  20238. bottom: 31.156 / 1068
  20239. }
  20240. },
  20241. back: {
  20242. height: math.unit(4.5, "meters"),
  20243. weight: math.unit(3200, "lb"),
  20244. name: "Back",
  20245. image: {
  20246. source: "./media/characters/ty/back.svg",
  20247. extra: 1044 / 966,
  20248. bottom: 7.48 / 1049
  20249. }
  20250. },
  20251. },
  20252. [
  20253. {
  20254. name: "Normal",
  20255. height: math.unit(4.5, "meters"),
  20256. default: true
  20257. },
  20258. ]
  20259. ))
  20260. characterMakers.push(() => makeCharacter(
  20261. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20262. {
  20263. front: {
  20264. height: math.unit(5 + 4 / 12, "feet"),
  20265. weight: math.unit(115, "lb"),
  20266. name: "Front",
  20267. image: {
  20268. source: "./media/characters/rocky/front.svg",
  20269. extra: 1012 / 975,
  20270. bottom: 54 / 1066
  20271. }
  20272. },
  20273. },
  20274. [
  20275. {
  20276. name: "Normal",
  20277. height: math.unit(5 + 4 / 12, "feet"),
  20278. default: true
  20279. },
  20280. ]
  20281. ))
  20282. characterMakers.push(() => makeCharacter(
  20283. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20284. {
  20285. upright: {
  20286. height: math.unit(6, "meters"),
  20287. weight: math.unit(4000, "kg"),
  20288. name: "Upright",
  20289. image: {
  20290. source: "./media/characters/ruin/upright.svg",
  20291. extra: 668 / 661,
  20292. bottom: 42 / 799.8396
  20293. }
  20294. },
  20295. },
  20296. [
  20297. {
  20298. name: "Normal",
  20299. height: math.unit(6, "meters"),
  20300. default: true
  20301. },
  20302. ]
  20303. ))
  20304. characterMakers.push(() => makeCharacter(
  20305. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20306. {
  20307. front: {
  20308. height: math.unit(5, "feet"),
  20309. weight: math.unit(106, "lb"),
  20310. name: "Front",
  20311. image: {
  20312. source: "./media/characters/robin/front.svg",
  20313. extra: 862 / 799,
  20314. bottom: 42.4 / 914.8856
  20315. }
  20316. },
  20317. },
  20318. [
  20319. {
  20320. name: "Normal",
  20321. height: math.unit(5, "feet"),
  20322. default: true
  20323. },
  20324. ]
  20325. ))
  20326. characterMakers.push(() => makeCharacter(
  20327. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20328. {
  20329. side: {
  20330. height: math.unit(3, "feet"),
  20331. weight: math.unit(225, "lb"),
  20332. name: "Side",
  20333. image: {
  20334. source: "./media/characters/saian/side.svg",
  20335. extra: 566 / 356,
  20336. bottom: 79.7 / 643
  20337. }
  20338. },
  20339. maw: {
  20340. height: math.unit(2.85, "feet"),
  20341. name: "Maw",
  20342. image: {
  20343. source: "./media/characters/saian/maw.svg"
  20344. }
  20345. },
  20346. },
  20347. [
  20348. {
  20349. name: "Normal",
  20350. height: math.unit(3, "feet"),
  20351. default: true
  20352. },
  20353. ]
  20354. ))
  20355. characterMakers.push(() => makeCharacter(
  20356. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20357. {
  20358. side: {
  20359. height: math.unit(8, "feet"),
  20360. weight: math.unit(300, "lb"),
  20361. name: "Side",
  20362. image: {
  20363. source: "./media/characters/equus-silvermane/side.svg",
  20364. extra: 2176 / 2050,
  20365. bottom: 65.7 / 2245
  20366. }
  20367. },
  20368. front: {
  20369. height: math.unit(8, "feet"),
  20370. weight: math.unit(300, "lb"),
  20371. name: "Front",
  20372. image: {
  20373. source: "./media/characters/equus-silvermane/front.svg",
  20374. extra: 4633 / 4400,
  20375. bottom: 71.3 / 4706.915
  20376. }
  20377. },
  20378. sideStepping: {
  20379. height: math.unit(8, "feet"),
  20380. weight: math.unit(300, "lb"),
  20381. name: "Side (Stepping)",
  20382. image: {
  20383. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20384. extra: 1968 / 1860,
  20385. bottom: 16.4 / 1989
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(8, "feet")
  20393. },
  20394. {
  20395. name: "Minimacro",
  20396. height: math.unit(75, "feet"),
  20397. default: true
  20398. },
  20399. {
  20400. name: "Macro",
  20401. height: math.unit(150, "feet")
  20402. },
  20403. {
  20404. name: "Macro+",
  20405. height: math.unit(1000, "feet")
  20406. },
  20407. {
  20408. name: "Megamacro",
  20409. height: math.unit(1, "mile")
  20410. },
  20411. ]
  20412. ))
  20413. characterMakers.push(() => makeCharacter(
  20414. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20415. {
  20416. side: {
  20417. height: math.unit(20, "feet"),
  20418. weight: math.unit(30000, "kg"),
  20419. name: "Side",
  20420. image: {
  20421. source: "./media/characters/windar/side.svg",
  20422. extra: 1491 / 1248,
  20423. bottom: 82.56 / 1568
  20424. }
  20425. },
  20426. },
  20427. [
  20428. {
  20429. name: "Normal",
  20430. height: math.unit(20, "feet"),
  20431. default: true
  20432. },
  20433. ]
  20434. ))
  20435. characterMakers.push(() => makeCharacter(
  20436. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20437. {
  20438. side: {
  20439. height: math.unit(15.66, "feet"),
  20440. weight: math.unit(150, "lb"),
  20441. name: "Side",
  20442. image: {
  20443. source: "./media/characters/melody/side.svg",
  20444. extra: 1097 / 944,
  20445. bottom: 11.8 / 1109
  20446. }
  20447. },
  20448. sideOutfit: {
  20449. height: math.unit(15.66, "feet"),
  20450. weight: math.unit(150, "lb"),
  20451. name: "Side (Outfit)",
  20452. image: {
  20453. source: "./media/characters/melody/side-outfit.svg",
  20454. extra: 1097 / 944,
  20455. bottom: 11.8 / 1109
  20456. }
  20457. },
  20458. },
  20459. [
  20460. {
  20461. name: "Normal",
  20462. height: math.unit(15.66, "feet"),
  20463. default: true
  20464. },
  20465. ]
  20466. ))
  20467. characterMakers.push(() => makeCharacter(
  20468. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20469. {
  20470. front: {
  20471. height: math.unit(8, "feet"),
  20472. weight: math.unit(325, "lb"),
  20473. name: "Front",
  20474. image: {
  20475. source: "./media/characters/windera/front.svg",
  20476. extra: 3180 / 2845,
  20477. bottom: 178 / 3365
  20478. }
  20479. },
  20480. },
  20481. [
  20482. {
  20483. name: "Normal",
  20484. height: math.unit(8, "feet"),
  20485. default: true
  20486. },
  20487. ]
  20488. ))
  20489. characterMakers.push(() => makeCharacter(
  20490. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20491. {
  20492. front: {
  20493. height: math.unit(28.75, "feet"),
  20494. weight: math.unit(2000, "kg"),
  20495. name: "Front",
  20496. image: {
  20497. source: "./media/characters/sonear/front.svg",
  20498. extra: 1041.1 / 964.9,
  20499. bottom: 53.7 / 1096.6
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Normal",
  20506. height: math.unit(28.75, "feet"),
  20507. default: true
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20513. {
  20514. side: {
  20515. height: math.unit(25.5, "feet"),
  20516. weight: math.unit(23000, "kg"),
  20517. name: "Side",
  20518. image: {
  20519. source: "./media/characters/kanara/side.svg"
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Normal",
  20526. height: math.unit(25.5, "feet"),
  20527. default: true
  20528. },
  20529. ]
  20530. ))
  20531. characterMakers.push(() => makeCharacter(
  20532. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20533. {
  20534. side: {
  20535. height: math.unit(10, "feet"),
  20536. weight: math.unit(1000, "kg"),
  20537. name: "Side",
  20538. image: {
  20539. source: "./media/characters/ereus/side.svg",
  20540. extra: 1157 / 959,
  20541. bottom: 153 / 1312.5
  20542. }
  20543. },
  20544. },
  20545. [
  20546. {
  20547. name: "Normal",
  20548. height: math.unit(10, "feet"),
  20549. default: true
  20550. },
  20551. ]
  20552. ))
  20553. characterMakers.push(() => makeCharacter(
  20554. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20555. {
  20556. side: {
  20557. height: math.unit(4.5, "feet"),
  20558. weight: math.unit(500, "lb"),
  20559. name: "Side",
  20560. image: {
  20561. source: "./media/characters/e-ter/side.svg",
  20562. extra: 1550 / 1248,
  20563. bottom: 146 / 1694
  20564. }
  20565. },
  20566. },
  20567. [
  20568. {
  20569. name: "Normal",
  20570. height: math.unit(4.5, "feet"),
  20571. default: true
  20572. },
  20573. ]
  20574. ))
  20575. characterMakers.push(() => makeCharacter(
  20576. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20577. {
  20578. side: {
  20579. height: math.unit(9.7, "feet"),
  20580. weight: math.unit(4000, "kg"),
  20581. name: "Side",
  20582. image: {
  20583. source: "./media/characters/yamie/side.svg"
  20584. }
  20585. },
  20586. },
  20587. [
  20588. {
  20589. name: "Normal",
  20590. height: math.unit(9.7, "feet"),
  20591. default: true
  20592. },
  20593. ]
  20594. ))
  20595. characterMakers.push(() => makeCharacter(
  20596. { name: "Anders", species: ["unicorn"], tags: ["anthro"] },
  20597. {
  20598. front: {
  20599. height: math.unit(50, "feet"),
  20600. weight: math.unit(50000, "kg"),
  20601. name: "Front",
  20602. image: {
  20603. source: "./media/characters/anders/front.svg",
  20604. extra: 570 / 539,
  20605. bottom: 14.7 / 586.7
  20606. }
  20607. },
  20608. },
  20609. [
  20610. {
  20611. name: "Large",
  20612. height: math.unit(50, "feet")
  20613. },
  20614. {
  20615. name: "Macro",
  20616. height: math.unit(2000, "feet"),
  20617. default: true
  20618. },
  20619. {
  20620. name: "Megamacro",
  20621. height: math.unit(12, "miles")
  20622. },
  20623. ]
  20624. ))
  20625. characterMakers.push(() => makeCharacter(
  20626. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20627. {
  20628. front: {
  20629. height: math.unit(7 + 2 / 12, "feet"),
  20630. weight: math.unit(300, "lb"),
  20631. name: "Front",
  20632. image: {
  20633. source: "./media/characters/reban/front.svg",
  20634. extra: 516 / 487,
  20635. bottom: 42.82 / 558.356
  20636. }
  20637. },
  20638. dick: {
  20639. height: math.unit(7 / 5, "feet"),
  20640. name: "Dick",
  20641. image: {
  20642. source: "./media/characters/reban/dick.svg"
  20643. }
  20644. },
  20645. },
  20646. [
  20647. {
  20648. name: "Natural Height",
  20649. height: math.unit(7 + 2 / 12, "feet")
  20650. },
  20651. {
  20652. name: "Macro",
  20653. height: math.unit(500, "feet"),
  20654. default: true
  20655. },
  20656. {
  20657. name: "Canon Height",
  20658. height: math.unit(50, "AU")
  20659. },
  20660. ]
  20661. ))
  20662. characterMakers.push(() => makeCharacter(
  20663. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20664. {
  20665. front: {
  20666. height: math.unit(6, "feet"),
  20667. weight: math.unit(150, "lb"),
  20668. name: "Front",
  20669. image: {
  20670. source: "./media/characters/terrance-keayes/front.svg",
  20671. extra: 1.005,
  20672. bottom: 151 / 1615
  20673. }
  20674. },
  20675. side: {
  20676. height: math.unit(6, "feet"),
  20677. weight: math.unit(150, "lb"),
  20678. name: "Side",
  20679. image: {
  20680. source: "./media/characters/terrance-keayes/side.svg",
  20681. extra: 1.005,
  20682. bottom: 129.4 / 1544
  20683. }
  20684. },
  20685. back: {
  20686. height: math.unit(6, "feet"),
  20687. weight: math.unit(150, "lb"),
  20688. name: "Back",
  20689. image: {
  20690. source: "./media/characters/terrance-keayes/back.svg",
  20691. extra: 1.005,
  20692. bottom: 58.4 / 1557.3
  20693. }
  20694. },
  20695. dick: {
  20696. height: math.unit(6 * 0.208, "feet"),
  20697. name: "Dick",
  20698. image: {
  20699. source: "./media/characters/terrance-keayes/dick.svg"
  20700. }
  20701. },
  20702. },
  20703. [
  20704. {
  20705. name: "Canon Height",
  20706. height: math.unit(35, "miles"),
  20707. default: true
  20708. },
  20709. ]
  20710. ))
  20711. characterMakers.push(() => makeCharacter(
  20712. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  20713. {
  20714. front: {
  20715. height: math.unit(6, "feet"),
  20716. weight: math.unit(150, "lb"),
  20717. name: "Front",
  20718. image: {
  20719. source: "./media/characters/ofelia/front.svg",
  20720. extra: 546 / 541,
  20721. bottom: 39 / 583
  20722. }
  20723. },
  20724. back: {
  20725. height: math.unit(6, "feet"),
  20726. weight: math.unit(150, "lb"),
  20727. name: "Back",
  20728. image: {
  20729. source: "./media/characters/ofelia/back.svg",
  20730. extra: 564 / 559.5,
  20731. bottom: 8.69 / 573.02
  20732. }
  20733. },
  20734. maw: {
  20735. height: math.unit(1, "feet"),
  20736. name: "Maw",
  20737. image: {
  20738. source: "./media/characters/ofelia/maw.svg"
  20739. }
  20740. },
  20741. foot: {
  20742. height: math.unit(1.949, "feet"),
  20743. name: "Foot",
  20744. image: {
  20745. source: "./media/characters/ofelia/foot.svg"
  20746. }
  20747. },
  20748. },
  20749. [
  20750. {
  20751. name: "Canon Height",
  20752. height: math.unit(2000, "miles"),
  20753. default: true
  20754. },
  20755. ]
  20756. ))
  20757. characterMakers.push(() => makeCharacter(
  20758. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  20759. {
  20760. front: {
  20761. height: math.unit(6, "feet"),
  20762. weight: math.unit(150, "lb"),
  20763. name: "Front",
  20764. image: {
  20765. source: "./media/characters/samuel/front.svg",
  20766. extra: 265 / 258,
  20767. bottom: 2 / 266.1566
  20768. }
  20769. },
  20770. },
  20771. [
  20772. {
  20773. name: "Macro",
  20774. height: math.unit(100, "feet"),
  20775. default: true
  20776. },
  20777. {
  20778. name: "Full Size",
  20779. height: math.unit(1000, "miles")
  20780. },
  20781. ]
  20782. ))
  20783. characterMakers.push(() => makeCharacter(
  20784. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  20785. {
  20786. front: {
  20787. height: math.unit(6, "feet"),
  20788. weight: math.unit(300, "lb"),
  20789. name: "Front",
  20790. image: {
  20791. source: "./media/characters/beishir-kiel/front.svg",
  20792. extra: 569 / 547,
  20793. bottom: 41.9 / 609
  20794. }
  20795. },
  20796. maw: {
  20797. height: math.unit(6 * 0.202, "feet"),
  20798. name: "Maw",
  20799. image: {
  20800. source: "./media/characters/beishir-kiel/maw.svg"
  20801. }
  20802. },
  20803. },
  20804. [
  20805. {
  20806. name: "Macro",
  20807. height: math.unit(300, "feet"),
  20808. default: true
  20809. },
  20810. ]
  20811. ))
  20812. characterMakers.push(() => makeCharacter(
  20813. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  20814. {
  20815. front: {
  20816. height: math.unit(5 + 8 / 12, "feet"),
  20817. weight: math.unit(120, "lb"),
  20818. name: "Front",
  20819. image: {
  20820. source: "./media/characters/logan-grey/front.svg",
  20821. extra: 2539 / 2393,
  20822. bottom: 97.6 / 2636.37
  20823. }
  20824. },
  20825. frontAlt: {
  20826. height: math.unit(5 + 8 / 12, "feet"),
  20827. weight: math.unit(120, "lb"),
  20828. name: "Front (Alt)",
  20829. image: {
  20830. source: "./media/characters/logan-grey/front-alt.svg",
  20831. extra: 958 / 893,
  20832. bottom: 15 / 970.768
  20833. }
  20834. },
  20835. back: {
  20836. height: math.unit(5 + 8 / 12, "feet"),
  20837. weight: math.unit(120, "lb"),
  20838. name: "Back",
  20839. image: {
  20840. source: "./media/characters/logan-grey/back.svg",
  20841. extra: 958 / 893,
  20842. bottom: 2.1881 / 970.9788
  20843. }
  20844. },
  20845. dick: {
  20846. height: math.unit(1.437, "feet"),
  20847. name: "Dick",
  20848. image: {
  20849. source: "./media/characters/logan-grey/dick.svg"
  20850. }
  20851. },
  20852. },
  20853. [
  20854. {
  20855. name: "Normal",
  20856. height: math.unit(5 + 8 / 12, "feet")
  20857. },
  20858. {
  20859. name: "The 500 Foot Femboy",
  20860. height: math.unit(500, "feet"),
  20861. default: true
  20862. },
  20863. {
  20864. name: "Megmacro",
  20865. height: math.unit(20, "miles")
  20866. },
  20867. ]
  20868. ))
  20869. characterMakers.push(() => makeCharacter(
  20870. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  20871. {
  20872. front: {
  20873. height: math.unit(8 + 2 / 12, "feet"),
  20874. weight: math.unit(275, "lb"),
  20875. name: "Front",
  20876. image: {
  20877. source: "./media/characters/draganta/front.svg",
  20878. extra: 1177 / 1135,
  20879. bottom: 33.46 / 1212.1
  20880. }
  20881. },
  20882. },
  20883. [
  20884. {
  20885. name: "Normal",
  20886. height: math.unit(8 + 6 / 12, "feet"),
  20887. default: true
  20888. },
  20889. {
  20890. name: "Macro",
  20891. height: math.unit(150, "feet")
  20892. },
  20893. {
  20894. name: "Megamacro",
  20895. height: math.unit(1000, "miles")
  20896. },
  20897. ]
  20898. ))
  20899. characterMakers.push(() => makeCharacter(
  20900. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  20901. {
  20902. front: {
  20903. height: math.unit(1.72, "m"),
  20904. weight: math.unit(80, "lb"),
  20905. name: "Front",
  20906. image: {
  20907. source: "./media/characters/voski/front.svg",
  20908. extra: 2076.22 / 2022.4,
  20909. bottom: 102.7 / 2177.3866
  20910. }
  20911. },
  20912. frontNsfw: {
  20913. height: math.unit(1.72, "m"),
  20914. weight: math.unit(80, "lb"),
  20915. name: "Front (NSFW)",
  20916. image: {
  20917. source: "./media/characters/voski/front-nsfw.svg",
  20918. extra: 2076.22 / 2022.4,
  20919. bottom: 102.7 / 2177.3866
  20920. }
  20921. },
  20922. back: {
  20923. height: math.unit(1.72, "m"),
  20924. weight: math.unit(80, "lb"),
  20925. name: "Back",
  20926. image: {
  20927. source: "./media/characters/voski/back.svg",
  20928. extra: 2104 / 2051,
  20929. bottom: 10.45 / 2113.63
  20930. }
  20931. },
  20932. },
  20933. [
  20934. {
  20935. name: "Normal",
  20936. height: math.unit(1.72, "m")
  20937. },
  20938. {
  20939. name: "Macro",
  20940. height: math.unit(55, "m"),
  20941. default: true
  20942. },
  20943. {
  20944. name: "Macro+",
  20945. height: math.unit(300, "m")
  20946. },
  20947. {
  20948. name: "Macro++",
  20949. height: math.unit(700, "m")
  20950. },
  20951. {
  20952. name: "Macro+++",
  20953. height: math.unit(4500, "m")
  20954. },
  20955. {
  20956. name: "Macro++++",
  20957. height: math.unit(45, "km")
  20958. },
  20959. {
  20960. name: "Macro+++++",
  20961. height: math.unit(1220, "km")
  20962. },
  20963. ]
  20964. ))
  20965. characterMakers.push(() => makeCharacter(
  20966. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  20967. {
  20968. front: {
  20969. height: math.unit(2.3, "m"),
  20970. weight: math.unit(304, "kg"),
  20971. name: "Front",
  20972. image: {
  20973. source: "./media/characters/icowom-lee/front.svg",
  20974. extra: 3076 / 2933,
  20975. bottom: 51.4 / 3125.1889
  20976. }
  20977. },
  20978. },
  20979. [
  20980. {
  20981. name: "Normal",
  20982. height: math.unit(2.3, "meters"),
  20983. default: true
  20984. },
  20985. {
  20986. name: "Macro",
  20987. height: math.unit(94, "meters"),
  20988. default: true
  20989. },
  20990. ]
  20991. ))
  20992. characterMakers.push(() => makeCharacter(
  20993. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  20994. {
  20995. front: {
  20996. height: math.unit(22, "meters"),
  20997. weight: math.unit(21000, "kg"),
  20998. name: "Front",
  20999. image: {
  21000. source: "./media/characters/shock-diamond/front.svg",
  21001. extra: 2204 / 2053,
  21002. bottom: 65 / 2239.47
  21003. }
  21004. },
  21005. frontNude: {
  21006. height: math.unit(22, "meters"),
  21007. weight: math.unit(21000, "kg"),
  21008. name: "Front (Nude)",
  21009. image: {
  21010. source: "./media/characters/shock-diamond/front-nude.svg",
  21011. extra: 2514 / 2285,
  21012. bottom: 13 / 2527.56
  21013. }
  21014. },
  21015. },
  21016. [
  21017. {
  21018. name: "Normal",
  21019. height: math.unit(3, "meters")
  21020. },
  21021. {
  21022. name: "Macro",
  21023. height: math.unit(22, "meters"),
  21024. default: true
  21025. },
  21026. ]
  21027. ))
  21028. characterMakers.push(() => makeCharacter(
  21029. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21030. {
  21031. front: {
  21032. height: math.unit(5 + 4 / 12, "feet"),
  21033. weight: math.unit(120, "lb"),
  21034. name: "Front",
  21035. image: {
  21036. source: "./media/characters/rory/front.svg",
  21037. extra: 589 / 556,
  21038. bottom: 45.7 / 635.76
  21039. }
  21040. },
  21041. frontNude: {
  21042. height: math.unit(5 + 4 / 12, "feet"),
  21043. weight: math.unit(120, "lb"),
  21044. name: "Front (Nude)",
  21045. image: {
  21046. source: "./media/characters/rory/front-nude.svg",
  21047. extra: 589 / 556,
  21048. bottom: 45.7 / 635.76
  21049. }
  21050. },
  21051. side: {
  21052. height: math.unit(5 + 4 / 12, "feet"),
  21053. weight: math.unit(120, "lb"),
  21054. name: "Side",
  21055. image: {
  21056. source: "./media/characters/rory/side.svg",
  21057. extra: 597 / 564,
  21058. bottom: 55 / 653
  21059. }
  21060. },
  21061. back: {
  21062. height: math.unit(5 + 4 / 12, "feet"),
  21063. weight: math.unit(120, "lb"),
  21064. name: "Back",
  21065. image: {
  21066. source: "./media/characters/rory/back.svg",
  21067. extra: 620 / 585,
  21068. bottom: 8.86 / 630.43
  21069. }
  21070. },
  21071. dick: {
  21072. height: math.unit(0.86, "feet"),
  21073. name: "Dick",
  21074. image: {
  21075. source: "./media/characters/rory/dick.svg"
  21076. }
  21077. },
  21078. },
  21079. [
  21080. {
  21081. name: "Normal",
  21082. height: math.unit(5 + 4 / 12, "feet"),
  21083. default: true
  21084. },
  21085. {
  21086. name: "Macro",
  21087. height: math.unit(100, "feet")
  21088. },
  21089. {
  21090. name: "Macro+",
  21091. height: math.unit(140, "feet")
  21092. },
  21093. {
  21094. name: "Macro++",
  21095. height: math.unit(300, "feet")
  21096. },
  21097. ]
  21098. ))
  21099. characterMakers.push(() => makeCharacter(
  21100. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21101. {
  21102. front: {
  21103. height: math.unit(5 + 9 / 12, "feet"),
  21104. weight: math.unit(190, "lb"),
  21105. name: "Front",
  21106. image: {
  21107. source: "./media/characters/sprisk/front.svg",
  21108. extra: 1225 / 1180,
  21109. bottom: 42.7 / 1266.4
  21110. }
  21111. },
  21112. frontNsfw: {
  21113. height: math.unit(5 + 9 / 12, "feet"),
  21114. weight: math.unit(190, "lb"),
  21115. name: "Front (NSFW)",
  21116. image: {
  21117. source: "./media/characters/sprisk/front-nsfw.svg",
  21118. extra: 1225 / 1180,
  21119. bottom: 42.7 / 1266.4
  21120. }
  21121. },
  21122. back: {
  21123. height: math.unit(5 + 9 / 12, "feet"),
  21124. weight: math.unit(190, "lb"),
  21125. name: "Back",
  21126. image: {
  21127. source: "./media/characters/sprisk/back.svg",
  21128. extra: 1247 / 1200,
  21129. bottom: 5.6 / 1253.04
  21130. }
  21131. },
  21132. },
  21133. [
  21134. {
  21135. name: "Tiny",
  21136. height: math.unit(2, "inches")
  21137. },
  21138. {
  21139. name: "Normal",
  21140. height: math.unit(5 + 9 / 12, "feet"),
  21141. default: true
  21142. },
  21143. {
  21144. name: "Mini Macro",
  21145. height: math.unit(18, "feet")
  21146. },
  21147. {
  21148. name: "Macro",
  21149. height: math.unit(100, "feet")
  21150. },
  21151. {
  21152. name: "MACRO",
  21153. height: math.unit(50, "miles")
  21154. },
  21155. {
  21156. name: "M A C R O",
  21157. height: math.unit(300, "miles")
  21158. },
  21159. ]
  21160. ))
  21161. characterMakers.push(() => makeCharacter(
  21162. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21163. {
  21164. side: {
  21165. height: math.unit(15.6, "meters"),
  21166. weight: math.unit(700000, "kg"),
  21167. name: "Side",
  21168. image: {
  21169. source: "./media/characters/bunsen/side.svg",
  21170. extra: 1644 / 358
  21171. }
  21172. },
  21173. foot: {
  21174. height: math.unit(1.611 * 1644 / 358, "meter"),
  21175. name: "Foot",
  21176. image: {
  21177. source: "./media/characters/bunsen/foot.svg"
  21178. }
  21179. },
  21180. },
  21181. [
  21182. {
  21183. name: "Small",
  21184. height: math.unit(10, "feet")
  21185. },
  21186. {
  21187. name: "Normal",
  21188. height: math.unit(15.6, "meters"),
  21189. default: true
  21190. },
  21191. ]
  21192. ))
  21193. characterMakers.push(() => makeCharacter(
  21194. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21195. {
  21196. front: {
  21197. height: math.unit(4 + 11 / 12, "feet"),
  21198. weight: math.unit(140, "lb"),
  21199. name: "Front",
  21200. image: {
  21201. source: "./media/characters/sesh/front.svg",
  21202. extra: 3420 / 3231,
  21203. bottom: 72 / 3949.5
  21204. }
  21205. },
  21206. },
  21207. [
  21208. {
  21209. name: "Normal",
  21210. height: math.unit(4 + 11 / 12, "feet")
  21211. },
  21212. {
  21213. name: "Grown",
  21214. height: math.unit(15, "feet"),
  21215. default: true
  21216. },
  21217. {
  21218. name: "Macro",
  21219. height: math.unit(1500, "feet")
  21220. },
  21221. {
  21222. name: "Megamacro",
  21223. height: math.unit(30, "miles")
  21224. },
  21225. {
  21226. name: "Continental",
  21227. height: math.unit(3000, "miles")
  21228. },
  21229. {
  21230. name: "Gravity Mass",
  21231. height: math.unit(300000, "miles")
  21232. },
  21233. {
  21234. name: "Planet Buster",
  21235. height: math.unit(30000000, "miles")
  21236. },
  21237. {
  21238. name: "Big",
  21239. height: math.unit(3000000000, "miles")
  21240. },
  21241. ]
  21242. ))
  21243. characterMakers.push(() => makeCharacter(
  21244. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21245. {
  21246. front: {
  21247. height: math.unit(9, "feet"),
  21248. weight: math.unit(350, "lb"),
  21249. name: "Front",
  21250. image: {
  21251. source: "./media/characters/pepper/front.svg",
  21252. extra: 1448/1312,
  21253. bottom: 9.4/1457.88
  21254. }
  21255. },
  21256. back: {
  21257. height: math.unit(9, "feet"),
  21258. weight: math.unit(350, "lb"),
  21259. name: "Back",
  21260. image: {
  21261. source: "./media/characters/pepper/back.svg",
  21262. extra: 1423/1300,
  21263. bottom: 4.6/1429
  21264. }
  21265. },
  21266. maw: {
  21267. height: math.unit(0.932, "feet"),
  21268. name: "Maw",
  21269. image: {
  21270. source: "./media/characters/pepper/maw.svg"
  21271. }
  21272. },
  21273. },
  21274. [
  21275. {
  21276. name: "Normal",
  21277. height: math.unit(9, "feet"),
  21278. default: true
  21279. },
  21280. ]
  21281. ))
  21282. characterMakers.push(() => makeCharacter(
  21283. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21284. {
  21285. front: {
  21286. height: math.unit(6, "feet"),
  21287. weight: math.unit(150, "lb"),
  21288. name: "Front",
  21289. image: {
  21290. source: "./media/characters/maelstrom/front.svg",
  21291. extra: 2100/1883,
  21292. bottom: 94/2196.7
  21293. }
  21294. },
  21295. },
  21296. [
  21297. {
  21298. name: "Less Kaiju",
  21299. height: math.unit(200, "feet")
  21300. },
  21301. {
  21302. name: "Kaiju",
  21303. height: math.unit(400, "feet"),
  21304. default: true
  21305. },
  21306. {
  21307. name: "Kaiju-er",
  21308. height: math.unit(600, "feet")
  21309. },
  21310. ]
  21311. ))
  21312. characterMakers.push(() => makeCharacter(
  21313. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21314. {
  21315. front: {
  21316. height: math.unit(6 + 5/12, "feet"),
  21317. weight: math.unit(180, "lb"),
  21318. name: "Front",
  21319. image: {
  21320. source: "./media/characters/lexir/front.svg",
  21321. extra: 180/172,
  21322. bottom: 12/192
  21323. }
  21324. },
  21325. back: {
  21326. height: math.unit(6 + 5/12, "feet"),
  21327. weight: math.unit(180, "lb"),
  21328. name: "Back",
  21329. image: {
  21330. source: "./media/characters/lexir/back.svg",
  21331. extra: 183.84/175.5,
  21332. bottom: 3.1/187
  21333. }
  21334. },
  21335. },
  21336. [
  21337. {
  21338. name: "Very Smal",
  21339. height: math.unit(1, "nm")
  21340. },
  21341. {
  21342. name: "Normal",
  21343. height: math.unit(6 + 5/12, "feet"),
  21344. default: true
  21345. },
  21346. {
  21347. name: "Macro",
  21348. height: math.unit(1, "mile")
  21349. },
  21350. {
  21351. name: "Megamacro",
  21352. height: math.unit(50, "miles")
  21353. },
  21354. ]
  21355. ))
  21356. characterMakers.push(() => makeCharacter(
  21357. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21358. {
  21359. front: {
  21360. height: math.unit(1.5, "meters"),
  21361. weight: math.unit(100, "lb"),
  21362. name: "Front",
  21363. image: {
  21364. source: "./media/characters/maksio/front.svg",
  21365. extra: 1549/1531,
  21366. bottom: 123.7/1674.5429
  21367. }
  21368. },
  21369. back: {
  21370. height: math.unit(1.5, "meters"),
  21371. weight: math.unit(100, "lb"),
  21372. name: "Back",
  21373. image: {
  21374. source: "./media/characters/maksio/back.svg",
  21375. extra: 1541/1509,
  21376. bottom: 97/1639
  21377. }
  21378. },
  21379. hand: {
  21380. height: math.unit(0.621, "feet"),
  21381. name: "Hand",
  21382. image: {
  21383. source: "./media/characters/maksio/hand.svg"
  21384. }
  21385. },
  21386. foot: {
  21387. height: math.unit(1.611, "feet"),
  21388. name: "Foot",
  21389. image: {
  21390. source: "./media/characters/maksio/foot.svg"
  21391. }
  21392. },
  21393. },
  21394. [
  21395. {
  21396. name: "Shrunken",
  21397. height: math.unit(10, "cm")
  21398. },
  21399. {
  21400. name: "Normal",
  21401. height: math.unit(150, "cm"),
  21402. default: true
  21403. },
  21404. ]
  21405. ))
  21406. characterMakers.push(() => makeCharacter(
  21407. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21408. {
  21409. front: {
  21410. height: math.unit(100, "feet"),
  21411. name: "Front",
  21412. image: {
  21413. source: "./media/characters/erza-bear/front.svg",
  21414. extra: 2449/2390,
  21415. bottom: 46/2494
  21416. }
  21417. },
  21418. back: {
  21419. height: math.unit(100, "feet"),
  21420. name: "Back",
  21421. image: {
  21422. source: "./media/characters/erza-bear/back.svg",
  21423. extra: 2489/2430,
  21424. bottom: 85.4/2480
  21425. }
  21426. },
  21427. tail: {
  21428. height: math.unit(42, "feet"),
  21429. name: "Tail",
  21430. image: {
  21431. source: "./media/characters/erza-bear/tail.svg"
  21432. }
  21433. },
  21434. tongue: {
  21435. height: math.unit(8, "feet"),
  21436. name: "Tongue",
  21437. image: {
  21438. source: "./media/characters/erza-bear/tongue.svg"
  21439. }
  21440. },
  21441. dick: {
  21442. height: math.unit(10.5, "feet"),
  21443. name: "Dick",
  21444. image: {
  21445. source: "./media/characters/erza-bear/dick.svg"
  21446. }
  21447. },
  21448. dickVertical: {
  21449. height: math.unit(16.9, "feet"),
  21450. name: "Dick (Vertical)",
  21451. image: {
  21452. source: "./media/characters/erza-bear/dick-vertical.svg"
  21453. }
  21454. },
  21455. },
  21456. [
  21457. {
  21458. name: "Macro",
  21459. height: math.unit(100, "feet"),
  21460. default: true
  21461. },
  21462. ]
  21463. ))
  21464. characterMakers.push(() => makeCharacter(
  21465. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21466. {
  21467. front: {
  21468. height: math.unit(172, "cm"),
  21469. weight: math.unit(73, "kg"),
  21470. name: "Front",
  21471. image: {
  21472. source: "./media/characters/violet-flor/front.svg",
  21473. extra: 1530/1442,
  21474. bottom: 61.9/1588.8
  21475. }
  21476. },
  21477. back: {
  21478. height: math.unit(180, "cm"),
  21479. weight: math.unit(73, "kg"),
  21480. name: "Back",
  21481. image: {
  21482. source: "./media/characters/violet-flor/back.svg",
  21483. extra: 1692/1630,
  21484. bottom: 20/1712
  21485. }
  21486. },
  21487. },
  21488. [
  21489. {
  21490. name: "Normal",
  21491. height: math.unit(172, "cm"),
  21492. default: true
  21493. },
  21494. ]
  21495. ))
  21496. characterMakers.push(() => makeCharacter(
  21497. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21498. {
  21499. front: {
  21500. height: math.unit(6, "feet"),
  21501. weight: math.unit(220, "lb"),
  21502. name: "Front",
  21503. image: {
  21504. source: "./media/characters/lynn-rhea/front.svg",
  21505. extra: 310/273
  21506. }
  21507. },
  21508. back: {
  21509. height: math.unit(6, "feet"),
  21510. weight: math.unit(220, "lb"),
  21511. name: "Back",
  21512. image: {
  21513. source: "./media/characters/lynn-rhea/back.svg",
  21514. extra: 310/273
  21515. }
  21516. },
  21517. dicks: {
  21518. height: math.unit(0.9, "feet"),
  21519. name: "Dicks",
  21520. image: {
  21521. source: "./media/characters/lynn-rhea/dicks.svg"
  21522. }
  21523. },
  21524. slit: {
  21525. height: math.unit(0.4, "feet"),
  21526. name: "Slit",
  21527. image: {
  21528. source: "./media/characters/lynn-rhea/slit.svg"
  21529. }
  21530. },
  21531. },
  21532. [
  21533. {
  21534. name: "Micro",
  21535. height: math.unit(1, "inch")
  21536. },
  21537. {
  21538. name: "Macro",
  21539. height: math.unit(60, "feet"),
  21540. default: true
  21541. },
  21542. {
  21543. name: "Megamacro",
  21544. height: math.unit(2, "miles")
  21545. },
  21546. {
  21547. name: "Gigamacro",
  21548. height: math.unit(3, "earths")
  21549. },
  21550. {
  21551. name: "Galactic",
  21552. height: math.unit(0.8, "galaxies")
  21553. },
  21554. ]
  21555. ))
  21556. characterMakers.push(() => makeCharacter(
  21557. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21558. {
  21559. front: {
  21560. height: math.unit(1600, "feet"),
  21561. weight: math.unit(85758785169, "kg"),
  21562. name: "Front",
  21563. image: {
  21564. source: "./media/characters/valathos/front.svg",
  21565. extra: 1451/1339
  21566. }
  21567. },
  21568. },
  21569. [
  21570. {
  21571. name: "Macro",
  21572. height: math.unit(1600, "feet"),
  21573. default: true
  21574. },
  21575. ]
  21576. ))
  21577. characterMakers.push(() => makeCharacter(
  21578. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21579. {
  21580. front: {
  21581. height: math.unit(7 + 5/12, "feet"),
  21582. weight: math.unit(300, "lb"),
  21583. name: "Front",
  21584. image: {
  21585. source: "./media/characters/azula/front.svg",
  21586. extra: 3208/2880,
  21587. bottom: 80.2/3277
  21588. }
  21589. },
  21590. back: {
  21591. height: math.unit(7 + 5/12, "feet"),
  21592. weight: math.unit(300, "lb"),
  21593. name: "Back",
  21594. image: {
  21595. source: "./media/characters/azula/back.svg",
  21596. extra: 3169/2822,
  21597. bottom: 150.6/3321
  21598. }
  21599. },
  21600. },
  21601. [
  21602. {
  21603. name: "Normal",
  21604. height: math.unit(7 + 5/12, "feet"),
  21605. default: true
  21606. },
  21607. {
  21608. name: "Big",
  21609. height: math.unit(20, "feet")
  21610. },
  21611. ]
  21612. ))
  21613. characterMakers.push(() => makeCharacter(
  21614. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  21615. {
  21616. front: {
  21617. height: math.unit(5 + 1/12, "feet"),
  21618. weight: math.unit(110, "lb"),
  21619. name: "Front",
  21620. image: {
  21621. source: "./media/characters/rupert/front.svg",
  21622. extra: 1549/1495,
  21623. bottom: 54.2/1604.4
  21624. }
  21625. },
  21626. },
  21627. [
  21628. {
  21629. name: "Normal",
  21630. height: math.unit(5 + 1/12, "feet"),
  21631. default: true
  21632. },
  21633. ]
  21634. ))
  21635. characterMakers.push(() => makeCharacter(
  21636. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  21637. {
  21638. front: {
  21639. height: math.unit(8 + 4/12, "feet"),
  21640. weight: math.unit(350, "lb"),
  21641. name: "Front",
  21642. image: {
  21643. source: "./media/characters/sheera-castellar/front.svg",
  21644. extra: 1957/1894,
  21645. bottom: 26.97/1975.017
  21646. }
  21647. },
  21648. side: {
  21649. height: math.unit(8 + 4/12, "feet"),
  21650. weight: math.unit(350, "lb"),
  21651. name: "Side",
  21652. image: {
  21653. source: "./media/characters/sheera-castellar/side.svg",
  21654. extra: 1957/1894
  21655. }
  21656. },
  21657. back: {
  21658. height: math.unit(8 + 4/12, "feet"),
  21659. weight: math.unit(350, "lb"),
  21660. name: "Back",
  21661. image: {
  21662. source: "./media/characters/sheera-castellar/back.svg",
  21663. extra: 1957/1894
  21664. }
  21665. },
  21666. angled: {
  21667. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  21668. weight: math.unit(350, "lb"),
  21669. name: "Angled",
  21670. image: {
  21671. source: "./media/characters/sheera-castellar/angled.svg",
  21672. extra: 1807/1707,
  21673. bottom: 68/1875
  21674. }
  21675. },
  21676. genitals: {
  21677. height: math.unit(2.2, "feet"),
  21678. name: "Genitals",
  21679. image: {
  21680. source: "./media/characters/sheera-castellar/genitals.svg"
  21681. }
  21682. },
  21683. },
  21684. [
  21685. {
  21686. name: "Normal",
  21687. height: math.unit(8 + 4/12, "feet")
  21688. },
  21689. {
  21690. name: "Macro",
  21691. height: math.unit(150, "feet"),
  21692. default: true
  21693. },
  21694. {
  21695. name: "Macro+",
  21696. height: math.unit(800, "feet")
  21697. },
  21698. ]
  21699. ))
  21700. characterMakers.push(() => makeCharacter(
  21701. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  21702. {
  21703. front: {
  21704. height: math.unit(6, "feet"),
  21705. weight: math.unit(150, "lb"),
  21706. name: "Front",
  21707. image: {
  21708. source: "./media/characters/jaipur/front.svg",
  21709. extra: 3860/3731,
  21710. bottom: 287/4140
  21711. }
  21712. },
  21713. back: {
  21714. height: math.unit(6, "feet"),
  21715. weight: math.unit(150, "lb"),
  21716. name: "Back",
  21717. image: {
  21718. source: "./media/characters/jaipur/back.svg",
  21719. extra: 4060/3930,
  21720. bottom: 151/4200
  21721. }
  21722. },
  21723. },
  21724. [
  21725. {
  21726. name: "Normal",
  21727. height: math.unit(1.85, "meters"),
  21728. default: true
  21729. },
  21730. {
  21731. name: "Macro",
  21732. height: math.unit(150, "meters")
  21733. },
  21734. {
  21735. name: "Macro+",
  21736. height: math.unit(0.5, "miles")
  21737. },
  21738. {
  21739. name: "Macro++",
  21740. height: math.unit(2.5, "miles")
  21741. },
  21742. {
  21743. name: "Macro+++",
  21744. height: math.unit(12, "miles")
  21745. },
  21746. {
  21747. name: "Macro++++",
  21748. height: math.unit(120, "miles")
  21749. },
  21750. {
  21751. name: "Macro+++++",
  21752. height: math.unit(1200, "miles")
  21753. },
  21754. ]
  21755. ))
  21756. characterMakers.push(() => makeCharacter(
  21757. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  21758. {
  21759. front: {
  21760. height: math.unit(6, "feet"),
  21761. weight: math.unit(150, "lb"),
  21762. name: "Front",
  21763. image: {
  21764. source: "./media/characters/sheila-wolf/front.svg",
  21765. extra: 1931/1808,
  21766. bottom: 29.5/1960
  21767. }
  21768. },
  21769. dick: {
  21770. height: math.unit(1.464, "feet"),
  21771. name: "Dick",
  21772. image: {
  21773. source: "./media/characters/sheila-wolf/dick.svg"
  21774. }
  21775. },
  21776. muzzle: {
  21777. height: math.unit(0.513, "feet"),
  21778. name: "Muzzle",
  21779. image: {
  21780. source: "./media/characters/sheila-wolf/muzzle.svg"
  21781. }
  21782. },
  21783. },
  21784. [
  21785. {
  21786. name: "Macro",
  21787. height: math.unit(70, "feet"),
  21788. default: true
  21789. },
  21790. ]
  21791. ))
  21792. characterMakers.push(() => makeCharacter(
  21793. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  21794. {
  21795. front: {
  21796. height: math.unit(32, "meters"),
  21797. weight: math.unit(300000, "kg"),
  21798. name: "Front",
  21799. image: {
  21800. source: "./media/characters/almor/front.svg",
  21801. extra: 1408/1322,
  21802. bottom: 94.6/1506.5
  21803. }
  21804. },
  21805. },
  21806. [
  21807. {
  21808. name: "Macro",
  21809. height: math.unit(32, "meters"),
  21810. default: true
  21811. },
  21812. ]
  21813. ))
  21814. characterMakers.push(() => makeCharacter(
  21815. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  21816. {
  21817. front: {
  21818. height: math.unit(7, "feet"),
  21819. weight: math.unit(200, "lb"),
  21820. name: "Front",
  21821. image: {
  21822. source: "./media/characters/silver/front.svg",
  21823. extra: 472.1/450.5,
  21824. bottom: 26.5/499.424
  21825. }
  21826. },
  21827. },
  21828. [
  21829. {
  21830. name: "Normal",
  21831. height: math.unit(7, "feet"),
  21832. default: true
  21833. },
  21834. {
  21835. name: "Macro",
  21836. height: math.unit(800, "feet")
  21837. },
  21838. {
  21839. name: "Megamacro",
  21840. height: math.unit(250, "miles")
  21841. },
  21842. ]
  21843. ))
  21844. characterMakers.push(() => makeCharacter(
  21845. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  21846. {
  21847. front: {
  21848. height: math.unit(6, "feet"),
  21849. weight: math.unit(150, "lb"),
  21850. name: "Front",
  21851. image: {
  21852. source: "./media/characters/pliskin/front.svg",
  21853. extra: 1469/1359,
  21854. bottom: 70/1540
  21855. }
  21856. },
  21857. },
  21858. [
  21859. {
  21860. name: "Micro",
  21861. height: math.unit(3, "inches")
  21862. },
  21863. {
  21864. name: "Normal",
  21865. height: math.unit(5 + 11/12, "feet"),
  21866. default: true
  21867. },
  21868. {
  21869. name: "Macro",
  21870. height: math.unit(120, "feet")
  21871. },
  21872. ]
  21873. ))
  21874. characterMakers.push(() => makeCharacter(
  21875. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  21876. {
  21877. front: {
  21878. height: math.unit(6, "feet"),
  21879. weight: math.unit(150, "lb"),
  21880. name: "Front",
  21881. image: {
  21882. source: "./media/characters/sammy/front.svg",
  21883. extra: 1193/1089,
  21884. bottom: 30.5/1226
  21885. }
  21886. },
  21887. },
  21888. [
  21889. {
  21890. name: "Macro",
  21891. height: math.unit(1700, "feet"),
  21892. default: true
  21893. },
  21894. {
  21895. name: "Examacro",
  21896. height: math.unit(2.5e9, "lightyears")
  21897. },
  21898. ]
  21899. ))
  21900. characterMakers.push(() => makeCharacter(
  21901. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  21902. {
  21903. front: {
  21904. height: math.unit(21, "meters"),
  21905. weight: math.unit(12, "tonnes"),
  21906. name: "Front",
  21907. image: {
  21908. source: "./media/characters/kuru/front.svg",
  21909. extra: 4301/3785,
  21910. bottom: 371.3/4691
  21911. }
  21912. },
  21913. },
  21914. [
  21915. {
  21916. name: "Macro",
  21917. height: math.unit(21, "meters"),
  21918. default: true
  21919. },
  21920. ]
  21921. ))
  21922. characterMakers.push(() => makeCharacter(
  21923. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  21924. {
  21925. front: {
  21926. height: math.unit(23, "meters"),
  21927. weight: math.unit(12.2, "tonnes"),
  21928. name: "Front",
  21929. image: {
  21930. source: "./media/characters/rakka/front.svg",
  21931. extra: 4670/4169,
  21932. bottom: 301/4968.7
  21933. }
  21934. },
  21935. },
  21936. [
  21937. {
  21938. name: "Macro",
  21939. height: math.unit(23, "meters"),
  21940. default: true
  21941. },
  21942. ]
  21943. ))
  21944. characterMakers.push(() => makeCharacter(
  21945. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  21946. {
  21947. front: {
  21948. height: math.unit(6, "feet"),
  21949. weight: math.unit(150, "lb"),
  21950. name: "Front",
  21951. image: {
  21952. source: "./media/characters/rhys-feline/front.svg",
  21953. extra: 2488/2308,
  21954. bottom: 35.67/2519.19
  21955. }
  21956. },
  21957. },
  21958. [
  21959. {
  21960. name: "Really Small",
  21961. height: math.unit(1, "nm")
  21962. },
  21963. {
  21964. name: "Micro",
  21965. height: math.unit(4, "inches")
  21966. },
  21967. {
  21968. name: "Normal",
  21969. height: math.unit(4 + 10/12, "feet"),
  21970. default: true
  21971. },
  21972. {
  21973. name: "Macro",
  21974. height: math.unit(100, "feet")
  21975. },
  21976. {
  21977. name: "Megamacto",
  21978. height: math.unit(50, "miles")
  21979. },
  21980. ]
  21981. ))
  21982. characterMakers.push(() => makeCharacter(
  21983. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  21984. {
  21985. side: {
  21986. height: math.unit(30, "feet"),
  21987. weight: math.unit(35000, "kg"),
  21988. name: "Side",
  21989. image: {
  21990. source: "./media/characters/alydar/side.svg",
  21991. extra: 234/222,
  21992. bottom: 6.5/241
  21993. }
  21994. },
  21995. front: {
  21996. height: math.unit(30, "feet"),
  21997. weight: math.unit(35000, "kg"),
  21998. name: "Front",
  21999. image: {
  22000. source: "./media/characters/alydar/front.svg",
  22001. extra: 223.37/210.2,
  22002. bottom: 22.3/246.76
  22003. }
  22004. },
  22005. top: {
  22006. height: math.unit(64.54, "feet"),
  22007. weight: math.unit(35000, "kg"),
  22008. name: "Top",
  22009. image: {
  22010. source: "./media/characters/alydar/top.svg"
  22011. }
  22012. },
  22013. anthro: {
  22014. height: math.unit(30, "feet"),
  22015. weight: math.unit(9000, "kg"),
  22016. name: "Anthro",
  22017. image: {
  22018. source: "./media/characters/alydar/anthro.svg",
  22019. extra: 432/421,
  22020. bottom: 7.18/440
  22021. }
  22022. },
  22023. maw: {
  22024. height: math.unit(11.693, "feet"),
  22025. name: "Maw",
  22026. image: {
  22027. source: "./media/characters/alydar/maw.svg"
  22028. }
  22029. },
  22030. head: {
  22031. height: math.unit(11.693, "feet"),
  22032. name: "Head",
  22033. image: {
  22034. source: "./media/characters/alydar/head.svg"
  22035. }
  22036. },
  22037. headAlt: {
  22038. height: math.unit(12.861, "feet"),
  22039. name: "Head (Alt)",
  22040. image: {
  22041. source: "./media/characters/alydar/head-alt.svg"
  22042. }
  22043. },
  22044. wing: {
  22045. height: math.unit(20.712, "feet"),
  22046. name: "Wing",
  22047. image: {
  22048. source: "./media/characters/alydar/wing.svg"
  22049. }
  22050. },
  22051. wingFeather: {
  22052. height: math.unit(9.662, "feet"),
  22053. name: "Wing Feather",
  22054. image: {
  22055. source: "./media/characters/alydar/wing-feather.svg"
  22056. }
  22057. },
  22058. countourFeather: {
  22059. height: math.unit(4.154, "feet"),
  22060. name: "Contour Feather",
  22061. image: {
  22062. source: "./media/characters/alydar/contour-feather.svg"
  22063. }
  22064. },
  22065. },
  22066. [
  22067. {
  22068. name: "Diplomatic",
  22069. height: math.unit(13, "feet"),
  22070. default: true
  22071. },
  22072. {
  22073. name: "Small",
  22074. height: math.unit(30, "feet")
  22075. },
  22076. {
  22077. name: "Normal",
  22078. height: math.unit(95, "feet"),
  22079. default: true
  22080. },
  22081. {
  22082. name: "Large",
  22083. height: math.unit(285, "feet")
  22084. },
  22085. {
  22086. name: "Incomprehensible",
  22087. height: math.unit(450, "megameters")
  22088. },
  22089. ]
  22090. ))
  22091. characterMakers.push(() => makeCharacter(
  22092. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22093. {
  22094. side: {
  22095. height: math.unit(11, "feet"),
  22096. weight: math.unit(1750, "kg"),
  22097. name: "Side",
  22098. image: {
  22099. source: "./media/characters/selicia/side.svg",
  22100. extra: 440/396,
  22101. bottom: 24.8/465.979
  22102. }
  22103. },
  22104. maw: {
  22105. height: math.unit(4.665, "feet"),
  22106. name: "Maw",
  22107. image: {
  22108. source: "./media/characters/selicia/maw.svg"
  22109. }
  22110. },
  22111. },
  22112. [
  22113. {
  22114. name: "Normal",
  22115. height: math.unit(11, "feet"),
  22116. default: true
  22117. },
  22118. ]
  22119. ))
  22120. characterMakers.push(() => makeCharacter(
  22121. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22122. {
  22123. side: {
  22124. height: math.unit(2 + 6 /12, "feet"),
  22125. weight: math.unit(30, "lb"),
  22126. name: "Side",
  22127. image: {
  22128. source: "./media/characters/layla/side.svg",
  22129. extra: 244/188,
  22130. bottom: 18.2/262.1
  22131. }
  22132. },
  22133. back: {
  22134. height: math.unit(2 + 6 /12, "feet"),
  22135. weight: math.unit(30, "lb"),
  22136. name: "Back",
  22137. image: {
  22138. source: "./media/characters/layla/back.svg",
  22139. extra: 308/241.5,
  22140. bottom: 8.9/316.8
  22141. }
  22142. },
  22143. cumming: {
  22144. height: math.unit(2 + 6 /12, "feet"),
  22145. weight: math.unit(30, "lb"),
  22146. name: "Cumming",
  22147. image: {
  22148. source: "./media/characters/layla/cumming.svg",
  22149. extra: 342/279,
  22150. bottom: 595/938
  22151. }
  22152. },
  22153. dickFlaccid: {
  22154. height: math.unit(2.595, "feet"),
  22155. name: "Flaccid Genitals",
  22156. image: {
  22157. source: "./media/characters/layla/dick-flaccid.svg"
  22158. }
  22159. },
  22160. dickErect: {
  22161. height: math.unit(2.359, "feet"),
  22162. name: "Erect Genitals",
  22163. image: {
  22164. source: "./media/characters/layla/dick-erect.svg"
  22165. }
  22166. },
  22167. },
  22168. [
  22169. {
  22170. name: "Micro",
  22171. height: math.unit(1, "inch")
  22172. },
  22173. {
  22174. name: "Small",
  22175. height: math.unit(1, "foot")
  22176. },
  22177. {
  22178. name: "Normal",
  22179. height: math.unit(2 + 6/12, "feet"),
  22180. default: true
  22181. },
  22182. {
  22183. name: "Macro",
  22184. height: math.unit(200, "feet")
  22185. },
  22186. {
  22187. name: "Megamacro",
  22188. height: math.unit(1000, "miles")
  22189. },
  22190. {
  22191. name: "Planetary",
  22192. height: math.unit(8000, "miles")
  22193. },
  22194. {
  22195. name: "True Layla",
  22196. height: math.unit(200000*7, "multiverses")
  22197. },
  22198. ]
  22199. ))
  22200. characterMakers.push(() => makeCharacter(
  22201. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22202. {
  22203. back: {
  22204. height: math.unit(10.5, "feet"),
  22205. weight: math.unit(800, "lb"),
  22206. name: "Back",
  22207. image: {
  22208. source: "./media/characters/knox/back.svg",
  22209. extra: 1486/1089,
  22210. bottom: 107/1601.4
  22211. }
  22212. },
  22213. side: {
  22214. height: math.unit(10.5, "feet"),
  22215. weight: math.unit(800, "lb"),
  22216. name: "Side",
  22217. image: {
  22218. source: "./media/characters/knox/side.svg",
  22219. extra: 244/218,
  22220. bottom: 14/260
  22221. }
  22222. },
  22223. },
  22224. [
  22225. {
  22226. name: "Compact",
  22227. height: math.unit(10.5, "feet"),
  22228. default: true
  22229. },
  22230. {
  22231. name: "Dynamax",
  22232. height: math.unit(210, "feet")
  22233. },
  22234. {
  22235. name: "Full Macro",
  22236. height: math.unit(850, "feet")
  22237. },
  22238. ]
  22239. ))
  22240. characterMakers.push(() => makeCharacter(
  22241. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22242. {
  22243. front: {
  22244. height: math.unit(6, "feet"),
  22245. weight: math.unit(152, "lb"),
  22246. name: "Front",
  22247. image: {
  22248. source: "./media/characters/shin-pikachu/front.svg",
  22249. extra: 1574/1480,
  22250. bottom: 53.3/1626
  22251. }
  22252. },
  22253. hand: {
  22254. height: math.unit(1.055, "feet"),
  22255. name: "Hand",
  22256. image: {
  22257. source: "./media/characters/shin-pikachu/hand.svg"
  22258. }
  22259. },
  22260. foot: {
  22261. height: math.unit(1.1, "feet"),
  22262. name: "Foot",
  22263. image: {
  22264. source: "./media/characters/shin-pikachu/foot.svg"
  22265. }
  22266. },
  22267. collar: {
  22268. height: math.unit(0.386, "feet"),
  22269. name: "Collar",
  22270. image: {
  22271. source: "./media/characters/shin-pikachu/collar.svg"
  22272. }
  22273. },
  22274. },
  22275. [
  22276. {
  22277. name: "Smallest",
  22278. height: math.unit(0.5, "inches")
  22279. },
  22280. {
  22281. name: "Micro",
  22282. height: math.unit(6, "inches")
  22283. },
  22284. {
  22285. name: "Normal",
  22286. height: math.unit(6, "feet"),
  22287. default: true
  22288. },
  22289. {
  22290. name: "Macro",
  22291. height: math.unit(150, "feet")
  22292. },
  22293. ]
  22294. ))
  22295. characterMakers.push(() => makeCharacter(
  22296. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22297. {
  22298. front: {
  22299. height: math.unit(28, "feet"),
  22300. weight: math.unit(10500, "lb"),
  22301. name: "Front",
  22302. image: {
  22303. source: "./media/characters/kayda/front.svg",
  22304. extra: 1536/1428,
  22305. bottom: 68.7/1603
  22306. }
  22307. },
  22308. back: {
  22309. height: math.unit(28, "feet"),
  22310. weight: math.unit(10500, "lb"),
  22311. name: "Back",
  22312. image: {
  22313. source: "./media/characters/kayda/back.svg",
  22314. extra: 1557/1464,
  22315. bottom: 39.5/1597.49
  22316. }
  22317. },
  22318. dick: {
  22319. height: math.unit(3.858, "feet"),
  22320. name: "Dick",
  22321. image: {
  22322. source: "./media/characters/kayda/dick.svg"
  22323. }
  22324. },
  22325. },
  22326. [
  22327. {
  22328. name: "Macro",
  22329. height: math.unit(28, "feet"),
  22330. default: true
  22331. },
  22332. ]
  22333. ))
  22334. characterMakers.push(() => makeCharacter(
  22335. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22336. {
  22337. front: {
  22338. height: math.unit(10 + 11/12, "feet"),
  22339. weight: math.unit(1400, "lb"),
  22340. name: "Front",
  22341. image: {
  22342. source: "./media/characters/brian/front.svg",
  22343. extra: 737/692,
  22344. bottom: 55.4/785
  22345. }
  22346. },
  22347. },
  22348. [
  22349. {
  22350. name: "Normal",
  22351. height: math.unit(10 + 11/12, "feet"),
  22352. default: true
  22353. },
  22354. ]
  22355. ))
  22356. characterMakers.push(() => makeCharacter(
  22357. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22358. {
  22359. front: {
  22360. height: math.unit(5 + 8/12, "feet"),
  22361. weight: math.unit(140, "lb"),
  22362. name: "Front",
  22363. image: {
  22364. source: "./media/characters/khemri/front.svg",
  22365. extra: 4780/4059,
  22366. bottom: 80.1/4859.25
  22367. }
  22368. },
  22369. },
  22370. [
  22371. {
  22372. name: "Micro",
  22373. height: math.unit(6, "inches")
  22374. },
  22375. {
  22376. name: "Normal",
  22377. height: math.unit(5 + 8/12, "feet"),
  22378. default: true
  22379. },
  22380. ]
  22381. ))
  22382. characterMakers.push(() => makeCharacter(
  22383. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22384. {
  22385. front: {
  22386. height: math.unit(13, "feet"),
  22387. weight: math.unit(1700, "lb"),
  22388. name: "Front",
  22389. image: {
  22390. source: "./media/characters/felix-braveheart/front.svg",
  22391. extra: 1222/1157,
  22392. bottom: 53.2/1280
  22393. }
  22394. },
  22395. back: {
  22396. height: math.unit(13, "feet"),
  22397. weight: math.unit(1700, "lb"),
  22398. name: "Back",
  22399. image: {
  22400. source: "./media/characters/felix-braveheart/back.svg",
  22401. extra: 1277/1203,
  22402. bottom: 50.2/1327
  22403. }
  22404. },
  22405. feral: {
  22406. height: math.unit(6, "feet"),
  22407. weight: math.unit(400, "lb"),
  22408. name: "Feral",
  22409. image: {
  22410. source: "./media/characters/felix-braveheart/feral.svg",
  22411. extra: 682/625,
  22412. bottom: 6.9/688
  22413. }
  22414. },
  22415. },
  22416. [
  22417. {
  22418. name: "Normal",
  22419. height: math.unit(13, "feet"),
  22420. default: true
  22421. },
  22422. ]
  22423. ))
  22424. characterMakers.push(() => makeCharacter(
  22425. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22426. {
  22427. side: {
  22428. height: math.unit(5 + 11/12, "feet"),
  22429. weight: math.unit(1400, "lb"),
  22430. name: "Side",
  22431. image: {
  22432. source: "./media/characters/shadow-blade/side.svg",
  22433. extra: 1726/1267,
  22434. bottom: 58.4/1785
  22435. }
  22436. },
  22437. },
  22438. [
  22439. {
  22440. name: "Normal",
  22441. height: math.unit(5 + 11/12, "feet"),
  22442. default: true
  22443. },
  22444. ]
  22445. ))
  22446. characterMakers.push(() => makeCharacter(
  22447. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22448. {
  22449. front: {
  22450. height: math.unit(1 + 6/12, "feet"),
  22451. weight: math.unit(25, "lb"),
  22452. name: "Front",
  22453. image: {
  22454. source: "./media/characters/karla-halldor/front.svg",
  22455. extra: 1459/1383,
  22456. bottom: 12/1472
  22457. }
  22458. },
  22459. },
  22460. [
  22461. {
  22462. name: "Normal",
  22463. height: math.unit(1 + 6/12, "feet"),
  22464. default: true
  22465. },
  22466. ]
  22467. ))
  22468. characterMakers.push(() => makeCharacter(
  22469. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22470. {
  22471. front: {
  22472. height: math.unit(6 + 2/12, "feet"),
  22473. weight: math.unit(160, "lb"),
  22474. name: "Front",
  22475. image: {
  22476. source: "./media/characters/ariam/front.svg",
  22477. extra: 714/617,
  22478. bottom: 23.4/737,
  22479. }
  22480. },
  22481. squatting: {
  22482. height: math.unit(4.1, "feet"),
  22483. weight: math.unit(160, "lb"),
  22484. name: "Squatting",
  22485. image: {
  22486. source: "./media/characters/ariam/squatting.svg",
  22487. extra: 2617/2112,
  22488. bottom: 61.2/2681,
  22489. }
  22490. },
  22491. },
  22492. [
  22493. {
  22494. name: "Normal",
  22495. height: math.unit(6 + 2/12, "feet"),
  22496. default: true
  22497. },
  22498. {
  22499. name: "Normal+",
  22500. height: math.unit(4, "meters")
  22501. },
  22502. {
  22503. name: "Macro",
  22504. height: math.unit(50, "meters")
  22505. },
  22506. {
  22507. name: "Macro+",
  22508. height: math.unit(100, "meters")
  22509. },
  22510. {
  22511. name: "Megamacro",
  22512. height: math.unit(20, "km")
  22513. },
  22514. ]
  22515. ))
  22516. characterMakers.push(() => makeCharacter(
  22517. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22518. {
  22519. front: {
  22520. height: math.unit(1.67, "meters"),
  22521. weight: math.unit(140, "lb"),
  22522. name: "Front",
  22523. image: {
  22524. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22525. extra: 438/410,
  22526. bottom: 0.75/439
  22527. }
  22528. },
  22529. },
  22530. [
  22531. {
  22532. name: "Shrunken",
  22533. height: math.unit(7.6, "cm")
  22534. },
  22535. {
  22536. name: "Human Scale",
  22537. height: math.unit(1.67, "meters")
  22538. },
  22539. {
  22540. name: "Wolxi Scale",
  22541. height: math.unit(36.7, "meters"),
  22542. default: true
  22543. },
  22544. ]
  22545. ))
  22546. characterMakers.push(() => makeCharacter(
  22547. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22548. {
  22549. front: {
  22550. height: math.unit(1.73, "meters"),
  22551. weight: math.unit(240, "lb"),
  22552. name: "Front",
  22553. image: {
  22554. source: "./media/characters/izue-two-mothers/front.svg",
  22555. extra: 469/437,
  22556. bottom: 1.24/470.6
  22557. }
  22558. },
  22559. },
  22560. [
  22561. {
  22562. name: "Shrunken",
  22563. height: math.unit(7.86, "cm")
  22564. },
  22565. {
  22566. name: "Human Scale",
  22567. height: math.unit(1.73, "meters")
  22568. },
  22569. {
  22570. name: "Wolxi Scale",
  22571. height: math.unit(38, "meters"),
  22572. default: true
  22573. },
  22574. ]
  22575. ))
  22576. characterMakers.push(() => makeCharacter(
  22577. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22578. {
  22579. front: {
  22580. height: math.unit(1.55, "meters"),
  22581. weight: math.unit(120, "lb"),
  22582. name: "Front",
  22583. image: {
  22584. source: "./media/characters/teeku-love-shack/front.svg",
  22585. extra: 387/362,
  22586. bottom: 1.51/388
  22587. }
  22588. },
  22589. },
  22590. [
  22591. {
  22592. name: "Shrunken",
  22593. height: math.unit(7, "cm")
  22594. },
  22595. {
  22596. name: "Human Scale",
  22597. height: math.unit(1.55, "meters")
  22598. },
  22599. {
  22600. name: "Wolxi Scale",
  22601. height: math.unit(34.1, "meters"),
  22602. default: true
  22603. },
  22604. ]
  22605. ))
  22606. characterMakers.push(() => makeCharacter(
  22607. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22608. {
  22609. front: {
  22610. height: math.unit(1.83, "meters"),
  22611. weight: math.unit(135, "lb"),
  22612. name: "Front",
  22613. image: {
  22614. source: "./media/characters/dejma-the-red/front.svg",
  22615. extra: 480/458,
  22616. bottom: 1.8/482
  22617. }
  22618. },
  22619. },
  22620. [
  22621. {
  22622. name: "Shrunken",
  22623. height: math.unit(8.3, "cm")
  22624. },
  22625. {
  22626. name: "Human Scale",
  22627. height: math.unit(1.83, "meters")
  22628. },
  22629. {
  22630. name: "Wolxi Scale",
  22631. height: math.unit(40, "meters"),
  22632. default: true
  22633. },
  22634. ]
  22635. ))
  22636. characterMakers.push(() => makeCharacter(
  22637. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  22638. {
  22639. front: {
  22640. height: math.unit(1.78, "meters"),
  22641. weight: math.unit(65, "kg"),
  22642. name: "Front",
  22643. image: {
  22644. source: "./media/characters/aki/front.svg",
  22645. extra: 452/415
  22646. }
  22647. },
  22648. frontNsfw: {
  22649. height: math.unit(1.78, "meters"),
  22650. weight: math.unit(65, "kg"),
  22651. name: "Front (NSFW)",
  22652. image: {
  22653. source: "./media/characters/aki/front-nsfw.svg",
  22654. extra: 452/415
  22655. }
  22656. },
  22657. back: {
  22658. height: math.unit(1.78, "meters"),
  22659. weight: math.unit(65, "kg"),
  22660. name: "Back",
  22661. image: {
  22662. source: "./media/characters/aki/back.svg",
  22663. extra: 452/415
  22664. }
  22665. },
  22666. rump: {
  22667. height: math.unit(2.05, "feet"),
  22668. name: "Rump",
  22669. image: {
  22670. source: "./media/characters/aki/rump.svg"
  22671. }
  22672. },
  22673. dick: {
  22674. height: math.unit(0.95, "feet"),
  22675. name: "Dick",
  22676. image: {
  22677. source: "./media/characters/aki/dick.svg"
  22678. }
  22679. },
  22680. },
  22681. [
  22682. {
  22683. name: "Micro",
  22684. height: math.unit(15, "cm")
  22685. },
  22686. {
  22687. name: "Normal",
  22688. height: math.unit(178, "cm"),
  22689. default: true
  22690. },
  22691. {
  22692. name: "Macro",
  22693. height: math.unit(214, "m")
  22694. },
  22695. {
  22696. name: "Macro+",
  22697. height: math.unit(534, "m")
  22698. },
  22699. ]
  22700. ))
  22701. characterMakers.push(() => makeCharacter(
  22702. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  22703. {
  22704. front: {
  22705. height: math.unit(5 + 5/12, "feet"),
  22706. weight: math.unit(120, "lb"),
  22707. name: "Front",
  22708. image: {
  22709. source: "./media/characters/ari/front.svg",
  22710. extra: 714.5/682,
  22711. bottom: 8/722.5
  22712. }
  22713. },
  22714. },
  22715. [
  22716. {
  22717. name: "Normal",
  22718. height: math.unit(5 + 5/12, "feet")
  22719. },
  22720. {
  22721. name: "Macro",
  22722. height: math.unit(100, "feet"),
  22723. default: true
  22724. },
  22725. {
  22726. name: "Megamacro",
  22727. height: math.unit(100, "miles")
  22728. },
  22729. {
  22730. name: "Gigamacro",
  22731. height: math.unit(80000, "miles")
  22732. },
  22733. ]
  22734. ))
  22735. characterMakers.push(() => makeCharacter(
  22736. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  22737. {
  22738. side: {
  22739. height: math.unit(9, "feet"),
  22740. weight: math.unit(400, "kg"),
  22741. name: "Side",
  22742. image: {
  22743. source: "./media/characters/bolt/side.svg",
  22744. extra: 1126/896,
  22745. bottom: 60/1187.3,
  22746. }
  22747. },
  22748. },
  22749. [
  22750. {
  22751. name: "Micro",
  22752. height: math.unit(5, "inches")
  22753. },
  22754. {
  22755. name: "Normal",
  22756. height: math.unit(9, "feet"),
  22757. default: true
  22758. },
  22759. {
  22760. name: "Macro",
  22761. height: math.unit(700, "feet")
  22762. },
  22763. {
  22764. name: "Max Size",
  22765. height: math.unit(1.52e22, "yottameters")
  22766. },
  22767. ]
  22768. ))
  22769. characterMakers.push(() => makeCharacter(
  22770. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  22771. {
  22772. front: {
  22773. height: math.unit(4.53, "meters"),
  22774. weight: math.unit(3, "tons"),
  22775. name: "Front",
  22776. image: {
  22777. source: "./media/characters/draekon-sylviar/front.svg",
  22778. extra: 1228/1068,
  22779. bottom: 41/1270
  22780. }
  22781. },
  22782. tail: {
  22783. height: math.unit(1.772, "meter"),
  22784. name: "Tail",
  22785. image: {
  22786. source: "./media/characters/draekon-sylviar/tail.svg"
  22787. }
  22788. },
  22789. head: {
  22790. height: math.unit(1.331, "meter"),
  22791. name: "Head",
  22792. image: {
  22793. source: "./media/characters/draekon-sylviar/head.svg"
  22794. }
  22795. },
  22796. hand: {
  22797. height: math.unit(0.564, "meter"),
  22798. name: "Hand",
  22799. image: {
  22800. source: "./media/characters/draekon-sylviar/hand.svg"
  22801. }
  22802. },
  22803. foot: {
  22804. height: math.unit(0.621, "meter"),
  22805. name: "Foot",
  22806. image: {
  22807. source: "./media/characters/draekon-sylviar/foot.svg",
  22808. bottom: 32/324
  22809. }
  22810. },
  22811. dick: {
  22812. height: math.unit(61, "cm"),
  22813. name: "Dick",
  22814. image: {
  22815. source: "./media/characters/draekon-sylviar/dick.svg"
  22816. }
  22817. },
  22818. dickseparated: {
  22819. height: math.unit(61, "cm"),
  22820. name: "Dick-separated",
  22821. image: {
  22822. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  22823. }
  22824. },
  22825. },
  22826. [
  22827. {
  22828. name: "Small",
  22829. height: math.unit(4.53/2, "meters"),
  22830. default: true
  22831. },
  22832. {
  22833. name: "Normal",
  22834. height: math.unit(4.53, "meters"),
  22835. default: true
  22836. },
  22837. {
  22838. name: "Large",
  22839. height: math.unit(4.53*2, "meters"),
  22840. },
  22841. ]
  22842. ))
  22843. characterMakers.push(() => makeCharacter(
  22844. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  22845. {
  22846. front: {
  22847. height: math.unit(6 + 2/12, "feet"),
  22848. weight: math.unit(180, "lb"),
  22849. name: "Front",
  22850. image: {
  22851. source: "./media/characters/brawler/front.svg",
  22852. extra: 3301/3027,
  22853. bottom: 138/3439
  22854. }
  22855. },
  22856. },
  22857. [
  22858. {
  22859. name: "Normal",
  22860. height: math.unit(6 + 2/12, "feet"),
  22861. default: true
  22862. },
  22863. ]
  22864. ))
  22865. characterMakers.push(() => makeCharacter(
  22866. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  22867. {
  22868. front: {
  22869. height: math.unit(11, "feet"),
  22870. weight: math.unit(1000, "lb"),
  22871. name: "Front",
  22872. image: {
  22873. source: "./media/characters/alex/front.svg",
  22874. bottom: 44.5/620
  22875. }
  22876. },
  22877. },
  22878. [
  22879. {
  22880. name: "Micro",
  22881. height: math.unit(5, "inches")
  22882. },
  22883. {
  22884. name: "Normal",
  22885. height: math.unit(11, "feet"),
  22886. default: true
  22887. },
  22888. {
  22889. name: "Macro",
  22890. height: math.unit(9.5e9, "feet")
  22891. },
  22892. {
  22893. name: "Max Size",
  22894. height: math.unit(1.4e283, "yottameters")
  22895. },
  22896. ]
  22897. ))
  22898. characterMakers.push(() => makeCharacter(
  22899. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  22900. {
  22901. female: {
  22902. height: math.unit(29.9, "m"),
  22903. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  22904. name: "Female",
  22905. image: {
  22906. source: "./media/characters/zenari/female.svg",
  22907. extra: 3281.6/3217,
  22908. bottom: 72.2/3353
  22909. }
  22910. },
  22911. male: {
  22912. height: math.unit(27.7, "m"),
  22913. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  22914. name: "Male",
  22915. image: {
  22916. source: "./media/characters/zenari/male.svg",
  22917. extra: 3008/2991,
  22918. bottom: 54.6/3069
  22919. }
  22920. },
  22921. },
  22922. [
  22923. {
  22924. name: "Macro",
  22925. height: math.unit(29.7, "meters"),
  22926. default: true
  22927. },
  22928. ]
  22929. ))
  22930. characterMakers.push(() => makeCharacter(
  22931. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  22932. {
  22933. female: {
  22934. height: math.unit(23.8, "m"),
  22935. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22936. name: "Female",
  22937. image: {
  22938. source: "./media/characters/mactarian/female.svg",
  22939. extra: 2662/2569,
  22940. bottom: 73/2736
  22941. }
  22942. },
  22943. male: {
  22944. height: math.unit(23.8, "m"),
  22945. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22946. name: "Male",
  22947. image: {
  22948. source: "./media/characters/mactarian/male.svg",
  22949. extra: 2673/2600,
  22950. bottom: 76/2750
  22951. }
  22952. },
  22953. },
  22954. [
  22955. {
  22956. name: "Macro",
  22957. height: math.unit(23.8, "meters"),
  22958. default: true
  22959. },
  22960. ]
  22961. ))
  22962. characterMakers.push(() => makeCharacter(
  22963. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  22964. {
  22965. female: {
  22966. height: math.unit(19.3, "m"),
  22967. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  22968. name: "Female",
  22969. image: {
  22970. source: "./media/characters/umok/female.svg",
  22971. extra: 2186/2078,
  22972. bottom: 87/2277
  22973. }
  22974. },
  22975. male: {
  22976. height: math.unit(19.5, "m"),
  22977. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  22978. name: "Male",
  22979. image: {
  22980. source: "./media/characters/umok/male.svg",
  22981. extra: 2233/2140,
  22982. bottom: 24.4/2258
  22983. }
  22984. },
  22985. },
  22986. [
  22987. {
  22988. name: "Macro",
  22989. height: math.unit(19.3, "meters"),
  22990. default: true
  22991. },
  22992. ]
  22993. ))
  22994. characterMakers.push(() => makeCharacter(
  22995. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  22996. {
  22997. female: {
  22998. height: math.unit(26.15, "m"),
  22999. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  23000. name: "Female",
  23001. image: {
  23002. source: "./media/characters/joraxian/female.svg",
  23003. extra: 2943/2831,
  23004. bottom: 27/2972
  23005. }
  23006. },
  23007. male: {
  23008. height: math.unit(25.4, "m"),
  23009. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  23010. name: "Male",
  23011. image: {
  23012. source: "./media/characters/joraxian/male.svg",
  23013. extra: 2835/2741,
  23014. bottom: 27/2862
  23015. }
  23016. },
  23017. },
  23018. [
  23019. {
  23020. name: "Macro",
  23021. height: math.unit(26.15, "meters"),
  23022. default: true
  23023. },
  23024. ]
  23025. ))
  23026. characterMakers.push(() => makeCharacter(
  23027. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23028. {
  23029. female: {
  23030. height: math.unit(21.6, "m"),
  23031. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  23032. name: "Female",
  23033. image: {
  23034. source: "./media/characters/sthara/female.svg",
  23035. extra: 2516/2347,
  23036. bottom: 21.5/2537
  23037. }
  23038. },
  23039. male: {
  23040. height: math.unit(24, "m"),
  23041. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  23042. name: "Male",
  23043. image: {
  23044. source: "./media/characters/sthara/male.svg",
  23045. extra: 2732/2607,
  23046. bottom: 23/2732
  23047. }
  23048. },
  23049. },
  23050. [
  23051. {
  23052. name: "Macro",
  23053. height: math.unit(21.6, "meters"),
  23054. default: true
  23055. },
  23056. ]
  23057. ))
  23058. characterMakers.push(() => makeCharacter(
  23059. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23060. {
  23061. front: {
  23062. height: math.unit(6 + 4/12, "feet"),
  23063. weight: math.unit(175, "lb"),
  23064. name: "Front",
  23065. image: {
  23066. source: "./media/characters/luka-bryzant/front.svg",
  23067. extra: 311/289,
  23068. bottom: 4/315
  23069. }
  23070. },
  23071. back: {
  23072. height: math.unit(6 + 4/12, "feet"),
  23073. weight: math.unit(175, "lb"),
  23074. name: "Back",
  23075. image: {
  23076. source: "./media/characters/luka-bryzant/back.svg",
  23077. extra: 311/289,
  23078. bottom: 3.8/313.7
  23079. }
  23080. },
  23081. },
  23082. [
  23083. {
  23084. name: "Micro",
  23085. height: math.unit(10, "inches")
  23086. },
  23087. {
  23088. name: "Normal",
  23089. height: math.unit(6 + 4/12, "feet"),
  23090. default: true
  23091. },
  23092. {
  23093. name: "Large",
  23094. height: math.unit(12, "feet")
  23095. },
  23096. ]
  23097. ))
  23098. characterMakers.push(() => makeCharacter(
  23099. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23100. {
  23101. front: {
  23102. height: math.unit(5 + 7/12, "feet"),
  23103. weight: math.unit(185, "lb"),
  23104. name: "Front",
  23105. image: {
  23106. source: "./media/characters/aman-aquila/front.svg",
  23107. extra: 1013/976,
  23108. bottom: 45.6/1057
  23109. }
  23110. },
  23111. side: {
  23112. height: math.unit(5 + 7/12, "feet"),
  23113. weight: math.unit(185, "lb"),
  23114. name: "Side",
  23115. image: {
  23116. source: "./media/characters/aman-aquila/side.svg",
  23117. extra: 1054/1011,
  23118. bottom: 15/1070
  23119. }
  23120. },
  23121. back: {
  23122. height: math.unit(5 + 7/12, "feet"),
  23123. weight: math.unit(185, "lb"),
  23124. name: "Back",
  23125. image: {
  23126. source: "./media/characters/aman-aquila/back.svg",
  23127. extra: 1026/970,
  23128. bottom: 12/1039
  23129. }
  23130. },
  23131. head: {
  23132. height: math.unit(1.211, "feet"),
  23133. name: "Head",
  23134. image: {
  23135. source: "./media/characters/aman-aquila/head.svg",
  23136. }
  23137. },
  23138. },
  23139. [
  23140. {
  23141. name: "Minimicro",
  23142. height: math.unit(0.057, "inches")
  23143. },
  23144. {
  23145. name: "Micro",
  23146. height: math.unit(7, "inches")
  23147. },
  23148. {
  23149. name: "Mini",
  23150. height: math.unit(3 + 7/12, "feet")
  23151. },
  23152. {
  23153. name: "Normal",
  23154. height: math.unit(5 + 7/12, "feet"),
  23155. default: true
  23156. },
  23157. {
  23158. name: "Macro",
  23159. height: math.unit(157 + 7/12, "feet")
  23160. },
  23161. {
  23162. name: "Megamacro",
  23163. height: math.unit(1557 + 7/12, "feet")
  23164. },
  23165. {
  23166. name: "Gigamacro",
  23167. height: math.unit(15557 + 7/12, "feet")
  23168. },
  23169. ]
  23170. ))
  23171. characterMakers.push(() => makeCharacter(
  23172. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23173. {
  23174. front: {
  23175. height: math.unit(3 + 2/12, "inches"),
  23176. weight: math.unit(0.3, "ounces"),
  23177. name: "Front",
  23178. image: {
  23179. source: "./media/characters/hiphae/front.svg",
  23180. extra: 1931/1683,
  23181. bottom: 24/1955
  23182. }
  23183. },
  23184. },
  23185. [
  23186. {
  23187. name: "Normal",
  23188. height: math.unit(3 + 1/2, "inches"),
  23189. default: true
  23190. },
  23191. ]
  23192. ))
  23193. characterMakers.push(() => makeCharacter(
  23194. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23195. {
  23196. front: {
  23197. height: math.unit(5 + 10/12, "feet"),
  23198. weight: math.unit(165, "lb"),
  23199. name: "Front",
  23200. image: {
  23201. source: "./media/characters/nicky/front.svg",
  23202. extra: 3144/2886,
  23203. bottom: 45.6/3192
  23204. }
  23205. },
  23206. back: {
  23207. height: math.unit(5 + 10/12, "feet"),
  23208. weight: math.unit(165, "lb"),
  23209. name: "Back",
  23210. image: {
  23211. source: "./media/characters/nicky/back.svg",
  23212. extra: 3055/2804,
  23213. bottom: 28.4/3087
  23214. }
  23215. },
  23216. frontclothed: {
  23217. height: math.unit(5 + 10/12, "feet"),
  23218. weight: math.unit(165, "lb"),
  23219. name: "Front-clothed",
  23220. image: {
  23221. source: "./media/characters/nicky/front-clothed.svg",
  23222. extra: 3184.9/2926.9,
  23223. bottom: 86.5/3239.9
  23224. }
  23225. },
  23226. foot: {
  23227. height: math.unit(1.16, "feet"),
  23228. name: "Foot",
  23229. image: {
  23230. source: "./media/characters/nicky/foot.svg"
  23231. }
  23232. },
  23233. feet: {
  23234. height: math.unit(1.34, "feet"),
  23235. name: "Feet",
  23236. image: {
  23237. source: "./media/characters/nicky/feet.svg"
  23238. }
  23239. },
  23240. maw: {
  23241. height: math.unit(0.9, "feet"),
  23242. name: "Maw",
  23243. image: {
  23244. source: "./media/characters/nicky/maw.svg"
  23245. }
  23246. },
  23247. },
  23248. [
  23249. {
  23250. name: "Normal",
  23251. height: math.unit(5 + 10/12, "feet"),
  23252. default: true
  23253. },
  23254. {
  23255. name: "Macro",
  23256. height: math.unit(60, "feet")
  23257. },
  23258. {
  23259. name: "Megamacro",
  23260. height: math.unit(1, "mile")
  23261. },
  23262. ]
  23263. ))
  23264. characterMakers.push(() => makeCharacter(
  23265. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23266. {
  23267. side: {
  23268. height: math.unit(10, "feet"),
  23269. weight: math.unit(600, "lb"),
  23270. name: "Side",
  23271. image: {
  23272. source: "./media/characters/blair/side.svg",
  23273. bottom: 16.6/475,
  23274. extra: 458/431
  23275. }
  23276. },
  23277. },
  23278. [
  23279. {
  23280. name: "Micro",
  23281. height: math.unit(8, "inches")
  23282. },
  23283. {
  23284. name: "Normal",
  23285. height: math.unit(10, "feet"),
  23286. default: true
  23287. },
  23288. {
  23289. name: "Macro",
  23290. height: math.unit(180, "feet")
  23291. },
  23292. ]
  23293. ))
  23294. characterMakers.push(() => makeCharacter(
  23295. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23296. {
  23297. front: {
  23298. height: math.unit(5 + 4/12, "feet"),
  23299. weight: math.unit(125, "lb"),
  23300. name: "Front",
  23301. image: {
  23302. source: "./media/characters/fisher/front.svg",
  23303. extra: 444/390,
  23304. bottom: 2/444.8
  23305. }
  23306. },
  23307. },
  23308. [
  23309. {
  23310. name: "Micro",
  23311. height: math.unit(4, "inches")
  23312. },
  23313. {
  23314. name: "Normal",
  23315. height: math.unit(5 + 4/12, "feet"),
  23316. default: true
  23317. },
  23318. {
  23319. name: "Macro",
  23320. height: math.unit(100, "feet")
  23321. },
  23322. ]
  23323. ))
  23324. characterMakers.push(() => makeCharacter(
  23325. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23326. {
  23327. front: {
  23328. height: math.unit(6.71, "feet"),
  23329. weight: math.unit(200, "lb"),
  23330. capacity: math.unit(1000000, "people"),
  23331. name: "Front",
  23332. image: {
  23333. source: "./media/characters/gliss/front.svg",
  23334. extra: 2347/2231,
  23335. bottom: 113/2462
  23336. }
  23337. },
  23338. hammerspaceSize: {
  23339. height: math.unit(6.71*717, "feet"),
  23340. weight: math.unit(200, "lb"),
  23341. capacity: math.unit(1000000, "people"),
  23342. name: "Hammerspace Size",
  23343. image: {
  23344. source: "./media/characters/gliss/front.svg",
  23345. extra: 2347/2231,
  23346. bottom: 113/2462
  23347. }
  23348. },
  23349. },
  23350. [
  23351. {
  23352. name: "Normal",
  23353. height: math.unit(6.71, "feet"),
  23354. default: true
  23355. },
  23356. ]
  23357. ))
  23358. characterMakers.push(() => makeCharacter(
  23359. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23360. {
  23361. side: {
  23362. height: math.unit(1.44, "m"),
  23363. weight: math.unit(80, "kg"),
  23364. name: "Side",
  23365. image: {
  23366. source: "./media/characters/dune-anderson/side.svg",
  23367. bottom: 49/1426
  23368. }
  23369. },
  23370. },
  23371. [
  23372. {
  23373. name: "Wolf-sized",
  23374. height: math.unit(1.44, "meters")
  23375. },
  23376. {
  23377. name: "Normal",
  23378. height: math.unit(5.05, "meters"),
  23379. default: true
  23380. },
  23381. {
  23382. name: "Big",
  23383. height: math.unit(14.4, "meters")
  23384. },
  23385. {
  23386. name: "Huge",
  23387. height: math.unit(144, "meters")
  23388. },
  23389. ]
  23390. ))
  23391. characterMakers.push(() => makeCharacter(
  23392. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23393. {
  23394. front: {
  23395. height: math.unit(7, "feet"),
  23396. weight: math.unit(425, "lb"),
  23397. name: "Front",
  23398. image: {
  23399. source: "./media/characters/hind/front.svg",
  23400. extra: 2091/1860,
  23401. bottom: 129/2220
  23402. }
  23403. },
  23404. back: {
  23405. height: math.unit(7, "feet"),
  23406. weight: math.unit(425, "lb"),
  23407. name: "Back",
  23408. image: {
  23409. source: "./media/characters/hind/back.svg",
  23410. extra: 2091/1860,
  23411. bottom: 24.6/2309
  23412. }
  23413. },
  23414. tail: {
  23415. height: math.unit(2.8, "feet"),
  23416. name: "Tail",
  23417. image: {
  23418. source: "./media/characters/hind/tail.svg"
  23419. }
  23420. },
  23421. head: {
  23422. height: math.unit(2.55, "feet"),
  23423. name: "Head",
  23424. image: {
  23425. source: "./media/characters/hind/head.svg"
  23426. }
  23427. },
  23428. },
  23429. [
  23430. {
  23431. name: "XS",
  23432. height: math.unit(0.7, "feet")
  23433. },
  23434. {
  23435. name: "Normal",
  23436. height: math.unit(7, "feet"),
  23437. default: true
  23438. },
  23439. {
  23440. name: "XL",
  23441. height: math.unit(70, "feet")
  23442. },
  23443. ]
  23444. ))
  23445. characterMakers.push(() => makeCharacter(
  23446. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23447. {
  23448. front: {
  23449. height: math.unit(6, "feet"),
  23450. weight: math.unit(150, "lb"),
  23451. name: "Front",
  23452. image: {
  23453. source: "./media/characters/dylan-skaven/front.svg",
  23454. extra: 2318/2063,
  23455. bottom: 93.4/2410
  23456. }
  23457. },
  23458. },
  23459. [
  23460. {
  23461. name: "Nano",
  23462. height: math.unit(1, "mm")
  23463. },
  23464. {
  23465. name: "Micro",
  23466. height: math.unit(1, "cm")
  23467. },
  23468. {
  23469. name: "Normal",
  23470. height: math.unit(2.1, "meters"),
  23471. default: true
  23472. },
  23473. ]
  23474. ))
  23475. characterMakers.push(() => makeCharacter(
  23476. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23477. {
  23478. front: {
  23479. height: math.unit(7 + 5/12, "feet"),
  23480. weight: math.unit(357, "lb"),
  23481. name: "Front",
  23482. image: {
  23483. source: "./media/characters/solex-draconov/front.svg",
  23484. extra: 1993/1865,
  23485. bottom: 117/2111
  23486. }
  23487. },
  23488. },
  23489. [
  23490. {
  23491. name: "Natural Height",
  23492. height: math.unit(7 + 5/12, "feet"),
  23493. default: true
  23494. },
  23495. {
  23496. name: "Macro",
  23497. height: math.unit(350, "feet")
  23498. },
  23499. {
  23500. name: "Macro+",
  23501. height: math.unit(1000, "feet")
  23502. },
  23503. {
  23504. name: "Megamacro",
  23505. height: math.unit(20, "km")
  23506. },
  23507. {
  23508. name: "Megamacro+",
  23509. height: math.unit(1000, "km")
  23510. },
  23511. {
  23512. name: "Gigamacro",
  23513. height: math.unit(2.5, "Gm")
  23514. },
  23515. {
  23516. name: "Teramacro",
  23517. height: math.unit(15, "Tm")
  23518. },
  23519. {
  23520. name: "Galactic",
  23521. height: math.unit(30, "Zm")
  23522. },
  23523. {
  23524. name: "Universal",
  23525. height: math.unit(21000, "Ym")
  23526. },
  23527. {
  23528. name: "Omniversal",
  23529. height: math.unit(9.861e50, "Ym")
  23530. },
  23531. {
  23532. name: "Existential",
  23533. height: math.unit(1e300, "meters")
  23534. },
  23535. ]
  23536. ))
  23537. characterMakers.push(() => makeCharacter(
  23538. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23539. {
  23540. side: {
  23541. height: math.unit(25, "feet"),
  23542. weight: math.unit(90000, "lb"),
  23543. name: "Side",
  23544. image: {
  23545. source: "./media/characters/mandarax/side.svg",
  23546. extra: 614/332,
  23547. bottom: 55/630
  23548. }
  23549. },
  23550. head: {
  23551. height: math.unit(11.4, "feet"),
  23552. name: "Head",
  23553. image: {
  23554. source: "./media/characters/mandarax/head.svg"
  23555. }
  23556. },
  23557. belly: {
  23558. height: math.unit(33, "feet"),
  23559. name: "Belly",
  23560. capacity: math.unit(500, "people"),
  23561. image: {
  23562. source: "./media/characters/mandarax/belly.svg"
  23563. }
  23564. },
  23565. dick: {
  23566. height: math.unit(8.46, "feet"),
  23567. name: "Dick",
  23568. image: {
  23569. source: "./media/characters/mandarax/dick.svg"
  23570. }
  23571. },
  23572. top: {
  23573. height: math.unit(28, "meters"),
  23574. name: "Top",
  23575. image: {
  23576. source: "./media/characters/mandarax/top.svg"
  23577. }
  23578. },
  23579. },
  23580. [
  23581. {
  23582. name: "Normal",
  23583. height: math.unit(25, "feet"),
  23584. default: true
  23585. },
  23586. ]
  23587. ))
  23588. characterMakers.push(() => makeCharacter(
  23589. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23590. {
  23591. front: {
  23592. height: math.unit(5, "feet"),
  23593. weight: math.unit(90, "lb"),
  23594. name: "Front",
  23595. image: {
  23596. source: "./media/characters/pixil/front.svg",
  23597. extra: 2000/1618,
  23598. bottom: 12.3/2011
  23599. }
  23600. },
  23601. },
  23602. [
  23603. {
  23604. name: "Normal",
  23605. height: math.unit(5, "feet"),
  23606. default: true
  23607. },
  23608. {
  23609. name: "Megamacro",
  23610. height: math.unit(10, "miles"),
  23611. },
  23612. ]
  23613. ))
  23614. characterMakers.push(() => makeCharacter(
  23615. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23616. {
  23617. front: {
  23618. height: math.unit(7 + 2/12, "feet"),
  23619. weight: math.unit(200, "lb"),
  23620. name: "Front",
  23621. image: {
  23622. source: "./media/characters/angel/front.svg",
  23623. extra: 1830/1737,
  23624. bottom: 22.6/1854,
  23625. }
  23626. },
  23627. },
  23628. [
  23629. {
  23630. name: "Normal",
  23631. height: math.unit(7 + 2/12, "feet"),
  23632. default: true
  23633. },
  23634. {
  23635. name: "Macro",
  23636. height: math.unit(1000, "feet")
  23637. },
  23638. {
  23639. name: "Megamacro",
  23640. height: math.unit(2, "miles")
  23641. },
  23642. {
  23643. name: "Gigamacro",
  23644. height: math.unit(20, "earths")
  23645. },
  23646. ]
  23647. ))
  23648. characterMakers.push(() => makeCharacter(
  23649. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  23650. {
  23651. front: {
  23652. height: math.unit(5, "feet"),
  23653. weight: math.unit(180, "lb"),
  23654. name: "Front",
  23655. image: {
  23656. source: "./media/characters/mekana/front.svg",
  23657. extra: 1671/1605,
  23658. bottom: 3.5/1691
  23659. }
  23660. },
  23661. side: {
  23662. height: math.unit(5, "feet"),
  23663. weight: math.unit(180, "lb"),
  23664. name: "Side",
  23665. image: {
  23666. source: "./media/characters/mekana/side.svg",
  23667. extra: 1671/1605,
  23668. bottom: 3.5/1691
  23669. }
  23670. },
  23671. back: {
  23672. height: math.unit(5, "feet"),
  23673. weight: math.unit(180, "lb"),
  23674. name: "Back",
  23675. image: {
  23676. source: "./media/characters/mekana/back.svg",
  23677. extra: 1671/1605,
  23678. bottom: 3.5/1691
  23679. }
  23680. },
  23681. },
  23682. [
  23683. {
  23684. name: "Normal",
  23685. height: math.unit(5, "feet"),
  23686. default: true
  23687. },
  23688. ]
  23689. ))
  23690. characterMakers.push(() => makeCharacter(
  23691. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  23692. {
  23693. front: {
  23694. height: math.unit(4 + 6/12, "feet"),
  23695. weight: math.unit(80, "lb"),
  23696. name: "Front",
  23697. image: {
  23698. source: "./media/characters/pixie/front.svg",
  23699. extra: 1924/1825,
  23700. bottom: 22.4/1946
  23701. }
  23702. },
  23703. },
  23704. [
  23705. {
  23706. name: "Normal",
  23707. height: math.unit(4 + 6/12, "feet"),
  23708. default: true
  23709. },
  23710. {
  23711. name: "Macro",
  23712. height: math.unit(40, "feet")
  23713. },
  23714. ]
  23715. ))
  23716. //characters
  23717. function makeCharacters() {
  23718. const results = [];
  23719. characterMakers.forEach(character => {
  23720. results.push(character());
  23721. });
  23722. return results;
  23723. }