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

24417 строки
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. ]
  1249. },
  1250. {
  1251. back: {
  1252. height: math.unit(2.2428, "meter"),
  1253. weight: math.unit(124.738, "kg"),
  1254. name: "Back",
  1255. image: {
  1256. source: "./media/characters/fen/back.svg",
  1257. extra: 1025 / 935,
  1258. bottom: 0.01
  1259. },
  1260. info: {
  1261. description: {
  1262. mode: "append",
  1263. text: "\n\nHe is not currently looking at you."
  1264. }
  1265. }
  1266. },
  1267. full: {
  1268. height: math.unit(1.34, "meter"),
  1269. weight: math.unit(225, "kg"),
  1270. name: "Full",
  1271. image: {
  1272. source: "./media/characters/fen/full.svg"
  1273. },
  1274. info: {
  1275. description: {
  1276. mode: "append",
  1277. text: "\n\nMunch."
  1278. }
  1279. }
  1280. },
  1281. kneeling: {
  1282. height: math.unit(5.4, "feet"),
  1283. weight: math.unit(124.738, "kg"),
  1284. name: "Kneeling",
  1285. image: {
  1286. source: "./media/characters/fen/kneeling.svg",
  1287. extra: 563 / 507
  1288. }
  1289. },
  1290. goo: {
  1291. height: math.unit(2.8, "feet"),
  1292. weight: math.unit(125, "kg"),
  1293. capacity: math.unit(1, "people"),
  1294. name: "Goo",
  1295. image: {
  1296. source: "./media/characters/fen/goo.svg",
  1297. bottom: 116/613
  1298. }
  1299. },
  1300. lounging: {
  1301. height: math.unit(6.5, "feet"),
  1302. weight: math.unit(125, "kg"),
  1303. name: "Lounging",
  1304. image: {
  1305. source: "./media/characters/fen/lounging.svg"
  1306. }
  1307. },
  1308. },
  1309. [
  1310. {
  1311. name: "Normal",
  1312. height: math.unit(2.2428, "meter")
  1313. },
  1314. {
  1315. name: "Big",
  1316. height: math.unit(12, "feet")
  1317. },
  1318. {
  1319. name: "Minimacro",
  1320. height: math.unit(40, "feet"),
  1321. default: true,
  1322. info: {
  1323. description: {
  1324. mode: "append",
  1325. text: "\n\nTOO DAMN BIG"
  1326. }
  1327. }
  1328. },
  1329. {
  1330. name: "Macro",
  1331. height: math.unit(100, "feet"),
  1332. info: {
  1333. description: {
  1334. mode: "append",
  1335. text: "\n\nTOO DAMN BIG"
  1336. }
  1337. }
  1338. },
  1339. {
  1340. name: "Macro+",
  1341. height: math.unit(300, "feet")
  1342. },
  1343. {
  1344. name: "Megamacro",
  1345. height: math.unit(2, "miles")
  1346. }
  1347. ]
  1348. ))
  1349. characterMakers.push(() => makeCharacter(
  1350. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1351. {
  1352. front: {
  1353. height: math.unit(183, "cm"),
  1354. weight: math.unit(80, "kg"),
  1355. name: "Front",
  1356. image: {
  1357. source: "./media/characters/sofia-fluttertail/front.svg",
  1358. bottom: 0.01,
  1359. extra: 2154 / 2081
  1360. }
  1361. },
  1362. frontAlt: {
  1363. height: math.unit(183, "cm"),
  1364. weight: math.unit(80, "kg"),
  1365. name: "Front (alt)",
  1366. image: {
  1367. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1368. }
  1369. },
  1370. back: {
  1371. height: math.unit(183, "cm"),
  1372. weight: math.unit(80, "kg"),
  1373. name: "Back",
  1374. image: {
  1375. source: "./media/characters/sofia-fluttertail/back.svg"
  1376. }
  1377. },
  1378. kneeling: {
  1379. height: math.unit(125, "cm"),
  1380. weight: math.unit(80, "kg"),
  1381. name: "Kneeling",
  1382. image: {
  1383. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1384. extra: 1033/977,
  1385. bottom: 23.7/1057
  1386. }
  1387. },
  1388. maw: {
  1389. height: math.unit(183 / 5, "cm"),
  1390. name: "Maw",
  1391. image: {
  1392. source: "./media/characters/sofia-fluttertail/maw.svg"
  1393. }
  1394. },
  1395. mawcloseup: {
  1396. height: math.unit(183 / 5 * 0.41, "cm"),
  1397. name: "Maw (Closeup)",
  1398. image: {
  1399. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1400. }
  1401. },
  1402. },
  1403. [
  1404. {
  1405. name: "Normal",
  1406. height: math.unit(1.83, "meter")
  1407. },
  1408. {
  1409. name: "Size Thief",
  1410. height: math.unit(18, "feet")
  1411. },
  1412. {
  1413. name: "50 Foot Collie",
  1414. height: math.unit(50, "feet")
  1415. },
  1416. {
  1417. name: "Macro",
  1418. height: math.unit(96, "feet"),
  1419. default: true
  1420. },
  1421. {
  1422. name: "Megamerger",
  1423. height: math.unit(650, "feet")
  1424. },
  1425. ]
  1426. ))
  1427. characterMakers.push(() => makeCharacter(
  1428. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1429. {
  1430. front: {
  1431. height: math.unit(7, "feet"),
  1432. weight: math.unit(100, "kg"),
  1433. name: "Front",
  1434. image: {
  1435. source: "./media/characters/march/front.svg",
  1436. extra: 1,
  1437. bottom: 0.015
  1438. }
  1439. },
  1440. foot: {
  1441. height: math.unit(0.9, "feet"),
  1442. name: "Foot",
  1443. image: {
  1444. source: "./media/characters/march/foot.svg"
  1445. }
  1446. },
  1447. },
  1448. [
  1449. {
  1450. name: "Normal",
  1451. height: math.unit(7.9, "feet")
  1452. },
  1453. {
  1454. name: "Macro",
  1455. height: math.unit(220, "meters")
  1456. },
  1457. {
  1458. name: "Megamacro",
  1459. height: math.unit(2.98, "km"),
  1460. default: true
  1461. },
  1462. {
  1463. name: "Gigamacro",
  1464. height: math.unit(15963, "km")
  1465. },
  1466. {
  1467. name: "Teramacro",
  1468. height: math.unit(2980000000, "km")
  1469. },
  1470. {
  1471. name: "Examacro",
  1472. height: math.unit(250, "parsecs")
  1473. },
  1474. ]
  1475. ))
  1476. characterMakers.push(() => makeCharacter(
  1477. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1478. {
  1479. front: {
  1480. height: math.unit(6, "feet"),
  1481. weight: math.unit(60, "kg"),
  1482. name: "Front",
  1483. image: {
  1484. source: "./media/characters/noir/front.svg",
  1485. extra: 1,
  1486. bottom: 0.032
  1487. }
  1488. },
  1489. },
  1490. [
  1491. {
  1492. name: "Normal",
  1493. height: math.unit(6.6, "feet")
  1494. },
  1495. {
  1496. name: "Macro",
  1497. height: math.unit(500, "feet")
  1498. },
  1499. {
  1500. name: "Megamacro",
  1501. height: math.unit(2.5, "km"),
  1502. default: true
  1503. },
  1504. {
  1505. name: "Gigamacro",
  1506. height: math.unit(22500, "km")
  1507. },
  1508. {
  1509. name: "Teramacro",
  1510. height: math.unit(2500000000, "km")
  1511. },
  1512. {
  1513. name: "Examacro",
  1514. height: math.unit(200, "parsecs")
  1515. },
  1516. ]
  1517. ))
  1518. characterMakers.push(() => makeCharacter(
  1519. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1520. {
  1521. front: {
  1522. height: math.unit(7, "feet"),
  1523. weight: math.unit(100, "kg"),
  1524. name: "Front",
  1525. image: {
  1526. source: "./media/characters/okuri/front.svg",
  1527. extra: 1,
  1528. bottom: 0.037
  1529. }
  1530. },
  1531. back: {
  1532. height: math.unit(7, "feet"),
  1533. weight: math.unit(100, "kg"),
  1534. name: "Back",
  1535. image: {
  1536. source: "./media/characters/okuri/back.svg",
  1537. extra: 1,
  1538. bottom: 0.007
  1539. }
  1540. },
  1541. },
  1542. [
  1543. {
  1544. name: "Megamacro",
  1545. height: math.unit(100, "miles"),
  1546. default: true
  1547. },
  1548. ]
  1549. ))
  1550. characterMakers.push(() => makeCharacter(
  1551. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1552. {
  1553. front: {
  1554. height: math.unit(7, "feet"),
  1555. weight: math.unit(100, "kg"),
  1556. name: "Front",
  1557. image: {
  1558. source: "./media/characters/manny/front.svg",
  1559. extra: 1,
  1560. bottom: 0.06
  1561. }
  1562. },
  1563. back: {
  1564. height: math.unit(7, "feet"),
  1565. weight: math.unit(100, "kg"),
  1566. name: "Back",
  1567. image: {
  1568. source: "./media/characters/manny/back.svg",
  1569. extra: 1,
  1570. bottom: 0.014
  1571. }
  1572. },
  1573. },
  1574. [
  1575. {
  1576. name: "Normal",
  1577. height: math.unit(7, "feet"),
  1578. },
  1579. {
  1580. name: "Macro",
  1581. height: math.unit(78, "feet"),
  1582. default: true
  1583. },
  1584. {
  1585. name: "Macro+",
  1586. height: math.unit(300, "meters")
  1587. },
  1588. {
  1589. name: "Macro++",
  1590. height: math.unit(2400, "meters")
  1591. },
  1592. {
  1593. name: "Megamacro",
  1594. height: math.unit(5167, "meters")
  1595. },
  1596. {
  1597. name: "Gigamacro",
  1598. height: math.unit(41769, "miles")
  1599. },
  1600. ]
  1601. ))
  1602. characterMakers.push(() => makeCharacter(
  1603. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1604. {
  1605. front: {
  1606. height: math.unit(7, "feet"),
  1607. weight: math.unit(100, "kg"),
  1608. name: "Front",
  1609. image: {
  1610. source: "./media/characters/adake/front-1.svg"
  1611. }
  1612. },
  1613. frontAlt: {
  1614. height: math.unit(7, "feet"),
  1615. weight: math.unit(100, "kg"),
  1616. name: "Front (Alt)",
  1617. image: {
  1618. source: "./media/characters/adake/front-2.svg",
  1619. extra: 1,
  1620. bottom: 0.01
  1621. }
  1622. },
  1623. back: {
  1624. height: math.unit(7, "feet"),
  1625. weight: math.unit(100, "kg"),
  1626. name: "Back",
  1627. image: {
  1628. source: "./media/characters/adake/back.svg",
  1629. }
  1630. },
  1631. kneel: {
  1632. height: math.unit(5.385, "feet"),
  1633. weight: math.unit(100, "kg"),
  1634. name: "Kneeling",
  1635. image: {
  1636. source: "./media/characters/adake/kneel.svg",
  1637. bottom: 0.052
  1638. }
  1639. },
  1640. },
  1641. [
  1642. {
  1643. name: "Normal",
  1644. height: math.unit(7, "feet"),
  1645. },
  1646. {
  1647. name: "Macro",
  1648. height: math.unit(78, "feet"),
  1649. default: true
  1650. },
  1651. {
  1652. name: "Macro+",
  1653. height: math.unit(300, "meters")
  1654. },
  1655. {
  1656. name: "Macro++",
  1657. height: math.unit(2400, "meters")
  1658. },
  1659. {
  1660. name: "Megamacro",
  1661. height: math.unit(5167, "meters")
  1662. },
  1663. {
  1664. name: "Gigamacro",
  1665. height: math.unit(41769, "miles")
  1666. },
  1667. ]
  1668. ))
  1669. characterMakers.push(() => makeCharacter(
  1670. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1671. {
  1672. front: {
  1673. height: math.unit(1.65, "meters"),
  1674. weight: math.unit(50, "kg"),
  1675. name: "Front",
  1676. image: {
  1677. source: "./media/characters/elijah/front.svg",
  1678. extra: 858/830,
  1679. bottom: 95.5/953.8559
  1680. }
  1681. },
  1682. back: {
  1683. height: math.unit(1.65, "meters"),
  1684. weight: math.unit(50, "kg"),
  1685. name: "Back",
  1686. image: {
  1687. source: "./media/characters/elijah/back.svg",
  1688. extra: 895/850,
  1689. bottom: 5.3/897.956
  1690. }
  1691. },
  1692. frontNsfw: {
  1693. height: math.unit(1.65, "meters"),
  1694. weight: math.unit(50, "kg"),
  1695. name: "Front (NSFW)",
  1696. image: {
  1697. source: "./media/characters/elijah/front-nsfw.svg",
  1698. extra: 858/830,
  1699. bottom: 95.5/953.8559
  1700. }
  1701. },
  1702. backNsfw: {
  1703. height: math.unit(1.65, "meters"),
  1704. weight: math.unit(50, "kg"),
  1705. name: "Back (NSFW)",
  1706. image: {
  1707. source: "./media/characters/elijah/back-nsfw.svg",
  1708. extra: 895/850,
  1709. bottom: 5.3/897.956
  1710. }
  1711. },
  1712. dick: {
  1713. height: math.unit(1, "feet"),
  1714. name: "Dick",
  1715. image: {
  1716. source: "./media/characters/elijah/dick.svg"
  1717. }
  1718. },
  1719. beakOpen: {
  1720. height: math.unit(1.25, "feet"),
  1721. name: "Beak (Open)",
  1722. image: {
  1723. source: "./media/characters/elijah/beak-open.svg"
  1724. }
  1725. },
  1726. beakShut: {
  1727. height: math.unit(1.25, "feet"),
  1728. name: "Beak (Shut)",
  1729. image: {
  1730. source: "./media/characters/elijah/beak-shut.svg"
  1731. }
  1732. },
  1733. footFlexing: {
  1734. height: math.unit(1.61, "feet"),
  1735. name: "Foot (Flexing)",
  1736. image: {
  1737. source: "./media/characters/elijah/foot-flexing.svg"
  1738. }
  1739. },
  1740. footStepping: {
  1741. height: math.unit(1.44, "feet"),
  1742. name: "Foot (Stepping)",
  1743. image: {
  1744. source: "./media/characters/elijah/foot-stepping.svg"
  1745. }
  1746. },
  1747. plantigradeLeg: {
  1748. height: math.unit(2.34, "feet"),
  1749. name: "Plantigrade Leg",
  1750. image: {
  1751. source: "./media/characters/elijah/plantigrade-leg.svg"
  1752. }
  1753. },
  1754. plantigradeFootLeft: {
  1755. height: math.unit(0.9, "feet"),
  1756. name: "Plantigrade Foot (Left)",
  1757. image: {
  1758. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1759. }
  1760. },
  1761. plantigradeFootRight: {
  1762. height: math.unit(0.9, "feet"),
  1763. name: "Plantigrade Foot (Right)",
  1764. image: {
  1765. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1766. }
  1767. },
  1768. },
  1769. [
  1770. {
  1771. name: "Normal",
  1772. height: math.unit(1.65, "meters")
  1773. },
  1774. {
  1775. name: "Macro",
  1776. height: math.unit(55, "meters"),
  1777. default: true
  1778. },
  1779. {
  1780. name: "Macro+",
  1781. height: math.unit(105, "meters")
  1782. },
  1783. ]
  1784. ))
  1785. characterMakers.push(() => makeCharacter(
  1786. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1787. {
  1788. front: {
  1789. height: math.unit(11, "feet"),
  1790. weight: math.unit(80, "kg"),
  1791. name: "Front",
  1792. image: {
  1793. source: "./media/characters/rai/front.svg",
  1794. extra: 1,
  1795. bottom: 0.03
  1796. }
  1797. },
  1798. side: {
  1799. height: math.unit(11, "feet"),
  1800. weight: math.unit(80, "kg"),
  1801. name: "Side",
  1802. image: {
  1803. source: "./media/characters/rai/side.svg"
  1804. }
  1805. },
  1806. back: {
  1807. height: math.unit(11, "feet"),
  1808. weight: math.unit(80, "lb"),
  1809. name: "Back",
  1810. image: {
  1811. source: "./media/characters/rai/back.svg",
  1812. extra: 1,
  1813. bottom: 0.01
  1814. }
  1815. },
  1816. feral: {
  1817. height: math.unit(11, "feet"),
  1818. weight: math.unit(800, "lb"),
  1819. name: "Feral",
  1820. image: {
  1821. source: "./media/characters/rai/feral.svg",
  1822. extra: 1050 / 659,
  1823. bottom: 0.07
  1824. }
  1825. },
  1826. dragon: {
  1827. height: math.unit(23, "feet"),
  1828. weight: math.unit(50000, "lb"),
  1829. name: "Dragon",
  1830. image: {
  1831. source: "./media/characters/rai/dragon.svg",
  1832. extra: 2498/2030,
  1833. bottom: 85.2/2584
  1834. }
  1835. },
  1836. maw: {
  1837. height: math.unit(6 / 3.81416, "feet"),
  1838. name: "Maw",
  1839. image: {
  1840. source: "./media/characters/rai/maw.svg"
  1841. }
  1842. },
  1843. },
  1844. [
  1845. {
  1846. name: "Normal",
  1847. height: math.unit(11, "feet")
  1848. },
  1849. {
  1850. name: "Macro",
  1851. height: math.unit(302, "feet"),
  1852. default: true
  1853. },
  1854. ]
  1855. ))
  1856. characterMakers.push(() => makeCharacter(
  1857. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1858. {
  1859. frontDressed: {
  1860. height: math.unit(216, "feet"),
  1861. weight: math.unit(7000000, "lb"),
  1862. name: "Front (Dressed)",
  1863. image: {
  1864. source: "./media/characters/jazzy/front-dressed.svg",
  1865. extra: 2738/2651,
  1866. bottom: 41.8/2786
  1867. }
  1868. },
  1869. backDressed: {
  1870. height: math.unit(216, "feet"),
  1871. weight: math.unit(7000000, "lb"),
  1872. name: "Back (Dressed)",
  1873. image: {
  1874. source: "./media/characters/jazzy/back-dressed.svg",
  1875. extra: 2775/2673,
  1876. bottom: 36.8/2817
  1877. }
  1878. },
  1879. front: {
  1880. height: math.unit(216, "feet"),
  1881. weight: math.unit(7000000, "lb"),
  1882. name: "Front",
  1883. image: {
  1884. source: "./media/characters/jazzy/front.svg",
  1885. extra: 2738/2651,
  1886. bottom: 41.8/2786
  1887. }
  1888. },
  1889. back: {
  1890. height: math.unit(216, "feet"),
  1891. weight: math.unit(7000000, "lb"),
  1892. name: "Back",
  1893. image: {
  1894. source: "./media/characters/jazzy/back.svg",
  1895. extra: 2775/2673,
  1896. bottom: 36.8/2817
  1897. }
  1898. },
  1899. maw: {
  1900. height: math.unit(20, "feet"),
  1901. name: "Maw",
  1902. image: {
  1903. source: "./media/characters/jazzy/maw.svg"
  1904. }
  1905. },
  1906. paws: {
  1907. height: math.unit(27.5, "feet"),
  1908. name: "Paws",
  1909. image: {
  1910. source: "./media/characters/jazzy/paws.svg"
  1911. }
  1912. },
  1913. eye: {
  1914. height: math.unit(4.4, "feet"),
  1915. name: "Eye",
  1916. image: {
  1917. source: "./media/characters/jazzy/eye.svg"
  1918. }
  1919. },
  1920. droneOffense: {
  1921. height: math.unit(9.5, "inches"),
  1922. name: "Drone (Offense)",
  1923. image: {
  1924. source: "./media/characters/jazzy/drone-offense.svg"
  1925. }
  1926. },
  1927. droneRecon: {
  1928. height: math.unit(9.5, "inches"),
  1929. name: "Drone (Recon)",
  1930. image: {
  1931. source: "./media/characters/jazzy/drone-recon.svg"
  1932. }
  1933. },
  1934. droneDefense: {
  1935. height: math.unit(9.5, "inches"),
  1936. name: "Drone (Defense)",
  1937. image: {
  1938. source: "./media/characters/jazzy/drone-defense.svg"
  1939. }
  1940. },
  1941. },
  1942. [
  1943. {
  1944. name: "Macro",
  1945. height: math.unit(216, "feet"),
  1946. default: true
  1947. },
  1948. ]
  1949. ))
  1950. characterMakers.push(() => makeCharacter(
  1951. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  1952. {
  1953. front: {
  1954. height: math.unit(7, "feet"),
  1955. weight: math.unit(80, "kg"),
  1956. name: "Front",
  1957. image: {
  1958. source: "./media/characters/flamm/front.svg",
  1959. extra: 1794 / 1677,
  1960. bottom: 31.7 / 1828.5
  1961. }
  1962. },
  1963. },
  1964. [
  1965. {
  1966. name: "Normal",
  1967. height: math.unit(9.5, "feet")
  1968. },
  1969. {
  1970. name: "Macro",
  1971. height: math.unit(200, "feet"),
  1972. default: true
  1973. },
  1974. ]
  1975. ))
  1976. characterMakers.push(() => makeCharacter(
  1977. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  1978. {
  1979. front: {
  1980. height: math.unit(7, "feet"),
  1981. weight: math.unit(80, "kg"),
  1982. name: "Front",
  1983. image: {
  1984. source: "./media/characters/zephiro/front.svg",
  1985. extra: 2309 / 2162,
  1986. bottom: 0.069
  1987. }
  1988. },
  1989. side: {
  1990. height: math.unit(7, "feet"),
  1991. weight: math.unit(80, "kg"),
  1992. name: "Side",
  1993. image: {
  1994. source: "./media/characters/zephiro/side.svg",
  1995. extra: 2403 / 2279,
  1996. bottom: 0.015
  1997. }
  1998. },
  1999. back: {
  2000. height: math.unit(7, "feet"),
  2001. weight: math.unit(80, "kg"),
  2002. name: "Back",
  2003. image: {
  2004. source: "./media/characters/zephiro/back.svg",
  2005. extra: 2373 / 2244,
  2006. bottom: 0.013
  2007. }
  2008. },
  2009. },
  2010. [
  2011. {
  2012. name: "Micro",
  2013. height: math.unit(3, "inches")
  2014. },
  2015. {
  2016. name: "Normal",
  2017. height: math.unit(5 + 3 / 12, "feet"),
  2018. default: true
  2019. },
  2020. {
  2021. name: "Macro",
  2022. height: math.unit(118, "feet")
  2023. },
  2024. ]
  2025. ))
  2026. characterMakers.push(() => makeCharacter(
  2027. { name: "Fory", species: ["weasel"], tags: ["anthro"] },
  2028. {
  2029. front: {
  2030. height: math.unit(5, "feet"),
  2031. weight: math.unit(90, "kg"),
  2032. name: "Front",
  2033. image: {
  2034. source: "./media/characters/fory/front.svg",
  2035. extra: 2862 / 2674,
  2036. bottom: 180 / 3043.8
  2037. }
  2038. },
  2039. back: {
  2040. height: math.unit(5, "feet"),
  2041. weight: math.unit(90, "kg"),
  2042. name: "Back",
  2043. image: {
  2044. source: "./media/characters/fory/back.svg",
  2045. extra: 2962 / 2791,
  2046. bottom: 106 / 3071.8
  2047. }
  2048. },
  2049. foot: {
  2050. height: math.unit(2.14, "feet"),
  2051. name: "Foot",
  2052. image: {
  2053. source: "./media/characters/fory/foot.svg"
  2054. }
  2055. },
  2056. },
  2057. [
  2058. {
  2059. name: "Normal",
  2060. height: math.unit(5, "feet")
  2061. },
  2062. {
  2063. name: "Macro",
  2064. height: math.unit(50, "feet"),
  2065. default: true
  2066. },
  2067. {
  2068. name: "Megamacro",
  2069. height: math.unit(10, "miles")
  2070. },
  2071. {
  2072. name: "Gigamacro",
  2073. height: math.unit(5, "earths")
  2074. },
  2075. ]
  2076. ))
  2077. characterMakers.push(() => makeCharacter(
  2078. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2079. {
  2080. front: {
  2081. height: math.unit(7, "feet"),
  2082. weight: math.unit(90, "kg"),
  2083. name: "Front",
  2084. image: {
  2085. source: "./media/characters/kurrikage/front.svg",
  2086. extra: 1,
  2087. bottom: 0.035
  2088. }
  2089. },
  2090. back: {
  2091. height: math.unit(7, "feet"),
  2092. weight: math.unit(90, "lb"),
  2093. name: "Back",
  2094. image: {
  2095. source: "./media/characters/kurrikage/back.svg"
  2096. }
  2097. },
  2098. paw: {
  2099. height: math.unit(1.5, "feet"),
  2100. name: "Paw",
  2101. image: {
  2102. source: "./media/characters/kurrikage/paw.svg"
  2103. }
  2104. },
  2105. staff: {
  2106. height: math.unit(6.7, "feet"),
  2107. name: "Staff",
  2108. image: {
  2109. source: "./media/characters/kurrikage/staff.svg"
  2110. }
  2111. },
  2112. peek: {
  2113. height: math.unit(1.05, "feet"),
  2114. name: "Peeking",
  2115. image: {
  2116. source: "./media/characters/kurrikage/peek.svg",
  2117. bottom: 0.08
  2118. }
  2119. },
  2120. },
  2121. [
  2122. {
  2123. name: "Normal",
  2124. height: math.unit(12, "feet"),
  2125. default: true
  2126. },
  2127. {
  2128. name: "Big",
  2129. height: math.unit(20, "feet")
  2130. },
  2131. {
  2132. name: "Macro",
  2133. height: math.unit(500, "feet")
  2134. },
  2135. {
  2136. name: "Megamacro",
  2137. height: math.unit(20, "miles")
  2138. },
  2139. ]
  2140. ))
  2141. characterMakers.push(() => makeCharacter(
  2142. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2143. {
  2144. front: {
  2145. height: math.unit(6, "feet"),
  2146. weight: math.unit(75, "kg"),
  2147. name: "Front",
  2148. image: {
  2149. source: "./media/characters/shingo/front.svg",
  2150. extra: 3511 / 3338,
  2151. bottom: 0.005
  2152. }
  2153. },
  2154. },
  2155. [
  2156. {
  2157. name: "Micro",
  2158. height: math.unit(4, "inches")
  2159. },
  2160. {
  2161. name: "Normal",
  2162. height: math.unit(6, "feet"),
  2163. default: true
  2164. },
  2165. {
  2166. name: "Macro",
  2167. height: math.unit(108, "feet")
  2168. }
  2169. ]
  2170. ))
  2171. characterMakers.push(() => makeCharacter(
  2172. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2173. {
  2174. side: {
  2175. height: math.unit(6, "feet"),
  2176. weight: math.unit(75, "kg"),
  2177. name: "Side",
  2178. image: {
  2179. source: "./media/characters/aigey/side.svg"
  2180. }
  2181. },
  2182. },
  2183. [
  2184. {
  2185. name: "Macro",
  2186. height: math.unit(200, "feet"),
  2187. default: true
  2188. },
  2189. {
  2190. name: "Megamacro",
  2191. height: math.unit(100, "miles")
  2192. },
  2193. ]
  2194. )
  2195. )
  2196. characterMakers.push(() => makeCharacter(
  2197. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2198. {
  2199. front: {
  2200. height: math.unit(5 + 5 / 12, "feet"),
  2201. weight: math.unit(75, "kg"),
  2202. name: "Front",
  2203. image: {
  2204. source: "./media/characters/natasha/front.svg",
  2205. extra: 859/824,
  2206. bottom: 23/879.6
  2207. }
  2208. },
  2209. frontNsfw: {
  2210. height: math.unit(5 + 5 / 12, "feet"),
  2211. weight: math.unit(75, "kg"),
  2212. name: "Front (NSFW)",
  2213. image: {
  2214. source: "./media/characters/natasha/front-nsfw.svg",
  2215. extra: 859/824,
  2216. bottom: 23/879.6
  2217. }
  2218. },
  2219. frontErect: {
  2220. height: math.unit(5 + 5 / 12, "feet"),
  2221. weight: math.unit(75, "kg"),
  2222. name: "Front (Erect)",
  2223. image: {
  2224. source: "./media/characters/natasha/front-erect.svg",
  2225. extra: 859/824,
  2226. bottom: 23/879.6
  2227. }
  2228. },
  2229. back: {
  2230. height: math.unit(5 + 5 / 12, "feet"),
  2231. weight: math.unit(75, "kg"),
  2232. name: "Back",
  2233. image: {
  2234. source: "./media/characters/natasha/back.svg",
  2235. extra: 887.9/852.6,
  2236. bottom: 9.7/896.4
  2237. }
  2238. },
  2239. backAlt: {
  2240. height: math.unit(5 + 5 / 12, "feet"),
  2241. weight: math.unit(75, "kg"),
  2242. name: "Back (Alt)",
  2243. image: {
  2244. source: "./media/characters/natasha/back-alt.svg",
  2245. extra: 1236.7/1192,
  2246. bottom: 22.3/1258.2
  2247. }
  2248. },
  2249. dick: {
  2250. height: math.unit(1.772, "feet"),
  2251. name: "Dick",
  2252. image: {
  2253. source: "./media/characters/natasha/dick.svg"
  2254. }
  2255. },
  2256. },
  2257. [
  2258. {
  2259. name: "Normal",
  2260. height: math.unit(5 + 5 / 12, "feet")
  2261. },
  2262. {
  2263. name: "Large",
  2264. height: math.unit(12, "feet")
  2265. },
  2266. {
  2267. name: "Macro",
  2268. height: math.unit(100, "feet"),
  2269. default: true
  2270. },
  2271. {
  2272. name: "Macro+",
  2273. height: math.unit(260, "feet")
  2274. },
  2275. {
  2276. name: "Macro++",
  2277. height: math.unit(1, "mile")
  2278. },
  2279. ]
  2280. ))
  2281. characterMakers.push(() => makeCharacter(
  2282. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2283. {
  2284. front: {
  2285. height: math.unit(6, "feet"),
  2286. weight: math.unit(75, "kg"),
  2287. name: "Front",
  2288. image: {
  2289. source: "./media/characters/malik/front.svg"
  2290. }
  2291. },
  2292. side: {
  2293. height: math.unit(6, "feet"),
  2294. weight: math.unit(75, "kg"),
  2295. name: "Side",
  2296. image: {
  2297. source: "./media/characters/malik/side.svg",
  2298. extra: 1.1539
  2299. }
  2300. },
  2301. back: {
  2302. height: math.unit(6, "feet"),
  2303. weight: math.unit(75, "kg"),
  2304. name: "Back",
  2305. image: {
  2306. source: "./media/characters/malik/back.svg"
  2307. }
  2308. },
  2309. },
  2310. [
  2311. {
  2312. name: "Macro",
  2313. height: math.unit(156, "feet"),
  2314. default: true
  2315. },
  2316. {
  2317. name: "Macro+",
  2318. height: math.unit(1188, "feet")
  2319. },
  2320. ]
  2321. ))
  2322. characterMakers.push(() => makeCharacter(
  2323. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2324. {
  2325. front: {
  2326. height: math.unit(6, "feet"),
  2327. weight: math.unit(75, "kg"),
  2328. name: "Front",
  2329. image: {
  2330. source: "./media/characters/sefer/front.svg"
  2331. }
  2332. },
  2333. back: {
  2334. height: math.unit(6, "feet"),
  2335. weight: math.unit(75, "kg"),
  2336. name: "Back",
  2337. image: {
  2338. source: "./media/characters/sefer/back.svg"
  2339. }
  2340. },
  2341. },
  2342. [
  2343. {
  2344. name: "Normal",
  2345. height: math.unit(6, "feet"),
  2346. default: true
  2347. },
  2348. ]
  2349. ))
  2350. characterMakers.push(() => makeCharacter(
  2351. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2352. {
  2353. body: {
  2354. height: math.unit(2.2428, "meter"),
  2355. weight: math.unit(124.738, "kg"),
  2356. name: "Body",
  2357. image: {
  2358. extra: 1225 / 1050,
  2359. source: "./media/characters/north/front.svg"
  2360. }
  2361. }
  2362. },
  2363. [
  2364. {
  2365. name: "Micro",
  2366. height: math.unit(4, "inches")
  2367. },
  2368. {
  2369. name: "Macro",
  2370. height: math.unit(63, "meters")
  2371. },
  2372. {
  2373. name: "Megamacro",
  2374. height: math.unit(101, "miles"),
  2375. default: true
  2376. }
  2377. ]
  2378. ))
  2379. characterMakers.push(() => makeCharacter(
  2380. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2381. {
  2382. angled: {
  2383. height: math.unit(4, "meter"),
  2384. weight: math.unit(150, "kg"),
  2385. name: "Angled",
  2386. image: {
  2387. source: "./media/characters/talan/angled-sfw.svg",
  2388. bottom: 29 / 3734
  2389. }
  2390. },
  2391. angledNsfw: {
  2392. height: math.unit(4, "meter"),
  2393. weight: math.unit(150, "kg"),
  2394. name: "Angled (NSFW)",
  2395. image: {
  2396. source: "./media/characters/talan/angled-nsfw.svg",
  2397. bottom: 29 / 3734
  2398. }
  2399. },
  2400. frontNsfw: {
  2401. height: math.unit(4, "meter"),
  2402. weight: math.unit(150, "kg"),
  2403. name: "Front (NSFW)",
  2404. image: {
  2405. source: "./media/characters/talan/front-nsfw.svg",
  2406. bottom: 29 / 3734
  2407. }
  2408. },
  2409. sideNsfw: {
  2410. height: math.unit(4, "meter"),
  2411. weight: math.unit(150, "kg"),
  2412. name: "Side (NSFW)",
  2413. image: {
  2414. source: "./media/characters/talan/side-nsfw.svg",
  2415. bottom: 29 / 3734
  2416. }
  2417. },
  2418. back: {
  2419. height: math.unit(4, "meter"),
  2420. weight: math.unit(150, "kg"),
  2421. name: "Back",
  2422. image: {
  2423. source: "./media/characters/talan/back.svg"
  2424. }
  2425. },
  2426. dickBottom: {
  2427. height: math.unit(0.621, "meter"),
  2428. name: "Dick (Bottom)",
  2429. image: {
  2430. source: "./media/characters/talan/dick-bottom.svg"
  2431. }
  2432. },
  2433. dickTop: {
  2434. height: math.unit(0.621, "meter"),
  2435. name: "Dick (Top)",
  2436. image: {
  2437. source: "./media/characters/talan/dick-top.svg"
  2438. }
  2439. },
  2440. dickSide: {
  2441. height: math.unit(0.305, "meter"),
  2442. name: "Dick (Side)",
  2443. image: {
  2444. source: "./media/characters/talan/dick-side.svg"
  2445. }
  2446. },
  2447. dickFront: {
  2448. height: math.unit(0.305, "meter"),
  2449. name: "Dick (Front)",
  2450. image: {
  2451. source: "./media/characters/talan/dick-front.svg"
  2452. }
  2453. },
  2454. },
  2455. [
  2456. {
  2457. name: "Normal",
  2458. height: math.unit(4, "meters")
  2459. },
  2460. {
  2461. name: "Macro",
  2462. height: math.unit(100, "meters")
  2463. },
  2464. {
  2465. name: "Megamacro",
  2466. height: math.unit(2, "miles"),
  2467. default: true
  2468. },
  2469. {
  2470. name: "Gigamacro",
  2471. height: math.unit(5000, "miles")
  2472. },
  2473. {
  2474. name: "Teramacro",
  2475. height: math.unit(100, "parsecs")
  2476. }
  2477. ]
  2478. ))
  2479. characterMakers.push(() => makeCharacter(
  2480. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2481. {
  2482. front: {
  2483. height: math.unit(2, "meter"),
  2484. weight: math.unit(90, "kg"),
  2485. name: "Front",
  2486. image: {
  2487. source: "./media/characters/gael'rathus/front.svg"
  2488. }
  2489. },
  2490. frontAlt: {
  2491. height: math.unit(2, "meter"),
  2492. weight: math.unit(90, "kg"),
  2493. name: "Front (alt)",
  2494. image: {
  2495. source: "./media/characters/gael'rathus/front-alt.svg"
  2496. }
  2497. },
  2498. frontAlt2: {
  2499. height: math.unit(2, "meter"),
  2500. weight: math.unit(90, "kg"),
  2501. name: "Front (alt 2)",
  2502. image: {
  2503. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2504. }
  2505. }
  2506. },
  2507. [
  2508. {
  2509. name: "Normal",
  2510. height: math.unit(9, "feet"),
  2511. default: true
  2512. },
  2513. {
  2514. name: "Large",
  2515. height: math.unit(25, "feet")
  2516. },
  2517. {
  2518. name: "Macro",
  2519. height: math.unit(0.25, "miles")
  2520. },
  2521. {
  2522. name: "Megamacro",
  2523. height: math.unit(10, "miles")
  2524. }
  2525. ]
  2526. ))
  2527. characterMakers.push(() => makeCharacter(
  2528. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2529. {
  2530. side: {
  2531. height: math.unit(2, "meter"),
  2532. weight: math.unit(140, "kg"),
  2533. name: "Side",
  2534. image: {
  2535. source: "./media/characters/sosha/side.svg",
  2536. bottom: 0.042
  2537. }
  2538. },
  2539. },
  2540. [
  2541. {
  2542. name: "Normal",
  2543. height: math.unit(12, "feet"),
  2544. default: true
  2545. }
  2546. ]
  2547. ))
  2548. characterMakers.push(() => makeCharacter(
  2549. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2550. {
  2551. side: {
  2552. height: math.unit(5 + 5 / 12, "feet"),
  2553. weight: math.unit(170, "kg"),
  2554. name: "Side",
  2555. image: {
  2556. source: "./media/characters/runnola/side.svg",
  2557. extra: 741 / 448,
  2558. bottom: 0.05
  2559. }
  2560. },
  2561. },
  2562. [
  2563. {
  2564. name: "Small",
  2565. height: math.unit(3, "feet")
  2566. },
  2567. {
  2568. name: "Normal",
  2569. height: math.unit(5 + 5 / 12, "feet"),
  2570. default: true
  2571. },
  2572. {
  2573. name: "Big",
  2574. height: math.unit(10, "feet")
  2575. },
  2576. ]
  2577. ))
  2578. characterMakers.push(() => makeCharacter(
  2579. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2580. {
  2581. front: {
  2582. height: math.unit(2, "meter"),
  2583. weight: math.unit(50, "kg"),
  2584. name: "Front",
  2585. image: {
  2586. source: "./media/characters/kurribird/front.svg",
  2587. bottom: 0.015
  2588. }
  2589. },
  2590. frontAlt: {
  2591. height: math.unit(1.5, "meter"),
  2592. weight: math.unit(50, "kg"),
  2593. name: "Front (Alt)",
  2594. image: {
  2595. source: "./media/characters/kurribird/front-alt.svg",
  2596. extra: 1.45
  2597. }
  2598. },
  2599. },
  2600. [
  2601. {
  2602. name: "Normal",
  2603. height: math.unit(7, "feet")
  2604. },
  2605. {
  2606. name: "Big",
  2607. height: math.unit(12, "feet"),
  2608. default: true
  2609. },
  2610. {
  2611. name: "Macro",
  2612. height: math.unit(1500, "feet")
  2613. },
  2614. {
  2615. name: "Megamacro",
  2616. height: math.unit(2, "miles")
  2617. }
  2618. ]
  2619. ))
  2620. characterMakers.push(() => makeCharacter(
  2621. { name: "Elbial", species: ["goat", "lion", "demon"], tags: ["anthro"] },
  2622. {
  2623. front: {
  2624. height: math.unit(2, "meter"),
  2625. weight: math.unit(80, "kg"),
  2626. name: "Front",
  2627. image: {
  2628. source: "./media/characters/elbial/front.svg",
  2629. extra: 1643 / 1556,
  2630. bottom: 60.2 / 1696
  2631. }
  2632. },
  2633. side: {
  2634. height: math.unit(2, "meter"),
  2635. weight: math.unit(80, "kg"),
  2636. name: "Side",
  2637. image: {
  2638. source: "./media/characters/elbial/side.svg",
  2639. extra: 1630 / 1565,
  2640. bottom: 71.5 / 1697
  2641. }
  2642. },
  2643. back: {
  2644. height: math.unit(2, "meter"),
  2645. weight: math.unit(80, "kg"),
  2646. name: "Back",
  2647. image: {
  2648. source: "./media/characters/elbial/back.svg",
  2649. extra: 1668 / 1595,
  2650. bottom: 5.6 / 1672
  2651. }
  2652. },
  2653. frontDressed: {
  2654. height: math.unit(2, "meter"),
  2655. weight: math.unit(80, "kg"),
  2656. name: "Front (Dressed)",
  2657. image: {
  2658. source: "./media/characters/elbial/front-dressed.svg",
  2659. extra: 1653 / 1584,
  2660. bottom: 57 / 1708
  2661. }
  2662. },
  2663. genitals: {
  2664. height: math.unit(2 / 3.367, "meter"),
  2665. name: "Genitals",
  2666. image: {
  2667. source: "./media/characters/elbial/genitals.svg"
  2668. }
  2669. },
  2670. },
  2671. [
  2672. {
  2673. name: "Large",
  2674. height: math.unit(100, "feet")
  2675. },
  2676. {
  2677. name: "Macro",
  2678. height: math.unit(500, "feet"),
  2679. default: true
  2680. },
  2681. {
  2682. name: "Megamacro",
  2683. height: math.unit(10, "miles")
  2684. },
  2685. {
  2686. name: "Gigamacro",
  2687. height: math.unit(25000, "miles")
  2688. },
  2689. {
  2690. name: "Full-Size",
  2691. height: math.unit(8000000, "gigaparsecs")
  2692. }
  2693. ]
  2694. ))
  2695. characterMakers.push(() => makeCharacter(
  2696. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2697. {
  2698. front: {
  2699. height: math.unit(2, "meter"),
  2700. weight: math.unit(60, "kg"),
  2701. name: "Front",
  2702. image: {
  2703. source: "./media/characters/noah/front.svg"
  2704. }
  2705. },
  2706. talons: {
  2707. height: math.unit(0.315, "meter"),
  2708. name: "Talons",
  2709. image: {
  2710. source: "./media/characters/noah/talons.svg"
  2711. }
  2712. }
  2713. },
  2714. [
  2715. {
  2716. name: "Large",
  2717. height: math.unit(50, "feet")
  2718. },
  2719. {
  2720. name: "Macro",
  2721. height: math.unit(750, "feet"),
  2722. default: true
  2723. },
  2724. {
  2725. name: "Megamacro",
  2726. height: math.unit(50, "miles")
  2727. },
  2728. {
  2729. name: "Gigamacro",
  2730. height: math.unit(100000, "miles")
  2731. },
  2732. {
  2733. name: "Full-Size",
  2734. height: math.unit(3000000000, "miles")
  2735. }
  2736. ]
  2737. ))
  2738. characterMakers.push(() => makeCharacter(
  2739. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2740. {
  2741. front: {
  2742. height: math.unit(2, "meter"),
  2743. weight: math.unit(80, "kg"),
  2744. name: "Front",
  2745. image: {
  2746. source: "./media/characters/natalya/front.svg"
  2747. }
  2748. },
  2749. back: {
  2750. height: math.unit(2, "meter"),
  2751. weight: math.unit(80, "kg"),
  2752. name: "Back",
  2753. image: {
  2754. source: "./media/characters/natalya/back.svg"
  2755. }
  2756. }
  2757. },
  2758. [
  2759. {
  2760. name: "Normal",
  2761. height: math.unit(150, "feet"),
  2762. default: true
  2763. },
  2764. {
  2765. name: "Megamacro",
  2766. height: math.unit(5, "miles")
  2767. },
  2768. {
  2769. name: "Full-Size",
  2770. height: math.unit(600, "kiloparsecs")
  2771. }
  2772. ]
  2773. ))
  2774. characterMakers.push(() => makeCharacter(
  2775. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2776. {
  2777. front: {
  2778. height: math.unit(2, "meter"),
  2779. weight: math.unit(50, "kg"),
  2780. name: "Front",
  2781. image: {
  2782. source: "./media/characters/erestrebah/front.svg",
  2783. extra: 208 / 193,
  2784. bottom: 0.055
  2785. }
  2786. },
  2787. back: {
  2788. height: math.unit(2, "meter"),
  2789. weight: math.unit(50, "kg"),
  2790. name: "Back",
  2791. image: {
  2792. source: "./media/characters/erestrebah/back.svg",
  2793. extra: 1.3
  2794. }
  2795. }
  2796. },
  2797. [
  2798. {
  2799. name: "Normal",
  2800. height: math.unit(10, "feet")
  2801. },
  2802. {
  2803. name: "Large",
  2804. height: math.unit(50, "feet"),
  2805. default: true
  2806. },
  2807. {
  2808. name: "Macro",
  2809. height: math.unit(300, "feet")
  2810. },
  2811. {
  2812. name: "Macro+",
  2813. height: math.unit(750, "feet")
  2814. },
  2815. {
  2816. name: "Megamacro",
  2817. height: math.unit(3, "miles")
  2818. }
  2819. ]
  2820. ))
  2821. characterMakers.push(() => makeCharacter(
  2822. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2823. {
  2824. front: {
  2825. height: math.unit(2, "meter"),
  2826. weight: math.unit(80, "kg"),
  2827. name: "Front",
  2828. image: {
  2829. source: "./media/characters/jennifer/front.svg",
  2830. bottom: 0.11,
  2831. extra: 1.16
  2832. }
  2833. },
  2834. frontAlt: {
  2835. height: math.unit(2, "meter"),
  2836. weight: math.unit(80, "kg"),
  2837. name: "Front (Alt)",
  2838. image: {
  2839. source: "./media/characters/jennifer/front-alt.svg"
  2840. }
  2841. }
  2842. },
  2843. [
  2844. {
  2845. name: "Canon Height",
  2846. height: math.unit(120, "feet"),
  2847. default: true
  2848. },
  2849. {
  2850. name: "Macro+",
  2851. height: math.unit(300, "feet")
  2852. },
  2853. {
  2854. name: "Megamacro",
  2855. height: math.unit(20000, "feet")
  2856. }
  2857. ]
  2858. ))
  2859. characterMakers.push(() => makeCharacter(
  2860. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2861. {
  2862. front: {
  2863. height: math.unit(2, "meter"),
  2864. weight: math.unit(50, "kg"),
  2865. name: "Front",
  2866. image: {
  2867. source: "./media/characters/kalista/front.svg",
  2868. extra: 1947 / 1700,
  2869. bottom: 76.6/1412.98
  2870. }
  2871. },
  2872. back: {
  2873. height: math.unit(2, "meter"),
  2874. weight: math.unit(50, "kg"),
  2875. name: "Back",
  2876. image: {
  2877. source: "./media/characters/kalista/back.svg",
  2878. extra: 1366 / 1156,
  2879. bottom: 33.9/1362.78
  2880. }
  2881. }
  2882. },
  2883. [
  2884. {
  2885. name: "Uncomfortably Small",
  2886. height: math.unit(10, "feet")
  2887. },
  2888. {
  2889. name: "Small",
  2890. height: math.unit(30, "feet")
  2891. },
  2892. {
  2893. name: "Macro",
  2894. height: math.unit(100, "feet"),
  2895. default: true
  2896. },
  2897. {
  2898. name: "Macro+",
  2899. height: math.unit(2000, "feet")
  2900. },
  2901. {
  2902. name: "True Form",
  2903. height: math.unit(8924, "miles")
  2904. }
  2905. ]
  2906. ))
  2907. characterMakers.push(() => makeCharacter(
  2908. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2909. {
  2910. front: {
  2911. height: math.unit(2, "meter"),
  2912. weight: math.unit(120, "kg"),
  2913. name: "Front",
  2914. image: {
  2915. source: "./media/characters/ggv/front.svg"
  2916. }
  2917. },
  2918. side: {
  2919. height: math.unit(2, "meter"),
  2920. weight: math.unit(120, "kg"),
  2921. name: "Side",
  2922. image: {
  2923. source: "./media/characters/ggv/side.svg"
  2924. }
  2925. }
  2926. },
  2927. [
  2928. {
  2929. name: "Extremely Puny",
  2930. height: math.unit(9 + 5 / 12, "feet")
  2931. },
  2932. {
  2933. name: "Horribly Small",
  2934. height: math.unit(47.7, "miles"),
  2935. default: true
  2936. },
  2937. {
  2938. name: "Reasonably Sized",
  2939. height: math.unit(25000, "parsecs")
  2940. },
  2941. {
  2942. name: "Slightly Uncompressed",
  2943. height: math.unit(7.77e31, "parsecs")
  2944. },
  2945. {
  2946. name: "Omniversal",
  2947. height: math.unit(1e300, "meters")
  2948. },
  2949. ]
  2950. ))
  2951. characterMakers.push(() => makeCharacter(
  2952. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  2953. {
  2954. front: {
  2955. height: math.unit(2, "meter"),
  2956. weight: math.unit(75, "lb"),
  2957. name: "Front",
  2958. image: {
  2959. source: "./media/characters/napalm/front.svg"
  2960. }
  2961. },
  2962. back: {
  2963. height: math.unit(2, "meter"),
  2964. weight: math.unit(75, "lb"),
  2965. name: "Back",
  2966. image: {
  2967. source: "./media/characters/napalm/back.svg"
  2968. }
  2969. }
  2970. },
  2971. [
  2972. {
  2973. name: "Standard",
  2974. height: math.unit(55, "feet"),
  2975. default: true
  2976. }
  2977. ]
  2978. ))
  2979. characterMakers.push(() => makeCharacter(
  2980. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  2981. {
  2982. front: {
  2983. height: math.unit(7 + 5 / 6, "feet"),
  2984. weight: math.unit(325, "lb"),
  2985. name: "Front",
  2986. image: {
  2987. source: "./media/characters/asana/front.svg",
  2988. extra: 1128 / 1068
  2989. }
  2990. },
  2991. back: {
  2992. height: math.unit(7 + 5 / 6, "feet"),
  2993. weight: math.unit(325, "lb"),
  2994. name: "Back",
  2995. image: {
  2996. source: "./media/characters/asana/back.svg",
  2997. extra: 1128 / 1068
  2998. }
  2999. },
  3000. },
  3001. [
  3002. {
  3003. name: "Standard",
  3004. height: math.unit(7 + 5 / 6, "feet"),
  3005. default: true
  3006. },
  3007. {
  3008. name: "Large",
  3009. height: math.unit(10, "meters")
  3010. },
  3011. {
  3012. name: "Macro",
  3013. height: math.unit(2500, "meters")
  3014. },
  3015. {
  3016. name: "Megamacro",
  3017. height: math.unit(5e6, "meters")
  3018. },
  3019. {
  3020. name: "Examacro",
  3021. height: math.unit(5e12, "lightyears")
  3022. },
  3023. {
  3024. name: "Max Size",
  3025. height: math.unit(1e31, "lightyears")
  3026. }
  3027. ]
  3028. ))
  3029. characterMakers.push(() => makeCharacter(
  3030. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3031. {
  3032. front: {
  3033. height: math.unit(2, "meter"),
  3034. weight: math.unit(60, "kg"),
  3035. name: "Front",
  3036. image: {
  3037. source: "./media/characters/ebony/front.svg",
  3038. bottom: 0.03,
  3039. extra: 1045 / 810 + 0.03
  3040. }
  3041. },
  3042. side: {
  3043. height: math.unit(2, "meter"),
  3044. weight: math.unit(60, "kg"),
  3045. name: "Side",
  3046. image: {
  3047. source: "./media/characters/ebony/side.svg",
  3048. bottom: 0.03,
  3049. extra: 1045 / 810 + 0.03
  3050. }
  3051. },
  3052. back: {
  3053. height: math.unit(2, "meter"),
  3054. weight: math.unit(60, "kg"),
  3055. name: "Back",
  3056. image: {
  3057. source: "./media/characters/ebony/back.svg",
  3058. bottom: 0.01,
  3059. extra: 1045 / 810 + 0.01
  3060. }
  3061. },
  3062. },
  3063. [
  3064. // TODO check why I did this lol
  3065. {
  3066. name: "Standard",
  3067. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3068. default: true
  3069. },
  3070. {
  3071. name: "Macro",
  3072. height: math.unit(200, "feet")
  3073. },
  3074. {
  3075. name: "Gigamacro",
  3076. height: math.unit(13000, "km")
  3077. }
  3078. ]
  3079. ))
  3080. characterMakers.push(() => makeCharacter(
  3081. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3082. {
  3083. front: {
  3084. height: math.unit(6, "feet"),
  3085. weight: math.unit(175, "lb"),
  3086. name: "Front",
  3087. image: {
  3088. source: "./media/characters/mountain/front.svg"
  3089. }
  3090. },
  3091. back: {
  3092. height: math.unit(6, "feet"),
  3093. weight: math.unit(175, "lb"),
  3094. name: "Back",
  3095. image: {
  3096. source: "./media/characters/mountain/back.svg"
  3097. }
  3098. },
  3099. },
  3100. [
  3101. {
  3102. name: "Large",
  3103. height: math.unit(20, "meters")
  3104. },
  3105. {
  3106. name: "Macro",
  3107. height: math.unit(300, "meters")
  3108. },
  3109. {
  3110. name: "Gigamacro",
  3111. height: math.unit(10000, "km"),
  3112. default: true
  3113. },
  3114. {
  3115. name: "Examacro",
  3116. height: math.unit(10e9, "lightyears")
  3117. }
  3118. ]
  3119. ))
  3120. characterMakers.push(() => makeCharacter(
  3121. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3122. {
  3123. front: {
  3124. height: math.unit(8, "feet"),
  3125. weight: math.unit(500, "lb"),
  3126. name: "Front",
  3127. image: {
  3128. source: "./media/characters/rick/front.svg"
  3129. }
  3130. }
  3131. },
  3132. [
  3133. {
  3134. name: "Normal",
  3135. height: math.unit(8, "feet"),
  3136. default: true
  3137. },
  3138. {
  3139. name: "Macro",
  3140. height: math.unit(5, "km")
  3141. }
  3142. ]
  3143. ))
  3144. characterMakers.push(() => makeCharacter(
  3145. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3146. {
  3147. front: {
  3148. height: math.unit(8, "feet"),
  3149. weight: math.unit(120, "lb"),
  3150. name: "Front",
  3151. image: {
  3152. source: "./media/characters/ona/front.svg"
  3153. }
  3154. },
  3155. frontAlt: {
  3156. height: math.unit(8, "feet"),
  3157. weight: math.unit(120, "lb"),
  3158. name: "Front (Alt)",
  3159. image: {
  3160. source: "./media/characters/ona/front-alt.svg"
  3161. }
  3162. },
  3163. back: {
  3164. height: math.unit(8, "feet"),
  3165. weight: math.unit(120, "lb"),
  3166. name: "Back",
  3167. image: {
  3168. source: "./media/characters/ona/back.svg"
  3169. }
  3170. },
  3171. foot: {
  3172. height: math.unit(1.1, "feet"),
  3173. name: "Foot",
  3174. image: {
  3175. source: "./media/characters/ona/foot.svg"
  3176. }
  3177. }
  3178. },
  3179. [
  3180. {
  3181. name: "Megamacro",
  3182. height: math.unit(70, "km"),
  3183. default: true
  3184. },
  3185. {
  3186. name: "Gigamacro",
  3187. height: math.unit(681818, "miles")
  3188. },
  3189. {
  3190. name: "Examacro",
  3191. height: math.unit(3800000, "lightyears")
  3192. },
  3193. ]
  3194. ))
  3195. characterMakers.push(() => makeCharacter(
  3196. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3197. {
  3198. front: {
  3199. height: math.unit(12, "feet"),
  3200. weight: math.unit(3000, "lb"),
  3201. name: "Front",
  3202. image: {
  3203. source: "./media/characters/mech/front.svg",
  3204. bottom: 0.025,
  3205. }
  3206. },
  3207. back: {
  3208. height: math.unit(12, "feet"),
  3209. weight: math.unit(3000, "lb"),
  3210. name: "Back",
  3211. image: {
  3212. source: "./media/characters/mech/back.svg",
  3213. bottom: 0.03,
  3214. }
  3215. }
  3216. },
  3217. [
  3218. {
  3219. name: "Normal",
  3220. height: math.unit(12, "feet")
  3221. },
  3222. {
  3223. name: "Macro",
  3224. height: math.unit(300, "feet"),
  3225. default: true
  3226. },
  3227. {
  3228. name: "Macro+",
  3229. height: math.unit(1500, "feet")
  3230. },
  3231. ]
  3232. ))
  3233. characterMakers.push(() => makeCharacter(
  3234. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3235. {
  3236. front: {
  3237. height: math.unit(1.3, "meter"),
  3238. weight: math.unit(30, "kg"),
  3239. name: "Front",
  3240. image: {
  3241. source: "./media/characters/gregory/front.svg",
  3242. }
  3243. }
  3244. },
  3245. [
  3246. {
  3247. name: "Normal",
  3248. height: math.unit(1.3, "meter"),
  3249. default: true
  3250. },
  3251. {
  3252. name: "Macro",
  3253. height: math.unit(20, "meter")
  3254. }
  3255. ]
  3256. ))
  3257. characterMakers.push(() => makeCharacter(
  3258. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3259. {
  3260. front: {
  3261. height: math.unit(2.8, "meter"),
  3262. weight: math.unit(200, "kg"),
  3263. name: "Front",
  3264. image: {
  3265. source: "./media/characters/elory/front.svg",
  3266. }
  3267. }
  3268. },
  3269. [
  3270. {
  3271. name: "Normal",
  3272. height: math.unit(2.8, "meter"),
  3273. default: true
  3274. },
  3275. {
  3276. name: "Macro",
  3277. height: math.unit(38, "meter")
  3278. }
  3279. ]
  3280. ))
  3281. characterMakers.push(() => makeCharacter(
  3282. { name: "Angelpatamon", species: ["patamon"], tags: ["anthro"] },
  3283. {
  3284. front: {
  3285. height: math.unit(470, "feet"),
  3286. weight: math.unit(924, "tons"),
  3287. name: "Front",
  3288. image: {
  3289. source: "./media/characters/angelpatamon/front.svg",
  3290. }
  3291. }
  3292. },
  3293. [
  3294. {
  3295. name: "Normal",
  3296. height: math.unit(470, "feet"),
  3297. default: true
  3298. },
  3299. {
  3300. name: "Deity Size I",
  3301. height: math.unit(28651.2, "km")
  3302. },
  3303. {
  3304. name: "Deity Size II",
  3305. height: math.unit(171907.2, "km")
  3306. }
  3307. ]
  3308. ))
  3309. characterMakers.push(() => makeCharacter(
  3310. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3311. {
  3312. side: {
  3313. height: math.unit(7.2, "meter"),
  3314. weight: math.unit(8.2, "tons"),
  3315. name: "Side",
  3316. image: {
  3317. source: "./media/characters/cryae/side.svg",
  3318. extra: 3500 / 1500
  3319. }
  3320. }
  3321. },
  3322. [
  3323. {
  3324. name: "Normal",
  3325. height: math.unit(7.2, "meter"),
  3326. default: true
  3327. }
  3328. ]
  3329. ))
  3330. characterMakers.push(() => makeCharacter(
  3331. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3332. {
  3333. front: {
  3334. height: math.unit(6, "feet"),
  3335. weight: math.unit(175, "lb"),
  3336. name: "Front",
  3337. image: {
  3338. source: "./media/characters/xera/front.svg",
  3339. extra: 2300 / 2061
  3340. }
  3341. },
  3342. side: {
  3343. height: math.unit(6, "feet"),
  3344. weight: math.unit(175, "lb"),
  3345. name: "Side",
  3346. image: {
  3347. source: "./media/characters/xera/side.svg",
  3348. extra: 2300 / 2061
  3349. }
  3350. },
  3351. back: {
  3352. height: math.unit(6, "feet"),
  3353. weight: math.unit(175, "lb"),
  3354. name: "Back",
  3355. image: {
  3356. source: "./media/characters/xera/back.svg"
  3357. }
  3358. },
  3359. },
  3360. [
  3361. {
  3362. name: "Small",
  3363. height: math.unit(10, "feet")
  3364. },
  3365. {
  3366. name: "Macro",
  3367. height: math.unit(500, "meters"),
  3368. default: true
  3369. },
  3370. {
  3371. name: "Macro+",
  3372. height: math.unit(10, "km")
  3373. },
  3374. {
  3375. name: "Gigamacro",
  3376. height: math.unit(25000, "km")
  3377. },
  3378. {
  3379. name: "Teramacro",
  3380. height: math.unit(3e6, "km")
  3381. }
  3382. ]
  3383. ))
  3384. characterMakers.push(() => makeCharacter(
  3385. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3386. {
  3387. front: {
  3388. height: math.unit(6, "feet"),
  3389. weight: math.unit(175, "lb"),
  3390. name: "Front",
  3391. image: {
  3392. source: "./media/characters/nebula/front.svg",
  3393. extra: 2600 / 2450
  3394. }
  3395. }
  3396. },
  3397. [
  3398. {
  3399. name: "Small",
  3400. height: math.unit(4.5, "meters")
  3401. },
  3402. {
  3403. name: "Macro",
  3404. height: math.unit(1500, "meters"),
  3405. default: true
  3406. },
  3407. {
  3408. name: "Megamacro",
  3409. height: math.unit(150, "km")
  3410. },
  3411. {
  3412. name: "Gigamacro",
  3413. height: math.unit(27000, "km")
  3414. }
  3415. ]
  3416. ))
  3417. characterMakers.push(() => makeCharacter(
  3418. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3419. {
  3420. front: {
  3421. height: math.unit(6, "feet"),
  3422. weight: math.unit(225, "lb"),
  3423. name: "Front",
  3424. image: {
  3425. source: "./media/characters/abysgar/front.svg"
  3426. }
  3427. }
  3428. },
  3429. [
  3430. {
  3431. name: "Small",
  3432. height: math.unit(4.5, "meters")
  3433. },
  3434. {
  3435. name: "Macro",
  3436. height: math.unit(1250, "meters"),
  3437. default: true
  3438. },
  3439. {
  3440. name: "Megamacro",
  3441. height: math.unit(125, "km")
  3442. },
  3443. {
  3444. name: "Gigamacro",
  3445. height: math.unit(26000, "km")
  3446. }
  3447. ]
  3448. ))
  3449. characterMakers.push(() => makeCharacter(
  3450. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3451. {
  3452. front: {
  3453. height: math.unit(6, "feet"),
  3454. weight: math.unit(180, "lb"),
  3455. name: "Front",
  3456. image: {
  3457. source: "./media/characters/yakuz/front.svg"
  3458. }
  3459. }
  3460. },
  3461. [
  3462. {
  3463. name: "Small",
  3464. height: math.unit(5, "meters")
  3465. },
  3466. {
  3467. name: "Macro",
  3468. height: math.unit(1500, "meters"),
  3469. default: true
  3470. },
  3471. {
  3472. name: "Megamacro",
  3473. height: math.unit(200, "km")
  3474. },
  3475. {
  3476. name: "Gigamacro",
  3477. height: math.unit(100000, "km")
  3478. }
  3479. ]
  3480. ))
  3481. characterMakers.push(() => makeCharacter(
  3482. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3483. {
  3484. front: {
  3485. height: math.unit(6, "feet"),
  3486. weight: math.unit(175, "lb"),
  3487. name: "Front",
  3488. image: {
  3489. source: "./media/characters/mirova/front.svg"
  3490. }
  3491. }
  3492. },
  3493. [
  3494. {
  3495. name: "Small",
  3496. height: math.unit(5, "meters")
  3497. },
  3498. {
  3499. name: "Macro",
  3500. height: math.unit(900, "meters"),
  3501. default: true
  3502. },
  3503. {
  3504. name: "Megamacro",
  3505. height: math.unit(135, "km")
  3506. },
  3507. {
  3508. name: "Gigamacro",
  3509. height: math.unit(20000, "km")
  3510. }
  3511. ]
  3512. ))
  3513. characterMakers.push(() => makeCharacter(
  3514. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3515. {
  3516. side: {
  3517. height: math.unit(28.35, "feet"),
  3518. weight: math.unit(99.75, "tons"),
  3519. name: "Side",
  3520. image: {
  3521. source: "./media/characters/asana-mech/side.svg"
  3522. }
  3523. }
  3524. },
  3525. [
  3526. {
  3527. name: "Normal",
  3528. height: math.unit(28.35, "feet"),
  3529. default: true
  3530. },
  3531. {
  3532. name: "Macro",
  3533. height: math.unit(2500, "feet")
  3534. },
  3535. {
  3536. name: "Megamacro",
  3537. height: math.unit(25, "miles")
  3538. },
  3539. {
  3540. name: "Examacro",
  3541. height: math.unit(6e8, "lightyears")
  3542. },
  3543. ]
  3544. ))
  3545. characterMakers.push(() => makeCharacter(
  3546. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3547. {
  3548. front: {
  3549. height: math.unit(2, "meters"),
  3550. weight: math.unit(70, "kg"),
  3551. name: "Front",
  3552. image: {
  3553. source: "./media/characters/ashtrek/front.svg",
  3554. extra: 560 / 524,
  3555. bottom: 0.01
  3556. }
  3557. },
  3558. frontArmor: {
  3559. height: math.unit(2, "meters"),
  3560. weight: math.unit(76, "kg"),
  3561. name: "Front (Armor)",
  3562. image: {
  3563. source: "./media/characters/ashtrek/front-armor.svg",
  3564. extra: 561 / 527,
  3565. bottom: 0.01
  3566. }
  3567. },
  3568. side: {
  3569. height: math.unit(2, "meters"),
  3570. weight: math.unit(70, "kg"),
  3571. name: "Side",
  3572. image: {
  3573. source: "./media/characters/ashtrek/side.svg",
  3574. extra: 1717 / 1609,
  3575. bottom: 0.005
  3576. }
  3577. },
  3578. back: {
  3579. height: math.unit(2, "meters"),
  3580. weight: math.unit(70, "kg"),
  3581. name: "Back",
  3582. image: {
  3583. source: "./media/characters/ashtrek/back.svg",
  3584. extra: 1570 / 1501
  3585. }
  3586. },
  3587. },
  3588. [
  3589. {
  3590. name: "DEFCON 5",
  3591. height: math.unit(5, "meters")
  3592. },
  3593. {
  3594. name: "DEFCON 4",
  3595. height: math.unit(500, "meters"),
  3596. default: true
  3597. },
  3598. {
  3599. name: "DEFCON 3",
  3600. height: math.unit(5, "km")
  3601. },
  3602. {
  3603. name: "DEFCON 2",
  3604. height: math.unit(500, "km")
  3605. },
  3606. {
  3607. name: "DEFCON 1",
  3608. height: math.unit(500000, "km")
  3609. },
  3610. {
  3611. name: "DEFCON 0",
  3612. height: math.unit(3, "gigaparsecs")
  3613. },
  3614. ]
  3615. ))
  3616. characterMakers.push(() => makeCharacter(
  3617. { name: "Gale", species: ["monster"], tags: ["anthro"]},
  3618. {
  3619. front: {
  3620. height: math.unit(2, "meters"),
  3621. weight: math.unit(76, "kg"),
  3622. name: "Front",
  3623. image: {
  3624. source: "./media/characters/gale/front.svg"
  3625. }
  3626. },
  3627. frontAlt1: {
  3628. height: math.unit(2, "meters"),
  3629. weight: math.unit(76, "kg"),
  3630. name: "Front (Alt 1)",
  3631. image: {
  3632. source: "./media/characters/gale/front-alt-1.svg"
  3633. }
  3634. },
  3635. frontAlt2: {
  3636. height: math.unit(2, "meters"),
  3637. weight: math.unit(76, "kg"),
  3638. name: "Front (Alt 2)",
  3639. image: {
  3640. source: "./media/characters/gale/front-alt-2.svg"
  3641. }
  3642. },
  3643. },
  3644. [
  3645. {
  3646. name: "Normal",
  3647. height: math.unit(7, "feet")
  3648. },
  3649. {
  3650. name: "Macro",
  3651. height: math.unit(150, "feet"),
  3652. default: true
  3653. },
  3654. {
  3655. name: "Macro+",
  3656. height: math.unit(300, "feet")
  3657. },
  3658. ]
  3659. ))
  3660. characterMakers.push(() => makeCharacter(
  3661. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3662. {
  3663. front: {
  3664. height: math.unit(2, "meters"),
  3665. weight: math.unit(76, "kg"),
  3666. name: "Front",
  3667. image: {
  3668. source: "./media/characters/draylen/front.svg"
  3669. }
  3670. }
  3671. },
  3672. [
  3673. {
  3674. name: "Macro",
  3675. height: math.unit(150, "feet"),
  3676. default: true
  3677. }
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(7 + 9 / 12, "feet"),
  3685. weight: math.unit(379, "lbs"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/chez/front.svg"
  3689. }
  3690. },
  3691. side: {
  3692. height: math.unit(7 + 9 / 12, "feet"),
  3693. weight: math.unit(379, "lbs"),
  3694. name: "Side",
  3695. image: {
  3696. source: "./media/characters/chez/side.svg"
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Normal",
  3703. height: math.unit(7 + 9 / 12, "feet"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "God King",
  3708. height: math.unit(9750000, "meters")
  3709. }
  3710. ]
  3711. ))
  3712. characterMakers.push(() => makeCharacter(
  3713. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3714. {
  3715. front: {
  3716. height: math.unit(6, "feet"),
  3717. weight: math.unit(275, "lbs"),
  3718. name: "Front",
  3719. image: {
  3720. source: "./media/characters/kaylum/front.svg",
  3721. bottom: 0.01,
  3722. extra: 1166 / 1031
  3723. }
  3724. },
  3725. frontWingless: {
  3726. height: math.unit(6, "feet"),
  3727. weight: math.unit(275, "lbs"),
  3728. name: "Front (Wingless)",
  3729. image: {
  3730. source: "./media/characters/kaylum/front-wingless.svg",
  3731. bottom: 0.01,
  3732. extra: 1117 / 1031
  3733. }
  3734. }
  3735. },
  3736. [
  3737. {
  3738. name: "Normal",
  3739. height: math.unit(3.05, "meters")
  3740. },
  3741. {
  3742. name: "Master",
  3743. height: math.unit(5.5, "meters")
  3744. },
  3745. {
  3746. name: "Rampage",
  3747. height: math.unit(19, "meters")
  3748. },
  3749. {
  3750. name: "Macro Lite",
  3751. height: math.unit(37, "meters")
  3752. },
  3753. {
  3754. name: "Hyper Predator",
  3755. height: math.unit(61, "meters")
  3756. },
  3757. {
  3758. name: "Macro",
  3759. height: math.unit(138, "meters"),
  3760. default: true
  3761. }
  3762. ]
  3763. ))
  3764. characterMakers.push(() => makeCharacter(
  3765. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3766. {
  3767. front: {
  3768. height: math.unit(6, "feet"),
  3769. weight: math.unit(150, "lbs"),
  3770. name: "Front",
  3771. image: {
  3772. source: "./media/characters/geta/front.svg"
  3773. }
  3774. }
  3775. },
  3776. [
  3777. {
  3778. name: "Micro",
  3779. height: math.unit(3, "inches"),
  3780. default: true
  3781. },
  3782. {
  3783. name: "Normal",
  3784. height: math.unit(5 + 5 / 12, "feet")
  3785. }
  3786. ]
  3787. ))
  3788. characterMakers.push(() => makeCharacter(
  3789. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3790. {
  3791. front: {
  3792. height: math.unit(6, "feet"),
  3793. weight: math.unit(300, "lbs"),
  3794. name: "Front",
  3795. image: {
  3796. source: "./media/characters/tyrnn/front.svg"
  3797. }
  3798. }
  3799. },
  3800. [
  3801. {
  3802. name: "Main Height",
  3803. height: math.unit(355, "feet"),
  3804. default: true
  3805. },
  3806. {
  3807. name: "Fave. Height",
  3808. height: math.unit(2400, "feet")
  3809. }
  3810. ]
  3811. ))
  3812. characterMakers.push(() => makeCharacter(
  3813. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3814. {
  3815. front: {
  3816. height: math.unit(6, "feet"),
  3817. weight: math.unit(300, "lbs"),
  3818. name: "Front",
  3819. image: {
  3820. source: "./media/characters/appledectomy/front.svg"
  3821. }
  3822. }
  3823. },
  3824. [
  3825. {
  3826. name: "Macro",
  3827. height: math.unit(2500, "feet")
  3828. },
  3829. {
  3830. name: "Megamacro",
  3831. height: math.unit(50, "miles"),
  3832. default: true
  3833. },
  3834. {
  3835. name: "Gigamacro",
  3836. height: math.unit(5000, "miles")
  3837. },
  3838. {
  3839. name: "Teramacro",
  3840. height: math.unit(250000, "miles")
  3841. },
  3842. ]
  3843. ))
  3844. characterMakers.push(() => makeCharacter(
  3845. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3846. {
  3847. front: {
  3848. height: math.unit(6, "feet"),
  3849. weight: math.unit(200, "lbs"),
  3850. name: "Front",
  3851. image: {
  3852. source: "./media/characters/vulpes/front.svg",
  3853. extra: 573 / 543,
  3854. bottom: 0.033
  3855. }
  3856. },
  3857. side: {
  3858. height: math.unit(6, "feet"),
  3859. weight: math.unit(200, "lbs"),
  3860. name: "Side",
  3861. image: {
  3862. source: "./media/characters/vulpes/side.svg",
  3863. extra: 573 / 543,
  3864. bottom: 0.01
  3865. }
  3866. },
  3867. back: {
  3868. height: math.unit(6, "feet"),
  3869. weight: math.unit(200, "lbs"),
  3870. name: "Back",
  3871. image: {
  3872. source: "./media/characters/vulpes/back.svg",
  3873. extra: 573 / 543,
  3874. }
  3875. },
  3876. feet: {
  3877. height: math.unit(1.276, "feet"),
  3878. name: "Feet",
  3879. image: {
  3880. source: "./media/characters/vulpes/feet.svg"
  3881. }
  3882. },
  3883. maw: {
  3884. height: math.unit(1.18, "feet"),
  3885. name: "Maw",
  3886. image: {
  3887. source: "./media/characters/vulpes/maw.svg"
  3888. }
  3889. },
  3890. },
  3891. [
  3892. {
  3893. name: "Micro",
  3894. height: math.unit(2, "inches")
  3895. },
  3896. {
  3897. name: "Normal",
  3898. height: math.unit(6.3, "feet")
  3899. },
  3900. {
  3901. name: "Macro",
  3902. height: math.unit(850, "feet")
  3903. },
  3904. {
  3905. name: "Megamacro",
  3906. height: math.unit(7500, "feet"),
  3907. default: true
  3908. },
  3909. {
  3910. name: "Gigamacro",
  3911. height: math.unit(570000, "miles")
  3912. }
  3913. ]
  3914. ))
  3915. characterMakers.push(() => makeCharacter(
  3916. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"]},
  3917. {
  3918. front: {
  3919. height: math.unit(6, "feet"),
  3920. weight: math.unit(210, "lbs"),
  3921. name: "Front",
  3922. image: {
  3923. source: "./media/characters/rain-fallen/front.svg"
  3924. }
  3925. },
  3926. side: {
  3927. height: math.unit(6, "feet"),
  3928. weight: math.unit(210, "lbs"),
  3929. name: "Side",
  3930. image: {
  3931. source: "./media/characters/rain-fallen/side.svg"
  3932. }
  3933. },
  3934. back: {
  3935. height: math.unit(6, "feet"),
  3936. weight: math.unit(210, "lbs"),
  3937. name: "Back",
  3938. image: {
  3939. source: "./media/characters/rain-fallen/back.svg"
  3940. }
  3941. },
  3942. feral: {
  3943. height: math.unit(9, "feet"),
  3944. weight: math.unit(700, "lbs"),
  3945. name: "Feral",
  3946. image: {
  3947. source: "./media/characters/rain-fallen/feral.svg"
  3948. }
  3949. },
  3950. },
  3951. [
  3952. {
  3953. name: "Normal",
  3954. height: math.unit(5, "meter")
  3955. },
  3956. {
  3957. name: "Macro",
  3958. height: math.unit(150, "meter"),
  3959. default: true
  3960. },
  3961. {
  3962. name: "Megamacro",
  3963. height: math.unit(278e6, "meter")
  3964. },
  3965. {
  3966. name: "Gigamacro",
  3967. height: math.unit(2e9, "meter")
  3968. },
  3969. {
  3970. name: "Teramacro",
  3971. height: math.unit(8e12, "meter")
  3972. },
  3973. {
  3974. name: "Devourer",
  3975. height: math.unit(14, "zettameters")
  3976. },
  3977. {
  3978. name: "Scarlet King",
  3979. height: math.unit(18, "yottameters")
  3980. },
  3981. {
  3982. name: "Void",
  3983. height: math.unit(6.66e66, "yottameters")
  3984. }
  3985. ]
  3986. ))
  3987. characterMakers.push(() => makeCharacter(
  3988. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  3989. {
  3990. standing: {
  3991. height: math.unit(6, "feet"),
  3992. weight: math.unit(180, "lbs"),
  3993. name: "Standing",
  3994. image: {
  3995. source: "./media/characters/zaakira/standing.svg"
  3996. }
  3997. },
  3998. laying: {
  3999. height: math.unit(3, "feet"),
  4000. weight: math.unit(180, "lbs"),
  4001. name: "Laying",
  4002. image: {
  4003. source: "./media/characters/zaakira/laying.svg"
  4004. }
  4005. },
  4006. },
  4007. [
  4008. {
  4009. name: "Normal",
  4010. height: math.unit(12, "feet")
  4011. },
  4012. {
  4013. name: "Macro",
  4014. height: math.unit(279, "feet"),
  4015. default: true
  4016. }
  4017. ]
  4018. ))
  4019. characterMakers.push(() => makeCharacter(
  4020. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4021. {
  4022. front: {
  4023. height: math.unit(6, "feet"),
  4024. weight: math.unit(250, "lbs"),
  4025. name: "Front",
  4026. image: {
  4027. source: "./media/characters/sigvald/front.svg",
  4028. extra: 1000 / 850
  4029. }
  4030. },
  4031. back: {
  4032. height: math.unit(6, "feet"),
  4033. weight: math.unit(250, "lbs"),
  4034. name: "Back",
  4035. image: {
  4036. source: "./media/characters/sigvald/back.svg"
  4037. }
  4038. },
  4039. },
  4040. [
  4041. {
  4042. name: "Normal",
  4043. height: math.unit(8, "feet")
  4044. },
  4045. {
  4046. name: "Large",
  4047. height: math.unit(12, "feet")
  4048. },
  4049. {
  4050. name: "Larger",
  4051. height: math.unit(20, "feet")
  4052. },
  4053. {
  4054. name: "Macro",
  4055. height: math.unit(150, "feet")
  4056. },
  4057. {
  4058. name: "Macro+",
  4059. height: math.unit(200, "feet"),
  4060. default: true
  4061. },
  4062. ]
  4063. ))
  4064. characterMakers.push(() => makeCharacter(
  4065. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4066. {
  4067. side: {
  4068. height: math.unit(12, "feet"),
  4069. weight: math.unit(2000, "kg"),
  4070. name: "Side",
  4071. image: {
  4072. source: "./media/characters/scott/side.svg",
  4073. extra: 754/724,
  4074. bottom: 0.069
  4075. }
  4076. },
  4077. upright: {
  4078. height: math.unit(12, "feet"),
  4079. weight: math.unit(2000, "kg"),
  4080. name: "Upright",
  4081. image: {
  4082. source: "./media/characters/scott/upright.svg",
  4083. extra: 3881/3722,
  4084. bottom: 0.05
  4085. }
  4086. },
  4087. },
  4088. [
  4089. {
  4090. name: "Normal",
  4091. height: math.unit(12, "feet"),
  4092. default: true
  4093. },
  4094. ]
  4095. ))
  4096. characterMakers.push(() => makeCharacter(
  4097. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4098. {
  4099. side: {
  4100. height: math.unit(8, "meters"),
  4101. weight: math.unit(84755, "lbs"),
  4102. name: "Side",
  4103. image: {
  4104. source: "./media/characters/tobias/side.svg",
  4105. extra: 1474 / 1096,
  4106. bottom: 38.9 / 1513.1235
  4107. }
  4108. },
  4109. },
  4110. [
  4111. {
  4112. name: "Normal",
  4113. height: math.unit(8, "meters"),
  4114. default: true
  4115. },
  4116. ]
  4117. ))
  4118. characterMakers.push(() => makeCharacter(
  4119. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4120. {
  4121. front: {
  4122. height: math.unit(5.5, "feet"),
  4123. weight: math.unit(400, "lbs"),
  4124. name: "Front",
  4125. image: {
  4126. source: "./media/characters/kieran/front.svg",
  4127. extra: 2694/2364,
  4128. bottom: 217/2908
  4129. }
  4130. },
  4131. side: {
  4132. height: math.unit(5.5, "feet"),
  4133. weight: math.unit(400, "lbs"),
  4134. name: "Side",
  4135. image: {
  4136. source: "./media/characters/kieran/side.svg",
  4137. extra: 875/777,
  4138. bottom: 84.6/959
  4139. }
  4140. },
  4141. },
  4142. [
  4143. {
  4144. name: "Normal",
  4145. height: math.unit(5.5, "feet"),
  4146. default: true
  4147. },
  4148. ]
  4149. ))
  4150. characterMakers.push(() => makeCharacter(
  4151. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4152. {
  4153. side: {
  4154. height: math.unit(2, "meters"),
  4155. weight: math.unit(70, "kg"),
  4156. name: "Side",
  4157. image: {
  4158. source: "./media/characters/sanya/side.svg",
  4159. bottom: 0.02,
  4160. extra: 1.02
  4161. }
  4162. },
  4163. },
  4164. [
  4165. {
  4166. name: "Small",
  4167. height: math.unit(2, "meters")
  4168. },
  4169. {
  4170. name: "Normal",
  4171. height: math.unit(3, "meters")
  4172. },
  4173. {
  4174. name: "Macro",
  4175. height: math.unit(16, "meters"),
  4176. default: true
  4177. },
  4178. ]
  4179. ))
  4180. characterMakers.push(() => makeCharacter(
  4181. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4182. {
  4183. side: {
  4184. height: math.unit(2, "meters"),
  4185. weight: math.unit(120, "kg"),
  4186. name: "Front",
  4187. image: {
  4188. source: "./media/characters/miranda/front.svg",
  4189. extra: 10.6 / 10
  4190. }
  4191. },
  4192. },
  4193. [
  4194. {
  4195. name: "Normal",
  4196. height: math.unit(10, "feet"),
  4197. default: true
  4198. }
  4199. ]
  4200. ))
  4201. characterMakers.push(() => makeCharacter(
  4202. { name: "James", species: ["deer"], tags: ["anthro"] },
  4203. {
  4204. side: {
  4205. height: math.unit(2, "meters"),
  4206. weight: math.unit(100, "kg"),
  4207. name: "Front",
  4208. image: {
  4209. source: "./media/characters/james/front.svg",
  4210. extra: 10 / 8.5
  4211. }
  4212. },
  4213. },
  4214. [
  4215. {
  4216. name: "Normal",
  4217. height: math.unit(8.5, "feet"),
  4218. default: true
  4219. }
  4220. ]
  4221. ))
  4222. characterMakers.push(() => makeCharacter(
  4223. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4224. {
  4225. side: {
  4226. height: math.unit(9.5, "feet"),
  4227. weight: math.unit(2500, "lbs"),
  4228. name: "Side",
  4229. image: {
  4230. source: "./media/characters/heather/side.svg"
  4231. }
  4232. },
  4233. },
  4234. [
  4235. {
  4236. name: "Normal",
  4237. height: math.unit(9.5, "feet"),
  4238. default: true
  4239. }
  4240. ]
  4241. ))
  4242. characterMakers.push(() => makeCharacter(
  4243. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4244. {
  4245. side: {
  4246. height: math.unit(6.5, "feet"),
  4247. weight: math.unit(400, "lbs"),
  4248. name: "Side",
  4249. image: {
  4250. source: "./media/characters/lukas/side.svg",
  4251. extra: 7.25 / 6.5
  4252. }
  4253. },
  4254. },
  4255. [
  4256. {
  4257. name: "Normal",
  4258. height: math.unit(6.5, "feet"),
  4259. default: true
  4260. }
  4261. ]
  4262. ))
  4263. characterMakers.push(() => makeCharacter(
  4264. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4265. {
  4266. side: {
  4267. height: math.unit(5, "feet"),
  4268. weight: math.unit(3000, "lbs"),
  4269. name: "Side",
  4270. image: {
  4271. source: "./media/characters/louise/side.svg"
  4272. }
  4273. },
  4274. },
  4275. [
  4276. {
  4277. name: "Normal",
  4278. height: math.unit(5, "feet"),
  4279. default: true
  4280. }
  4281. ]
  4282. ))
  4283. characterMakers.push(() => makeCharacter(
  4284. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4285. {
  4286. side: {
  4287. height: math.unit(6, "feet"),
  4288. weight: math.unit(150, "lbs"),
  4289. name: "Side",
  4290. image: {
  4291. source: "./media/characters/ramona/side.svg"
  4292. }
  4293. },
  4294. },
  4295. [
  4296. {
  4297. name: "Normal",
  4298. height: math.unit(5.3, "meters"),
  4299. default: true
  4300. },
  4301. {
  4302. name: "Macro",
  4303. height: math.unit(20, "stories")
  4304. },
  4305. {
  4306. name: "Macro+",
  4307. height: math.unit(50, "stories")
  4308. },
  4309. ]
  4310. ))
  4311. characterMakers.push(() => makeCharacter(
  4312. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4313. {
  4314. standing: {
  4315. height: math.unit(5.75, "feet"),
  4316. weight: math.unit(160, "lbs"),
  4317. name: "Standing",
  4318. image: {
  4319. source: "./media/characters/deerpuff/standing.svg",
  4320. extra: 682 / 624
  4321. }
  4322. },
  4323. sitting: {
  4324. height: math.unit(5.75 / 1.79, "feet"),
  4325. weight: math.unit(160, "lbs"),
  4326. name: "Sitting",
  4327. image: {
  4328. source: "./media/characters/deerpuff/sitting.svg",
  4329. bottom: 44 / 400,
  4330. extra: 1
  4331. }
  4332. },
  4333. taurLaying: {
  4334. height: math.unit(6, "feet"),
  4335. weight: math.unit(400, "lbs"),
  4336. name: "Taur (Laying)",
  4337. image: {
  4338. source: "./media/characters/deerpuff/taur-laying.svg"
  4339. }
  4340. },
  4341. },
  4342. [
  4343. {
  4344. name: "Puffball",
  4345. height: math.unit(6, "inches")
  4346. },
  4347. {
  4348. name: "Normalpuff",
  4349. height: math.unit(5.75, "feet")
  4350. },
  4351. {
  4352. name: "Macropuff",
  4353. height: math.unit(1500, "feet"),
  4354. default: true
  4355. },
  4356. {
  4357. name: "Megapuff",
  4358. height: math.unit(500, "miles")
  4359. },
  4360. {
  4361. name: "Gigapuff",
  4362. height: math.unit(250000, "miles")
  4363. },
  4364. {
  4365. name: "Omegapuff",
  4366. height: math.unit(1000, "lightyears")
  4367. },
  4368. ]
  4369. ))
  4370. characterMakers.push(() => makeCharacter(
  4371. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4372. {
  4373. stomping: {
  4374. height: math.unit(6, "feet"),
  4375. weight: math.unit(170, "lbs"),
  4376. name: "Stomping",
  4377. image: {
  4378. source: "./media/characters/vivian/stomping.svg"
  4379. }
  4380. },
  4381. sitting: {
  4382. height: math.unit(6 / 1.75, "feet"),
  4383. weight: math.unit(170, "lbs"),
  4384. name: "Sitting",
  4385. image: {
  4386. source: "./media/characters/vivian/sitting.svg",
  4387. bottom: 1 / 6.4,
  4388. extra: 1,
  4389. }
  4390. },
  4391. },
  4392. [
  4393. {
  4394. name: "Normal",
  4395. height: math.unit(7, "feet"),
  4396. default: true
  4397. },
  4398. {
  4399. name: "Macro",
  4400. height: math.unit(10, "stories")
  4401. },
  4402. {
  4403. name: "Macro+",
  4404. height: math.unit(30, "stories")
  4405. },
  4406. {
  4407. name: "Megamacro",
  4408. height: math.unit(10, "miles")
  4409. },
  4410. {
  4411. name: "Megamacro+",
  4412. height: math.unit(2750000, "meters")
  4413. },
  4414. ]
  4415. ))
  4416. characterMakers.push(() => makeCharacter(
  4417. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4418. {
  4419. front: {
  4420. height: math.unit(6, "feet"),
  4421. weight: math.unit(160, "lbs"),
  4422. name: "Front",
  4423. image: {
  4424. source: "./media/characters/prince/front.svg",
  4425. extra: 3400 / 3000
  4426. }
  4427. },
  4428. jumping: {
  4429. height: math.unit(6, "feet"),
  4430. weight: math.unit(160, "lbs"),
  4431. name: "Jumping",
  4432. image: {
  4433. source: "./media/characters/prince/jump.svg",
  4434. extra: 2555 / 2134
  4435. }
  4436. },
  4437. },
  4438. [
  4439. {
  4440. name: "Normal",
  4441. height: math.unit(7.75, "feet"),
  4442. default: true
  4443. },
  4444. {
  4445. name: "Not cute",
  4446. height: math.unit(17, "feet")
  4447. },
  4448. {
  4449. name: "I said NOT",
  4450. height: math.unit(91, "feet")
  4451. },
  4452. {
  4453. name: "Please stop",
  4454. height: math.unit(560, "feet")
  4455. },
  4456. {
  4457. name: "What have you done",
  4458. height: math.unit(2200, "feet")
  4459. },
  4460. {
  4461. name: "Deer God",
  4462. height: math.unit(3.6, "miles")
  4463. },
  4464. ]
  4465. ))
  4466. characterMakers.push(() => makeCharacter(
  4467. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4468. {
  4469. standing: {
  4470. height: math.unit(6, "feet"),
  4471. weight: math.unit(300, "lbs"),
  4472. name: "Standing",
  4473. image: {
  4474. source: "./media/characters/psymon/standing.svg",
  4475. extra: 1888 / 1810,
  4476. bottom: 0.05
  4477. }
  4478. },
  4479. slithering: {
  4480. height: math.unit(6, "feet"),
  4481. weight: math.unit(300, "lbs"),
  4482. name: "Slithering",
  4483. image: {
  4484. source: "./media/characters/psymon/slithering.svg",
  4485. extra: 1330 / 1224
  4486. }
  4487. },
  4488. slitheringAlt: {
  4489. height: math.unit(6, "feet"),
  4490. weight: math.unit(300, "lbs"),
  4491. name: "Slithering (Alt)",
  4492. image: {
  4493. source: "./media/characters/psymon/slithering-alt.svg",
  4494. extra: 1330 / 1224
  4495. }
  4496. },
  4497. },
  4498. [
  4499. {
  4500. name: "Normal",
  4501. height: math.unit(11.25, "feet"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "Large",
  4506. height: math.unit(27, "feet")
  4507. },
  4508. {
  4509. name: "Giant",
  4510. height: math.unit(87, "feet")
  4511. },
  4512. {
  4513. name: "Macro",
  4514. height: math.unit(365, "feet")
  4515. },
  4516. {
  4517. name: "Megamacro",
  4518. height: math.unit(3, "miles")
  4519. },
  4520. {
  4521. name: "World Serpent",
  4522. height: math.unit(8000, "miles")
  4523. },
  4524. ]
  4525. ))
  4526. characterMakers.push(() => makeCharacter(
  4527. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4528. {
  4529. front: {
  4530. height: math.unit(6, "feet"),
  4531. weight: math.unit(180, "lbs"),
  4532. name: "Front",
  4533. image: {
  4534. source: "./media/characters/daimos/front.svg",
  4535. extra: 4160 / 3897,
  4536. bottom: 0.021
  4537. }
  4538. }
  4539. },
  4540. [
  4541. {
  4542. name: "Normal",
  4543. height: math.unit(8, "feet"),
  4544. default: true
  4545. },
  4546. {
  4547. name: "Big Dog",
  4548. height: math.unit(22, "feet")
  4549. },
  4550. {
  4551. name: "Macro",
  4552. height: math.unit(127, "feet")
  4553. },
  4554. {
  4555. name: "Megamacro",
  4556. height: math.unit(3600, "feet")
  4557. },
  4558. ]
  4559. ))
  4560. characterMakers.push(() => makeCharacter(
  4561. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4562. {
  4563. side: {
  4564. height: math.unit(6, "feet"),
  4565. weight: math.unit(180, "lbs"),
  4566. name: "Side",
  4567. image: {
  4568. source: "./media/characters/blake/side.svg",
  4569. extra: 1212 / 1120,
  4570. bottom: 0.05
  4571. }
  4572. },
  4573. crouched: {
  4574. height: math.unit(6 * 0.57, "feet"),
  4575. weight: math.unit(180, "lbs"),
  4576. name: "Crouched",
  4577. image: {
  4578. source: "./media/characters/blake/crouched.svg",
  4579. extra: 840 / 587,
  4580. bottom: 0.04
  4581. }
  4582. },
  4583. bent: {
  4584. height: math.unit(6 * 0.75, "feet"),
  4585. weight: math.unit(180, "lbs"),
  4586. name: "Bent",
  4587. image: {
  4588. source: "./media/characters/blake/bent.svg",
  4589. extra: 592 / 544,
  4590. bottom: 0.035
  4591. }
  4592. },
  4593. },
  4594. [
  4595. {
  4596. name: "Normal",
  4597. height: math.unit(8 + 1 / 6, "feet"),
  4598. default: true
  4599. },
  4600. {
  4601. name: "Big Backside",
  4602. height: math.unit(37, "feet")
  4603. },
  4604. {
  4605. name: "Subway Shredder",
  4606. height: math.unit(72, "feet")
  4607. },
  4608. {
  4609. name: "City Carver",
  4610. height: math.unit(1675, "feet")
  4611. },
  4612. {
  4613. name: "Tectonic Tweaker",
  4614. height: math.unit(2300, "miles")
  4615. },
  4616. ]
  4617. ))
  4618. characterMakers.push(() => makeCharacter(
  4619. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4620. {
  4621. front: {
  4622. height: math.unit(6, "feet"),
  4623. weight: math.unit(180, "lbs"),
  4624. name: "Front",
  4625. image: {
  4626. source: "./media/characters/guisetto/front.svg",
  4627. extra: 856 / 817,
  4628. bottom: 0.06
  4629. }
  4630. },
  4631. airborne: {
  4632. height: math.unit(6, "feet"),
  4633. weight: math.unit(180, "lbs"),
  4634. name: "Airborne",
  4635. image: {
  4636. source: "./media/characters/guisetto/airborne.svg",
  4637. extra: 584 / 525
  4638. }
  4639. },
  4640. },
  4641. [
  4642. {
  4643. name: "Normal",
  4644. height: math.unit(10 + 11 / 12, "feet"),
  4645. default: true
  4646. },
  4647. {
  4648. name: "Large",
  4649. height: math.unit(35, "feet")
  4650. },
  4651. {
  4652. name: "Macro",
  4653. height: math.unit(475, "feet")
  4654. },
  4655. ]
  4656. ))
  4657. characterMakers.push(() => makeCharacter(
  4658. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4659. {
  4660. front: {
  4661. height: math.unit(6, "feet"),
  4662. weight: math.unit(180, "lbs"),
  4663. name: "Front",
  4664. image: {
  4665. source: "./media/characters/luxor/front.svg",
  4666. extra: 2940 / 2152
  4667. }
  4668. },
  4669. back: {
  4670. height: math.unit(6, "feet"),
  4671. weight: math.unit(180, "lbs"),
  4672. name: "Back",
  4673. image: {
  4674. source: "./media/characters/luxor/back.svg",
  4675. extra: 1083 / 960
  4676. }
  4677. },
  4678. },
  4679. [
  4680. {
  4681. name: "Normal",
  4682. height: math.unit(5 + 5 / 6, "feet"),
  4683. default: true
  4684. },
  4685. {
  4686. name: "Lamp",
  4687. height: math.unit(50, "feet")
  4688. },
  4689. {
  4690. name: "Lämp",
  4691. height: math.unit(300, "feet")
  4692. },
  4693. {
  4694. name: "The sun is a lamp",
  4695. height: math.unit(250000, "miles")
  4696. },
  4697. ]
  4698. ))
  4699. characterMakers.push(() => makeCharacter(
  4700. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4701. {
  4702. front: {
  4703. height: math.unit(6, "feet"),
  4704. weight: math.unit(50, "lbs"),
  4705. name: "Front",
  4706. image: {
  4707. source: "./media/characters/huoyan/front.svg"
  4708. }
  4709. },
  4710. side: {
  4711. height: math.unit(6, "feet"),
  4712. weight: math.unit(180, "lbs"),
  4713. name: "Side",
  4714. image: {
  4715. source: "./media/characters/huoyan/side.svg"
  4716. }
  4717. },
  4718. },
  4719. [
  4720. {
  4721. name: "Chef",
  4722. height: math.unit(9, "feet")
  4723. },
  4724. {
  4725. name: "Normal",
  4726. height: math.unit(65, "feet"),
  4727. default: true
  4728. },
  4729. {
  4730. name: "Macro",
  4731. height: math.unit(780, "feet")
  4732. },
  4733. {
  4734. name: "Flaming Mountain",
  4735. height: math.unit(4.8, "miles")
  4736. },
  4737. {
  4738. name: "Celestial",
  4739. height: math.unit(765000, "miles")
  4740. },
  4741. ]
  4742. ))
  4743. characterMakers.push(() => makeCharacter(
  4744. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4745. {
  4746. front: {
  4747. height: math.unit(5 + 3 / 4, "feet"),
  4748. weight: math.unit(120, "lbs"),
  4749. name: "Front",
  4750. image: {
  4751. source: "./media/characters/tails/front.svg"
  4752. }
  4753. }
  4754. },
  4755. [
  4756. {
  4757. name: "Normal",
  4758. height: math.unit(5 + 3 / 4, "feet"),
  4759. default: true
  4760. }
  4761. ]
  4762. ))
  4763. characterMakers.push(() => makeCharacter(
  4764. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4765. {
  4766. front: {
  4767. height: math.unit(4, "feet"),
  4768. weight: math.unit(50, "lbs"),
  4769. name: "Front",
  4770. image: {
  4771. source: "./media/characters/rainy/front.svg"
  4772. }
  4773. }
  4774. },
  4775. [
  4776. {
  4777. name: "Macro",
  4778. height: math.unit(800, "feet"),
  4779. default: true
  4780. }
  4781. ]
  4782. ))
  4783. characterMakers.push(() => makeCharacter(
  4784. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4785. {
  4786. front: {
  4787. height: math.unit(6, "feet"),
  4788. weight: math.unit(150, "lbs"),
  4789. name: "Front",
  4790. image: {
  4791. source: "./media/characters/rainier/front.svg"
  4792. }
  4793. }
  4794. },
  4795. [
  4796. {
  4797. name: "Micro",
  4798. height: math.unit(2, "mm"),
  4799. default: true
  4800. }
  4801. ]
  4802. ))
  4803. characterMakers.push(() => makeCharacter(
  4804. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4805. {
  4806. front: {
  4807. height: math.unit(6, "feet"),
  4808. weight: math.unit(180, "lbs"),
  4809. name: "Front",
  4810. image: {
  4811. source: "./media/characters/andy/front.svg"
  4812. }
  4813. }
  4814. },
  4815. [
  4816. {
  4817. name: "Normal",
  4818. height: math.unit(8, "feet"),
  4819. default: true
  4820. },
  4821. {
  4822. name: "Macro",
  4823. height: math.unit(1000, "feet")
  4824. },
  4825. {
  4826. name: "Megamacro",
  4827. height: math.unit(5, "miles")
  4828. },
  4829. {
  4830. name: "Gigamacro",
  4831. height: math.unit(5000, "miles")
  4832. },
  4833. ]
  4834. ))
  4835. characterMakers.push(() => makeCharacter(
  4836. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4837. {
  4838. front: {
  4839. height: math.unit(6, "feet"),
  4840. weight: math.unit(210, "lbs"),
  4841. name: "Front",
  4842. image: {
  4843. source: "./media/characters/cimmaron/front-sfw.svg",
  4844. extra: 701 / 676,
  4845. bottom: 0.046
  4846. }
  4847. },
  4848. back: {
  4849. height: math.unit(6, "feet"),
  4850. weight: math.unit(210, "lbs"),
  4851. name: "Back",
  4852. image: {
  4853. source: "./media/characters/cimmaron/back-sfw.svg",
  4854. extra: 701 / 676,
  4855. bottom: 0.046
  4856. }
  4857. },
  4858. frontNsfw: {
  4859. height: math.unit(6, "feet"),
  4860. weight: math.unit(210, "lbs"),
  4861. name: "Front (NSFW)",
  4862. image: {
  4863. source: "./media/characters/cimmaron/front-nsfw.svg",
  4864. extra: 701 / 676,
  4865. bottom: 0.046
  4866. }
  4867. },
  4868. backNsfw: {
  4869. height: math.unit(6, "feet"),
  4870. weight: math.unit(210, "lbs"),
  4871. name: "Back (NSFW)",
  4872. image: {
  4873. source: "./media/characters/cimmaron/back-nsfw.svg",
  4874. extra: 701 / 676,
  4875. bottom: 0.046
  4876. }
  4877. },
  4878. dick: {
  4879. height: math.unit(1.714, "feet"),
  4880. name: "Dick",
  4881. image: {
  4882. source: "./media/characters/cimmaron/dick.svg"
  4883. }
  4884. },
  4885. },
  4886. [
  4887. {
  4888. name: "Normal",
  4889. height: math.unit(6, "feet"),
  4890. default: true
  4891. },
  4892. {
  4893. name: "Macro Mayor",
  4894. height: math.unit(350, "meters")
  4895. },
  4896. ]
  4897. ))
  4898. characterMakers.push(() => makeCharacter(
  4899. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  4900. {
  4901. front: {
  4902. height: math.unit(6, "feet"),
  4903. weight: math.unit(200, "lbs"),
  4904. name: "Front",
  4905. image: {
  4906. source: "./media/characters/akari/front.svg",
  4907. extra: 962 / 901,
  4908. bottom: 0.04
  4909. }
  4910. }
  4911. },
  4912. [
  4913. {
  4914. name: "Micro",
  4915. height: math.unit(5, "inches"),
  4916. default: true
  4917. },
  4918. {
  4919. name: "Normal",
  4920. height: math.unit(7, "feet")
  4921. },
  4922. ]
  4923. ))
  4924. characterMakers.push(() => makeCharacter(
  4925. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  4926. {
  4927. front: {
  4928. height: math.unit(6, "feet"),
  4929. weight: math.unit(140, "lbs"),
  4930. name: "Front",
  4931. image: {
  4932. source: "./media/characters/cynosura/front.svg",
  4933. extra: 896 / 847
  4934. }
  4935. },
  4936. back: {
  4937. height: math.unit(6, "feet"),
  4938. weight: math.unit(140, "lbs"),
  4939. name: "Back",
  4940. image: {
  4941. source: "./media/characters/cynosura/back.svg",
  4942. extra: 1365 / 1250
  4943. }
  4944. },
  4945. },
  4946. [
  4947. {
  4948. name: "Micro",
  4949. height: math.unit(4, "inches")
  4950. },
  4951. {
  4952. name: "Normal",
  4953. height: math.unit(5.75, "feet"),
  4954. default: true
  4955. },
  4956. {
  4957. name: "Tall",
  4958. height: math.unit(10, "feet")
  4959. },
  4960. {
  4961. name: "Big",
  4962. height: math.unit(20, "feet")
  4963. },
  4964. {
  4965. name: "Macro",
  4966. height: math.unit(50, "feet")
  4967. },
  4968. ]
  4969. ))
  4970. characterMakers.push(() => makeCharacter(
  4971. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  4972. {
  4973. front: {
  4974. height: math.unit(6, "feet"),
  4975. weight: math.unit(170, "lbs"),
  4976. name: "Front",
  4977. image: {
  4978. source: "./media/characters/gin/front.svg",
  4979. extra: 1.053,
  4980. bottom: 0.025
  4981. }
  4982. },
  4983. foot: {
  4984. height: math.unit(6 / 4.25, "feet"),
  4985. name: "Foot",
  4986. image: {
  4987. source: "./media/characters/gin/foot.svg"
  4988. }
  4989. },
  4990. sole: {
  4991. height: math.unit(6 / 4.40, "feet"),
  4992. name: "Sole",
  4993. image: {
  4994. source: "./media/characters/gin/sole.svg"
  4995. }
  4996. },
  4997. },
  4998. [
  4999. {
  5000. name: "Normal",
  5001. height: math.unit(13 + 2/12, "feet")
  5002. },
  5003. {
  5004. name: "Macro",
  5005. height: math.unit(1500, "feet")
  5006. },
  5007. {
  5008. name: "Megamacro",
  5009. height: math.unit(200, "miles"),
  5010. default: true
  5011. },
  5012. {
  5013. name: "Gigamacro",
  5014. height: math.unit(500, "megameters")
  5015. },
  5016. {
  5017. name: "Teramacro",
  5018. height: math.unit(15, "lightyears")
  5019. }
  5020. ]
  5021. ))
  5022. characterMakers.push(() => makeCharacter(
  5023. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5024. {
  5025. front: {
  5026. height: math.unit(6 + 1 / 6, "feet"),
  5027. weight: math.unit(178, "lbs"),
  5028. name: "Front",
  5029. image: {
  5030. source: "./media/characters/guy/front.svg"
  5031. }
  5032. }
  5033. },
  5034. [
  5035. {
  5036. name: "Normal",
  5037. height: math.unit(6 + 1 / 6, "feet"),
  5038. default: true
  5039. },
  5040. {
  5041. name: "Large",
  5042. height: math.unit(25 + 7 / 12, "feet")
  5043. },
  5044. {
  5045. name: "Macro",
  5046. height: math.unit(60 + 9 / 12, "feet")
  5047. },
  5048. {
  5049. name: "Macro+",
  5050. height: math.unit(246, "feet")
  5051. },
  5052. {
  5053. name: "Macro++",
  5054. height: math.unit(878, "feet")
  5055. }
  5056. ]
  5057. ))
  5058. characterMakers.push(() => makeCharacter(
  5059. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5060. {
  5061. front: {
  5062. height: math.unit(9, "feet"),
  5063. weight: math.unit(800, "lbs"),
  5064. name: "Front",
  5065. image: {
  5066. source: "./media/characters/tiberius/front.svg",
  5067. extra: 2295 / 2071
  5068. }
  5069. },
  5070. back: {
  5071. height: math.unit(9, "feet"),
  5072. weight: math.unit(800, "lbs"),
  5073. name: "Back",
  5074. image: {
  5075. source: "./media/characters/tiberius/back.svg",
  5076. extra: 2373 / 2160
  5077. }
  5078. },
  5079. },
  5080. [
  5081. {
  5082. name: "Normal",
  5083. height: math.unit(9, "feet"),
  5084. default: true
  5085. }
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5090. {
  5091. front: {
  5092. height: math.unit(6, "feet"),
  5093. weight: math.unit(600, "lbs"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/surgo/front.svg",
  5097. extra: 3591 / 2227
  5098. }
  5099. },
  5100. back: {
  5101. height: math.unit(6, "feet"),
  5102. weight: math.unit(600, "lbs"),
  5103. name: "Back",
  5104. image: {
  5105. source: "./media/characters/surgo/back.svg",
  5106. extra: 3557 / 2228
  5107. }
  5108. },
  5109. laying: {
  5110. height: math.unit(6 * 0.85, "feet"),
  5111. weight: math.unit(600, "lbs"),
  5112. name: "Laying",
  5113. image: {
  5114. source: "./media/characters/surgo/laying.svg"
  5115. }
  5116. },
  5117. },
  5118. [
  5119. {
  5120. name: "Normal",
  5121. height: math.unit(6, "feet"),
  5122. default: true
  5123. }
  5124. ]
  5125. ))
  5126. characterMakers.push(() => makeCharacter(
  5127. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5128. {
  5129. side: {
  5130. height: math.unit(6, "feet"),
  5131. weight: math.unit(150, "lbs"),
  5132. name: "Side",
  5133. image: {
  5134. source: "./media/characters/cibus/side.svg",
  5135. extra: 800 / 400
  5136. }
  5137. },
  5138. },
  5139. [
  5140. {
  5141. name: "Normal",
  5142. height: math.unit(6, "feet"),
  5143. default: true
  5144. }
  5145. ]
  5146. ))
  5147. characterMakers.push(() => makeCharacter(
  5148. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5149. {
  5150. front: {
  5151. height: math.unit(6, "feet"),
  5152. weight: math.unit(240, "lbs"),
  5153. name: "Front",
  5154. image: {
  5155. source: "./media/characters/nibbles/front.svg"
  5156. }
  5157. },
  5158. side: {
  5159. height: math.unit(6, "feet"),
  5160. weight: math.unit(240, "lbs"),
  5161. name: "Side",
  5162. image: {
  5163. source: "./media/characters/nibbles/side.svg"
  5164. }
  5165. },
  5166. },
  5167. [
  5168. {
  5169. name: "Normal",
  5170. height: math.unit(9, "feet"),
  5171. default: true
  5172. }
  5173. ]
  5174. ))
  5175. characterMakers.push(() => makeCharacter(
  5176. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5177. {
  5178. side: {
  5179. height: math.unit(5 + 1 / 6, "feet"),
  5180. weight: math.unit(130, "lbs"),
  5181. name: "Side",
  5182. image: {
  5183. source: "./media/characters/rikky/side.svg"
  5184. }
  5185. },
  5186. },
  5187. [
  5188. {
  5189. name: "Normal",
  5190. height: math.unit(5 + 1 / 6, "feet")
  5191. },
  5192. {
  5193. name: "Macro",
  5194. height: math.unit(152, "feet"),
  5195. default: true
  5196. },
  5197. {
  5198. name: "Megamacro",
  5199. height: math.unit(7, "miles")
  5200. }
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5205. {
  5206. side: {
  5207. height: math.unit(370, "cm"),
  5208. weight: math.unit(350, "lbs"),
  5209. name: "Side",
  5210. image: {
  5211. source: "./media/characters/malfressa/side.svg"
  5212. }
  5213. },
  5214. walking: {
  5215. height: math.unit(370, "cm"),
  5216. weight: math.unit(350, "lbs"),
  5217. name: "Walking",
  5218. image: {
  5219. source: "./media/characters/malfressa/walking.svg"
  5220. }
  5221. },
  5222. feral: {
  5223. height: math.unit(2500, "cm"),
  5224. weight: math.unit(100000, "lbs"),
  5225. name: "Feral",
  5226. image: {
  5227. source: "./media/characters/malfressa/feral.svg",
  5228. extra: 2108 / 837,
  5229. bottom: 0.02
  5230. }
  5231. },
  5232. },
  5233. [
  5234. {
  5235. name: "Normal",
  5236. height: math.unit(370, "cm")
  5237. },
  5238. {
  5239. name: "Macro",
  5240. height: math.unit(300, "meters"),
  5241. default: true
  5242. }
  5243. ]
  5244. ))
  5245. characterMakers.push(() => makeCharacter(
  5246. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5247. {
  5248. front: {
  5249. height: math.unit(6, "feet"),
  5250. weight: math.unit(60, "kg"),
  5251. name: "Front",
  5252. image: {
  5253. source: "./media/characters/jaro/front.svg"
  5254. }
  5255. },
  5256. back: {
  5257. height: math.unit(6, "feet"),
  5258. weight: math.unit(60, "kg"),
  5259. name: "Back",
  5260. image: {
  5261. source: "./media/characters/jaro/back.svg"
  5262. }
  5263. },
  5264. },
  5265. [
  5266. {
  5267. name: "Micro",
  5268. height: math.unit(7, "inches")
  5269. },
  5270. {
  5271. name: "Normal",
  5272. height: math.unit(5.5, "feet"),
  5273. default: true
  5274. },
  5275. {
  5276. name: "Minimacro",
  5277. height: math.unit(20, "feet")
  5278. },
  5279. {
  5280. name: "Macro",
  5281. height: math.unit(200, "meters")
  5282. }
  5283. ]
  5284. ))
  5285. characterMakers.push(() => makeCharacter(
  5286. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5287. {
  5288. front: {
  5289. height: math.unit(6, "feet"),
  5290. weight: math.unit(195, "lb"),
  5291. name: "Front",
  5292. image: {
  5293. source: "./media/characters/rogue/front.svg"
  5294. }
  5295. },
  5296. },
  5297. [
  5298. {
  5299. name: "Macro",
  5300. height: math.unit(90, "feet"),
  5301. default: true
  5302. },
  5303. ]
  5304. ))
  5305. characterMakers.push(() => makeCharacter(
  5306. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5307. {
  5308. front: {
  5309. height: math.unit(5 + 8 / 12, "feet"),
  5310. weight: math.unit(140, "lb"),
  5311. name: "Front",
  5312. image: {
  5313. source: "./media/characters/piper/front.svg",
  5314. extra: 3928 / 3681
  5315. }
  5316. },
  5317. },
  5318. [
  5319. {
  5320. name: "Micro",
  5321. height: math.unit(2, "inches")
  5322. },
  5323. {
  5324. name: "Normal",
  5325. height: math.unit(5 + 8 / 12, "feet")
  5326. },
  5327. {
  5328. name: "Macro",
  5329. height: math.unit(250, "feet"),
  5330. default: true
  5331. },
  5332. {
  5333. name: "Megamacro",
  5334. height: math.unit(7, "miles")
  5335. },
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5340. {
  5341. front: {
  5342. height: math.unit(6, "feet"),
  5343. weight: math.unit(220, "lb"),
  5344. name: "Front",
  5345. image: {
  5346. source: "./media/characters/gemini/front.svg"
  5347. }
  5348. },
  5349. back: {
  5350. height: math.unit(6, "feet"),
  5351. weight: math.unit(220, "lb"),
  5352. name: "Back",
  5353. image: {
  5354. source: "./media/characters/gemini/back.svg"
  5355. }
  5356. },
  5357. kneeling: {
  5358. height: math.unit(6 / 1.5, "feet"),
  5359. weight: math.unit(220, "lb"),
  5360. name: "Kneeling",
  5361. image: {
  5362. source: "./media/characters/gemini/kneeling.svg",
  5363. bottom: 0.02
  5364. }
  5365. },
  5366. },
  5367. [
  5368. {
  5369. name: "Macro",
  5370. height: math.unit(300, "meters"),
  5371. default: true
  5372. },
  5373. {
  5374. name: "Megamacro",
  5375. height: math.unit(6900, "meters")
  5376. },
  5377. ]
  5378. ))
  5379. characterMakers.push(() => makeCharacter(
  5380. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5381. {
  5382. anthro: {
  5383. height: math.unit(2.35, "meters"),
  5384. weight: math.unit(73, "kg"),
  5385. name: "Anthro",
  5386. image: {
  5387. source: "./media/characters/alicia/anthro.svg"
  5388. }
  5389. },
  5390. feral: {
  5391. height: math.unit(1.69, "meters"),
  5392. weight: math.unit(73, "kg"),
  5393. name: "Feral",
  5394. image: {
  5395. source: "./media/characters/alicia/feral.svg"
  5396. }
  5397. },
  5398. },
  5399. [
  5400. {
  5401. name: "Normal",
  5402. height: math.unit(2.35, "meters")
  5403. },
  5404. {
  5405. name: "Macro",
  5406. height: math.unit(60, "meters"),
  5407. default: true
  5408. },
  5409. {
  5410. name: "Megamacro",
  5411. height: math.unit(10000, "kilometers")
  5412. },
  5413. ]
  5414. ))
  5415. characterMakers.push(() => makeCharacter(
  5416. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5417. {
  5418. front: {
  5419. height: math.unit(7, "feet"),
  5420. weight: math.unit(250, "lbs"),
  5421. name: "Front",
  5422. image: {
  5423. source: "./media/characters/archy/front.svg"
  5424. }
  5425. }
  5426. },
  5427. [
  5428. {
  5429. name: "Micro",
  5430. height: math.unit(1, "inch")
  5431. },
  5432. {
  5433. name: "Shorty",
  5434. height: math.unit(5, "feet")
  5435. },
  5436. {
  5437. name: "Normal",
  5438. height: math.unit(7, "feet")
  5439. },
  5440. {
  5441. name: "Macro",
  5442. height: math.unit(600, "meters"),
  5443. default: true
  5444. },
  5445. {
  5446. name: "Megamacro",
  5447. height: math.unit(1, "mile")
  5448. },
  5449. ]
  5450. ))
  5451. characterMakers.push(() => makeCharacter(
  5452. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5453. {
  5454. front: {
  5455. height: math.unit(1.65, "meters"),
  5456. weight: math.unit(74, "kg"),
  5457. name: "Front",
  5458. image: {
  5459. source: "./media/characters/berri/front.svg"
  5460. }
  5461. }
  5462. },
  5463. [
  5464. {
  5465. name: "Normal",
  5466. height: math.unit(1.65, "meters")
  5467. },
  5468. {
  5469. name: "Macro",
  5470. height: math.unit(60, "m"),
  5471. default: true
  5472. },
  5473. {
  5474. name: "Megamacro",
  5475. height: math.unit(9.213, "km")
  5476. },
  5477. {
  5478. name: "Planet Eater",
  5479. height: math.unit(489, "megameters")
  5480. },
  5481. {
  5482. name: "Teramacro",
  5483. height: math.unit(2471635000000, "meters")
  5484. },
  5485. {
  5486. name: "Examacro",
  5487. height: math.unit(8.0624e+26, "meters")
  5488. }
  5489. ]
  5490. ))
  5491. characterMakers.push(() => makeCharacter(
  5492. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5493. {
  5494. front: {
  5495. height: math.unit(1.72, "meters"),
  5496. weight: math.unit(68, "kg"),
  5497. name: "Front",
  5498. image: {
  5499. source: "./media/characters/lexi/front.svg"
  5500. }
  5501. }
  5502. },
  5503. [
  5504. {
  5505. name: "Very Smol",
  5506. height: math.unit(10, "mm")
  5507. },
  5508. {
  5509. name: "Micro",
  5510. height: math.unit(6.8, "cm"),
  5511. default: true
  5512. },
  5513. {
  5514. name: "Normal",
  5515. height: math.unit(1.72, "m")
  5516. }
  5517. ]
  5518. ))
  5519. characterMakers.push(() => makeCharacter(
  5520. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5521. {
  5522. front: {
  5523. height: math.unit(1.69, "meters"),
  5524. weight: math.unit(68, "kg"),
  5525. name: "Front",
  5526. image: {
  5527. source: "./media/characters/martin/front.svg",
  5528. extra: 596 / 581
  5529. }
  5530. }
  5531. },
  5532. [
  5533. {
  5534. name: "Micro",
  5535. height: math.unit(6.85, "cm"),
  5536. default: true
  5537. },
  5538. {
  5539. name: "Normal",
  5540. height: math.unit(1.69, "m")
  5541. }
  5542. ]
  5543. ))
  5544. characterMakers.push(() => makeCharacter(
  5545. { name: "Juno", species: ["shiba-inu"], tags: ["anthro"] },
  5546. {
  5547. front: {
  5548. height: math.unit(1.69, "meters"),
  5549. weight: math.unit(68, "kg"),
  5550. name: "Front",
  5551. image: {
  5552. source: "./media/characters/juno/front.svg"
  5553. }
  5554. }
  5555. },
  5556. [
  5557. {
  5558. name: "Micro",
  5559. height: math.unit(7, "cm")
  5560. },
  5561. {
  5562. name: "Normal",
  5563. height: math.unit(1.89, "m")
  5564. },
  5565. {
  5566. name: "Macro",
  5567. height: math.unit(353, "meters"),
  5568. default: true
  5569. }
  5570. ]
  5571. ))
  5572. characterMakers.push(() => makeCharacter(
  5573. { name: "Samantha", species: ["canine"], tags: ["anthro"] },
  5574. {
  5575. front: {
  5576. height: math.unit(1.93, "meters"),
  5577. weight: math.unit(83, "kg"),
  5578. name: "Front",
  5579. image: {
  5580. source: "./media/characters/samantha/front.svg"
  5581. }
  5582. },
  5583. frontClothed: {
  5584. height: math.unit(1.93, "meters"),
  5585. weight: math.unit(83, "kg"),
  5586. name: "Front (Clothed)",
  5587. image: {
  5588. source: "./media/characters/samantha/front-clothed.svg"
  5589. }
  5590. },
  5591. back: {
  5592. height: math.unit(1.93, "meters"),
  5593. weight: math.unit(83, "kg"),
  5594. name: "Back",
  5595. image: {
  5596. source: "./media/characters/samantha/back.svg"
  5597. }
  5598. },
  5599. },
  5600. [
  5601. {
  5602. name: "Normal",
  5603. height: math.unit(1.93, "m")
  5604. },
  5605. {
  5606. name: "Macro",
  5607. height: math.unit(74, "meters"),
  5608. default: true
  5609. },
  5610. {
  5611. name: "Macro+",
  5612. height: math.unit(223, "meters"),
  5613. },
  5614. {
  5615. name: "Megamacro",
  5616. height: math.unit(8381, "meters"),
  5617. },
  5618. {
  5619. name: "Megamacro+",
  5620. height: math.unit(12000, "kilometers")
  5621. },
  5622. ]
  5623. ))
  5624. characterMakers.push(() => makeCharacter(
  5625. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5626. {
  5627. front: {
  5628. height: math.unit(1.92, "meters"),
  5629. weight: math.unit(80, "kg"),
  5630. name: "Front",
  5631. image: {
  5632. source: "./media/characters/dr-clay/front.svg"
  5633. }
  5634. },
  5635. frontClothed: {
  5636. height: math.unit(1.92, "meters"),
  5637. weight: math.unit(80, "kg"),
  5638. name: "Front (Clothed)",
  5639. image: {
  5640. source: "./media/characters/dr-clay/front-clothed.svg"
  5641. }
  5642. }
  5643. },
  5644. [
  5645. {
  5646. name: "Normal",
  5647. height: math.unit(1.92, "m")
  5648. },
  5649. {
  5650. name: "Macro",
  5651. height: math.unit(214, "meters"),
  5652. default: true
  5653. },
  5654. {
  5655. name: "Macro+",
  5656. height: math.unit(12.237, "meters"),
  5657. },
  5658. {
  5659. name: "Megamacro",
  5660. height: math.unit(557, "megameters"),
  5661. },
  5662. {
  5663. name: "Unimaginable",
  5664. height: math.unit(120e9, "lightyears")
  5665. },
  5666. ]
  5667. ))
  5668. characterMakers.push(() => makeCharacter(
  5669. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5670. {
  5671. front: {
  5672. height: math.unit(2, "meters"),
  5673. weight: math.unit(80, "kg"),
  5674. name: "Front",
  5675. image: {
  5676. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5677. }
  5678. }
  5679. },
  5680. [
  5681. {
  5682. name: "Teramacro",
  5683. height: math.unit(500000, "lightyears"),
  5684. default: true
  5685. },
  5686. ]
  5687. ))
  5688. characterMakers.push(() => makeCharacter(
  5689. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5690. {
  5691. front: {
  5692. height: math.unit(2, "meters"),
  5693. weight: math.unit(150, "kg"),
  5694. name: "Front",
  5695. image: {
  5696. source: "./media/characters/vemus/front.svg",
  5697. extra: 2384 / 2084,
  5698. bottom: 0.0123
  5699. }
  5700. }
  5701. },
  5702. [
  5703. {
  5704. name: "Normal",
  5705. height: math.unit(3.75, "meters"),
  5706. default: true
  5707. },
  5708. {
  5709. name: "Big",
  5710. height: math.unit(8, "meters")
  5711. },
  5712. {
  5713. name: "Macro",
  5714. height: math.unit(100, "meters")
  5715. },
  5716. {
  5717. name: "Macro+",
  5718. height: math.unit(1500, "meters")
  5719. },
  5720. {
  5721. name: "Stellar",
  5722. height: math.unit(14e8, "meters")
  5723. },
  5724. ]
  5725. ))
  5726. characterMakers.push(() => makeCharacter(
  5727. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5728. {
  5729. front: {
  5730. height: math.unit(2, "meters"),
  5731. weight: math.unit(70, "kg"),
  5732. name: "Front",
  5733. image: {
  5734. source: "./media/characters/beherit/front.svg",
  5735. extra: 1408 / 1242
  5736. }
  5737. }
  5738. },
  5739. [
  5740. {
  5741. name: "Normal",
  5742. height: math.unit(6, "feet")
  5743. },
  5744. {
  5745. name: "Lorg",
  5746. height: math.unit(25, "feet"),
  5747. default: true
  5748. },
  5749. {
  5750. name: "Lorger",
  5751. height: math.unit(75, "feet")
  5752. },
  5753. {
  5754. name: "Macro",
  5755. height: math.unit(200, "meters")
  5756. },
  5757. ]
  5758. ))
  5759. characterMakers.push(() => makeCharacter(
  5760. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5761. {
  5762. front: {
  5763. height: math.unit(2, "meters"),
  5764. weight: math.unit(150, "kg"),
  5765. name: "Front",
  5766. image: {
  5767. source: "./media/characters/everett/front.svg",
  5768. extra: 2038 / 1737,
  5769. bottom: 0.03
  5770. }
  5771. },
  5772. paw: {
  5773. height: math.unit(2 / 3.6, "meters"),
  5774. name: "Paw",
  5775. image: {
  5776. source: "./media/characters/everett/paw.svg"
  5777. }
  5778. },
  5779. },
  5780. [
  5781. {
  5782. name: "Normal",
  5783. height: math.unit(15, "feet"),
  5784. default: true
  5785. },
  5786. {
  5787. name: "Lorg",
  5788. height: math.unit(70, "feet"),
  5789. default: true
  5790. },
  5791. {
  5792. name: "Lorger",
  5793. height: math.unit(250, "feet")
  5794. },
  5795. {
  5796. name: "Macro",
  5797. height: math.unit(500, "meters")
  5798. },
  5799. ]
  5800. ))
  5801. characterMakers.push(() => makeCharacter(
  5802. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5803. {
  5804. front: {
  5805. height: math.unit(2, "meters"),
  5806. weight: math.unit(86, "kg"),
  5807. name: "Front",
  5808. image: {
  5809. source: "./media/characters/rose-lion/front.svg"
  5810. }
  5811. },
  5812. bent: {
  5813. height: math.unit(2 / 1.4288, "meters"),
  5814. weight: math.unit(86, "kg"),
  5815. name: "Bent",
  5816. image: {
  5817. source: "./media/characters/rose-lion/bent.svg"
  5818. }
  5819. }
  5820. },
  5821. [
  5822. {
  5823. name: "Mini-Micro",
  5824. height: math.unit(1, "cm")
  5825. },
  5826. {
  5827. name: "Micro",
  5828. height: math.unit(3.5, "inches"),
  5829. default: true
  5830. },
  5831. {
  5832. name: "Normal",
  5833. height: math.unit(6 + 1 / 6, "feet")
  5834. },
  5835. {
  5836. name: "Mini-Macro",
  5837. height: math.unit(9 + 10 / 12, "feet")
  5838. },
  5839. ]
  5840. ))
  5841. characterMakers.push(() => makeCharacter(
  5842. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  5843. {
  5844. front: {
  5845. height: math.unit(2, "meters"),
  5846. weight: math.unit(350, "lbs"),
  5847. name: "Front",
  5848. image: {
  5849. source: "./media/characters/regal/front.svg"
  5850. }
  5851. },
  5852. back: {
  5853. height: math.unit(2, "meters"),
  5854. weight: math.unit(350, "lbs"),
  5855. name: "Back",
  5856. image: {
  5857. source: "./media/characters/regal/back.svg"
  5858. }
  5859. },
  5860. },
  5861. [
  5862. {
  5863. name: "Macro",
  5864. height: math.unit(350, "feet"),
  5865. default: true
  5866. }
  5867. ]
  5868. ))
  5869. characterMakers.push(() => makeCharacter(
  5870. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  5871. {
  5872. front: {
  5873. height: math.unit(4 + 11 / 12, "feet"),
  5874. weight: math.unit(100, "lbs"),
  5875. name: "Front",
  5876. image: {
  5877. source: "./media/characters/opal/front.svg"
  5878. }
  5879. },
  5880. frontAlt: {
  5881. height: math.unit(4 + 11 / 12, "feet"),
  5882. weight: math.unit(100, "lbs"),
  5883. name: "Front (Alt)",
  5884. image: {
  5885. source: "./media/characters/opal/front-alt.svg"
  5886. }
  5887. },
  5888. },
  5889. [
  5890. {
  5891. name: "Small",
  5892. height: math.unit(4 + 11 / 12, "feet")
  5893. },
  5894. {
  5895. name: "Normal",
  5896. height: math.unit(20, "feet"),
  5897. default: true
  5898. },
  5899. {
  5900. name: "Macro",
  5901. height: math.unit(120, "feet")
  5902. },
  5903. {
  5904. name: "Megamacro",
  5905. height: math.unit(80, "miles")
  5906. },
  5907. {
  5908. name: "True Size",
  5909. height: math.unit(100000, "lightyears")
  5910. },
  5911. ]
  5912. ))
  5913. characterMakers.push(() => makeCharacter(
  5914. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  5915. {
  5916. front: {
  5917. height: math.unit(6, "feet"),
  5918. weight: math.unit(200, "lbs"),
  5919. name: "Front",
  5920. image: {
  5921. source: "./media/characters/vector-wuff/front.svg"
  5922. }
  5923. }
  5924. },
  5925. [
  5926. {
  5927. name: "Normal",
  5928. height: math.unit(2.8, "meters")
  5929. },
  5930. {
  5931. name: "Macro",
  5932. height: math.unit(450, "meters"),
  5933. default: true
  5934. },
  5935. {
  5936. name: "Megamacro",
  5937. height: math.unit(15, "kilometers")
  5938. }
  5939. ]
  5940. ))
  5941. characterMakers.push(() => makeCharacter(
  5942. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  5943. {
  5944. front: {
  5945. height: math.unit(6, "feet"),
  5946. weight: math.unit(256, "lbs"),
  5947. name: "Front",
  5948. image: {
  5949. source: "./media/characters/dannik/front.svg"
  5950. }
  5951. }
  5952. },
  5953. [
  5954. {
  5955. name: "Macro",
  5956. height: math.unit(69.57, "meters"),
  5957. default: true
  5958. },
  5959. ]
  5960. ))
  5961. characterMakers.push(() => makeCharacter(
  5962. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  5963. {
  5964. front: {
  5965. height: math.unit(6, "feet"),
  5966. weight: math.unit(120, "lbs"),
  5967. name: "Front",
  5968. image: {
  5969. source: "./media/characters/azura-saharah/front.svg"
  5970. }
  5971. },
  5972. back: {
  5973. height: math.unit(6, "feet"),
  5974. weight: math.unit(120, "lbs"),
  5975. name: "Back",
  5976. image: {
  5977. source: "./media/characters/azura-saharah/back.svg"
  5978. }
  5979. },
  5980. },
  5981. [
  5982. {
  5983. name: "Macro",
  5984. height: math.unit(100, "feet"),
  5985. default: true
  5986. },
  5987. ]
  5988. ))
  5989. characterMakers.push(() => makeCharacter(
  5990. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  5991. {
  5992. side: {
  5993. height: math.unit(5 + 4 / 12, "feet"),
  5994. weight: math.unit(163, "lbs"),
  5995. name: "Side",
  5996. image: {
  5997. source: "./media/characters/kennedy/side.svg"
  5998. }
  5999. }
  6000. },
  6001. [
  6002. {
  6003. name: "Standard Doggo",
  6004. height: math.unit(5 + 4 / 12, "feet")
  6005. },
  6006. {
  6007. name: "Big Doggo",
  6008. height: math.unit(25 + 3 / 12, "feet"),
  6009. default: true
  6010. },
  6011. ]
  6012. ))
  6013. characterMakers.push(() => makeCharacter(
  6014. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6015. {
  6016. front: {
  6017. height: math.unit(6, "feet"),
  6018. weight: math.unit(90, "lbs"),
  6019. name: "Front",
  6020. image: {
  6021. source: "./media/characters/odi-lunar/front.svg"
  6022. }
  6023. }
  6024. },
  6025. [
  6026. {
  6027. name: "Micro",
  6028. height: math.unit(3, "inches"),
  6029. default: true
  6030. },
  6031. {
  6032. name: "Normal",
  6033. height: math.unit(5.5, "feet")
  6034. }
  6035. ]
  6036. ))
  6037. characterMakers.push(() => makeCharacter(
  6038. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6039. {
  6040. back: {
  6041. height: math.unit(6, "feet"),
  6042. weight: math.unit(220, "lbs"),
  6043. name: "Back",
  6044. image: {
  6045. source: "./media/characters/mandake/back.svg"
  6046. }
  6047. }
  6048. },
  6049. [
  6050. {
  6051. name: "Normal",
  6052. height: math.unit(7, "feet"),
  6053. default: true
  6054. },
  6055. {
  6056. name: "Macro",
  6057. height: math.unit(78, "feet")
  6058. },
  6059. {
  6060. name: "Macro+",
  6061. height: math.unit(300, "meters")
  6062. },
  6063. {
  6064. name: "Macro++",
  6065. height: math.unit(2400, "feet")
  6066. },
  6067. {
  6068. name: "Megamacro",
  6069. height: math.unit(5167, "meters")
  6070. },
  6071. {
  6072. name: "Gigamacro",
  6073. height: math.unit(41769, "miles")
  6074. },
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6079. {
  6080. front: {
  6081. height: math.unit(6, "feet"),
  6082. weight: math.unit(120, "lbs"),
  6083. name: "Front",
  6084. image: {
  6085. source: "./media/characters/yozey/front.svg"
  6086. }
  6087. },
  6088. frontAlt: {
  6089. height: math.unit(6, "feet"),
  6090. weight: math.unit(120, "lbs"),
  6091. name: "Front (Alt)",
  6092. image: {
  6093. source: "./media/characters/yozey/front-alt.svg"
  6094. }
  6095. },
  6096. side: {
  6097. height: math.unit(6, "feet"),
  6098. weight: math.unit(120, "lbs"),
  6099. name: "Side",
  6100. image: {
  6101. source: "./media/characters/yozey/side.svg"
  6102. }
  6103. },
  6104. },
  6105. [
  6106. {
  6107. name: "Micro",
  6108. height: math.unit(3, "inches"),
  6109. default: true
  6110. },
  6111. {
  6112. name: "Normal",
  6113. height: math.unit(6, "feet")
  6114. }
  6115. ]
  6116. ))
  6117. characterMakers.push(() => makeCharacter(
  6118. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6119. {
  6120. front: {
  6121. height: math.unit(6, "feet"),
  6122. weight: math.unit(103, "lbs"),
  6123. name: "Front",
  6124. image: {
  6125. source: "./media/characters/valeska-voss/front.svg"
  6126. }
  6127. }
  6128. },
  6129. [
  6130. {
  6131. name: "Mini-Sized Sub",
  6132. height: math.unit(3.1, "inches")
  6133. },
  6134. {
  6135. name: "Mid-Sized Sub",
  6136. height: math.unit(6.2, "inches")
  6137. },
  6138. {
  6139. name: "Full-Sized Sub",
  6140. height: math.unit(9.3, "inches")
  6141. },
  6142. {
  6143. name: "Normal",
  6144. height: math.unit(5 + 2 / 12, "foot"),
  6145. default: true
  6146. },
  6147. ]
  6148. ))
  6149. characterMakers.push(() => makeCharacter(
  6150. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6151. {
  6152. front: {
  6153. height: math.unit(6, "feet"),
  6154. weight: math.unit(160, "lbs"),
  6155. name: "Front",
  6156. image: {
  6157. source: "./media/characters/gene-zeta/front.svg",
  6158. bottom: 0.03,
  6159. extra: 1
  6160. }
  6161. }
  6162. },
  6163. [
  6164. {
  6165. name: "Normal",
  6166. height: math.unit(6.25, "foot"),
  6167. default: true
  6168. },
  6169. ]
  6170. ))
  6171. characterMakers.push(() => makeCharacter(
  6172. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6173. {
  6174. front: {
  6175. height: math.unit(6, "feet"),
  6176. weight: math.unit(350, "lbs"),
  6177. name: "Front",
  6178. image: {
  6179. source: "./media/characters/razinox/front.svg",
  6180. extra: 1686 / 1548,
  6181. bottom: 28.2/1868
  6182. }
  6183. },
  6184. back: {
  6185. height: math.unit(6, "feet"),
  6186. weight: math.unit(350, "lbs"),
  6187. name: "Back",
  6188. image: {
  6189. source: "./media/characters/razinox/back.svg",
  6190. extra: 1660 / 1590,
  6191. bottom: 15/1665
  6192. }
  6193. },
  6194. },
  6195. [
  6196. {
  6197. name: "Normal",
  6198. height: math.unit(10 + 8 / 12, "foot")
  6199. },
  6200. {
  6201. name: "Minimacro",
  6202. height: math.unit(15, "foot")
  6203. },
  6204. {
  6205. name: "Macro",
  6206. height: math.unit(60, "foot"),
  6207. default: true
  6208. },
  6209. {
  6210. name: "Megamacro",
  6211. height: math.unit(5, "miles")
  6212. },
  6213. {
  6214. name: "Gigamacro",
  6215. height: math.unit(6000, "miles")
  6216. },
  6217. ]
  6218. ))
  6219. characterMakers.push(() => makeCharacter(
  6220. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6221. {
  6222. front: {
  6223. height: math.unit(6, "feet"),
  6224. weight: math.unit(150, "lbs"),
  6225. name: "Front",
  6226. image: {
  6227. source: "./media/characters/cobalt/front.svg"
  6228. }
  6229. }
  6230. },
  6231. [
  6232. {
  6233. name: "Normal",
  6234. height: math.unit(8 + 1 / 12, "foot")
  6235. },
  6236. {
  6237. name: "Macro",
  6238. height: math.unit(111, "foot"),
  6239. default: true
  6240. },
  6241. {
  6242. name: "Supracosmic",
  6243. height: math.unit(1e42, "feet")
  6244. },
  6245. ]
  6246. ))
  6247. characterMakers.push(() => makeCharacter(
  6248. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6249. {
  6250. front: {
  6251. height: math.unit(6, "feet"),
  6252. weight: math.unit(140, "lbs"),
  6253. name: "Front",
  6254. image: {
  6255. source: "./media/characters/amanda/front.svg"
  6256. }
  6257. }
  6258. },
  6259. [
  6260. {
  6261. name: "Micro",
  6262. height: math.unit(5, "inches"),
  6263. default: true
  6264. },
  6265. ]
  6266. ))
  6267. characterMakers.push(() => makeCharacter(
  6268. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6269. {
  6270. front: {
  6271. height: math.unit(5.59, "feet"),
  6272. weight: math.unit(250, "lbs"),
  6273. name: "Front",
  6274. image: {
  6275. source: "./media/characters/teal/front.svg"
  6276. }
  6277. },
  6278. frontAlt: {
  6279. height: math.unit(6, "feet"),
  6280. weight: math.unit(250, "lbs"),
  6281. name: "Front (Alt)",
  6282. image: {
  6283. source: "./media/characters/teal/front-alt.svg",
  6284. bottom: 0.04,
  6285. extra: 1
  6286. }
  6287. },
  6288. },
  6289. [
  6290. {
  6291. name: "Normal",
  6292. height: math.unit(12, "feet"),
  6293. default: true
  6294. },
  6295. {
  6296. name: "Macro",
  6297. height: math.unit(300, "feet")
  6298. },
  6299. ]
  6300. ))
  6301. characterMakers.push(() => makeCharacter(
  6302. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6303. {
  6304. frontCat: {
  6305. height: math.unit(6, "feet"),
  6306. weight: math.unit(180, "lbs"),
  6307. name: "Front (Cat)",
  6308. image: {
  6309. source: "./media/characters/ravin-amulet/front-cat.svg"
  6310. }
  6311. },
  6312. frontCatAlt: {
  6313. height: math.unit(6, "feet"),
  6314. weight: math.unit(180, "lbs"),
  6315. name: "Front (Alt, Cat)",
  6316. image: {
  6317. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6318. }
  6319. },
  6320. frontWerewolf: {
  6321. height: math.unit(6 * 1.2, "feet"),
  6322. weight: math.unit(225, "lbs"),
  6323. name: "Front (Werewolf)",
  6324. image: {
  6325. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6326. }
  6327. },
  6328. backWerewolf: {
  6329. height: math.unit(6 * 1.2, "feet"),
  6330. weight: math.unit(225, "lbs"),
  6331. name: "Back (Werewolf)",
  6332. image: {
  6333. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6334. }
  6335. },
  6336. },
  6337. [
  6338. {
  6339. name: "Nano",
  6340. height: math.unit(1, "micrometer")
  6341. },
  6342. {
  6343. name: "Micro",
  6344. height: math.unit(1, "inch")
  6345. },
  6346. {
  6347. name: "Normal",
  6348. height: math.unit(6, "feet"),
  6349. default: true
  6350. },
  6351. {
  6352. name: "Macro",
  6353. height: math.unit(60, "feet")
  6354. }
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6359. {
  6360. front: {
  6361. height: math.unit(6, "feet"),
  6362. weight: math.unit(165, "lbs"),
  6363. name: "Front",
  6364. image: {
  6365. source: "./media/characters/fluoresce/front.svg"
  6366. }
  6367. }
  6368. },
  6369. [
  6370. {
  6371. name: "Micro",
  6372. height: math.unit(6, "cm")
  6373. },
  6374. {
  6375. name: "Normal",
  6376. height: math.unit(5 + 7 / 12, "feet"),
  6377. default: true
  6378. },
  6379. {
  6380. name: "Macro",
  6381. height: math.unit(56, "feet")
  6382. },
  6383. {
  6384. name: "Megamacro",
  6385. height: math.unit(1.9, "miles")
  6386. },
  6387. ]
  6388. ))
  6389. characterMakers.push(() => makeCharacter(
  6390. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6391. {
  6392. front: {
  6393. height: math.unit(9 + 6 / 12, "feet"),
  6394. weight: math.unit(523, "lbs"),
  6395. name: "Side",
  6396. image: {
  6397. source: "./media/characters/aurora/side.svg"
  6398. }
  6399. }
  6400. },
  6401. [
  6402. {
  6403. name: "Normal",
  6404. height: math.unit(9 + 6 / 12, "feet")
  6405. },
  6406. {
  6407. name: "Macro",
  6408. height: math.unit(96, "feet"),
  6409. default: true
  6410. },
  6411. {
  6412. name: "Macro+",
  6413. height: math.unit(243, "feet")
  6414. },
  6415. ]
  6416. ))
  6417. characterMakers.push(() => makeCharacter(
  6418. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6419. {
  6420. front: {
  6421. height: math.unit(194, "cm"),
  6422. weight: math.unit(90, "kg"),
  6423. name: "Front",
  6424. image: {
  6425. source: "./media/characters/ranek/front.svg"
  6426. }
  6427. },
  6428. side: {
  6429. height: math.unit(194, "cm"),
  6430. weight: math.unit(90, "kg"),
  6431. name: "Side",
  6432. image: {
  6433. source: "./media/characters/ranek/side.svg"
  6434. }
  6435. },
  6436. back: {
  6437. height: math.unit(194, "cm"),
  6438. weight: math.unit(90, "kg"),
  6439. name: "Back",
  6440. image: {
  6441. source: "./media/characters/ranek/back.svg"
  6442. }
  6443. },
  6444. feral: {
  6445. height: math.unit(30, "cm"),
  6446. weight: math.unit(1.6, "lbs"),
  6447. name: "Feral",
  6448. image: {
  6449. source: "./media/characters/ranek/feral.svg"
  6450. }
  6451. },
  6452. },
  6453. [
  6454. {
  6455. name: "Normal",
  6456. height: math.unit(194, "cm"),
  6457. default: true
  6458. },
  6459. {
  6460. name: "Macro",
  6461. height: math.unit(100, "meters")
  6462. },
  6463. ]
  6464. ))
  6465. characterMakers.push(() => makeCharacter(
  6466. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6467. {
  6468. front: {
  6469. height: math.unit(5 + 6 / 12, "feet"),
  6470. weight: math.unit(153, "lbs"),
  6471. name: "Front",
  6472. image: {
  6473. source: "./media/characters/andrew-cooper/front.svg"
  6474. }
  6475. },
  6476. },
  6477. [
  6478. {
  6479. name: "Nano",
  6480. height: math.unit(1, "mm")
  6481. },
  6482. {
  6483. name: "Micro",
  6484. height: math.unit(2, "inches")
  6485. },
  6486. {
  6487. name: "Normal",
  6488. height: math.unit(5 + 6 / 12, "feet"),
  6489. default: true
  6490. }
  6491. ]
  6492. ))
  6493. characterMakers.push(() => makeCharacter(
  6494. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6495. {
  6496. front: {
  6497. height: math.unit(6, "feet"),
  6498. weight: math.unit(180, "lbs"),
  6499. name: "Front",
  6500. image: {
  6501. source: "./media/characters/akane-sato/front.svg",
  6502. extra: 1219 / 1140
  6503. }
  6504. },
  6505. back: {
  6506. height: math.unit(6, "feet"),
  6507. weight: math.unit(180, "lbs"),
  6508. name: "Back",
  6509. image: {
  6510. source: "./media/characters/akane-sato/back.svg",
  6511. extra: 1219 / 1170
  6512. }
  6513. },
  6514. },
  6515. [
  6516. {
  6517. name: "Normal",
  6518. height: math.unit(2.5, "meters")
  6519. },
  6520. {
  6521. name: "Macro",
  6522. height: math.unit(250, "meters"),
  6523. default: true
  6524. },
  6525. {
  6526. name: "Megamacro",
  6527. height: math.unit(25, "km")
  6528. },
  6529. ]
  6530. ))
  6531. characterMakers.push(() => makeCharacter(
  6532. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6533. {
  6534. front: {
  6535. height: math.unit(6, "feet"),
  6536. weight: math.unit(65, "kg"),
  6537. name: "Front",
  6538. image: {
  6539. source: "./media/characters/rook/front.svg",
  6540. extra: 960/950
  6541. }
  6542. }
  6543. },
  6544. [
  6545. {
  6546. name: "Normal",
  6547. height: math.unit(8.8, "feet")
  6548. },
  6549. {
  6550. name: "Macro",
  6551. height: math.unit(88, "feet"),
  6552. default: true
  6553. },
  6554. {
  6555. name: "Megamacro",
  6556. height: math.unit(8, "miles")
  6557. },
  6558. ]
  6559. ))
  6560. characterMakers.push(() => makeCharacter(
  6561. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6562. {
  6563. front: {
  6564. height: math.unit(12 + 2 / 12, "feet"),
  6565. weight: math.unit(808, "lbs"),
  6566. name: "Front",
  6567. image: {
  6568. source: "./media/characters/prodigy/front.svg"
  6569. }
  6570. }
  6571. },
  6572. [
  6573. {
  6574. name: "Normal",
  6575. height: math.unit(12 + 2 / 12, "feet"),
  6576. default: true
  6577. },
  6578. {
  6579. name: "Macro",
  6580. height: math.unit(143, "feet")
  6581. },
  6582. {
  6583. name: "Macro+",
  6584. height: math.unit(400, "feet")
  6585. },
  6586. ]
  6587. ))
  6588. characterMakers.push(() => makeCharacter(
  6589. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6590. {
  6591. front: {
  6592. height: math.unit(6, "feet"),
  6593. weight: math.unit(225, "lbs"),
  6594. name: "Front",
  6595. image: {
  6596. source: "./media/characters/daniel/front.svg"
  6597. }
  6598. },
  6599. leaning: {
  6600. height: math.unit(6, "feet"),
  6601. weight: math.unit(225, "lbs"),
  6602. name: "Leaning",
  6603. image: {
  6604. source: "./media/characters/daniel/leaning.svg"
  6605. }
  6606. },
  6607. },
  6608. [
  6609. {
  6610. name: "Macro",
  6611. height: math.unit(1000, "feet"),
  6612. default: true
  6613. },
  6614. ]
  6615. ))
  6616. characterMakers.push(() => makeCharacter(
  6617. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6618. {
  6619. front: {
  6620. height: math.unit(6, "feet"),
  6621. weight: math.unit(88, "lbs"),
  6622. name: "Front",
  6623. image: {
  6624. source: "./media/characters/chiros/front.svg",
  6625. extra: 306 / 226
  6626. }
  6627. },
  6628. side: {
  6629. height: math.unit(6, "feet"),
  6630. weight: math.unit(88, "lbs"),
  6631. name: "Side",
  6632. image: {
  6633. source: "./media/characters/chiros/side.svg",
  6634. extra: 306 / 226
  6635. }
  6636. },
  6637. },
  6638. [
  6639. {
  6640. name: "Normal",
  6641. height: math.unit(6, "cm"),
  6642. default: true
  6643. },
  6644. ]
  6645. ))
  6646. characterMakers.push(() => makeCharacter(
  6647. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6648. {
  6649. front: {
  6650. height: math.unit(6, "feet"),
  6651. weight: math.unit(100, "lbs"),
  6652. name: "Front",
  6653. image: {
  6654. source: "./media/characters/selka/front.svg",
  6655. extra: 947 / 887
  6656. }
  6657. }
  6658. },
  6659. [
  6660. {
  6661. name: "Normal",
  6662. height: math.unit(5, "cm"),
  6663. default: true
  6664. },
  6665. ]
  6666. ))
  6667. characterMakers.push(() => makeCharacter(
  6668. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6669. {
  6670. front: {
  6671. height: math.unit(8 + 3 / 12, "feet"),
  6672. weight: math.unit(424, "lbs"),
  6673. name: "Front",
  6674. image: {
  6675. source: "./media/characters/verin/front.svg",
  6676. extra: 1845 / 1550
  6677. }
  6678. },
  6679. frontArmored: {
  6680. height: math.unit(8 + 3 / 12, "feet"),
  6681. weight: math.unit(424, "lbs"),
  6682. name: "Front (Armored)",
  6683. image: {
  6684. source: "./media/characters/verin/front-armor.svg",
  6685. extra: 1845 / 1550,
  6686. bottom: 0.01
  6687. }
  6688. },
  6689. back: {
  6690. height: math.unit(8 + 3 / 12, "feet"),
  6691. weight: math.unit(424, "lbs"),
  6692. name: "Back",
  6693. image: {
  6694. source: "./media/characters/verin/back.svg",
  6695. bottom: 0.1,
  6696. extra: 1
  6697. }
  6698. },
  6699. foot: {
  6700. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6701. name: "Foot",
  6702. image: {
  6703. source: "./media/characters/verin/foot.svg"
  6704. }
  6705. },
  6706. },
  6707. [
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(8 + 3 / 12, "feet")
  6711. },
  6712. {
  6713. name: "Minimacro",
  6714. height: math.unit(21, "feet"),
  6715. default: true
  6716. },
  6717. {
  6718. name: "Macro",
  6719. height: math.unit(626, "feet")
  6720. },
  6721. ]
  6722. ))
  6723. characterMakers.push(() => makeCharacter(
  6724. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6725. {
  6726. front: {
  6727. height: math.unit(2.718, "meters"),
  6728. weight: math.unit(150, "lbs"),
  6729. name: "Front",
  6730. image: {
  6731. source: "./media/characters/sovrim-terraquian/front.svg"
  6732. }
  6733. },
  6734. back: {
  6735. height: math.unit(2.718, "meters"),
  6736. weight: math.unit(150, "lbs"),
  6737. name: "Back",
  6738. image: {
  6739. source: "./media/characters/sovrim-terraquian/back.svg"
  6740. }
  6741. }
  6742. },
  6743. [
  6744. {
  6745. name: "Micro",
  6746. height: math.unit(2, "inches")
  6747. },
  6748. {
  6749. name: "Small",
  6750. height: math.unit(1, "meter")
  6751. },
  6752. {
  6753. name: "Normal",
  6754. height: math.unit(Math.E, "meters"),
  6755. default: true
  6756. },
  6757. {
  6758. name: "Macro",
  6759. height: math.unit(20, "meters")
  6760. },
  6761. {
  6762. name: "Macro+",
  6763. height: math.unit(400, "meters")
  6764. },
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6769. {
  6770. front: {
  6771. height: math.unit(7, "feet"),
  6772. weight: math.unit(489, "lbs"),
  6773. name: "Front",
  6774. image: {
  6775. source: "./media/characters/reece-silvermane/front.svg",
  6776. bottom: 0.02,
  6777. extra: 1
  6778. }
  6779. },
  6780. },
  6781. [
  6782. {
  6783. name: "Macro",
  6784. height: math.unit(1.5, "miles"),
  6785. default: true
  6786. },
  6787. ]
  6788. ))
  6789. characterMakers.push(() => makeCharacter(
  6790. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6791. {
  6792. front: {
  6793. height: math.unit(6, "feet"),
  6794. weight: math.unit(78, "kg"),
  6795. name: "Front",
  6796. image: {
  6797. source: "./media/characters/kane/front.svg",
  6798. extra: 978 / 899
  6799. }
  6800. },
  6801. },
  6802. [
  6803. {
  6804. name: "Normal",
  6805. height: math.unit(2.1, "m"),
  6806. },
  6807. {
  6808. name: "Macro",
  6809. height: math.unit(1, "km"),
  6810. default: true
  6811. },
  6812. ]
  6813. ))
  6814. characterMakers.push(() => makeCharacter(
  6815. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6816. {
  6817. front: {
  6818. height: math.unit(6, "feet"),
  6819. weight: math.unit(200, "kg"),
  6820. name: "Front",
  6821. image: {
  6822. source: "./media/characters/tegon/front.svg",
  6823. bottom: 0.01,
  6824. extra: 1
  6825. }
  6826. },
  6827. },
  6828. [
  6829. {
  6830. name: "Micro",
  6831. height: math.unit(1, "inch")
  6832. },
  6833. {
  6834. name: "Normal",
  6835. height: math.unit(6 + 3 / 12, "feet"),
  6836. default: true
  6837. },
  6838. {
  6839. name: "Macro",
  6840. height: math.unit(300, "feet")
  6841. },
  6842. {
  6843. name: "Megamacro",
  6844. height: math.unit(69, "miles")
  6845. },
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  6850. {
  6851. side: {
  6852. height: math.unit(6, "feet"),
  6853. weight: math.unit(2304, "lbs"),
  6854. name: "Side",
  6855. image: {
  6856. source: "./media/characters/arcturax/side.svg",
  6857. extra: 790 / 376,
  6858. bottom: 0.01
  6859. }
  6860. },
  6861. },
  6862. [
  6863. {
  6864. name: "Micro",
  6865. height: math.unit(2, "inch")
  6866. },
  6867. {
  6868. name: "Normal",
  6869. height: math.unit(6, "feet")
  6870. },
  6871. {
  6872. name: "Macro",
  6873. height: math.unit(39, "feet"),
  6874. default: true
  6875. },
  6876. {
  6877. name: "Megamacro",
  6878. height: math.unit(7, "miles")
  6879. },
  6880. ]
  6881. ))
  6882. characterMakers.push(() => makeCharacter(
  6883. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  6884. {
  6885. front: {
  6886. height: math.unit(6, "feet"),
  6887. weight: math.unit(50, "lbs"),
  6888. name: "Front",
  6889. image: {
  6890. source: "./media/characters/sentri/front.svg",
  6891. extra: 1750 / 1570,
  6892. bottom: 0.025
  6893. }
  6894. },
  6895. frontAlt: {
  6896. height: math.unit(6, "feet"),
  6897. weight: math.unit(50, "lbs"),
  6898. name: "Front (Alt)",
  6899. image: {
  6900. source: "./media/characters/sentri/front-alt.svg",
  6901. extra: 1750 / 1570,
  6902. bottom: 0.025
  6903. }
  6904. },
  6905. },
  6906. [
  6907. {
  6908. name: "Normal",
  6909. height: math.unit(15, "feet"),
  6910. default: true
  6911. },
  6912. {
  6913. name: "Macro",
  6914. height: math.unit(2500, "feet")
  6915. }
  6916. ]
  6917. ))
  6918. characterMakers.push(() => makeCharacter(
  6919. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  6920. {
  6921. front: {
  6922. height: math.unit(5 + 8 / 12, "feet"),
  6923. weight: math.unit(130, "lbs"),
  6924. name: "Front",
  6925. image: {
  6926. source: "./media/characters/corvin/front.svg",
  6927. extra: 1803 / 1629
  6928. }
  6929. },
  6930. frontShirt: {
  6931. height: math.unit(5 + 8 / 12, "feet"),
  6932. weight: math.unit(130, "lbs"),
  6933. name: "Front (Shirt)",
  6934. image: {
  6935. source: "./media/characters/corvin/front-shirt.svg",
  6936. extra: 1803 / 1629
  6937. }
  6938. },
  6939. frontPoncho: {
  6940. height: math.unit(5 + 8 / 12, "feet"),
  6941. weight: math.unit(130, "lbs"),
  6942. name: "Front (Poncho)",
  6943. image: {
  6944. source: "./media/characters/corvin/front-poncho.svg",
  6945. extra: 1803 / 1629
  6946. }
  6947. },
  6948. side: {
  6949. height: math.unit(5 + 8 / 12, "feet"),
  6950. weight: math.unit(130, "lbs"),
  6951. name: "Side",
  6952. image: {
  6953. source: "./media/characters/corvin/side.svg",
  6954. extra: 1012 / 945
  6955. }
  6956. },
  6957. back: {
  6958. height: math.unit(5 + 8 / 12, "feet"),
  6959. weight: math.unit(130, "lbs"),
  6960. name: "Back",
  6961. image: {
  6962. source: "./media/characters/corvin/back.svg",
  6963. extra: 1803 / 1629
  6964. }
  6965. },
  6966. },
  6967. [
  6968. {
  6969. name: "Micro",
  6970. height: math.unit(3, "inches")
  6971. },
  6972. {
  6973. name: "Normal",
  6974. height: math.unit(5 + 8 / 12, "feet")
  6975. },
  6976. {
  6977. name: "Macro",
  6978. height: math.unit(300, "feet"),
  6979. default: true
  6980. },
  6981. {
  6982. name: "Megamacro",
  6983. height: math.unit(500, "miles")
  6984. }
  6985. ]
  6986. ))
  6987. characterMakers.push(() => makeCharacter(
  6988. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  6989. {
  6990. front: {
  6991. height: math.unit(6, "feet"),
  6992. weight: math.unit(135, "lbs"),
  6993. name: "Front",
  6994. image: {
  6995. source: "./media/characters/q/front.svg",
  6996. extra: 854 / 752,
  6997. bottom: 0.005
  6998. }
  6999. },
  7000. back: {
  7001. height: math.unit(6, "feet"),
  7002. weight: math.unit(130, "lbs"),
  7003. name: "Back",
  7004. image: {
  7005. source: "./media/characters/q/back.svg",
  7006. extra: 854 / 752
  7007. }
  7008. },
  7009. },
  7010. [
  7011. {
  7012. name: "Macro",
  7013. height: math.unit(90, "feet"),
  7014. default: true
  7015. },
  7016. {
  7017. name: "Extra Macro",
  7018. height: math.unit(300, "feet"),
  7019. },
  7020. {
  7021. name: "BIG WALF",
  7022. height: math.unit(750, "feet"),
  7023. },
  7024. ]
  7025. ))
  7026. characterMakers.push(() => makeCharacter(
  7027. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7028. {
  7029. front: {
  7030. height: math.unit(6, "feet"),
  7031. weight: math.unit(150, "lbs"),
  7032. name: "Front",
  7033. image: {
  7034. source: "./media/characters/carley/front.svg",
  7035. extra: 3927 / 3540,
  7036. bottom: 0.03
  7037. }
  7038. }
  7039. },
  7040. [
  7041. {
  7042. name: "Normal",
  7043. height: math.unit(6 + 3 / 12, "feet")
  7044. },
  7045. {
  7046. name: "Macro",
  7047. height: math.unit(185, "feet"),
  7048. default: true
  7049. },
  7050. {
  7051. name: "Megamacro",
  7052. height: math.unit(8, "miles"),
  7053. },
  7054. ]
  7055. ))
  7056. characterMakers.push(() => makeCharacter(
  7057. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7058. {
  7059. front: {
  7060. height: math.unit(3, "feet"),
  7061. weight: math.unit(28, "lbs"),
  7062. name: "Front",
  7063. image: {
  7064. source: "./media/characters/citrine/front.svg"
  7065. }
  7066. }
  7067. },
  7068. [
  7069. {
  7070. name: "Normal",
  7071. height: math.unit(3, "feet"),
  7072. default: true
  7073. }
  7074. ]
  7075. ))
  7076. characterMakers.push(() => makeCharacter(
  7077. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7078. {
  7079. front: {
  7080. height: math.unit(14, "feet"),
  7081. weight: math.unit(1450, "kg"),
  7082. capacity: math.unit(15, "people"),
  7083. name: "Front",
  7084. image: {
  7085. source: "./media/characters/aura-starwind/front.svg",
  7086. extra: 1455 / 1335
  7087. }
  7088. },
  7089. side: {
  7090. height: math.unit(14, "feet"),
  7091. weight: math.unit(1450, "kg"),
  7092. capacity: math.unit(15, "people"),
  7093. name: "Side",
  7094. image: {
  7095. source: "./media/characters/aura-starwind/side.svg",
  7096. extra: 1654 / 1497
  7097. }
  7098. },
  7099. taur: {
  7100. height: math.unit(18, "feet"),
  7101. weight: math.unit(5500, "kg"),
  7102. capacity: math.unit(50, "people"),
  7103. name: "Taur",
  7104. image: {
  7105. source: "./media/characters/aura-starwind/taur.svg",
  7106. extra: 1760 / 1650
  7107. }
  7108. },
  7109. feral: {
  7110. height: math.unit(46, "feet"),
  7111. weight: math.unit(25000, "kg"),
  7112. capacity: math.unit(120, "people"),
  7113. name: "Feral",
  7114. image: {
  7115. source: "./media/characters/aura-starwind/feral.svg"
  7116. }
  7117. },
  7118. },
  7119. [
  7120. {
  7121. name: "Normal",
  7122. height: math.unit(14, "feet"),
  7123. default: true
  7124. },
  7125. {
  7126. name: "Macro",
  7127. height: math.unit(50, "meters")
  7128. },
  7129. {
  7130. name: "Megamacro",
  7131. height: math.unit(5000, "meters")
  7132. },
  7133. {
  7134. name: "Gigamacro",
  7135. height: math.unit(100000, "kilometers")
  7136. },
  7137. ]
  7138. ))
  7139. characterMakers.push(() => makeCharacter(
  7140. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7141. {
  7142. front: {
  7143. height: math.unit(2 + 7 / 12, "feet"),
  7144. weight: math.unit(32, "lbs"),
  7145. name: "Front",
  7146. image: {
  7147. source: "./media/characters/rivet/front.svg",
  7148. extra: 1716 / 1658,
  7149. bottom: 0.03
  7150. }
  7151. },
  7152. foot: {
  7153. height: math.unit(0.551, "feet"),
  7154. name: "Rivet's Foot",
  7155. image: {
  7156. source: "./media/characters/rivet/foot.svg"
  7157. },
  7158. rename: true
  7159. }
  7160. },
  7161. [
  7162. {
  7163. name: "Micro",
  7164. height: math.unit(1.5, "inches"),
  7165. },
  7166. {
  7167. name: "Normal",
  7168. height: math.unit(2 + 7 / 12, "feet"),
  7169. default: true
  7170. },
  7171. {
  7172. name: "Macro",
  7173. height: math.unit(85, "feet")
  7174. },
  7175. {
  7176. name: "Megamacro",
  7177. height: math.unit(2.2, "km")
  7178. }
  7179. ]
  7180. ))
  7181. characterMakers.push(() => makeCharacter(
  7182. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7183. {
  7184. front: {
  7185. height: math.unit(5 + 9 / 12, "feet"),
  7186. weight: math.unit(150, "lbs"),
  7187. name: "Front",
  7188. image: {
  7189. source: "./media/characters/coffee/front.svg",
  7190. extra: 3666 / 3032,
  7191. bottom: 0.04
  7192. }
  7193. },
  7194. foot: {
  7195. height: math.unit(1.29, "feet"),
  7196. name: "Foot",
  7197. image: {
  7198. source: "./media/characters/coffee/foot.svg"
  7199. }
  7200. },
  7201. },
  7202. [
  7203. {
  7204. name: "Micro",
  7205. height: math.unit(2, "inches"),
  7206. },
  7207. {
  7208. name: "Normal",
  7209. height: math.unit(5 + 9 / 12, "feet"),
  7210. default: true
  7211. },
  7212. {
  7213. name: "Macro",
  7214. height: math.unit(800, "feet")
  7215. },
  7216. {
  7217. name: "Megamacro",
  7218. height: math.unit(25, "miles")
  7219. }
  7220. ]
  7221. ))
  7222. characterMakers.push(() => makeCharacter(
  7223. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7224. {
  7225. front: {
  7226. height: math.unit(6, "feet"),
  7227. weight: math.unit(200, "lbs"),
  7228. name: "Front",
  7229. image: {
  7230. source: "./media/characters/chari-gal/front.svg",
  7231. extra: 1568 / 1385,
  7232. bottom: 0.047
  7233. }
  7234. },
  7235. gigantamax: {
  7236. height: math.unit(6 * 16, "feet"),
  7237. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7238. name: "Gigantamax",
  7239. image: {
  7240. source: "./media/characters/chari-gal/gigantamax.svg",
  7241. extra: 1124 / 888,
  7242. bottom: 0.03
  7243. }
  7244. },
  7245. },
  7246. [
  7247. {
  7248. name: "Normal",
  7249. height: math.unit(5 + 7 / 12, "feet")
  7250. },
  7251. {
  7252. name: "Macro",
  7253. height: math.unit(200, "feet"),
  7254. default: true
  7255. }
  7256. ]
  7257. ))
  7258. characterMakers.push(() => makeCharacter(
  7259. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7260. {
  7261. front: {
  7262. height: math.unit(6, "feet"),
  7263. weight: math.unit(150, "lbs"),
  7264. name: "Front",
  7265. image: {
  7266. source: "./media/characters/nova/front.svg",
  7267. extra: 5000 / 4722,
  7268. bottom: 0.02
  7269. }
  7270. }
  7271. },
  7272. [
  7273. {
  7274. name: "Micro-",
  7275. height: math.unit(0.8, "inches")
  7276. },
  7277. {
  7278. name: "Micro",
  7279. height: math.unit(2, "inches"),
  7280. default: true
  7281. },
  7282. ]
  7283. ))
  7284. characterMakers.push(() => makeCharacter(
  7285. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7286. {
  7287. front: {
  7288. height: math.unit(3 + 1 / 12, "feet"),
  7289. weight: math.unit(21.7, "lbs"),
  7290. name: "Front",
  7291. image: {
  7292. source: "./media/characters/argent/front.svg",
  7293. extra: 1565 / 1416,
  7294. bottom: 0.01
  7295. }
  7296. }
  7297. },
  7298. [
  7299. {
  7300. name: "Micro",
  7301. height: math.unit(2, "inches")
  7302. },
  7303. {
  7304. name: "Normal",
  7305. height: math.unit(3 + 1 / 12, "feet"),
  7306. default: true
  7307. },
  7308. {
  7309. name: "Macro",
  7310. height: math.unit(120, "feet")
  7311. },
  7312. ]
  7313. ))
  7314. characterMakers.push(() => makeCharacter(
  7315. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7316. {
  7317. lamp: {
  7318. height: math.unit(7 * 1559 / 989, "feet"),
  7319. name: "Magic Lamp",
  7320. image: {
  7321. source: "./media/characters/mira-al-cul/lamp.svg",
  7322. extra: 1617 / 1559
  7323. }
  7324. },
  7325. front: {
  7326. height: math.unit(7, "feet"),
  7327. name: "Front",
  7328. image: {
  7329. source: "./media/characters/mira-al-cul/front.svg",
  7330. extra: 1044 / 990
  7331. }
  7332. },
  7333. },
  7334. [
  7335. {
  7336. name: "Heavily Restricted",
  7337. height: math.unit(7 * 1559 / 989, "feet")
  7338. },
  7339. {
  7340. name: "Freshly Freed",
  7341. height: math.unit(50 * 1559 / 989, "feet")
  7342. },
  7343. {
  7344. name: "World Encompassing",
  7345. height: math.unit(10000 * 1559 / 989, "miles")
  7346. },
  7347. {
  7348. name: "Galactic",
  7349. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7350. },
  7351. {
  7352. name: "Palmed Universe",
  7353. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7354. default: true
  7355. },
  7356. {
  7357. name: "Multiversal Matriarch",
  7358. height: math.unit(8.87e10, "yottameters")
  7359. },
  7360. {
  7361. name: "Void Mother",
  7362. height: math.unit(3.14e110, "yottaparsecs")
  7363. },
  7364. ]
  7365. ))
  7366. characterMakers.push(() => makeCharacter(
  7367. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7368. {
  7369. front: {
  7370. height: math.unit(17 + 1 / 12, "feet"),
  7371. weight: math.unit(476.2 * 5, "lbs"),
  7372. name: "Front",
  7373. image: {
  7374. source: "./media/characters/kuro-shi-uchū/front.svg",
  7375. extra: 2329 / 1835,
  7376. bottom: 0.02
  7377. }
  7378. },
  7379. },
  7380. [
  7381. {
  7382. name: "Micro",
  7383. height: math.unit(2, "inches")
  7384. },
  7385. {
  7386. name: "Normal",
  7387. height: math.unit(12, "meters")
  7388. },
  7389. {
  7390. name: "Planetary",
  7391. height: math.unit(0.00929, "AU"),
  7392. default: true
  7393. },
  7394. {
  7395. name: "Universal",
  7396. height: math.unit(20, "gigaparsecs")
  7397. },
  7398. ]
  7399. ))
  7400. characterMakers.push(() => makeCharacter(
  7401. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7402. {
  7403. front: {
  7404. height: math.unit(5 + 2 / 12, "feet"),
  7405. weight: math.unit(120, "lbs"),
  7406. name: "Front",
  7407. image: {
  7408. source: "./media/characters/katherine/front.svg",
  7409. extra: 2075 / 1969
  7410. }
  7411. },
  7412. dress: {
  7413. height: math.unit(5 + 2 / 12, "feet"),
  7414. weight: math.unit(120, "lbs"),
  7415. name: "Dress",
  7416. image: {
  7417. source: "./media/characters/katherine/dress.svg",
  7418. extra: 2258 / 2064
  7419. }
  7420. },
  7421. },
  7422. [
  7423. {
  7424. name: "Micro",
  7425. height: math.unit(1, "inches"),
  7426. default: true
  7427. },
  7428. {
  7429. name: "Normal",
  7430. height: math.unit(5 + 2 / 12, "feet")
  7431. },
  7432. {
  7433. name: "Macro",
  7434. height: math.unit(100, "meters")
  7435. },
  7436. {
  7437. name: "Megamacro",
  7438. height: math.unit(80, "miles")
  7439. },
  7440. ]
  7441. ))
  7442. characterMakers.push(() => makeCharacter(
  7443. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7444. {
  7445. front: {
  7446. height: math.unit(7 + 8 / 12, "feet"),
  7447. weight: math.unit(250, "lbs"),
  7448. name: "Front",
  7449. image: {
  7450. source: "./media/characters/yevis/front.svg",
  7451. extra: 1938 / 1755
  7452. }
  7453. }
  7454. },
  7455. [
  7456. {
  7457. name: "Mortal",
  7458. height: math.unit(7 + 8 / 12, "feet")
  7459. },
  7460. {
  7461. name: "Battle",
  7462. height: math.unit(25 + 11 / 12, "feet")
  7463. },
  7464. {
  7465. name: "Wrath",
  7466. height: math.unit(1654 + 11 / 12, "feet")
  7467. },
  7468. {
  7469. name: "Planet Destroyer",
  7470. height: math.unit(12000, "miles")
  7471. },
  7472. {
  7473. name: "Galaxy Conqueror",
  7474. height: math.unit(1.45, "zettameters"),
  7475. default: true
  7476. },
  7477. {
  7478. name: "Universal War",
  7479. height: math.unit(184, "gigaparsecs")
  7480. },
  7481. {
  7482. name: "Eternity War",
  7483. height: math.unit(1.98e55, "yottaparsecs")
  7484. },
  7485. ]
  7486. ))
  7487. characterMakers.push(() => makeCharacter(
  7488. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7489. {
  7490. front: {
  7491. height: math.unit(5 + 8 / 12, "feet"),
  7492. weight: math.unit(63, "kg"),
  7493. name: "Front",
  7494. image: {
  7495. source: "./media/characters/xavier/front.svg",
  7496. extra: 944 / 883
  7497. }
  7498. },
  7499. frontStretch: {
  7500. height: math.unit(5 + 8 / 12, "feet"),
  7501. weight: math.unit(63, "kg"),
  7502. name: "Stretching",
  7503. image: {
  7504. source: "./media/characters/xavier/front-stretch.svg",
  7505. extra: 962 / 820
  7506. }
  7507. },
  7508. },
  7509. [
  7510. {
  7511. name: "Normal",
  7512. height: math.unit(5 + 8 / 12, "feet")
  7513. },
  7514. {
  7515. name: "Macro",
  7516. height: math.unit(100, "meters"),
  7517. default: true
  7518. },
  7519. {
  7520. name: "McLargeHuge",
  7521. height: math.unit(10, "miles")
  7522. },
  7523. ]
  7524. ))
  7525. characterMakers.push(() => makeCharacter(
  7526. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7527. {
  7528. front: {
  7529. height: math.unit(5 + 5 / 12, "feet"),
  7530. weight: math.unit(150, "lb"),
  7531. name: "Front",
  7532. image: {
  7533. source: "./media/characters/joshii/front.svg"
  7534. }
  7535. },
  7536. foot: {
  7537. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7538. name: "Foot",
  7539. image: {
  7540. source: "./media/characters/joshii/foot.svg"
  7541. }
  7542. },
  7543. },
  7544. [
  7545. {
  7546. name: "Micro",
  7547. height: math.unit(2, "inches")
  7548. },
  7549. {
  7550. name: "Normal",
  7551. height: math.unit(5 + 5 / 12, "feet"),
  7552. default: true
  7553. },
  7554. {
  7555. name: "Macro",
  7556. height: math.unit(785, "feet")
  7557. },
  7558. {
  7559. name: "Megamacro",
  7560. height: math.unit(24.5, "miles")
  7561. },
  7562. ]
  7563. ))
  7564. characterMakers.push(() => makeCharacter(
  7565. { name: "Goddess Elizabeth", species: ["wolf"], tags: ["anthro"] },
  7566. {
  7567. front: {
  7568. height: math.unit(6, "feet"),
  7569. weight: math.unit(150, "lb"),
  7570. name: "Front",
  7571. image: {
  7572. source: "./media/characters/goddess-elizabeth/front.svg",
  7573. extra: 1800 / 1525,
  7574. bottom: 0.005
  7575. }
  7576. },
  7577. foot: {
  7578. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7579. name: "Foot",
  7580. image: {
  7581. source: "./media/characters/goddess-elizabeth/foot.svg"
  7582. }
  7583. },
  7584. mouth: {
  7585. height: math.unit(6, "feet"),
  7586. name: "Mouth",
  7587. image: {
  7588. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7589. }
  7590. },
  7591. },
  7592. [
  7593. {
  7594. name: "Micro",
  7595. height: math.unit(12, "feet")
  7596. },
  7597. {
  7598. name: "Normal",
  7599. height: math.unit(80, "miles"),
  7600. default: true
  7601. },
  7602. {
  7603. name: "Macro",
  7604. height: math.unit(15000, "parsecs")
  7605. },
  7606. ]
  7607. ))
  7608. characterMakers.push(() => makeCharacter(
  7609. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7610. {
  7611. front: {
  7612. height: math.unit(5 + 9 / 12, "feet"),
  7613. weight: math.unit(144, "lb"),
  7614. name: "Front",
  7615. image: {
  7616. source: "./media/characters/kara/front.svg"
  7617. }
  7618. },
  7619. feet: {
  7620. height: math.unit(6 / 6.765, "feet"),
  7621. name: "Kara's Feet",
  7622. rename: true,
  7623. image: {
  7624. source: "./media/characters/kara/feet.svg"
  7625. }
  7626. },
  7627. },
  7628. [
  7629. {
  7630. name: "Normal",
  7631. height: math.unit(5 + 9 / 12, "feet")
  7632. },
  7633. {
  7634. name: "Macro",
  7635. height: math.unit(174, "feet"),
  7636. default: true
  7637. },
  7638. ]
  7639. ))
  7640. characterMakers.push(() => makeCharacter(
  7641. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7642. {
  7643. front: {
  7644. height: math.unit(18, "feet"),
  7645. weight: math.unit(4050, "lb"),
  7646. name: "Front",
  7647. image: {
  7648. source: "./media/characters/tyrone/front.svg",
  7649. extra: 2520 / 2402,
  7650. bottom: 0.025
  7651. }
  7652. },
  7653. },
  7654. [
  7655. {
  7656. name: "Normal",
  7657. height: math.unit(18, "feet"),
  7658. default: true
  7659. },
  7660. {
  7661. name: "Macro",
  7662. height: math.unit(300, "feet")
  7663. },
  7664. ]
  7665. ))
  7666. characterMakers.push(() => makeCharacter(
  7667. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7668. {
  7669. front: {
  7670. height: math.unit(7 + 8 / 12, "feet"),
  7671. weight: math.unit(120, "lb"),
  7672. name: "Front",
  7673. image: {
  7674. source: "./media/characters/danny/front.svg",
  7675. extra: 1490 / 1350
  7676. }
  7677. },
  7678. back: {
  7679. height: math.unit(7 + 8 / 12, "feet"),
  7680. weight: math.unit(120, "lb"),
  7681. name: "Back",
  7682. image: {
  7683. source: "./media/characters/danny/back.svg",
  7684. extra: 1490 / 1350
  7685. }
  7686. },
  7687. },
  7688. [
  7689. {
  7690. name: "Normal",
  7691. height: math.unit(7 + 8 / 12, "feet"),
  7692. default: true
  7693. },
  7694. ]
  7695. ))
  7696. characterMakers.push(() => makeCharacter(
  7697. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7698. {
  7699. front: {
  7700. height: math.unit(3.5, "inches"),
  7701. weight: math.unit(19, "grams"),
  7702. name: "Front",
  7703. image: {
  7704. source: "./media/characters/mallow/front.svg",
  7705. extra: 471 / 431
  7706. }
  7707. },
  7708. back: {
  7709. height: math.unit(3.5, "inches"),
  7710. weight: math.unit(19, "grams"),
  7711. name: "Back",
  7712. image: {
  7713. source: "./media/characters/mallow/back.svg",
  7714. extra: 471 / 431
  7715. }
  7716. },
  7717. },
  7718. [
  7719. {
  7720. name: "Normal",
  7721. height: math.unit(3.5, "inches"),
  7722. default: true
  7723. },
  7724. ]
  7725. ))
  7726. characterMakers.push(() => makeCharacter(
  7727. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7728. {
  7729. front: {
  7730. height: math.unit(9, "feet"),
  7731. weight: math.unit(230, "kg"),
  7732. name: "Front",
  7733. image: {
  7734. source: "./media/characters/starry-aqua/front.svg"
  7735. }
  7736. },
  7737. back: {
  7738. height: math.unit(9, "feet"),
  7739. weight: math.unit(230, "kg"),
  7740. name: "Back",
  7741. image: {
  7742. source: "./media/characters/starry-aqua/back.svg"
  7743. }
  7744. },
  7745. hand: {
  7746. height: math.unit(9 * 0.1168, "feet"),
  7747. name: "Hand",
  7748. image: {
  7749. source: "./media/characters/starry-aqua/hand.svg"
  7750. }
  7751. },
  7752. foot: {
  7753. height: math.unit(9 * 0.18, "feet"),
  7754. name: "Foot",
  7755. image: {
  7756. source: "./media/characters/starry-aqua/foot.svg"
  7757. }
  7758. }
  7759. },
  7760. [
  7761. {
  7762. name: "Micro",
  7763. height: math.unit(3, "inches")
  7764. },
  7765. {
  7766. name: "Normal",
  7767. height: math.unit(9, "feet")
  7768. },
  7769. {
  7770. name: "Macro",
  7771. height: math.unit(300, "feet"),
  7772. default: true
  7773. },
  7774. {
  7775. name: "Megamacro",
  7776. height: math.unit(3200, "feet")
  7777. }
  7778. ]
  7779. ))
  7780. characterMakers.push(() => makeCharacter(
  7781. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7782. {
  7783. front: {
  7784. height: math.unit(6, "feet"),
  7785. weight: math.unit(230, "lb"),
  7786. name: "Front",
  7787. image: {
  7788. source: "./media/characters/luka/front.svg",
  7789. extra: 1,
  7790. bottom: 0.025
  7791. }
  7792. },
  7793. },
  7794. [
  7795. {
  7796. name: "Normal",
  7797. height: math.unit(12 + 8 / 12, "feet"),
  7798. default: true
  7799. },
  7800. {
  7801. name: "Minimacro",
  7802. height: math.unit(20, "feet")
  7803. },
  7804. {
  7805. name: "Macro",
  7806. height: math.unit(250, "feet")
  7807. },
  7808. {
  7809. name: "Megamacro",
  7810. height: math.unit(5, "miles")
  7811. },
  7812. {
  7813. name: "Gigamacro",
  7814. height: math.unit(8000, "miles")
  7815. },
  7816. ]
  7817. ))
  7818. characterMakers.push(() => makeCharacter(
  7819. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7820. {
  7821. front: {
  7822. height: math.unit(6, "feet"),
  7823. weight: math.unit(150, "lb"),
  7824. name: "Front",
  7825. image: {
  7826. source: "./media/characters/natalie-nightring/front.svg",
  7827. extra: 1,
  7828. bottom: 0.06
  7829. }
  7830. },
  7831. },
  7832. [
  7833. {
  7834. name: "Uh Oh",
  7835. height: math.unit(0.1, "mm")
  7836. },
  7837. {
  7838. name: "Small",
  7839. height: math.unit(3, "inches")
  7840. },
  7841. {
  7842. name: "Human Scale",
  7843. height: math.unit(6, "feet")
  7844. },
  7845. {
  7846. name: "Librarian",
  7847. height: math.unit(50, "feet"),
  7848. default: true
  7849. },
  7850. {
  7851. name: "Immense",
  7852. height: math.unit(200, "miles")
  7853. },
  7854. ]
  7855. ))
  7856. characterMakers.push(() => makeCharacter(
  7857. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  7858. {
  7859. front: {
  7860. height: math.unit(6, "feet"),
  7861. weight: math.unit(180, "lbs"),
  7862. name: "Front",
  7863. image: {
  7864. source: "./media/characters/danni-rosie/front.svg",
  7865. extra: 1260 / 1128,
  7866. bottom: 0.022
  7867. }
  7868. },
  7869. },
  7870. [
  7871. {
  7872. name: "Micro",
  7873. height: math.unit(2, "inches"),
  7874. default: true
  7875. },
  7876. ]
  7877. ))
  7878. characterMakers.push(() => makeCharacter(
  7879. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  7880. {
  7881. front: {
  7882. height: math.unit(5 + 9 / 12, "feet"),
  7883. weight: math.unit(220, "lb"),
  7884. name: "Front",
  7885. image: {
  7886. source: "./media/characters/samantha-kruse/front.svg",
  7887. extra: (985 / 935),
  7888. bottom: 0.03
  7889. }
  7890. },
  7891. frontUndressed: {
  7892. height: math.unit(5 + 9 / 12, "feet"),
  7893. weight: math.unit(220, "lb"),
  7894. name: "Front (Undressed)",
  7895. image: {
  7896. source: "./media/characters/samantha-kruse/front-undressed.svg",
  7897. extra: (973 / 923),
  7898. bottom: 0.025
  7899. }
  7900. },
  7901. fat: {
  7902. height: math.unit(5 + 9 / 12, "feet"),
  7903. weight: math.unit(900, "lb"),
  7904. name: "Front (Fat)",
  7905. image: {
  7906. source: "./media/characters/samantha-kruse/fat.svg",
  7907. extra: 2688 / 2561
  7908. }
  7909. },
  7910. },
  7911. [
  7912. {
  7913. name: "Normal",
  7914. height: math.unit(5 + 9 / 12, "feet"),
  7915. default: true
  7916. }
  7917. ]
  7918. ))
  7919. characterMakers.push(() => makeCharacter(
  7920. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  7921. {
  7922. back: {
  7923. height: math.unit(5 + 4 / 12, "feet"),
  7924. weight: math.unit(4963, "lb"),
  7925. name: "Back",
  7926. image: {
  7927. source: "./media/characters/amelia-rosie/back.svg",
  7928. extra: 1113 / 963,
  7929. bottom: 0.01
  7930. }
  7931. },
  7932. },
  7933. [
  7934. {
  7935. name: "Level 0",
  7936. height: math.unit(5 + 4 / 12, "feet")
  7937. },
  7938. {
  7939. name: "Level 1",
  7940. height: math.unit(164597, "feet"),
  7941. default: true
  7942. },
  7943. {
  7944. name: "Level 2",
  7945. height: math.unit(956243, "miles")
  7946. },
  7947. {
  7948. name: "Level 3",
  7949. height: math.unit(29421709423, "miles")
  7950. },
  7951. {
  7952. name: "Level 4",
  7953. height: math.unit(154, "lightyears")
  7954. },
  7955. {
  7956. name: "Level 5",
  7957. height: math.unit(4738272, "lightyears")
  7958. },
  7959. {
  7960. name: "Level 6",
  7961. height: math.unit(145787152896, "lightyears")
  7962. },
  7963. ]
  7964. ))
  7965. characterMakers.push(() => makeCharacter(
  7966. { name: "Rook Kitara", species: ["mammal"], tags: ["anthro"] },
  7967. {
  7968. front: {
  7969. height: math.unit(5 + 11 / 12, "feet"),
  7970. weight: math.unit(65, "kg"),
  7971. name: "Front",
  7972. image: {
  7973. source: "./media/characters/rook-kitara/front.svg",
  7974. extra: 1347 / 1274,
  7975. bottom: 0.005
  7976. }
  7977. },
  7978. },
  7979. [
  7980. {
  7981. name: "Totally Unfair",
  7982. height: math.unit(1.8, "mm")
  7983. },
  7984. {
  7985. name: "Lap Rookie",
  7986. height: math.unit(1.4, "feet")
  7987. },
  7988. {
  7989. name: "Normal",
  7990. height: math.unit(5 + 11 / 12, "feet"),
  7991. default: true
  7992. },
  7993. {
  7994. name: "How Did This Happen",
  7995. height: math.unit(80, "miles")
  7996. }
  7997. ]
  7998. ))
  7999. characterMakers.push(() => makeCharacter(
  8000. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8001. {
  8002. front: {
  8003. height: math.unit(7, "feet"),
  8004. weight: math.unit(300, "lb"),
  8005. name: "Front",
  8006. image: {
  8007. source: "./media/characters/pisces/front.svg",
  8008. extra: 2255 / 2115,
  8009. bottom: 0.03
  8010. }
  8011. },
  8012. back: {
  8013. height: math.unit(7, "feet"),
  8014. weight: math.unit(300, "lb"),
  8015. name: "Back",
  8016. image: {
  8017. source: "./media/characters/pisces/back.svg",
  8018. extra: 2146 / 2055,
  8019. bottom: 0.04
  8020. }
  8021. },
  8022. },
  8023. [
  8024. {
  8025. name: "Normal",
  8026. height: math.unit(7, "feet"),
  8027. default: true
  8028. },
  8029. {
  8030. name: "Swimming Pool",
  8031. height: math.unit(12.2, "meters")
  8032. },
  8033. {
  8034. name: "Olympic Swimming Pool",
  8035. height: math.unit(56.3, "meters")
  8036. },
  8037. {
  8038. name: "Lake Superior",
  8039. height: math.unit(93900, "meters")
  8040. },
  8041. {
  8042. name: "Mediterranean Sea",
  8043. height: math.unit(644457, "meters")
  8044. },
  8045. {
  8046. name: "World's Oceans",
  8047. height: math.unit(4567491, "meters")
  8048. },
  8049. ]
  8050. ))
  8051. characterMakers.push(() => makeCharacter(
  8052. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8053. {
  8054. front: {
  8055. height: math.unit(2.3, "meters"),
  8056. weight: math.unit(120, "kg"),
  8057. name: "Front",
  8058. image: {
  8059. source: "./media/characters/zelas/front.svg"
  8060. }
  8061. },
  8062. side: {
  8063. height: math.unit(2.3, "meters"),
  8064. weight: math.unit(120, "kg"),
  8065. name: "Side",
  8066. image: {
  8067. source: "./media/characters/zelas/side.svg"
  8068. }
  8069. },
  8070. back: {
  8071. height: math.unit(2.3, "meters"),
  8072. weight: math.unit(120, "kg"),
  8073. name: "Back",
  8074. image: {
  8075. source: "./media/characters/zelas/back.svg"
  8076. }
  8077. },
  8078. foot: {
  8079. height: math.unit(1.116, "feet"),
  8080. name: "Foot",
  8081. image: {
  8082. source: "./media/characters/zelas/foot.svg"
  8083. }
  8084. },
  8085. },
  8086. [
  8087. {
  8088. name: "Normal",
  8089. height: math.unit(2.3, "meters")
  8090. },
  8091. {
  8092. name: "Macro",
  8093. height: math.unit(30, "meters"),
  8094. default: true
  8095. },
  8096. ]
  8097. ))
  8098. characterMakers.push(() => makeCharacter(
  8099. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8100. {
  8101. front: {
  8102. height: math.unit(1, "inch"),
  8103. weight: math.unit(0.21, "grams"),
  8104. name: "Front",
  8105. image: {
  8106. source: "./media/characters/talbot/front.svg",
  8107. extra: 594 / 544
  8108. }
  8109. },
  8110. },
  8111. [
  8112. {
  8113. name: "Micro",
  8114. height: math.unit(1, "inch"),
  8115. default: true
  8116. },
  8117. ]
  8118. ))
  8119. characterMakers.push(() => makeCharacter(
  8120. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8121. {
  8122. front: {
  8123. height: math.unit(3 + 3 / 12, "feet"),
  8124. weight: math.unit(51.8, "lb"),
  8125. name: "Front",
  8126. image: {
  8127. source: "./media/characters/fliss/front.svg",
  8128. extra: 840 / 640
  8129. }
  8130. },
  8131. },
  8132. [
  8133. {
  8134. name: "Teeny Tiny",
  8135. height: math.unit(1, "mm")
  8136. },
  8137. {
  8138. name: "Small",
  8139. height: math.unit(1, "inch"),
  8140. default: true
  8141. },
  8142. {
  8143. name: "Standard Sylveon",
  8144. height: math.unit(3 + 3 / 12, "feet")
  8145. },
  8146. {
  8147. name: "Large Nuisance",
  8148. height: math.unit(33, "feet")
  8149. },
  8150. {
  8151. name: "City Filler",
  8152. height: math.unit(3000, "feet")
  8153. },
  8154. {
  8155. name: "New Horizon",
  8156. height: math.unit(6000, "miles")
  8157. },
  8158. ]
  8159. ))
  8160. characterMakers.push(() => makeCharacter(
  8161. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8162. {
  8163. front: {
  8164. height: math.unit(5, "cm"),
  8165. weight: math.unit(1.94, "g"),
  8166. name: "Front",
  8167. image: {
  8168. source: "./media/characters/fleta/front.svg",
  8169. extra: 835 / 803
  8170. }
  8171. },
  8172. back: {
  8173. height: math.unit(5, "cm"),
  8174. weight: math.unit(1.94, "g"),
  8175. name: "Back",
  8176. image: {
  8177. source: "./media/characters/fleta/back.svg",
  8178. extra: 835 / 803
  8179. }
  8180. },
  8181. },
  8182. [
  8183. {
  8184. name: "Micro",
  8185. height: math.unit(5, "cm"),
  8186. default: true
  8187. },
  8188. ]
  8189. ))
  8190. characterMakers.push(() => makeCharacter(
  8191. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8192. {
  8193. front: {
  8194. height: math.unit(6, "feet"),
  8195. weight: math.unit(225, "lb"),
  8196. name: "Front",
  8197. image: {
  8198. source: "./media/characters/dominic/front.svg",
  8199. extra: 1770 / 1620,
  8200. bottom: 0.025
  8201. }
  8202. },
  8203. back: {
  8204. height: math.unit(6, "feet"),
  8205. weight: math.unit(225, "lb"),
  8206. name: "Back",
  8207. image: {
  8208. source: "./media/characters/dominic/back.svg",
  8209. extra: 1745 / 1620,
  8210. bottom: 0.065
  8211. }
  8212. },
  8213. },
  8214. [
  8215. {
  8216. name: "Nano",
  8217. height: math.unit(0.1, "mm")
  8218. },
  8219. {
  8220. name: "Micro-",
  8221. height: math.unit(1, "mm")
  8222. },
  8223. {
  8224. name: "Micro",
  8225. height: math.unit(4, "inches")
  8226. },
  8227. {
  8228. name: "Normal",
  8229. height: math.unit(6 + 4 / 12, "feet"),
  8230. default: true
  8231. },
  8232. {
  8233. name: "Macro",
  8234. height: math.unit(115, "feet")
  8235. },
  8236. {
  8237. name: "Macro+",
  8238. height: math.unit(955, "feet")
  8239. },
  8240. {
  8241. name: "Megamacro",
  8242. height: math.unit(8990, "feet")
  8243. },
  8244. {
  8245. name: "Gigmacro",
  8246. height: math.unit(9310, "miles")
  8247. },
  8248. {
  8249. name: "Teramacro",
  8250. height: math.unit(1567005010, "miles")
  8251. },
  8252. {
  8253. name: "Examacro",
  8254. height: math.unit(1425, "parsecs")
  8255. },
  8256. ]
  8257. ))
  8258. characterMakers.push(() => makeCharacter(
  8259. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8260. {
  8261. front: {
  8262. height: math.unit(400, "feet"),
  8263. weight: math.unit(44444444, "lb"),
  8264. name: "Front",
  8265. image: {
  8266. source: "./media/characters/major-colonel/front.svg"
  8267. }
  8268. },
  8269. back: {
  8270. height: math.unit(400, "feet"),
  8271. weight: math.unit(44444444, "lb"),
  8272. name: "Back",
  8273. image: {
  8274. source: "./media/characters/major-colonel/back.svg"
  8275. }
  8276. },
  8277. },
  8278. [
  8279. {
  8280. name: "Macro",
  8281. height: math.unit(400, "feet"),
  8282. default: true
  8283. },
  8284. ]
  8285. ))
  8286. characterMakers.push(() => makeCharacter(
  8287. { name: "Axel Lycan", species: ["cat"], tags: ["anthro"] },
  8288. {
  8289. front: {
  8290. height: math.unit(6, "feet"),
  8291. weight: math.unit(120, "lb"),
  8292. name: "Front",
  8293. image: {
  8294. source: "./media/characters/axel-lycan/front.svg",
  8295. extra: 1,
  8296. bottom: 0.08
  8297. }
  8298. },
  8299. },
  8300. [
  8301. {
  8302. name: "Macro",
  8303. height: math.unit(1, "km"),
  8304. default: true
  8305. },
  8306. ]
  8307. ))
  8308. characterMakers.push(() => makeCharacter(
  8309. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8310. {
  8311. front: {
  8312. height: math.unit(5 + 9 / 12, "feet"),
  8313. weight: math.unit(175, "lb"),
  8314. name: "Front",
  8315. image: {
  8316. source: "./media/characters/vanrel-hyena/front.svg",
  8317. extra: 1086 / 1010,
  8318. bottom: 0.04
  8319. }
  8320. },
  8321. },
  8322. [
  8323. {
  8324. name: "Normal",
  8325. height: math.unit(5 + 9 / 12, "feet"),
  8326. default: true
  8327. },
  8328. ]
  8329. ))
  8330. characterMakers.push(() => makeCharacter(
  8331. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8332. {
  8333. front: {
  8334. height: math.unit(6, "feet"),
  8335. weight: math.unit(103, "lb"),
  8336. name: "Front",
  8337. image: {
  8338. source: "./media/characters/abbott-absol/front.svg",
  8339. extra: 2010 / 1842
  8340. }
  8341. },
  8342. },
  8343. [
  8344. {
  8345. name: "Megamicro",
  8346. height: math.unit(0.1, "mm")
  8347. },
  8348. {
  8349. name: "Micro",
  8350. height: math.unit(1, "inch")
  8351. },
  8352. {
  8353. name: "Normal",
  8354. height: math.unit(6, "feet"),
  8355. default: true
  8356. },
  8357. ]
  8358. ))
  8359. characterMakers.push(() => makeCharacter(
  8360. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8361. {
  8362. front: {
  8363. height: math.unit(6, "feet"),
  8364. weight: math.unit(264, "lb"),
  8365. name: "Front",
  8366. image: {
  8367. source: "./media/characters/hector/front.svg",
  8368. extra: 2280 / 2130,
  8369. bottom: 0.07
  8370. }
  8371. },
  8372. },
  8373. [
  8374. {
  8375. name: "Normal",
  8376. height: math.unit(12.25, "foot"),
  8377. default: true
  8378. },
  8379. {
  8380. name: "Macro",
  8381. height: math.unit(160, "feet")
  8382. },
  8383. ]
  8384. ))
  8385. characterMakers.push(() => makeCharacter(
  8386. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8387. {
  8388. front: {
  8389. height: math.unit(6, "feet"),
  8390. weight: math.unit(150, "lb"),
  8391. name: "Front",
  8392. image: {
  8393. source: "./media/characters/sal/front.svg",
  8394. extra: 1846 / 1699,
  8395. bottom: 0.04
  8396. }
  8397. },
  8398. },
  8399. [
  8400. {
  8401. name: "Megamacro",
  8402. height: math.unit(10, "miles"),
  8403. default: true
  8404. },
  8405. ]
  8406. ))
  8407. characterMakers.push(() => makeCharacter(
  8408. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8409. {
  8410. front: {
  8411. height: math.unit(3, "meters"),
  8412. weight: math.unit(450, "kg"),
  8413. name: "front",
  8414. image: {
  8415. source: "./media/characters/ranger/front.svg",
  8416. extra: 2401 / 2243,
  8417. bottom: 0.05
  8418. }
  8419. },
  8420. },
  8421. [
  8422. {
  8423. name: "Normal",
  8424. height: math.unit(3, "meters"),
  8425. default: true
  8426. },
  8427. ]
  8428. ))
  8429. characterMakers.push(() => makeCharacter(
  8430. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8431. {
  8432. front: {
  8433. height: math.unit(14, "feet"),
  8434. weight: math.unit(800, "kg"),
  8435. name: "Front",
  8436. image: {
  8437. source: "./media/characters/theresa/front.svg",
  8438. extra: 3575 / 3346,
  8439. bottom: 0.03
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Normal",
  8446. height: math.unit(14, "feet"),
  8447. default: true
  8448. },
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8453. {
  8454. front: {
  8455. height: math.unit(6, "feet"),
  8456. weight: math.unit(3, "kg"),
  8457. name: "Front",
  8458. image: {
  8459. source: "./media/characters/ine/front.svg",
  8460. extra: 678 / 539,
  8461. bottom: 0.023
  8462. }
  8463. },
  8464. },
  8465. [
  8466. {
  8467. name: "Normal",
  8468. height: math.unit(2.265, "feet"),
  8469. default: true
  8470. },
  8471. ]
  8472. ))
  8473. characterMakers.push(() => makeCharacter(
  8474. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8475. {
  8476. front: {
  8477. height: math.unit(5, "feet"),
  8478. weight: math.unit(30, "kg"),
  8479. name: "Front",
  8480. image: {
  8481. source: "./media/characters/vial/front.svg",
  8482. extra: 1365 / 1277,
  8483. bottom: 0.04
  8484. }
  8485. },
  8486. },
  8487. [
  8488. {
  8489. name: "Normal",
  8490. height: math.unit(5, "feet"),
  8491. default: true
  8492. },
  8493. ]
  8494. ))
  8495. characterMakers.push(() => makeCharacter(
  8496. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8497. {
  8498. side: {
  8499. height: math.unit(3.4, "meters"),
  8500. weight: math.unit(1000, "lb"),
  8501. name: "Side",
  8502. image: {
  8503. source: "./media/characters/rovoska/side.svg",
  8504. extra: 4403 / 1515
  8505. }
  8506. },
  8507. },
  8508. [
  8509. {
  8510. name: "Normal",
  8511. height: math.unit(3.4, "meters"),
  8512. default: true
  8513. },
  8514. ]
  8515. ))
  8516. characterMakers.push(() => makeCharacter(
  8517. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8518. {
  8519. front: {
  8520. height: math.unit(8, "feet"),
  8521. weight: math.unit(315, "lb"),
  8522. name: "Front",
  8523. image: {
  8524. source: "./media/characters/gunner-rotthbauer/front.svg"
  8525. }
  8526. },
  8527. back: {
  8528. height: math.unit(8, "feet"),
  8529. weight: math.unit(315, "lb"),
  8530. name: "Back",
  8531. image: {
  8532. source: "./media/characters/gunner-rotthbauer/back.svg"
  8533. }
  8534. },
  8535. },
  8536. [
  8537. {
  8538. name: "Micro",
  8539. height: math.unit(3.5, "inches")
  8540. },
  8541. {
  8542. name: "Normal",
  8543. height: math.unit(8, "feet"),
  8544. default: true
  8545. },
  8546. {
  8547. name: "Macro",
  8548. height: math.unit(250, "feet")
  8549. },
  8550. {
  8551. name: "Megamacro",
  8552. height: math.unit(1, "AU")
  8553. },
  8554. ]
  8555. ))
  8556. characterMakers.push(() => makeCharacter(
  8557. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8558. {
  8559. front: {
  8560. height: math.unit(5 + 5 / 12, "feet"),
  8561. weight: math.unit(140, "lb"),
  8562. name: "Front",
  8563. image: {
  8564. source: "./media/characters/allatia/front.svg",
  8565. extra: 1227 / 1180,
  8566. bottom: 0.027
  8567. }
  8568. },
  8569. },
  8570. [
  8571. {
  8572. name: "Normal",
  8573. height: math.unit(5 + 5 / 12, "feet")
  8574. },
  8575. {
  8576. name: "Macro",
  8577. height: math.unit(250, "feet"),
  8578. default: true
  8579. },
  8580. {
  8581. name: "Megamacro",
  8582. height: math.unit(8, "miles")
  8583. }
  8584. ]
  8585. ))
  8586. characterMakers.push(() => makeCharacter(
  8587. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8588. {
  8589. front: {
  8590. height: math.unit(6, "feet"),
  8591. weight: math.unit(120, "lb"),
  8592. name: "Front",
  8593. image: {
  8594. source: "./media/characters/tene/front.svg",
  8595. extra: 1728 / 1578,
  8596. bottom: 0.022
  8597. }
  8598. },
  8599. stomping: {
  8600. height: math.unit(2.025, "meters"),
  8601. weight: math.unit(120, "lb"),
  8602. name: "Stomping",
  8603. image: {
  8604. source: "./media/characters/tene/stomping.svg",
  8605. extra: 938 / 873,
  8606. bottom: 0.01
  8607. }
  8608. },
  8609. sitting: {
  8610. height: math.unit(1, "meter"),
  8611. weight: math.unit(120, "lb"),
  8612. name: "Sitting",
  8613. image: {
  8614. source: "./media/characters/tene/sitting.svg",
  8615. extra: 437 / 415,
  8616. bottom: 0.1
  8617. }
  8618. },
  8619. feral: {
  8620. height: math.unit(3.9, "feet"),
  8621. weight: math.unit(250, "lb"),
  8622. name: "Feral",
  8623. image: {
  8624. source: "./media/characters/tene/feral.svg",
  8625. extra: 717 / 458,
  8626. bottom: 0.179
  8627. }
  8628. },
  8629. },
  8630. [
  8631. {
  8632. name: "Normal",
  8633. height: math.unit(6, "feet")
  8634. },
  8635. {
  8636. name: "Macro",
  8637. height: math.unit(300, "feet"),
  8638. default: true
  8639. },
  8640. {
  8641. name: "Megamacro",
  8642. height: math.unit(5, "miles")
  8643. },
  8644. ]
  8645. ))
  8646. characterMakers.push(() => makeCharacter(
  8647. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8648. {
  8649. side: {
  8650. height: math.unit(6, "feet"),
  8651. name: "Side",
  8652. image: {
  8653. source: "./media/characters/evander/side.svg",
  8654. extra: 877 / 477
  8655. }
  8656. },
  8657. },
  8658. [
  8659. {
  8660. name: "Normal",
  8661. height: math.unit(0.83, "meters"),
  8662. default: true
  8663. },
  8664. ]
  8665. ))
  8666. characterMakers.push(() => makeCharacter(
  8667. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8668. {
  8669. front: {
  8670. height: math.unit(12, "feet"),
  8671. weight: math.unit(1000, "lb"),
  8672. name: "Front",
  8673. image: {
  8674. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8675. extra: 1762 / 1611
  8676. }
  8677. },
  8678. back: {
  8679. height: math.unit(12, "feet"),
  8680. weight: math.unit(1000, "lb"),
  8681. name: "Back",
  8682. image: {
  8683. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8684. extra: 1762 / 1611
  8685. }
  8686. },
  8687. },
  8688. [
  8689. {
  8690. name: "Normal",
  8691. height: math.unit(12, "feet"),
  8692. default: true
  8693. },
  8694. {
  8695. name: "Kaiju",
  8696. height: math.unit(150, "feet")
  8697. },
  8698. ]
  8699. ))
  8700. characterMakers.push(() => makeCharacter(
  8701. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8702. {
  8703. front: {
  8704. height: math.unit(6, "feet"),
  8705. weight: math.unit(150, "lb"),
  8706. name: "Front",
  8707. image: {
  8708. source: "./media/characters/zero-alurus/front.svg"
  8709. }
  8710. },
  8711. back: {
  8712. height: math.unit(6, "feet"),
  8713. weight: math.unit(150, "lb"),
  8714. name: "Back",
  8715. image: {
  8716. source: "./media/characters/zero-alurus/back.svg"
  8717. }
  8718. },
  8719. },
  8720. [
  8721. {
  8722. name: "Normal",
  8723. height: math.unit(5 + 10 / 12, "feet")
  8724. },
  8725. {
  8726. name: "Macro",
  8727. height: math.unit(60, "feet"),
  8728. default: true
  8729. },
  8730. {
  8731. name: "Macro+",
  8732. height: math.unit(450, "feet")
  8733. },
  8734. ]
  8735. ))
  8736. characterMakers.push(() => makeCharacter(
  8737. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8738. {
  8739. front: {
  8740. height: math.unit(6, "feet"),
  8741. weight: math.unit(200, "lb"),
  8742. name: "Front",
  8743. image: {
  8744. source: "./media/characters/mega-shi/front.svg",
  8745. extra: 1279 / 1250,
  8746. bottom: 0.02
  8747. }
  8748. },
  8749. back: {
  8750. height: math.unit(6, "feet"),
  8751. weight: math.unit(200, "lb"),
  8752. name: "Back",
  8753. image: {
  8754. source: "./media/characters/mega-shi/back.svg",
  8755. extra: 1279 / 1250,
  8756. bottom: 0.02
  8757. }
  8758. },
  8759. },
  8760. [
  8761. {
  8762. name: "Micro",
  8763. height: math.unit(16 + 6 / 12, "feet")
  8764. },
  8765. {
  8766. name: "Third Dimension",
  8767. height: math.unit(40, "meters")
  8768. },
  8769. {
  8770. name: "Normal",
  8771. height: math.unit(660, "feet"),
  8772. default: true
  8773. },
  8774. {
  8775. name: "Megamacro",
  8776. height: math.unit(10, "miles")
  8777. },
  8778. {
  8779. name: "Planetary Launch",
  8780. height: math.unit(500, "miles")
  8781. },
  8782. {
  8783. name: "Interstellar",
  8784. height: math.unit(1e9, "miles")
  8785. },
  8786. {
  8787. name: "Leaving the Universe",
  8788. height: math.unit(1, "gigaparsec")
  8789. },
  8790. {
  8791. name: "Travelling Universes",
  8792. height: math.unit(30e15, "parsecs")
  8793. },
  8794. ]
  8795. ))
  8796. characterMakers.push(() => makeCharacter(
  8797. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  8798. {
  8799. front: {
  8800. height: math.unit(6, "feet"),
  8801. weight: math.unit(150, "lb"),
  8802. name: "Front",
  8803. image: {
  8804. source: "./media/characters/odyssey/front.svg",
  8805. extra: 1782 / 1582,
  8806. bottom: 0.01
  8807. }
  8808. },
  8809. side: {
  8810. height: math.unit(5.7, "feet"),
  8811. weight: math.unit(140, "lb"),
  8812. name: "Side",
  8813. image: {
  8814. source: "./media/characters/odyssey/side.svg",
  8815. extra: 6462 / 5700
  8816. }
  8817. },
  8818. },
  8819. [
  8820. {
  8821. name: "Normal",
  8822. height: math.unit(5 + 4 / 12, "feet")
  8823. },
  8824. {
  8825. name: "Macro",
  8826. height: math.unit(1, "km")
  8827. },
  8828. {
  8829. name: "Megamacro",
  8830. height: math.unit(3000, "km")
  8831. },
  8832. {
  8833. name: "Gigamacro",
  8834. height: math.unit(1, "AU"),
  8835. default: true
  8836. },
  8837. {
  8838. name: "Omniversal",
  8839. height: math.unit(100e14, "lightyears")
  8840. },
  8841. ]
  8842. ))
  8843. characterMakers.push(() => makeCharacter(
  8844. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  8845. {
  8846. front: {
  8847. height: math.unit(6, "feet"),
  8848. weight: math.unit(300, "lb"),
  8849. name: "Front",
  8850. image: {
  8851. source: "./media/characters/mekuto/front.svg",
  8852. extra: 921 / 832,
  8853. bottom: 0.03
  8854. }
  8855. },
  8856. hand: {
  8857. height: math.unit(6 / 10.24, "feet"),
  8858. name: "Hand",
  8859. image: {
  8860. source: "./media/characters/mekuto/hand.svg"
  8861. }
  8862. },
  8863. foot: {
  8864. height: math.unit(6 / 5.05, "feet"),
  8865. name: "Foot",
  8866. image: {
  8867. source: "./media/characters/mekuto/foot.svg"
  8868. }
  8869. },
  8870. },
  8871. [
  8872. {
  8873. name: "Minimicro",
  8874. height: math.unit(0.2, "inches")
  8875. },
  8876. {
  8877. name: "Micro",
  8878. height: math.unit(1.5, "inches")
  8879. },
  8880. {
  8881. name: "Normal",
  8882. height: math.unit(5 + 11 / 12, "feet"),
  8883. default: true
  8884. },
  8885. {
  8886. name: "Minimacro",
  8887. height: math.unit(17 + 9 / 12, "feet")
  8888. },
  8889. {
  8890. name: "Macro",
  8891. height: math.unit(177.5, "feet")
  8892. },
  8893. {
  8894. name: "Megamacro",
  8895. height: math.unit(152, "miles")
  8896. },
  8897. ]
  8898. ))
  8899. characterMakers.push(() => makeCharacter(
  8900. { name: "Dafydd Tomos", species: ["unknown"], tags: ["anthro"] },
  8901. {
  8902. front: {
  8903. height: math.unit(6.5, "inches"),
  8904. weight: math.unit(13, "oz"),
  8905. name: "Front",
  8906. image: {
  8907. source: "./media/characters/dafydd-tomos/front.svg",
  8908. extra: 2990 / 2603,
  8909. bottom: 0.03
  8910. }
  8911. },
  8912. },
  8913. [
  8914. {
  8915. name: "Micro",
  8916. height: math.unit(6.5, "inches"),
  8917. default: true
  8918. },
  8919. ]
  8920. ))
  8921. characterMakers.push(() => makeCharacter(
  8922. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  8923. {
  8924. front: {
  8925. height: math.unit(6, "feet"),
  8926. weight: math.unit(150, "lb"),
  8927. name: "Front",
  8928. image: {
  8929. source: "./media/characters/splinter/front.svg",
  8930. extra: 2990 / 2882,
  8931. bottom: 0.04
  8932. }
  8933. },
  8934. back: {
  8935. height: math.unit(6, "feet"),
  8936. weight: math.unit(150, "lb"),
  8937. name: "Back",
  8938. image: {
  8939. source: "./media/characters/splinter/back.svg",
  8940. extra: 2990 / 2882,
  8941. bottom: 0.04
  8942. }
  8943. },
  8944. },
  8945. [
  8946. {
  8947. name: "Normal",
  8948. height: math.unit(6, "feet")
  8949. },
  8950. {
  8951. name: "Macro",
  8952. height: math.unit(230, "meters"),
  8953. default: true
  8954. },
  8955. ]
  8956. ))
  8957. characterMakers.push(() => makeCharacter(
  8958. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  8959. {
  8960. front: {
  8961. height: math.unit(4 + 10 / 12, "feet"),
  8962. weight: math.unit(480, "lb"),
  8963. name: "Front",
  8964. image: {
  8965. source: "./media/characters/snow-gabumon/front.svg",
  8966. extra: 1140 / 963,
  8967. bottom: 0.058
  8968. }
  8969. },
  8970. back: {
  8971. height: math.unit(4 + 10 / 12, "feet"),
  8972. weight: math.unit(480, "lb"),
  8973. name: "Back",
  8974. image: {
  8975. source: "./media/characters/snow-gabumon/back.svg",
  8976. extra: 1115 / 962,
  8977. bottom: 0.041
  8978. }
  8979. },
  8980. frontUndresed: {
  8981. height: math.unit(4 + 10 / 12, "feet"),
  8982. weight: math.unit(480, "lb"),
  8983. name: "Front (Undressed)",
  8984. image: {
  8985. source: "./media/characters/snow-gabumon/front-undressed.svg",
  8986. extra: 1061 / 960,
  8987. bottom: 0.045
  8988. }
  8989. },
  8990. },
  8991. [
  8992. {
  8993. name: "Micro",
  8994. height: math.unit(1, "inch")
  8995. },
  8996. {
  8997. name: "Normal",
  8998. height: math.unit(4 + 10 / 12, "feet"),
  8999. default: true
  9000. },
  9001. {
  9002. name: "Macro",
  9003. height: math.unit(200, "feet")
  9004. },
  9005. {
  9006. name: "Megamacro",
  9007. height: math.unit(120, "miles")
  9008. },
  9009. {
  9010. name: "Gigamacro",
  9011. height: math.unit(9800, "miles")
  9012. },
  9013. ]
  9014. ))
  9015. characterMakers.push(() => makeCharacter(
  9016. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9017. {
  9018. front: {
  9019. height: math.unit(1.7, "meters"),
  9020. weight: math.unit(140, "lb"),
  9021. name: "Front",
  9022. image: {
  9023. source: "./media/characters/moody/front.svg",
  9024. extra: 3226 / 3007,
  9025. bottom: 0.087
  9026. }
  9027. },
  9028. },
  9029. [
  9030. {
  9031. name: "Micro",
  9032. height: math.unit(1, "mm")
  9033. },
  9034. {
  9035. name: "Normal",
  9036. height: math.unit(1.7, "meters"),
  9037. default: true
  9038. },
  9039. {
  9040. name: "Macro",
  9041. height: math.unit(80, "meters")
  9042. },
  9043. {
  9044. name: "Macro+",
  9045. height: math.unit(500, "meters")
  9046. },
  9047. ]
  9048. ))
  9049. characterMakers.push(() => makeCharacter(
  9050. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9051. {
  9052. front: {
  9053. height: math.unit(6, "feet"),
  9054. weight: math.unit(150, "lb"),
  9055. name: "Front",
  9056. image: {
  9057. source: "./media/characters/zyas/front.svg",
  9058. extra: 1180 / 1120,
  9059. bottom: 0.045
  9060. }
  9061. },
  9062. },
  9063. [
  9064. {
  9065. name: "Normal",
  9066. height: math.unit(10, "feet"),
  9067. default: true
  9068. },
  9069. {
  9070. name: "Macro",
  9071. height: math.unit(500, "feet")
  9072. },
  9073. {
  9074. name: "Megamacro",
  9075. height: math.unit(5, "miles")
  9076. },
  9077. {
  9078. name: "Teramacro",
  9079. height: math.unit(150000, "miles")
  9080. },
  9081. ]
  9082. ))
  9083. characterMakers.push(() => makeCharacter(
  9084. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9085. {
  9086. front: {
  9087. height: math.unit(6, "feet"),
  9088. weight: math.unit(150, "lb"),
  9089. name: "Front",
  9090. image: {
  9091. source: "./media/characters/cuon/front.svg",
  9092. extra: 1390 / 1320,
  9093. bottom: 0.008
  9094. }
  9095. },
  9096. },
  9097. [
  9098. {
  9099. name: "Micro",
  9100. height: math.unit(3, "inches")
  9101. },
  9102. {
  9103. name: "Normal",
  9104. height: math.unit(18 + 9 / 12, "feet"),
  9105. default: true
  9106. },
  9107. {
  9108. name: "Macro",
  9109. height: math.unit(360, "feet")
  9110. },
  9111. {
  9112. name: "Megamacro",
  9113. height: math.unit(360, "miles")
  9114. },
  9115. ]
  9116. ))
  9117. characterMakers.push(() => makeCharacter(
  9118. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9119. {
  9120. front: {
  9121. height: math.unit(2.4, "meters"),
  9122. weight: math.unit(70, "kg"),
  9123. name: "Front",
  9124. image: {
  9125. source: "./media/characters/nyanuxk/front.svg",
  9126. extra: 1172 / 1084,
  9127. bottom: 0.065
  9128. }
  9129. },
  9130. side: {
  9131. height: math.unit(2.4, "meters"),
  9132. weight: math.unit(70, "kg"),
  9133. name: "Side",
  9134. image: {
  9135. source: "./media/characters/nyanuxk/side.svg",
  9136. extra: 1190 / 1132,
  9137. bottom: 0.007
  9138. }
  9139. },
  9140. back: {
  9141. height: math.unit(2.4, "meters"),
  9142. weight: math.unit(70, "kg"),
  9143. name: "Back",
  9144. image: {
  9145. source: "./media/characters/nyanuxk/back.svg",
  9146. extra: 1200 / 1141,
  9147. bottom: 0.015
  9148. }
  9149. },
  9150. foot: {
  9151. height: math.unit(0.52, "meters"),
  9152. name: "Foot",
  9153. image: {
  9154. source: "./media/characters/nyanuxk/foot.svg"
  9155. }
  9156. },
  9157. },
  9158. [
  9159. {
  9160. name: "Micro",
  9161. height: math.unit(2, "cm")
  9162. },
  9163. {
  9164. name: "Normal",
  9165. height: math.unit(2.4, "meters"),
  9166. default: true
  9167. },
  9168. {
  9169. name: "Smaller Macro",
  9170. height: math.unit(120, "meters")
  9171. },
  9172. {
  9173. name: "Bigger Macro",
  9174. height: math.unit(1.2, "km")
  9175. },
  9176. {
  9177. name: "Megamacro",
  9178. height: math.unit(15, "kilometers")
  9179. },
  9180. {
  9181. name: "Gigamacro",
  9182. height: math.unit(2000, "km")
  9183. },
  9184. {
  9185. name: "Teramacro",
  9186. height: math.unit(500000, "km")
  9187. },
  9188. ]
  9189. ))
  9190. characterMakers.push(() => makeCharacter(
  9191. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9192. {
  9193. side: {
  9194. height: math.unit(6, "feet"),
  9195. name: "Side",
  9196. image: {
  9197. source: "./media/characters/ailbhe/side.svg",
  9198. extra: 757 / 464,
  9199. bottom: 0.041
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Normal",
  9206. height: math.unit(1.07, "meters"),
  9207. default: true
  9208. },
  9209. ]
  9210. ))
  9211. characterMakers.push(() => makeCharacter(
  9212. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9213. {
  9214. front: {
  9215. height: math.unit(6, "feet"),
  9216. weight: math.unit(120, "kg"),
  9217. name: "Front",
  9218. image: {
  9219. source: "./media/characters/zevulfius/front.svg",
  9220. extra: 965 / 903
  9221. }
  9222. },
  9223. side: {
  9224. height: math.unit(6, "feet"),
  9225. weight: math.unit(120, "kg"),
  9226. name: "Side",
  9227. image: {
  9228. source: "./media/characters/zevulfius/side.svg",
  9229. extra: 939 / 900
  9230. }
  9231. },
  9232. back: {
  9233. height: math.unit(6, "feet"),
  9234. weight: math.unit(120, "kg"),
  9235. name: "Back",
  9236. image: {
  9237. source: "./media/characters/zevulfius/back.svg",
  9238. extra: 918 / 854,
  9239. bottom: 0.005
  9240. }
  9241. },
  9242. foot: {
  9243. height: math.unit(6 / 3.72, "feet"),
  9244. name: "Foot",
  9245. image: {
  9246. source: "./media/characters/zevulfius/foot.svg"
  9247. }
  9248. },
  9249. },
  9250. [
  9251. {
  9252. name: "Macro",
  9253. height: math.unit(750, "meters")
  9254. },
  9255. {
  9256. name: "Megamacro",
  9257. height: math.unit(20, "km"),
  9258. default: true
  9259. },
  9260. {
  9261. name: "Gigamacro",
  9262. height: math.unit(2000, "km")
  9263. },
  9264. {
  9265. name: "Teramacro",
  9266. height: math.unit(250000, "km")
  9267. },
  9268. ]
  9269. ))
  9270. characterMakers.push(() => makeCharacter(
  9271. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9272. {
  9273. front: {
  9274. height: math.unit(100, "feet"),
  9275. weight: math.unit(350, "kg"),
  9276. name: "Front",
  9277. image: {
  9278. source: "./media/characters/rikes/front.svg",
  9279. extra: 1565 / 1483,
  9280. bottom: 0.017
  9281. }
  9282. },
  9283. },
  9284. [
  9285. {
  9286. name: "Macro",
  9287. height: math.unit(100, "feet"),
  9288. default: true
  9289. },
  9290. ]
  9291. ))
  9292. characterMakers.push(() => makeCharacter(
  9293. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9294. {
  9295. anthro: {
  9296. height: math.unit(8, "feet"),
  9297. weight: math.unit(120, "kg"),
  9298. name: "Anthro",
  9299. image: {
  9300. source: "./media/characters/adam-silver-mane/anthro.svg",
  9301. extra: 5743 / 5339,
  9302. bottom: 0.07
  9303. }
  9304. },
  9305. taur: {
  9306. height: math.unit(16, "feet"),
  9307. weight: math.unit(1500, "kg"),
  9308. name: "Taur",
  9309. image: {
  9310. source: "./media/characters/adam-silver-mane/taur.svg",
  9311. extra: 1713 / 1571,
  9312. bottom: 0.01
  9313. }
  9314. },
  9315. },
  9316. [
  9317. {
  9318. name: "Normal",
  9319. height: math.unit(8, "feet")
  9320. },
  9321. {
  9322. name: "Minimacro",
  9323. height: math.unit(80, "feet")
  9324. },
  9325. {
  9326. name: "Macro",
  9327. height: math.unit(800, "feet"),
  9328. default: true
  9329. },
  9330. {
  9331. name: "Megamacro",
  9332. height: math.unit(8000, "feet")
  9333. },
  9334. {
  9335. name: "Gigamacro",
  9336. height: math.unit(800, "miles")
  9337. },
  9338. {
  9339. name: "Teramacro",
  9340. height: math.unit(80000, "miles")
  9341. },
  9342. {
  9343. name: "Celestial",
  9344. height: math.unit(8e6, "miles")
  9345. },
  9346. {
  9347. name: "Star Dragon",
  9348. height: math.unit(800000, "parsecs")
  9349. },
  9350. {
  9351. name: "Godly",
  9352. height: math.unit(800, "teraparsecs")
  9353. },
  9354. ]
  9355. ))
  9356. characterMakers.push(() => makeCharacter(
  9357. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9358. {
  9359. front: {
  9360. height: math.unit(6, "feet"),
  9361. weight: math.unit(150, "lb"),
  9362. name: "Front",
  9363. image: {
  9364. source: "./media/characters/ky'owin/front.svg",
  9365. extra: 3888 / 3068,
  9366. bottom: 0.015
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Normal",
  9373. height: math.unit(6 + 8 / 12, "feet")
  9374. },
  9375. {
  9376. name: "Large",
  9377. height: math.unit(68, "feet")
  9378. },
  9379. {
  9380. name: "Macro",
  9381. height: math.unit(132, "feet")
  9382. },
  9383. {
  9384. name: "Macro+",
  9385. height: math.unit(340, "feet")
  9386. },
  9387. {
  9388. name: "Macro++",
  9389. height: math.unit(680, "feet"),
  9390. default: true
  9391. },
  9392. {
  9393. name: "Megamacro",
  9394. height: math.unit(1, "mile")
  9395. },
  9396. {
  9397. name: "Megamacro+",
  9398. height: math.unit(10, "miles")
  9399. },
  9400. ]
  9401. ))
  9402. characterMakers.push(() => makeCharacter(
  9403. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9404. {
  9405. front: {
  9406. height: math.unit(4, "feet"),
  9407. weight: math.unit(50, "lb"),
  9408. name: "Front",
  9409. image: {
  9410. source: "./media/characters/mal/front.svg",
  9411. extra: 785 / 724,
  9412. bottom: 0.07
  9413. }
  9414. },
  9415. },
  9416. [
  9417. {
  9418. name: "Micro",
  9419. height: math.unit(4, "inches")
  9420. },
  9421. {
  9422. name: "Normal",
  9423. height: math.unit(4, "feet"),
  9424. default: true
  9425. },
  9426. {
  9427. name: "Macro",
  9428. height: math.unit(200, "feet")
  9429. },
  9430. ]
  9431. ))
  9432. characterMakers.push(() => makeCharacter(
  9433. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9434. {
  9435. front: {
  9436. height: math.unit(6, "feet"),
  9437. weight: math.unit(150, "lb"),
  9438. name: "Front",
  9439. image: {
  9440. source: "./media/characters/jordan-deware/front.svg",
  9441. extra: 1191 / 1012
  9442. }
  9443. },
  9444. },
  9445. [
  9446. {
  9447. name: "Nano",
  9448. height: math.unit(0.01, "mm")
  9449. },
  9450. {
  9451. name: "Minimicro",
  9452. height: math.unit(1, "mm")
  9453. },
  9454. {
  9455. name: "Micro",
  9456. height: math.unit(0.5, "inches")
  9457. },
  9458. {
  9459. name: "Normal",
  9460. height: math.unit(4, "feet"),
  9461. default: true
  9462. },
  9463. {
  9464. name: "Minimacro",
  9465. height: math.unit(40, "meters")
  9466. },
  9467. {
  9468. name: "Small Macro",
  9469. height: math.unit(400, "meters")
  9470. },
  9471. {
  9472. name: "Macro",
  9473. height: math.unit(4, "miles")
  9474. },
  9475. {
  9476. name: "Megamacro",
  9477. height: math.unit(40, "miles")
  9478. },
  9479. {
  9480. name: "Megamacro+",
  9481. height: math.unit(400, "miles")
  9482. },
  9483. {
  9484. name: "Gigamacro",
  9485. height: math.unit(400000, "miles")
  9486. },
  9487. ]
  9488. ))
  9489. characterMakers.push(() => makeCharacter(
  9490. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9491. {
  9492. side: {
  9493. height: math.unit(6, "feet"),
  9494. weight: math.unit(150, "lb"),
  9495. name: "Side",
  9496. image: {
  9497. source: "./media/characters/kimiko/side.svg",
  9498. extra: 600 / 358
  9499. }
  9500. },
  9501. },
  9502. [
  9503. {
  9504. name: "Normal",
  9505. height: math.unit(15, "feet"),
  9506. default: true
  9507. },
  9508. {
  9509. name: "Macro",
  9510. height: math.unit(220, "feet")
  9511. },
  9512. {
  9513. name: "Macro+",
  9514. height: math.unit(1450, "feet")
  9515. },
  9516. {
  9517. name: "Megamacro",
  9518. height: math.unit(11500, "feet")
  9519. },
  9520. {
  9521. name: "Gigamacro",
  9522. height: math.unit(9500, "miles")
  9523. },
  9524. {
  9525. name: "Teramacro",
  9526. height: math.unit(2208005005, "miles")
  9527. },
  9528. {
  9529. name: "Examacro",
  9530. height: math.unit(2750, "parsecs")
  9531. },
  9532. {
  9533. name: "Zettamacro",
  9534. height: math.unit(101500, "parsecs")
  9535. },
  9536. ]
  9537. ))
  9538. characterMakers.push(() => makeCharacter(
  9539. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9540. {
  9541. front: {
  9542. height: math.unit(6, "feet"),
  9543. weight: math.unit(70, "kg"),
  9544. name: "Front",
  9545. image: {
  9546. source: "./media/characters/andrew-sleepy/front.svg"
  9547. }
  9548. },
  9549. side: {
  9550. height: math.unit(6, "feet"),
  9551. weight: math.unit(70, "kg"),
  9552. name: "Side",
  9553. image: {
  9554. source: "./media/characters/andrew-sleepy/side.svg"
  9555. }
  9556. },
  9557. },
  9558. [
  9559. {
  9560. name: "Micro",
  9561. height: math.unit(1, "mm"),
  9562. default: true
  9563. },
  9564. ]
  9565. ))
  9566. characterMakers.push(() => makeCharacter(
  9567. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9568. {
  9569. front: {
  9570. height: math.unit(6, "feet"),
  9571. weight: math.unit(150, "lb"),
  9572. name: "Front",
  9573. image: {
  9574. source: "./media/characters/judio/front.svg",
  9575. extra: 1258 / 1110
  9576. }
  9577. },
  9578. },
  9579. [
  9580. {
  9581. name: "Normal",
  9582. height: math.unit(5 + 6 / 12, "feet")
  9583. },
  9584. {
  9585. name: "Macro",
  9586. height: math.unit(1000, "feet"),
  9587. default: true
  9588. },
  9589. {
  9590. name: "Megamacro",
  9591. height: math.unit(10, "miles")
  9592. },
  9593. ]
  9594. ))
  9595. characterMakers.push(() => makeCharacter(
  9596. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9597. {
  9598. front: {
  9599. height: math.unit(6, "feet"),
  9600. weight: math.unit(68, "kg"),
  9601. name: "Front",
  9602. image: {
  9603. source: "./media/characters/nomaxice/front.svg",
  9604. extra: 1498 / 1073,
  9605. bottom: 0.075
  9606. }
  9607. },
  9608. foot: {
  9609. height: math.unit(1.1, "feet"),
  9610. name: "Foot",
  9611. image: {
  9612. source: "./media/characters/nomaxice/foot.svg"
  9613. }
  9614. },
  9615. },
  9616. [
  9617. {
  9618. name: "Micro",
  9619. height: math.unit(8, "cm")
  9620. },
  9621. {
  9622. name: "Norm",
  9623. height: math.unit(1.82, "m")
  9624. },
  9625. {
  9626. name: "Norm+",
  9627. height: math.unit(8.8, "feet")
  9628. },
  9629. {
  9630. name: "Big",
  9631. height: math.unit(8, "meters"),
  9632. default: true
  9633. },
  9634. {
  9635. name: "Macro",
  9636. height: math.unit(18, "meters")
  9637. },
  9638. {
  9639. name: "Macro+",
  9640. height: math.unit(88, "meters")
  9641. },
  9642. ]
  9643. ))
  9644. characterMakers.push(() => makeCharacter(
  9645. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9646. {
  9647. front: {
  9648. height: math.unit(12, "feet"),
  9649. weight: math.unit(1.5, "tons"),
  9650. name: "Front",
  9651. image: {
  9652. source: "./media/characters/dydros/front.svg",
  9653. extra: 863 / 800,
  9654. bottom: 0.015
  9655. }
  9656. },
  9657. back: {
  9658. height: math.unit(12, "feet"),
  9659. weight: math.unit(1.5, "tons"),
  9660. name: "Back",
  9661. image: {
  9662. source: "./media/characters/dydros/back.svg",
  9663. extra: 900 / 843,
  9664. bottom: 0.005
  9665. }
  9666. },
  9667. },
  9668. [
  9669. {
  9670. name: "Normal",
  9671. height: math.unit(12, "feet"),
  9672. default: true
  9673. },
  9674. ]
  9675. ))
  9676. characterMakers.push(() => makeCharacter(
  9677. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9678. {
  9679. front: {
  9680. height: math.unit(6, "feet"),
  9681. weight: math.unit(100, "kg"),
  9682. name: "Front",
  9683. image: {
  9684. source: "./media/characters/riggi/front.svg",
  9685. extra: 5787 / 5303
  9686. }
  9687. },
  9688. hyper: {
  9689. height: math.unit(6 * 5 / 3, "feet"),
  9690. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9691. name: "Hyper",
  9692. image: {
  9693. source: "./media/characters/riggi/hyper.svg",
  9694. extra: 3595 / 3485
  9695. }
  9696. },
  9697. },
  9698. [
  9699. {
  9700. name: "Small Macro",
  9701. height: math.unit(50, "feet")
  9702. },
  9703. {
  9704. name: "Default",
  9705. height: math.unit(200, "feet"),
  9706. default: true
  9707. },
  9708. {
  9709. name: "Loom",
  9710. height: math.unit(10000, "feet")
  9711. },
  9712. {
  9713. name: "Cruising Altitude",
  9714. height: math.unit(30000, "feet")
  9715. },
  9716. {
  9717. name: "Megamacro",
  9718. height: math.unit(100, "miles")
  9719. },
  9720. {
  9721. name: "Continent Sized",
  9722. height: math.unit(2800, "miles")
  9723. },
  9724. {
  9725. name: "Earth Sized",
  9726. height: math.unit(8000, "miles")
  9727. },
  9728. ]
  9729. ))
  9730. characterMakers.push(() => makeCharacter(
  9731. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9732. {
  9733. front: {
  9734. height: math.unit(6, "feet"),
  9735. weight: math.unit(250, "lb"),
  9736. name: "Front",
  9737. image: {
  9738. source: "./media/characters/alexi/front.svg",
  9739. extra: 3483 / 3291,
  9740. bottom: 0.04
  9741. }
  9742. },
  9743. back: {
  9744. height: math.unit(6, "feet"),
  9745. weight: math.unit(250, "lb"),
  9746. name: "Back",
  9747. image: {
  9748. source: "./media/characters/alexi/back.svg",
  9749. extra: 3533 / 3356,
  9750. bottom: 0.021
  9751. }
  9752. },
  9753. frontTransforming: {
  9754. height: math.unit(8.58, "feet"),
  9755. weight: math.unit(1300, "lb"),
  9756. name: "Transforming",
  9757. image: {
  9758. source: "./media/characters/alexi/front-transforming.svg",
  9759. extra: 437 / 409,
  9760. bottom: 19/458.66
  9761. }
  9762. },
  9763. frontTransformed: {
  9764. height: math.unit(12.5, "feet"),
  9765. weight: math.unit(4000, "lb"),
  9766. name: "Transformed",
  9767. image: {
  9768. source: "./media/characters/alexi/front-transformed.svg",
  9769. extra: 639 / 614,
  9770. bottom: 30.55/671
  9771. }
  9772. },
  9773. },
  9774. [
  9775. {
  9776. name: "Normal",
  9777. height: math.unit(3, "meters"),
  9778. default: true
  9779. },
  9780. {
  9781. name: "Minimacro",
  9782. height: math.unit(30, "meters")
  9783. },
  9784. {
  9785. name: "Macro",
  9786. height: math.unit(500, "meters")
  9787. },
  9788. {
  9789. name: "Megamacro",
  9790. height: math.unit(9000, "km")
  9791. },
  9792. {
  9793. name: "Teramacro",
  9794. height: math.unit(384000, "km")
  9795. },
  9796. ]
  9797. ))
  9798. characterMakers.push(() => makeCharacter(
  9799. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  9800. {
  9801. front: {
  9802. height: math.unit(6, "feet"),
  9803. weight: math.unit(150, "lb"),
  9804. name: "Front",
  9805. image: {
  9806. source: "./media/characters/kayroo/front.svg",
  9807. extra: 1153 / 1038,
  9808. bottom: 0.06
  9809. }
  9810. },
  9811. foot: {
  9812. height: math.unit(6, "feet"),
  9813. weight: math.unit(150, "lb"),
  9814. name: "Foot",
  9815. image: {
  9816. source: "./media/characters/kayroo/foot.svg"
  9817. }
  9818. },
  9819. },
  9820. [
  9821. {
  9822. name: "Normal",
  9823. height: math.unit(8, "feet"),
  9824. default: true
  9825. },
  9826. {
  9827. name: "Minimacro",
  9828. height: math.unit(250, "feet")
  9829. },
  9830. {
  9831. name: "Macro",
  9832. height: math.unit(2800, "feet")
  9833. },
  9834. {
  9835. name: "Megamacro",
  9836. height: math.unit(5200, "feet")
  9837. },
  9838. {
  9839. name: "Gigamacro",
  9840. height: math.unit(27000, "feet")
  9841. },
  9842. {
  9843. name: "Omega",
  9844. height: math.unit(45000, "feet")
  9845. },
  9846. ]
  9847. ))
  9848. characterMakers.push(() => makeCharacter(
  9849. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  9850. {
  9851. front: {
  9852. height: math.unit(18, "feet"),
  9853. weight: math.unit(5800, "lb"),
  9854. name: "Front",
  9855. image: {
  9856. source: "./media/characters/rhys/front.svg",
  9857. extra: 3386 / 3090,
  9858. bottom: 0.07
  9859. }
  9860. },
  9861. },
  9862. [
  9863. {
  9864. name: "Normal",
  9865. height: math.unit(18, "feet"),
  9866. default: true
  9867. },
  9868. {
  9869. name: "Working Size",
  9870. height: math.unit(200, "feet")
  9871. },
  9872. {
  9873. name: "Demolition Size",
  9874. height: math.unit(2000, "feet")
  9875. },
  9876. {
  9877. name: "Maximum Licensed Size",
  9878. height: math.unit(5, "miles")
  9879. },
  9880. {
  9881. name: "Maximum Observed Size",
  9882. height: math.unit(10, "yottameters")
  9883. },
  9884. ]
  9885. ))
  9886. characterMakers.push(() => makeCharacter(
  9887. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  9888. {
  9889. front: {
  9890. height: math.unit(6, "feet"),
  9891. weight: math.unit(250, "lb"),
  9892. name: "Front",
  9893. image: {
  9894. source: "./media/characters/toto/front.svg",
  9895. extra: 527 / 479,
  9896. bottom: 0.05
  9897. }
  9898. },
  9899. },
  9900. [
  9901. {
  9902. name: "Micro",
  9903. height: math.unit(3, "feet")
  9904. },
  9905. {
  9906. name: "Normal",
  9907. height: math.unit(10, "feet")
  9908. },
  9909. {
  9910. name: "Macro",
  9911. height: math.unit(150, "feet"),
  9912. default: true
  9913. },
  9914. {
  9915. name: "Megamacro",
  9916. height: math.unit(1200, "feet")
  9917. },
  9918. ]
  9919. ))
  9920. characterMakers.push(() => makeCharacter(
  9921. { name: "King", species: ["lion"], tags: ["anthro"] },
  9922. {
  9923. back: {
  9924. height: math.unit(6, "feet"),
  9925. weight: math.unit(150, "lb"),
  9926. name: "Back",
  9927. image: {
  9928. source: "./media/characters/king/back.svg"
  9929. }
  9930. },
  9931. },
  9932. [
  9933. {
  9934. name: "Micro",
  9935. height: math.unit(2, "inches")
  9936. },
  9937. {
  9938. name: "Normal",
  9939. height: math.unit(8, "feet")
  9940. },
  9941. {
  9942. name: "Macro",
  9943. height: math.unit(200, "feet"),
  9944. default: true
  9945. },
  9946. {
  9947. name: "Megamacro",
  9948. height: math.unit(50, "miles")
  9949. },
  9950. ]
  9951. ))
  9952. characterMakers.push(() => makeCharacter(
  9953. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  9954. {
  9955. anthro: {
  9956. height: math.unit(6 + 5 / 12, "feet"),
  9957. weight: math.unit(280, "lb"),
  9958. name: "Anthro",
  9959. image: {
  9960. source: "./media/characters/cordite/anthro.svg",
  9961. extra: 1986 / 1905,
  9962. bottom: 0.025
  9963. }
  9964. },
  9965. feral: {
  9966. height: math.unit(2, "feet"),
  9967. weight: math.unit(90, "lb"),
  9968. name: "Feral",
  9969. image: {
  9970. source: "./media/characters/cordite/feral.svg",
  9971. extra: 1260 / 755,
  9972. bottom: 0.05
  9973. }
  9974. },
  9975. },
  9976. [
  9977. {
  9978. name: "Normal",
  9979. height: math.unit(6 + 5 / 12, "feet"),
  9980. default: true
  9981. },
  9982. ]
  9983. ))
  9984. characterMakers.push(() => makeCharacter(
  9985. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  9986. {
  9987. front: {
  9988. height: math.unit(6, "feet"),
  9989. weight: math.unit(150, "lb"),
  9990. name: "Front",
  9991. image: {
  9992. source: "./media/characters/pianostrong/front.svg",
  9993. extra: 6577 / 6254,
  9994. bottom: 0.02
  9995. }
  9996. },
  9997. side: {
  9998. height: math.unit(6, "feet"),
  9999. weight: math.unit(150, "lb"),
  10000. name: "Side",
  10001. image: {
  10002. source: "./media/characters/pianostrong/side.svg",
  10003. extra: 6106 / 5730
  10004. }
  10005. },
  10006. back: {
  10007. height: math.unit(6, "feet"),
  10008. weight: math.unit(150, "lb"),
  10009. name: "Back",
  10010. image: {
  10011. source: "./media/characters/pianostrong/back.svg",
  10012. extra: 6085 / 5733,
  10013. bottom: 0.01
  10014. }
  10015. },
  10016. },
  10017. [
  10018. {
  10019. name: "Macro",
  10020. height: math.unit(100, "feet")
  10021. },
  10022. {
  10023. name: "Macro+",
  10024. height: math.unit(300, "feet"),
  10025. default: true
  10026. },
  10027. {
  10028. name: "Macro++",
  10029. height: math.unit(1000, "feet")
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10035. {
  10036. front: {
  10037. height: math.unit(6, "feet"),
  10038. weight: math.unit(150, "lb"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/kona/front.svg",
  10042. extra: 2960 / 2629,
  10043. bottom: 0.005
  10044. }
  10045. },
  10046. },
  10047. [
  10048. {
  10049. name: "Normal",
  10050. height: math.unit(11 + 8 / 12, "feet")
  10051. },
  10052. {
  10053. name: "Macro",
  10054. height: math.unit(850, "feet"),
  10055. default: true
  10056. },
  10057. {
  10058. name: "Macro+",
  10059. height: math.unit(1.5, "km"),
  10060. default: true
  10061. },
  10062. {
  10063. name: "Megamacro",
  10064. height: math.unit(80, "miles")
  10065. },
  10066. {
  10067. name: "Gigamacro",
  10068. height: math.unit(3500, "miles")
  10069. },
  10070. ]
  10071. ))
  10072. characterMakers.push(() => makeCharacter(
  10073. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10074. {
  10075. side: {
  10076. height: math.unit(1.9, "meters"),
  10077. weight: math.unit(326, "kg"),
  10078. name: "Side",
  10079. image: {
  10080. source: "./media/characters/levi/side.svg",
  10081. extra: 1704 / 1334,
  10082. bottom: 0.02
  10083. }
  10084. },
  10085. },
  10086. [
  10087. {
  10088. name: "Normal",
  10089. height: math.unit(1.9, "meters"),
  10090. default: true
  10091. },
  10092. {
  10093. name: "Macro",
  10094. height: math.unit(20, "meters")
  10095. },
  10096. {
  10097. name: "Macro+",
  10098. height: math.unit(200, "meters")
  10099. },
  10100. {
  10101. name: "Megamacro",
  10102. height: math.unit(2, "km")
  10103. },
  10104. {
  10105. name: "Megamacro+",
  10106. height: math.unit(20, "km")
  10107. },
  10108. {
  10109. name: "Gigamacro",
  10110. height: math.unit(2500, "km")
  10111. },
  10112. {
  10113. name: "Gigamacro+",
  10114. height: math.unit(120000, "km")
  10115. },
  10116. {
  10117. name: "Teramacro",
  10118. height: math.unit(7.77e6, "km")
  10119. },
  10120. ]
  10121. ))
  10122. characterMakers.push(() => makeCharacter(
  10123. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10124. {
  10125. front: {
  10126. height: math.unit(6 + 4 / 12, "feet"),
  10127. weight: math.unit(188, "lb"),
  10128. name: "Front",
  10129. image: {
  10130. source: "./media/characters/bmc/front.svg",
  10131. extra: 1067 / 1022,
  10132. bottom: 0.047
  10133. }
  10134. },
  10135. },
  10136. [
  10137. {
  10138. name: "Human-sized",
  10139. height: math.unit(6 + 4 / 12, "feet")
  10140. },
  10141. {
  10142. name: "Small",
  10143. height: math.unit(250, "feet")
  10144. },
  10145. {
  10146. name: "Normal",
  10147. height: math.unit(1250, "feet"),
  10148. default: true
  10149. },
  10150. {
  10151. name: "Good Day",
  10152. height: math.unit(88, "miles")
  10153. },
  10154. {
  10155. name: "Largest Measured Size",
  10156. height: math.unit(11.2e6, "lightyears")
  10157. },
  10158. ]
  10159. ))
  10160. characterMakers.push(() => makeCharacter(
  10161. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10162. {
  10163. front: {
  10164. height: math.unit(20, "feet"),
  10165. weight: math.unit(2016, "kg"),
  10166. name: "Front",
  10167. image: {
  10168. source: "./media/characters/sven-the-kaiju/front.svg",
  10169. extra: 1479 / 1449,
  10170. bottom: 0.05
  10171. }
  10172. },
  10173. },
  10174. [
  10175. {
  10176. name: "Fairy",
  10177. height: math.unit(6, "inches")
  10178. },
  10179. {
  10180. name: "Normal",
  10181. height: math.unit(20, "feet"),
  10182. default: true
  10183. },
  10184. {
  10185. name: "Rampage",
  10186. height: math.unit(200, "feet")
  10187. },
  10188. {
  10189. name: "Archfey Forest Guardian",
  10190. height: math.unit(1, "mile")
  10191. },
  10192. ]
  10193. ))
  10194. characterMakers.push(() => makeCharacter(
  10195. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10196. {
  10197. front: {
  10198. height: math.unit(4, "meters"),
  10199. weight: math.unit(2, "tons"),
  10200. name: "Front",
  10201. image: {
  10202. source: "./media/characters/marik/front.svg",
  10203. extra: 1057 / 1003,
  10204. bottom: 0.08
  10205. }
  10206. },
  10207. },
  10208. [
  10209. {
  10210. name: "Normal",
  10211. height: math.unit(4, "meters"),
  10212. default: true
  10213. },
  10214. {
  10215. name: "Macro",
  10216. height: math.unit(20, "meters")
  10217. },
  10218. {
  10219. name: "Megamacro",
  10220. height: math.unit(50, "km")
  10221. },
  10222. {
  10223. name: "Gigamacro",
  10224. height: math.unit(100, "km")
  10225. },
  10226. {
  10227. name: "Alpha Macro",
  10228. height: math.unit(7.88e7, "yottameters")
  10229. },
  10230. ]
  10231. ))
  10232. characterMakers.push(() => makeCharacter(
  10233. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10234. {
  10235. front: {
  10236. height: math.unit(6, "feet"),
  10237. weight: math.unit(110, "lb"),
  10238. name: "Front",
  10239. image: {
  10240. source: "./media/characters/mel/front.svg",
  10241. extra: 736 / 617,
  10242. bottom: 0.017
  10243. }
  10244. },
  10245. },
  10246. [
  10247. {
  10248. name: "Pico",
  10249. height: math.unit(3, "pm")
  10250. },
  10251. {
  10252. name: "Nano",
  10253. height: math.unit(3, "nm")
  10254. },
  10255. {
  10256. name: "Micro",
  10257. height: math.unit(0.3, "mm"),
  10258. default: true
  10259. },
  10260. {
  10261. name: "Micro+",
  10262. height: math.unit(3, "mm")
  10263. },
  10264. {
  10265. name: "Normal",
  10266. height: math.unit(5 + 10.5 / 12, "feet")
  10267. },
  10268. ]
  10269. ))
  10270. characterMakers.push(() => makeCharacter(
  10271. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10272. {
  10273. kaiju: {
  10274. height: math.unit(1.75, "meters"),
  10275. weight: math.unit(55, "kg"),
  10276. name: "Kaiju",
  10277. image: {
  10278. source: "./media/characters/lykonous/kaiju.svg",
  10279. extra: 1055 / 946,
  10280. bottom: 0.135
  10281. }
  10282. },
  10283. },
  10284. [
  10285. {
  10286. name: "Normal",
  10287. height: math.unit(2.5, "meters"),
  10288. default: true
  10289. },
  10290. {
  10291. name: "Kaiju Dragon",
  10292. height: math.unit(60, "meters")
  10293. },
  10294. {
  10295. name: "Mega Kaiju",
  10296. height: math.unit(120, "km")
  10297. },
  10298. {
  10299. name: "Giga Kaiju",
  10300. height: math.unit(200, "megameters")
  10301. },
  10302. {
  10303. name: "Terra Kaiju",
  10304. height: math.unit(400, "gigameters")
  10305. },
  10306. {
  10307. name: "Kaiju Dragon God",
  10308. height: math.unit(13000, "exaparsecs")
  10309. },
  10310. ]
  10311. ))
  10312. characterMakers.push(() => makeCharacter(
  10313. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10314. {
  10315. front: {
  10316. height: math.unit(6, "feet"),
  10317. weight: math.unit(150, "lb"),
  10318. name: "Front",
  10319. image: {
  10320. source: "./media/characters/blü/front.svg",
  10321. extra: 1883 / 1564,
  10322. bottom: 0.031
  10323. }
  10324. },
  10325. },
  10326. [
  10327. {
  10328. name: "Normal",
  10329. height: math.unit(13, "feet"),
  10330. default: true
  10331. },
  10332. {
  10333. name: "Big Boi",
  10334. height: math.unit(150, "meters")
  10335. },
  10336. {
  10337. name: "Mini Stomper",
  10338. height: math.unit(300, "meters")
  10339. },
  10340. {
  10341. name: "Macro",
  10342. height: math.unit(1000, "meters")
  10343. },
  10344. {
  10345. name: "Megamacro",
  10346. height: math.unit(11000, "meters")
  10347. },
  10348. {
  10349. name: "Gigamacro",
  10350. height: math.unit(11000, "km")
  10351. },
  10352. {
  10353. name: "Teramacro",
  10354. height: math.unit(420000, "km")
  10355. },
  10356. {
  10357. name: "Examacro",
  10358. height: math.unit(120, "parsecs")
  10359. },
  10360. {
  10361. name: "God Tho",
  10362. height: math.unit(98000000000, "parsecs")
  10363. },
  10364. ]
  10365. ))
  10366. characterMakers.push(() => makeCharacter(
  10367. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10368. {
  10369. taurFront: {
  10370. height: math.unit(6, "feet"),
  10371. weight: math.unit(200, "lb"),
  10372. name: "Taur (Front)",
  10373. image: {
  10374. source: "./media/characters/scales/taur-front.svg",
  10375. extra: 1,
  10376. bottom: 0.05
  10377. }
  10378. },
  10379. taurBack: {
  10380. height: math.unit(6, "feet"),
  10381. weight: math.unit(200, "lb"),
  10382. name: "Taur (Back)",
  10383. image: {
  10384. source: "./media/characters/scales/taur-back.svg",
  10385. extra: 1,
  10386. bottom: 0.08
  10387. }
  10388. },
  10389. anthro: {
  10390. height: math.unit(6 * 7 / 12, "feet"),
  10391. weight: math.unit(100, "lb"),
  10392. name: "Anthro",
  10393. image: {
  10394. source: "./media/characters/scales/anthro.svg",
  10395. extra: 1,
  10396. bottom: 0.06
  10397. }
  10398. },
  10399. },
  10400. [
  10401. {
  10402. name: "Normal",
  10403. height: math.unit(12, "feet"),
  10404. default: true
  10405. },
  10406. ]
  10407. ))
  10408. characterMakers.push(() => makeCharacter(
  10409. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10410. {
  10411. front: {
  10412. height: math.unit(6, "feet"),
  10413. weight: math.unit(150, "lb"),
  10414. name: "Front",
  10415. image: {
  10416. source: "./media/characters/koragos/front.svg",
  10417. extra: 841 / 794,
  10418. bottom: 0.035
  10419. }
  10420. },
  10421. back: {
  10422. height: math.unit(6, "feet"),
  10423. weight: math.unit(150, "lb"),
  10424. name: "Back",
  10425. image: {
  10426. source: "./media/characters/koragos/back.svg",
  10427. extra: 841 / 810,
  10428. bottom: 0.022
  10429. }
  10430. },
  10431. },
  10432. [
  10433. {
  10434. name: "Normal",
  10435. height: math.unit(6 + 11 / 12, "feet"),
  10436. default: true
  10437. },
  10438. {
  10439. name: "Macro",
  10440. height: math.unit(490, "feet")
  10441. },
  10442. {
  10443. name: "Megamacro",
  10444. height: math.unit(10, "miles")
  10445. },
  10446. {
  10447. name: "Gigamacro",
  10448. height: math.unit(50, "miles")
  10449. },
  10450. ]
  10451. ))
  10452. characterMakers.push(() => makeCharacter(
  10453. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10454. {
  10455. front: {
  10456. height: math.unit(6, "feet"),
  10457. weight: math.unit(250, "lb"),
  10458. name: "Front",
  10459. image: {
  10460. source: "./media/characters/xylrem/front.svg",
  10461. extra: 3323 / 3050,
  10462. bottom: 0.065
  10463. }
  10464. },
  10465. },
  10466. [
  10467. {
  10468. name: "Micro",
  10469. height: math.unit(4, "feet")
  10470. },
  10471. {
  10472. name: "Normal",
  10473. height: math.unit(16, "feet"),
  10474. default: true
  10475. },
  10476. {
  10477. name: "Macro",
  10478. height: math.unit(2720, "feet")
  10479. },
  10480. {
  10481. name: "Megamacro",
  10482. height: math.unit(25000, "miles")
  10483. },
  10484. ]
  10485. ))
  10486. characterMakers.push(() => makeCharacter(
  10487. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10488. {
  10489. front: {
  10490. height: math.unit(8, "feet"),
  10491. weight: math.unit(250, "kg"),
  10492. name: "Front",
  10493. image: {
  10494. source: "./media/characters/ikideru/front.svg",
  10495. extra: 930 / 870,
  10496. bottom: 0.087
  10497. }
  10498. },
  10499. back: {
  10500. height: math.unit(8, "feet"),
  10501. weight: math.unit(250, "kg"),
  10502. name: "Back",
  10503. image: {
  10504. source: "./media/characters/ikideru/back.svg",
  10505. extra: 919 / 852,
  10506. bottom: 0.055
  10507. }
  10508. },
  10509. },
  10510. [
  10511. {
  10512. name: "Rare",
  10513. height: math.unit(8, "feet"),
  10514. default: true
  10515. },
  10516. {
  10517. name: "Playful Loom",
  10518. height: math.unit(80, "feet")
  10519. },
  10520. {
  10521. name: "City Leaner",
  10522. height: math.unit(230, "feet")
  10523. },
  10524. {
  10525. name: "Megamacro",
  10526. height: math.unit(2500, "feet")
  10527. },
  10528. {
  10529. name: "Gigamacro",
  10530. height: math.unit(26400, "feet")
  10531. },
  10532. {
  10533. name: "Tectonic Shifter",
  10534. height: math.unit(1.7, "megameters")
  10535. },
  10536. {
  10537. name: "Planet Carer",
  10538. height: math.unit(21, "megameters")
  10539. },
  10540. {
  10541. name: "God",
  10542. height: math.unit(11157.22, "parsecs")
  10543. },
  10544. ]
  10545. ))
  10546. characterMakers.push(() => makeCharacter(
  10547. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10548. {
  10549. front: {
  10550. height: math.unit(6, "feet"),
  10551. weight: math.unit(120, "lb"),
  10552. name: "Front",
  10553. image: {
  10554. source: "./media/characters/neo/front.svg"
  10555. }
  10556. },
  10557. },
  10558. [
  10559. {
  10560. name: "Micro",
  10561. height: math.unit(2, "inches"),
  10562. default: true
  10563. },
  10564. {
  10565. name: "Human Size",
  10566. height: math.unit(5 + 8 / 12, "feet")
  10567. },
  10568. ]
  10569. ))
  10570. characterMakers.push(() => makeCharacter(
  10571. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10572. {
  10573. front: {
  10574. height: math.unit(13 + 10 / 12, "feet"),
  10575. weight: math.unit(5320, "lb"),
  10576. name: "Front",
  10577. image: {
  10578. source: "./media/characters/chauncey-chantz/front.svg",
  10579. extra: 1587 / 1435,
  10580. bottom: 0.02
  10581. }
  10582. },
  10583. },
  10584. [
  10585. {
  10586. name: "Normal",
  10587. height: math.unit(13 + 10 / 12, "feet"),
  10588. default: true
  10589. },
  10590. {
  10591. name: "Macro",
  10592. height: math.unit(45, "feet")
  10593. },
  10594. {
  10595. name: "Megamacro",
  10596. height: math.unit(250, "miles")
  10597. },
  10598. {
  10599. name: "Planetary",
  10600. height: math.unit(10000, "miles")
  10601. },
  10602. {
  10603. name: "Galactic",
  10604. height: math.unit(40000, "parsecs")
  10605. },
  10606. {
  10607. name: "Universal",
  10608. height: math.unit(1, "yottameter")
  10609. },
  10610. ]
  10611. ))
  10612. characterMakers.push(() => makeCharacter(
  10613. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10614. {
  10615. front: {
  10616. height: math.unit(6, "feet"),
  10617. weight: math.unit(150, "lb"),
  10618. name: "Front",
  10619. image: {
  10620. source: "./media/characters/epifox/front.svg",
  10621. extra: 1,
  10622. bottom: 0.075
  10623. }
  10624. },
  10625. },
  10626. [
  10627. {
  10628. name: "Micro",
  10629. height: math.unit(6, "inches")
  10630. },
  10631. {
  10632. name: "Normal",
  10633. height: math.unit(12, "feet"),
  10634. default: true
  10635. },
  10636. {
  10637. name: "Macro",
  10638. height: math.unit(3810, "feet")
  10639. },
  10640. {
  10641. name: "Megamacro",
  10642. height: math.unit(500, "miles")
  10643. },
  10644. ]
  10645. ))
  10646. characterMakers.push(() => makeCharacter(
  10647. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10648. {
  10649. front: {
  10650. height: math.unit(1.8796, "m"),
  10651. weight: math.unit(230, "lb"),
  10652. name: "Front",
  10653. image: {
  10654. source: "./media/characters/colin-t/front.svg",
  10655. extra: 1272 / 1193,
  10656. bottom: 0.07
  10657. }
  10658. },
  10659. },
  10660. [
  10661. {
  10662. name: "Micro",
  10663. height: math.unit(0.571, "meters")
  10664. },
  10665. {
  10666. name: "Normal",
  10667. height: math.unit(1.8796, "meters"),
  10668. default: true
  10669. },
  10670. {
  10671. name: "Tall",
  10672. height: math.unit(4, "meters")
  10673. },
  10674. {
  10675. name: "Macro",
  10676. height: math.unit(67.241, "meters")
  10677. },
  10678. {
  10679. name: "Megamacro",
  10680. height: math.unit(371.856, "meters")
  10681. },
  10682. {
  10683. name: "Planetary",
  10684. height: math.unit(12631.5689, "km")
  10685. },
  10686. ]
  10687. ))
  10688. characterMakers.push(() => makeCharacter(
  10689. { name: "Matvei", species: ["shark"], tags: ["anthro"]},
  10690. {
  10691. front: {
  10692. height: math.unit(1.85, "meters"),
  10693. weight: math.unit(80, "kg"),
  10694. name: "Front",
  10695. image: {
  10696. source: "./media/characters/matvei/front.svg",
  10697. extra: 614 / 594,
  10698. bottom: 0.01
  10699. }
  10700. },
  10701. },
  10702. [
  10703. {
  10704. name: "Normal",
  10705. height: math.unit(1.85, "meters"),
  10706. default: true
  10707. },
  10708. ]
  10709. ))
  10710. characterMakers.push(() => makeCharacter(
  10711. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10712. {
  10713. front: {
  10714. height: math.unit(5 + 9 / 12, "feet"),
  10715. weight: math.unit(70, "lb"),
  10716. name: "Front",
  10717. image: {
  10718. source: "./media/characters/quincy/front.svg",
  10719. extra: 3041 / 2751
  10720. }
  10721. },
  10722. back: {
  10723. height: math.unit(5 + 9 / 12, "feet"),
  10724. weight: math.unit(70, "lb"),
  10725. name: "Back",
  10726. image: {
  10727. source: "./media/characters/quincy/back.svg",
  10728. extra: 3041 / 2751
  10729. }
  10730. },
  10731. flying: {
  10732. height: math.unit(5 + 4 / 12, "feet"),
  10733. weight: math.unit(70, "lb"),
  10734. name: "Flying",
  10735. image: {
  10736. source: "./media/characters/quincy/flying.svg",
  10737. extra: 1044 / 930
  10738. }
  10739. },
  10740. },
  10741. [
  10742. {
  10743. name: "Micro",
  10744. height: math.unit(3, "cm")
  10745. },
  10746. {
  10747. name: "Normal",
  10748. height: math.unit(5 + 9 / 12, "feet")
  10749. },
  10750. {
  10751. name: "Macro",
  10752. height: math.unit(200, "meters"),
  10753. default: true
  10754. },
  10755. {
  10756. name: "Megamacro",
  10757. height: math.unit(1000, "meters")
  10758. },
  10759. ]
  10760. ))
  10761. characterMakers.push(() => makeCharacter(
  10762. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10763. {
  10764. front: {
  10765. height: math.unit(4 + 7 / 12, "feet"),
  10766. weight: math.unit(150, "lb"),
  10767. name: "Front",
  10768. image: {
  10769. source: "./media/characters/vanrel/front.svg",
  10770. extra: 1,
  10771. bottom: 0.02
  10772. }
  10773. },
  10774. elemental: {
  10775. height: math.unit(3, "feet"),
  10776. weight: math.unit(150, "lb"),
  10777. name: "Elemental",
  10778. image: {
  10779. source: "./media/characters/vanrel/elemental.svg",
  10780. extra: 192.3/162.8,
  10781. bottom: 1.79/194.17
  10782. }
  10783. },
  10784. side: {
  10785. height: math.unit(4 + 7 / 12, "feet"),
  10786. weight: math.unit(150, "lb"),
  10787. name: "Side",
  10788. image: {
  10789. source: "./media/characters/vanrel/side.svg",
  10790. extra: 1,
  10791. bottom: 0.025
  10792. }
  10793. },
  10794. tome: {
  10795. height: math.unit(1.35, "feet"),
  10796. weight: math.unit(10, "lb"),
  10797. name: "Vanrel's Tome",
  10798. rename: true,
  10799. image: {
  10800. source: "./media/characters/vanrel/tome.svg"
  10801. }
  10802. },
  10803. beans: {
  10804. height: math.unit(0.89, "feet"),
  10805. name: "Beans",
  10806. image: {
  10807. source: "./media/characters/vanrel/beans.svg"
  10808. }
  10809. },
  10810. },
  10811. [
  10812. {
  10813. name: "Normal",
  10814. height: math.unit(4 + 7 / 12, "feet"),
  10815. default: true
  10816. },
  10817. ]
  10818. ))
  10819. characterMakers.push(() => makeCharacter(
  10820. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  10821. {
  10822. front: {
  10823. height: math.unit(7 + 5 / 12, "feet"),
  10824. weight: math.unit(150, "lb"),
  10825. name: "Front",
  10826. image: {
  10827. source: "./media/characters/kuiper-vanrel/front.svg",
  10828. extra: 1118 / 1068,
  10829. bottom: 0.09
  10830. }
  10831. },
  10832. foot: {
  10833. height: math.unit(0.55, "meters"),
  10834. name: "Foot",
  10835. image: {
  10836. source: "./media/characters/kuiper-vanrel/foot.svg",
  10837. }
  10838. },
  10839. battle: {
  10840. height: math.unit(6.824, "feet"),
  10841. weight: math.unit(150, "lb"),
  10842. name: "Battle",
  10843. image: {
  10844. source: "./media/characters/kuiper-vanrel/battle.svg",
  10845. extra: 1466/1327,
  10846. bottom: 29/1492.5
  10847. }
  10848. },
  10849. },
  10850. [
  10851. {
  10852. name: "Normal",
  10853. height: math.unit(7 + 5 / 12, "feet"),
  10854. default: true
  10855. },
  10856. ]
  10857. ))
  10858. characterMakers.push(() => makeCharacter(
  10859. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  10860. {
  10861. front: {
  10862. height: math.unit(8 + 5 / 12, "feet"),
  10863. weight: math.unit(150, "lb"),
  10864. name: "Front",
  10865. image: {
  10866. source: "./media/characters/keset-vanrel/front.svg",
  10867. extra: 1150 / 1084,
  10868. bottom: 0.05
  10869. }
  10870. },
  10871. hand: {
  10872. height: math.unit(0.6, "meters"),
  10873. name: "Hand",
  10874. image: {
  10875. source: "./media/characters/keset-vanrel/hand.svg"
  10876. }
  10877. },
  10878. foot: {
  10879. height: math.unit(0.94978, "meters"),
  10880. name: "Foot",
  10881. image: {
  10882. source: "./media/characters/keset-vanrel/foot.svg"
  10883. }
  10884. },
  10885. battle: {
  10886. height: math.unit(7.408, "feet"),
  10887. weight: math.unit(150, "lb"),
  10888. name: "Battle",
  10889. image: {
  10890. source: "./media/characters/keset-vanrel/battle.svg",
  10891. extra: 1890/1386,
  10892. bottom: 73.28/1970
  10893. }
  10894. },
  10895. },
  10896. [
  10897. {
  10898. name: "Normal",
  10899. height: math.unit(8 + 5 / 12, "feet"),
  10900. default: true
  10901. },
  10902. ]
  10903. ))
  10904. characterMakers.push(() => makeCharacter(
  10905. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  10906. {
  10907. front: {
  10908. height: math.unit(6, "feet"),
  10909. weight: math.unit(150, "lb"),
  10910. name: "Front",
  10911. image: {
  10912. source: "./media/characters/neos/front.svg",
  10913. extra: 1696 / 992,
  10914. bottom: 0.14
  10915. }
  10916. },
  10917. },
  10918. [
  10919. {
  10920. name: "Normal",
  10921. height: math.unit(54, "cm"),
  10922. default: true
  10923. },
  10924. {
  10925. name: "Macro",
  10926. height: math.unit(100, "m")
  10927. },
  10928. {
  10929. name: "Megamacro",
  10930. height: math.unit(10, "km")
  10931. },
  10932. {
  10933. name: "Megamacro+",
  10934. height: math.unit(100, "km")
  10935. },
  10936. {
  10937. name: "Gigamacro",
  10938. height: math.unit(100, "Mm")
  10939. },
  10940. {
  10941. name: "Teramacro",
  10942. height: math.unit(100, "Gm")
  10943. },
  10944. {
  10945. name: "Examacro",
  10946. height: math.unit(100, "Em")
  10947. },
  10948. {
  10949. name: "Godly",
  10950. height: math.unit(10000, "Ym")
  10951. },
  10952. {
  10953. name: "Beyond Godly",
  10954. height: math.unit(10000000, "Ym")
  10955. },
  10956. ]
  10957. ))
  10958. characterMakers.push(() => makeCharacter(
  10959. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  10960. {
  10961. feminine: {
  10962. height: math.unit(5, "feet"),
  10963. weight: math.unit(100, "lb"),
  10964. name: "Feminine",
  10965. image: {
  10966. source: "./media/characters/sammy-mouse/feminine.svg",
  10967. extra: 2526 / 2425,
  10968. bottom: 0.123
  10969. }
  10970. },
  10971. masculine: {
  10972. height: math.unit(5, "feet"),
  10973. weight: math.unit(100, "lb"),
  10974. name: "Masculine",
  10975. image: {
  10976. source: "./media/characters/sammy-mouse/masculine.svg",
  10977. extra: 2526 / 2425,
  10978. bottom: 0.123
  10979. }
  10980. },
  10981. },
  10982. [
  10983. {
  10984. name: "Micro",
  10985. height: math.unit(5, "inches")
  10986. },
  10987. {
  10988. name: "Normal",
  10989. height: math.unit(5, "feet"),
  10990. default: true
  10991. },
  10992. {
  10993. name: "Macro",
  10994. height: math.unit(60, "feet")
  10995. },
  10996. ]
  10997. ))
  10998. characterMakers.push(() => makeCharacter(
  10999. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11000. {
  11001. front: {
  11002. height: math.unit(4, "feet"),
  11003. weight: math.unit(50, "lb"),
  11004. name: "Front",
  11005. image: {
  11006. source: "./media/characters/kole/front.svg",
  11007. extra: 1423 / 1303,
  11008. bottom: 0.025
  11009. }
  11010. },
  11011. back: {
  11012. height: math.unit(4, "feet"),
  11013. weight: math.unit(50, "lb"),
  11014. name: "Back",
  11015. image: {
  11016. source: "./media/characters/kole/back.svg",
  11017. extra: 1426 / 1280,
  11018. bottom: 0.02
  11019. }
  11020. },
  11021. },
  11022. [
  11023. {
  11024. name: "Normal",
  11025. height: math.unit(4, "feet"),
  11026. default: true
  11027. },
  11028. ]
  11029. ))
  11030. characterMakers.push(() => makeCharacter(
  11031. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11032. {
  11033. front: {
  11034. height: math.unit(2 + 6 / 12, "feet"),
  11035. weight: math.unit(20, "lb"),
  11036. name: "Front",
  11037. image: {
  11038. source: "./media/characters/rufran/front.svg",
  11039. extra: 2041 / 1839,
  11040. bottom: 0.055
  11041. }
  11042. },
  11043. back: {
  11044. height: math.unit(2 + 6 / 12, "feet"),
  11045. weight: math.unit(20, "lb"),
  11046. name: "Back",
  11047. image: {
  11048. source: "./media/characters/rufran/back.svg",
  11049. extra: 2054 / 1839,
  11050. bottom: 0.01
  11051. }
  11052. },
  11053. hand: {
  11054. height: math.unit(0.2166, "meters"),
  11055. name: "Hand",
  11056. image: {
  11057. source: "./media/characters/rufran/hand.svg"
  11058. }
  11059. },
  11060. foot: {
  11061. height: math.unit(0.185, "meters"),
  11062. name: "Foot",
  11063. image: {
  11064. source: "./media/characters/rufran/foot.svg"
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Micro",
  11071. height: math.unit(1, "inch")
  11072. },
  11073. {
  11074. name: "Normal",
  11075. height: math.unit(2 + 6 / 12, "feet"),
  11076. default: true
  11077. },
  11078. {
  11079. name: "Big",
  11080. height: math.unit(60, "feet")
  11081. },
  11082. {
  11083. name: "Macro",
  11084. height: math.unit(325, "feet")
  11085. },
  11086. ]
  11087. ))
  11088. characterMakers.push(() => makeCharacter(
  11089. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11090. {
  11091. front: {
  11092. height: math.unit(0.3, "meters"),
  11093. weight: math.unit(3.5, "kg"),
  11094. name: "Front",
  11095. image: {
  11096. source: "./media/characters/chip/front.svg",
  11097. extra: 748 / 674
  11098. }
  11099. },
  11100. },
  11101. [
  11102. {
  11103. name: "Micro",
  11104. height: math.unit(1, "inch"),
  11105. default: true
  11106. },
  11107. ]
  11108. ))
  11109. characterMakers.push(() => makeCharacter(
  11110. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11111. {
  11112. side: {
  11113. height: math.unit(2.3, "meters"),
  11114. weight: math.unit(3500, "lb"),
  11115. name: "Side",
  11116. image: {
  11117. source: "./media/characters/torvid/side.svg",
  11118. extra: 1972 / 722,
  11119. bottom: 0.035
  11120. }
  11121. },
  11122. },
  11123. [
  11124. {
  11125. name: "Normal",
  11126. height: math.unit(2.3, "meters"),
  11127. default: true
  11128. },
  11129. ]
  11130. ))
  11131. characterMakers.push(() => makeCharacter(
  11132. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11133. {
  11134. front: {
  11135. height: math.unit(2, "meters"),
  11136. weight: math.unit(150.5, "kg"),
  11137. name: "Front",
  11138. image: {
  11139. source: "./media/characters/susan/front.svg",
  11140. extra: 693 / 635,
  11141. bottom: 0.05
  11142. }
  11143. },
  11144. },
  11145. [
  11146. {
  11147. name: "Megamacro",
  11148. height: math.unit(505, "miles"),
  11149. default: true
  11150. },
  11151. ]
  11152. ))
  11153. characterMakers.push(() => makeCharacter(
  11154. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11155. {
  11156. front: {
  11157. height: math.unit(6, "feet"),
  11158. weight: math.unit(150, "lb"),
  11159. name: "Front",
  11160. image: {
  11161. source: "./media/characters/raindrops/front.svg",
  11162. extra: 2655 / 2461,
  11163. bottom: 0.02
  11164. }
  11165. },
  11166. back: {
  11167. height: math.unit(6, "feet"),
  11168. weight: math.unit(150, "lb"),
  11169. name: "Back",
  11170. image: {
  11171. source: "./media/characters/raindrops/back.svg",
  11172. extra: 2574 / 2400,
  11173. bottom: 0.03
  11174. }
  11175. },
  11176. },
  11177. [
  11178. {
  11179. name: "Micro",
  11180. height: math.unit(6, "inches")
  11181. },
  11182. {
  11183. name: "Normal",
  11184. height: math.unit(6 + 2 / 12, "feet")
  11185. },
  11186. {
  11187. name: "Macro",
  11188. height: math.unit(131, "feet"),
  11189. default: true
  11190. },
  11191. {
  11192. name: "Megamacro",
  11193. height: math.unit(15, "miles")
  11194. },
  11195. {
  11196. name: "Gigamacro",
  11197. height: math.unit(4000, "miles")
  11198. },
  11199. {
  11200. name: "Teramacro",
  11201. height: math.unit(315000, "miles")
  11202. },
  11203. ]
  11204. ))
  11205. characterMakers.push(() => makeCharacter(
  11206. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11207. {
  11208. front: {
  11209. height: math.unit(2.794, "meters"),
  11210. weight: math.unit(325, "kg"),
  11211. name: "Front",
  11212. image: {
  11213. source: "./media/characters/tezwa/front.svg",
  11214. extra: 2083 / 1906,
  11215. bottom: 0.031
  11216. }
  11217. },
  11218. foot: {
  11219. height: math.unit(0.687, "meters"),
  11220. name: "Foot",
  11221. image: {
  11222. source: "./media/characters/tezwa/foot.svg"
  11223. }
  11224. },
  11225. },
  11226. [
  11227. {
  11228. name: "Normal",
  11229. height: math.unit(9 + 2 / 12, "feet"),
  11230. default: true
  11231. },
  11232. ]
  11233. ))
  11234. characterMakers.push(() => makeCharacter(
  11235. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11236. {
  11237. front: {
  11238. height: math.unit(58, "feet"),
  11239. weight: math.unit(89000, "lb"),
  11240. name: "Front",
  11241. image: {
  11242. source: "./media/characters/typhus/front.svg",
  11243. extra: 816 / 800,
  11244. bottom: 0.065
  11245. }
  11246. },
  11247. },
  11248. [
  11249. {
  11250. name: "Macro",
  11251. height: math.unit(58, "feet"),
  11252. default: true
  11253. },
  11254. ]
  11255. ))
  11256. characterMakers.push(() => makeCharacter(
  11257. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11258. {
  11259. front: {
  11260. height: math.unit(12, "feet"),
  11261. weight: math.unit(6, "tonnes"),
  11262. name: "Front",
  11263. image: {
  11264. source: "./media/characters/lyra-von-wulf/front.svg",
  11265. extra: 1,
  11266. bottom: 0.10
  11267. }
  11268. },
  11269. frontMecha: {
  11270. height: math.unit(12, "feet"),
  11271. weight: math.unit(12, "tonnes"),
  11272. name: "Front (Mecha)",
  11273. image: {
  11274. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11275. extra: 1,
  11276. bottom: 0.042
  11277. }
  11278. },
  11279. maw: {
  11280. height: math.unit(2.2, "feet"),
  11281. name: "Maw",
  11282. image: {
  11283. source: "./media/characters/lyra-von-wulf/maw.svg"
  11284. }
  11285. },
  11286. },
  11287. [
  11288. {
  11289. name: "Normal",
  11290. height: math.unit(12, "feet"),
  11291. default: true
  11292. },
  11293. {
  11294. name: "Classic",
  11295. height: math.unit(50, "feet")
  11296. },
  11297. {
  11298. name: "Macro",
  11299. height: math.unit(500, "feet")
  11300. },
  11301. {
  11302. name: "Megamacro",
  11303. height: math.unit(1, "mile")
  11304. },
  11305. {
  11306. name: "Gigamacro",
  11307. height: math.unit(400, "miles")
  11308. },
  11309. {
  11310. name: "Teramacro",
  11311. height: math.unit(22000, "miles")
  11312. },
  11313. {
  11314. name: "Solarmacro",
  11315. height: math.unit(8600000, "miles")
  11316. },
  11317. {
  11318. name: "Galactic",
  11319. height: math.unit(1057000, "lightyears")
  11320. },
  11321. ]
  11322. ))
  11323. characterMakers.push(() => makeCharacter(
  11324. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11325. {
  11326. front: {
  11327. height: math.unit(6 + 10 / 12, "feet"),
  11328. weight: math.unit(150, "lb"),
  11329. name: "Front",
  11330. image: {
  11331. source: "./media/characters/dixon/front.svg",
  11332. extra: 3361 / 3209,
  11333. bottom: 0.01
  11334. }
  11335. },
  11336. },
  11337. [
  11338. {
  11339. name: "Normal",
  11340. height: math.unit(6 + 10 / 12, "feet"),
  11341. default: true
  11342. },
  11343. {
  11344. name: "Big",
  11345. height: math.unit(12, "meters")
  11346. },
  11347. {
  11348. name: "Macro",
  11349. height: math.unit(500, "meters")
  11350. },
  11351. {
  11352. name: "Megamacro",
  11353. height: math.unit(2, "km")
  11354. },
  11355. ]
  11356. ))
  11357. characterMakers.push(() => makeCharacter(
  11358. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11359. {
  11360. front: {
  11361. height: math.unit(185, "cm"),
  11362. weight: math.unit(68, "kg"),
  11363. name: "Front",
  11364. image: {
  11365. source: "./media/characters/kauko/front.svg",
  11366. extra: 1455 / 1421,
  11367. bottom: 0.03
  11368. }
  11369. },
  11370. back: {
  11371. height: math.unit(185, "cm"),
  11372. weight: math.unit(68, "kg"),
  11373. name: "Back",
  11374. image: {
  11375. source: "./media/characters/kauko/back.svg",
  11376. extra: 1455 / 1421,
  11377. bottom: 0.004
  11378. }
  11379. },
  11380. },
  11381. [
  11382. {
  11383. name: "Normal",
  11384. height: math.unit(185, "cm"),
  11385. default: true
  11386. },
  11387. ]
  11388. ))
  11389. characterMakers.push(() => makeCharacter(
  11390. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11391. {
  11392. front: {
  11393. height: math.unit(6, "feet"),
  11394. weight: math.unit(150, "kg"),
  11395. name: "Front",
  11396. image: {
  11397. source: "./media/characters/varg/front.svg",
  11398. extra: 1108 / 1018,
  11399. bottom: 0.0375
  11400. }
  11401. },
  11402. },
  11403. [
  11404. {
  11405. name: "Normal",
  11406. height: math.unit(5, "meters")
  11407. },
  11408. {
  11409. name: "Macro",
  11410. height: math.unit(200, "meters")
  11411. },
  11412. {
  11413. name: "Megamacro",
  11414. height: math.unit(20, "kilometers")
  11415. },
  11416. {
  11417. name: "True Size",
  11418. height: math.unit(211, "km"),
  11419. default: true
  11420. },
  11421. {
  11422. name: "Gigamacro",
  11423. height: math.unit(1000, "km")
  11424. },
  11425. {
  11426. name: "Gigamacro+",
  11427. height: math.unit(8000, "km")
  11428. },
  11429. {
  11430. name: "Teramacro",
  11431. height: math.unit(1000000, "km")
  11432. },
  11433. ]
  11434. ))
  11435. characterMakers.push(() => makeCharacter(
  11436. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11437. {
  11438. front: {
  11439. height: math.unit(7 + 7 / 12, "feet"),
  11440. weight: math.unit(267, "lb"),
  11441. name: "Front",
  11442. image: {
  11443. source: "./media/characters/dayza/front.svg",
  11444. extra: 1262 / 1200,
  11445. bottom: 0.035
  11446. }
  11447. },
  11448. side: {
  11449. height: math.unit(7 + 7 / 12, "feet"),
  11450. weight: math.unit(267, "lb"),
  11451. name: "Side",
  11452. image: {
  11453. source: "./media/characters/dayza/side.svg",
  11454. extra: 1295 / 1245,
  11455. bottom: 0.05
  11456. }
  11457. },
  11458. back: {
  11459. height: math.unit(7 + 7 / 12, "feet"),
  11460. weight: math.unit(267, "lb"),
  11461. name: "Back",
  11462. image: {
  11463. source: "./media/characters/dayza/back.svg",
  11464. extra: 1241 / 1170
  11465. }
  11466. },
  11467. },
  11468. [
  11469. {
  11470. name: "Normal",
  11471. height: math.unit(7 + 7 / 12, "feet"),
  11472. default: true
  11473. },
  11474. {
  11475. name: "Macro",
  11476. height: math.unit(155, "feet")
  11477. },
  11478. ]
  11479. ))
  11480. characterMakers.push(() => makeCharacter(
  11481. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11482. {
  11483. front: {
  11484. height: math.unit(6 + 5 / 12, "feet"),
  11485. weight: math.unit(160, "lb"),
  11486. name: "Front",
  11487. image: {
  11488. source: "./media/characters/xanthos/front.svg",
  11489. extra: 1,
  11490. bottom: 0.04
  11491. }
  11492. },
  11493. back: {
  11494. height: math.unit(6 + 5 / 12, "feet"),
  11495. weight: math.unit(160, "lb"),
  11496. name: "Back",
  11497. image: {
  11498. source: "./media/characters/xanthos/back.svg",
  11499. extra: 1,
  11500. bottom: 0.03
  11501. }
  11502. },
  11503. hand: {
  11504. height: math.unit(0.928, "feet"),
  11505. name: "Hand",
  11506. image: {
  11507. source: "./media/characters/xanthos/hand.svg"
  11508. }
  11509. },
  11510. foot: {
  11511. height: math.unit(1.286, "feet"),
  11512. name: "Foot",
  11513. image: {
  11514. source: "./media/characters/xanthos/foot.svg"
  11515. }
  11516. },
  11517. },
  11518. [
  11519. {
  11520. name: "Normal",
  11521. height: math.unit(6 + 5 / 12, "feet"),
  11522. default: true
  11523. },
  11524. {
  11525. name: "Normal+",
  11526. height: math.unit(6, "meters")
  11527. },
  11528. {
  11529. name: "Macro",
  11530. height: math.unit(40, "feet")
  11531. },
  11532. {
  11533. name: "Macro+",
  11534. height: math.unit(200, "meters")
  11535. },
  11536. {
  11537. name: "Megamacro",
  11538. height: math.unit(20, "km")
  11539. },
  11540. {
  11541. name: "Megamacro+",
  11542. height: math.unit(100, "km")
  11543. },
  11544. ]
  11545. ))
  11546. characterMakers.push(() => makeCharacter(
  11547. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11548. {
  11549. front: {
  11550. height: math.unit(6 + 3 / 12, "feet"),
  11551. weight: math.unit(215, "lb"),
  11552. name: "Front",
  11553. image: {
  11554. source: "./media/characters/grynn/front.svg",
  11555. extra: 4627 / 4209,
  11556. bottom: 0.047
  11557. }
  11558. },
  11559. },
  11560. [
  11561. {
  11562. name: "Micro",
  11563. height: math.unit(6, "inches")
  11564. },
  11565. {
  11566. name: "Normal",
  11567. height: math.unit(6 + 3 / 12, "feet"),
  11568. default: true
  11569. },
  11570. {
  11571. name: "Big",
  11572. height: math.unit(104, "feet")
  11573. },
  11574. {
  11575. name: "Macro",
  11576. height: math.unit(944, "feet")
  11577. },
  11578. {
  11579. name: "Macro+",
  11580. height: math.unit(9480, "feet")
  11581. },
  11582. {
  11583. name: "Megamacro",
  11584. height: math.unit(78752, "feet")
  11585. },
  11586. {
  11587. name: "Megamacro+",
  11588. height: math.unit(630128, "feet")
  11589. },
  11590. {
  11591. name: "Megamacro++",
  11592. height: math.unit(3150695, "feet")
  11593. },
  11594. ]
  11595. ))
  11596. characterMakers.push(() => makeCharacter(
  11597. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11598. {
  11599. front: {
  11600. height: math.unit(7 + 5 / 12, "feet"),
  11601. weight: math.unit(450, "lb"),
  11602. name: "Front",
  11603. image: {
  11604. source: "./media/characters/mocha-aura/front.svg",
  11605. extra: 1907 / 1817,
  11606. bottom: 0.04
  11607. }
  11608. },
  11609. back: {
  11610. height: math.unit(7 + 5 / 12, "feet"),
  11611. weight: math.unit(450, "lb"),
  11612. name: "Back",
  11613. image: {
  11614. source: "./media/characters/mocha-aura/back.svg",
  11615. extra: 1900 / 1825,
  11616. bottom: 0.045
  11617. }
  11618. },
  11619. },
  11620. [
  11621. {
  11622. name: "Nano",
  11623. height: math.unit(1, "nm")
  11624. },
  11625. {
  11626. name: "Megamicro",
  11627. height: math.unit(1, "mm")
  11628. },
  11629. {
  11630. name: "Micro",
  11631. height: math.unit(3, "inches")
  11632. },
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(7 + 5 / 12, "feet"),
  11636. default: true
  11637. },
  11638. {
  11639. name: "Macro",
  11640. height: math.unit(30, "feet")
  11641. },
  11642. {
  11643. name: "Megamacro",
  11644. height: math.unit(3500, "feet")
  11645. },
  11646. {
  11647. name: "Teramacro",
  11648. height: math.unit(500000, "miles")
  11649. },
  11650. {
  11651. name: "Petamacro",
  11652. height: math.unit(50000000000000000, "parsecs")
  11653. },
  11654. ]
  11655. ))
  11656. characterMakers.push(() => makeCharacter(
  11657. { name: "Ilisha Devya", species: ["alligator", "cobra"], tags: ["anthro"] },
  11658. {
  11659. front: {
  11660. height: math.unit(6, "feet"),
  11661. weight: math.unit(150, "lb"),
  11662. name: "Front",
  11663. image: {
  11664. source: "./media/characters/ilisha-devya/front.svg",
  11665. extra: 1,
  11666. bottom: 0.175
  11667. }
  11668. },
  11669. back: {
  11670. height: math.unit(6, "feet"),
  11671. weight: math.unit(150, "lb"),
  11672. name: "Back",
  11673. image: {
  11674. source: "./media/characters/ilisha-devya/back.svg",
  11675. extra: 1,
  11676. bottom: 0.015
  11677. }
  11678. },
  11679. },
  11680. [
  11681. {
  11682. name: "Macro",
  11683. height: math.unit(500, "feet"),
  11684. default: true
  11685. },
  11686. {
  11687. name: "Megamacro",
  11688. height: math.unit(10, "miles")
  11689. },
  11690. {
  11691. name: "Gigamacro",
  11692. height: math.unit(100000, "miles")
  11693. },
  11694. {
  11695. name: "Examacro",
  11696. height: math.unit(1e9, "lightyears")
  11697. },
  11698. {
  11699. name: "Omniversal",
  11700. height: math.unit(1e33, "lightyears")
  11701. },
  11702. {
  11703. name: "Beyond Infinite",
  11704. height: math.unit(1e100, "lightyears")
  11705. },
  11706. ]
  11707. ))
  11708. characterMakers.push(() => makeCharacter(
  11709. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11710. {
  11711. Side: {
  11712. height: math.unit(6, "feet"),
  11713. weight: math.unit(150, "lb"),
  11714. name: "Side",
  11715. image: {
  11716. source: "./media/characters/mira/side.svg",
  11717. extra: 900 / 799,
  11718. bottom: 0.02
  11719. }
  11720. },
  11721. },
  11722. [
  11723. {
  11724. name: "Human Size",
  11725. height: math.unit(6, "feet")
  11726. },
  11727. {
  11728. name: "Macro",
  11729. height: math.unit(100, "feet"),
  11730. default: true
  11731. },
  11732. {
  11733. name: "Megamacro",
  11734. height: math.unit(10, "miles")
  11735. },
  11736. {
  11737. name: "Gigamacro",
  11738. height: math.unit(25000, "miles")
  11739. },
  11740. {
  11741. name: "Teramacro",
  11742. height: math.unit(300, "AU")
  11743. },
  11744. {
  11745. name: "Full Size",
  11746. height: math.unit(4.5e10, "lightyears")
  11747. },
  11748. ]
  11749. ))
  11750. characterMakers.push(() => makeCharacter(
  11751. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11752. {
  11753. front: {
  11754. height: math.unit(6, "feet"),
  11755. weight: math.unit(150, "lb"),
  11756. name: "Front",
  11757. image: {
  11758. source: "./media/characters/holly/front.svg",
  11759. extra: 639 / 606
  11760. }
  11761. },
  11762. back: {
  11763. height: math.unit(6, "feet"),
  11764. weight: math.unit(150, "lb"),
  11765. name: "Back",
  11766. image: {
  11767. source: "./media/characters/holly/back.svg",
  11768. extra: 623 / 598
  11769. }
  11770. },
  11771. frontWorking: {
  11772. height: math.unit(6, "feet"),
  11773. weight: math.unit(150, "lb"),
  11774. name: "Front (Working)",
  11775. image: {
  11776. source: "./media/characters/holly/front-working.svg",
  11777. extra: 607 / 577,
  11778. bottom: 0.048
  11779. }
  11780. },
  11781. },
  11782. [
  11783. {
  11784. name: "Normal",
  11785. height: math.unit(12 + 3 / 12, "feet"),
  11786. default: true
  11787. },
  11788. ]
  11789. ))
  11790. characterMakers.push(() => makeCharacter(
  11791. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11792. {
  11793. front: {
  11794. height: math.unit(6, "feet"),
  11795. weight: math.unit(150, "lb"),
  11796. name: "Front",
  11797. image: {
  11798. source: "./media/characters/porter/front.svg",
  11799. extra: 1,
  11800. bottom: 0.01
  11801. }
  11802. },
  11803. frontRobes: {
  11804. height: math.unit(6, "feet"),
  11805. weight: math.unit(150, "lb"),
  11806. name: "Front (Robes)",
  11807. image: {
  11808. source: "./media/characters/porter/front-robes.svg",
  11809. extra: 1.01,
  11810. bottom: 0.01
  11811. }
  11812. },
  11813. },
  11814. [
  11815. {
  11816. name: "Normal",
  11817. height: math.unit(11 + 9 / 12, "feet"),
  11818. default: true
  11819. },
  11820. ]
  11821. ))
  11822. characterMakers.push(() => makeCharacter(
  11823. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  11824. {
  11825. legendary: {
  11826. height: math.unit(6, "feet"),
  11827. weight: math.unit(150, "lb"),
  11828. name: "Legendary",
  11829. image: {
  11830. source: "./media/characters/lucy/legendary.svg",
  11831. extra: 1355 / 1100,
  11832. bottom: 0.045
  11833. }
  11834. },
  11835. },
  11836. [
  11837. {
  11838. name: "Legendary",
  11839. height: math.unit(86882 * 2, "miles"),
  11840. default: true
  11841. },
  11842. ]
  11843. ))
  11844. characterMakers.push(() => makeCharacter(
  11845. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  11846. {
  11847. front: {
  11848. height: math.unit(6, "feet"),
  11849. weight: math.unit(150, "lb"),
  11850. name: "Front",
  11851. image: {
  11852. source: "./media/characters/drusilla/front.svg",
  11853. extra: 678 / 635,
  11854. bottom: 0.03
  11855. }
  11856. },
  11857. back: {
  11858. height: math.unit(6, "feet"),
  11859. weight: math.unit(150, "lb"),
  11860. name: "Back",
  11861. image: {
  11862. source: "./media/characters/drusilla/back.svg",
  11863. extra: 678 / 635,
  11864. bottom: 0.005
  11865. }
  11866. },
  11867. },
  11868. [
  11869. {
  11870. name: "Macro",
  11871. height: math.unit(100, "feet")
  11872. },
  11873. {
  11874. name: "Canon Height",
  11875. height: math.unit(2000, "feet"),
  11876. default: true
  11877. },
  11878. ]
  11879. ))
  11880. characterMakers.push(() => makeCharacter(
  11881. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  11882. {
  11883. front: {
  11884. height: math.unit(6, "feet"),
  11885. weight: math.unit(180, "lb"),
  11886. name: "Front",
  11887. image: {
  11888. source: "./media/characters/renard-thatch/front.svg",
  11889. extra: 2411 / 2275,
  11890. bottom: 0.01
  11891. }
  11892. },
  11893. frontPosing: {
  11894. height: math.unit(6, "feet"),
  11895. weight: math.unit(180, "lb"),
  11896. name: "Front (Posing)",
  11897. image: {
  11898. source: "./media/characters/renard-thatch/front-posing.svg",
  11899. extra: 2381 / 2261,
  11900. bottom: 0.01
  11901. }
  11902. },
  11903. back: {
  11904. height: math.unit(6, "feet"),
  11905. weight: math.unit(180, "lb"),
  11906. name: "Back",
  11907. image: {
  11908. source: "./media/characters/renard-thatch/back.svg",
  11909. extra: 2428 / 2288
  11910. }
  11911. },
  11912. },
  11913. [
  11914. {
  11915. name: "Micro",
  11916. height: math.unit(3, "inches")
  11917. },
  11918. {
  11919. name: "Default",
  11920. height: math.unit(6, "feet"),
  11921. default: true
  11922. },
  11923. {
  11924. name: "Macro",
  11925. height: math.unit(75, "feet")
  11926. },
  11927. ]
  11928. ))
  11929. characterMakers.push(() => makeCharacter(
  11930. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  11931. {
  11932. front: {
  11933. height: math.unit(1450, "feet"),
  11934. weight: math.unit(1.21e6, "tons"),
  11935. name: "Front",
  11936. image: {
  11937. source: "./media/characters/sekvra/front.svg",
  11938. extra: 1,
  11939. bottom: 0.03
  11940. }
  11941. },
  11942. frontClothed: {
  11943. height: math.unit(1450, "feet"),
  11944. weight: math.unit(1.21e6, "tons"),
  11945. name: "Front (Clothed)",
  11946. image: {
  11947. source: "./media/characters/sekvra/front-clothed.svg",
  11948. extra: 1,
  11949. bottom: 0.03
  11950. }
  11951. },
  11952. side: {
  11953. height: math.unit(1450, "feet"),
  11954. weight: math.unit(1.21e6, "tons"),
  11955. name: "Side",
  11956. image: {
  11957. source: "./media/characters/sekvra/side.svg",
  11958. extra: 1,
  11959. bottom: 0.025
  11960. }
  11961. },
  11962. back: {
  11963. height: math.unit(1450, "feet"),
  11964. weight: math.unit(1.21e6, "tons"),
  11965. name: "Back",
  11966. image: {
  11967. source: "./media/characters/sekvra/back.svg",
  11968. extra: 1,
  11969. bottom: 0.005
  11970. }
  11971. },
  11972. },
  11973. [
  11974. {
  11975. name: "Macro",
  11976. height: math.unit(1450, "feet"),
  11977. default: true
  11978. },
  11979. {
  11980. name: "Megamacro",
  11981. height: math.unit(15000, "feet")
  11982. },
  11983. ]
  11984. ))
  11985. characterMakers.push(() => makeCharacter(
  11986. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  11987. {
  11988. front: {
  11989. height: math.unit(6, "feet"),
  11990. weight: math.unit(150, "lb"),
  11991. name: "Front",
  11992. image: {
  11993. source: "./media/characters/carmine/front.svg",
  11994. extra: 1,
  11995. bottom: 0.035
  11996. }
  11997. },
  11998. frontArmor: {
  11999. height: math.unit(6, "feet"),
  12000. weight: math.unit(150, "lb"),
  12001. name: "Front (Armor)",
  12002. image: {
  12003. source: "./media/characters/carmine/front-armor.svg",
  12004. extra: 1,
  12005. bottom: 0.035
  12006. }
  12007. },
  12008. },
  12009. [
  12010. {
  12011. name: "Large",
  12012. height: math.unit(1, "mile")
  12013. },
  12014. {
  12015. name: "Huge",
  12016. height: math.unit(40, "miles"),
  12017. default: true
  12018. },
  12019. {
  12020. name: "Colossal",
  12021. height: math.unit(2500, "miles")
  12022. },
  12023. ]
  12024. ))
  12025. characterMakers.push(() => makeCharacter(
  12026. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12027. {
  12028. front: {
  12029. height: math.unit(6, "feet"),
  12030. weight: math.unit(150, "lb"),
  12031. name: "Front",
  12032. image: {
  12033. source: "./media/characters/elyssia/front.svg",
  12034. extra: 2201 / 2035,
  12035. bottom: 0.05
  12036. }
  12037. },
  12038. frontClothed: {
  12039. height: math.unit(6, "feet"),
  12040. weight: math.unit(150, "lb"),
  12041. name: "Front (Clothed)",
  12042. image: {
  12043. source: "./media/characters/elyssia/front-clothed.svg",
  12044. extra: 2201 / 2035,
  12045. bottom: 0.05
  12046. }
  12047. },
  12048. back: {
  12049. height: math.unit(6, "feet"),
  12050. weight: math.unit(150, "lb"),
  12051. name: "Back",
  12052. image: {
  12053. source: "./media/characters/elyssia/back.svg",
  12054. extra: 2201 / 2035,
  12055. bottom: 0.013
  12056. }
  12057. },
  12058. },
  12059. [
  12060. {
  12061. name: "Smaller",
  12062. height: math.unit(150, "feet")
  12063. },
  12064. {
  12065. name: "Standard",
  12066. height: math.unit(1400, "feet"),
  12067. default: true
  12068. },
  12069. {
  12070. name: "Distracted",
  12071. height: math.unit(15000, "feet")
  12072. },
  12073. ]
  12074. ))
  12075. characterMakers.push(() => makeCharacter(
  12076. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12077. {
  12078. front: {
  12079. height: math.unit(7 + 4 / 12, "feet"),
  12080. weight: math.unit(500, "lb"),
  12081. name: "Front",
  12082. image: {
  12083. source: "./media/characters/geno-maxwell/front.svg",
  12084. extra: 2207 / 2040,
  12085. bottom: 0.015
  12086. }
  12087. },
  12088. },
  12089. [
  12090. {
  12091. name: "Micro",
  12092. height: math.unit(3, "inches")
  12093. },
  12094. {
  12095. name: "Normal",
  12096. height: math.unit(7 + 4 / 12, "feet"),
  12097. default: true
  12098. },
  12099. {
  12100. name: "Macro",
  12101. height: math.unit(220, "feet")
  12102. },
  12103. {
  12104. name: "Megamacro",
  12105. height: math.unit(11, "miles")
  12106. },
  12107. ]
  12108. ))
  12109. characterMakers.push(() => makeCharacter(
  12110. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12111. {
  12112. front: {
  12113. height: math.unit(7 + 4 / 12, "feet"),
  12114. weight: math.unit(500, "lb"),
  12115. name: "Front",
  12116. image: {
  12117. source: "./media/characters/regena-maxwell/front.svg",
  12118. extra: 3115 / 2770,
  12119. bottom: 0.02
  12120. }
  12121. },
  12122. },
  12123. [
  12124. {
  12125. name: "Normal",
  12126. height: math.unit(7 + 4 / 12, "feet"),
  12127. default: true
  12128. },
  12129. {
  12130. name: "Macro",
  12131. height: math.unit(220, "feet")
  12132. },
  12133. {
  12134. name: "Megamacro",
  12135. height: math.unit(11, "miles")
  12136. },
  12137. ]
  12138. ))
  12139. characterMakers.push(() => makeCharacter(
  12140. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12141. {
  12142. front: {
  12143. height: math.unit(6, "feet"),
  12144. weight: math.unit(150, "lb"),
  12145. name: "Front",
  12146. image: {
  12147. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12148. extra: 860 / 690,
  12149. bottom: 0.03
  12150. }
  12151. },
  12152. },
  12153. [
  12154. {
  12155. name: "Normal",
  12156. height: math.unit(1.7, "meters"),
  12157. default: true
  12158. },
  12159. ]
  12160. ))
  12161. characterMakers.push(() => makeCharacter(
  12162. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12163. {
  12164. front: {
  12165. height: math.unit(6, "feet"),
  12166. weight: math.unit(150, "lb"),
  12167. name: "Front",
  12168. image: {
  12169. source: "./media/characters/quilly/front.svg",
  12170. extra: 890 / 776
  12171. }
  12172. },
  12173. },
  12174. [
  12175. {
  12176. name: "Gigamacro",
  12177. height: math.unit(404090, "miles"),
  12178. default: true
  12179. },
  12180. ]
  12181. ))
  12182. characterMakers.push(() => makeCharacter(
  12183. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12184. {
  12185. front: {
  12186. height: math.unit(7 + 8 / 12, "feet"),
  12187. weight: math.unit(350, "lb"),
  12188. name: "Front",
  12189. image: {
  12190. source: "./media/characters/tempest/front.svg",
  12191. extra: 1175 / 1086,
  12192. bottom: 0.02
  12193. }
  12194. },
  12195. },
  12196. [
  12197. {
  12198. name: "Normal",
  12199. height: math.unit(7 + 8 / 12, "feet"),
  12200. default: true
  12201. },
  12202. ]
  12203. ))
  12204. characterMakers.push(() => makeCharacter(
  12205. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12206. {
  12207. side: {
  12208. height: math.unit(4 + 5 / 12, "feet"),
  12209. weight: math.unit(80, "lb"),
  12210. name: "Side",
  12211. image: {
  12212. source: "./media/characters/rodger/side.svg",
  12213. extra: 1235 / 1118
  12214. }
  12215. },
  12216. },
  12217. [
  12218. {
  12219. name: "Micro",
  12220. height: math.unit(1, "inch")
  12221. },
  12222. {
  12223. name: "Normal",
  12224. height: math.unit(4 + 5 / 12, "feet"),
  12225. default: true
  12226. },
  12227. {
  12228. name: "Macro",
  12229. height: math.unit(120, "feet")
  12230. },
  12231. ]
  12232. ))
  12233. characterMakers.push(() => makeCharacter(
  12234. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12235. {
  12236. front: {
  12237. height: math.unit(6, "feet"),
  12238. weight: math.unit(150, "lb"),
  12239. name: "Front",
  12240. image: {
  12241. source: "./media/characters/danyel/front.svg",
  12242. extra: 1185 / 1123,
  12243. bottom: 0.05
  12244. }
  12245. },
  12246. },
  12247. [
  12248. {
  12249. name: "Shrunken",
  12250. height: math.unit(0.5, "mm")
  12251. },
  12252. {
  12253. name: "Micro",
  12254. height: math.unit(1, "mm"),
  12255. default: true
  12256. },
  12257. {
  12258. name: "Upsized",
  12259. height: math.unit(5 + 5 / 12, "feet")
  12260. },
  12261. ]
  12262. ))
  12263. characterMakers.push(() => makeCharacter(
  12264. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12265. {
  12266. front: {
  12267. height: math.unit(5 + 6 / 12, "feet"),
  12268. weight: math.unit(200, "lb"),
  12269. name: "Front",
  12270. image: {
  12271. source: "./media/characters/vivian-bijoux/front.svg",
  12272. extra: 1,
  12273. bottom: 0.072
  12274. }
  12275. },
  12276. },
  12277. [
  12278. {
  12279. name: "Normal",
  12280. height: math.unit(5 + 6 / 12, "feet"),
  12281. default: true
  12282. },
  12283. {
  12284. name: "Bad Dream",
  12285. height: math.unit(500, "feet")
  12286. },
  12287. {
  12288. name: "Nightmare",
  12289. height: math.unit(500, "miles")
  12290. },
  12291. ]
  12292. ))
  12293. characterMakers.push(() => makeCharacter(
  12294. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12295. {
  12296. front: {
  12297. height: math.unit(6 + 1 / 12, "feet"),
  12298. weight: math.unit(260, "lb"),
  12299. name: "Front",
  12300. image: {
  12301. source: "./media/characters/zeta/front.svg",
  12302. extra: 1968 / 1889,
  12303. bottom: 0.06
  12304. }
  12305. },
  12306. back: {
  12307. height: math.unit(6 + 1 / 12, "feet"),
  12308. weight: math.unit(260, "lb"),
  12309. name: "Back",
  12310. image: {
  12311. source: "./media/characters/zeta/back.svg",
  12312. extra: 1944 / 1858,
  12313. bottom: 0.03
  12314. }
  12315. },
  12316. hand: {
  12317. height: math.unit(1.112, "feet"),
  12318. name: "Hand",
  12319. image: {
  12320. source: "./media/characters/zeta/hand.svg"
  12321. }
  12322. },
  12323. foot: {
  12324. height: math.unit(1.48, "feet"),
  12325. name: "Foot",
  12326. image: {
  12327. source: "./media/characters/zeta/foot.svg"
  12328. }
  12329. },
  12330. },
  12331. [
  12332. {
  12333. name: "Micro",
  12334. height: math.unit(6, "inches")
  12335. },
  12336. {
  12337. name: "Normal",
  12338. height: math.unit(6 + 1 / 12, "feet"),
  12339. default: true
  12340. },
  12341. {
  12342. name: "Macro",
  12343. height: math.unit(20, "feet")
  12344. },
  12345. ]
  12346. ))
  12347. characterMakers.push(() => makeCharacter(
  12348. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12349. {
  12350. front: {
  12351. height: math.unit(6, "feet"),
  12352. weight: math.unit(150, "lb"),
  12353. name: "Front",
  12354. image: {
  12355. source: "./media/characters/jamie-larsen/front.svg",
  12356. extra: 962 / 933,
  12357. bottom: 0.02
  12358. }
  12359. },
  12360. back: {
  12361. height: math.unit(6, "feet"),
  12362. weight: math.unit(150, "lb"),
  12363. name: "Back",
  12364. image: {
  12365. source: "./media/characters/jamie-larsen/back.svg",
  12366. extra: 997 / 946
  12367. }
  12368. },
  12369. },
  12370. [
  12371. {
  12372. name: "Macro",
  12373. height: math.unit(28 + 7 / 12, "feet"),
  12374. default: true
  12375. },
  12376. {
  12377. name: "Macro+",
  12378. height: math.unit(180, "feet")
  12379. },
  12380. {
  12381. name: "Megamacro",
  12382. height: math.unit(10, "miles")
  12383. },
  12384. {
  12385. name: "Gigamacro",
  12386. height: math.unit(200000, "miles")
  12387. },
  12388. ]
  12389. ))
  12390. characterMakers.push(() => makeCharacter(
  12391. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12392. {
  12393. front: {
  12394. height: math.unit(6, "feet"),
  12395. weight: math.unit(120, "lb"),
  12396. name: "Front",
  12397. image: {
  12398. source: "./media/characters/vance/front.svg",
  12399. extra: 1980 / 1890,
  12400. bottom: 0.09
  12401. }
  12402. },
  12403. back: {
  12404. height: math.unit(6, "feet"),
  12405. weight: math.unit(120, "lb"),
  12406. name: "Back",
  12407. image: {
  12408. source: "./media/characters/vance/back.svg",
  12409. extra: 2081 / 1994,
  12410. bottom: 0.014
  12411. }
  12412. },
  12413. hand: {
  12414. height: math.unit(0.88, "feet"),
  12415. name: "Hand",
  12416. image: {
  12417. source: "./media/characters/vance/hand.svg"
  12418. }
  12419. },
  12420. foot: {
  12421. height: math.unit(0.64, "feet"),
  12422. name: "Foot",
  12423. image: {
  12424. source: "./media/characters/vance/foot.svg"
  12425. }
  12426. },
  12427. },
  12428. [
  12429. {
  12430. name: "Small",
  12431. height: math.unit(90, "feet"),
  12432. default: true
  12433. },
  12434. {
  12435. name: "Macro",
  12436. height: math.unit(100, "meters")
  12437. },
  12438. {
  12439. name: "Megamacro",
  12440. height: math.unit(15, "miles")
  12441. },
  12442. ]
  12443. ))
  12444. characterMakers.push(() => makeCharacter(
  12445. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12446. {
  12447. front: {
  12448. height: math.unit(6, "feet"),
  12449. weight: math.unit(180, "lb"),
  12450. name: "Front",
  12451. image: {
  12452. source: "./media/characters/xochitl/front.svg",
  12453. extra: 2297 / 2261,
  12454. bottom: 0.065
  12455. }
  12456. },
  12457. back: {
  12458. height: math.unit(6, "feet"),
  12459. weight: math.unit(180, "lb"),
  12460. name: "Back",
  12461. image: {
  12462. source: "./media/characters/xochitl/back.svg",
  12463. extra: 2386 / 2354,
  12464. bottom: 0.01
  12465. }
  12466. },
  12467. foot: {
  12468. height: math.unit(6 / 5 * 1.15, "feet"),
  12469. weight: math.unit(150, "lb"),
  12470. name: "Foot",
  12471. image: {
  12472. source: "./media/characters/xochitl/foot.svg"
  12473. }
  12474. },
  12475. },
  12476. [
  12477. {
  12478. name: "Macro",
  12479. height: math.unit(80, "feet")
  12480. },
  12481. {
  12482. name: "Macro+",
  12483. height: math.unit(400, "feet"),
  12484. default: true
  12485. },
  12486. {
  12487. name: "Gigamacro",
  12488. height: math.unit(80000, "miles")
  12489. },
  12490. {
  12491. name: "Gigamacro+",
  12492. height: math.unit(400000, "miles")
  12493. },
  12494. {
  12495. name: "Teramacro",
  12496. height: math.unit(300, "AU")
  12497. },
  12498. ]
  12499. ))
  12500. characterMakers.push(() => makeCharacter(
  12501. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12502. {
  12503. front: {
  12504. height: math.unit(6, "feet"),
  12505. weight: math.unit(150, "lb"),
  12506. name: "Front",
  12507. image: {
  12508. source: "./media/characters/vincent/front.svg",
  12509. extra: 1130 / 1080,
  12510. bottom: 0.055
  12511. }
  12512. },
  12513. beak: {
  12514. height: math.unit(6 * 0.1, "feet"),
  12515. name: "Beak",
  12516. image: {
  12517. source: "./media/characters/vincent/beak.svg"
  12518. }
  12519. },
  12520. hand: {
  12521. height: math.unit(6 * 0.85, "feet"),
  12522. weight: math.unit(150, "lb"),
  12523. name: "Hand",
  12524. image: {
  12525. source: "./media/characters/vincent/hand.svg"
  12526. }
  12527. },
  12528. foot: {
  12529. height: math.unit(6 * 0.19, "feet"),
  12530. weight: math.unit(150, "lb"),
  12531. name: "Foot",
  12532. image: {
  12533. source: "./media/characters/vincent/foot.svg"
  12534. }
  12535. },
  12536. },
  12537. [
  12538. {
  12539. name: "Base",
  12540. height: math.unit(6 + 5 / 12, "feet"),
  12541. default: true
  12542. },
  12543. {
  12544. name: "Macro",
  12545. height: math.unit(300, "feet")
  12546. },
  12547. {
  12548. name: "Megamacro",
  12549. height: math.unit(2, "miles")
  12550. },
  12551. {
  12552. name: "Gigamacro",
  12553. height: math.unit(1000, "miles")
  12554. },
  12555. ]
  12556. ))
  12557. characterMakers.push(() => makeCharacter(
  12558. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12559. {
  12560. front: {
  12561. height: math.unit(6 + 2 / 12, "feet"),
  12562. weight: math.unit(265, "lb"),
  12563. name: "Front",
  12564. image: {
  12565. source: "./media/characters/jay/front.svg",
  12566. extra: 1510 / 1430,
  12567. bottom: 0.042
  12568. }
  12569. },
  12570. back: {
  12571. height: math.unit(6 + 2 / 12, "feet"),
  12572. weight: math.unit(265, "lb"),
  12573. name: "Back",
  12574. image: {
  12575. source: "./media/characters/jay/back.svg",
  12576. extra: 1510 / 1430,
  12577. bottom: 0.025
  12578. }
  12579. },
  12580. clothed: {
  12581. height: math.unit(6 + 2 / 12, "feet"),
  12582. weight: math.unit(265, "lb"),
  12583. name: "Front (Clothed)",
  12584. image: {
  12585. source: "./media/characters/jay/clothed.svg",
  12586. extra: 744 / 699,
  12587. bottom: 0.043
  12588. }
  12589. },
  12590. head: {
  12591. height: math.unit(1.772, "feet"),
  12592. name: "Head",
  12593. image: {
  12594. source: "./media/characters/jay/head.svg"
  12595. }
  12596. },
  12597. sizeRay: {
  12598. height: math.unit(1.331, "feet"),
  12599. name: "Size Ray",
  12600. image: {
  12601. source: "./media/characters/jay/size-ray.svg"
  12602. }
  12603. },
  12604. },
  12605. [
  12606. {
  12607. name: "Micro",
  12608. height: math.unit(1, "inch")
  12609. },
  12610. {
  12611. name: "Normal",
  12612. height: math.unit(6 + 2 / 12, "feet"),
  12613. default: true
  12614. },
  12615. {
  12616. name: "Macro",
  12617. height: math.unit(1, "mile")
  12618. },
  12619. {
  12620. name: "Megamacro",
  12621. height: math.unit(100, "miles")
  12622. },
  12623. ]
  12624. ))
  12625. characterMakers.push(() => makeCharacter(
  12626. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12627. {
  12628. front: {
  12629. height: math.unit(2, "meters"),
  12630. weight: math.unit(500, "kg"),
  12631. name: "Front",
  12632. image: {
  12633. source: "./media/characters/coatl/front.svg",
  12634. extra: 3948 / 3500,
  12635. bottom: 0.082
  12636. }
  12637. },
  12638. },
  12639. [
  12640. {
  12641. name: "Normal",
  12642. height: math.unit(4, "meters")
  12643. },
  12644. {
  12645. name: "Macro",
  12646. height: math.unit(100, "meters"),
  12647. default: true
  12648. },
  12649. {
  12650. name: "Macro+",
  12651. height: math.unit(300, "meters")
  12652. },
  12653. {
  12654. name: "Megamacro",
  12655. height: math.unit(3, "gigameters")
  12656. },
  12657. {
  12658. name: "Megamacro+",
  12659. height: math.unit(300, "terameters")
  12660. },
  12661. {
  12662. name: "Megamacro++",
  12663. height: math.unit(3, "lightyears")
  12664. },
  12665. ]
  12666. ))
  12667. characterMakers.push(() => makeCharacter(
  12668. { name: "Shiroryu", species: ["dragon"], tags: ["anthro"] },
  12669. {
  12670. front: {
  12671. height: math.unit(6, "feet"),
  12672. weight: math.unit(50, "kg"),
  12673. name: "front",
  12674. image: {
  12675. source: "./media/characters/shiroryu/front.svg",
  12676. extra: 1990 / 1935
  12677. }
  12678. },
  12679. },
  12680. [
  12681. {
  12682. name: "Mortal Mingling",
  12683. height: math.unit(3, "meters")
  12684. },
  12685. {
  12686. name: "Kaiju-ish",
  12687. height: math.unit(250, "meters")
  12688. },
  12689. {
  12690. name: "Somewhat Godly",
  12691. height: math.unit(400, "km"),
  12692. default: true
  12693. },
  12694. {
  12695. name: "Planetary",
  12696. height: math.unit(300, "megameters")
  12697. },
  12698. {
  12699. name: "Galaxy-dwarfing",
  12700. height: math.unit(450, "kiloparsecs")
  12701. },
  12702. {
  12703. name: "Universe Eater",
  12704. height: math.unit(150, "gigaparsecs")
  12705. },
  12706. {
  12707. name: "Almost Immeasurable",
  12708. height: math.unit(1.3e266, "yottaparsecs")
  12709. },
  12710. ]
  12711. ))
  12712. characterMakers.push(() => makeCharacter(
  12713. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12714. {
  12715. front: {
  12716. height: math.unit(6, "feet"),
  12717. weight: math.unit(150, "lb"),
  12718. name: "Front",
  12719. image: {
  12720. source: "./media/characters/umeko/front.svg",
  12721. extra: 1,
  12722. bottom: 0.019
  12723. }
  12724. },
  12725. frontArmored: {
  12726. height: math.unit(6, "feet"),
  12727. weight: math.unit(150, "lb"),
  12728. name: "Front (Armored)",
  12729. image: {
  12730. source: "./media/characters/umeko/front-armored.svg",
  12731. extra: 1,
  12732. bottom: 0.021
  12733. }
  12734. },
  12735. },
  12736. [
  12737. {
  12738. name: "Macro",
  12739. height: math.unit(220, "feet"),
  12740. default: true
  12741. },
  12742. {
  12743. name: "Guardian Dragon",
  12744. height: math.unit(50, "miles")
  12745. },
  12746. {
  12747. name: "Cosmic",
  12748. height: math.unit(800000, "miles")
  12749. },
  12750. ]
  12751. ))
  12752. characterMakers.push(() => makeCharacter(
  12753. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12754. {
  12755. front: {
  12756. height: math.unit(6, "feet"),
  12757. weight: math.unit(150, "lb"),
  12758. name: "Front",
  12759. image: {
  12760. source: "./media/characters/cassidy/front.svg",
  12761. extra: 1,
  12762. bottom: 0.043
  12763. }
  12764. },
  12765. },
  12766. [
  12767. {
  12768. name: "Canon Height",
  12769. height: math.unit(120, "feet"),
  12770. default: true
  12771. },
  12772. {
  12773. name: "Macro+",
  12774. height: math.unit(400, "feet")
  12775. },
  12776. {
  12777. name: "Macro++",
  12778. height: math.unit(4000, "feet")
  12779. },
  12780. {
  12781. name: "Megamacro",
  12782. height: math.unit(3, "miles")
  12783. },
  12784. ]
  12785. ))
  12786. characterMakers.push(() => makeCharacter(
  12787. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12788. {
  12789. front: {
  12790. height: math.unit(6, "feet"),
  12791. weight: math.unit(150, "lb"),
  12792. name: "Front",
  12793. image: {
  12794. source: "./media/characters/isaac/front.svg",
  12795. extra: 896 / 815,
  12796. bottom: 0.11
  12797. }
  12798. },
  12799. },
  12800. [
  12801. {
  12802. name: "Human Size",
  12803. height: math.unit(8, "feet"),
  12804. default: true
  12805. },
  12806. {
  12807. name: "Macro",
  12808. height: math.unit(400, "feet")
  12809. },
  12810. {
  12811. name: "Megamacro",
  12812. height: math.unit(50, "miles")
  12813. },
  12814. {
  12815. name: "Canon Height",
  12816. height: math.unit(200, "AU")
  12817. },
  12818. ]
  12819. ))
  12820. characterMakers.push(() => makeCharacter(
  12821. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  12822. {
  12823. front: {
  12824. height: math.unit(6, "feet"),
  12825. weight: math.unit(72, "kg"),
  12826. name: "Front",
  12827. image: {
  12828. source: "./media/characters/sleekit/front.svg",
  12829. extra: 4693 / 4487,
  12830. bottom: 0.012
  12831. }
  12832. },
  12833. },
  12834. [
  12835. {
  12836. name: "Minimum Height",
  12837. height: math.unit(10, "meters")
  12838. },
  12839. {
  12840. name: "Smaller",
  12841. height: math.unit(25, "meters")
  12842. },
  12843. {
  12844. name: "Larger",
  12845. height: math.unit(38, "meters"),
  12846. default: true
  12847. },
  12848. {
  12849. name: "Maximum height",
  12850. height: math.unit(100, "meters")
  12851. },
  12852. ]
  12853. ))
  12854. characterMakers.push(() => makeCharacter(
  12855. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  12856. {
  12857. front: {
  12858. height: math.unit(6, "feet"),
  12859. weight: math.unit(150, "lb"),
  12860. name: "Front",
  12861. image: {
  12862. source: "./media/characters/nillia/front.svg",
  12863. extra: 2195 / 2037,
  12864. bottom: 0.005
  12865. }
  12866. },
  12867. back: {
  12868. height: math.unit(6, "feet"),
  12869. weight: math.unit(150, "lb"),
  12870. name: "Back",
  12871. image: {
  12872. source: "./media/characters/nillia/back.svg",
  12873. extra: 2195 / 2037,
  12874. bottom: 0.005
  12875. }
  12876. },
  12877. },
  12878. [
  12879. {
  12880. name: "Canon Height",
  12881. height: math.unit(489, "feet"),
  12882. default: true
  12883. }
  12884. ]
  12885. ))
  12886. characterMakers.push(() => makeCharacter(
  12887. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  12888. {
  12889. front: {
  12890. height: math.unit(6, "feet"),
  12891. weight: math.unit(150, "lb"),
  12892. name: "Front",
  12893. image: {
  12894. source: "./media/characters/mesmyriza/front.svg",
  12895. extra: 2067 / 1784,
  12896. bottom: 0.035
  12897. }
  12898. },
  12899. foot: {
  12900. height: math.unit(6 / (250 / 35), "feet"),
  12901. name: "Foot",
  12902. image: {
  12903. source: "./media/characters/mesmyriza/foot.svg"
  12904. }
  12905. },
  12906. },
  12907. [
  12908. {
  12909. name: "Macro",
  12910. height: math.unit(457, "meters"),
  12911. default: true
  12912. },
  12913. {
  12914. name: "Megamacro",
  12915. height: math.unit(8, "megameters")
  12916. },
  12917. ]
  12918. ))
  12919. characterMakers.push(() => makeCharacter(
  12920. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  12921. {
  12922. front: {
  12923. height: math.unit(6, "feet"),
  12924. weight: math.unit(250, "lb"),
  12925. name: "Front",
  12926. image: {
  12927. source: "./media/characters/saudade/front.svg",
  12928. extra: 1172 / 1139,
  12929. bottom: 0.035
  12930. }
  12931. },
  12932. },
  12933. [
  12934. {
  12935. name: "Micro",
  12936. height: math.unit(3, "inches")
  12937. },
  12938. {
  12939. name: "Normal",
  12940. height: math.unit(6, "feet"),
  12941. default: true
  12942. },
  12943. {
  12944. name: "Macro",
  12945. height: math.unit(50, "feet")
  12946. },
  12947. {
  12948. name: "Megamacro",
  12949. height: math.unit(2800, "feet")
  12950. },
  12951. ]
  12952. ))
  12953. characterMakers.push(() => makeCharacter(
  12954. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  12955. {
  12956. front: {
  12957. height: math.unit(5 + 4 / 12, "feet"),
  12958. weight: math.unit(100, "lb"),
  12959. name: "Front",
  12960. image: {
  12961. source: "./media/characters/keireer/front.svg",
  12962. extra: 716 / 666,
  12963. bottom: 0.05
  12964. }
  12965. },
  12966. },
  12967. [
  12968. {
  12969. name: "Normal",
  12970. height: math.unit(5 + 4 / 12, "feet"),
  12971. default: true
  12972. },
  12973. ]
  12974. ))
  12975. characterMakers.push(() => makeCharacter(
  12976. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  12977. {
  12978. front: {
  12979. height: math.unit(6, "feet"),
  12980. weight: math.unit(90, "kg"),
  12981. name: "Front",
  12982. image: {
  12983. source: "./media/characters/mirja/front.svg",
  12984. extra: 1789 / 1683,
  12985. bottom: 0.05
  12986. }
  12987. },
  12988. frontDressed: {
  12989. height: math.unit(6, "feet"),
  12990. weight: math.unit(90, "lb"),
  12991. name: "Front (Dressed)",
  12992. image: {
  12993. source: "./media/characters/mirja/front-dressed.svg",
  12994. extra: 1789 / 1683,
  12995. bottom: 0.05
  12996. }
  12997. },
  12998. back: {
  12999. height: math.unit(6, "feet"),
  13000. weight: math.unit(90, "lb"),
  13001. name: "Back",
  13002. image: {
  13003. source: "./media/characters/mirja/back.svg",
  13004. extra: 953 / 917,
  13005. bottom: 0.017
  13006. }
  13007. },
  13008. },
  13009. [
  13010. {
  13011. name: "\"Incognito\"",
  13012. height: math.unit(3, "meters")
  13013. },
  13014. {
  13015. name: "Strolling Size",
  13016. height: math.unit(15, "km")
  13017. },
  13018. {
  13019. name: "Larger Strolling Size",
  13020. height: math.unit(400, "km")
  13021. },
  13022. {
  13023. name: "Preferred Size",
  13024. height: math.unit(5000, "km")
  13025. },
  13026. {
  13027. name: "True Size",
  13028. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13029. default: true
  13030. },
  13031. ]
  13032. ))
  13033. characterMakers.push(() => makeCharacter(
  13034. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13035. {
  13036. front: {
  13037. height: math.unit(15, "feet"),
  13038. weight: math.unit(880, "kg"),
  13039. name: "Front",
  13040. image: {
  13041. source: "./media/characters/nightraver/front.svg",
  13042. extra: 2444 / 2160,
  13043. bottom: 0.027
  13044. }
  13045. },
  13046. back: {
  13047. height: math.unit(15, "feet"),
  13048. weight: math.unit(880, "kg"),
  13049. name: "Back",
  13050. image: {
  13051. source: "./media/characters/nightraver/back.svg",
  13052. extra: 2309 / 2180,
  13053. bottom: 0.005
  13054. }
  13055. },
  13056. sole: {
  13057. height: math.unit(2.878, "feet"),
  13058. name: "Sole",
  13059. image: {
  13060. source: "./media/characters/nightraver/sole.svg"
  13061. }
  13062. },
  13063. foot: {
  13064. height: math.unit(2.285, "feet"),
  13065. name: "Foot",
  13066. image: {
  13067. source: "./media/characters/nightraver/foot.svg"
  13068. }
  13069. },
  13070. maw: {
  13071. height: math.unit(2.67, "feet"),
  13072. name: "Maw",
  13073. image: {
  13074. source: "./media/characters/nightraver/maw.svg"
  13075. }
  13076. },
  13077. },
  13078. [
  13079. {
  13080. name: "Micro",
  13081. height: math.unit(1, "cm")
  13082. },
  13083. {
  13084. name: "Normal",
  13085. height: math.unit(15, "feet"),
  13086. default: true
  13087. },
  13088. {
  13089. name: "Macro",
  13090. height: math.unit(300, "feet")
  13091. },
  13092. {
  13093. name: "Megamacro",
  13094. height: math.unit(300, "miles")
  13095. },
  13096. {
  13097. name: "Gigamacro",
  13098. height: math.unit(10000, "miles")
  13099. },
  13100. ]
  13101. ))
  13102. characterMakers.push(() => makeCharacter(
  13103. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13104. {
  13105. side: {
  13106. height: math.unit(2, "inches"),
  13107. weight: math.unit(5, "grams"),
  13108. name: "Side",
  13109. image: {
  13110. source: "./media/characters/arc/side.svg"
  13111. }
  13112. },
  13113. },
  13114. [
  13115. {
  13116. name: "Micro",
  13117. height: math.unit(2, "inches"),
  13118. default: true
  13119. },
  13120. ]
  13121. ))
  13122. characterMakers.push(() => makeCharacter(
  13123. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13124. {
  13125. front: {
  13126. height: math.unit(1.1938, "meters"),
  13127. weight: math.unit(54, "kg"),
  13128. name: "Front",
  13129. image: {
  13130. source: "./media/characters/nebula-shahar/front.svg",
  13131. extra: 1642 / 1436,
  13132. bottom: 0.06
  13133. }
  13134. },
  13135. },
  13136. [
  13137. {
  13138. name: "Megamicro",
  13139. height: math.unit(0.3, "mm")
  13140. },
  13141. {
  13142. name: "Micro",
  13143. height: math.unit(3, "cm")
  13144. },
  13145. {
  13146. name: "Normal",
  13147. height: math.unit(138, "cm"),
  13148. default: true
  13149. },
  13150. {
  13151. name: "Macro",
  13152. height: math.unit(30, "m")
  13153. },
  13154. ]
  13155. ))
  13156. characterMakers.push(() => makeCharacter(
  13157. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13158. {
  13159. front: {
  13160. height: math.unit(5.24, "feet"),
  13161. weight: math.unit(150, "lb"),
  13162. name: "Front",
  13163. image: {
  13164. source: "./media/characters/shayla/front.svg",
  13165. extra: 1512 / 1414,
  13166. bottom: 0.01
  13167. }
  13168. },
  13169. back: {
  13170. height: math.unit(5.24, "feet"),
  13171. weight: math.unit(150, "lb"),
  13172. name: "Back",
  13173. image: {
  13174. source: "./media/characters/shayla/back.svg",
  13175. extra: 1512 / 1414
  13176. }
  13177. },
  13178. hand: {
  13179. height: math.unit(0.7781496062992126, "feet"),
  13180. name: "Hand",
  13181. image: {
  13182. source: "./media/characters/shayla/hand.svg"
  13183. }
  13184. },
  13185. foot: {
  13186. height: math.unit(1.4206036745406823, "feet"),
  13187. name: "Foot",
  13188. image: {
  13189. source: "./media/characters/shayla/foot.svg"
  13190. }
  13191. },
  13192. },
  13193. [
  13194. {
  13195. name: "Micro",
  13196. height: math.unit(0.32, "feet")
  13197. },
  13198. {
  13199. name: "Normal",
  13200. height: math.unit(5.24, "feet"),
  13201. default: true
  13202. },
  13203. {
  13204. name: "Macro",
  13205. height: math.unit(492.12, "feet")
  13206. },
  13207. {
  13208. name: "Megamacro",
  13209. height: math.unit(186.41, "miles")
  13210. },
  13211. ]
  13212. ))
  13213. characterMakers.push(() => makeCharacter(
  13214. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13215. {
  13216. front: {
  13217. height: math.unit(2.2, "m"),
  13218. weight: math.unit(120, "kg"),
  13219. name: "Front",
  13220. image: {
  13221. source: "./media/characters/pia-jr/front.svg",
  13222. extra: 1000 / 970,
  13223. bottom: 0.035
  13224. }
  13225. },
  13226. hand: {
  13227. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13228. name: "Hand",
  13229. image: {
  13230. source: "./media/characters/pia-jr/hand.svg"
  13231. }
  13232. },
  13233. paw: {
  13234. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13235. name: "Paw",
  13236. image: {
  13237. source: "./media/characters/pia-jr/paw.svg"
  13238. }
  13239. },
  13240. },
  13241. [
  13242. {
  13243. name: "Micro",
  13244. height: math.unit(1.2, "cm")
  13245. },
  13246. {
  13247. name: "Normal",
  13248. height: math.unit(2.2, "m"),
  13249. default: true
  13250. },
  13251. {
  13252. name: "Macro",
  13253. height: math.unit(180, "m")
  13254. },
  13255. {
  13256. name: "Megamacro",
  13257. height: math.unit(420, "km")
  13258. },
  13259. ]
  13260. ))
  13261. characterMakers.push(() => makeCharacter(
  13262. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13263. {
  13264. front: {
  13265. height: math.unit(2, "m"),
  13266. weight: math.unit(115, "kg"),
  13267. name: "Front",
  13268. image: {
  13269. source: "./media/characters/pia-sr/front.svg",
  13270. extra: 760 / 730,
  13271. bottom: 0.015
  13272. }
  13273. },
  13274. back: {
  13275. height: math.unit(2, "m"),
  13276. weight: math.unit(115, "kg"),
  13277. name: "Back",
  13278. image: {
  13279. source: "./media/characters/pia-sr/back.svg",
  13280. extra: 760 / 730,
  13281. bottom: 0.01
  13282. }
  13283. },
  13284. hand: {
  13285. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13286. name: "Hand",
  13287. image: {
  13288. source: "./media/characters/pia-sr/hand.svg"
  13289. }
  13290. },
  13291. foot: {
  13292. height: math.unit(1.83, "feet"),
  13293. name: "Foot",
  13294. image: {
  13295. source: "./media/characters/pia-sr/foot.svg"
  13296. }
  13297. },
  13298. },
  13299. [
  13300. {
  13301. name: "Micro",
  13302. height: math.unit(88, "mm")
  13303. },
  13304. {
  13305. name: "Normal",
  13306. height: math.unit(2, "m"),
  13307. default: true
  13308. },
  13309. {
  13310. name: "Macro",
  13311. height: math.unit(200, "m")
  13312. },
  13313. {
  13314. name: "Megamacro",
  13315. height: math.unit(420, "km")
  13316. },
  13317. ]
  13318. ))
  13319. characterMakers.push(() => makeCharacter(
  13320. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13321. {
  13322. front: {
  13323. height: math.unit(8 + 2 / 12, "feet"),
  13324. weight: math.unit(300, "lb"),
  13325. name: "Front",
  13326. image: {
  13327. source: "./media/characters/kibibyte/front.svg",
  13328. extra: 2221 / 2098,
  13329. bottom: 0.04
  13330. }
  13331. },
  13332. },
  13333. [
  13334. {
  13335. name: "Normal",
  13336. height: math.unit(8 + 2 / 12, "feet"),
  13337. default: true
  13338. },
  13339. {
  13340. name: "Socialable Macro",
  13341. height: math.unit(50, "feet")
  13342. },
  13343. {
  13344. name: "Macro",
  13345. height: math.unit(300, "feet")
  13346. },
  13347. {
  13348. name: "Megamacro",
  13349. height: math.unit(500, "miles")
  13350. },
  13351. ]
  13352. ))
  13353. characterMakers.push(() => makeCharacter(
  13354. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13355. {
  13356. front: {
  13357. height: math.unit(6, "feet"),
  13358. weight: math.unit(150, "lb"),
  13359. name: "Front",
  13360. image: {
  13361. source: "./media/characters/felix/front.svg",
  13362. extra: 762 / 722,
  13363. bottom: 0.02
  13364. }
  13365. },
  13366. frontClothed: {
  13367. height: math.unit(6, "feet"),
  13368. weight: math.unit(150, "lb"),
  13369. name: "Front (Clothed)",
  13370. image: {
  13371. source: "./media/characters/felix/front-clothed.svg",
  13372. extra: 762 / 722,
  13373. bottom: 0.02
  13374. }
  13375. },
  13376. },
  13377. [
  13378. {
  13379. name: "Normal",
  13380. height: math.unit(6 + 8 / 12, "feet"),
  13381. default: true
  13382. },
  13383. {
  13384. name: "Macro",
  13385. height: math.unit(2600, "feet")
  13386. },
  13387. {
  13388. name: "Megamacro",
  13389. height: math.unit(450, "miles")
  13390. },
  13391. ]
  13392. ))
  13393. characterMakers.push(() => makeCharacter(
  13394. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13395. {
  13396. front: {
  13397. height: math.unit(6 + 1 / 12, "feet"),
  13398. weight: math.unit(250, "lb"),
  13399. name: "Front",
  13400. image: {
  13401. source: "./media/characters/tobo/front.svg",
  13402. extra: 608 / 586,
  13403. bottom: 0.023
  13404. }
  13405. },
  13406. back: {
  13407. height: math.unit(6 + 1 / 12, "feet"),
  13408. weight: math.unit(250, "lb"),
  13409. name: "Back",
  13410. image: {
  13411. source: "./media/characters/tobo/back.svg",
  13412. extra: 608 / 586
  13413. }
  13414. },
  13415. },
  13416. [
  13417. {
  13418. name: "Nano",
  13419. height: math.unit(2, "nm")
  13420. },
  13421. {
  13422. name: "Megamicro",
  13423. height: math.unit(0.1, "mm")
  13424. },
  13425. {
  13426. name: "Micro",
  13427. height: math.unit(1, "inch"),
  13428. default: true
  13429. },
  13430. {
  13431. name: "Human-sized",
  13432. height: math.unit(6 + 1 / 12, "feet")
  13433. },
  13434. {
  13435. name: "Macro",
  13436. height: math.unit(250, "feet")
  13437. },
  13438. {
  13439. name: "Megamacro",
  13440. height: math.unit(75, "miles")
  13441. },
  13442. {
  13443. name: "Texas-sized",
  13444. height: math.unit(750, "miles")
  13445. },
  13446. {
  13447. name: "Teramacro",
  13448. height: math.unit(50000, "miles")
  13449. },
  13450. ]
  13451. ))
  13452. characterMakers.push(() => makeCharacter(
  13453. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13454. {
  13455. front: {
  13456. height: math.unit(6, "feet"),
  13457. weight: math.unit(269, "lb"),
  13458. name: "Front",
  13459. image: {
  13460. source: "./media/characters/danny-kapowsky/front.svg",
  13461. extra: 766 / 736,
  13462. bottom: 0.044
  13463. }
  13464. },
  13465. back: {
  13466. height: math.unit(6, "feet"),
  13467. weight: math.unit(269, "lb"),
  13468. name: "Back",
  13469. image: {
  13470. source: "./media/characters/danny-kapowsky/back.svg",
  13471. extra: 797 / 760,
  13472. bottom: 0.025
  13473. }
  13474. },
  13475. },
  13476. [
  13477. {
  13478. name: "Macro",
  13479. height: math.unit(150, "feet"),
  13480. default: true
  13481. },
  13482. {
  13483. name: "Macro+",
  13484. height: math.unit(200, "feet")
  13485. },
  13486. {
  13487. name: "Macro++",
  13488. height: math.unit(300, "feet")
  13489. },
  13490. {
  13491. name: "Macro+++",
  13492. height: math.unit(400, "feet")
  13493. },
  13494. ]
  13495. ))
  13496. characterMakers.push(() => makeCharacter(
  13497. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13498. {
  13499. side: {
  13500. height: math.unit(6, "feet"),
  13501. weight: math.unit(170, "lb"),
  13502. name: "Side",
  13503. image: {
  13504. source: "./media/characters/finn/side.svg",
  13505. extra: 1953 / 1807,
  13506. bottom: 0.057
  13507. }
  13508. },
  13509. },
  13510. [
  13511. {
  13512. name: "Megamacro",
  13513. height: math.unit(14445, "feet"),
  13514. default: true
  13515. },
  13516. ]
  13517. ))
  13518. characterMakers.push(() => makeCharacter(
  13519. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13520. {
  13521. front: {
  13522. height: math.unit(5 + 6 / 12, "feet"),
  13523. weight: math.unit(125, "lb"),
  13524. name: "Front",
  13525. image: {
  13526. source: "./media/characters/roy/front.svg",
  13527. extra: 1,
  13528. bottom: 0.11
  13529. }
  13530. },
  13531. },
  13532. [
  13533. {
  13534. name: "Micro",
  13535. height: math.unit(3, "inches"),
  13536. default: true
  13537. },
  13538. {
  13539. name: "Normal",
  13540. height: math.unit(5 + 6 / 12, "feet")
  13541. },
  13542. {
  13543. name: "Lesser Macro",
  13544. height: math.unit(60, "feet")
  13545. },
  13546. {
  13547. name: "Greater Macro",
  13548. height: math.unit(120, "feet")
  13549. },
  13550. ]
  13551. ))
  13552. characterMakers.push(() => makeCharacter(
  13553. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13554. {
  13555. front: {
  13556. height: math.unit(6, "feet"),
  13557. weight: math.unit(100, "lb"),
  13558. name: "Front",
  13559. image: {
  13560. source: "./media/characters/aevsivs/front.svg",
  13561. extra: 1,
  13562. bottom: 0.03
  13563. }
  13564. },
  13565. back: {
  13566. height: math.unit(6, "feet"),
  13567. weight: math.unit(100, "lb"),
  13568. name: "Back",
  13569. image: {
  13570. source: "./media/characters/aevsivs/back.svg"
  13571. }
  13572. },
  13573. },
  13574. [
  13575. {
  13576. name: "Micro",
  13577. height: math.unit(2, "inches"),
  13578. default: true
  13579. },
  13580. {
  13581. name: "Normal",
  13582. height: math.unit(5, "feet")
  13583. },
  13584. ]
  13585. ))
  13586. characterMakers.push(() => makeCharacter(
  13587. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13588. {
  13589. front: {
  13590. height: math.unit(5 + 7 / 12, "feet"),
  13591. weight: math.unit(159, "lb"),
  13592. name: "Front",
  13593. image: {
  13594. source: "./media/characters/hildegard/front.svg",
  13595. extra: 312 / 286,
  13596. bottom: 0.005
  13597. }
  13598. },
  13599. },
  13600. [
  13601. {
  13602. name: "Normal",
  13603. height: math.unit(5 + 7 / 12, "feet"),
  13604. default: true
  13605. },
  13606. ]
  13607. ))
  13608. characterMakers.push(() => makeCharacter(
  13609. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13610. {
  13611. bernard: {
  13612. height: math.unit(2 + 7 / 12, "feet"),
  13613. weight: math.unit(66, "lb"),
  13614. name: "Bernard",
  13615. rename: true,
  13616. image: {
  13617. source: "./media/characters/bernard-wilder/bernard.svg",
  13618. extra: 192 / 128,
  13619. bottom: 0.05
  13620. }
  13621. },
  13622. wilder: {
  13623. height: math.unit(5 + 8 / 12, "feet"),
  13624. weight: math.unit(143, "lb"),
  13625. name: "Wilder",
  13626. rename: true,
  13627. image: {
  13628. source: "./media/characters/bernard-wilder/wilder.svg",
  13629. extra: 361 / 312,
  13630. bottom: 0.02
  13631. }
  13632. },
  13633. },
  13634. [
  13635. {
  13636. name: "Normal",
  13637. height: math.unit(2 + 7 / 12, "feet"),
  13638. default: true
  13639. },
  13640. ]
  13641. ))
  13642. characterMakers.push(() => makeCharacter(
  13643. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13644. {
  13645. anthro: {
  13646. height: math.unit(6 + 1 / 12, "feet"),
  13647. weight: math.unit(155, "lb"),
  13648. name: "Anthro",
  13649. image: {
  13650. source: "./media/characters/hearth/anthro.svg",
  13651. extra: 260 / 250,
  13652. bottom: 0.02
  13653. }
  13654. },
  13655. feral: {
  13656. height: math.unit(3.78, "feet"),
  13657. weight: math.unit(35, "kg"),
  13658. name: "Feral",
  13659. image: {
  13660. source: "./media/characters/hearth/feral.svg",
  13661. extra: 153 / 135,
  13662. bottom: 0.03
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Normal",
  13669. height: math.unit(6 + 1 / 12, "feet"),
  13670. default: true
  13671. },
  13672. ]
  13673. ))
  13674. characterMakers.push(() => makeCharacter(
  13675. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13676. {
  13677. front: {
  13678. height: math.unit(6, "feet"),
  13679. weight: math.unit(182, "lb"),
  13680. name: "Front",
  13681. image: {
  13682. source: "./media/characters/ingrid/front.svg",
  13683. extra: 294 / 268,
  13684. bottom: 0.027
  13685. }
  13686. },
  13687. },
  13688. [
  13689. {
  13690. name: "Normal",
  13691. height: math.unit(6, "feet"),
  13692. default: true
  13693. },
  13694. ]
  13695. ))
  13696. characterMakers.push(() => makeCharacter(
  13697. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13698. {
  13699. eevee: {
  13700. height: math.unit(2 + 10 / 12, "feet"),
  13701. weight: math.unit(86, "lb"),
  13702. name: "Malgam",
  13703. image: {
  13704. source: "./media/characters/malgam/eevee.svg",
  13705. extra: 218 / 180,
  13706. bottom: 0.2
  13707. }
  13708. },
  13709. sylveon: {
  13710. height: math.unit(4, "feet"),
  13711. weight: math.unit(101, "lb"),
  13712. name: "Future Malgam",
  13713. rename: true,
  13714. image: {
  13715. source: "./media/characters/malgam/sylveon.svg",
  13716. extra: 371 / 325,
  13717. bottom: 0.015
  13718. }
  13719. },
  13720. gigantamax: {
  13721. height: math.unit(50, "feet"),
  13722. name: "Gigantamax Malgam",
  13723. rename: true,
  13724. image: {
  13725. source: "./media/characters/malgam/gigantamax.svg"
  13726. }
  13727. },
  13728. },
  13729. [
  13730. {
  13731. name: "Normal",
  13732. height: math.unit(2 + 10 / 12, "feet"),
  13733. default: true
  13734. },
  13735. ]
  13736. ))
  13737. characterMakers.push(() => makeCharacter(
  13738. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13739. {
  13740. front: {
  13741. height: math.unit(5 + 11 / 12, "feet"),
  13742. weight: math.unit(188, "lb"),
  13743. name: "Front",
  13744. image: {
  13745. source: "./media/characters/fleur/front.svg",
  13746. extra: 309 / 283,
  13747. bottom: 0.007
  13748. }
  13749. },
  13750. },
  13751. [
  13752. {
  13753. name: "Normal",
  13754. height: math.unit(5 + 11 / 12, "feet"),
  13755. default: true
  13756. },
  13757. ]
  13758. ))
  13759. characterMakers.push(() => makeCharacter(
  13760. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13761. {
  13762. front: {
  13763. height: math.unit(5 + 4 / 12, "feet"),
  13764. weight: math.unit(122, "lb"),
  13765. name: "Front",
  13766. image: {
  13767. source: "./media/characters/jude/front.svg",
  13768. extra: 288 / 273,
  13769. bottom: 0.03
  13770. }
  13771. },
  13772. },
  13773. [
  13774. {
  13775. name: "Normal",
  13776. height: math.unit(5 + 4 / 12, "feet"),
  13777. default: true
  13778. },
  13779. ]
  13780. ))
  13781. characterMakers.push(() => makeCharacter(
  13782. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13783. {
  13784. front: {
  13785. height: math.unit(5 + 11 / 12, "feet"),
  13786. weight: math.unit(190, "lb"),
  13787. name: "Front",
  13788. image: {
  13789. source: "./media/characters/seara/front.svg",
  13790. extra: 1,
  13791. bottom: 0.05
  13792. }
  13793. },
  13794. },
  13795. [
  13796. {
  13797. name: "Normal",
  13798. height: math.unit(5 + 11 / 12, "feet"),
  13799. default: true
  13800. },
  13801. ]
  13802. ))
  13803. characterMakers.push(() => makeCharacter(
  13804. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  13805. {
  13806. front: {
  13807. height: math.unit(16 + 5 / 12, "feet"),
  13808. weight: math.unit(524, "lb"),
  13809. name: "Front",
  13810. image: {
  13811. source: "./media/characters/caspian/front.svg",
  13812. extra: 1,
  13813. bottom: 0.04
  13814. }
  13815. },
  13816. },
  13817. [
  13818. {
  13819. name: "Normal",
  13820. height: math.unit(16 + 5 / 12, "feet"),
  13821. default: true
  13822. },
  13823. ]
  13824. ))
  13825. characterMakers.push(() => makeCharacter(
  13826. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  13827. {
  13828. front: {
  13829. height: math.unit(5 + 7 / 12, "feet"),
  13830. weight: math.unit(170, "lb"),
  13831. name: "Front",
  13832. image: {
  13833. source: "./media/characters/mika/front.svg",
  13834. extra: 1,
  13835. bottom: 0.016
  13836. }
  13837. },
  13838. },
  13839. [
  13840. {
  13841. name: "Normal",
  13842. height: math.unit(5 + 7 / 12, "feet"),
  13843. default: true
  13844. },
  13845. ]
  13846. ))
  13847. characterMakers.push(() => makeCharacter(
  13848. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  13849. {
  13850. front: {
  13851. height: math.unit(6 + 2 / 12, "feet"),
  13852. weight: math.unit(268, "lb"),
  13853. name: "Front",
  13854. image: {
  13855. source: "./media/characters/sol/front.svg",
  13856. extra: 247 / 231,
  13857. bottom: 0.05
  13858. }
  13859. },
  13860. },
  13861. [
  13862. {
  13863. name: "Normal",
  13864. height: math.unit(6 + 2 / 12, "feet"),
  13865. default: true
  13866. },
  13867. ]
  13868. ))
  13869. characterMakers.push(() => makeCharacter(
  13870. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  13871. {
  13872. buizel: {
  13873. height: math.unit(2 + 5 / 12, "feet"),
  13874. weight: math.unit(87, "lb"),
  13875. name: "Buizel",
  13876. image: {
  13877. source: "./media/characters/umiko/buizel.svg",
  13878. extra: 172 / 157,
  13879. bottom: 0.01
  13880. }
  13881. },
  13882. floatzel: {
  13883. height: math.unit(5 + 9 / 12, "feet"),
  13884. weight: math.unit(250, "lb"),
  13885. name: "Floatzel",
  13886. image: {
  13887. source: "./media/characters/umiko/floatzel.svg",
  13888. extra: 262 / 248
  13889. }
  13890. },
  13891. },
  13892. [
  13893. {
  13894. name: "Normal",
  13895. height: math.unit(2 + 5 / 12, "feet"),
  13896. default: true
  13897. },
  13898. ]
  13899. ))
  13900. characterMakers.push(() => makeCharacter(
  13901. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  13902. {
  13903. front: {
  13904. height: math.unit(6 + 2 / 12, "feet"),
  13905. weight: math.unit(146, "lb"),
  13906. name: "Front",
  13907. image: {
  13908. source: "./media/characters/iliac/front.svg",
  13909. extra: 389 / 365,
  13910. bottom: 0.035
  13911. }
  13912. },
  13913. },
  13914. [
  13915. {
  13916. name: "Normal",
  13917. height: math.unit(6 + 2 / 12, "feet"),
  13918. default: true
  13919. },
  13920. ]
  13921. ))
  13922. characterMakers.push(() => makeCharacter(
  13923. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  13924. {
  13925. front: {
  13926. height: math.unit(6, "feet"),
  13927. weight: math.unit(170, "lb"),
  13928. name: "Front",
  13929. image: {
  13930. source: "./media/characters/topaz/front.svg",
  13931. extra: 317 / 303,
  13932. bottom: 0.055
  13933. }
  13934. },
  13935. },
  13936. [
  13937. {
  13938. name: "Normal",
  13939. height: math.unit(6, "feet"),
  13940. default: true
  13941. },
  13942. ]
  13943. ))
  13944. characterMakers.push(() => makeCharacter(
  13945. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  13946. {
  13947. front: {
  13948. height: math.unit(5 + 11 / 12, "feet"),
  13949. weight: math.unit(144, "lb"),
  13950. name: "Front",
  13951. image: {
  13952. source: "./media/characters/gabriel/front.svg",
  13953. extra: 285 / 262,
  13954. bottom: 0.004
  13955. }
  13956. },
  13957. },
  13958. [
  13959. {
  13960. name: "Normal",
  13961. height: math.unit(5 + 11 / 12, "feet"),
  13962. default: true
  13963. },
  13964. ]
  13965. ))
  13966. characterMakers.push(() => makeCharacter(
  13967. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  13968. {
  13969. side: {
  13970. height: math.unit(6 + 5 / 12, "feet"),
  13971. weight: math.unit(300, "lb"),
  13972. name: "Side",
  13973. image: {
  13974. source: "./media/characters/tempest-suicune/side.svg",
  13975. extra: 195 / 154,
  13976. bottom: 0.04
  13977. }
  13978. },
  13979. },
  13980. [
  13981. {
  13982. name: "Normal",
  13983. height: math.unit(6 + 5 / 12, "feet"),
  13984. default: true
  13985. },
  13986. ]
  13987. ))
  13988. characterMakers.push(() => makeCharacter(
  13989. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  13990. {
  13991. front: {
  13992. height: math.unit(7 + 2 / 12, "feet"),
  13993. weight: math.unit(322, "lb"),
  13994. name: "Front",
  13995. image: {
  13996. source: "./media/characters/vulcan/front.svg",
  13997. extra: 154 / 147,
  13998. bottom: 0.04
  13999. }
  14000. },
  14001. },
  14002. [
  14003. {
  14004. name: "Normal",
  14005. height: math.unit(7 + 2 / 12, "feet"),
  14006. default: true
  14007. },
  14008. ]
  14009. ))
  14010. characterMakers.push(() => makeCharacter(
  14011. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14012. {
  14013. front: {
  14014. height: math.unit(5 + 10 / 12, "feet"),
  14015. weight: math.unit(264, "lb"),
  14016. name: "Front",
  14017. image: {
  14018. source: "./media/characters/gault/front.svg",
  14019. extra: 161 / 140,
  14020. bottom: 0.028
  14021. }
  14022. },
  14023. },
  14024. [
  14025. {
  14026. name: "Normal",
  14027. height: math.unit(5 + 10 / 12, "feet"),
  14028. default: true
  14029. },
  14030. ]
  14031. ))
  14032. characterMakers.push(() => makeCharacter(
  14033. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14034. {
  14035. front: {
  14036. height: math.unit(6, "feet"),
  14037. weight: math.unit(150, "lb"),
  14038. name: "Front",
  14039. image: {
  14040. source: "./media/characters/shard/front.svg",
  14041. extra: 273 / 238,
  14042. bottom: 0.02
  14043. }
  14044. },
  14045. },
  14046. [
  14047. {
  14048. name: "Normal",
  14049. height: math.unit(3 + 6 / 12, "feet"),
  14050. default: true
  14051. },
  14052. ]
  14053. ))
  14054. characterMakers.push(() => makeCharacter(
  14055. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14056. {
  14057. front: {
  14058. height: math.unit(5 + 11 / 12, "feet"),
  14059. weight: math.unit(146, "lb"),
  14060. name: "Front",
  14061. image: {
  14062. source: "./media/characters/ashe/front.svg",
  14063. extra: 400 / 373,
  14064. bottom: 0.01
  14065. }
  14066. },
  14067. },
  14068. [
  14069. {
  14070. name: "Normal",
  14071. height: math.unit(5 + 11 / 12, "feet"),
  14072. default: true
  14073. },
  14074. ]
  14075. ))
  14076. characterMakers.push(() => makeCharacter(
  14077. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14078. {
  14079. front: {
  14080. height: math.unit(5 + 5 / 12, "feet"),
  14081. weight: math.unit(135, "lb"),
  14082. name: "Front",
  14083. image: {
  14084. source: "./media/characters/beatrix/front.svg",
  14085. extra: 392 / 379,
  14086. bottom: 0.01
  14087. }
  14088. },
  14089. },
  14090. [
  14091. {
  14092. name: "Normal",
  14093. height: math.unit(6, "feet"),
  14094. default: true
  14095. },
  14096. ]
  14097. ))
  14098. characterMakers.push(() => makeCharacter(
  14099. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14100. {
  14101. front: {
  14102. height: math.unit(6, "feet"),
  14103. weight: math.unit(150, "lb"),
  14104. name: "Front",
  14105. image: {
  14106. source: "./media/characters/ignatius/front.svg",
  14107. extra: 245 / 222,
  14108. bottom: 0.01
  14109. }
  14110. },
  14111. },
  14112. [
  14113. {
  14114. name: "Normal",
  14115. height: math.unit(5 + 5 / 12, "feet"),
  14116. default: true
  14117. },
  14118. ]
  14119. ))
  14120. characterMakers.push(() => makeCharacter(
  14121. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14122. {
  14123. front: {
  14124. height: math.unit(6 + 2 / 12, "feet"),
  14125. weight: math.unit(138, "lb"),
  14126. name: "Front",
  14127. image: {
  14128. source: "./media/characters/mei-li/front.svg",
  14129. extra: 237 / 229,
  14130. bottom: 0.03
  14131. }
  14132. },
  14133. },
  14134. [
  14135. {
  14136. name: "Normal",
  14137. height: math.unit(6 + 2 / 12, "feet"),
  14138. default: true
  14139. },
  14140. ]
  14141. ))
  14142. characterMakers.push(() => makeCharacter(
  14143. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14144. {
  14145. front: {
  14146. height: math.unit(2 + 4 / 12, "feet"),
  14147. weight: math.unit(62, "lb"),
  14148. name: "Front",
  14149. image: {
  14150. source: "./media/characters/puru/front.svg",
  14151. extra: 206 / 149,
  14152. bottom: 0.06
  14153. }
  14154. },
  14155. },
  14156. [
  14157. {
  14158. name: "Normal",
  14159. height: math.unit(2 + 4 / 12, "feet"),
  14160. default: true
  14161. },
  14162. ]
  14163. ))
  14164. characterMakers.push(() => makeCharacter(
  14165. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14166. {
  14167. taur: {
  14168. height: math.unit(11, "feet"),
  14169. weight: math.unit(500, "lb"),
  14170. name: "Taur",
  14171. image: {
  14172. source: "./media/characters/kee/taur.svg",
  14173. extra: 1,
  14174. bottom: 0.04
  14175. }
  14176. },
  14177. },
  14178. [
  14179. {
  14180. name: "Normal",
  14181. height: math.unit(11, "feet"),
  14182. default: true
  14183. },
  14184. ]
  14185. ))
  14186. characterMakers.push(() => makeCharacter(
  14187. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14188. {
  14189. anthro: {
  14190. height: math.unit(7, "feet"),
  14191. weight: math.unit(190, "lb"),
  14192. name: "Anthro",
  14193. image: {
  14194. source: "./media/characters/cobalt-dracha/anthro.svg",
  14195. extra: 231 / 225,
  14196. bottom: 0.04
  14197. }
  14198. },
  14199. feral: {
  14200. height: math.unit(9 + 7 / 12, "feet"),
  14201. weight: math.unit(294, "lb"),
  14202. name: "Feral",
  14203. image: {
  14204. source: "./media/characters/cobalt-dracha/feral.svg",
  14205. extra: 692 / 633,
  14206. bottom: 0.05
  14207. }
  14208. },
  14209. },
  14210. [
  14211. {
  14212. name: "Normal",
  14213. height: math.unit(7, "feet"),
  14214. default: true
  14215. },
  14216. ]
  14217. ))
  14218. characterMakers.push(() => makeCharacter(
  14219. { name: "Java", species: ["snake"], tags: ["naga"] },
  14220. {
  14221. fallen: {
  14222. height: math.unit(11 + 8 / 12, "feet"),
  14223. weight: math.unit(485, "lb"),
  14224. name: "Java (Fallen)",
  14225. rename: true,
  14226. image: {
  14227. source: "./media/characters/java/fallen.svg",
  14228. extra: 226 / 208,
  14229. bottom: 0.005
  14230. }
  14231. },
  14232. godkin: {
  14233. height: math.unit(10 + 6 / 12, "feet"),
  14234. weight: math.unit(328, "lb"),
  14235. name: "Java (Godkin)",
  14236. rename: true,
  14237. image: {
  14238. source: "./media/characters/java/godkin.svg",
  14239. extra: 270 / 262,
  14240. bottom: 0.02
  14241. }
  14242. },
  14243. },
  14244. [
  14245. {
  14246. name: "Normal",
  14247. height: math.unit(11 + 8 / 12, "feet"),
  14248. default: true
  14249. },
  14250. ]
  14251. ))
  14252. characterMakers.push(() => makeCharacter(
  14253. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14254. {
  14255. front: {
  14256. height: math.unit(7 + 8 / 12, "feet"),
  14257. weight: math.unit(320, "lb"),
  14258. name: "Front",
  14259. image: {
  14260. source: "./media/characters/skoll/front.svg",
  14261. extra: 232 / 220,
  14262. bottom: 0.02
  14263. }
  14264. },
  14265. },
  14266. [
  14267. {
  14268. name: "Normal",
  14269. height: math.unit(7 + 8 / 12, "feet"),
  14270. default: true
  14271. },
  14272. ]
  14273. ))
  14274. characterMakers.push(() => makeCharacter(
  14275. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14276. {
  14277. front: {
  14278. height: math.unit(5 + 9 / 12, "feet"),
  14279. weight: math.unit(170, "lb"),
  14280. name: "Front",
  14281. image: {
  14282. source: "./media/characters/purna/front.svg",
  14283. extra: 239 / 229,
  14284. bottom: 0.01
  14285. }
  14286. },
  14287. },
  14288. [
  14289. {
  14290. name: "Normal",
  14291. height: math.unit(5 + 9 / 12, "feet"),
  14292. default: true
  14293. },
  14294. ]
  14295. ))
  14296. characterMakers.push(() => makeCharacter(
  14297. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14298. {
  14299. front: {
  14300. height: math.unit(5 + 9 / 12, "feet"),
  14301. weight: math.unit(142, "lb"),
  14302. name: "Front",
  14303. image: {
  14304. source: "./media/characters/kuva/front.svg",
  14305. extra: 281 / 271,
  14306. bottom: 0.006
  14307. }
  14308. },
  14309. },
  14310. [
  14311. {
  14312. name: "Normal",
  14313. height: math.unit(5 + 9 / 12, "feet"),
  14314. default: true
  14315. },
  14316. ]
  14317. ))
  14318. characterMakers.push(() => makeCharacter(
  14319. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14320. {
  14321. anthro: {
  14322. height: math.unit(9 + 2 / 12, "feet"),
  14323. weight: math.unit(270, "lb"),
  14324. name: "Anthro",
  14325. image: {
  14326. source: "./media/characters/embra/anthro.svg",
  14327. extra: 200 / 187,
  14328. bottom: 0.02
  14329. }
  14330. },
  14331. feral: {
  14332. height: math.unit(18 + 8 / 12, "feet"),
  14333. weight: math.unit(576, "lb"),
  14334. name: "Feral",
  14335. image: {
  14336. source: "./media/characters/embra/feral.svg",
  14337. extra: 152 / 137,
  14338. bottom: 0.037
  14339. }
  14340. },
  14341. },
  14342. [
  14343. {
  14344. name: "Normal",
  14345. height: math.unit(9 + 2 / 12, "feet"),
  14346. default: true
  14347. },
  14348. ]
  14349. ))
  14350. characterMakers.push(() => makeCharacter(
  14351. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14352. {
  14353. anthro: {
  14354. height: math.unit(10 + 9 / 12, "feet"),
  14355. weight: math.unit(224, "lb"),
  14356. name: "Anthro",
  14357. image: {
  14358. source: "./media/characters/grottos/anthro.svg",
  14359. extra: 350 / 332,
  14360. bottom: 0.045
  14361. }
  14362. },
  14363. feral: {
  14364. height: math.unit(20 + 7 / 12, "feet"),
  14365. weight: math.unit(629, "lb"),
  14366. name: "Feral",
  14367. image: {
  14368. source: "./media/characters/grottos/feral.svg",
  14369. extra: 207 / 190,
  14370. bottom: 0.05
  14371. }
  14372. },
  14373. },
  14374. [
  14375. {
  14376. name: "Normal",
  14377. height: math.unit(10 + 9 / 12, "feet"),
  14378. default: true
  14379. },
  14380. ]
  14381. ))
  14382. characterMakers.push(() => makeCharacter(
  14383. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14384. {
  14385. anthro: {
  14386. height: math.unit(9 + 6 / 12, "feet"),
  14387. weight: math.unit(298, "lb"),
  14388. name: "Anthro",
  14389. image: {
  14390. source: "./media/characters/frifna/anthro.svg",
  14391. extra: 282 / 269,
  14392. bottom: 0.015
  14393. }
  14394. },
  14395. feral: {
  14396. height: math.unit(16 + 2 / 12, "feet"),
  14397. weight: math.unit(624, "lb"),
  14398. name: "Feral",
  14399. image: {
  14400. source: "./media/characters/frifna/feral.svg"
  14401. }
  14402. },
  14403. },
  14404. [
  14405. {
  14406. name: "Normal",
  14407. height: math.unit(9 + 6 / 12, "feet"),
  14408. default: true
  14409. },
  14410. ]
  14411. ))
  14412. characterMakers.push(() => makeCharacter(
  14413. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14414. {
  14415. front: {
  14416. height: math.unit(6 + 2 / 12, "feet"),
  14417. weight: math.unit(168, "lb"),
  14418. name: "Front",
  14419. image: {
  14420. source: "./media/characters/elise/front.svg",
  14421. extra: 276 / 271
  14422. }
  14423. },
  14424. },
  14425. [
  14426. {
  14427. name: "Normal",
  14428. height: math.unit(6 + 2 / 12, "feet"),
  14429. default: true
  14430. },
  14431. ]
  14432. ))
  14433. characterMakers.push(() => makeCharacter(
  14434. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14435. {
  14436. front: {
  14437. height: math.unit(5 + 10 / 12, "feet"),
  14438. weight: math.unit(210, "lb"),
  14439. name: "Front",
  14440. image: {
  14441. source: "./media/characters/glade/front.svg",
  14442. extra: 258 / 247,
  14443. bottom: 0.008
  14444. }
  14445. },
  14446. },
  14447. [
  14448. {
  14449. name: "Normal",
  14450. height: math.unit(5 + 10 / 12, "feet"),
  14451. default: true
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14457. {
  14458. front: {
  14459. height: math.unit(5 + 10 / 12, "feet"),
  14460. weight: math.unit(129, "lb"),
  14461. name: "Front",
  14462. image: {
  14463. source: "./media/characters/rina/front.svg",
  14464. extra: 266 / 255,
  14465. bottom: 0.005
  14466. }
  14467. },
  14468. },
  14469. [
  14470. {
  14471. name: "Normal",
  14472. height: math.unit(5 + 10 / 12, "feet"),
  14473. default: true
  14474. },
  14475. ]
  14476. ))
  14477. characterMakers.push(() => makeCharacter(
  14478. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14479. {
  14480. front: {
  14481. height: math.unit(6 + 1 / 12, "feet"),
  14482. weight: math.unit(192, "lb"),
  14483. name: "Front",
  14484. image: {
  14485. source: "./media/characters/veronica/front.svg",
  14486. extra: 319 / 309,
  14487. bottom: 0.005
  14488. }
  14489. },
  14490. },
  14491. [
  14492. {
  14493. name: "Normal",
  14494. height: math.unit(6 + 1 / 12, "feet"),
  14495. default: true
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14501. {
  14502. front: {
  14503. height: math.unit(9 + 3 / 12, "feet"),
  14504. weight: math.unit(1100, "lb"),
  14505. name: "Front",
  14506. image: {
  14507. source: "./media/characters/braxton/front.svg",
  14508. extra: 1057 / 984,
  14509. bottom: 0.05
  14510. }
  14511. },
  14512. },
  14513. [
  14514. {
  14515. name: "Normal",
  14516. height: math.unit(9 + 3 / 12, "feet")
  14517. },
  14518. {
  14519. name: "Giant",
  14520. height: math.unit(300, "feet"),
  14521. default: true
  14522. },
  14523. {
  14524. name: "Macro",
  14525. height: math.unit(700, "feet")
  14526. },
  14527. {
  14528. name: "Megamacro",
  14529. height: math.unit(6000, "feet")
  14530. },
  14531. ]
  14532. ))
  14533. characterMakers.push(() => makeCharacter(
  14534. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14535. {
  14536. front: {
  14537. height: math.unit(6 + 7 / 12, "feet"),
  14538. weight: math.unit(150, "lb"),
  14539. name: "Front",
  14540. image: {
  14541. source: "./media/characters/blue-feyonics/front.svg",
  14542. extra: 1403 / 1306,
  14543. bottom: 0.047
  14544. }
  14545. },
  14546. },
  14547. [
  14548. {
  14549. name: "Normal",
  14550. height: math.unit(6 + 7 / 12, "feet"),
  14551. default: true
  14552. },
  14553. ]
  14554. ))
  14555. characterMakers.push(() => makeCharacter(
  14556. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14557. {
  14558. front: {
  14559. height: math.unit(1.8, "meters"),
  14560. weight: math.unit(60, "kg"),
  14561. name: "Front",
  14562. image: {
  14563. source: "./media/characters/maxwell/front.svg",
  14564. extra: 2060 / 1873
  14565. }
  14566. },
  14567. },
  14568. [
  14569. {
  14570. name: "Micro",
  14571. height: math.unit(1, "mm")
  14572. },
  14573. {
  14574. name: "Normal",
  14575. height: math.unit(1.8, "meter"),
  14576. default: true
  14577. },
  14578. {
  14579. name: "Macro",
  14580. height: math.unit(30, "meters")
  14581. },
  14582. {
  14583. name: "Megamacro",
  14584. height: math.unit(10, "km")
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14590. {
  14591. front: {
  14592. height: math.unit(6, "feet"),
  14593. weight: math.unit(150, "lb"),
  14594. name: "Front",
  14595. image: {
  14596. source: "./media/characters/jack/front.svg",
  14597. extra: 1754 / 1640,
  14598. bottom: 0.01
  14599. }
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Normal",
  14605. height: math.unit(80000, "feet"),
  14606. default: true
  14607. },
  14608. {
  14609. name: "Max size",
  14610. height: math.unit(10, "lightyears")
  14611. },
  14612. ]
  14613. ))
  14614. characterMakers.push(() => makeCharacter(
  14615. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14616. {
  14617. upright: {
  14618. height: math.unit(7, "feet"),
  14619. weight: math.unit(170, "lb"),
  14620. name: "Upright",
  14621. image: {
  14622. source: "./media/characters/cafat/upright.svg",
  14623. bottom: 0.01
  14624. }
  14625. },
  14626. uprightFull: {
  14627. height: math.unit(7, "feet"),
  14628. weight: math.unit(170, "lb"),
  14629. name: "Upright (Full)",
  14630. image: {
  14631. source: "./media/characters/cafat/upright-full.svg",
  14632. bottom: 0.01
  14633. }
  14634. },
  14635. side: {
  14636. height: math.unit(5, "feet"),
  14637. weight: math.unit(150, "lb"),
  14638. name: "Side",
  14639. image: {
  14640. source: "./media/characters/cafat/side.svg"
  14641. }
  14642. },
  14643. },
  14644. [
  14645. {
  14646. name: "Small",
  14647. height: math.unit(7, "feet"),
  14648. default: true
  14649. },
  14650. {
  14651. name: "Large",
  14652. height: math.unit(15.5, "feet")
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14658. {
  14659. front: {
  14660. height: math.unit(6, "feet"),
  14661. weight: math.unit(150, "lb"),
  14662. name: "Front",
  14663. image: {
  14664. source: "./media/characters/verin-raharra/front.svg",
  14665. extra: 5019 / 4835,
  14666. bottom: 0.023
  14667. }
  14668. },
  14669. },
  14670. [
  14671. {
  14672. name: "Normal",
  14673. height: math.unit(7 + 5 / 12, "feet"),
  14674. default: true
  14675. },
  14676. {
  14677. name: "Upsized",
  14678. height: math.unit(20, "feet")
  14679. },
  14680. ]
  14681. ))
  14682. characterMakers.push(() => makeCharacter(
  14683. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14684. {
  14685. front: {
  14686. height: math.unit(7, "feet"),
  14687. weight: math.unit(230, "lb"),
  14688. name: "Front",
  14689. image: {
  14690. source: "./media/characters/nakata/front.svg",
  14691. extra: 1.005,
  14692. bottom: 0.01
  14693. }
  14694. },
  14695. },
  14696. [
  14697. {
  14698. name: "Normal",
  14699. height: math.unit(7, "feet"),
  14700. default: true
  14701. },
  14702. {
  14703. name: "Big",
  14704. height: math.unit(14, "feet")
  14705. },
  14706. {
  14707. name: "Macro",
  14708. height: math.unit(400, "feet")
  14709. },
  14710. ]
  14711. ))
  14712. characterMakers.push(() => makeCharacter(
  14713. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14714. {
  14715. front: {
  14716. height: math.unit(4.91, "feet"),
  14717. weight: math.unit(100, "lb"),
  14718. name: "Front",
  14719. image: {
  14720. source: "./media/characters/lily/front.svg",
  14721. extra: 1585 / 1415,
  14722. bottom: 0.02
  14723. }
  14724. },
  14725. },
  14726. [
  14727. {
  14728. name: "Normal",
  14729. height: math.unit(4.91, "feet"),
  14730. default: true
  14731. },
  14732. ]
  14733. ))
  14734. characterMakers.push(() => makeCharacter(
  14735. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14736. {
  14737. laying: {
  14738. height: math.unit(4 + 4 / 12, "feet"),
  14739. weight: math.unit(600, "lb"),
  14740. name: "Laying",
  14741. image: {
  14742. source: "./media/characters/sheila/laying.svg",
  14743. extra: 1333 / 1265,
  14744. bottom: 0.16
  14745. }
  14746. },
  14747. },
  14748. [
  14749. {
  14750. name: "Normal",
  14751. height: math.unit(4 + 4 / 12, "feet"),
  14752. default: true
  14753. },
  14754. ]
  14755. ))
  14756. characterMakers.push(() => makeCharacter(
  14757. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14758. {
  14759. front: {
  14760. height: math.unit(6, "feet"),
  14761. weight: math.unit(190, "lb"),
  14762. name: "Front",
  14763. image: {
  14764. source: "./media/characters/sax/front.svg",
  14765. extra: 1187 / 973,
  14766. bottom: 0.042
  14767. }
  14768. },
  14769. },
  14770. [
  14771. {
  14772. name: "Micro",
  14773. height: math.unit(4, "inches"),
  14774. default: true
  14775. },
  14776. ]
  14777. ))
  14778. characterMakers.push(() => makeCharacter(
  14779. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14780. {
  14781. front: {
  14782. height: math.unit(6, "feet"),
  14783. weight: math.unit(150, "lb"),
  14784. name: "Front",
  14785. image: {
  14786. source: "./media/characters/pandora/front.svg",
  14787. extra: 2720 / 2556,
  14788. bottom: 0.015
  14789. }
  14790. },
  14791. back: {
  14792. height: math.unit(6, "feet"),
  14793. weight: math.unit(150, "lb"),
  14794. name: "Back",
  14795. image: {
  14796. source: "./media/characters/pandora/back.svg",
  14797. extra: 2720 / 2556,
  14798. bottom: 0.01
  14799. }
  14800. },
  14801. beans: {
  14802. height: math.unit(6 / 8, "feet"),
  14803. name: "Beans",
  14804. image: {
  14805. source: "./media/characters/pandora/beans.svg"
  14806. }
  14807. },
  14808. skirt: {
  14809. height: math.unit(6, "feet"),
  14810. weight: math.unit(150, "lb"),
  14811. name: "Skirt",
  14812. image: {
  14813. source: "./media/characters/pandora/skirt.svg",
  14814. extra: 1622 / 1525,
  14815. bottom: 0.015
  14816. }
  14817. },
  14818. hoodie: {
  14819. height: math.unit(6, "feet"),
  14820. weight: math.unit(150, "lb"),
  14821. name: "Hoodie",
  14822. image: {
  14823. source: "./media/characters/pandora/hoodie.svg",
  14824. extra: 1622 / 1525,
  14825. bottom: 0.015
  14826. }
  14827. },
  14828. casual: {
  14829. height: math.unit(6, "feet"),
  14830. weight: math.unit(150, "lb"),
  14831. name: "Casual",
  14832. image: {
  14833. source: "./media/characters/pandora/casual.svg",
  14834. extra: 1622 / 1525,
  14835. bottom: 0.015
  14836. }
  14837. },
  14838. },
  14839. [
  14840. {
  14841. name: "Normal",
  14842. height: math.unit(6, "feet")
  14843. },
  14844. {
  14845. name: "Big Steppy",
  14846. height: math.unit(1, "km"),
  14847. default: true
  14848. },
  14849. ]
  14850. ))
  14851. characterMakers.push(() => makeCharacter(
  14852. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  14853. {
  14854. side: {
  14855. height: math.unit(10, "feet"),
  14856. weight: math.unit(800, "kg"),
  14857. name: "Side",
  14858. image: {
  14859. source: "./media/characters/venio-darcony/side.svg",
  14860. extra: 1373 / 1003,
  14861. bottom: 0.037
  14862. }
  14863. },
  14864. front: {
  14865. height: math.unit(19, "feet"),
  14866. weight: math.unit(800, "kg"),
  14867. name: "Front",
  14868. image: {
  14869. source: "./media/characters/venio-darcony/front.svg"
  14870. }
  14871. },
  14872. back: {
  14873. height: math.unit(19, "feet"),
  14874. weight: math.unit(800, "kg"),
  14875. name: "Back",
  14876. image: {
  14877. source: "./media/characters/venio-darcony/back.svg"
  14878. }
  14879. },
  14880. sideNsfw: {
  14881. height: math.unit(10, "feet"),
  14882. weight: math.unit(800, "kg"),
  14883. name: "Side (NSFW)",
  14884. image: {
  14885. source: "./media/characters/venio-darcony/side-nsfw.svg",
  14886. extra: 1373 / 1003,
  14887. bottom: 0.037
  14888. }
  14889. },
  14890. frontNsfw: {
  14891. height: math.unit(19, "feet"),
  14892. weight: math.unit(800, "kg"),
  14893. name: "Front (NSFW)",
  14894. image: {
  14895. source: "./media/characters/venio-darcony/front-nsfw.svg"
  14896. }
  14897. },
  14898. backNsfw: {
  14899. height: math.unit(19, "feet"),
  14900. weight: math.unit(800, "kg"),
  14901. name: "Back (NSFW)",
  14902. image: {
  14903. source: "./media/characters/venio-darcony/back-nsfw.svg"
  14904. }
  14905. },
  14906. sideArmored: {
  14907. height: math.unit(10, "feet"),
  14908. weight: math.unit(800, "kg"),
  14909. name: "Side (Armored)",
  14910. image: {
  14911. source: "./media/characters/venio-darcony/side-armored.svg",
  14912. extra: 1373 / 1003,
  14913. bottom: 0.037
  14914. }
  14915. },
  14916. frontArmored: {
  14917. height: math.unit(19, "feet"),
  14918. weight: math.unit(900, "kg"),
  14919. name: "Front (Armored)",
  14920. image: {
  14921. source: "./media/characters/venio-darcony/front-armored.svg"
  14922. }
  14923. },
  14924. backArmored: {
  14925. height: math.unit(19, "feet"),
  14926. weight: math.unit(900, "kg"),
  14927. name: "Back (Armored)",
  14928. image: {
  14929. source: "./media/characters/venio-darcony/back-armored.svg"
  14930. }
  14931. },
  14932. sword: {
  14933. height: math.unit(10, "feet"),
  14934. weight: math.unit(50, "lb"),
  14935. name: "Sword",
  14936. image: {
  14937. source: "./media/characters/venio-darcony/sword.svg"
  14938. }
  14939. },
  14940. },
  14941. [
  14942. {
  14943. name: "Normal",
  14944. height: math.unit(10, "feet")
  14945. },
  14946. {
  14947. name: "Macro",
  14948. height: math.unit(130, "feet"),
  14949. default: true
  14950. },
  14951. {
  14952. name: "Macro+",
  14953. height: math.unit(240, "feet")
  14954. },
  14955. ]
  14956. ))
  14957. characterMakers.push(() => makeCharacter(
  14958. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  14959. {
  14960. front: {
  14961. height: math.unit(6, "feet"),
  14962. weight: math.unit(150, "lb"),
  14963. name: "Front",
  14964. image: {
  14965. source: "./media/characters/veski/front.svg",
  14966. extra: 1299 / 1225,
  14967. bottom: 0.04
  14968. }
  14969. },
  14970. back: {
  14971. height: math.unit(6, "feet"),
  14972. weight: math.unit(150, "lb"),
  14973. name: "Back",
  14974. image: {
  14975. source: "./media/characters/veski/back.svg",
  14976. extra: 1299 / 1225,
  14977. bottom: 0.008
  14978. }
  14979. },
  14980. maw: {
  14981. height: math.unit(1.5 * 1.21, "feet"),
  14982. name: "Maw",
  14983. image: {
  14984. source: "./media/characters/veski/maw.svg"
  14985. }
  14986. },
  14987. },
  14988. [
  14989. {
  14990. name: "Macro",
  14991. height: math.unit(2, "km"),
  14992. default: true
  14993. },
  14994. ]
  14995. ))
  14996. characterMakers.push(() => makeCharacter(
  14997. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  14998. {
  14999. front: {
  15000. height: math.unit(5 + 7 / 12, "feet"),
  15001. name: "Front",
  15002. image: {
  15003. source: "./media/characters/isabelle/front.svg",
  15004. extra: 2130 / 1976,
  15005. bottom: 0.05
  15006. }
  15007. },
  15008. },
  15009. [
  15010. {
  15011. name: "Supermicro",
  15012. height: math.unit(10, "micrometers")
  15013. },
  15014. {
  15015. name: "Micro",
  15016. height: math.unit(1, "inch")
  15017. },
  15018. {
  15019. name: "Tiny",
  15020. height: math.unit(5, "inches")
  15021. },
  15022. {
  15023. name: "Standard",
  15024. height: math.unit(5 + 7 / 12, "inches")
  15025. },
  15026. {
  15027. name: "Macro",
  15028. height: math.unit(80, "meters"),
  15029. default: true
  15030. },
  15031. {
  15032. name: "Megamacro",
  15033. height: math.unit(250, "meters")
  15034. },
  15035. {
  15036. name: "Gigamacro",
  15037. height: math.unit(5, "km")
  15038. },
  15039. {
  15040. name: "Cosmic",
  15041. height: math.unit(2.5e6, "miles")
  15042. },
  15043. ]
  15044. ))
  15045. characterMakers.push(() => makeCharacter(
  15046. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15047. {
  15048. front: {
  15049. height: math.unit(6, "feet"),
  15050. weight: math.unit(150, "lb"),
  15051. name: "Front",
  15052. image: {
  15053. source: "./media/characters/hanzo/front.svg",
  15054. extra: 374 / 344,
  15055. bottom: 0.02
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "Normal",
  15062. height: math.unit(8, "feet"),
  15063. default: true
  15064. },
  15065. ]
  15066. ))
  15067. characterMakers.push(() => makeCharacter(
  15068. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15069. {
  15070. front: {
  15071. height: math.unit(7, "feet"),
  15072. weight: math.unit(130, "lb"),
  15073. name: "Front",
  15074. image: {
  15075. source: "./media/characters/anna/front.svg",
  15076. extra: 169 / 145,
  15077. bottom: 0.06
  15078. }
  15079. },
  15080. full: {
  15081. height: math.unit(4.96, "feet"),
  15082. weight: math.unit(220, "lb"),
  15083. name: "Full",
  15084. image: {
  15085. source: "./media/characters/anna/full.svg",
  15086. extra: 138 / 114,
  15087. bottom: 0.15
  15088. }
  15089. },
  15090. tongue: {
  15091. height: math.unit(2.53, "feet"),
  15092. name: "Tongue",
  15093. image: {
  15094. source: "./media/characters/anna/tongue.svg"
  15095. }
  15096. },
  15097. },
  15098. [
  15099. {
  15100. name: "Normal",
  15101. height: math.unit(7, "feet"),
  15102. default: true
  15103. },
  15104. ]
  15105. ))
  15106. characterMakers.push(() => makeCharacter(
  15107. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15108. {
  15109. front: {
  15110. height: math.unit(7, "feet"),
  15111. weight: math.unit(150, "lb"),
  15112. name: "Front",
  15113. image: {
  15114. source: "./media/characters/ian-corvid/front.svg",
  15115. extra: 150 / 142,
  15116. bottom: 0.02
  15117. }
  15118. },
  15119. back: {
  15120. height: math.unit(7, "feet"),
  15121. weight: math.unit(150, "lb"),
  15122. name: "Back",
  15123. image: {
  15124. source: "./media/characters/ian-corvid/back.svg",
  15125. extra: 150 / 143,
  15126. bottom: 0.01
  15127. }
  15128. },
  15129. stomping: {
  15130. height: math.unit(7, "feet"),
  15131. weight: math.unit(150, "lb"),
  15132. name: "Stomping",
  15133. image: {
  15134. source: "./media/characters/ian-corvid/stomping.svg",
  15135. extra: 76 / 72
  15136. }
  15137. },
  15138. sitting: {
  15139. height: math.unit(7 / 1.8, "feet"),
  15140. weight: math.unit(150, "lb"),
  15141. name: "Sitting",
  15142. image: {
  15143. source: "./media/characters/ian-corvid/sitting.svg",
  15144. extra: 1400 / 1269,
  15145. bottom: 0.15
  15146. }
  15147. },
  15148. },
  15149. [
  15150. {
  15151. name: "Tiny Microw",
  15152. height: math.unit(1, "inch")
  15153. },
  15154. {
  15155. name: "Microw",
  15156. height: math.unit(6, "inches")
  15157. },
  15158. {
  15159. name: "Crow",
  15160. height: math.unit(7 + 1 / 12, "feet"),
  15161. default: true
  15162. },
  15163. {
  15164. name: "Macrow",
  15165. height: math.unit(176, "feet")
  15166. },
  15167. ]
  15168. ))
  15169. characterMakers.push(() => makeCharacter(
  15170. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15171. {
  15172. front: {
  15173. height: math.unit(5 + 7 / 12, "feet"),
  15174. weight: math.unit(147, "lb"),
  15175. name: "Front",
  15176. image: {
  15177. source: "./media/characters/natalie-kellon/front.svg",
  15178. extra: 1214 / 1141,
  15179. bottom: 0.02
  15180. }
  15181. },
  15182. },
  15183. [
  15184. {
  15185. name: "Micro",
  15186. height: math.unit(1 / 16, "inch")
  15187. },
  15188. {
  15189. name: "Tiny",
  15190. height: math.unit(4, "inches")
  15191. },
  15192. {
  15193. name: "Normal",
  15194. height: math.unit(5 + 7 / 12, "feet"),
  15195. default: true
  15196. },
  15197. {
  15198. name: "Amazon",
  15199. height: math.unit(12, "feet")
  15200. },
  15201. {
  15202. name: "Giantess",
  15203. height: math.unit(160, "meters")
  15204. },
  15205. {
  15206. name: "Titaness",
  15207. height: math.unit(800, "meters")
  15208. },
  15209. ]
  15210. ))
  15211. characterMakers.push(() => makeCharacter(
  15212. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15213. {
  15214. front: {
  15215. height: math.unit(6, "feet"),
  15216. weight: math.unit(150, "lb"),
  15217. name: "Front",
  15218. image: {
  15219. source: "./media/characters/alluria/front.svg",
  15220. extra: 806 / 738,
  15221. bottom: 0.01
  15222. }
  15223. },
  15224. side: {
  15225. height: math.unit(6, "feet"),
  15226. weight: math.unit(150, "lb"),
  15227. name: "Side",
  15228. image: {
  15229. source: "./media/characters/alluria/side.svg",
  15230. extra: 800 / 750,
  15231. }
  15232. },
  15233. back: {
  15234. height: math.unit(6, "feet"),
  15235. weight: math.unit(150, "lb"),
  15236. name: "Back",
  15237. image: {
  15238. source: "./media/characters/alluria/back.svg",
  15239. extra: 806 / 738,
  15240. }
  15241. },
  15242. frontMaid: {
  15243. height: math.unit(6, "feet"),
  15244. weight: math.unit(150, "lb"),
  15245. name: "Front (Maid)",
  15246. image: {
  15247. source: "./media/characters/alluria/front-maid.svg",
  15248. extra: 806 / 738,
  15249. bottom: 0.01
  15250. }
  15251. },
  15252. sideMaid: {
  15253. height: math.unit(6, "feet"),
  15254. weight: math.unit(150, "lb"),
  15255. name: "Side (Maid)",
  15256. image: {
  15257. source: "./media/characters/alluria/side-maid.svg",
  15258. extra: 800 / 750,
  15259. bottom: 0.005
  15260. }
  15261. },
  15262. backMaid: {
  15263. height: math.unit(6, "feet"),
  15264. weight: math.unit(150, "lb"),
  15265. name: "Back (Maid)",
  15266. image: {
  15267. source: "./media/characters/alluria/back-maid.svg",
  15268. extra: 806 / 738,
  15269. }
  15270. },
  15271. },
  15272. [
  15273. {
  15274. name: "Micro",
  15275. height: math.unit(6, "inches"),
  15276. default: true
  15277. },
  15278. ]
  15279. ))
  15280. characterMakers.push(() => makeCharacter(
  15281. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15282. {
  15283. front: {
  15284. height: math.unit(6, "feet"),
  15285. weight: math.unit(150, "lb"),
  15286. name: "Front",
  15287. image: {
  15288. source: "./media/characters/kyle/front.svg",
  15289. extra: 1069 / 962,
  15290. bottom: 77.228 / 1727.45
  15291. }
  15292. },
  15293. },
  15294. [
  15295. {
  15296. name: "Macro",
  15297. height: math.unit(150, "feet"),
  15298. default: true
  15299. },
  15300. ]
  15301. ))
  15302. characterMakers.push(() => makeCharacter(
  15303. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15304. {
  15305. front: {
  15306. height: math.unit(6, "feet"),
  15307. weight: math.unit(300, "lb"),
  15308. name: "Front",
  15309. image: {
  15310. source: "./media/characters/duncan/front.svg",
  15311. extra: 1650 / 1482,
  15312. bottom: 0.05
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Macro",
  15319. height: math.unit(100, "feet"),
  15320. default: true
  15321. },
  15322. ]
  15323. ))
  15324. characterMakers.push(() => makeCharacter(
  15325. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15326. {
  15327. front: {
  15328. height: math.unit(5 + 4 / 12, "feet"),
  15329. weight: math.unit(220, "lb"),
  15330. name: "Front",
  15331. image: {
  15332. source: "./media/characters/memory/front.svg",
  15333. extra: 3641 / 3545,
  15334. bottom: 0.03
  15335. }
  15336. },
  15337. back: {
  15338. height: math.unit(5 + 4 / 12, "feet"),
  15339. weight: math.unit(220, "lb"),
  15340. name: "Back",
  15341. image: {
  15342. source: "./media/characters/memory/back.svg",
  15343. extra: 3641 / 3545,
  15344. bottom: 0.025
  15345. }
  15346. },
  15347. frontSkirt: {
  15348. height: math.unit(5 + 4 / 12, "feet"),
  15349. weight: math.unit(220, "lb"),
  15350. name: "Front (Skirt)",
  15351. image: {
  15352. source: "./media/characters/memory/front-skirt.svg",
  15353. extra: 3641 / 3545,
  15354. bottom: 0.03
  15355. }
  15356. },
  15357. frontDress: {
  15358. height: math.unit(5 + 4 / 12, "feet"),
  15359. weight: math.unit(220, "lb"),
  15360. name: "Front (Dress)",
  15361. image: {
  15362. source: "./media/characters/memory/front-dress.svg",
  15363. extra: 3641 / 3545,
  15364. bottom: 0.03
  15365. }
  15366. },
  15367. },
  15368. [
  15369. {
  15370. name: "Micro",
  15371. height: math.unit(6, "inches"),
  15372. default: true
  15373. },
  15374. {
  15375. name: "Normal",
  15376. height: math.unit(5 + 4 / 12, "feet")
  15377. },
  15378. ]
  15379. ))
  15380. characterMakers.push(() => makeCharacter(
  15381. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15382. {
  15383. front: {
  15384. height: math.unit(4 + 11 / 12, "feet"),
  15385. weight: math.unit(100, "lb"),
  15386. name: "Front",
  15387. image: {
  15388. source: "./media/characters/luno/front.svg",
  15389. extra: 1535 / 1487,
  15390. bottom: 0.03
  15391. }
  15392. },
  15393. },
  15394. [
  15395. {
  15396. name: "Micro",
  15397. height: math.unit(3, "inches")
  15398. },
  15399. {
  15400. name: "Normal",
  15401. height: math.unit(4 + 11 / 12, "feet"),
  15402. default: true
  15403. },
  15404. {
  15405. name: "Macro",
  15406. height: math.unit(300, "feet")
  15407. },
  15408. {
  15409. name: "Megamacro",
  15410. height: math.unit(700, "miles")
  15411. },
  15412. ]
  15413. ))
  15414. characterMakers.push(() => makeCharacter(
  15415. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15416. {
  15417. front: {
  15418. height: math.unit(6 + 2 / 12, "feet"),
  15419. weight: math.unit(170, "lb"),
  15420. name: "Front",
  15421. image: {
  15422. source: "./media/characters/jamesy/front.svg",
  15423. extra: 440 / 382,
  15424. bottom: 0.005
  15425. }
  15426. },
  15427. },
  15428. [
  15429. {
  15430. name: "Micro",
  15431. height: math.unit(3, "inches")
  15432. },
  15433. {
  15434. name: "Normal",
  15435. height: math.unit(6 + 2 / 12, "feet"),
  15436. default: true
  15437. },
  15438. {
  15439. name: "Macro",
  15440. height: math.unit(300, "feet")
  15441. },
  15442. {
  15443. name: "Megamacro",
  15444. height: math.unit(700, "miles")
  15445. },
  15446. ]
  15447. ))
  15448. characterMakers.push(() => makeCharacter(
  15449. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15450. {
  15451. front: {
  15452. height: math.unit(6, "feet"),
  15453. weight: math.unit(160, "lb"),
  15454. name: "Front",
  15455. image: {
  15456. source: "./media/characters/mark/front.svg",
  15457. extra: 3300 / 3100,
  15458. bottom: 136.42 / 3440.47
  15459. }
  15460. },
  15461. },
  15462. [
  15463. {
  15464. name: "Macro",
  15465. height: math.unit(120, "meters")
  15466. },
  15467. {
  15468. name: "Bigger Macro",
  15469. height: math.unit(350, "meters")
  15470. },
  15471. {
  15472. name: "Megamacro",
  15473. height: math.unit(8, "km"),
  15474. default: true
  15475. },
  15476. {
  15477. name: "Continental",
  15478. height: math.unit(4550, "km")
  15479. },
  15480. {
  15481. name: "Planetary",
  15482. height: math.unit(65000, "km")
  15483. },
  15484. ]
  15485. ))
  15486. characterMakers.push(() => makeCharacter(
  15487. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15488. {
  15489. front: {
  15490. height: math.unit(6, "feet"),
  15491. weight: math.unit(400, "lb"),
  15492. name: "Front",
  15493. image: {
  15494. source: "./media/characters/mac/front.svg",
  15495. extra: 1048 / 987.7,
  15496. bottom: 60 / 1107.6,
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Macro",
  15503. height: math.unit(500, "feet"),
  15504. default: true
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15510. {
  15511. front: {
  15512. height: math.unit(5 + 2 / 12, "feet"),
  15513. weight: math.unit(190, "lb"),
  15514. name: "Front",
  15515. image: {
  15516. source: "./media/characters/bari/front.svg",
  15517. extra: 3156 / 2880,
  15518. bottom: 0.03
  15519. }
  15520. },
  15521. back: {
  15522. height: math.unit(5 + 2 / 12, "feet"),
  15523. weight: math.unit(190, "lb"),
  15524. name: "Back",
  15525. image: {
  15526. source: "./media/characters/bari/back.svg",
  15527. extra: 3260 / 2834,
  15528. bottom: 0.025
  15529. }
  15530. },
  15531. frontPlush: {
  15532. height: math.unit(5 + 2 / 12, "feet"),
  15533. weight: math.unit(190, "lb"),
  15534. name: "Front (Plush)",
  15535. image: {
  15536. source: "./media/characters/bari/front-plush.svg",
  15537. extra: 1112 / 1061,
  15538. bottom: 0.002
  15539. }
  15540. },
  15541. },
  15542. [
  15543. {
  15544. name: "Micro",
  15545. height: math.unit(3, "inches")
  15546. },
  15547. {
  15548. name: "Normal",
  15549. height: math.unit(5 + 2 / 12, "feet"),
  15550. default: true
  15551. },
  15552. {
  15553. name: "Macro",
  15554. height: math.unit(20, "feet")
  15555. },
  15556. ]
  15557. ))
  15558. characterMakers.push(() => makeCharacter(
  15559. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15560. {
  15561. front: {
  15562. height: math.unit(6 + 1 / 12, "feet"),
  15563. weight: math.unit(275, "lb"),
  15564. name: "Front",
  15565. image: {
  15566. source: "./media/characters/hunter-misha-raven/front.svg"
  15567. }
  15568. },
  15569. },
  15570. [
  15571. {
  15572. name: "Mortal",
  15573. height: math.unit(6 + 1 / 12, "feet")
  15574. },
  15575. {
  15576. name: "Divine",
  15577. height: math.unit(1.12134e34, "parsecs"),
  15578. default: true
  15579. },
  15580. ]
  15581. ))
  15582. characterMakers.push(() => makeCharacter(
  15583. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15584. {
  15585. front: {
  15586. height: math.unit(6 + 3 / 12, "feet"),
  15587. weight: math.unit(220, "lb"),
  15588. name: "Front",
  15589. image: {
  15590. source: "./media/characters/max-calore/front.svg",
  15591. extra: 1700 / 1648,
  15592. bottom: 0.01
  15593. }
  15594. },
  15595. back: {
  15596. height: math.unit(6 + 3 / 12, "feet"),
  15597. weight: math.unit(220, "lb"),
  15598. name: "Back",
  15599. image: {
  15600. source: "./media/characters/max-calore/back.svg",
  15601. extra: 1700 / 1648,
  15602. bottom: 0.01
  15603. }
  15604. },
  15605. },
  15606. [
  15607. {
  15608. name: "Normal",
  15609. height: math.unit(6 + 3 / 12, "feet"),
  15610. default: true
  15611. },
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15616. {
  15617. side: {
  15618. height: math.unit(2 + 8 / 12, "feet"),
  15619. weight: math.unit(99, "lb"),
  15620. name: "Side",
  15621. image: {
  15622. source: "./media/characters/aspen/side.svg",
  15623. extra: 152 / 138,
  15624. bottom: 0.032
  15625. }
  15626. },
  15627. },
  15628. [
  15629. {
  15630. name: "Normal",
  15631. height: math.unit(2 + 8 / 12, "feet"),
  15632. default: true
  15633. },
  15634. ]
  15635. ))
  15636. characterMakers.push(() => makeCharacter(
  15637. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"]},
  15638. {
  15639. side: {
  15640. height: math.unit(3 + 2 / 12, "feet"),
  15641. weight: math.unit(224, "lb"),
  15642. name: "Side",
  15643. image: {
  15644. source: "./media/characters/sheila-feral-wolf/side.svg",
  15645. extra: 179 / 166,
  15646. bottom: 0.03
  15647. }
  15648. },
  15649. },
  15650. [
  15651. {
  15652. name: "Normal",
  15653. height: math.unit(3 + 2 / 12, "feet"),
  15654. default: true
  15655. },
  15656. ]
  15657. ))
  15658. characterMakers.push(() => makeCharacter(
  15659. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15660. {
  15661. side: {
  15662. height: math.unit(1 + 9 / 12, "feet"),
  15663. weight: math.unit(38, "lb"),
  15664. name: "Side",
  15665. image: {
  15666. source: "./media/characters/michelle/side.svg",
  15667. extra: 147 / 136.7,
  15668. bottom: 0.03
  15669. }
  15670. },
  15671. },
  15672. [
  15673. {
  15674. name: "Normal",
  15675. height: math.unit(1 + 9 / 12, "feet"),
  15676. default: true
  15677. },
  15678. ]
  15679. ))
  15680. characterMakers.push(() => makeCharacter(
  15681. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15682. {
  15683. front: {
  15684. height: math.unit(1 + 1 / 12, "feet"),
  15685. weight: math.unit(18, "lb"),
  15686. name: "Front",
  15687. image: {
  15688. source: "./media/characters/nino/front.svg"
  15689. }
  15690. },
  15691. },
  15692. [
  15693. {
  15694. name: "Normal",
  15695. height: math.unit(1 + 1 / 12, "feet"),
  15696. default: true
  15697. },
  15698. ]
  15699. ))
  15700. characterMakers.push(() => makeCharacter(
  15701. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15702. {
  15703. front: {
  15704. height: math.unit(1, "feet"),
  15705. weight: math.unit(16, "lb"),
  15706. name: "Front",
  15707. image: {
  15708. source: "./media/characters/viola/front.svg"
  15709. }
  15710. },
  15711. },
  15712. [
  15713. {
  15714. name: "Normal",
  15715. height: math.unit(1, "feet"),
  15716. default: true
  15717. },
  15718. ]
  15719. ))
  15720. characterMakers.push(() => makeCharacter(
  15721. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15722. {
  15723. front: {
  15724. height: math.unit(6 + 5 / 12, "feet"),
  15725. weight: math.unit(580, "lb"),
  15726. name: "Front",
  15727. image: {
  15728. source: "./media/characters/atlas/front.svg",
  15729. extra: 298.5 / 290,
  15730. bottom: 0.015
  15731. }
  15732. },
  15733. },
  15734. [
  15735. {
  15736. name: "Normal",
  15737. height: math.unit(6 + 5 / 12, "feet"),
  15738. default: true
  15739. },
  15740. ]
  15741. ))
  15742. characterMakers.push(() => makeCharacter(
  15743. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15744. {
  15745. side: {
  15746. height: math.unit(1 + 10 / 12, "feet"),
  15747. weight: math.unit(25, "lb"),
  15748. name: "Side",
  15749. image: {
  15750. source: "./media/characters/davy/side.svg",
  15751. extra: 200 / 170,
  15752. bottom: 0.01
  15753. }
  15754. },
  15755. },
  15756. [
  15757. {
  15758. name: "Normal",
  15759. height: math.unit(1 + 10 / 12, "feet"),
  15760. default: true
  15761. },
  15762. ]
  15763. ))
  15764. characterMakers.push(() => makeCharacter(
  15765. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15766. {
  15767. side: {
  15768. height: math.unit(4 + 8 / 12, "feet"),
  15769. weight: math.unit(166, "lb"),
  15770. name: "Side",
  15771. image: {
  15772. source: "./media/characters/fiona/side.svg",
  15773. extra: 232 / 220,
  15774. bottom: 0.03
  15775. }
  15776. },
  15777. },
  15778. [
  15779. {
  15780. name: "Normal",
  15781. height: math.unit(4 + 8 / 12, "feet"),
  15782. default: true
  15783. },
  15784. ]
  15785. ))
  15786. characterMakers.push(() => makeCharacter(
  15787. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  15788. {
  15789. front: {
  15790. height: math.unit(2, "feet"),
  15791. weight: math.unit(62, "lb"),
  15792. name: "Front",
  15793. image: {
  15794. source: "./media/characters/lyla/front.svg",
  15795. bottom: 0.1
  15796. }
  15797. },
  15798. },
  15799. [
  15800. {
  15801. name: "Normal",
  15802. height: math.unit(2, "feet"),
  15803. default: true
  15804. },
  15805. ]
  15806. ))
  15807. characterMakers.push(() => makeCharacter(
  15808. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  15809. {
  15810. side: {
  15811. height: math.unit(1.8, "feet"),
  15812. weight: math.unit(44, "lb"),
  15813. name: "Side",
  15814. image: {
  15815. source: "./media/characters/perseus/side.svg",
  15816. bottom: 0.21
  15817. }
  15818. },
  15819. },
  15820. [
  15821. {
  15822. name: "Normal",
  15823. height: math.unit(1.8, "feet"),
  15824. default: true
  15825. },
  15826. ]
  15827. ))
  15828. characterMakers.push(() => makeCharacter(
  15829. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  15830. {
  15831. side: {
  15832. height: math.unit(4 + 2 / 12, "feet"),
  15833. weight: math.unit(20, "lb"),
  15834. name: "Side",
  15835. image: {
  15836. source: "./media/characters/remus/side.svg"
  15837. }
  15838. },
  15839. },
  15840. [
  15841. {
  15842. name: "Normal",
  15843. height: math.unit(4 + 2 / 12, "feet"),
  15844. default: true
  15845. },
  15846. ]
  15847. ))
  15848. characterMakers.push(() => makeCharacter(
  15849. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  15850. {
  15851. front: {
  15852. height: math.unit(4 + 11 / 12, "feet"),
  15853. weight: math.unit(114, "lb"),
  15854. name: "Front",
  15855. image: {
  15856. source: "./media/characters/raf/front.svg",
  15857. bottom: 0.01
  15858. }
  15859. },
  15860. side: {
  15861. height: math.unit(4 + 11 / 12, "feet"),
  15862. weight: math.unit(114, "lb"),
  15863. name: "Side",
  15864. image: {
  15865. source: "./media/characters/raf/side.svg",
  15866. bottom: 0.005
  15867. }
  15868. },
  15869. },
  15870. [
  15871. {
  15872. name: "Micro",
  15873. height: math.unit(2, "inches")
  15874. },
  15875. {
  15876. name: "Normal",
  15877. height: math.unit(4 + 11 / 12, "feet"),
  15878. default: true
  15879. },
  15880. {
  15881. name: "Macro",
  15882. height: math.unit(70, "feet")
  15883. },
  15884. ]
  15885. ))
  15886. characterMakers.push(() => makeCharacter(
  15887. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  15888. {
  15889. front: {
  15890. height: math.unit(1.5, "meters"),
  15891. weight: math.unit(68, "kg"),
  15892. name: "Front",
  15893. image: {
  15894. source: "./media/characters/liam-einarr/front.svg",
  15895. extra: 2822 / 2666
  15896. }
  15897. },
  15898. back: {
  15899. height: math.unit(1.5, "meters"),
  15900. weight: math.unit(68, "kg"),
  15901. name: "Back",
  15902. image: {
  15903. source: "./media/characters/liam-einarr/back.svg",
  15904. extra: 2822 / 2666,
  15905. bottom: 0.015
  15906. }
  15907. },
  15908. },
  15909. [
  15910. {
  15911. name: "Normal",
  15912. height: math.unit(1.5, "meters"),
  15913. default: true
  15914. },
  15915. {
  15916. name: "Macro",
  15917. height: math.unit(150, "meters")
  15918. },
  15919. {
  15920. name: "Megamacro",
  15921. height: math.unit(35, "km")
  15922. },
  15923. ]
  15924. ))
  15925. characterMakers.push(() => makeCharacter(
  15926. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  15927. {
  15928. front: {
  15929. height: math.unit(6, "feet"),
  15930. weight: math.unit(75, "kg"),
  15931. name: "Front",
  15932. image: {
  15933. source: "./media/characters/linda/front.svg",
  15934. extra: 930 / 874,
  15935. bottom: 0.004
  15936. }
  15937. },
  15938. },
  15939. [
  15940. {
  15941. name: "Normal",
  15942. height: math.unit(6, "feet"),
  15943. default: true
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  15949. {
  15950. front: {
  15951. height: math.unit(6 + 8 / 12, "feet"),
  15952. weight: math.unit(220, "lb"),
  15953. name: "Front",
  15954. image: {
  15955. source: "./media/characters/caylex/front.svg",
  15956. extra: 821 / 772,
  15957. bottom: 0.07
  15958. }
  15959. },
  15960. back: {
  15961. height: math.unit(6 + 8 / 12, "feet"),
  15962. weight: math.unit(220, "lb"),
  15963. name: "Back",
  15964. image: {
  15965. source: "./media/characters/caylex/back.svg",
  15966. extra: 821 / 772,
  15967. bottom: 0.022
  15968. }
  15969. },
  15970. hand: {
  15971. height: math.unit(1.25, "feet"),
  15972. name: "Hand",
  15973. image: {
  15974. source: "./media/characters/caylex/hand.svg"
  15975. }
  15976. },
  15977. foot: {
  15978. height: math.unit(1.6, "feet"),
  15979. name: "Foot",
  15980. image: {
  15981. source: "./media/characters/caylex/foot.svg"
  15982. }
  15983. },
  15984. armored: {
  15985. height: math.unit(6 + 8 / 12, "feet"),
  15986. weight: math.unit(250, "lb"),
  15987. name: "Armored",
  15988. image: {
  15989. source: "./media/characters/caylex/armored.svg",
  15990. extra: 1420 / 1310,
  15991. bottom: 0.045
  15992. }
  15993. },
  15994. },
  15995. [
  15996. {
  15997. name: "Normal",
  15998. height: math.unit(6 + 8 / 12, "feet"),
  15999. default: true
  16000. },
  16001. {
  16002. name: "Normal+",
  16003. height: math.unit(12, "feet")
  16004. },
  16005. ]
  16006. ))
  16007. characterMakers.push(() => makeCharacter(
  16008. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16009. {
  16010. front: {
  16011. height: math.unit(7 + 6 / 12, "feet"),
  16012. weight: math.unit(288, "lb"),
  16013. name: "Front",
  16014. image: {
  16015. source: "./media/characters/alana/front.svg",
  16016. extra: 679 / 653,
  16017. bottom: 22.5 / 701
  16018. }
  16019. },
  16020. },
  16021. [
  16022. {
  16023. name: "Normal",
  16024. height: math.unit(7 + 6 / 12, "feet")
  16025. },
  16026. {
  16027. name: "Large",
  16028. height: math.unit(50, "feet")
  16029. },
  16030. {
  16031. name: "Macro",
  16032. height: math.unit(100, "feet"),
  16033. default: true
  16034. },
  16035. {
  16036. name: "Macro+",
  16037. height: math.unit(200, "feet")
  16038. },
  16039. ]
  16040. ))
  16041. characterMakers.push(() => makeCharacter(
  16042. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16043. {
  16044. front: {
  16045. height: math.unit(6 + 1 / 12, "feet"),
  16046. weight: math.unit(210, "lb"),
  16047. name: "Front",
  16048. image: {
  16049. source: "./media/characters/hasani/front.svg",
  16050. extra: 244 / 232,
  16051. bottom: 0.01
  16052. }
  16053. },
  16054. back: {
  16055. height: math.unit(6 + 1 / 12, "feet"),
  16056. weight: math.unit(210, "lb"),
  16057. name: "Back",
  16058. image: {
  16059. source: "./media/characters/hasani/back.svg",
  16060. extra: 244 / 232,
  16061. bottom: 0.01
  16062. }
  16063. },
  16064. },
  16065. [
  16066. {
  16067. name: "Normal",
  16068. height: math.unit(6 + 1 / 12, "feet")
  16069. },
  16070. {
  16071. name: "Macro",
  16072. height: math.unit(175, "feet"),
  16073. default: true
  16074. },
  16075. ]
  16076. ))
  16077. characterMakers.push(() => makeCharacter(
  16078. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16079. {
  16080. front: {
  16081. height: math.unit(1.82, "meters"),
  16082. weight: math.unit(140, "lb"),
  16083. name: "Front",
  16084. image: {
  16085. source: "./media/characters/nita/front.svg",
  16086. extra: 2473 / 2363,
  16087. bottom: 0.01
  16088. }
  16089. },
  16090. },
  16091. [
  16092. {
  16093. name: "Normal",
  16094. height: math.unit(1.82, "m")
  16095. },
  16096. {
  16097. name: "Macro",
  16098. height: math.unit(300, "m")
  16099. },
  16100. {
  16101. name: "Mistake Canon",
  16102. height: math.unit(0.5, "miles"),
  16103. default: true
  16104. },
  16105. {
  16106. name: "Big Mistake",
  16107. height: math.unit(13, "miles")
  16108. },
  16109. {
  16110. name: "Playing God",
  16111. height: math.unit(2450, "miles")
  16112. },
  16113. ]
  16114. ))
  16115. characterMakers.push(() => makeCharacter(
  16116. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16117. {
  16118. front: {
  16119. height: math.unit(4, "feet"),
  16120. weight: math.unit(120, "lb"),
  16121. name: "Front",
  16122. image: {
  16123. source: "./media/characters/shiriko/front.svg",
  16124. extra: 195 / 188
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Normal",
  16131. height: math.unit(4, "feet"),
  16132. default: true
  16133. },
  16134. ]
  16135. ))
  16136. characterMakers.push(() => makeCharacter(
  16137. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16138. {
  16139. front: {
  16140. height: math.unit(6, "feet"),
  16141. name: "front",
  16142. image: {
  16143. source: "./media/characters/deja/front.svg",
  16144. extra: 926 / 840,
  16145. bottom: 0.07
  16146. }
  16147. },
  16148. },
  16149. [
  16150. {
  16151. name: "Planck Length",
  16152. height: math.unit(1.6e-35, "meters")
  16153. },
  16154. {
  16155. name: "Normal",
  16156. height: math.unit(30.48, "meters"),
  16157. default: true
  16158. },
  16159. {
  16160. name: "Universal",
  16161. height: math.unit(8.8e26, "meters")
  16162. },
  16163. ]
  16164. ))
  16165. characterMakers.push(() => makeCharacter(
  16166. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16167. {
  16168. side: {
  16169. height: math.unit(8, "feet"),
  16170. weight: math.unit(6300, "lb"),
  16171. name: "Side",
  16172. image: {
  16173. source: "./media/characters/anima/side.svg",
  16174. bottom: 0.035
  16175. }
  16176. },
  16177. },
  16178. [
  16179. {
  16180. name: "Normal",
  16181. height: math.unit(8, "feet"),
  16182. default: true
  16183. },
  16184. ]
  16185. ))
  16186. characterMakers.push(() => makeCharacter(
  16187. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16188. {
  16189. front: {
  16190. height: math.unit(8, "feet"),
  16191. weight: math.unit(350, "lb"),
  16192. name: "Front",
  16193. image: {
  16194. source: "./media/characters/bianca/front.svg",
  16195. extra: 234 / 225,
  16196. bottom: 0.03
  16197. }
  16198. },
  16199. },
  16200. [
  16201. {
  16202. name: "Normal",
  16203. height: math.unit(8, "feet"),
  16204. default: true
  16205. },
  16206. ]
  16207. ))
  16208. characterMakers.push(() => makeCharacter(
  16209. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16210. {
  16211. front: {
  16212. height: math.unit(6, "feet"),
  16213. weight: math.unit(150, "lb"),
  16214. name: "Front",
  16215. image: {
  16216. source: "./media/characters/adinia/front.svg",
  16217. extra: 1845 / 1672,
  16218. bottom: 0.02
  16219. }
  16220. },
  16221. back: {
  16222. height: math.unit(6, "feet"),
  16223. weight: math.unit(150, "lb"),
  16224. name: "Back",
  16225. image: {
  16226. source: "./media/characters/adinia/back.svg",
  16227. extra: 1845 / 1672,
  16228. bottom: 0.002
  16229. }
  16230. },
  16231. },
  16232. [
  16233. {
  16234. name: "Normal",
  16235. height: math.unit(11 + 5 / 12, "feet"),
  16236. default: true
  16237. },
  16238. ]
  16239. ))
  16240. characterMakers.push(() => makeCharacter(
  16241. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16242. {
  16243. front: {
  16244. height: math.unit(3, "meters"),
  16245. weight: math.unit(200, "kg"),
  16246. name: "Front",
  16247. image: {
  16248. source: "./media/characters/lykasa/front.svg",
  16249. extra: 1076 / 976,
  16250. bottom: 0.06
  16251. }
  16252. },
  16253. },
  16254. [
  16255. {
  16256. name: "Normal",
  16257. height: math.unit(3, "meters")
  16258. },
  16259. {
  16260. name: "Kaiju",
  16261. height: math.unit(120, "meters"),
  16262. default: true
  16263. },
  16264. {
  16265. name: "Mega Kaiju",
  16266. height: math.unit(240, "km")
  16267. },
  16268. {
  16269. name: "Giga Kaiju",
  16270. height: math.unit(400, "megameters")
  16271. },
  16272. {
  16273. name: "Tera Kaiju",
  16274. height: math.unit(800, "gigameters")
  16275. },
  16276. {
  16277. name: "Kaiju Dragon Goddess",
  16278. height: math.unit(26, "zettaparsecs")
  16279. },
  16280. ]
  16281. ))
  16282. characterMakers.push(() => makeCharacter(
  16283. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16284. {
  16285. side: {
  16286. height: math.unit(283 / 124 * 6, "feet"),
  16287. weight: math.unit(35000, "lb"),
  16288. name: "Side",
  16289. image: {
  16290. source: "./media/characters/malfaren/side.svg",
  16291. extra: 2500 / 1010,
  16292. bottom: 0.01
  16293. }
  16294. },
  16295. front: {
  16296. height: math.unit(22.36, "feet"),
  16297. weight: math.unit(35000, "lb"),
  16298. name: "Front",
  16299. image: {
  16300. source: "./media/characters/malfaren/front.svg",
  16301. extra: 1631 / 1476,
  16302. bottom: 0.01
  16303. }
  16304. },
  16305. maw: {
  16306. height: math.unit(6.9, "feet"),
  16307. name: "Maw",
  16308. image: {
  16309. source: "./media/characters/malfaren/maw.svg"
  16310. }
  16311. },
  16312. },
  16313. [
  16314. {
  16315. name: "Big",
  16316. height: math.unit(283 / 162 * 6, "feet"),
  16317. },
  16318. {
  16319. name: "Bigger",
  16320. height: math.unit(283 / 124 * 6, "feet")
  16321. },
  16322. {
  16323. name: "Massive",
  16324. height: math.unit(283 / 92 * 6, "feet"),
  16325. default: true
  16326. },
  16327. {
  16328. name: "👀💦",
  16329. height: math.unit(283 / 73 * 6, "feet"),
  16330. },
  16331. ]
  16332. ))
  16333. characterMakers.push(() => makeCharacter(
  16334. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16335. {
  16336. front: {
  16337. height: math.unit(1.7, "m"),
  16338. weight: math.unit(70, "kg"),
  16339. name: "Front",
  16340. image: {
  16341. source: "./media/characters/kernel/front.svg",
  16342. extra: 222 / 210,
  16343. bottom: 0.007
  16344. }
  16345. },
  16346. },
  16347. [
  16348. {
  16349. name: "Nano",
  16350. height: math.unit(17, "micrometers")
  16351. },
  16352. {
  16353. name: "Micro",
  16354. height: math.unit(1.7, "mm")
  16355. },
  16356. {
  16357. name: "Small",
  16358. height: math.unit(1.7, "cm")
  16359. },
  16360. {
  16361. name: "Normal",
  16362. height: math.unit(1.7, "m"),
  16363. default: true
  16364. },
  16365. ]
  16366. ))
  16367. characterMakers.push(() => makeCharacter(
  16368. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16369. {
  16370. front: {
  16371. height: math.unit(1.75, "meters"),
  16372. weight: math.unit(65, "kg"),
  16373. name: "Front",
  16374. image: {
  16375. source: "./media/characters/jayne-folest/front.svg",
  16376. extra: 2115 / 2007,
  16377. bottom: 0.02
  16378. }
  16379. },
  16380. back: {
  16381. height: math.unit(1.75, "meters"),
  16382. weight: math.unit(65, "kg"),
  16383. name: "Back",
  16384. image: {
  16385. source: "./media/characters/jayne-folest/back.svg",
  16386. extra: 2115 / 2007,
  16387. bottom: 0.005
  16388. }
  16389. },
  16390. frontClothed: {
  16391. height: math.unit(1.75, "meters"),
  16392. weight: math.unit(65, "kg"),
  16393. name: "Front (Clothed)",
  16394. image: {
  16395. source: "./media/characters/jayne-folest/front-clothed.svg",
  16396. extra: 2115 / 2007,
  16397. bottom: 0.035
  16398. }
  16399. },
  16400. hand: {
  16401. height: math.unit(1 / 1.260, "feet"),
  16402. name: "Hand",
  16403. image: {
  16404. source: "./media/characters/jayne-folest/hand.svg"
  16405. }
  16406. },
  16407. foot: {
  16408. height: math.unit(1 / 0.918, "feet"),
  16409. name: "Foot",
  16410. image: {
  16411. source: "./media/characters/jayne-folest/foot.svg"
  16412. }
  16413. },
  16414. },
  16415. [
  16416. {
  16417. name: "Micro",
  16418. height: math.unit(4, "cm")
  16419. },
  16420. {
  16421. name: "Normal",
  16422. height: math.unit(1.75, "meters")
  16423. },
  16424. {
  16425. name: "Macro",
  16426. height: math.unit(47.5, "meters"),
  16427. default: true
  16428. },
  16429. ]
  16430. ))
  16431. characterMakers.push(() => makeCharacter(
  16432. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16433. {
  16434. front: {
  16435. height: math.unit(180, "cm"),
  16436. weight: math.unit(70, "kg"),
  16437. name: "Front",
  16438. image: {
  16439. source: "./media/characters/algier/front.svg",
  16440. extra: 596 / 572,
  16441. bottom: 0.04
  16442. }
  16443. },
  16444. back: {
  16445. height: math.unit(180, "cm"),
  16446. weight: math.unit(70, "kg"),
  16447. name: "Back",
  16448. image: {
  16449. source: "./media/characters/algier/back.svg",
  16450. extra: 596 / 572,
  16451. bottom: 0.025
  16452. }
  16453. },
  16454. frontdressed: {
  16455. height: math.unit(180, "cm"),
  16456. weight: math.unit(150, "kg"),
  16457. name: "Front-dressed",
  16458. image: {
  16459. source: "./media/characters/algier/front-dressed.svg",
  16460. extra: 596 / 572,
  16461. bottom: 0.038
  16462. }
  16463. },
  16464. },
  16465. [
  16466. {
  16467. name: "Micro",
  16468. height: math.unit(5, "cm")
  16469. },
  16470. {
  16471. name: "Normal",
  16472. height: math.unit(180, "cm"),
  16473. default: true
  16474. },
  16475. {
  16476. name: "Macro",
  16477. height: math.unit(64, "m")
  16478. },
  16479. ]
  16480. ))
  16481. characterMakers.push(() => makeCharacter(
  16482. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16483. {
  16484. upright: {
  16485. height: math.unit(7, "feet"),
  16486. weight: math.unit(300, "lb"),
  16487. name: "Upright",
  16488. image: {
  16489. source: "./media/characters/pretzel/upright.svg",
  16490. extra: 534 / 522,
  16491. bottom: 0.065
  16492. }
  16493. },
  16494. sprawling: {
  16495. height: math.unit(3.75, "feet"),
  16496. weight: math.unit(300, "lb"),
  16497. name: "Sprawling",
  16498. image: {
  16499. source: "./media/characters/pretzel/sprawling.svg",
  16500. extra: 314 / 281,
  16501. bottom: 0.1
  16502. }
  16503. },
  16504. tongue: {
  16505. height: math.unit(2, "feet"),
  16506. name: "Tongue",
  16507. image: {
  16508. source: "./media/characters/pretzel/tongue.svg"
  16509. }
  16510. },
  16511. },
  16512. [
  16513. {
  16514. name: "Normal",
  16515. height: math.unit(7, "feet"),
  16516. default: true
  16517. },
  16518. {
  16519. name: "Oversized",
  16520. height: math.unit(15, "feet")
  16521. },
  16522. {
  16523. name: "Huge",
  16524. height: math.unit(30, "feet")
  16525. },
  16526. {
  16527. name: "Macro",
  16528. height: math.unit(250, "feet")
  16529. },
  16530. ]
  16531. ))
  16532. characterMakers.push(() => makeCharacter(
  16533. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16534. {
  16535. sideFront: {
  16536. height: math.unit(5 + 2 / 12, "feet"),
  16537. weight: math.unit(120, "lb"),
  16538. name: "Front Side",
  16539. image: {
  16540. source: "./media/characters/roxi/side-front.svg",
  16541. extra: 2924 / 2717,
  16542. bottom: 0.08
  16543. }
  16544. },
  16545. sideBack: {
  16546. height: math.unit(5 + 2 / 12, "feet"),
  16547. weight: math.unit(120, "lb"),
  16548. name: "Back Side",
  16549. image: {
  16550. source: "./media/characters/roxi/side-back.svg",
  16551. extra: 2904 / 2693,
  16552. bottom: 0.06
  16553. }
  16554. },
  16555. front: {
  16556. height: math.unit(5 + 2 / 12, "feet"),
  16557. weight: math.unit(120, "lb"),
  16558. name: "Front",
  16559. image: {
  16560. source: "./media/characters/roxi/front.svg",
  16561. extra: 2028 / 1907,
  16562. bottom: 0.01
  16563. }
  16564. },
  16565. frontAlt: {
  16566. height: math.unit(5 + 2 / 12, "feet"),
  16567. weight: math.unit(120, "lb"),
  16568. name: "Front (Alt)",
  16569. image: {
  16570. source: "./media/characters/roxi/front-alt.svg",
  16571. extra: 1828 / 1798,
  16572. bottom: 0.01
  16573. }
  16574. },
  16575. sitting: {
  16576. height: math.unit(2.8, "feet"),
  16577. weight: math.unit(120, "lb"),
  16578. name: "Sitting",
  16579. image: {
  16580. source: "./media/characters/roxi/sitting.svg",
  16581. extra: 2660 / 2462,
  16582. bottom: 0.1
  16583. }
  16584. },
  16585. },
  16586. [
  16587. {
  16588. name: "Normal",
  16589. height: math.unit(5 + 2 / 12, "feet"),
  16590. default: true
  16591. },
  16592. ]
  16593. ))
  16594. characterMakers.push(() => makeCharacter(
  16595. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16596. {
  16597. side: {
  16598. height: math.unit(55, "feet"),
  16599. weight: math.unit(153, "tons"),
  16600. name: "Side",
  16601. image: {
  16602. source: "./media/characters/shadow/side.svg",
  16603. extra: 701 / 628,
  16604. bottom: 0.02
  16605. }
  16606. },
  16607. flying: {
  16608. height: math.unit(145, "feet"),
  16609. weight: math.unit(153, "tons"),
  16610. name: "Flying",
  16611. image: {
  16612. source: "./media/characters/shadow/flying.svg"
  16613. }
  16614. },
  16615. },
  16616. [
  16617. {
  16618. name: "Normal",
  16619. height: math.unit(55, "feet"),
  16620. default: true
  16621. },
  16622. ]
  16623. ))
  16624. characterMakers.push(() => makeCharacter(
  16625. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16626. {
  16627. front: {
  16628. height: math.unit(6, "feet"),
  16629. weight: math.unit(200, "lb"),
  16630. name: "Front",
  16631. image: {
  16632. source: "./media/characters/marcie/front.svg",
  16633. extra: 960 / 876,
  16634. bottom: 58 / 1017.87
  16635. }
  16636. },
  16637. },
  16638. [
  16639. {
  16640. name: "Macro",
  16641. height: math.unit(1, "mile"),
  16642. default: true
  16643. },
  16644. ]
  16645. ))
  16646. characterMakers.push(() => makeCharacter(
  16647. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16648. {
  16649. front: {
  16650. height: math.unit(7, "feet"),
  16651. weight: math.unit(200, "lb"),
  16652. name: "Front",
  16653. image: {
  16654. source: "./media/characters/kachina/front.svg",
  16655. extra: 1290.68 / 1119,
  16656. bottom: 36.5 / 1327.18
  16657. }
  16658. },
  16659. },
  16660. [
  16661. {
  16662. name: "Normal",
  16663. height: math.unit(7, "feet"),
  16664. default: true
  16665. },
  16666. ]
  16667. ))
  16668. characterMakers.push(() => makeCharacter(
  16669. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16670. {
  16671. looking: {
  16672. height: math.unit(2, "meters"),
  16673. weight: math.unit(300, "kg"),
  16674. name: "Looking",
  16675. image: {
  16676. source: "./media/characters/kash/looking.svg",
  16677. extra: 474 / 344,
  16678. bottom: 0.03
  16679. }
  16680. },
  16681. side: {
  16682. height: math.unit(2, "meters"),
  16683. weight: math.unit(300, "kg"),
  16684. name: "Side",
  16685. image: {
  16686. source: "./media/characters/kash/side.svg",
  16687. extra: 302 / 251,
  16688. bottom: 0.03
  16689. }
  16690. },
  16691. front: {
  16692. height: math.unit(2, "meters"),
  16693. weight: math.unit(300, "kg"),
  16694. name: "Front",
  16695. image: {
  16696. source: "./media/characters/kash/front.svg",
  16697. extra: 495 / 360,
  16698. bottom: 0.015
  16699. }
  16700. },
  16701. },
  16702. [
  16703. {
  16704. name: "Normal",
  16705. height: math.unit(2, "meters"),
  16706. default: true
  16707. },
  16708. {
  16709. name: "Big",
  16710. height: math.unit(3, "meters")
  16711. },
  16712. {
  16713. name: "Large",
  16714. height: math.unit(5, "meters")
  16715. },
  16716. ]
  16717. ))
  16718. characterMakers.push(() => makeCharacter(
  16719. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16720. {
  16721. feeding: {
  16722. height: math.unit(6.7, "feet"),
  16723. weight: math.unit(350, "lb"),
  16724. name: "Feeding",
  16725. image: {
  16726. source: "./media/characters/lalim/feeding.svg",
  16727. }
  16728. },
  16729. },
  16730. [
  16731. {
  16732. name: "Normal",
  16733. height: math.unit(6.7, "feet"),
  16734. default: true
  16735. },
  16736. ]
  16737. ))
  16738. characterMakers.push(() => makeCharacter(
  16739. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16740. {
  16741. front: {
  16742. height: math.unit(9.5, "feet"),
  16743. weight: math.unit(600, "lb"),
  16744. name: "Front",
  16745. image: {
  16746. source: "./media/characters/de'vout/front.svg",
  16747. extra: 1443 / 1328,
  16748. bottom: 0.025
  16749. }
  16750. },
  16751. back: {
  16752. height: math.unit(9.5, "feet"),
  16753. weight: math.unit(600, "lb"),
  16754. name: "Back",
  16755. image: {
  16756. source: "./media/characters/de'vout/back.svg",
  16757. extra: 1443 / 1328
  16758. }
  16759. },
  16760. frontDressed: {
  16761. height: math.unit(9.5, "feet"),
  16762. weight: math.unit(600, "lb"),
  16763. name: "Front (Dressed",
  16764. image: {
  16765. source: "./media/characters/de'vout/front-dressed.svg",
  16766. extra: 1443 / 1328,
  16767. bottom: 0.025
  16768. }
  16769. },
  16770. backDressed: {
  16771. height: math.unit(9.5, "feet"),
  16772. weight: math.unit(600, "lb"),
  16773. name: "Back (Dressed",
  16774. image: {
  16775. source: "./media/characters/de'vout/back-dressed.svg",
  16776. extra: 1443 / 1328
  16777. }
  16778. },
  16779. },
  16780. [
  16781. {
  16782. name: "Normal",
  16783. height: math.unit(9.5, "feet"),
  16784. default: true
  16785. },
  16786. ]
  16787. ))
  16788. characterMakers.push(() => makeCharacter(
  16789. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  16790. {
  16791. front: {
  16792. height: math.unit(8, "feet"),
  16793. weight: math.unit(225, "lb"),
  16794. name: "Front",
  16795. image: {
  16796. source: "./media/characters/talana/front.svg",
  16797. extra: 1410 / 1300,
  16798. bottom: 0.015
  16799. }
  16800. },
  16801. frontDressed: {
  16802. height: math.unit(8, "feet"),
  16803. weight: math.unit(225, "lb"),
  16804. name: "Front (Dressed",
  16805. image: {
  16806. source: "./media/characters/talana/front-dressed.svg",
  16807. extra: 1410 / 1300,
  16808. bottom: 0.015
  16809. }
  16810. },
  16811. },
  16812. [
  16813. {
  16814. name: "Normal",
  16815. height: math.unit(8, "feet"),
  16816. default: true
  16817. },
  16818. ]
  16819. ))
  16820. characterMakers.push(() => makeCharacter(
  16821. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  16822. {
  16823. side: {
  16824. height: math.unit(7.2, "feet"),
  16825. weight: math.unit(150, "lb"),
  16826. name: "Side",
  16827. image: {
  16828. source: "./media/characters/xeauvok/side.svg",
  16829. extra: 1975 / 1523,
  16830. bottom: 0.07
  16831. }
  16832. },
  16833. },
  16834. [
  16835. {
  16836. name: "Normal",
  16837. height: math.unit(7.2, "feet"),
  16838. default: true
  16839. },
  16840. ]
  16841. ))
  16842. characterMakers.push(() => makeCharacter(
  16843. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  16844. {
  16845. side: {
  16846. height: math.unit(10, "feet"),
  16847. weight: math.unit(900, "kg"),
  16848. name: "Side",
  16849. image: {
  16850. source: "./media/characters/zara/side.svg",
  16851. extra: 504 / 498
  16852. }
  16853. },
  16854. },
  16855. [
  16856. {
  16857. name: "Normal",
  16858. height: math.unit(10, "feet"),
  16859. default: true
  16860. },
  16861. ]
  16862. ))
  16863. characterMakers.push(() => makeCharacter(
  16864. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  16865. {
  16866. side: {
  16867. height: math.unit(6, "feet"),
  16868. weight: math.unit(150, "lb"),
  16869. name: "Side",
  16870. image: {
  16871. source: "./media/characters/richard-dragon/side.svg",
  16872. extra: 845 / 340,
  16873. bottom: 0.017
  16874. }
  16875. },
  16876. maw: {
  16877. height: math.unit(2.97, "feet"),
  16878. name: "Maw",
  16879. image: {
  16880. source: "./media/characters/richard-dragon/maw.svg"
  16881. }
  16882. },
  16883. },
  16884. [
  16885. ]
  16886. ))
  16887. characterMakers.push(() => makeCharacter(
  16888. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  16889. {
  16890. front: {
  16891. height: math.unit(4, "feet"),
  16892. weight: math.unit(100, "lb"),
  16893. name: "Front",
  16894. image: {
  16895. source: "./media/characters/richard-smeargle/front.svg",
  16896. extra: 2952 / 2820,
  16897. bottom: 0.028
  16898. }
  16899. },
  16900. },
  16901. [
  16902. {
  16903. name: "Normal",
  16904. height: math.unit(4, "feet"),
  16905. default: true
  16906. },
  16907. {
  16908. name: "Dynamax",
  16909. height: math.unit(20, "meters")
  16910. },
  16911. ]
  16912. ))
  16913. characterMakers.push(() => makeCharacter(
  16914. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  16915. {
  16916. front: {
  16917. height: math.unit(6, "feet"),
  16918. weight: math.unit(110, "lb"),
  16919. name: "Front",
  16920. image: {
  16921. source: "./media/characters/klay/front.svg",
  16922. extra: 962 / 883,
  16923. bottom: 0.04
  16924. }
  16925. },
  16926. back: {
  16927. height: math.unit(6, "feet"),
  16928. weight: math.unit(110, "lb"),
  16929. name: "Back",
  16930. image: {
  16931. source: "./media/characters/klay/back.svg",
  16932. extra: 962 / 883
  16933. }
  16934. },
  16935. beans: {
  16936. height: math.unit(1.15, "feet"),
  16937. name: "Beans",
  16938. image: {
  16939. source: "./media/characters/klay/beans.svg"
  16940. }
  16941. },
  16942. },
  16943. [
  16944. {
  16945. name: "Micro",
  16946. height: math.unit(6, "inches")
  16947. },
  16948. {
  16949. name: "Mini",
  16950. height: math.unit(3, "feet")
  16951. },
  16952. {
  16953. name: "Normal",
  16954. height: math.unit(6, "feet"),
  16955. default: true
  16956. },
  16957. {
  16958. name: "Big",
  16959. height: math.unit(25, "feet")
  16960. },
  16961. {
  16962. name: "Macro",
  16963. height: math.unit(100, "feet")
  16964. },
  16965. {
  16966. name: "Megamacro",
  16967. height: math.unit(400, "feet")
  16968. },
  16969. ]
  16970. ))
  16971. characterMakers.push(() => makeCharacter(
  16972. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  16973. {
  16974. front: {
  16975. height: math.unit(6, "feet"),
  16976. weight: math.unit(160, "lb"),
  16977. name: "Front",
  16978. image: {
  16979. source: "./media/characters/marcus/front.svg",
  16980. extra: 734 / 676,
  16981. bottom: 0.03
  16982. }
  16983. },
  16984. },
  16985. [
  16986. {
  16987. name: "Little",
  16988. height: math.unit(6, "feet")
  16989. },
  16990. {
  16991. name: "Normal",
  16992. height: math.unit(110, "feet"),
  16993. default: true
  16994. },
  16995. {
  16996. name: "Macro",
  16997. height: math.unit(250, "feet")
  16998. },
  16999. {
  17000. name: "Megamacro",
  17001. height: math.unit(1000, "feet")
  17002. },
  17003. ]
  17004. ))
  17005. characterMakers.push(() => makeCharacter(
  17006. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17007. {
  17008. front: {
  17009. height: math.unit(7, "feet"),
  17010. weight: math.unit(275, "lb"),
  17011. name: "Front",
  17012. image: {
  17013. source: "./media/characters/claude-delroute/front.svg",
  17014. extra: 230 / 214,
  17015. bottom: 0.007
  17016. }
  17017. },
  17018. side: {
  17019. height: math.unit(7, "feet"),
  17020. weight: math.unit(275, "lb"),
  17021. name: "Side",
  17022. image: {
  17023. source: "./media/characters/claude-delroute/side.svg",
  17024. extra: 222 / 214,
  17025. bottom: 0.01
  17026. }
  17027. },
  17028. back: {
  17029. height: math.unit(7, "feet"),
  17030. weight: math.unit(275, "lb"),
  17031. name: "Back",
  17032. image: {
  17033. source: "./media/characters/claude-delroute/back.svg",
  17034. extra: 230 / 214,
  17035. bottom: 0.015
  17036. }
  17037. },
  17038. maw: {
  17039. height: math.unit(0.6407, "meters"),
  17040. name: "Maw",
  17041. image: {
  17042. source: "./media/characters/claude-delroute/maw.svg"
  17043. }
  17044. },
  17045. },
  17046. [
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(7, "feet"),
  17050. default: true
  17051. },
  17052. {
  17053. name: "Lorge",
  17054. height: math.unit(20, "feet")
  17055. },
  17056. ]
  17057. ))
  17058. characterMakers.push(() => makeCharacter(
  17059. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17060. {
  17061. front: {
  17062. height: math.unit(8 + 4 / 12, "feet"),
  17063. weight: math.unit(600, "lb"),
  17064. name: "Front",
  17065. image: {
  17066. source: "./media/characters/dragonien/front.svg",
  17067. extra: 100 / 94,
  17068. bottom: 3.3 / 103.3445
  17069. }
  17070. },
  17071. back: {
  17072. height: math.unit(8 + 4 / 12, "feet"),
  17073. weight: math.unit(600, "lb"),
  17074. name: "Back",
  17075. image: {
  17076. source: "./media/characters/dragonien/back.svg",
  17077. extra: 776 / 746,
  17078. bottom: 6.4 / 782.0616
  17079. }
  17080. },
  17081. foot: {
  17082. height: math.unit(1.54, "feet"),
  17083. name: "Foot",
  17084. image: {
  17085. source: "./media/characters/dragonien/foot.svg",
  17086. }
  17087. },
  17088. },
  17089. [
  17090. {
  17091. name: "Normal",
  17092. height: math.unit(8 + 4 / 12, "feet"),
  17093. default: true
  17094. },
  17095. {
  17096. name: "Macro",
  17097. height: math.unit(200, "feet")
  17098. },
  17099. {
  17100. name: "Megamacro",
  17101. height: math.unit(1, "mile")
  17102. },
  17103. {
  17104. name: "Gigamacro",
  17105. height: math.unit(1000, "miles")
  17106. },
  17107. ]
  17108. ))
  17109. characterMakers.push(() => makeCharacter(
  17110. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17111. {
  17112. front: {
  17113. height: math.unit(5 + 2 / 12, "feet"),
  17114. weight: math.unit(110, "lb"),
  17115. name: "Front",
  17116. image: {
  17117. source: "./media/characters/desta/front.svg",
  17118. extra: 1482 / 1417
  17119. }
  17120. },
  17121. side: {
  17122. height: math.unit(5 + 2 / 12, "feet"),
  17123. weight: math.unit(110, "lb"),
  17124. name: "Side",
  17125. image: {
  17126. source: "./media/characters/desta/side.svg",
  17127. extra: 2579 / 2491,
  17128. bottom: 0.053
  17129. }
  17130. },
  17131. },
  17132. [
  17133. {
  17134. name: "Micro",
  17135. height: math.unit(6, "inches")
  17136. },
  17137. {
  17138. name: "Normal",
  17139. height: math.unit(5 + 2 / 12, "feet"),
  17140. default: true
  17141. },
  17142. {
  17143. name: "Macro",
  17144. height: math.unit(62, "feet")
  17145. },
  17146. {
  17147. name: "Megamacro",
  17148. height: math.unit(1800, "feet")
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17154. {
  17155. front: {
  17156. height: math.unit(10, "feet"),
  17157. weight: math.unit(700, "lb"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/storm-alystar/front.svg",
  17161. extra: 2112 / 1898,
  17162. bottom: 0.034
  17163. }
  17164. },
  17165. },
  17166. [
  17167. {
  17168. name: "Micro",
  17169. height: math.unit(3.5, "inches")
  17170. },
  17171. {
  17172. name: "Normal",
  17173. height: math.unit(10, "feet"),
  17174. default: true
  17175. },
  17176. {
  17177. name: "Macro",
  17178. height: math.unit(400, "feet")
  17179. },
  17180. {
  17181. name: "Deific",
  17182. height: math.unit(60, "miles")
  17183. },
  17184. ]
  17185. ))
  17186. characterMakers.push(() => makeCharacter(
  17187. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17188. {
  17189. front: {
  17190. height: math.unit(2.35, "meters"),
  17191. weight: math.unit(119, "kg"),
  17192. name: "Front",
  17193. image: {
  17194. source: "./media/characters/ilia/front.svg",
  17195. extra: 1285 / 1255,
  17196. bottom: 0.06
  17197. }
  17198. },
  17199. },
  17200. [
  17201. {
  17202. name: "Normal",
  17203. height: math.unit(2.35, "meters")
  17204. },
  17205. {
  17206. name: "Macro",
  17207. height: math.unit(140, "meters"),
  17208. default: true
  17209. },
  17210. {
  17211. name: "Megamacro",
  17212. height: math.unit(100, "miles")
  17213. },
  17214. ]
  17215. ))
  17216. characterMakers.push(() => makeCharacter(
  17217. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17218. {
  17219. front: {
  17220. height: math.unit(6 + 5 / 12, "feet"),
  17221. weight: math.unit(190, "lb"),
  17222. name: "Front",
  17223. image: {
  17224. source: "./media/characters/kingdead/front.svg",
  17225. extra: 1228 / 1177
  17226. }
  17227. },
  17228. },
  17229. [
  17230. {
  17231. name: "Micro",
  17232. height: math.unit(7, "inches")
  17233. },
  17234. {
  17235. name: "Normal",
  17236. height: math.unit(6 + 5 / 12, "feet")
  17237. },
  17238. {
  17239. name: "Macro",
  17240. height: math.unit(150, "feet"),
  17241. default: true
  17242. },
  17243. {
  17244. name: "Megamacro",
  17245. height: math.unit(200, "miles")
  17246. },
  17247. ]
  17248. ))
  17249. characterMakers.push(() => makeCharacter(
  17250. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17251. {
  17252. front: {
  17253. height: math.unit(8, "feet"),
  17254. weight: math.unit(600, "lb"),
  17255. name: "Front",
  17256. image: {
  17257. source: "./media/characters/kyrehx/front.svg",
  17258. extra: 1195 / 1095,
  17259. bottom: 0.034
  17260. }
  17261. },
  17262. },
  17263. [
  17264. {
  17265. name: "Micro",
  17266. height: math.unit(2, "inches")
  17267. },
  17268. {
  17269. name: "Normal",
  17270. height: math.unit(8, "feet"),
  17271. default: true
  17272. },
  17273. {
  17274. name: "Macro",
  17275. height: math.unit(255, "feet")
  17276. },
  17277. ]
  17278. ))
  17279. characterMakers.push(() => makeCharacter(
  17280. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17281. {
  17282. front: {
  17283. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17284. weight: math.unit(184, "lb"),
  17285. name: "Front",
  17286. image: {
  17287. source: "./media/characters/xang/front.svg",
  17288. extra: 845 / 755
  17289. }
  17290. },
  17291. },
  17292. [
  17293. {
  17294. name: "Normal",
  17295. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17296. default: true
  17297. },
  17298. {
  17299. name: "Macro",
  17300. height: math.unit(0.935 * 146, "feet")
  17301. },
  17302. {
  17303. name: "Megamacro",
  17304. height: math.unit(0.935 * 3, "miles")
  17305. },
  17306. ]
  17307. ))
  17308. characterMakers.push(() => makeCharacter(
  17309. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17310. {
  17311. frontDressed: {
  17312. height: math.unit(5 + 7 / 12, "feet"),
  17313. weight: math.unit(140, "lb"),
  17314. name: "Front (Dressed)",
  17315. image: {
  17316. source: "./media/characters/doc-weardno/front-dressed.svg",
  17317. extra: 263 / 234
  17318. }
  17319. },
  17320. backDressed: {
  17321. height: math.unit(5 + 7 / 12, "feet"),
  17322. weight: math.unit(140, "lb"),
  17323. name: "Back (Dressed)",
  17324. image: {
  17325. source: "./media/characters/doc-weardno/back-dressed.svg",
  17326. extra: 266 / 238
  17327. }
  17328. },
  17329. front: {
  17330. height: math.unit(5 + 7 / 12, "feet"),
  17331. weight: math.unit(140, "lb"),
  17332. name: "Front",
  17333. image: {
  17334. source: "./media/characters/doc-weardno/front.svg",
  17335. extra: 254 / 233
  17336. }
  17337. },
  17338. },
  17339. [
  17340. {
  17341. name: "Micro",
  17342. height: math.unit(3, "inches")
  17343. },
  17344. {
  17345. name: "Normal",
  17346. height: math.unit(5 + 7 / 12, "feet"),
  17347. default: true
  17348. },
  17349. {
  17350. name: "Macro",
  17351. height: math.unit(25, "feet")
  17352. },
  17353. {
  17354. name: "Megamacro",
  17355. height: math.unit(2, "miles")
  17356. },
  17357. ]
  17358. ))
  17359. characterMakers.push(() => makeCharacter(
  17360. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17361. {
  17362. front: {
  17363. height: math.unit(6 + 2 / 12, "feet"),
  17364. weight: math.unit(153, "lb"),
  17365. name: "Front",
  17366. image: {
  17367. source: "./media/characters/seth-whilst/front.svg",
  17368. bottom: 0.07
  17369. }
  17370. },
  17371. },
  17372. [
  17373. {
  17374. name: "Micro",
  17375. height: math.unit(5, "inches")
  17376. },
  17377. {
  17378. name: "Normal",
  17379. height: math.unit(6 + 2 / 12, "feet"),
  17380. default: true
  17381. },
  17382. ]
  17383. ))
  17384. characterMakers.push(() => makeCharacter(
  17385. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17386. {
  17387. front: {
  17388. height: math.unit(3, "inches"),
  17389. weight: math.unit(8, "grams"),
  17390. name: "Front",
  17391. image: {
  17392. source: "./media/characters/pocket-jabari/front.svg",
  17393. extra: 1024 / 974,
  17394. bottom: 0.039
  17395. }
  17396. },
  17397. },
  17398. [
  17399. {
  17400. name: "Minimicro",
  17401. height: math.unit(8, "mm")
  17402. },
  17403. {
  17404. name: "Micro",
  17405. height: math.unit(3, "inches"),
  17406. default: true
  17407. },
  17408. {
  17409. name: "Normal",
  17410. height: math.unit(3, "feet")
  17411. },
  17412. ]
  17413. ))
  17414. characterMakers.push(() => makeCharacter(
  17415. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17416. {
  17417. front: {
  17418. height: math.unit(15, "feet"),
  17419. weight: math.unit(3280, "lb"),
  17420. name: "Front",
  17421. image: {
  17422. source: "./media/characters/sapphy/front.svg",
  17423. extra: 671 / 577,
  17424. bottom: 0.085
  17425. }
  17426. },
  17427. back: {
  17428. height: math.unit(15, "feet"),
  17429. weight: math.unit(3280, "lb"),
  17430. name: "Back",
  17431. image: {
  17432. source: "./media/characters/sapphy/back.svg",
  17433. extra: 631 / 607,
  17434. bottom: 0.045
  17435. }
  17436. },
  17437. },
  17438. [
  17439. {
  17440. name: "Normal",
  17441. height: math.unit(15, "feet")
  17442. },
  17443. {
  17444. name: "Casual Macro",
  17445. height: math.unit(120, "feet")
  17446. },
  17447. {
  17448. name: "Macro",
  17449. height: math.unit(2150, "feet"),
  17450. default: true
  17451. },
  17452. {
  17453. name: "Megamacro",
  17454. height: math.unit(8, "miles")
  17455. },
  17456. {
  17457. name: "Galaxy Mom",
  17458. height: math.unit(6, "megalightyears")
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17464. {
  17465. front: {
  17466. height: math.unit(6, "feet"),
  17467. weight: math.unit(170, "lb"),
  17468. name: "Front",
  17469. image: {
  17470. source: "./media/characters/kiro/front.svg",
  17471. extra: 1064 / 1012,
  17472. bottom: 0.052
  17473. }
  17474. },
  17475. },
  17476. [
  17477. {
  17478. name: "Micro",
  17479. height: math.unit(6, "inches")
  17480. },
  17481. {
  17482. name: "Normal",
  17483. height: math.unit(6, "feet"),
  17484. default: true
  17485. },
  17486. {
  17487. name: "Macro",
  17488. height: math.unit(72, "feet")
  17489. },
  17490. ]
  17491. ))
  17492. characterMakers.push(() => makeCharacter(
  17493. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17494. {
  17495. front: {
  17496. height: math.unit(5 + 9 / 12, "feet"),
  17497. weight: math.unit(175, "lb"),
  17498. name: "Front",
  17499. image: {
  17500. source: "./media/characters/irishfox/front.svg",
  17501. extra: 1912 / 1680,
  17502. bottom: 0.02
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Nano",
  17509. height: math.unit(1, "mm")
  17510. },
  17511. {
  17512. name: "Micro",
  17513. height: math.unit(2, "inches")
  17514. },
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(5 + 9 / 12, "feet"),
  17518. default: true
  17519. },
  17520. {
  17521. name: "Macro",
  17522. height: math.unit(45, "feet")
  17523. },
  17524. ]
  17525. ))
  17526. characterMakers.push(() => makeCharacter(
  17527. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17528. {
  17529. front: {
  17530. height: math.unit(6 + 1 / 12, "feet"),
  17531. weight: math.unit(150, "lb"),
  17532. name: "Front",
  17533. image: {
  17534. source: "./media/characters/aronai-sieyes/front.svg",
  17535. extra: 1556 / 1480,
  17536. bottom: 0.015
  17537. }
  17538. },
  17539. side: {
  17540. height: math.unit(6 + 1 / 12, "feet"),
  17541. weight: math.unit(150, "lb"),
  17542. name: "Side",
  17543. image: {
  17544. source: "./media/characters/aronai-sieyes/side.svg",
  17545. extra: 1433 / 1390,
  17546. bottom: 0.0393
  17547. }
  17548. },
  17549. back: {
  17550. height: math.unit(6 + 1 / 12, "feet"),
  17551. weight: math.unit(150, "lb"),
  17552. name: "Back",
  17553. image: {
  17554. source: "./media/characters/aronai-sieyes/back.svg",
  17555. extra: 1544 / 1494,
  17556. bottom: 0.02
  17557. }
  17558. },
  17559. frontClothed: {
  17560. height: math.unit(6 + 1 / 12, "feet"),
  17561. weight: math.unit(150, "lb"),
  17562. name: "Front (Clothed)",
  17563. image: {
  17564. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17565. extra: 1582 / 1527
  17566. }
  17567. },
  17568. feral: {
  17569. height: math.unit(18, "feet"),
  17570. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17571. name: "Feral",
  17572. image: {
  17573. source: "./media/characters/aronai-sieyes/feral.svg",
  17574. extra: 1530 / 1240,
  17575. bottom: 0.035
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Micro",
  17582. height: math.unit(2, "inches")
  17583. },
  17584. {
  17585. name: "Normal",
  17586. height: math.unit(6 + 1 / 12, "feet"),
  17587. default: true
  17588. }
  17589. ]
  17590. ))
  17591. characterMakers.push(() => makeCharacter(
  17592. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17593. {
  17594. front: {
  17595. height: math.unit(12, "feet"),
  17596. weight: math.unit(410, "kg"),
  17597. name: "Front",
  17598. image: {
  17599. source: "./media/characters/xuna/front.svg",
  17600. extra: 2184 / 1980
  17601. }
  17602. },
  17603. side: {
  17604. height: math.unit(12, "feet"),
  17605. weight: math.unit(410, "kg"),
  17606. name: "Side",
  17607. image: {
  17608. source: "./media/characters/xuna/side.svg",
  17609. extra: 2184 / 1980
  17610. }
  17611. },
  17612. back: {
  17613. height: math.unit(12, "feet"),
  17614. weight: math.unit(410, "kg"),
  17615. name: "Back",
  17616. image: {
  17617. source: "./media/characters/xuna/back.svg",
  17618. extra: 2184 / 1980
  17619. }
  17620. },
  17621. },
  17622. [
  17623. {
  17624. name: "Nano glow",
  17625. height: math.unit(10, "nm")
  17626. },
  17627. {
  17628. name: "Micro floof",
  17629. height: math.unit(0.3, "m")
  17630. },
  17631. {
  17632. name: "Huggable softy boi",
  17633. height: math.unit(3.6576, "m"),
  17634. default: true
  17635. },
  17636. {
  17637. name: "Admirable floof",
  17638. height: math.unit(80, "meters")
  17639. },
  17640. {
  17641. name: "Gentle macro",
  17642. height: math.unit(300, "meters")
  17643. },
  17644. {
  17645. name: "Very careful floof",
  17646. height: math.unit(3200, "meters")
  17647. },
  17648. {
  17649. name: "The mega floof",
  17650. height: math.unit(36000, "meters")
  17651. },
  17652. {
  17653. name: "Giga-fur-Wicker",
  17654. height: math.unit(4800000, "meters")
  17655. },
  17656. {
  17657. name: "Licky world",
  17658. height: math.unit(20000000, "meters")
  17659. },
  17660. {
  17661. name: "Floofy cyan sun",
  17662. height: math.unit(1500000000, "meters")
  17663. },
  17664. {
  17665. name: "Milky Wicker",
  17666. height: math.unit(1000000000000000000000, "meters")
  17667. },
  17668. {
  17669. name: "The observing Wicker",
  17670. height: math.unit(999999999999999999999999999, "meters")
  17671. },
  17672. ]
  17673. ))
  17674. characterMakers.push(() => makeCharacter(
  17675. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17676. {
  17677. front: {
  17678. height: math.unit(5 + 9 / 12, "feet"),
  17679. weight: math.unit(150, "lb"),
  17680. name: "Front",
  17681. image: {
  17682. source: "./media/characters/arokha-sieyes/front.svg",
  17683. extra: 1425 / 1284,
  17684. bottom: 0.05
  17685. }
  17686. },
  17687. },
  17688. [
  17689. {
  17690. name: "Normal",
  17691. height: math.unit(5 + 9 / 12, "feet")
  17692. },
  17693. {
  17694. name: "Macro",
  17695. height: math.unit(30, "meters"),
  17696. default: true
  17697. },
  17698. ]
  17699. ))
  17700. characterMakers.push(() => makeCharacter(
  17701. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17702. {
  17703. front: {
  17704. height: math.unit(6, "feet"),
  17705. weight: math.unit(180, "lb"),
  17706. name: "Front",
  17707. image: {
  17708. source: "./media/characters/arokh-sieyes/front.svg",
  17709. extra: 1830 / 1769,
  17710. bottom: 0.01
  17711. }
  17712. },
  17713. },
  17714. [
  17715. {
  17716. name: "Normal",
  17717. height: math.unit(6, "feet")
  17718. },
  17719. {
  17720. name: "Macro",
  17721. height: math.unit(30, "meters"),
  17722. default: true
  17723. },
  17724. ]
  17725. ))
  17726. characterMakers.push(() => makeCharacter(
  17727. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17728. {
  17729. side: {
  17730. height: math.unit(13 + 1 / 12, "feet"),
  17731. weight: math.unit(8.5, "tonnes"),
  17732. name: "Side",
  17733. image: {
  17734. source: "./media/characters/goldeneye/side.svg",
  17735. extra: 1182 / 778,
  17736. bottom: 0.067
  17737. }
  17738. },
  17739. paw: {
  17740. height: math.unit(3.4, "feet"),
  17741. name: "Paw",
  17742. image: {
  17743. source: "./media/characters/goldeneye/paw.svg"
  17744. }
  17745. },
  17746. },
  17747. [
  17748. {
  17749. name: "Normal",
  17750. height: math.unit(13 + 1 / 12, "feet"),
  17751. default: true
  17752. },
  17753. ]
  17754. ))
  17755. characterMakers.push(() => makeCharacter(
  17756. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17757. {
  17758. front: {
  17759. height: math.unit(6 + 1 / 12, "feet"),
  17760. weight: math.unit(210, "lb"),
  17761. name: "Front",
  17762. image: {
  17763. source: "./media/characters/leonardo-lycheborne/front.svg",
  17764. extra: 390 / 365,
  17765. bottom: 0.032
  17766. }
  17767. },
  17768. side: {
  17769. height: math.unit(6 + 1 / 12, "feet"),
  17770. weight: math.unit(210, "lb"),
  17771. name: "Side",
  17772. image: {
  17773. source: "./media/characters/leonardo-lycheborne/side.svg",
  17774. extra: 390 / 365,
  17775. bottom: 0.005
  17776. }
  17777. },
  17778. back: {
  17779. height: math.unit(6 + 1 / 12, "feet"),
  17780. weight: math.unit(210, "lb"),
  17781. name: "Back",
  17782. image: {
  17783. source: "./media/characters/leonardo-lycheborne/back.svg",
  17784. extra: 392 / 366,
  17785. bottom: 0.01
  17786. }
  17787. },
  17788. hand: {
  17789. height: math.unit(1.08, "feet"),
  17790. name: "Hand",
  17791. image: {
  17792. source: "./media/characters/leonardo-lycheborne/hand.svg"
  17793. }
  17794. },
  17795. foot: {
  17796. height: math.unit(1.32, "feet"),
  17797. name: "Foot",
  17798. image: {
  17799. source: "./media/characters/leonardo-lycheborne/foot.svg"
  17800. }
  17801. },
  17802. were: {
  17803. height: math.unit(20, "feet"),
  17804. weight: math.unit(7800, "lb"),
  17805. name: "Were",
  17806. image: {
  17807. source: "./media/characters/leonardo-lycheborne/were.svg",
  17808. extra: 308 / 294,
  17809. bottom: 0.048
  17810. }
  17811. },
  17812. feral: {
  17813. height: math.unit(7.5, "feet"),
  17814. weight: math.unit(600, "lb"),
  17815. name: "Feral",
  17816. image: {
  17817. source: "./media/characters/leonardo-lycheborne/feral.svg",
  17818. extra: 210 / 186,
  17819. bottom: 0.108
  17820. }
  17821. },
  17822. taur: {
  17823. height: math.unit(11, "feet"),
  17824. weight: math.unit(3300, "lb"),
  17825. name: "Taur",
  17826. image: {
  17827. source: "./media/characters/leonardo-lycheborne/taur.svg",
  17828. extra: 320 / 303,
  17829. bottom: 0.025
  17830. }
  17831. },
  17832. barghest: {
  17833. height: math.unit(11, "feet"),
  17834. weight: math.unit(1300, "lb"),
  17835. name: "Barghest",
  17836. image: {
  17837. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  17838. extra: 323 / 302,
  17839. bottom: 0.027
  17840. }
  17841. },
  17842. dick: {
  17843. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  17844. name: "Dick",
  17845. image: {
  17846. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17847. }
  17848. },
  17849. dickWere: {
  17850. height: math.unit((20) / 3.8, "feet"),
  17851. name: "Dick (Were)",
  17852. image: {
  17853. source: "./media/characters/leonardo-lycheborne/dick.svg"
  17854. }
  17855. },
  17856. },
  17857. [
  17858. {
  17859. name: "Normal",
  17860. height: math.unit(6 + 1 / 12, "feet"),
  17861. default: true
  17862. },
  17863. ]
  17864. ))
  17865. characterMakers.push(() => makeCharacter(
  17866. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  17867. {
  17868. front: {
  17869. height: math.unit(10, "feet"),
  17870. weight: math.unit(350, "lb"),
  17871. name: "Front",
  17872. image: {
  17873. source: "./media/characters/jet/front.svg",
  17874. extra: 2050 / 1980,
  17875. bottom: 0.013
  17876. }
  17877. },
  17878. back: {
  17879. height: math.unit(10, "feet"),
  17880. weight: math.unit(350, "lb"),
  17881. name: "Back",
  17882. image: {
  17883. source: "./media/characters/jet/back.svg",
  17884. extra: 2050 / 1980,
  17885. bottom: 0.013
  17886. }
  17887. },
  17888. },
  17889. [
  17890. {
  17891. name: "Micro",
  17892. height: math.unit(6, "inches")
  17893. },
  17894. {
  17895. name: "Normal",
  17896. height: math.unit(10, "feet"),
  17897. default: true
  17898. },
  17899. {
  17900. name: "Macro",
  17901. height: math.unit(100, "feet")
  17902. },
  17903. ]
  17904. ))
  17905. characterMakers.push(() => makeCharacter(
  17906. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  17907. {
  17908. front: {
  17909. height: math.unit(15, "feet"),
  17910. weight: math.unit(2800, "lb"),
  17911. name: "Front",
  17912. image: {
  17913. source: "./media/characters/tanarath/front.svg",
  17914. extra: 2392 / 2220,
  17915. bottom: 0.03
  17916. }
  17917. },
  17918. back: {
  17919. height: math.unit(15, "feet"),
  17920. weight: math.unit(2800, "lb"),
  17921. name: "Back",
  17922. image: {
  17923. source: "./media/characters/tanarath/back.svg",
  17924. extra: 2392 / 2220,
  17925. bottom: 0.03
  17926. }
  17927. },
  17928. },
  17929. [
  17930. {
  17931. name: "Normal",
  17932. height: math.unit(15, "feet"),
  17933. default: true
  17934. },
  17935. ]
  17936. ))
  17937. characterMakers.push(() => makeCharacter(
  17938. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  17939. {
  17940. front: {
  17941. height: math.unit(7 + 1 / 12, "feet"),
  17942. weight: math.unit(175, "lb"),
  17943. name: "Front",
  17944. image: {
  17945. source: "./media/characters/patty-cattybatty/front.svg",
  17946. extra: 908 / 874,
  17947. bottom: 0.025
  17948. }
  17949. },
  17950. },
  17951. [
  17952. {
  17953. name: "Micro",
  17954. height: math.unit(1, "inch")
  17955. },
  17956. {
  17957. name: "Normal",
  17958. height: math.unit(7 + 1 / 12, "feet")
  17959. },
  17960. {
  17961. name: "Mini Macro",
  17962. height: math.unit(155, "feet")
  17963. },
  17964. {
  17965. name: "Macro",
  17966. height: math.unit(1077, "feet")
  17967. },
  17968. {
  17969. name: "Mega Macro",
  17970. height: math.unit(47650, "feet"),
  17971. default: true
  17972. },
  17973. {
  17974. name: "Giga Macro",
  17975. height: math.unit(440, "miles")
  17976. },
  17977. {
  17978. name: "Tera Macro",
  17979. height: math.unit(8700, "miles")
  17980. },
  17981. {
  17982. name: "Planetary Macro",
  17983. height: math.unit(32700, "miles")
  17984. },
  17985. {
  17986. name: "Solar Macro",
  17987. height: math.unit(550000, "miles")
  17988. },
  17989. {
  17990. name: "Celestial Macro",
  17991. height: math.unit(2.5, "AU")
  17992. },
  17993. ]
  17994. ))
  17995. characterMakers.push(() => makeCharacter(
  17996. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  17997. {
  17998. front: {
  17999. height: math.unit(4 + 5 / 12, "feet"),
  18000. weight: math.unit(90, "lb"),
  18001. name: "Front",
  18002. image: {
  18003. source: "./media/characters/cappu/front.svg",
  18004. extra: 1247 / 1152,
  18005. bottom: 0.012
  18006. }
  18007. },
  18008. },
  18009. [
  18010. {
  18011. name: "Normal",
  18012. height: math.unit(4 + 5 / 12, "feet"),
  18013. default: true
  18014. },
  18015. ]
  18016. ))
  18017. characterMakers.push(() => makeCharacter(
  18018. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18019. {
  18020. frontDressed: {
  18021. height: math.unit(70, "cm"),
  18022. weight: math.unit(6, "kg"),
  18023. name: "Front (Dressed)",
  18024. image: {
  18025. source: "./media/characters/sebi/front-dressed.svg",
  18026. extra: 713.5 / 686.5,
  18027. bottom: 0.003
  18028. }
  18029. },
  18030. front: {
  18031. height: math.unit(70, "cm"),
  18032. weight: math.unit(5, "kg"),
  18033. name: "Front",
  18034. image: {
  18035. source: "./media/characters/sebi/front.svg",
  18036. extra: 713.5 / 686.5,
  18037. bottom: 0.003
  18038. }
  18039. }
  18040. },
  18041. [
  18042. {
  18043. name: "Normal",
  18044. height: math.unit(70, "cm"),
  18045. default: true
  18046. },
  18047. {
  18048. name: "Macro",
  18049. height: math.unit(8, "meters")
  18050. },
  18051. ]
  18052. ))
  18053. characterMakers.push(() => makeCharacter(
  18054. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18055. {
  18056. front: {
  18057. height: math.unit(6, "feet"),
  18058. weight: math.unit(150, "lb"),
  18059. name: "Front",
  18060. image: {
  18061. source: "./media/characters/typhek/front.svg",
  18062. extra: 1948 / 1929,
  18063. bottom: 0.025
  18064. }
  18065. },
  18066. side: {
  18067. height: math.unit(6, "feet"),
  18068. weight: math.unit(150, "lb"),
  18069. name: "Side",
  18070. image: {
  18071. source: "./media/characters/typhek/side.svg",
  18072. extra: 2034 / 2010,
  18073. bottom: 0.003
  18074. }
  18075. },
  18076. back: {
  18077. height: math.unit(6, "feet"),
  18078. weight: math.unit(150, "lb"),
  18079. name: "Back",
  18080. image: {
  18081. source: "./media/characters/typhek/back.svg",
  18082. extra: 2005 / 1978,
  18083. bottom: 0.004
  18084. }
  18085. },
  18086. palm: {
  18087. height: math.unit(1.2, "feet"),
  18088. name: "Palm",
  18089. image: {
  18090. source: "./media/characters/typhek/palm.svg"
  18091. }
  18092. },
  18093. fist: {
  18094. height: math.unit(1.1, "feet"),
  18095. name: "Fist",
  18096. image: {
  18097. source: "./media/characters/typhek/fist.svg"
  18098. }
  18099. },
  18100. foot: {
  18101. height: math.unit(1.57, "feet"),
  18102. name: "Foot",
  18103. image: {
  18104. source: "./media/characters/typhek/foot.svg"
  18105. }
  18106. },
  18107. sole: {
  18108. height: math.unit(2.05, "feet"),
  18109. name: "Sole",
  18110. image: {
  18111. source: "./media/characters/typhek/sole.svg"
  18112. }
  18113. },
  18114. },
  18115. [
  18116. {
  18117. name: "Macro",
  18118. height: math.unit(40, "stories"),
  18119. default: true
  18120. },
  18121. {
  18122. name: "Megamacro",
  18123. height: math.unit(1, "mile")
  18124. },
  18125. {
  18126. name: "Gigamacro",
  18127. height: math.unit(4000, "solarradii")
  18128. },
  18129. {
  18130. name: "Universal",
  18131. height: math.unit(1.1, "universes")
  18132. }
  18133. ]
  18134. ))
  18135. characterMakers.push(() => makeCharacter(
  18136. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18137. {
  18138. side: {
  18139. height: math.unit(5 + 7 / 12, "feet"),
  18140. weight: math.unit(150, "lb"),
  18141. name: "Side",
  18142. image: {
  18143. source: "./media/characters/kassy/side.svg",
  18144. extra: 1280 / 1225,
  18145. bottom: 0.002
  18146. }
  18147. },
  18148. front: {
  18149. height: math.unit(5 + 7 / 12, "feet"),
  18150. weight: math.unit(150, "lb"),
  18151. name: "Front",
  18152. image: {
  18153. source: "./media/characters/kassy/front.svg",
  18154. extra: 1280 / 1225,
  18155. bottom: 0.025
  18156. }
  18157. },
  18158. back: {
  18159. height: math.unit(5 + 7 / 12, "feet"),
  18160. weight: math.unit(150, "lb"),
  18161. name: "Back",
  18162. image: {
  18163. source: "./media/characters/kassy/back.svg",
  18164. extra: 1280 / 1225,
  18165. bottom: 0.002
  18166. }
  18167. },
  18168. foot: {
  18169. height: math.unit(1.266, "feet"),
  18170. name: "Foot",
  18171. image: {
  18172. source: "./media/characters/kassy/foot.svg"
  18173. }
  18174. },
  18175. },
  18176. [
  18177. {
  18178. name: "Normal",
  18179. height: math.unit(5 + 7 / 12, "feet")
  18180. },
  18181. {
  18182. name: "Macro",
  18183. height: math.unit(137, "feet"),
  18184. default: true
  18185. },
  18186. {
  18187. name: "Megamacro",
  18188. height: math.unit(1, "mile")
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18194. {
  18195. front: {
  18196. height: math.unit(6 + 1 / 12, "feet"),
  18197. weight: math.unit(200, "lb"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/neil/front.svg",
  18201. extra: 1326 / 1250,
  18202. bottom: 0.023
  18203. }
  18204. },
  18205. },
  18206. [
  18207. {
  18208. name: "Normal",
  18209. height: math.unit(6 + 1 / 12, "feet"),
  18210. default: true
  18211. },
  18212. {
  18213. name: "Macro",
  18214. height: math.unit(200, "feet")
  18215. },
  18216. ]
  18217. ))
  18218. characterMakers.push(() => makeCharacter(
  18219. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18220. {
  18221. front: {
  18222. height: math.unit(5 + 9 / 12, "feet"),
  18223. weight: math.unit(190, "lb"),
  18224. name: "Front",
  18225. image: {
  18226. source: "./media/characters/atticus/front.svg",
  18227. extra: 2934 / 2785,
  18228. bottom: 0.025
  18229. }
  18230. },
  18231. },
  18232. [
  18233. {
  18234. name: "Normal",
  18235. height: math.unit(5 + 9 / 12, "feet"),
  18236. default: true
  18237. },
  18238. {
  18239. name: "Macro",
  18240. height: math.unit(180, "feet")
  18241. },
  18242. ]
  18243. ))
  18244. characterMakers.push(() => makeCharacter(
  18245. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18246. {
  18247. side: {
  18248. height: math.unit(9, "feet"),
  18249. weight: math.unit(650, "lb"),
  18250. name: "Side",
  18251. image: {
  18252. source: "./media/characters/milo/side.svg",
  18253. extra: 2644 / 2310,
  18254. bottom: 0.032
  18255. }
  18256. },
  18257. },
  18258. [
  18259. {
  18260. name: "Normal",
  18261. height: math.unit(9, "feet"),
  18262. default: true
  18263. },
  18264. {
  18265. name: "Macro",
  18266. height: math.unit(300, "feet")
  18267. },
  18268. ]
  18269. ))
  18270. characterMakers.push(() => makeCharacter(
  18271. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18272. {
  18273. side: {
  18274. height: math.unit(8, "meters"),
  18275. weight: math.unit(90000, "kg"),
  18276. name: "Side",
  18277. image: {
  18278. source: "./media/characters/ijzer/side.svg",
  18279. extra: 2756 / 1600,
  18280. bottom: 0.01
  18281. }
  18282. },
  18283. },
  18284. [
  18285. {
  18286. name: "Small",
  18287. height: math.unit(3, "meters")
  18288. },
  18289. {
  18290. name: "Normal",
  18291. height: math.unit(8, "meters"),
  18292. default: true
  18293. },
  18294. {
  18295. name: "Normal+",
  18296. height: math.unit(10, "meters")
  18297. },
  18298. {
  18299. name: "Bigger",
  18300. height: math.unit(24, "meters")
  18301. },
  18302. {
  18303. name: "Huge",
  18304. height: math.unit(80, "meters")
  18305. },
  18306. ]
  18307. ))
  18308. characterMakers.push(() => makeCharacter(
  18309. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18310. {
  18311. front: {
  18312. height: math.unit(6 + 2 / 12, "feet"),
  18313. weight: math.unit(153, "lb"),
  18314. name: "Front",
  18315. image: {
  18316. source: "./media/characters/luca-cervicum/front.svg",
  18317. extra: 370 / 327,
  18318. bottom: 0.015
  18319. }
  18320. },
  18321. back: {
  18322. height: math.unit(6 + 2 / 12, "feet"),
  18323. weight: math.unit(153, "lb"),
  18324. name: "Back",
  18325. image: {
  18326. source: "./media/characters/luca-cervicum/back.svg",
  18327. extra: 367 / 333,
  18328. bottom: 0.005
  18329. }
  18330. },
  18331. frontGear: {
  18332. height: math.unit(6 + 2 / 12, "feet"),
  18333. weight: math.unit(173, "lb"),
  18334. name: "Front (Gear)",
  18335. image: {
  18336. source: "./media/characters/luca-cervicum/front-gear.svg",
  18337. extra: 377 / 333,
  18338. bottom: 0.006
  18339. }
  18340. },
  18341. },
  18342. [
  18343. {
  18344. name: "Normal",
  18345. height: math.unit(6 + 2 / 12, "feet"),
  18346. default: true
  18347. },
  18348. ]
  18349. ))
  18350. characterMakers.push(() => makeCharacter(
  18351. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18352. {
  18353. front: {
  18354. height: math.unit(6 + 1 / 12, "feet"),
  18355. weight: math.unit(304, "lb"),
  18356. name: "Front",
  18357. image: {
  18358. source: "./media/characters/oliver/front.svg",
  18359. extra: 157 / 143,
  18360. bottom: 0.08
  18361. }
  18362. },
  18363. },
  18364. [
  18365. {
  18366. name: "Normal",
  18367. height: math.unit(6 + 1 / 12, "feet"),
  18368. default: true
  18369. },
  18370. ]
  18371. ))
  18372. characterMakers.push(() => makeCharacter(
  18373. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18374. {
  18375. front: {
  18376. height: math.unit(5 + 7 / 12, "feet"),
  18377. weight: math.unit(140, "lb"),
  18378. name: "Front",
  18379. image: {
  18380. source: "./media/characters/shane/front.svg",
  18381. extra: 304 / 289,
  18382. bottom: 0.005
  18383. }
  18384. },
  18385. },
  18386. [
  18387. {
  18388. name: "Normal",
  18389. height: math.unit(5 + 7 / 12, "feet"),
  18390. default: true
  18391. },
  18392. ]
  18393. ))
  18394. characterMakers.push(() => makeCharacter(
  18395. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18396. {
  18397. front: {
  18398. height: math.unit(5 + 9 / 12, "feet"),
  18399. weight: math.unit(178, "lb"),
  18400. name: "Front",
  18401. image: {
  18402. source: "./media/characters/shin/front.svg",
  18403. extra: 159 / 151,
  18404. bottom: 0.015
  18405. }
  18406. },
  18407. },
  18408. [
  18409. {
  18410. name: "Normal",
  18411. height: math.unit(5 + 9 / 12, "feet"),
  18412. default: true
  18413. },
  18414. ]
  18415. ))
  18416. characterMakers.push(() => makeCharacter(
  18417. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18418. {
  18419. front: {
  18420. height: math.unit(5 + 10 / 12, "feet"),
  18421. weight: math.unit(168, "lb"),
  18422. name: "Front",
  18423. image: {
  18424. source: "./media/characters/xerxes/front.svg",
  18425. extra: 282 / 260,
  18426. bottom: 0.045
  18427. }
  18428. },
  18429. },
  18430. [
  18431. {
  18432. name: "Normal",
  18433. height: math.unit(5 + 10 / 12, "feet"),
  18434. default: true
  18435. },
  18436. ]
  18437. ))
  18438. characterMakers.push(() => makeCharacter(
  18439. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18440. {
  18441. front: {
  18442. height: math.unit(6 + 7 / 12, "feet"),
  18443. weight: math.unit(208, "lb"),
  18444. name: "Front",
  18445. image: {
  18446. source: "./media/characters/chaska/front.svg",
  18447. extra: 332 / 319,
  18448. bottom: 0.015
  18449. }
  18450. },
  18451. },
  18452. [
  18453. {
  18454. name: "Normal",
  18455. height: math.unit(6 + 7 / 12, "feet"),
  18456. default: true
  18457. },
  18458. ]
  18459. ))
  18460. characterMakers.push(() => makeCharacter(
  18461. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18462. {
  18463. front: {
  18464. height: math.unit(5 + 8 / 12, "feet"),
  18465. weight: math.unit(208, "lb"),
  18466. name: "Front",
  18467. image: {
  18468. source: "./media/characters/enuk/front.svg",
  18469. extra: 437 / 406,
  18470. bottom: 0.02
  18471. }
  18472. },
  18473. },
  18474. [
  18475. {
  18476. name: "Normal",
  18477. height: math.unit(5 + 8 / 12, "feet"),
  18478. default: true
  18479. },
  18480. ]
  18481. ))
  18482. characterMakers.push(() => makeCharacter(
  18483. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18484. {
  18485. front: {
  18486. height: math.unit(5 + 10 / 12, "feet"),
  18487. weight: math.unit(252, "lb"),
  18488. name: "Front",
  18489. image: {
  18490. source: "./media/characters/bruun/front.svg",
  18491. extra: 197 / 187,
  18492. bottom: 0.012
  18493. }
  18494. },
  18495. },
  18496. [
  18497. {
  18498. name: "Normal",
  18499. height: math.unit(5 + 10 / 12, "feet"),
  18500. default: true
  18501. },
  18502. ]
  18503. ))
  18504. characterMakers.push(() => makeCharacter(
  18505. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18506. {
  18507. front: {
  18508. height: math.unit(6 + 10 / 12, "feet"),
  18509. weight: math.unit(255, "lb"),
  18510. name: "Front",
  18511. image: {
  18512. source: "./media/characters/alexeev/front.svg",
  18513. extra: 213 / 200,
  18514. bottom: 0.05
  18515. }
  18516. },
  18517. },
  18518. [
  18519. {
  18520. name: "Normal",
  18521. height: math.unit(6 + 10 / 12, "feet"),
  18522. default: true
  18523. },
  18524. ]
  18525. ))
  18526. characterMakers.push(() => makeCharacter(
  18527. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18528. {
  18529. front: {
  18530. height: math.unit(2 + 8 / 12, "feet"),
  18531. weight: math.unit(22, "lb"),
  18532. name: "Front",
  18533. image: {
  18534. source: "./media/characters/evelyn/front.svg",
  18535. extra: 208 / 180
  18536. }
  18537. },
  18538. },
  18539. [
  18540. {
  18541. name: "Normal",
  18542. height: math.unit(2 + 8 / 12, "feet"),
  18543. default: true
  18544. },
  18545. ]
  18546. ))
  18547. characterMakers.push(() => makeCharacter(
  18548. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18549. {
  18550. front: {
  18551. height: math.unit(5 + 9 / 12, "feet"),
  18552. weight: math.unit(139, "lb"),
  18553. name: "Front",
  18554. image: {
  18555. source: "./media/characters/inca/front.svg",
  18556. extra: 294 / 291,
  18557. bottom: 0.03
  18558. }
  18559. },
  18560. },
  18561. [
  18562. {
  18563. name: "Normal",
  18564. height: math.unit(5 + 9 / 12, "feet"),
  18565. default: true
  18566. },
  18567. ]
  18568. ))
  18569. characterMakers.push(() => makeCharacter(
  18570. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18571. {
  18572. front: {
  18573. height: math.unit(5 + 1 / 12, "feet"),
  18574. weight: math.unit(84, "lb"),
  18575. name: "Front",
  18576. image: {
  18577. source: "./media/characters/magdalene/front.svg",
  18578. extra: 293 / 273
  18579. }
  18580. },
  18581. },
  18582. [
  18583. {
  18584. name: "Normal",
  18585. height: math.unit(5 + 1 / 12, "feet"),
  18586. default: true
  18587. },
  18588. ]
  18589. ))
  18590. characterMakers.push(() => makeCharacter(
  18591. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18592. {
  18593. front: {
  18594. height: math.unit(6 + 3 / 12, "feet"),
  18595. weight: math.unit(185, "lb"),
  18596. name: "Front",
  18597. image: {
  18598. source: "./media/characters/mera/front.svg",
  18599. extra: 291 / 277,
  18600. bottom: 0.03
  18601. }
  18602. },
  18603. },
  18604. [
  18605. {
  18606. name: "Normal",
  18607. height: math.unit(6 + 3 / 12, "feet"),
  18608. default: true
  18609. },
  18610. ]
  18611. ))
  18612. characterMakers.push(() => makeCharacter(
  18613. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18614. {
  18615. front: {
  18616. height: math.unit(6 + 7 / 12, "feet"),
  18617. weight: math.unit(160, "lb"),
  18618. name: "Front",
  18619. image: {
  18620. source: "./media/characters/ceres/front.svg",
  18621. extra: 1023 / 950,
  18622. bottom: 0.027
  18623. }
  18624. },
  18625. back: {
  18626. height: math.unit(6 + 7 / 12, "feet"),
  18627. weight: math.unit(160, "lb"),
  18628. name: "Back",
  18629. image: {
  18630. source: "./media/characters/ceres/back.svg",
  18631. extra: 1023 / 950
  18632. }
  18633. },
  18634. },
  18635. [
  18636. {
  18637. name: "Normal",
  18638. height: math.unit(6 + 7 / 12, "feet"),
  18639. default: true
  18640. },
  18641. ]
  18642. ))
  18643. characterMakers.push(() => makeCharacter(
  18644. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18645. {
  18646. front: {
  18647. height: math.unit(5 + 10 / 12, "feet"),
  18648. weight: math.unit(150, "lb"),
  18649. name: "Front",
  18650. image: {
  18651. source: "./media/characters/kris/front.svg",
  18652. extra: 885 / 803,
  18653. bottom: 0.03
  18654. }
  18655. },
  18656. },
  18657. [
  18658. {
  18659. name: "Normal",
  18660. height: math.unit(5 + 10 / 12, "feet"),
  18661. default: true
  18662. },
  18663. ]
  18664. ))
  18665. characterMakers.push(() => makeCharacter(
  18666. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18667. {
  18668. front: {
  18669. height: math.unit(7, "feet"),
  18670. weight: math.unit(120, "kg"),
  18671. name: "Front",
  18672. image: {
  18673. source: "./media/characters/taluthus/front.svg",
  18674. extra: 903 / 833,
  18675. bottom: 0.015
  18676. }
  18677. },
  18678. },
  18679. [
  18680. {
  18681. name: "Normal",
  18682. height: math.unit(7, "feet"),
  18683. default: true
  18684. },
  18685. {
  18686. name: "Macro",
  18687. height: math.unit(300, "feet")
  18688. },
  18689. ]
  18690. ))
  18691. characterMakers.push(() => makeCharacter(
  18692. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18693. {
  18694. front: {
  18695. height: math.unit(5 + 9 / 12, "feet"),
  18696. weight: math.unit(145, "lb"),
  18697. name: "Front",
  18698. image: {
  18699. source: "./media/characters/dawn/front.svg",
  18700. extra: 2094 / 2016,
  18701. bottom: 0.025
  18702. }
  18703. },
  18704. back: {
  18705. height: math.unit(5 + 9 / 12, "feet"),
  18706. weight: math.unit(160, "lb"),
  18707. name: "Back",
  18708. image: {
  18709. source: "./media/characters/dawn/back.svg",
  18710. extra: 2112 / 2080,
  18711. bottom: 0.005
  18712. }
  18713. },
  18714. },
  18715. [
  18716. {
  18717. name: "Normal",
  18718. height: math.unit(6 + 7 / 12, "feet"),
  18719. default: true
  18720. },
  18721. ]
  18722. ))
  18723. characterMakers.push(() => makeCharacter(
  18724. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18725. {
  18726. anthro: {
  18727. height: math.unit(8 + 3 / 12, "feet"),
  18728. weight: math.unit(450, "lb"),
  18729. name: "Anthro",
  18730. image: {
  18731. source: "./media/characters/arador/anthro.svg",
  18732. extra: 1835 / 1718,
  18733. bottom: 0.025
  18734. }
  18735. },
  18736. feral: {
  18737. height: math.unit(4, "feet"),
  18738. weight: math.unit(200, "lb"),
  18739. name: "Feral",
  18740. image: {
  18741. source: "./media/characters/arador/feral.svg",
  18742. extra: 1683 / 1514,
  18743. bottom: 0.07
  18744. }
  18745. },
  18746. },
  18747. [
  18748. {
  18749. name: "Normal",
  18750. height: math.unit(8 + 3 / 12, "feet")
  18751. },
  18752. {
  18753. name: "Macro",
  18754. height: math.unit(82.5, "feet"),
  18755. default: true
  18756. },
  18757. ]
  18758. ))
  18759. characterMakers.push(() => makeCharacter(
  18760. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18761. {
  18762. front: {
  18763. height: math.unit(5 + 10 / 12, "feet"),
  18764. weight: math.unit(125, "lb"),
  18765. name: "Front",
  18766. image: {
  18767. source: "./media/characters/dharsi/front.svg",
  18768. extra: 716 / 630,
  18769. bottom: 0.035
  18770. }
  18771. },
  18772. },
  18773. [
  18774. {
  18775. name: "Nano",
  18776. height: math.unit(100, "nm")
  18777. },
  18778. {
  18779. name: "Micro",
  18780. height: math.unit(2, "inches")
  18781. },
  18782. {
  18783. name: "Normal",
  18784. height: math.unit(5 + 10 / 12, "feet"),
  18785. default: true
  18786. },
  18787. {
  18788. name: "Macro",
  18789. height: math.unit(1000, "feet")
  18790. },
  18791. {
  18792. name: "Megamacro",
  18793. height: math.unit(10, "miles")
  18794. },
  18795. {
  18796. name: "Gigamacro",
  18797. height: math.unit(3000, "miles")
  18798. },
  18799. {
  18800. name: "Teramacro",
  18801. height: math.unit(500000, "miles")
  18802. },
  18803. {
  18804. name: "Teramacro+",
  18805. height: math.unit(30, "galaxies")
  18806. },
  18807. ]
  18808. ))
  18809. characterMakers.push(() => makeCharacter(
  18810. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  18811. {
  18812. front: {
  18813. height: math.unit(6, "feet"),
  18814. weight: math.unit(150, "lb"),
  18815. name: "Front",
  18816. image: {
  18817. source: "./media/characters/deathy/front.svg",
  18818. extra: 1552 / 1463,
  18819. bottom: 0.025
  18820. }
  18821. },
  18822. side: {
  18823. height: math.unit(6, "feet"),
  18824. weight: math.unit(150, "lb"),
  18825. name: "Side",
  18826. image: {
  18827. source: "./media/characters/deathy/side.svg",
  18828. extra: 1604 / 1455,
  18829. bottom: 0.025
  18830. }
  18831. },
  18832. back: {
  18833. height: math.unit(6, "feet"),
  18834. weight: math.unit(150, "lb"),
  18835. name: "Back",
  18836. image: {
  18837. source: "./media/characters/deathy/back.svg",
  18838. extra: 1580 / 1463,
  18839. bottom: 0.005
  18840. }
  18841. },
  18842. },
  18843. [
  18844. {
  18845. name: "Micro",
  18846. height: math.unit(5, "millimeters")
  18847. },
  18848. {
  18849. name: "Normal",
  18850. height: math.unit(6 + 5 / 12, "feet"),
  18851. default: true
  18852. },
  18853. ]
  18854. ))
  18855. characterMakers.push(() => makeCharacter(
  18856. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  18857. {
  18858. front: {
  18859. height: math.unit(16, "feet"),
  18860. weight: math.unit(4000, "lb"),
  18861. name: "Front",
  18862. image: {
  18863. source: "./media/characters/juniper/front.svg",
  18864. bottom: 0.04
  18865. }
  18866. },
  18867. },
  18868. [
  18869. {
  18870. name: "Normal",
  18871. height: math.unit(16, "feet"),
  18872. default: true
  18873. },
  18874. ]
  18875. ))
  18876. characterMakers.push(() => makeCharacter(
  18877. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  18878. {
  18879. front: {
  18880. height: math.unit(6, "feet"),
  18881. weight: math.unit(150, "lb"),
  18882. name: "Front",
  18883. image: {
  18884. source: "./media/characters/hipster/front.svg",
  18885. extra: 1312 / 1209,
  18886. bottom: 0.025
  18887. }
  18888. },
  18889. back: {
  18890. height: math.unit(6, "feet"),
  18891. weight: math.unit(150, "lb"),
  18892. name: "Back",
  18893. image: {
  18894. source: "./media/characters/hipster/back.svg",
  18895. extra: 1281 / 1196,
  18896. bottom: 0.01
  18897. }
  18898. },
  18899. },
  18900. [
  18901. {
  18902. name: "Micro",
  18903. height: math.unit(1, "mm")
  18904. },
  18905. {
  18906. name: "Normal",
  18907. height: math.unit(4, "inches"),
  18908. default: true
  18909. },
  18910. {
  18911. name: "Macro",
  18912. height: math.unit(500, "feet")
  18913. },
  18914. {
  18915. name: "Megamacro",
  18916. height: math.unit(1000, "miles")
  18917. },
  18918. ]
  18919. ))
  18920. characterMakers.push(() => makeCharacter(
  18921. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  18922. {
  18923. front: {
  18924. height: math.unit(6, "feet"),
  18925. weight: math.unit(150, "lb"),
  18926. name: "Front",
  18927. image: {
  18928. source: "./media/characters/tendirmuldr/front.svg",
  18929. extra: 1878 / 1772,
  18930. bottom: 0.015
  18931. }
  18932. },
  18933. },
  18934. [
  18935. {
  18936. name: "Megamacro",
  18937. height: math.unit(1500, "miles"),
  18938. default: true
  18939. },
  18940. ]
  18941. ))
  18942. characterMakers.push(() => makeCharacter(
  18943. { name: "Mort", species: ["demon"], tags: ["feral"] },
  18944. {
  18945. front: {
  18946. height: math.unit(14, "feet"),
  18947. weight: math.unit(12000, "lb"),
  18948. name: "Front",
  18949. image: {
  18950. source: "./media/characters/mort/front.svg",
  18951. extra: 365 / 318,
  18952. bottom: 0.01
  18953. }
  18954. },
  18955. side: {
  18956. height: math.unit(14, "feet"),
  18957. weight: math.unit(12000, "lb"),
  18958. name: "Side",
  18959. image: {
  18960. source: "./media/characters/mort/side.svg",
  18961. extra: 365 / 318,
  18962. bottom: 0.052
  18963. },
  18964. default: true
  18965. },
  18966. back: {
  18967. height: math.unit(14, "feet"),
  18968. weight: math.unit(12000, "lb"),
  18969. name: "Back",
  18970. image: {
  18971. source: "./media/characters/mort/back.svg",
  18972. extra: 371 / 332,
  18973. bottom: 0.18
  18974. }
  18975. },
  18976. },
  18977. [
  18978. {
  18979. name: "Normal",
  18980. height: math.unit(14, "feet"),
  18981. default: true
  18982. },
  18983. ]
  18984. ))
  18985. characterMakers.push(() => makeCharacter(
  18986. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  18987. {
  18988. front: {
  18989. height: math.unit(8, "feet"),
  18990. weight: math.unit(1, "ton"),
  18991. name: "Front",
  18992. image: {
  18993. source: "./media/characters/lycoa/front.svg",
  18994. extra: 1875 / 1789,
  18995. bottom: 0.022
  18996. }
  18997. },
  18998. back: {
  18999. height: math.unit(8, "feet"),
  19000. weight: math.unit(1, "ton"),
  19001. name: "Back",
  19002. image: {
  19003. source: "./media/characters/lycoa/back.svg",
  19004. extra: 1835 / 1781,
  19005. bottom: 0.03
  19006. }
  19007. },
  19008. },
  19009. [
  19010. {
  19011. name: "Normal",
  19012. height: math.unit(8, "feet"),
  19013. default: true
  19014. },
  19015. {
  19016. name: "Macro",
  19017. height: math.unit(30, "feet")
  19018. },
  19019. ]
  19020. ))
  19021. characterMakers.push(() => makeCharacter(
  19022. { name: "Naldara", species: ["jackalope"], tags: ["anthro"] },
  19023. {
  19024. front: {
  19025. height: math.unit(4 + 2 / 12, "feet"),
  19026. weight: math.unit(70, "lb"),
  19027. name: "Front",
  19028. image: {
  19029. source: "./media/characters/naldara/front.svg",
  19030. extra: 841 / 720,
  19031. bottom: 0.04
  19032. }
  19033. },
  19034. },
  19035. [
  19036. {
  19037. name: "Normal",
  19038. height: math.unit(4 + 2 / 12, "feet"),
  19039. default: true
  19040. },
  19041. ]
  19042. ))
  19043. characterMakers.push(() => makeCharacter(
  19044. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19045. {
  19046. front: {
  19047. height: math.unit(13 + 7 / 12, "feet"),
  19048. weight: math.unit(1500, "lb"),
  19049. name: "Front",
  19050. image: {
  19051. source: "./media/characters/briar/front.svg",
  19052. extra: 626 / 596,
  19053. bottom: 0.08
  19054. }
  19055. },
  19056. },
  19057. [
  19058. {
  19059. name: "Normal",
  19060. height: math.unit(13 + 7 / 12, "feet"),
  19061. default: true
  19062. },
  19063. ]
  19064. ))
  19065. characterMakers.push(() => makeCharacter(
  19066. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19067. {
  19068. side: {
  19069. height: math.unit(10, "feet"),
  19070. weight: math.unit(500, "lb"),
  19071. name: "Side",
  19072. image: {
  19073. source: "./media/characters/vanguard/side.svg",
  19074. extra: 502 / 425,
  19075. bottom: 0.087
  19076. }
  19077. },
  19078. },
  19079. [
  19080. {
  19081. name: "Normal",
  19082. height: math.unit(10, "feet"),
  19083. default: true
  19084. },
  19085. ]
  19086. ))
  19087. characterMakers.push(() => makeCharacter(
  19088. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19089. {
  19090. front: {
  19091. height: math.unit(7.5, "feet"),
  19092. weight: math.unit(2, "lb"),
  19093. name: "Front",
  19094. image: {
  19095. source: "./media/characters/artemis/front.svg",
  19096. extra: 1192 / 1075,
  19097. bottom: 0.07
  19098. }
  19099. },
  19100. },
  19101. [
  19102. {
  19103. name: "Normal",
  19104. height: math.unit(7.5, "feet"),
  19105. default: true
  19106. },
  19107. {
  19108. name: "Enlarged",
  19109. height: math.unit(12, "feet")
  19110. },
  19111. ]
  19112. ))
  19113. characterMakers.push(() => makeCharacter(
  19114. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19115. {
  19116. front: {
  19117. height: math.unit(5 + 3 / 12, "feet"),
  19118. weight: math.unit(160, "lb"),
  19119. name: "Front",
  19120. image: {
  19121. source: "./media/characters/kira/front.svg",
  19122. extra: 906 / 786,
  19123. bottom: 0.01
  19124. }
  19125. },
  19126. back: {
  19127. height: math.unit(5 + 3 / 12, "feet"),
  19128. weight: math.unit(160, "lb"),
  19129. name: "Back",
  19130. image: {
  19131. source: "./media/characters/kira/back.svg",
  19132. extra: 882 / 757,
  19133. bottom: 0.005
  19134. }
  19135. },
  19136. frontDressed: {
  19137. height: math.unit(5 + 3 / 12, "feet"),
  19138. weight: math.unit(160, "lb"),
  19139. name: "Front (Dressed)",
  19140. image: {
  19141. source: "./media/characters/kira/front-dressed.svg",
  19142. extra: 906 / 786,
  19143. bottom: 0.01
  19144. }
  19145. },
  19146. beans: {
  19147. height: math.unit(0.92, "feet"),
  19148. name: "Beans",
  19149. image: {
  19150. source: "./media/characters/kira/beans.svg"
  19151. }
  19152. },
  19153. },
  19154. [
  19155. {
  19156. name: "Normal",
  19157. height: math.unit(5 + 3 / 12, "feet"),
  19158. default: true
  19159. },
  19160. ]
  19161. ))
  19162. characterMakers.push(() => makeCharacter(
  19163. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19164. {
  19165. front: {
  19166. height: math.unit(5 + 4 / 12, "feet"),
  19167. weight: math.unit(145, "lb"),
  19168. name: "Front",
  19169. image: {
  19170. source: "./media/characters/scramble/front.svg",
  19171. extra: 763 / 727,
  19172. bottom: 0.05
  19173. }
  19174. },
  19175. back: {
  19176. height: math.unit(5 + 4 / 12, "feet"),
  19177. weight: math.unit(145, "lb"),
  19178. name: "Back",
  19179. image: {
  19180. source: "./media/characters/scramble/back.svg",
  19181. extra: 826 / 737,
  19182. bottom: 0.002
  19183. }
  19184. },
  19185. },
  19186. [
  19187. {
  19188. name: "Normal",
  19189. height: math.unit(5 + 4 / 12, "feet"),
  19190. default: true
  19191. },
  19192. ]
  19193. ))
  19194. characterMakers.push(() => makeCharacter(
  19195. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19196. {
  19197. side: {
  19198. height: math.unit(6 + 2 / 12, "feet"),
  19199. weight: math.unit(190, "lb"),
  19200. name: "Side",
  19201. image: {
  19202. source: "./media/characters/biscuit/side.svg",
  19203. extra: 858 / 791,
  19204. bottom: 0.044
  19205. }
  19206. },
  19207. },
  19208. [
  19209. {
  19210. name: "Normal",
  19211. height: math.unit(6 + 2 / 12, "feet"),
  19212. default: true
  19213. },
  19214. ]
  19215. ))
  19216. characterMakers.push(() => makeCharacter(
  19217. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19218. {
  19219. front: {
  19220. height: math.unit(5 + 2 / 12, "feet"),
  19221. weight: math.unit(120, "lb"),
  19222. name: "Front",
  19223. image: {
  19224. source: "./media/characters/poffin/front.svg",
  19225. extra: 786 / 680,
  19226. bottom: 0.005
  19227. }
  19228. },
  19229. },
  19230. [
  19231. {
  19232. name: "Normal",
  19233. height: math.unit(5 + 2 / 12, "feet"),
  19234. default: true
  19235. },
  19236. ]
  19237. ))
  19238. characterMakers.push(() => makeCharacter(
  19239. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19240. {
  19241. front: {
  19242. height: math.unit(6 + 3 / 12, "feet"),
  19243. weight: math.unit(519, "lb"),
  19244. name: "Front",
  19245. image: {
  19246. source: "./media/characters/dhari/front.svg",
  19247. extra: 1048 / 946,
  19248. bottom: 0.015
  19249. }
  19250. },
  19251. back: {
  19252. height: math.unit(6 + 3 / 12, "feet"),
  19253. weight: math.unit(519, "lb"),
  19254. name: "Back",
  19255. image: {
  19256. source: "./media/characters/dhari/back.svg",
  19257. extra: 1048 / 931,
  19258. bottom: 0.005
  19259. }
  19260. },
  19261. frontDressed: {
  19262. height: math.unit(6 + 3 / 12, "feet"),
  19263. weight: math.unit(519, "lb"),
  19264. name: "Front (Dressed)",
  19265. image: {
  19266. source: "./media/characters/dhari/front-dressed.svg",
  19267. extra: 1713 / 1546,
  19268. bottom: 0.02
  19269. }
  19270. },
  19271. backDressed: {
  19272. height: math.unit(6 + 3 / 12, "feet"),
  19273. weight: math.unit(519, "lb"),
  19274. name: "Back (Dressed)",
  19275. image: {
  19276. source: "./media/characters/dhari/back-dressed.svg",
  19277. extra: 1699 / 1537,
  19278. bottom: 0.01
  19279. }
  19280. },
  19281. maw: {
  19282. height: math.unit(0.95, "feet"),
  19283. name: "Maw",
  19284. image: {
  19285. source: "./media/characters/dhari/maw.svg"
  19286. }
  19287. },
  19288. wereFront: {
  19289. height: math.unit(12 + 8 / 12, "feet"),
  19290. weight: math.unit(4000, "lb"),
  19291. name: "Front (Were)",
  19292. image: {
  19293. source: "./media/characters/dhari/were-front.svg",
  19294. extra: 1065 / 969,
  19295. bottom: 0.015
  19296. }
  19297. },
  19298. wereBack: {
  19299. height: math.unit(12 + 8 / 12, "feet"),
  19300. weight: math.unit(4000, "lb"),
  19301. name: "Back (Were)",
  19302. image: {
  19303. source: "./media/characters/dhari/were-back.svg",
  19304. extra: 1065 / 969,
  19305. bottom: 0.012
  19306. }
  19307. },
  19308. wereMaw: {
  19309. height: math.unit(0.625, "meters"),
  19310. name: "Maw (Were)",
  19311. image: {
  19312. source: "./media/characters/dhari/were-maw.svg"
  19313. }
  19314. },
  19315. },
  19316. [
  19317. {
  19318. name: "Normal",
  19319. height: math.unit(6 + 3 / 12, "feet"),
  19320. default: true
  19321. },
  19322. ]
  19323. ))
  19324. characterMakers.push(() => makeCharacter(
  19325. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19326. {
  19327. anthro: {
  19328. height: math.unit(5 + 7 / 12, "feet"),
  19329. weight: math.unit(175, "lb"),
  19330. name: "Anthro",
  19331. image: {
  19332. source: "./media/characters/rena-dyne/anthro.svg",
  19333. extra: 1849 / 1785,
  19334. bottom: 0.005
  19335. }
  19336. },
  19337. taur: {
  19338. height: math.unit(15 + 6 / 12, "feet"),
  19339. weight: math.unit(8000, "lb"),
  19340. name: "Taur",
  19341. image: {
  19342. source: "./media/characters/rena-dyne/taur.svg",
  19343. extra: 2315 / 2234,
  19344. bottom: 0.033
  19345. }
  19346. },
  19347. },
  19348. [
  19349. {
  19350. name: "Normal",
  19351. height: math.unit(5 + 7 / 12, "feet"),
  19352. default: true
  19353. },
  19354. ]
  19355. ))
  19356. characterMakers.push(() => makeCharacter(
  19357. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19358. {
  19359. front: {
  19360. height: math.unit(8, "feet"),
  19361. weight: math.unit(600, "lb"),
  19362. name: "Front",
  19363. image: {
  19364. source: "./media/characters/weremeep/front.svg",
  19365. extra: 967 / 862,
  19366. bottom: 0.01
  19367. }
  19368. },
  19369. },
  19370. [
  19371. {
  19372. name: "Normal",
  19373. height: math.unit(8, "feet"),
  19374. default: true
  19375. },
  19376. {
  19377. name: "Lorg",
  19378. height: math.unit(12, "feet")
  19379. },
  19380. {
  19381. name: "Oh Lawd She Comin'",
  19382. height: math.unit(20, "feet")
  19383. },
  19384. ]
  19385. ))
  19386. characterMakers.push(() => makeCharacter(
  19387. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19388. {
  19389. front: {
  19390. height: math.unit(4, "feet"),
  19391. weight: math.unit(90, "lb"),
  19392. name: "Front",
  19393. image: {
  19394. source: "./media/characters/reza/front.svg",
  19395. extra: 1183 / 1111,
  19396. bottom: 0.017
  19397. }
  19398. },
  19399. back: {
  19400. height: math.unit(4, "feet"),
  19401. weight: math.unit(90, "lb"),
  19402. name: "Back",
  19403. image: {
  19404. source: "./media/characters/reza/back.svg",
  19405. extra: 1183 / 1111,
  19406. bottom: 0.01
  19407. }
  19408. },
  19409. drake: {
  19410. height: math.unit(30, "feet"),
  19411. weight: math.unit(246960, "lb"),
  19412. name: "Drake",
  19413. image: {
  19414. source: "./media/characters/reza/drake.svg",
  19415. extra: 2350/2024,
  19416. bottom: 60.7/2403
  19417. }
  19418. },
  19419. },
  19420. [
  19421. {
  19422. name: "Normal",
  19423. height: math.unit(4, "feet"),
  19424. default: true
  19425. },
  19426. ]
  19427. ))
  19428. characterMakers.push(() => makeCharacter(
  19429. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19430. {
  19431. side: {
  19432. height: math.unit(15, "feet"),
  19433. weight: math.unit(14, "tons"),
  19434. name: "Side",
  19435. image: {
  19436. source: "./media/characters/athea/side.svg",
  19437. extra: 960 / 540,
  19438. bottom: 0.003
  19439. }
  19440. },
  19441. sitting: {
  19442. height: math.unit(6 * 2.85, "feet"),
  19443. weight: math.unit(14, "tons"),
  19444. name: "Sitting",
  19445. image: {
  19446. source: "./media/characters/athea/sitting.svg",
  19447. extra: 621 / 581,
  19448. bottom: 0.075
  19449. }
  19450. },
  19451. maw: {
  19452. height: math.unit(7.59498031496063, "feet"),
  19453. name: "Maw",
  19454. image: {
  19455. source: "./media/characters/athea/maw.svg"
  19456. }
  19457. },
  19458. },
  19459. [
  19460. {
  19461. name: "Lap Cat",
  19462. height: math.unit(2.5, "feet")
  19463. },
  19464. {
  19465. name: "Minimacro",
  19466. height: math.unit(15, "feet"),
  19467. default: true
  19468. },
  19469. {
  19470. name: "Macro",
  19471. height: math.unit(120, "feet")
  19472. },
  19473. {
  19474. name: "Macro+",
  19475. height: math.unit(640, "feet")
  19476. },
  19477. {
  19478. name: "Colossus",
  19479. height: math.unit(2.2, "miles")
  19480. },
  19481. ]
  19482. ))
  19483. characterMakers.push(() => makeCharacter(
  19484. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19485. {
  19486. front: {
  19487. height: math.unit(8 + 8 / 12, "feet"),
  19488. weight: math.unit(130, "kg"),
  19489. name: "Front",
  19490. image: {
  19491. source: "./media/characters/seroko/front.svg",
  19492. extra: 1385 / 1280,
  19493. bottom: 0.025
  19494. }
  19495. },
  19496. back: {
  19497. height: math.unit(8 + 8 / 12, "feet"),
  19498. weight: math.unit(130, "kg"),
  19499. name: "Back",
  19500. image: {
  19501. source: "./media/characters/seroko/back.svg",
  19502. extra: 1369 / 1238,
  19503. bottom: 0.018
  19504. }
  19505. },
  19506. frontDressed: {
  19507. height: math.unit(8 + 8 / 12, "feet"),
  19508. weight: math.unit(130, "kg"),
  19509. name: "Front (Dressed)",
  19510. image: {
  19511. source: "./media/characters/seroko/front-dressed.svg",
  19512. extra: 1366 / 1275,
  19513. bottom: 0.03
  19514. }
  19515. },
  19516. },
  19517. [
  19518. {
  19519. name: "Normal",
  19520. height: math.unit(8 + 8 / 12, "feet"),
  19521. default: true
  19522. },
  19523. ]
  19524. ))
  19525. characterMakers.push(() => makeCharacter(
  19526. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19527. {
  19528. front: {
  19529. height: math.unit(5.5, "feet"),
  19530. weight: math.unit(160, "lb"),
  19531. name: "Front",
  19532. image: {
  19533. source: "./media/characters/quatzi/front.svg",
  19534. extra: 2346 / 2242,
  19535. bottom: 0.015
  19536. }
  19537. },
  19538. },
  19539. [
  19540. {
  19541. name: "Normal",
  19542. height: math.unit(5.5, "feet"),
  19543. default: true
  19544. },
  19545. {
  19546. name: "Big",
  19547. height: math.unit(7.7, "feet")
  19548. },
  19549. ]
  19550. ))
  19551. characterMakers.push(() => makeCharacter(
  19552. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19553. {
  19554. front: {
  19555. height: math.unit(5 + 11 / 12, "feet"),
  19556. weight: math.unit(180, "lb"),
  19557. name: "Front",
  19558. image: {
  19559. source: "./media/characters/sen/front.svg",
  19560. extra: 1321 / 1254,
  19561. bottom: 0.015
  19562. }
  19563. },
  19564. side: {
  19565. height: math.unit(5 + 11 / 12, "feet"),
  19566. weight: math.unit(180, "lb"),
  19567. name: "Side",
  19568. image: {
  19569. source: "./media/characters/sen/side.svg",
  19570. extra: 1321 / 1254,
  19571. bottom: 0.007
  19572. }
  19573. },
  19574. back: {
  19575. height: math.unit(5 + 11 / 12, "feet"),
  19576. weight: math.unit(180, "lb"),
  19577. name: "Back",
  19578. image: {
  19579. source: "./media/characters/sen/back.svg",
  19580. extra: 1321 / 1254
  19581. }
  19582. },
  19583. },
  19584. [
  19585. {
  19586. name: "Normal",
  19587. height: math.unit(5 + 11 / 12, "feet"),
  19588. default: true
  19589. },
  19590. ]
  19591. ))
  19592. characterMakers.push(() => makeCharacter(
  19593. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19594. {
  19595. front: {
  19596. height: math.unit(166.6, "cm"),
  19597. weight: math.unit(66.6, "kg"),
  19598. name: "Front",
  19599. image: {
  19600. source: "./media/characters/fruity/front.svg",
  19601. extra: 1510 / 1386,
  19602. bottom: 0.04
  19603. }
  19604. },
  19605. back: {
  19606. height: math.unit(166.6, "cm"),
  19607. weight: math.unit(66.6, "lb"),
  19608. name: "Back",
  19609. image: {
  19610. source: "./media/characters/fruity/back.svg",
  19611. extra: 1563 / 1435,
  19612. bottom: 0.005
  19613. }
  19614. },
  19615. },
  19616. [
  19617. {
  19618. name: "Normal",
  19619. height: math.unit(166.6, "cm"),
  19620. default: true
  19621. },
  19622. {
  19623. name: "Demonic",
  19624. height: math.unit(166.6, "feet")
  19625. },
  19626. ]
  19627. ))
  19628. characterMakers.push(() => makeCharacter(
  19629. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19630. {
  19631. side: {
  19632. height: math.unit(10, "feet"),
  19633. weight: math.unit(500, "lb"),
  19634. name: "Side",
  19635. image: {
  19636. source: "./media/characters/zost/side.svg",
  19637. extra: 966 / 880,
  19638. bottom: 0.075
  19639. }
  19640. },
  19641. mawFront: {
  19642. height: math.unit(1.08, "meters"),
  19643. name: "Maw (Front)",
  19644. image: {
  19645. source: "./media/characters/zost/maw-front.svg"
  19646. }
  19647. },
  19648. mawSide: {
  19649. height: math.unit(2.66, "feet"),
  19650. name: "Maw (Side)",
  19651. image: {
  19652. source: "./media/characters/zost/maw-side.svg"
  19653. }
  19654. },
  19655. },
  19656. [
  19657. {
  19658. name: "Normal",
  19659. height: math.unit(10, "feet"),
  19660. default: true
  19661. },
  19662. ]
  19663. ))
  19664. characterMakers.push(() => makeCharacter(
  19665. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  19666. {
  19667. front: {
  19668. height: math.unit(5 + 4 / 12, "feet"),
  19669. weight: math.unit(120, "lb"),
  19670. name: "Front",
  19671. image: {
  19672. source: "./media/characters/luci/front.svg",
  19673. extra: 1985 / 1884,
  19674. bottom: 0.04
  19675. }
  19676. },
  19677. back: {
  19678. height: math.unit(5 + 4 / 12, "feet"),
  19679. weight: math.unit(120, "lb"),
  19680. name: "Back",
  19681. image: {
  19682. source: "./media/characters/luci/back.svg",
  19683. extra: 1892 / 1791,
  19684. bottom: 0.002
  19685. }
  19686. },
  19687. },
  19688. [
  19689. {
  19690. name: "Normal",
  19691. height: math.unit(5 + 4 / 12, "feet"),
  19692. default: true
  19693. },
  19694. ]
  19695. ))
  19696. characterMakers.push(() => makeCharacter(
  19697. { name: "2th", species: ["monster"], tags: ["anthro"] },
  19698. {
  19699. front: {
  19700. height: math.unit(1500, "feet"),
  19701. weight: math.unit(3.8e6, "tons"),
  19702. name: "Front",
  19703. image: {
  19704. source: "./media/characters/2th/front.svg",
  19705. extra: 3489 / 3350,
  19706. bottom: 0.1
  19707. }
  19708. },
  19709. foot: {
  19710. height: math.unit(461, "feet"),
  19711. name: "Foot",
  19712. image: {
  19713. source: "./media/characters/2th/foot.svg"
  19714. }
  19715. },
  19716. },
  19717. [
  19718. {
  19719. name: "\"Micro\"",
  19720. height: math.unit(15 + 7 / 12, "feet")
  19721. },
  19722. {
  19723. name: "Normal",
  19724. height: math.unit(1500, "feet"),
  19725. default: true
  19726. },
  19727. {
  19728. name: "Macro",
  19729. height: math.unit(5000, "feet")
  19730. },
  19731. {
  19732. name: "Megamacro",
  19733. height: math.unit(15, "miles")
  19734. },
  19735. {
  19736. name: "Gigamacro",
  19737. height: math.unit(4000, "miles")
  19738. },
  19739. {
  19740. name: "Galactic",
  19741. height: math.unit(50, "AU")
  19742. },
  19743. ]
  19744. ))
  19745. characterMakers.push(() => makeCharacter(
  19746. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  19747. {
  19748. front: {
  19749. height: math.unit(5 + 6 / 12, "feet"),
  19750. weight: math.unit(220, "lb"),
  19751. name: "Front",
  19752. image: {
  19753. source: "./media/characters/amethyst/front.svg",
  19754. extra: 2078 / 2040,
  19755. bottom: 0.045
  19756. }
  19757. },
  19758. back: {
  19759. height: math.unit(5 + 6 / 12, "feet"),
  19760. weight: math.unit(220, "lb"),
  19761. name: "Back",
  19762. image: {
  19763. source: "./media/characters/amethyst/back.svg",
  19764. extra: 2021 / 1989,
  19765. bottom: 0.02
  19766. }
  19767. },
  19768. },
  19769. [
  19770. {
  19771. name: "Normal",
  19772. height: math.unit(5 + 6 / 12, "feet"),
  19773. default: true
  19774. },
  19775. ]
  19776. ))
  19777. characterMakers.push(() => makeCharacter(
  19778. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  19779. {
  19780. front: {
  19781. height: math.unit(4 + 11 / 12, "feet"),
  19782. weight: math.unit(120, "lb"),
  19783. name: "Front",
  19784. image: {
  19785. source: "./media/characters/yumi-akiyama/front.svg",
  19786. extra: 1327 / 1235,
  19787. bottom: 0.02
  19788. }
  19789. },
  19790. back: {
  19791. height: math.unit(4 + 11 / 12, "feet"),
  19792. weight: math.unit(120, "lb"),
  19793. name: "Back",
  19794. image: {
  19795. source: "./media/characters/yumi-akiyama/back.svg",
  19796. extra: 1287 / 1245,
  19797. bottom: 0.002
  19798. }
  19799. },
  19800. },
  19801. [
  19802. {
  19803. name: "Galactic",
  19804. height: math.unit(50, "galaxies"),
  19805. default: true
  19806. },
  19807. {
  19808. name: "Universal",
  19809. height: math.unit(100, "universes")
  19810. },
  19811. ]
  19812. ))
  19813. characterMakers.push(() => makeCharacter(
  19814. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  19815. {
  19816. front: {
  19817. height: math.unit(8, "feet"),
  19818. weight: math.unit(500, "lb"),
  19819. name: "Front",
  19820. image: {
  19821. source: "./media/characters/rifter-yrmori/front.svg",
  19822. extra: 1180 / 1125,
  19823. bottom: 0.02
  19824. }
  19825. },
  19826. back: {
  19827. height: math.unit(8, "feet"),
  19828. weight: math.unit(500, "lb"),
  19829. name: "Back",
  19830. image: {
  19831. source: "./media/characters/rifter-yrmori/back.svg",
  19832. extra: 1190 / 1145,
  19833. bottom: 0.001
  19834. }
  19835. },
  19836. wings: {
  19837. height: math.unit(7.75, "feet"),
  19838. weight: math.unit(500, "lb"),
  19839. name: "Wings",
  19840. image: {
  19841. source: "./media/characters/rifter-yrmori/wings.svg",
  19842. extra: 1357 / 1285
  19843. }
  19844. },
  19845. maw: {
  19846. height: math.unit(0.8, "feet"),
  19847. name: "Maw",
  19848. image: {
  19849. source: "./media/characters/rifter-yrmori/maw.svg"
  19850. }
  19851. },
  19852. },
  19853. [
  19854. {
  19855. name: "Normal",
  19856. height: math.unit(8, "feet"),
  19857. default: true
  19858. },
  19859. {
  19860. name: "Macro",
  19861. height: math.unit(42, "meters")
  19862. },
  19863. ]
  19864. ))
  19865. characterMakers.push(() => makeCharacter(
  19866. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  19867. {
  19868. were: {
  19869. height: math.unit(25 + 6 / 12, "feet"),
  19870. weight: math.unit(10000, "lb"),
  19871. name: "Were",
  19872. image: {
  19873. source: "./media/characters/tahajin/were.svg",
  19874. extra: 801 / 770,
  19875. bottom: 0.042
  19876. }
  19877. },
  19878. aquatic: {
  19879. height: math.unit(6 + 4 / 12, "feet"),
  19880. weight: math.unit(160, "lb"),
  19881. name: "Aquatic",
  19882. image: {
  19883. source: "./media/characters/tahajin/aquatic.svg",
  19884. extra: 572 / 542,
  19885. bottom: 0.04
  19886. }
  19887. },
  19888. chow: {
  19889. height: math.unit(8 + 11 / 12, "feet"),
  19890. weight: math.unit(450, "lb"),
  19891. name: "Chow",
  19892. image: {
  19893. source: "./media/characters/tahajin/chow.svg",
  19894. extra: 660 / 640,
  19895. bottom: 0.015
  19896. }
  19897. },
  19898. demiNaga: {
  19899. height: math.unit(6 + 8 / 12, "feet"),
  19900. weight: math.unit(300, "lb"),
  19901. name: "Demi Naga",
  19902. image: {
  19903. source: "./media/characters/tahajin/demi-naga.svg",
  19904. extra: 643 / 615,
  19905. bottom: 0.1
  19906. }
  19907. },
  19908. data: {
  19909. height: math.unit(5, "inches"),
  19910. weight: math.unit(0.1, "lb"),
  19911. name: "Data",
  19912. image: {
  19913. source: "./media/characters/tahajin/data.svg"
  19914. }
  19915. },
  19916. fluu: {
  19917. height: math.unit(5 + 7 / 12, "feet"),
  19918. weight: math.unit(140, "lb"),
  19919. name: "Fluu",
  19920. image: {
  19921. source: "./media/characters/tahajin/fluu.svg",
  19922. extra: 628 / 592,
  19923. bottom: 0.02
  19924. }
  19925. },
  19926. starWarrior: {
  19927. height: math.unit(4 + 5 / 12, "feet"),
  19928. weight: math.unit(50, "lb"),
  19929. name: "Star Warrior",
  19930. image: {
  19931. source: "./media/characters/tahajin/star-warrior.svg"
  19932. }
  19933. },
  19934. },
  19935. [
  19936. {
  19937. name: "Normal",
  19938. height: math.unit(25 + 6 / 12, "feet"),
  19939. default: true
  19940. },
  19941. ]
  19942. ))
  19943. characterMakers.push(() => makeCharacter(
  19944. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  19945. {
  19946. front: {
  19947. height: math.unit(8, "feet"),
  19948. weight: math.unit(350, "lb"),
  19949. name: "Front",
  19950. image: {
  19951. source: "./media/characters/gabira/front.svg",
  19952. extra: 608 / 580,
  19953. bottom: 0.03
  19954. }
  19955. },
  19956. back: {
  19957. height: math.unit(8, "feet"),
  19958. weight: math.unit(350, "lb"),
  19959. name: "Back",
  19960. image: {
  19961. source: "./media/characters/gabira/back.svg",
  19962. extra: 608 / 580,
  19963. bottom: 0.03
  19964. }
  19965. },
  19966. },
  19967. [
  19968. {
  19969. name: "Normal",
  19970. height: math.unit(8, "feet"),
  19971. default: true
  19972. },
  19973. ]
  19974. ))
  19975. characterMakers.push(() => makeCharacter(
  19976. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  19977. {
  19978. front: {
  19979. height: math.unit(5 + 3 / 12, "feet"),
  19980. weight: math.unit(137, "lb"),
  19981. name: "Front",
  19982. image: {
  19983. source: "./media/characters/sasha-katraine/front.svg",
  19984. bottom: 0.045
  19985. }
  19986. },
  19987. },
  19988. [
  19989. {
  19990. name: "Micro",
  19991. height: math.unit(5, "inches")
  19992. },
  19993. {
  19994. name: "Normal",
  19995. height: math.unit(5 + 3 / 12, "feet"),
  19996. default: true
  19997. },
  19998. ]
  19999. ))
  20000. characterMakers.push(() => makeCharacter(
  20001. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20002. {
  20003. side: {
  20004. height: math.unit(4, "inches"),
  20005. weight: math.unit(200, "grams"),
  20006. name: "Side",
  20007. image: {
  20008. source: "./media/characters/der/side.svg",
  20009. extra: 719 / 400,
  20010. bottom: 30.6 / 749.9187
  20011. }
  20012. },
  20013. },
  20014. [
  20015. {
  20016. name: "Micro",
  20017. height: math.unit(4, "inches"),
  20018. default: true
  20019. },
  20020. ]
  20021. ))
  20022. characterMakers.push(() => makeCharacter(
  20023. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20024. {
  20025. side: {
  20026. height: math.unit(30, "meters"),
  20027. weight: math.unit(700, "tonnes"),
  20028. name: "Side",
  20029. image: {
  20030. source: "./media/characters/fixerdragon/side.svg",
  20031. extra: (1293.0514 - 116.03) / 1106.86,
  20032. bottom: 116.03 / 1293.0514
  20033. }
  20034. },
  20035. },
  20036. [
  20037. {
  20038. name: "Planck",
  20039. height: math.unit(1.6e-35, "meters")
  20040. },
  20041. {
  20042. name: "Micro",
  20043. height: math.unit(0.4, "meters")
  20044. },
  20045. {
  20046. name: "Normal",
  20047. height: math.unit(30, "meters"),
  20048. default: true
  20049. },
  20050. {
  20051. name: "Megamacro",
  20052. height: math.unit(1.2, "megameters")
  20053. },
  20054. {
  20055. name: "Teramacro",
  20056. height: math.unit(130, "terameters")
  20057. },
  20058. {
  20059. name: "Yottamacro",
  20060. height: math.unit(6200, "yottameters")
  20061. },
  20062. ]
  20063. ));
  20064. characterMakers.push(() => makeCharacter(
  20065. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20066. {
  20067. front: {
  20068. height: math.unit(8, "feet"),
  20069. weight: math.unit(250, "lb"),
  20070. name: "Front",
  20071. image: {
  20072. source: "./media/characters/kite/front.svg",
  20073. extra: 2796 / 2659,
  20074. bottom: 0.002
  20075. }
  20076. },
  20077. },
  20078. [
  20079. {
  20080. name: "Normal",
  20081. height: math.unit(8, "feet"),
  20082. default: true
  20083. },
  20084. {
  20085. name: "Macro",
  20086. height: math.unit(360, "feet")
  20087. },
  20088. {
  20089. name: "Megamacro",
  20090. height: math.unit(1500, "feet")
  20091. },
  20092. ]
  20093. ))
  20094. characterMakers.push(() => makeCharacter(
  20095. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20096. {
  20097. front: {
  20098. height: math.unit(5 + 10 / 12, "feet"),
  20099. weight: math.unit(150, "lb"),
  20100. name: "Front",
  20101. image: {
  20102. source: "./media/characters/poojawa-vynar/front.svg",
  20103. extra: (1506.1547 - 55) / 1356.6,
  20104. bottom: 55 / 1506.1547
  20105. }
  20106. },
  20107. frontTailless: {
  20108. height: math.unit(5 + 10 / 12, "feet"),
  20109. weight: math.unit(150, "lb"),
  20110. name: "Front (Tailless)",
  20111. image: {
  20112. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20113. extra: (1506.1547 - 55) / 1356.6,
  20114. bottom: 55 / 1506.1547
  20115. }
  20116. },
  20117. },
  20118. [
  20119. {
  20120. name: "Normal",
  20121. height: math.unit(5 + 10 / 12, "feet"),
  20122. default: true
  20123. },
  20124. ]
  20125. ))
  20126. characterMakers.push(() => makeCharacter(
  20127. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20128. {
  20129. front: {
  20130. height: math.unit(293, "meters"),
  20131. weight: math.unit(70400, "tons"),
  20132. name: "Front",
  20133. image: {
  20134. source: "./media/characters/violette/front.svg",
  20135. extra: 1227 / 1180,
  20136. bottom: 0.005
  20137. }
  20138. },
  20139. back: {
  20140. height: math.unit(293, "meters"),
  20141. weight: math.unit(70400, "tons"),
  20142. name: "Back",
  20143. image: {
  20144. source: "./media/characters/violette/back.svg",
  20145. extra: 1227 / 1180,
  20146. bottom: 0.005
  20147. }
  20148. },
  20149. },
  20150. [
  20151. {
  20152. name: "Macro",
  20153. height: math.unit(293, "meters"),
  20154. default: true
  20155. },
  20156. ]
  20157. ))
  20158. characterMakers.push(() => makeCharacter(
  20159. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20160. {
  20161. front: {
  20162. height: math.unit(1050, "feet"),
  20163. weight: math.unit(200000, "tons"),
  20164. name: "Front",
  20165. image: {
  20166. source: "./media/characters/alessandra/front.svg",
  20167. extra: 960 / 912,
  20168. bottom: 0.06
  20169. }
  20170. },
  20171. },
  20172. [
  20173. {
  20174. name: "Macro",
  20175. height: math.unit(1050, "feet")
  20176. },
  20177. {
  20178. name: "Macro+",
  20179. height: math.unit(900, "meters"),
  20180. default: true
  20181. },
  20182. ]
  20183. ))
  20184. characterMakers.push(() => makeCharacter(
  20185. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20186. {
  20187. front: {
  20188. height: math.unit(5, "feet"),
  20189. weight: math.unit(187, "lb"),
  20190. name: "Front",
  20191. image: {
  20192. source: "./media/characters/person/front.svg",
  20193. extra: 3087 / 2945,
  20194. bottom: 91 / 3181
  20195. }
  20196. },
  20197. },
  20198. [
  20199. {
  20200. name: "Micro",
  20201. height: math.unit(3, "inches")
  20202. },
  20203. {
  20204. name: "Normal",
  20205. height: math.unit(5, "feet"),
  20206. default: true
  20207. },
  20208. {
  20209. name: "Macro",
  20210. height: math.unit(90, "feet")
  20211. },
  20212. {
  20213. name: "Max Size",
  20214. height: math.unit(280, "feet")
  20215. },
  20216. ]
  20217. ))
  20218. characterMakers.push(() => makeCharacter(
  20219. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20220. {
  20221. front: {
  20222. height: math.unit(4.5, "meters"),
  20223. weight: math.unit(3200, "lb"),
  20224. name: "Front",
  20225. image: {
  20226. source: "./media/characters/ty/front.svg",
  20227. extra: 1038 / 960,
  20228. bottom: 31.156 / 1068
  20229. }
  20230. },
  20231. back: {
  20232. height: math.unit(4.5, "meters"),
  20233. weight: math.unit(3200, "lb"),
  20234. name: "Back",
  20235. image: {
  20236. source: "./media/characters/ty/back.svg",
  20237. extra: 1044 / 966,
  20238. bottom: 7.48 / 1049
  20239. }
  20240. },
  20241. },
  20242. [
  20243. {
  20244. name: "Normal",
  20245. height: math.unit(4.5, "meters"),
  20246. default: true
  20247. },
  20248. ]
  20249. ))
  20250. characterMakers.push(() => makeCharacter(
  20251. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20252. {
  20253. front: {
  20254. height: math.unit(5 + 4 / 12, "feet"),
  20255. weight: math.unit(115, "lb"),
  20256. name: "Front",
  20257. image: {
  20258. source: "./media/characters/rocky/front.svg",
  20259. extra: 1012 / 975,
  20260. bottom: 54 / 1066
  20261. }
  20262. },
  20263. },
  20264. [
  20265. {
  20266. name: "Normal",
  20267. height: math.unit(5 + 4 / 12, "feet"),
  20268. default: true
  20269. },
  20270. ]
  20271. ))
  20272. characterMakers.push(() => makeCharacter(
  20273. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20274. {
  20275. upright: {
  20276. height: math.unit(6, "meters"),
  20277. weight: math.unit(4000, "kg"),
  20278. name: "Upright",
  20279. image: {
  20280. source: "./media/characters/ruin/upright.svg",
  20281. extra: 668 / 661,
  20282. bottom: 42 / 799.8396
  20283. }
  20284. },
  20285. },
  20286. [
  20287. {
  20288. name: "Normal",
  20289. height: math.unit(6, "meters"),
  20290. default: true
  20291. },
  20292. ]
  20293. ))
  20294. characterMakers.push(() => makeCharacter(
  20295. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20296. {
  20297. front: {
  20298. height: math.unit(5, "feet"),
  20299. weight: math.unit(106, "lb"),
  20300. name: "Front",
  20301. image: {
  20302. source: "./media/characters/robin/front.svg",
  20303. extra: 862 / 799,
  20304. bottom: 42.4 / 914.8856
  20305. }
  20306. },
  20307. },
  20308. [
  20309. {
  20310. name: "Normal",
  20311. height: math.unit(5, "feet"),
  20312. default: true
  20313. },
  20314. ]
  20315. ))
  20316. characterMakers.push(() => makeCharacter(
  20317. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20318. {
  20319. side: {
  20320. height: math.unit(3, "feet"),
  20321. weight: math.unit(225, "lb"),
  20322. name: "Side",
  20323. image: {
  20324. source: "./media/characters/saian/side.svg",
  20325. extra: 566 / 356,
  20326. bottom: 79.7 / 643
  20327. }
  20328. },
  20329. maw: {
  20330. height: math.unit(2.85, "feet"),
  20331. name: "Maw",
  20332. image: {
  20333. source: "./media/characters/saian/maw.svg"
  20334. }
  20335. },
  20336. },
  20337. [
  20338. {
  20339. name: "Normal",
  20340. height: math.unit(3, "feet"),
  20341. default: true
  20342. },
  20343. ]
  20344. ))
  20345. characterMakers.push(() => makeCharacter(
  20346. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20347. {
  20348. side: {
  20349. height: math.unit(8, "feet"),
  20350. weight: math.unit(300, "lb"),
  20351. name: "Side",
  20352. image: {
  20353. source: "./media/characters/equus-silvermane/side.svg",
  20354. extra: 2176 / 2050,
  20355. bottom: 65.7 / 2245
  20356. }
  20357. },
  20358. front: {
  20359. height: math.unit(8, "feet"),
  20360. weight: math.unit(300, "lb"),
  20361. name: "Front",
  20362. image: {
  20363. source: "./media/characters/equus-silvermane/front.svg",
  20364. extra: 4633 / 4400,
  20365. bottom: 71.3 / 4706.915
  20366. }
  20367. },
  20368. sideStepping: {
  20369. height: math.unit(8, "feet"),
  20370. weight: math.unit(300, "lb"),
  20371. name: "Side (Stepping)",
  20372. image: {
  20373. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20374. extra: 1968 / 1860,
  20375. bottom: 16.4 / 1989
  20376. }
  20377. },
  20378. },
  20379. [
  20380. {
  20381. name: "Normal",
  20382. height: math.unit(8, "feet")
  20383. },
  20384. {
  20385. name: "Minimacro",
  20386. height: math.unit(75, "feet"),
  20387. default: true
  20388. },
  20389. {
  20390. name: "Macro",
  20391. height: math.unit(150, "feet")
  20392. },
  20393. {
  20394. name: "Macro+",
  20395. height: math.unit(1000, "feet")
  20396. },
  20397. {
  20398. name: "Megamacro",
  20399. height: math.unit(1, "mile")
  20400. },
  20401. ]
  20402. ))
  20403. characterMakers.push(() => makeCharacter(
  20404. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20405. {
  20406. side: {
  20407. height: math.unit(20, "feet"),
  20408. weight: math.unit(30000, "kg"),
  20409. name: "Side",
  20410. image: {
  20411. source: "./media/characters/windar/side.svg",
  20412. extra: 1491 / 1248,
  20413. bottom: 82.56 / 1568
  20414. }
  20415. },
  20416. },
  20417. [
  20418. {
  20419. name: "Normal",
  20420. height: math.unit(20, "feet"),
  20421. default: true
  20422. },
  20423. ]
  20424. ))
  20425. characterMakers.push(() => makeCharacter(
  20426. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20427. {
  20428. side: {
  20429. height: math.unit(15.66, "feet"),
  20430. weight: math.unit(150, "lb"),
  20431. name: "Side",
  20432. image: {
  20433. source: "./media/characters/melody/side.svg",
  20434. extra: 1097 / 944,
  20435. bottom: 11.8 / 1109
  20436. }
  20437. },
  20438. sideOutfit: {
  20439. height: math.unit(15.66, "feet"),
  20440. weight: math.unit(150, "lb"),
  20441. name: "Side (Outfit)",
  20442. image: {
  20443. source: "./media/characters/melody/side-outfit.svg",
  20444. extra: 1097 / 944,
  20445. bottom: 11.8 / 1109
  20446. }
  20447. },
  20448. },
  20449. [
  20450. {
  20451. name: "Normal",
  20452. height: math.unit(15.66, "feet"),
  20453. default: true
  20454. },
  20455. ]
  20456. ))
  20457. characterMakers.push(() => makeCharacter(
  20458. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20459. {
  20460. front: {
  20461. height: math.unit(8, "feet"),
  20462. weight: math.unit(325, "lb"),
  20463. name: "Front",
  20464. image: {
  20465. source: "./media/characters/windera/front.svg",
  20466. extra: 3180 / 2845,
  20467. bottom: 178 / 3365
  20468. }
  20469. },
  20470. },
  20471. [
  20472. {
  20473. name: "Normal",
  20474. height: math.unit(8, "feet"),
  20475. default: true
  20476. },
  20477. ]
  20478. ))
  20479. characterMakers.push(() => makeCharacter(
  20480. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20481. {
  20482. front: {
  20483. height: math.unit(28.75, "feet"),
  20484. weight: math.unit(2000, "kg"),
  20485. name: "Front",
  20486. image: {
  20487. source: "./media/characters/sonear/front.svg",
  20488. extra: 1041.1 / 964.9,
  20489. bottom: 53.7 / 1096.6
  20490. }
  20491. },
  20492. },
  20493. [
  20494. {
  20495. name: "Normal",
  20496. height: math.unit(28.75, "feet"),
  20497. default: true
  20498. },
  20499. ]
  20500. ))
  20501. characterMakers.push(() => makeCharacter(
  20502. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20503. {
  20504. side: {
  20505. height: math.unit(25.5, "feet"),
  20506. weight: math.unit(23000, "kg"),
  20507. name: "Side",
  20508. image: {
  20509. source: "./media/characters/kanara/side.svg"
  20510. }
  20511. },
  20512. },
  20513. [
  20514. {
  20515. name: "Normal",
  20516. height: math.unit(25.5, "feet"),
  20517. default: true
  20518. },
  20519. ]
  20520. ))
  20521. characterMakers.push(() => makeCharacter(
  20522. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20523. {
  20524. side: {
  20525. height: math.unit(10, "feet"),
  20526. weight: math.unit(1000, "kg"),
  20527. name: "Side",
  20528. image: {
  20529. source: "./media/characters/ereus/side.svg",
  20530. extra: 1157 / 959,
  20531. bottom: 153 / 1312.5
  20532. }
  20533. },
  20534. },
  20535. [
  20536. {
  20537. name: "Normal",
  20538. height: math.unit(10, "feet"),
  20539. default: true
  20540. },
  20541. ]
  20542. ))
  20543. characterMakers.push(() => makeCharacter(
  20544. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20545. {
  20546. side: {
  20547. height: math.unit(4.5, "feet"),
  20548. weight: math.unit(500, "lb"),
  20549. name: "Side",
  20550. image: {
  20551. source: "./media/characters/e-ter/side.svg",
  20552. extra: 1550 / 1248,
  20553. bottom: 146 / 1694
  20554. }
  20555. },
  20556. },
  20557. [
  20558. {
  20559. name: "Normal",
  20560. height: math.unit(4.5, "feet"),
  20561. default: true
  20562. },
  20563. ]
  20564. ))
  20565. characterMakers.push(() => makeCharacter(
  20566. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20567. {
  20568. side: {
  20569. height: math.unit(9.7, "feet"),
  20570. weight: math.unit(4000, "kg"),
  20571. name: "Side",
  20572. image: {
  20573. source: "./media/characters/yamie/side.svg"
  20574. }
  20575. },
  20576. },
  20577. [
  20578. {
  20579. name: "Normal",
  20580. height: math.unit(9.7, "feet"),
  20581. default: true
  20582. },
  20583. ]
  20584. ))
  20585. characterMakers.push(() => makeCharacter(
  20586. { name: "Anders", species: ["unicorn"], tags: ["anthro"] },
  20587. {
  20588. front: {
  20589. height: math.unit(50, "feet"),
  20590. weight: math.unit(50000, "kg"),
  20591. name: "Front",
  20592. image: {
  20593. source: "./media/characters/anders/front.svg",
  20594. extra: 570 / 539,
  20595. bottom: 14.7 / 586.7
  20596. }
  20597. },
  20598. },
  20599. [
  20600. {
  20601. name: "Large",
  20602. height: math.unit(50, "feet")
  20603. },
  20604. {
  20605. name: "Macro",
  20606. height: math.unit(2000, "feet"),
  20607. default: true
  20608. },
  20609. {
  20610. name: "Megamacro",
  20611. height: math.unit(12, "miles")
  20612. },
  20613. ]
  20614. ))
  20615. characterMakers.push(() => makeCharacter(
  20616. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20617. {
  20618. front: {
  20619. height: math.unit(7 + 2 / 12, "feet"),
  20620. weight: math.unit(300, "lb"),
  20621. name: "Front",
  20622. image: {
  20623. source: "./media/characters/reban/front.svg",
  20624. extra: 516 / 487,
  20625. bottom: 42.82 / 558.356
  20626. }
  20627. },
  20628. dick: {
  20629. height: math.unit(7 / 5, "feet"),
  20630. name: "Dick",
  20631. image: {
  20632. source: "./media/characters/reban/dick.svg"
  20633. }
  20634. },
  20635. },
  20636. [
  20637. {
  20638. name: "Natural Height",
  20639. height: math.unit(7 + 2 / 12, "feet")
  20640. },
  20641. {
  20642. name: "Macro",
  20643. height: math.unit(500, "feet"),
  20644. default: true
  20645. },
  20646. {
  20647. name: "Canon Height",
  20648. height: math.unit(50, "AU")
  20649. },
  20650. ]
  20651. ))
  20652. characterMakers.push(() => makeCharacter(
  20653. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  20654. {
  20655. front: {
  20656. height: math.unit(6, "feet"),
  20657. weight: math.unit(150, "lb"),
  20658. name: "Front",
  20659. image: {
  20660. source: "./media/characters/terrance-keayes/front.svg",
  20661. extra: 1.005,
  20662. bottom: 151 / 1615
  20663. }
  20664. },
  20665. side: {
  20666. height: math.unit(6, "feet"),
  20667. weight: math.unit(150, "lb"),
  20668. name: "Side",
  20669. image: {
  20670. source: "./media/characters/terrance-keayes/side.svg",
  20671. extra: 1.005,
  20672. bottom: 129.4 / 1544
  20673. }
  20674. },
  20675. back: {
  20676. height: math.unit(6, "feet"),
  20677. weight: math.unit(150, "lb"),
  20678. name: "Back",
  20679. image: {
  20680. source: "./media/characters/terrance-keayes/back.svg",
  20681. extra: 1.005,
  20682. bottom: 58.4 / 1557.3
  20683. }
  20684. },
  20685. dick: {
  20686. height: math.unit(6 * 0.208, "feet"),
  20687. name: "Dick",
  20688. image: {
  20689. source: "./media/characters/terrance-keayes/dick.svg"
  20690. }
  20691. },
  20692. },
  20693. [
  20694. {
  20695. name: "Canon Height",
  20696. height: math.unit(35, "miles"),
  20697. default: true
  20698. },
  20699. ]
  20700. ))
  20701. characterMakers.push(() => makeCharacter(
  20702. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  20703. {
  20704. front: {
  20705. height: math.unit(6, "feet"),
  20706. weight: math.unit(150, "lb"),
  20707. name: "Front",
  20708. image: {
  20709. source: "./media/characters/ofelia/front.svg",
  20710. extra: 546 / 541,
  20711. bottom: 39 / 583
  20712. }
  20713. },
  20714. back: {
  20715. height: math.unit(6, "feet"),
  20716. weight: math.unit(150, "lb"),
  20717. name: "Back",
  20718. image: {
  20719. source: "./media/characters/ofelia/back.svg",
  20720. extra: 564 / 559.5,
  20721. bottom: 8.69 / 573.02
  20722. }
  20723. },
  20724. maw: {
  20725. height: math.unit(1, "feet"),
  20726. name: "Maw",
  20727. image: {
  20728. source: "./media/characters/ofelia/maw.svg"
  20729. }
  20730. },
  20731. foot: {
  20732. height: math.unit(1.949, "feet"),
  20733. name: "Foot",
  20734. image: {
  20735. source: "./media/characters/ofelia/foot.svg"
  20736. }
  20737. },
  20738. },
  20739. [
  20740. {
  20741. name: "Canon Height",
  20742. height: math.unit(2000, "miles"),
  20743. default: true
  20744. },
  20745. ]
  20746. ))
  20747. characterMakers.push(() => makeCharacter(
  20748. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  20749. {
  20750. front: {
  20751. height: math.unit(6, "feet"),
  20752. weight: math.unit(150, "lb"),
  20753. name: "Front",
  20754. image: {
  20755. source: "./media/characters/samuel/front.svg",
  20756. extra: 265 / 258,
  20757. bottom: 2 / 266.1566
  20758. }
  20759. },
  20760. },
  20761. [
  20762. {
  20763. name: "Macro",
  20764. height: math.unit(100, "feet"),
  20765. default: true
  20766. },
  20767. {
  20768. name: "Full Size",
  20769. height: math.unit(1000, "miles")
  20770. },
  20771. ]
  20772. ))
  20773. characterMakers.push(() => makeCharacter(
  20774. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  20775. {
  20776. front: {
  20777. height: math.unit(6, "feet"),
  20778. weight: math.unit(300, "lb"),
  20779. name: "Front",
  20780. image: {
  20781. source: "./media/characters/beishir-kiel/front.svg",
  20782. extra: 569 / 547,
  20783. bottom: 41.9 / 609
  20784. }
  20785. },
  20786. maw: {
  20787. height: math.unit(6 * 0.202, "feet"),
  20788. name: "Maw",
  20789. image: {
  20790. source: "./media/characters/beishir-kiel/maw.svg"
  20791. }
  20792. },
  20793. },
  20794. [
  20795. {
  20796. name: "Macro",
  20797. height: math.unit(300, "feet"),
  20798. default: true
  20799. },
  20800. ]
  20801. ))
  20802. characterMakers.push(() => makeCharacter(
  20803. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  20804. {
  20805. front: {
  20806. height: math.unit(5 + 8 / 12, "feet"),
  20807. weight: math.unit(120, "lb"),
  20808. name: "Front",
  20809. image: {
  20810. source: "./media/characters/logan-grey/front.svg",
  20811. extra: 2539 / 2393,
  20812. bottom: 97.6 / 2636.37
  20813. }
  20814. },
  20815. frontAlt: {
  20816. height: math.unit(5 + 8 / 12, "feet"),
  20817. weight: math.unit(120, "lb"),
  20818. name: "Front (Alt)",
  20819. image: {
  20820. source: "./media/characters/logan-grey/front-alt.svg",
  20821. extra: 958 / 893,
  20822. bottom: 15 / 970.768
  20823. }
  20824. },
  20825. back: {
  20826. height: math.unit(5 + 8 / 12, "feet"),
  20827. weight: math.unit(120, "lb"),
  20828. name: "Back",
  20829. image: {
  20830. source: "./media/characters/logan-grey/back.svg",
  20831. extra: 958 / 893,
  20832. bottom: 2.1881 / 970.9788
  20833. }
  20834. },
  20835. dick: {
  20836. height: math.unit(1.437, "feet"),
  20837. name: "Dick",
  20838. image: {
  20839. source: "./media/characters/logan-grey/dick.svg"
  20840. }
  20841. },
  20842. },
  20843. [
  20844. {
  20845. name: "Normal",
  20846. height: math.unit(5 + 8 / 12, "feet")
  20847. },
  20848. {
  20849. name: "The 500 Foot Femboy",
  20850. height: math.unit(500, "feet"),
  20851. default: true
  20852. },
  20853. {
  20854. name: "Megmacro",
  20855. height: math.unit(20, "miles")
  20856. },
  20857. ]
  20858. ))
  20859. characterMakers.push(() => makeCharacter(
  20860. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  20861. {
  20862. front: {
  20863. height: math.unit(8 + 2 / 12, "feet"),
  20864. weight: math.unit(275, "lb"),
  20865. name: "Front",
  20866. image: {
  20867. source: "./media/characters/draganta/front.svg",
  20868. extra: 1177 / 1135,
  20869. bottom: 33.46 / 1212.1
  20870. }
  20871. },
  20872. },
  20873. [
  20874. {
  20875. name: "Normal",
  20876. height: math.unit(8 + 6 / 12, "feet"),
  20877. default: true
  20878. },
  20879. {
  20880. name: "Macro",
  20881. height: math.unit(150, "feet")
  20882. },
  20883. {
  20884. name: "Megamacro",
  20885. height: math.unit(1000, "miles")
  20886. },
  20887. ]
  20888. ))
  20889. characterMakers.push(() => makeCharacter(
  20890. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  20891. {
  20892. front: {
  20893. height: math.unit(1.72, "m"),
  20894. weight: math.unit(80, "lb"),
  20895. name: "Front",
  20896. image: {
  20897. source: "./media/characters/voski/front.svg",
  20898. extra: 2076.22 / 2022.4,
  20899. bottom: 102.7 / 2177.3866
  20900. }
  20901. },
  20902. frontNsfw: {
  20903. height: math.unit(1.72, "m"),
  20904. weight: math.unit(80, "lb"),
  20905. name: "Front (NSFW)",
  20906. image: {
  20907. source: "./media/characters/voski/front-nsfw.svg",
  20908. extra: 2076.22 / 2022.4,
  20909. bottom: 102.7 / 2177.3866
  20910. }
  20911. },
  20912. back: {
  20913. height: math.unit(1.72, "m"),
  20914. weight: math.unit(80, "lb"),
  20915. name: "Back",
  20916. image: {
  20917. source: "./media/characters/voski/back.svg",
  20918. extra: 2104 / 2051,
  20919. bottom: 10.45 / 2113.63
  20920. }
  20921. },
  20922. },
  20923. [
  20924. {
  20925. name: "Normal",
  20926. height: math.unit(1.72, "m")
  20927. },
  20928. {
  20929. name: "Macro",
  20930. height: math.unit(55, "m"),
  20931. default: true
  20932. },
  20933. {
  20934. name: "Macro+",
  20935. height: math.unit(300, "m")
  20936. },
  20937. {
  20938. name: "Macro++",
  20939. height: math.unit(700, "m")
  20940. },
  20941. {
  20942. name: "Macro+++",
  20943. height: math.unit(4500, "m")
  20944. },
  20945. {
  20946. name: "Macro++++",
  20947. height: math.unit(45, "km")
  20948. },
  20949. {
  20950. name: "Macro+++++",
  20951. height: math.unit(1220, "km")
  20952. },
  20953. ]
  20954. ))
  20955. characterMakers.push(() => makeCharacter(
  20956. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  20957. {
  20958. front: {
  20959. height: math.unit(2.3, "m"),
  20960. weight: math.unit(304, "kg"),
  20961. name: "Front",
  20962. image: {
  20963. source: "./media/characters/icowom-lee/front.svg",
  20964. extra: 3076 / 2933,
  20965. bottom: 51.4 / 3125.1889
  20966. }
  20967. },
  20968. },
  20969. [
  20970. {
  20971. name: "Normal",
  20972. height: math.unit(2.3, "meters"),
  20973. default: true
  20974. },
  20975. {
  20976. name: "Macro",
  20977. height: math.unit(94, "meters"),
  20978. default: true
  20979. },
  20980. ]
  20981. ))
  20982. characterMakers.push(() => makeCharacter(
  20983. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  20984. {
  20985. front: {
  20986. height: math.unit(22, "meters"),
  20987. weight: math.unit(21000, "kg"),
  20988. name: "Front",
  20989. image: {
  20990. source: "./media/characters/shock-diamond/front.svg",
  20991. extra: 2204 / 2053,
  20992. bottom: 65 / 2239.47
  20993. }
  20994. },
  20995. frontNude: {
  20996. height: math.unit(22, "meters"),
  20997. weight: math.unit(21000, "kg"),
  20998. name: "Front (Nude)",
  20999. image: {
  21000. source: "./media/characters/shock-diamond/front-nude.svg",
  21001. extra: 2514 / 2285,
  21002. bottom: 13 / 2527.56
  21003. }
  21004. },
  21005. },
  21006. [
  21007. {
  21008. name: "Normal",
  21009. height: math.unit(3, "meters")
  21010. },
  21011. {
  21012. name: "Macro",
  21013. height: math.unit(22, "meters"),
  21014. default: true
  21015. },
  21016. ]
  21017. ))
  21018. characterMakers.push(() => makeCharacter(
  21019. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21020. {
  21021. front: {
  21022. height: math.unit(5 + 4 / 12, "feet"),
  21023. weight: math.unit(120, "lb"),
  21024. name: "Front",
  21025. image: {
  21026. source: "./media/characters/rory/front.svg",
  21027. extra: 589 / 556,
  21028. bottom: 45.7 / 635.76
  21029. }
  21030. },
  21031. frontNude: {
  21032. height: math.unit(5 + 4 / 12, "feet"),
  21033. weight: math.unit(120, "lb"),
  21034. name: "Front (Nude)",
  21035. image: {
  21036. source: "./media/characters/rory/front-nude.svg",
  21037. extra: 589 / 556,
  21038. bottom: 45.7 / 635.76
  21039. }
  21040. },
  21041. side: {
  21042. height: math.unit(5 + 4 / 12, "feet"),
  21043. weight: math.unit(120, "lb"),
  21044. name: "Side",
  21045. image: {
  21046. source: "./media/characters/rory/side.svg",
  21047. extra: 597 / 564,
  21048. bottom: 55 / 653
  21049. }
  21050. },
  21051. back: {
  21052. height: math.unit(5 + 4 / 12, "feet"),
  21053. weight: math.unit(120, "lb"),
  21054. name: "Back",
  21055. image: {
  21056. source: "./media/characters/rory/back.svg",
  21057. extra: 620 / 585,
  21058. bottom: 8.86 / 630.43
  21059. }
  21060. },
  21061. dick: {
  21062. height: math.unit(0.86, "feet"),
  21063. name: "Dick",
  21064. image: {
  21065. source: "./media/characters/rory/dick.svg"
  21066. }
  21067. },
  21068. },
  21069. [
  21070. {
  21071. name: "Normal",
  21072. height: math.unit(5 + 4 / 12, "feet"),
  21073. default: true
  21074. },
  21075. {
  21076. name: "Macro",
  21077. height: math.unit(100, "feet")
  21078. },
  21079. {
  21080. name: "Macro+",
  21081. height: math.unit(140, "feet")
  21082. },
  21083. {
  21084. name: "Macro++",
  21085. height: math.unit(300, "feet")
  21086. },
  21087. ]
  21088. ))
  21089. characterMakers.push(() => makeCharacter(
  21090. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21091. {
  21092. front: {
  21093. height: math.unit(5 + 9 / 12, "feet"),
  21094. weight: math.unit(190, "lb"),
  21095. name: "Front",
  21096. image: {
  21097. source: "./media/characters/sprisk/front.svg",
  21098. extra: 1225 / 1180,
  21099. bottom: 42.7 / 1266.4
  21100. }
  21101. },
  21102. frontNsfw: {
  21103. height: math.unit(5 + 9 / 12, "feet"),
  21104. weight: math.unit(190, "lb"),
  21105. name: "Front (NSFW)",
  21106. image: {
  21107. source: "./media/characters/sprisk/front-nsfw.svg",
  21108. extra: 1225 / 1180,
  21109. bottom: 42.7 / 1266.4
  21110. }
  21111. },
  21112. back: {
  21113. height: math.unit(5 + 9 / 12, "feet"),
  21114. weight: math.unit(190, "lb"),
  21115. name: "Back",
  21116. image: {
  21117. source: "./media/characters/sprisk/back.svg",
  21118. extra: 1247 / 1200,
  21119. bottom: 5.6 / 1253.04
  21120. }
  21121. },
  21122. },
  21123. [
  21124. {
  21125. name: "Tiny",
  21126. height: math.unit(2, "inches")
  21127. },
  21128. {
  21129. name: "Normal",
  21130. height: math.unit(5 + 9 / 12, "feet"),
  21131. default: true
  21132. },
  21133. {
  21134. name: "Mini Macro",
  21135. height: math.unit(18, "feet")
  21136. },
  21137. {
  21138. name: "Macro",
  21139. height: math.unit(100, "feet")
  21140. },
  21141. {
  21142. name: "MACRO",
  21143. height: math.unit(50, "miles")
  21144. },
  21145. {
  21146. name: "M A C R O",
  21147. height: math.unit(300, "miles")
  21148. },
  21149. ]
  21150. ))
  21151. characterMakers.push(() => makeCharacter(
  21152. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21153. {
  21154. side: {
  21155. height: math.unit(15.6, "meters"),
  21156. weight: math.unit(700000, "kg"),
  21157. name: "Side",
  21158. image: {
  21159. source: "./media/characters/bunsen/side.svg",
  21160. extra: 1644 / 358
  21161. }
  21162. },
  21163. foot: {
  21164. height: math.unit(1.611 * 1644 / 358, "meter"),
  21165. name: "Foot",
  21166. image: {
  21167. source: "./media/characters/bunsen/foot.svg"
  21168. }
  21169. },
  21170. },
  21171. [
  21172. {
  21173. name: "Small",
  21174. height: math.unit(10, "feet")
  21175. },
  21176. {
  21177. name: "Normal",
  21178. height: math.unit(15.6, "meters"),
  21179. default: true
  21180. },
  21181. ]
  21182. ))
  21183. characterMakers.push(() => makeCharacter(
  21184. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21185. {
  21186. front: {
  21187. height: math.unit(4 + 11 / 12, "feet"),
  21188. weight: math.unit(140, "lb"),
  21189. name: "Front",
  21190. image: {
  21191. source: "./media/characters/sesh/front.svg",
  21192. extra: 3420 / 3231,
  21193. bottom: 72 / 3949.5
  21194. }
  21195. },
  21196. },
  21197. [
  21198. {
  21199. name: "Normal",
  21200. height: math.unit(4 + 11 / 12, "feet")
  21201. },
  21202. {
  21203. name: "Grown",
  21204. height: math.unit(15, "feet"),
  21205. default: true
  21206. },
  21207. {
  21208. name: "Macro",
  21209. height: math.unit(1500, "feet")
  21210. },
  21211. {
  21212. name: "Megamacro",
  21213. height: math.unit(30, "miles")
  21214. },
  21215. {
  21216. name: "Continental",
  21217. height: math.unit(3000, "miles")
  21218. },
  21219. {
  21220. name: "Gravity Mass",
  21221. height: math.unit(300000, "miles")
  21222. },
  21223. {
  21224. name: "Planet Buster",
  21225. height: math.unit(30000000, "miles")
  21226. },
  21227. {
  21228. name: "Big",
  21229. height: math.unit(3000000000, "miles")
  21230. },
  21231. ]
  21232. ))
  21233. characterMakers.push(() => makeCharacter(
  21234. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21235. {
  21236. front: {
  21237. height: math.unit(9, "feet"),
  21238. weight: math.unit(350, "lb"),
  21239. name: "Front",
  21240. image: {
  21241. source: "./media/characters/pepper/front.svg",
  21242. extra: 1448/1312,
  21243. bottom: 9.4/1457.88
  21244. }
  21245. },
  21246. back: {
  21247. height: math.unit(9, "feet"),
  21248. weight: math.unit(350, "lb"),
  21249. name: "Back",
  21250. image: {
  21251. source: "./media/characters/pepper/back.svg",
  21252. extra: 1423/1300,
  21253. bottom: 4.6/1429
  21254. }
  21255. },
  21256. maw: {
  21257. height: math.unit(0.932, "feet"),
  21258. name: "Maw",
  21259. image: {
  21260. source: "./media/characters/pepper/maw.svg"
  21261. }
  21262. },
  21263. },
  21264. [
  21265. {
  21266. name: "Normal",
  21267. height: math.unit(9, "feet"),
  21268. default: true
  21269. },
  21270. ]
  21271. ))
  21272. characterMakers.push(() => makeCharacter(
  21273. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21274. {
  21275. front: {
  21276. height: math.unit(6, "feet"),
  21277. weight: math.unit(150, "lb"),
  21278. name: "Front",
  21279. image: {
  21280. source: "./media/characters/maelstrom/front.svg",
  21281. extra: 2100/1883,
  21282. bottom: 94/2196.7
  21283. }
  21284. },
  21285. },
  21286. [
  21287. {
  21288. name: "Less Kaiju",
  21289. height: math.unit(200, "feet")
  21290. },
  21291. {
  21292. name: "Kaiju",
  21293. height: math.unit(400, "feet"),
  21294. default: true
  21295. },
  21296. {
  21297. name: "Kaiju-er",
  21298. height: math.unit(600, "feet")
  21299. },
  21300. ]
  21301. ))
  21302. characterMakers.push(() => makeCharacter(
  21303. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21304. {
  21305. front: {
  21306. height: math.unit(6 + 5/12, "feet"),
  21307. weight: math.unit(180, "lb"),
  21308. name: "Front",
  21309. image: {
  21310. source: "./media/characters/lexir/front.svg",
  21311. extra: 180/172,
  21312. bottom: 12/192
  21313. }
  21314. },
  21315. back: {
  21316. height: math.unit(6 + 5/12, "feet"),
  21317. weight: math.unit(180, "lb"),
  21318. name: "Back",
  21319. image: {
  21320. source: "./media/characters/lexir/back.svg",
  21321. extra: 183.84/175.5,
  21322. bottom: 3.1/187
  21323. }
  21324. },
  21325. },
  21326. [
  21327. {
  21328. name: "Very Smal",
  21329. height: math.unit(1, "nm")
  21330. },
  21331. {
  21332. name: "Normal",
  21333. height: math.unit(6 + 5/12, "feet"),
  21334. default: true
  21335. },
  21336. {
  21337. name: "Macro",
  21338. height: math.unit(1, "mile")
  21339. },
  21340. {
  21341. name: "Megamacro",
  21342. height: math.unit(50, "miles")
  21343. },
  21344. ]
  21345. ))
  21346. characterMakers.push(() => makeCharacter(
  21347. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21348. {
  21349. front: {
  21350. height: math.unit(1.5, "meters"),
  21351. weight: math.unit(100, "lb"),
  21352. name: "Front",
  21353. image: {
  21354. source: "./media/characters/maksio/front.svg",
  21355. extra: 1549/1531,
  21356. bottom: 123.7/1674.5429
  21357. }
  21358. },
  21359. back: {
  21360. height: math.unit(1.5, "meters"),
  21361. weight: math.unit(100, "lb"),
  21362. name: "Back",
  21363. image: {
  21364. source: "./media/characters/maksio/back.svg",
  21365. extra: 1541/1509,
  21366. bottom: 97/1639
  21367. }
  21368. },
  21369. hand: {
  21370. height: math.unit(0.621, "feet"),
  21371. name: "Hand",
  21372. image: {
  21373. source: "./media/characters/maksio/hand.svg"
  21374. }
  21375. },
  21376. foot: {
  21377. height: math.unit(1.611, "feet"),
  21378. name: "Foot",
  21379. image: {
  21380. source: "./media/characters/maksio/foot.svg"
  21381. }
  21382. },
  21383. },
  21384. [
  21385. {
  21386. name: "Shrunken",
  21387. height: math.unit(10, "cm")
  21388. },
  21389. {
  21390. name: "Normal",
  21391. height: math.unit(150, "cm"),
  21392. default: true
  21393. },
  21394. ]
  21395. ))
  21396. characterMakers.push(() => makeCharacter(
  21397. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21398. {
  21399. front: {
  21400. height: math.unit(100, "feet"),
  21401. name: "Front",
  21402. image: {
  21403. source: "./media/characters/erza-bear/front.svg",
  21404. extra: 2449/2390,
  21405. bottom: 46/2494
  21406. }
  21407. },
  21408. back: {
  21409. height: math.unit(100, "feet"),
  21410. name: "Back",
  21411. image: {
  21412. source: "./media/characters/erza-bear/back.svg",
  21413. extra: 2489/2430,
  21414. bottom: 85.4/2480
  21415. }
  21416. },
  21417. tail: {
  21418. height: math.unit(42, "feet"),
  21419. name: "Tail",
  21420. image: {
  21421. source: "./media/characters/erza-bear/tail.svg"
  21422. }
  21423. },
  21424. tongue: {
  21425. height: math.unit(8, "feet"),
  21426. name: "Tongue",
  21427. image: {
  21428. source: "./media/characters/erza-bear/tongue.svg"
  21429. }
  21430. },
  21431. dick: {
  21432. height: math.unit(10.5, "feet"),
  21433. name: "Dick",
  21434. image: {
  21435. source: "./media/characters/erza-bear/dick.svg"
  21436. }
  21437. },
  21438. dickVertical: {
  21439. height: math.unit(16.9, "feet"),
  21440. name: "Dick (Vertical)",
  21441. image: {
  21442. source: "./media/characters/erza-bear/dick-vertical.svg"
  21443. }
  21444. },
  21445. },
  21446. [
  21447. {
  21448. name: "Macro",
  21449. height: math.unit(100, "feet"),
  21450. default: true
  21451. },
  21452. ]
  21453. ))
  21454. characterMakers.push(() => makeCharacter(
  21455. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21456. {
  21457. front: {
  21458. height: math.unit(172, "cm"),
  21459. weight: math.unit(73, "kg"),
  21460. name: "Front",
  21461. image: {
  21462. source: "./media/characters/violet-flor/front.svg",
  21463. extra: 1530/1442,
  21464. bottom: 61.9/1588.8
  21465. }
  21466. },
  21467. back: {
  21468. height: math.unit(180, "cm"),
  21469. weight: math.unit(73, "kg"),
  21470. name: "Back",
  21471. image: {
  21472. source: "./media/characters/violet-flor/back.svg",
  21473. extra: 1692/1630,
  21474. bottom: 20/1712
  21475. }
  21476. },
  21477. },
  21478. [
  21479. {
  21480. name: "Normal",
  21481. height: math.unit(172, "cm"),
  21482. default: true
  21483. },
  21484. ]
  21485. ))
  21486. characterMakers.push(() => makeCharacter(
  21487. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21488. {
  21489. front: {
  21490. height: math.unit(6, "feet"),
  21491. weight: math.unit(220, "lb"),
  21492. name: "Front",
  21493. image: {
  21494. source: "./media/characters/lynn-rhea/front.svg",
  21495. extra: 310/273
  21496. }
  21497. },
  21498. back: {
  21499. height: math.unit(6, "feet"),
  21500. weight: math.unit(220, "lb"),
  21501. name: "Back",
  21502. image: {
  21503. source: "./media/characters/lynn-rhea/back.svg",
  21504. extra: 310/273
  21505. }
  21506. },
  21507. dicks: {
  21508. height: math.unit(0.9, "feet"),
  21509. name: "Dicks",
  21510. image: {
  21511. source: "./media/characters/lynn-rhea/dicks.svg"
  21512. }
  21513. },
  21514. slit: {
  21515. height: math.unit(0.4, "feet"),
  21516. name: "Slit",
  21517. image: {
  21518. source: "./media/characters/lynn-rhea/slit.svg"
  21519. }
  21520. },
  21521. },
  21522. [
  21523. {
  21524. name: "Micro",
  21525. height: math.unit(1, "inch")
  21526. },
  21527. {
  21528. name: "Macro",
  21529. height: math.unit(60, "feet"),
  21530. default: true
  21531. },
  21532. {
  21533. name: "Megamacro",
  21534. height: math.unit(2, "miles")
  21535. },
  21536. {
  21537. name: "Gigamacro",
  21538. height: math.unit(3, "earths")
  21539. },
  21540. {
  21541. name: "Galactic",
  21542. height: math.unit(0.8, "galaxies")
  21543. },
  21544. ]
  21545. ))
  21546. characterMakers.push(() => makeCharacter(
  21547. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21548. {
  21549. front: {
  21550. height: math.unit(1600, "feet"),
  21551. weight: math.unit(85758785169, "kg"),
  21552. name: "Front",
  21553. image: {
  21554. source: "./media/characters/valathos/front.svg",
  21555. extra: 1451/1339
  21556. }
  21557. },
  21558. },
  21559. [
  21560. {
  21561. name: "Macro",
  21562. height: math.unit(1600, "feet"),
  21563. default: true
  21564. },
  21565. ]
  21566. ))
  21567. characterMakers.push(() => makeCharacter(
  21568. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21569. {
  21570. front: {
  21571. height: math.unit(7 + 5/12, "feet"),
  21572. weight: math.unit(300, "lb"),
  21573. name: "Front",
  21574. image: {
  21575. source: "./media/characters/azula/front.svg",
  21576. extra: 3208/2880,
  21577. bottom: 80.2/3277
  21578. }
  21579. },
  21580. back: {
  21581. height: math.unit(7 + 5/12, "feet"),
  21582. weight: math.unit(300, "lb"),
  21583. name: "Back",
  21584. image: {
  21585. source: "./media/characters/azula/back.svg",
  21586. extra: 3169/2822,
  21587. bottom: 150.6/3321
  21588. }
  21589. },
  21590. },
  21591. [
  21592. {
  21593. name: "Normal",
  21594. height: math.unit(7 + 5/12, "feet"),
  21595. default: true
  21596. },
  21597. {
  21598. name: "Big",
  21599. height: math.unit(20, "feet")
  21600. },
  21601. ]
  21602. ))
  21603. characterMakers.push(() => makeCharacter(
  21604. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  21605. {
  21606. front: {
  21607. height: math.unit(5 + 1/12, "feet"),
  21608. weight: math.unit(110, "lb"),
  21609. name: "Front",
  21610. image: {
  21611. source: "./media/characters/rupert/front.svg",
  21612. extra: 1549/1495,
  21613. bottom: 54.2/1604.4
  21614. }
  21615. },
  21616. },
  21617. [
  21618. {
  21619. name: "Normal",
  21620. height: math.unit(5 + 1/12, "feet"),
  21621. default: true
  21622. },
  21623. ]
  21624. ))
  21625. characterMakers.push(() => makeCharacter(
  21626. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  21627. {
  21628. front: {
  21629. height: math.unit(8 + 4/12, "feet"),
  21630. weight: math.unit(350, "lb"),
  21631. name: "Front",
  21632. image: {
  21633. source: "./media/characters/sheera-castellar/front.svg",
  21634. extra: 1957/1894,
  21635. bottom: 26.97/1975.017
  21636. }
  21637. },
  21638. side: {
  21639. height: math.unit(8 + 4/12, "feet"),
  21640. weight: math.unit(350, "lb"),
  21641. name: "Side",
  21642. image: {
  21643. source: "./media/characters/sheera-castellar/side.svg",
  21644. extra: 1957/1894
  21645. }
  21646. },
  21647. back: {
  21648. height: math.unit(8 + 4/12, "feet"),
  21649. weight: math.unit(350, "lb"),
  21650. name: "Back",
  21651. image: {
  21652. source: "./media/characters/sheera-castellar/back.svg",
  21653. extra: 1957/1894
  21654. }
  21655. },
  21656. angled: {
  21657. height: math.unit((8 + 4/12) * (1 - 68/1875), "feet"),
  21658. weight: math.unit(350, "lb"),
  21659. name: "Angled",
  21660. image: {
  21661. source: "./media/characters/sheera-castellar/angled.svg",
  21662. extra: 1807/1707,
  21663. bottom: 68/1875
  21664. }
  21665. },
  21666. genitals: {
  21667. height: math.unit(2.2, "feet"),
  21668. name: "Genitals",
  21669. image: {
  21670. source: "./media/characters/sheera-castellar/genitals.svg"
  21671. }
  21672. },
  21673. },
  21674. [
  21675. {
  21676. name: "Normal",
  21677. height: math.unit(8 + 4/12, "feet")
  21678. },
  21679. {
  21680. name: "Macro",
  21681. height: math.unit(150, "feet"),
  21682. default: true
  21683. },
  21684. {
  21685. name: "Macro+",
  21686. height: math.unit(800, "feet")
  21687. },
  21688. ]
  21689. ))
  21690. characterMakers.push(() => makeCharacter(
  21691. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  21692. {
  21693. front: {
  21694. height: math.unit(6, "feet"),
  21695. weight: math.unit(150, "lb"),
  21696. name: "Front",
  21697. image: {
  21698. source: "./media/characters/jaipur/front.svg",
  21699. extra: 3860/3731,
  21700. bottom: 287/4140
  21701. }
  21702. },
  21703. back: {
  21704. height: math.unit(6, "feet"),
  21705. weight: math.unit(150, "lb"),
  21706. name: "Back",
  21707. image: {
  21708. source: "./media/characters/jaipur/back.svg",
  21709. extra: 4060/3930,
  21710. bottom: 151/4200
  21711. }
  21712. },
  21713. },
  21714. [
  21715. {
  21716. name: "Normal",
  21717. height: math.unit(1.85, "meters"),
  21718. default: true
  21719. },
  21720. {
  21721. name: "Macro",
  21722. height: math.unit(150, "meters")
  21723. },
  21724. {
  21725. name: "Macro+",
  21726. height: math.unit(0.5, "miles")
  21727. },
  21728. {
  21729. name: "Macro++",
  21730. height: math.unit(2.5, "miles")
  21731. },
  21732. {
  21733. name: "Macro+++",
  21734. height: math.unit(12, "miles")
  21735. },
  21736. {
  21737. name: "Macro++++",
  21738. height: math.unit(120, "miles")
  21739. },
  21740. {
  21741. name: "Macro+++++",
  21742. height: math.unit(1200, "miles")
  21743. },
  21744. ]
  21745. ))
  21746. characterMakers.push(() => makeCharacter(
  21747. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  21748. {
  21749. front: {
  21750. height: math.unit(6, "feet"),
  21751. weight: math.unit(150, "lb"),
  21752. name: "Front",
  21753. image: {
  21754. source: "./media/characters/sheila-wolf/front.svg",
  21755. extra: 1931/1808,
  21756. bottom: 29.5/1960
  21757. }
  21758. },
  21759. dick: {
  21760. height: math.unit(1.464, "feet"),
  21761. name: "Dick",
  21762. image: {
  21763. source: "./media/characters/sheila-wolf/dick.svg"
  21764. }
  21765. },
  21766. muzzle: {
  21767. height: math.unit(0.513, "feet"),
  21768. name: "Muzzle",
  21769. image: {
  21770. source: "./media/characters/sheila-wolf/muzzle.svg"
  21771. }
  21772. },
  21773. },
  21774. [
  21775. {
  21776. name: "Macro",
  21777. height: math.unit(70, "feet"),
  21778. default: true
  21779. },
  21780. ]
  21781. ))
  21782. characterMakers.push(() => makeCharacter(
  21783. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  21784. {
  21785. front: {
  21786. height: math.unit(32, "meters"),
  21787. weight: math.unit(300000, "kg"),
  21788. name: "Front",
  21789. image: {
  21790. source: "./media/characters/almor/front.svg",
  21791. extra: 1408/1322,
  21792. bottom: 94.6/1506.5
  21793. }
  21794. },
  21795. },
  21796. [
  21797. {
  21798. name: "Macro",
  21799. height: math.unit(32, "meters"),
  21800. default: true
  21801. },
  21802. ]
  21803. ))
  21804. characterMakers.push(() => makeCharacter(
  21805. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  21806. {
  21807. front: {
  21808. height: math.unit(7, "feet"),
  21809. weight: math.unit(200, "lb"),
  21810. name: "Front",
  21811. image: {
  21812. source: "./media/characters/silver/front.svg",
  21813. extra: 472.1/450.5,
  21814. bottom: 26.5/499.424
  21815. }
  21816. },
  21817. },
  21818. [
  21819. {
  21820. name: "Normal",
  21821. height: math.unit(7, "feet"),
  21822. default: true
  21823. },
  21824. {
  21825. name: "Macro",
  21826. height: math.unit(800, "feet")
  21827. },
  21828. {
  21829. name: "Megamacro",
  21830. height: math.unit(250, "miles")
  21831. },
  21832. ]
  21833. ))
  21834. characterMakers.push(() => makeCharacter(
  21835. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  21836. {
  21837. front: {
  21838. height: math.unit(6, "feet"),
  21839. weight: math.unit(150, "lb"),
  21840. name: "Front",
  21841. image: {
  21842. source: "./media/characters/pliskin/front.svg",
  21843. extra: 1469/1359,
  21844. bottom: 70/1540
  21845. }
  21846. },
  21847. },
  21848. [
  21849. {
  21850. name: "Micro",
  21851. height: math.unit(3, "inches")
  21852. },
  21853. {
  21854. name: "Normal",
  21855. height: math.unit(5 + 11/12, "feet"),
  21856. default: true
  21857. },
  21858. {
  21859. name: "Macro",
  21860. height: math.unit(120, "feet")
  21861. },
  21862. ]
  21863. ))
  21864. characterMakers.push(() => makeCharacter(
  21865. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  21866. {
  21867. front: {
  21868. height: math.unit(6, "feet"),
  21869. weight: math.unit(150, "lb"),
  21870. name: "Front",
  21871. image: {
  21872. source: "./media/characters/sammy/front.svg",
  21873. extra: 1193/1089,
  21874. bottom: 30.5/1226
  21875. }
  21876. },
  21877. },
  21878. [
  21879. {
  21880. name: "Macro",
  21881. height: math.unit(1700, "feet"),
  21882. default: true
  21883. },
  21884. {
  21885. name: "Examacro",
  21886. height: math.unit(2.5e9, "lightyears")
  21887. },
  21888. ]
  21889. ))
  21890. characterMakers.push(() => makeCharacter(
  21891. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  21892. {
  21893. front: {
  21894. height: math.unit(21, "meters"),
  21895. weight: math.unit(12, "tonnes"),
  21896. name: "Front",
  21897. image: {
  21898. source: "./media/characters/kuru/front.svg",
  21899. extra: 4301/3785,
  21900. bottom: 371.3/4691
  21901. }
  21902. },
  21903. },
  21904. [
  21905. {
  21906. name: "Macro",
  21907. height: math.unit(21, "meters"),
  21908. default: true
  21909. },
  21910. ]
  21911. ))
  21912. characterMakers.push(() => makeCharacter(
  21913. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  21914. {
  21915. front: {
  21916. height: math.unit(23, "meters"),
  21917. weight: math.unit(12.2, "tonnes"),
  21918. name: "Front",
  21919. image: {
  21920. source: "./media/characters/rakka/front.svg",
  21921. extra: 4670/4169,
  21922. bottom: 301/4968.7
  21923. }
  21924. },
  21925. },
  21926. [
  21927. {
  21928. name: "Macro",
  21929. height: math.unit(23, "meters"),
  21930. default: true
  21931. },
  21932. ]
  21933. ))
  21934. characterMakers.push(() => makeCharacter(
  21935. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  21936. {
  21937. front: {
  21938. height: math.unit(6, "feet"),
  21939. weight: math.unit(150, "lb"),
  21940. name: "Front",
  21941. image: {
  21942. source: "./media/characters/rhys-feline/front.svg",
  21943. extra: 2488/2308,
  21944. bottom: 35.67/2519.19
  21945. }
  21946. },
  21947. },
  21948. [
  21949. {
  21950. name: "Really Small",
  21951. height: math.unit(1, "nm")
  21952. },
  21953. {
  21954. name: "Micro",
  21955. height: math.unit(4, "inches")
  21956. },
  21957. {
  21958. name: "Normal",
  21959. height: math.unit(4 + 10/12, "feet"),
  21960. default: true
  21961. },
  21962. {
  21963. name: "Macro",
  21964. height: math.unit(100, "feet")
  21965. },
  21966. {
  21967. name: "Megamacto",
  21968. height: math.unit(50, "miles")
  21969. },
  21970. ]
  21971. ))
  21972. characterMakers.push(() => makeCharacter(
  21973. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  21974. {
  21975. side: {
  21976. height: math.unit(30, "feet"),
  21977. weight: math.unit(35000, "kg"),
  21978. name: "Side",
  21979. image: {
  21980. source: "./media/characters/alydar/side.svg",
  21981. extra: 234/222,
  21982. bottom: 6.5/241
  21983. }
  21984. },
  21985. front: {
  21986. height: math.unit(30, "feet"),
  21987. weight: math.unit(35000, "kg"),
  21988. name: "Front",
  21989. image: {
  21990. source: "./media/characters/alydar/front.svg",
  21991. extra: 223.37/210.2,
  21992. bottom: 22.3/246.76
  21993. }
  21994. },
  21995. top: {
  21996. height: math.unit(64.54, "feet"),
  21997. weight: math.unit(35000, "kg"),
  21998. name: "Top",
  21999. image: {
  22000. source: "./media/characters/alydar/top.svg"
  22001. }
  22002. },
  22003. anthro: {
  22004. height: math.unit(30, "feet"),
  22005. weight: math.unit(9000, "kg"),
  22006. name: "Anthro",
  22007. image: {
  22008. source: "./media/characters/alydar/anthro.svg",
  22009. extra: 432/421,
  22010. bottom: 7.18/440
  22011. }
  22012. },
  22013. maw: {
  22014. height: math.unit(11.693, "feet"),
  22015. name: "Maw",
  22016. image: {
  22017. source: "./media/characters/alydar/maw.svg"
  22018. }
  22019. },
  22020. head: {
  22021. height: math.unit(11.693, "feet"),
  22022. name: "Head",
  22023. image: {
  22024. source: "./media/characters/alydar/head.svg"
  22025. }
  22026. },
  22027. headAlt: {
  22028. height: math.unit(12.861, "feet"),
  22029. name: "Head (Alt)",
  22030. image: {
  22031. source: "./media/characters/alydar/head-alt.svg"
  22032. }
  22033. },
  22034. wing: {
  22035. height: math.unit(20.712, "feet"),
  22036. name: "Wing",
  22037. image: {
  22038. source: "./media/characters/alydar/wing.svg"
  22039. }
  22040. },
  22041. wingFeather: {
  22042. height: math.unit(9.662, "feet"),
  22043. name: "Wing Feather",
  22044. image: {
  22045. source: "./media/characters/alydar/wing-feather.svg"
  22046. }
  22047. },
  22048. countourFeather: {
  22049. height: math.unit(4.154, "feet"),
  22050. name: "Contour Feather",
  22051. image: {
  22052. source: "./media/characters/alydar/contour-feather.svg"
  22053. }
  22054. },
  22055. },
  22056. [
  22057. {
  22058. name: "Diplomatic",
  22059. height: math.unit(13, "feet"),
  22060. default: true
  22061. },
  22062. {
  22063. name: "Small",
  22064. height: math.unit(30, "feet")
  22065. },
  22066. {
  22067. name: "Normal",
  22068. height: math.unit(95, "feet"),
  22069. default: true
  22070. },
  22071. {
  22072. name: "Large",
  22073. height: math.unit(285, "feet")
  22074. },
  22075. {
  22076. name: "Incomprehensible",
  22077. height: math.unit(450, "megameters")
  22078. },
  22079. ]
  22080. ))
  22081. characterMakers.push(() => makeCharacter(
  22082. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22083. {
  22084. side: {
  22085. height: math.unit(11, "feet"),
  22086. weight: math.unit(1750, "kg"),
  22087. name: "Side",
  22088. image: {
  22089. source: "./media/characters/selicia/side.svg",
  22090. extra: 440/396,
  22091. bottom: 24.8/465.979
  22092. }
  22093. },
  22094. maw: {
  22095. height: math.unit(4.665, "feet"),
  22096. name: "Maw",
  22097. image: {
  22098. source: "./media/characters/selicia/maw.svg"
  22099. }
  22100. },
  22101. },
  22102. [
  22103. {
  22104. name: "Normal",
  22105. height: math.unit(11, "feet"),
  22106. default: true
  22107. },
  22108. ]
  22109. ))
  22110. characterMakers.push(() => makeCharacter(
  22111. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22112. {
  22113. side: {
  22114. height: math.unit(2 + 6 /12, "feet"),
  22115. weight: math.unit(30, "lb"),
  22116. name: "Side",
  22117. image: {
  22118. source: "./media/characters/layla/side.svg",
  22119. extra: 244/188,
  22120. bottom: 18.2/262.1
  22121. }
  22122. },
  22123. back: {
  22124. height: math.unit(2 + 6 /12, "feet"),
  22125. weight: math.unit(30, "lb"),
  22126. name: "Back",
  22127. image: {
  22128. source: "./media/characters/layla/back.svg",
  22129. extra: 308/241.5,
  22130. bottom: 8.9/316.8
  22131. }
  22132. },
  22133. cumming: {
  22134. height: math.unit(2 + 6 /12, "feet"),
  22135. weight: math.unit(30, "lb"),
  22136. name: "Cumming",
  22137. image: {
  22138. source: "./media/characters/layla/cumming.svg",
  22139. extra: 342/279,
  22140. bottom: 595/938
  22141. }
  22142. },
  22143. dickFlaccid: {
  22144. height: math.unit(2.595, "feet"),
  22145. name: "Flaccid Genitals",
  22146. image: {
  22147. source: "./media/characters/layla/dick-flaccid.svg"
  22148. }
  22149. },
  22150. dickErect: {
  22151. height: math.unit(2.359, "feet"),
  22152. name: "Erect Genitals",
  22153. image: {
  22154. source: "./media/characters/layla/dick-erect.svg"
  22155. }
  22156. },
  22157. },
  22158. [
  22159. {
  22160. name: "Micro",
  22161. height: math.unit(1, "inch")
  22162. },
  22163. {
  22164. name: "Small",
  22165. height: math.unit(1, "foot")
  22166. },
  22167. {
  22168. name: "Normal",
  22169. height: math.unit(2 + 6/12, "feet"),
  22170. default: true
  22171. },
  22172. {
  22173. name: "Macro",
  22174. height: math.unit(200, "feet")
  22175. },
  22176. {
  22177. name: "Megamacro",
  22178. height: math.unit(1000, "miles")
  22179. },
  22180. {
  22181. name: "Planetary",
  22182. height: math.unit(8000, "miles")
  22183. },
  22184. {
  22185. name: "True Layla",
  22186. height: math.unit(200000*7, "multiverses")
  22187. },
  22188. ]
  22189. ))
  22190. characterMakers.push(() => makeCharacter(
  22191. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22192. {
  22193. back: {
  22194. height: math.unit(10.5, "feet"),
  22195. weight: math.unit(800, "lb"),
  22196. name: "Back",
  22197. image: {
  22198. source: "./media/characters/knox/back.svg",
  22199. extra: 1486/1089,
  22200. bottom: 107/1601.4
  22201. }
  22202. },
  22203. side: {
  22204. height: math.unit(10.5, "feet"),
  22205. weight: math.unit(800, "lb"),
  22206. name: "Side",
  22207. image: {
  22208. source: "./media/characters/knox/side.svg",
  22209. extra: 244/218,
  22210. bottom: 14/260
  22211. }
  22212. },
  22213. },
  22214. [
  22215. {
  22216. name: "Compact",
  22217. height: math.unit(10.5, "feet"),
  22218. default: true
  22219. },
  22220. {
  22221. name: "Dynamax",
  22222. height: math.unit(210, "feet")
  22223. },
  22224. {
  22225. name: "Full Macro",
  22226. height: math.unit(850, "feet")
  22227. },
  22228. ]
  22229. ))
  22230. characterMakers.push(() => makeCharacter(
  22231. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22232. {
  22233. front: {
  22234. height: math.unit(6, "feet"),
  22235. weight: math.unit(152, "lb"),
  22236. name: "Front",
  22237. image: {
  22238. source: "./media/characters/shin-pikachu/front.svg",
  22239. extra: 1574/1480,
  22240. bottom: 53.3/1626
  22241. }
  22242. },
  22243. hand: {
  22244. height: math.unit(1.055, "feet"),
  22245. name: "Hand",
  22246. image: {
  22247. source: "./media/characters/shin-pikachu/hand.svg"
  22248. }
  22249. },
  22250. foot: {
  22251. height: math.unit(1.1, "feet"),
  22252. name: "Foot",
  22253. image: {
  22254. source: "./media/characters/shin-pikachu/foot.svg"
  22255. }
  22256. },
  22257. collar: {
  22258. height: math.unit(0.386, "feet"),
  22259. name: "Collar",
  22260. image: {
  22261. source: "./media/characters/shin-pikachu/collar.svg"
  22262. }
  22263. },
  22264. },
  22265. [
  22266. {
  22267. name: "Smallest",
  22268. height: math.unit(0.5, "inches")
  22269. },
  22270. {
  22271. name: "Micro",
  22272. height: math.unit(6, "inches")
  22273. },
  22274. {
  22275. name: "Normal",
  22276. height: math.unit(6, "feet"),
  22277. default: true
  22278. },
  22279. {
  22280. name: "Macro",
  22281. height: math.unit(150, "feet")
  22282. },
  22283. ]
  22284. ))
  22285. characterMakers.push(() => makeCharacter(
  22286. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22287. {
  22288. front: {
  22289. height: math.unit(28, "feet"),
  22290. weight: math.unit(10500, "lb"),
  22291. name: "Front",
  22292. image: {
  22293. source: "./media/characters/kayda/front.svg",
  22294. extra: 1536/1428,
  22295. bottom: 68.7/1603
  22296. }
  22297. },
  22298. back: {
  22299. height: math.unit(28, "feet"),
  22300. weight: math.unit(10500, "lb"),
  22301. name: "Back",
  22302. image: {
  22303. source: "./media/characters/kayda/back.svg",
  22304. extra: 1557/1464,
  22305. bottom: 39.5/1597.49
  22306. }
  22307. },
  22308. dick: {
  22309. height: math.unit(3.858, "feet"),
  22310. name: "Dick",
  22311. image: {
  22312. source: "./media/characters/kayda/dick.svg"
  22313. }
  22314. },
  22315. },
  22316. [
  22317. {
  22318. name: "Macro",
  22319. height: math.unit(28, "feet"),
  22320. default: true
  22321. },
  22322. ]
  22323. ))
  22324. characterMakers.push(() => makeCharacter(
  22325. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22326. {
  22327. front: {
  22328. height: math.unit(10 + 11/12, "feet"),
  22329. weight: math.unit(1400, "lb"),
  22330. name: "Front",
  22331. image: {
  22332. source: "./media/characters/brian/front.svg",
  22333. extra: 737/692,
  22334. bottom: 55.4/785
  22335. }
  22336. },
  22337. },
  22338. [
  22339. {
  22340. name: "Normal",
  22341. height: math.unit(10 + 11/12, "feet"),
  22342. default: true
  22343. },
  22344. ]
  22345. ))
  22346. characterMakers.push(() => makeCharacter(
  22347. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22348. {
  22349. front: {
  22350. height: math.unit(5 + 8/12, "feet"),
  22351. weight: math.unit(140, "lb"),
  22352. name: "Front",
  22353. image: {
  22354. source: "./media/characters/khemri/front.svg",
  22355. extra: 4780/4059,
  22356. bottom: 80.1/4859.25
  22357. }
  22358. },
  22359. },
  22360. [
  22361. {
  22362. name: "Micro",
  22363. height: math.unit(6, "inches")
  22364. },
  22365. {
  22366. name: "Normal",
  22367. height: math.unit(5 + 8/12, "feet"),
  22368. default: true
  22369. },
  22370. ]
  22371. ))
  22372. characterMakers.push(() => makeCharacter(
  22373. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22374. {
  22375. front: {
  22376. height: math.unit(13, "feet"),
  22377. weight: math.unit(1700, "lb"),
  22378. name: "Front",
  22379. image: {
  22380. source: "./media/characters/felix-braveheart/front.svg",
  22381. extra: 1222/1157,
  22382. bottom: 53.2/1280
  22383. }
  22384. },
  22385. back: {
  22386. height: math.unit(13, "feet"),
  22387. weight: math.unit(1700, "lb"),
  22388. name: "Back",
  22389. image: {
  22390. source: "./media/characters/felix-braveheart/back.svg",
  22391. extra: 1277/1203,
  22392. bottom: 50.2/1327
  22393. }
  22394. },
  22395. feral: {
  22396. height: math.unit(6, "feet"),
  22397. weight: math.unit(400, "lb"),
  22398. name: "Feral",
  22399. image: {
  22400. source: "./media/characters/felix-braveheart/feral.svg",
  22401. extra: 682/625,
  22402. bottom: 6.9/688
  22403. }
  22404. },
  22405. },
  22406. [
  22407. {
  22408. name: "Normal",
  22409. height: math.unit(13, "feet"),
  22410. default: true
  22411. },
  22412. ]
  22413. ))
  22414. characterMakers.push(() => makeCharacter(
  22415. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22416. {
  22417. side: {
  22418. height: math.unit(5 + 11/12, "feet"),
  22419. weight: math.unit(1400, "lb"),
  22420. name: "Side",
  22421. image: {
  22422. source: "./media/characters/shadow-blade/side.svg",
  22423. extra: 1726/1267,
  22424. bottom: 58.4/1785
  22425. }
  22426. },
  22427. },
  22428. [
  22429. {
  22430. name: "Normal",
  22431. height: math.unit(5 + 11/12, "feet"),
  22432. default: true
  22433. },
  22434. ]
  22435. ))
  22436. characterMakers.push(() => makeCharacter(
  22437. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22438. {
  22439. front: {
  22440. height: math.unit(1 + 6/12, "feet"),
  22441. weight: math.unit(25, "lb"),
  22442. name: "Front",
  22443. image: {
  22444. source: "./media/characters/karla-halldor/front.svg",
  22445. extra: 1459/1383,
  22446. bottom: 12/1472
  22447. }
  22448. },
  22449. },
  22450. [
  22451. {
  22452. name: "Normal",
  22453. height: math.unit(1 + 6/12, "feet"),
  22454. default: true
  22455. },
  22456. ]
  22457. ))
  22458. characterMakers.push(() => makeCharacter(
  22459. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22460. {
  22461. front: {
  22462. height: math.unit(6 + 2/12, "feet"),
  22463. weight: math.unit(160, "lb"),
  22464. name: "Front",
  22465. image: {
  22466. source: "./media/characters/ariam/front.svg",
  22467. extra: 714/617,
  22468. bottom: 23.4/737,
  22469. }
  22470. },
  22471. squatting: {
  22472. height: math.unit(4.1, "feet"),
  22473. weight: math.unit(160, "lb"),
  22474. name: "Squatting",
  22475. image: {
  22476. source: "./media/characters/ariam/squatting.svg",
  22477. extra: 2617/2112,
  22478. bottom: 61.2/2681,
  22479. }
  22480. },
  22481. },
  22482. [
  22483. {
  22484. name: "Normal",
  22485. height: math.unit(6 + 2/12, "feet"),
  22486. default: true
  22487. },
  22488. {
  22489. name: "Normal+",
  22490. height: math.unit(4, "meters")
  22491. },
  22492. {
  22493. name: "Macro",
  22494. height: math.unit(50, "meters")
  22495. },
  22496. {
  22497. name: "Macro+",
  22498. height: math.unit(100, "meters")
  22499. },
  22500. {
  22501. name: "Megamacro",
  22502. height: math.unit(20, "km")
  22503. },
  22504. ]
  22505. ))
  22506. characterMakers.push(() => makeCharacter(
  22507. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22508. {
  22509. front: {
  22510. height: math.unit(1.67, "meters"),
  22511. weight: math.unit(140, "lb"),
  22512. name: "Front",
  22513. image: {
  22514. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22515. extra: 438/410,
  22516. bottom: 0.75/439
  22517. }
  22518. },
  22519. },
  22520. [
  22521. {
  22522. name: "Shrunken",
  22523. height: math.unit(7.6, "cm")
  22524. },
  22525. {
  22526. name: "Human Scale",
  22527. height: math.unit(1.67, "meters")
  22528. },
  22529. {
  22530. name: "Wolxi Scale",
  22531. height: math.unit(36.7, "meters"),
  22532. default: true
  22533. },
  22534. ]
  22535. ))
  22536. characterMakers.push(() => makeCharacter(
  22537. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22538. {
  22539. front: {
  22540. height: math.unit(1.73, "meters"),
  22541. weight: math.unit(240, "lb"),
  22542. name: "Front",
  22543. image: {
  22544. source: "./media/characters/izue-two-mothers/front.svg",
  22545. extra: 469/437,
  22546. bottom: 1.24/470.6
  22547. }
  22548. },
  22549. },
  22550. [
  22551. {
  22552. name: "Shrunken",
  22553. height: math.unit(7.86, "cm")
  22554. },
  22555. {
  22556. name: "Human Scale",
  22557. height: math.unit(1.73, "meters")
  22558. },
  22559. {
  22560. name: "Wolxi Scale",
  22561. height: math.unit(38, "meters"),
  22562. default: true
  22563. },
  22564. ]
  22565. ))
  22566. characterMakers.push(() => makeCharacter(
  22567. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22568. {
  22569. front: {
  22570. height: math.unit(1.55, "meters"),
  22571. weight: math.unit(120, "lb"),
  22572. name: "Front",
  22573. image: {
  22574. source: "./media/characters/teeku-love-shack/front.svg",
  22575. extra: 387/362,
  22576. bottom: 1.51/388
  22577. }
  22578. },
  22579. },
  22580. [
  22581. {
  22582. name: "Shrunken",
  22583. height: math.unit(7, "cm")
  22584. },
  22585. {
  22586. name: "Human Scale",
  22587. height: math.unit(1.55, "meters")
  22588. },
  22589. {
  22590. name: "Wolxi Scale",
  22591. height: math.unit(34.1, "meters"),
  22592. default: true
  22593. },
  22594. ]
  22595. ))
  22596. characterMakers.push(() => makeCharacter(
  22597. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  22598. {
  22599. front: {
  22600. height: math.unit(1.83, "meters"),
  22601. weight: math.unit(135, "lb"),
  22602. name: "Front",
  22603. image: {
  22604. source: "./media/characters/dejma-the-red/front.svg",
  22605. extra: 480/458,
  22606. bottom: 1.8/482
  22607. }
  22608. },
  22609. },
  22610. [
  22611. {
  22612. name: "Shrunken",
  22613. height: math.unit(8.3, "cm")
  22614. },
  22615. {
  22616. name: "Human Scale",
  22617. height: math.unit(1.83, "meters")
  22618. },
  22619. {
  22620. name: "Wolxi Scale",
  22621. height: math.unit(40, "meters"),
  22622. default: true
  22623. },
  22624. ]
  22625. ))
  22626. characterMakers.push(() => makeCharacter(
  22627. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  22628. {
  22629. front: {
  22630. height: math.unit(1.78, "meters"),
  22631. weight: math.unit(65, "kg"),
  22632. name: "Front",
  22633. image: {
  22634. source: "./media/characters/aki/front.svg",
  22635. extra: 452/415
  22636. }
  22637. },
  22638. frontNsfw: {
  22639. height: math.unit(1.78, "meters"),
  22640. weight: math.unit(65, "kg"),
  22641. name: "Front (NSFW)",
  22642. image: {
  22643. source: "./media/characters/aki/front-nsfw.svg",
  22644. extra: 452/415
  22645. }
  22646. },
  22647. back: {
  22648. height: math.unit(1.78, "meters"),
  22649. weight: math.unit(65, "kg"),
  22650. name: "Back",
  22651. image: {
  22652. source: "./media/characters/aki/back.svg",
  22653. extra: 452/415
  22654. }
  22655. },
  22656. rump: {
  22657. height: math.unit(2.05, "feet"),
  22658. name: "Rump",
  22659. image: {
  22660. source: "./media/characters/aki/rump.svg"
  22661. }
  22662. },
  22663. dick: {
  22664. height: math.unit(0.95, "feet"),
  22665. name: "Dick",
  22666. image: {
  22667. source: "./media/characters/aki/dick.svg"
  22668. }
  22669. },
  22670. },
  22671. [
  22672. {
  22673. name: "Micro",
  22674. height: math.unit(15, "cm")
  22675. },
  22676. {
  22677. name: "Normal",
  22678. height: math.unit(178, "cm"),
  22679. default: true
  22680. },
  22681. {
  22682. name: "Macro",
  22683. height: math.unit(214, "m")
  22684. },
  22685. {
  22686. name: "Macro+",
  22687. height: math.unit(534, "m")
  22688. },
  22689. ]
  22690. ))
  22691. characterMakers.push(() => makeCharacter(
  22692. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  22693. {
  22694. front: {
  22695. height: math.unit(5 + 5/12, "feet"),
  22696. weight: math.unit(120, "lb"),
  22697. name: "Front",
  22698. image: {
  22699. source: "./media/characters/ari/front.svg",
  22700. extra: 714.5/682,
  22701. bottom: 8/722.5
  22702. }
  22703. },
  22704. },
  22705. [
  22706. {
  22707. name: "Normal",
  22708. height: math.unit(5 + 5/12, "feet")
  22709. },
  22710. {
  22711. name: "Macro",
  22712. height: math.unit(100, "feet"),
  22713. default: true
  22714. },
  22715. {
  22716. name: "Megamacro",
  22717. height: math.unit(100, "miles")
  22718. },
  22719. {
  22720. name: "Gigamacro",
  22721. height: math.unit(80000, "miles")
  22722. },
  22723. ]
  22724. ))
  22725. characterMakers.push(() => makeCharacter(
  22726. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  22727. {
  22728. side: {
  22729. height: math.unit(9, "feet"),
  22730. weight: math.unit(400, "kg"),
  22731. name: "Side",
  22732. image: {
  22733. source: "./media/characters/bolt/side.svg",
  22734. extra: 1126/896,
  22735. bottom: 60/1187.3,
  22736. }
  22737. },
  22738. },
  22739. [
  22740. {
  22741. name: "Micro",
  22742. height: math.unit(5, "inches")
  22743. },
  22744. {
  22745. name: "Normal",
  22746. height: math.unit(9, "feet"),
  22747. default: true
  22748. },
  22749. {
  22750. name: "Macro",
  22751. height: math.unit(700, "feet")
  22752. },
  22753. {
  22754. name: "Max Size",
  22755. height: math.unit(1.52e22, "yottameters")
  22756. },
  22757. ]
  22758. ))
  22759. characterMakers.push(() => makeCharacter(
  22760. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  22761. {
  22762. front: {
  22763. height: math.unit(4.53, "meters"),
  22764. weight: math.unit(3, "tons"),
  22765. name: "Front",
  22766. image: {
  22767. source: "./media/characters/draekon-sylviar/front.svg",
  22768. extra: 1228/1068,
  22769. bottom: 41/1270
  22770. }
  22771. },
  22772. tail: {
  22773. height: math.unit(1.772, "meter"),
  22774. name: "Tail",
  22775. image: {
  22776. source: "./media/characters/draekon-sylviar/tail.svg"
  22777. }
  22778. },
  22779. head: {
  22780. height: math.unit(1.331, "meter"),
  22781. name: "Head",
  22782. image: {
  22783. source: "./media/characters/draekon-sylviar/head.svg"
  22784. }
  22785. },
  22786. hand: {
  22787. height: math.unit(0.564, "meter"),
  22788. name: "Hand",
  22789. image: {
  22790. source: "./media/characters/draekon-sylviar/hand.svg"
  22791. }
  22792. },
  22793. foot: {
  22794. height: math.unit(0.621, "meter"),
  22795. name: "Foot",
  22796. image: {
  22797. source: "./media/characters/draekon-sylviar/foot.svg",
  22798. bottom: 32/324
  22799. }
  22800. },
  22801. dick: {
  22802. height: math.unit(61, "cm"),
  22803. name: "Dick",
  22804. image: {
  22805. source: "./media/characters/draekon-sylviar/dick.svg"
  22806. }
  22807. },
  22808. dickseparated: {
  22809. height: math.unit(61, "cm"),
  22810. name: "Dick-separated",
  22811. image: {
  22812. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  22813. }
  22814. },
  22815. },
  22816. [
  22817. {
  22818. name: "Small",
  22819. height: math.unit(4.53/2, "meters"),
  22820. default: true
  22821. },
  22822. {
  22823. name: "Normal",
  22824. height: math.unit(4.53, "meters"),
  22825. default: true
  22826. },
  22827. {
  22828. name: "Large",
  22829. height: math.unit(4.53*2, "meters"),
  22830. },
  22831. ]
  22832. ))
  22833. characterMakers.push(() => makeCharacter(
  22834. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  22835. {
  22836. front: {
  22837. height: math.unit(6 + 2/12, "feet"),
  22838. weight: math.unit(180, "lb"),
  22839. name: "Front",
  22840. image: {
  22841. source: "./media/characters/brawler/front.svg",
  22842. extra: 3301/3027,
  22843. bottom: 138/3439
  22844. }
  22845. },
  22846. },
  22847. [
  22848. {
  22849. name: "Normal",
  22850. height: math.unit(6 + 2/12, "feet"),
  22851. default: true
  22852. },
  22853. ]
  22854. ))
  22855. characterMakers.push(() => makeCharacter(
  22856. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  22857. {
  22858. front: {
  22859. height: math.unit(11, "feet"),
  22860. weight: math.unit(1000, "lb"),
  22861. name: "Front",
  22862. image: {
  22863. source: "./media/characters/alex/front.svg",
  22864. bottom: 44.5/620
  22865. }
  22866. },
  22867. },
  22868. [
  22869. {
  22870. name: "Micro",
  22871. height: math.unit(5, "inches")
  22872. },
  22873. {
  22874. name: "Normal",
  22875. height: math.unit(11, "feet"),
  22876. default: true
  22877. },
  22878. {
  22879. name: "Macro",
  22880. height: math.unit(9.5e9, "feet")
  22881. },
  22882. {
  22883. name: "Max Size",
  22884. height: math.unit(1.4e283, "yottameters")
  22885. },
  22886. ]
  22887. ))
  22888. characterMakers.push(() => makeCharacter(
  22889. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  22890. {
  22891. female: {
  22892. height: math.unit(29.9, "m"),
  22893. weight: math.unit(Math.pow((29.9/2), 3) * 80, "kg"),
  22894. name: "Female",
  22895. image: {
  22896. source: "./media/characters/zenari/female.svg",
  22897. extra: 3281.6/3217,
  22898. bottom: 72.2/3353
  22899. }
  22900. },
  22901. male: {
  22902. height: math.unit(27.7, "m"),
  22903. weight: math.unit(Math.pow((27.7/2), 3) * 80, "kg"),
  22904. name: "Male",
  22905. image: {
  22906. source: "./media/characters/zenari/male.svg",
  22907. extra: 3008/2991,
  22908. bottom: 54.6/3069
  22909. }
  22910. },
  22911. },
  22912. [
  22913. {
  22914. name: "Macro",
  22915. height: math.unit(29.7, "meters"),
  22916. default: true
  22917. },
  22918. ]
  22919. ))
  22920. characterMakers.push(() => makeCharacter(
  22921. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  22922. {
  22923. female: {
  22924. height: math.unit(23.8, "m"),
  22925. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22926. name: "Female",
  22927. image: {
  22928. source: "./media/characters/mactarian/female.svg",
  22929. extra: 2662/2569,
  22930. bottom: 73/2736
  22931. }
  22932. },
  22933. male: {
  22934. height: math.unit(23.8, "m"),
  22935. weight: math.unit(Math.pow((23.8/2), 3) * 80, "kg"),
  22936. name: "Male",
  22937. image: {
  22938. source: "./media/characters/mactarian/male.svg",
  22939. extra: 2673/2600,
  22940. bottom: 76/2750
  22941. }
  22942. },
  22943. },
  22944. [
  22945. {
  22946. name: "Macro",
  22947. height: math.unit(23.8, "meters"),
  22948. default: true
  22949. },
  22950. ]
  22951. ))
  22952. characterMakers.push(() => makeCharacter(
  22953. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  22954. {
  22955. female: {
  22956. height: math.unit(19.3, "m"),
  22957. weight: math.unit(Math.pow((19.3/2), 3) * 60, "kg"),
  22958. name: "Female",
  22959. image: {
  22960. source: "./media/characters/umok/female.svg",
  22961. extra: 2186/2078,
  22962. bottom: 87/2277
  22963. }
  22964. },
  22965. male: {
  22966. height: math.unit(19.5, "m"),
  22967. weight: math.unit(Math.pow((19.5/2), 3) * 60, "kg"),
  22968. name: "Male",
  22969. image: {
  22970. source: "./media/characters/umok/male.svg",
  22971. extra: 2233/2140,
  22972. bottom: 24.4/2258
  22973. }
  22974. },
  22975. },
  22976. [
  22977. {
  22978. name: "Macro",
  22979. height: math.unit(19.3, "meters"),
  22980. default: true
  22981. },
  22982. ]
  22983. ))
  22984. characterMakers.push(() => makeCharacter(
  22985. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  22986. {
  22987. female: {
  22988. height: math.unit(26.15, "m"),
  22989. weight: math.unit(Math.pow((26.15/2), 3) * 85, "kg"),
  22990. name: "Female",
  22991. image: {
  22992. source: "./media/characters/joraxian/female.svg",
  22993. extra: 2943/2831,
  22994. bottom: 27/2972
  22995. }
  22996. },
  22997. male: {
  22998. height: math.unit(25.4, "m"),
  22999. weight: math.unit(Math.pow((25.4/2), 3) * 85, "kg"),
  23000. name: "Male",
  23001. image: {
  23002. source: "./media/characters/joraxian/male.svg",
  23003. extra: 2835/2741,
  23004. bottom: 27/2862
  23005. }
  23006. },
  23007. },
  23008. [
  23009. {
  23010. name: "Macro",
  23011. height: math.unit(26.15, "meters"),
  23012. default: true
  23013. },
  23014. ]
  23015. ))
  23016. characterMakers.push(() => makeCharacter(
  23017. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23018. {
  23019. female: {
  23020. height: math.unit(21.6, "m"),
  23021. weight: math.unit(Math.pow((21.6/2), 3) * 80, "kg"),
  23022. name: "Female",
  23023. image: {
  23024. source: "./media/characters/sthara/female.svg",
  23025. extra: 2516/2347,
  23026. bottom: 21.5/2537
  23027. }
  23028. },
  23029. male: {
  23030. height: math.unit(24, "m"),
  23031. weight: math.unit(Math.pow((24/2), 3) * 80, "kg"),
  23032. name: "Male",
  23033. image: {
  23034. source: "./media/characters/sthara/male.svg",
  23035. extra: 2732/2607,
  23036. bottom: 23/2732
  23037. }
  23038. },
  23039. },
  23040. [
  23041. {
  23042. name: "Macro",
  23043. height: math.unit(21.6, "meters"),
  23044. default: true
  23045. },
  23046. ]
  23047. ))
  23048. characterMakers.push(() => makeCharacter(
  23049. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23050. {
  23051. front: {
  23052. height: math.unit(6 + 4/12, "feet"),
  23053. weight: math.unit(175, "lb"),
  23054. name: "Front",
  23055. image: {
  23056. source: "./media/characters/luka-bryzant/front.svg",
  23057. extra: 311/289,
  23058. bottom: 4/315
  23059. }
  23060. },
  23061. back: {
  23062. height: math.unit(6 + 4/12, "feet"),
  23063. weight: math.unit(175, "lb"),
  23064. name: "Back",
  23065. image: {
  23066. source: "./media/characters/luka-bryzant/back.svg",
  23067. extra: 311/289,
  23068. bottom: 3.8/313.7
  23069. }
  23070. },
  23071. },
  23072. [
  23073. {
  23074. name: "Micro",
  23075. height: math.unit(10, "inches")
  23076. },
  23077. {
  23078. name: "Normal",
  23079. height: math.unit(6 + 4/12, "feet"),
  23080. default: true
  23081. },
  23082. {
  23083. name: "Large",
  23084. height: math.unit(12, "feet")
  23085. },
  23086. ]
  23087. ))
  23088. characterMakers.push(() => makeCharacter(
  23089. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23090. {
  23091. front: {
  23092. height: math.unit(5 + 7/12, "feet"),
  23093. weight: math.unit(185, "lb"),
  23094. name: "Front",
  23095. image: {
  23096. source: "./media/characters/aman-aquila/front.svg",
  23097. extra: 1013/976,
  23098. bottom: 45.6/1057
  23099. }
  23100. },
  23101. side: {
  23102. height: math.unit(5 + 7/12, "feet"),
  23103. weight: math.unit(185, "lb"),
  23104. name: "Side",
  23105. image: {
  23106. source: "./media/characters/aman-aquila/side.svg",
  23107. extra: 1054/1011,
  23108. bottom: 15/1070
  23109. }
  23110. },
  23111. back: {
  23112. height: math.unit(5 + 7/12, "feet"),
  23113. weight: math.unit(185, "lb"),
  23114. name: "Back",
  23115. image: {
  23116. source: "./media/characters/aman-aquila/back.svg",
  23117. extra: 1026/970,
  23118. bottom: 12/1039
  23119. }
  23120. },
  23121. head: {
  23122. height: math.unit(1.211, "feet"),
  23123. name: "Head",
  23124. image: {
  23125. source: "./media/characters/aman-aquila/head.svg",
  23126. }
  23127. },
  23128. },
  23129. [
  23130. {
  23131. name: "Minimicro",
  23132. height: math.unit(0.057, "inches")
  23133. },
  23134. {
  23135. name: "Micro",
  23136. height: math.unit(7, "inches")
  23137. },
  23138. {
  23139. name: "Mini",
  23140. height: math.unit(3 + 7/12, "feet")
  23141. },
  23142. {
  23143. name: "Normal",
  23144. height: math.unit(5 + 7/12, "feet"),
  23145. default: true
  23146. },
  23147. {
  23148. name: "Macro",
  23149. height: math.unit(157 + 7/12, "feet")
  23150. },
  23151. {
  23152. name: "Megamacro",
  23153. height: math.unit(1557 + 7/12, "feet")
  23154. },
  23155. {
  23156. name: "Gigamacro",
  23157. height: math.unit(15557 + 7/12, "feet")
  23158. },
  23159. ]
  23160. ))
  23161. characterMakers.push(() => makeCharacter(
  23162. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23163. {
  23164. front: {
  23165. height: math.unit(3 + 2/12, "inches"),
  23166. weight: math.unit(0.3, "ounces"),
  23167. name: "Front",
  23168. image: {
  23169. source: "./media/characters/hiphae/front.svg",
  23170. extra: 1931/1683,
  23171. bottom: 24/1955
  23172. }
  23173. },
  23174. },
  23175. [
  23176. {
  23177. name: "Normal",
  23178. height: math.unit(3 + 1/2, "inches"),
  23179. default: true
  23180. },
  23181. ]
  23182. ))
  23183. characterMakers.push(() => makeCharacter(
  23184. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23185. {
  23186. front: {
  23187. height: math.unit(5 + 10/12, "feet"),
  23188. weight: math.unit(165, "lb"),
  23189. name: "Front",
  23190. image: {
  23191. source: "./media/characters/nicky/front.svg",
  23192. extra: 3144/2886,
  23193. bottom: 45.6/3192
  23194. }
  23195. },
  23196. back: {
  23197. height: math.unit(5 + 10/12, "feet"),
  23198. weight: math.unit(165, "lb"),
  23199. name: "Back",
  23200. image: {
  23201. source: "./media/characters/nicky/back.svg",
  23202. extra: 3055/2804,
  23203. bottom: 28.4/3087
  23204. }
  23205. },
  23206. frontclothed: {
  23207. height: math.unit(5 + 10/12, "feet"),
  23208. weight: math.unit(165, "lb"),
  23209. name: "Front-clothed",
  23210. image: {
  23211. source: "./media/characters/nicky/front-clothed.svg",
  23212. extra: 3184.9/2926.9,
  23213. bottom: 86.5/3239.9
  23214. }
  23215. },
  23216. foot: {
  23217. height: math.unit(1.16, "feet"),
  23218. name: "Foot",
  23219. image: {
  23220. source: "./media/characters/nicky/foot.svg"
  23221. }
  23222. },
  23223. feet: {
  23224. height: math.unit(1.34, "feet"),
  23225. name: "Feet",
  23226. image: {
  23227. source: "./media/characters/nicky/feet.svg"
  23228. }
  23229. },
  23230. maw: {
  23231. height: math.unit(0.9, "feet"),
  23232. name: "Maw",
  23233. image: {
  23234. source: "./media/characters/nicky/maw.svg"
  23235. }
  23236. },
  23237. },
  23238. [
  23239. {
  23240. name: "Normal",
  23241. height: math.unit(5 + 10/12, "feet"),
  23242. default: true
  23243. },
  23244. {
  23245. name: "Macro",
  23246. height: math.unit(60, "feet")
  23247. },
  23248. {
  23249. name: "Megamacro",
  23250. height: math.unit(1, "mile")
  23251. },
  23252. ]
  23253. ))
  23254. characterMakers.push(() => makeCharacter(
  23255. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23256. {
  23257. side: {
  23258. height: math.unit(10, "feet"),
  23259. weight: math.unit(600, "lb"),
  23260. name: "Side",
  23261. image: {
  23262. source: "./media/characters/blair/side.svg",
  23263. bottom: 16.6/475,
  23264. extra: 458/431
  23265. }
  23266. },
  23267. },
  23268. [
  23269. {
  23270. name: "Micro",
  23271. height: math.unit(8, "inches")
  23272. },
  23273. {
  23274. name: "Normal",
  23275. height: math.unit(10, "feet"),
  23276. default: true
  23277. },
  23278. {
  23279. name: "Macro",
  23280. height: math.unit(180, "feet")
  23281. },
  23282. ]
  23283. ))
  23284. characterMakers.push(() => makeCharacter(
  23285. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23286. {
  23287. front: {
  23288. height: math.unit(5 + 4/12, "feet"),
  23289. weight: math.unit(125, "lb"),
  23290. name: "Front",
  23291. image: {
  23292. source: "./media/characters/fisher/front.svg",
  23293. extra: 444/390,
  23294. bottom: 2/444.8
  23295. }
  23296. },
  23297. },
  23298. [
  23299. {
  23300. name: "Micro",
  23301. height: math.unit(4, "inches")
  23302. },
  23303. {
  23304. name: "Normal",
  23305. height: math.unit(5 + 4/12, "feet"),
  23306. default: true
  23307. },
  23308. {
  23309. name: "Macro",
  23310. height: math.unit(100, "feet")
  23311. },
  23312. ]
  23313. ))
  23314. characterMakers.push(() => makeCharacter(
  23315. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23316. {
  23317. front: {
  23318. height: math.unit(6.71, "feet"),
  23319. weight: math.unit(200, "lb"),
  23320. capacity: math.unit(1000000, "people"),
  23321. name: "Front",
  23322. image: {
  23323. source: "./media/characters/gliss/front.svg",
  23324. extra: 2347/2231,
  23325. bottom: 113/2462
  23326. }
  23327. },
  23328. hammerspaceSize: {
  23329. height: math.unit(6.71*717, "feet"),
  23330. weight: math.unit(200, "lb"),
  23331. capacity: math.unit(1000000, "people"),
  23332. name: "Hammerspace Size",
  23333. image: {
  23334. source: "./media/characters/gliss/front.svg",
  23335. extra: 2347/2231,
  23336. bottom: 113/2462
  23337. }
  23338. },
  23339. },
  23340. [
  23341. {
  23342. name: "Normal",
  23343. height: math.unit(6.71, "feet"),
  23344. default: true
  23345. },
  23346. ]
  23347. ))
  23348. characterMakers.push(() => makeCharacter(
  23349. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23350. {
  23351. side: {
  23352. height: math.unit(1.44, "m"),
  23353. weight: math.unit(80, "kg"),
  23354. name: "Side",
  23355. image: {
  23356. source: "./media/characters/dune-anderson/side.svg",
  23357. bottom: 49/1426
  23358. }
  23359. },
  23360. },
  23361. [
  23362. {
  23363. name: "Wolf-sized",
  23364. height: math.unit(1.44, "meters")
  23365. },
  23366. {
  23367. name: "Normal",
  23368. height: math.unit(5.05, "meters"),
  23369. default: true
  23370. },
  23371. {
  23372. name: "Big",
  23373. height: math.unit(14.4, "meters")
  23374. },
  23375. {
  23376. name: "Huge",
  23377. height: math.unit(144, "meters")
  23378. },
  23379. ]
  23380. ))
  23381. characterMakers.push(() => makeCharacter(
  23382. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23383. {
  23384. front: {
  23385. height: math.unit(7, "feet"),
  23386. weight: math.unit(425, "lb"),
  23387. name: "Front",
  23388. image: {
  23389. source: "./media/characters/hind/front.svg",
  23390. extra: 2091/1860,
  23391. bottom: 129/2220
  23392. }
  23393. },
  23394. back: {
  23395. height: math.unit(7, "feet"),
  23396. weight: math.unit(425, "lb"),
  23397. name: "Back",
  23398. image: {
  23399. source: "./media/characters/hind/back.svg",
  23400. extra: 2091/1860,
  23401. bottom: 24.6/2309
  23402. }
  23403. },
  23404. tail: {
  23405. height: math.unit(2.8, "feet"),
  23406. name: "Tail",
  23407. image: {
  23408. source: "./media/characters/hind/tail.svg"
  23409. }
  23410. },
  23411. head: {
  23412. height: math.unit(2.55, "feet"),
  23413. name: "Head",
  23414. image: {
  23415. source: "./media/characters/hind/head.svg"
  23416. }
  23417. },
  23418. },
  23419. [
  23420. {
  23421. name: "XS",
  23422. height: math.unit(0.7, "feet")
  23423. },
  23424. {
  23425. name: "Normal",
  23426. height: math.unit(7, "feet"),
  23427. default: true
  23428. },
  23429. {
  23430. name: "XL",
  23431. height: math.unit(70, "feet")
  23432. },
  23433. ]
  23434. ))
  23435. characterMakers.push(() => makeCharacter(
  23436. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23437. {
  23438. front: {
  23439. height: math.unit(6, "feet"),
  23440. weight: math.unit(150, "lb"),
  23441. name: "Front",
  23442. image: {
  23443. source: "./media/characters/dylan-skaven/front.svg",
  23444. extra: 2318/2063,
  23445. bottom: 93.4/2410
  23446. }
  23447. },
  23448. },
  23449. [
  23450. {
  23451. name: "Nano",
  23452. height: math.unit(1, "mm")
  23453. },
  23454. {
  23455. name: "Micro",
  23456. height: math.unit(1, "cm")
  23457. },
  23458. {
  23459. name: "Normal",
  23460. height: math.unit(2.1, "meters"),
  23461. default: true
  23462. },
  23463. ]
  23464. ))
  23465. characterMakers.push(() => makeCharacter(
  23466. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23467. {
  23468. front: {
  23469. height: math.unit(7 + 5/12, "feet"),
  23470. weight: math.unit(357, "lb"),
  23471. name: "Front",
  23472. image: {
  23473. source: "./media/characters/solex-draconov/front.svg",
  23474. extra: 1993/1865,
  23475. bottom: 117/2111
  23476. }
  23477. },
  23478. },
  23479. [
  23480. {
  23481. name: "Natural Height",
  23482. height: math.unit(7 + 5/12, "feet"),
  23483. default: true
  23484. },
  23485. {
  23486. name: "Macro",
  23487. height: math.unit(350, "feet")
  23488. },
  23489. {
  23490. name: "Macro+",
  23491. height: math.unit(1000, "feet")
  23492. },
  23493. {
  23494. name: "Megamacro",
  23495. height: math.unit(20, "km")
  23496. },
  23497. {
  23498. name: "Megamacro+",
  23499. height: math.unit(1000, "km")
  23500. },
  23501. {
  23502. name: "Gigamacro",
  23503. height: math.unit(2.5, "Gm")
  23504. },
  23505. {
  23506. name: "Teramacro",
  23507. height: math.unit(15, "Tm")
  23508. },
  23509. {
  23510. name: "Galactic",
  23511. height: math.unit(30, "Zm")
  23512. },
  23513. {
  23514. name: "Universal",
  23515. height: math.unit(21000, "Ym")
  23516. },
  23517. {
  23518. name: "Omniversal",
  23519. height: math.unit(9.861e50, "Ym")
  23520. },
  23521. {
  23522. name: "Existential",
  23523. height: math.unit(1e300, "meters")
  23524. },
  23525. ]
  23526. ))
  23527. characterMakers.push(() => makeCharacter(
  23528. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23529. {
  23530. side: {
  23531. height: math.unit(25, "feet"),
  23532. weight: math.unit(90000, "lb"),
  23533. name: "Side",
  23534. image: {
  23535. source: "./media/characters/mandarax/side.svg",
  23536. extra: 614/332,
  23537. bottom: 55/630
  23538. }
  23539. },
  23540. head: {
  23541. height: math.unit(11.4, "feet"),
  23542. name: "Head",
  23543. image: {
  23544. source: "./media/characters/mandarax/head.svg"
  23545. }
  23546. },
  23547. belly: {
  23548. height: math.unit(33, "feet"),
  23549. name: "Belly",
  23550. capacity: math.unit(500, "people"),
  23551. image: {
  23552. source: "./media/characters/mandarax/belly.svg"
  23553. }
  23554. },
  23555. dick: {
  23556. height: math.unit(8.46, "feet"),
  23557. name: "Dick",
  23558. image: {
  23559. source: "./media/characters/mandarax/dick.svg"
  23560. }
  23561. },
  23562. top: {
  23563. height: math.unit(28, "meters"),
  23564. name: "Top",
  23565. image: {
  23566. source: "./media/characters/mandarax/top.svg"
  23567. }
  23568. },
  23569. },
  23570. [
  23571. {
  23572. name: "Normal",
  23573. height: math.unit(25, "feet"),
  23574. default: true
  23575. },
  23576. ]
  23577. ))
  23578. characterMakers.push(() => makeCharacter(
  23579. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  23580. {
  23581. front: {
  23582. height: math.unit(5, "feet"),
  23583. weight: math.unit(90, "lb"),
  23584. name: "Front",
  23585. image: {
  23586. source: "./media/characters/pixil/front.svg",
  23587. extra: 2000/1618,
  23588. bottom: 12.3/2011
  23589. }
  23590. },
  23591. },
  23592. [
  23593. {
  23594. name: "Normal",
  23595. height: math.unit(5, "feet"),
  23596. default: true
  23597. },
  23598. {
  23599. name: "Megamacro",
  23600. height: math.unit(10, "miles"),
  23601. },
  23602. ]
  23603. ))
  23604. characterMakers.push(() => makeCharacter(
  23605. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  23606. {
  23607. front: {
  23608. height: math.unit(7 + 2/12, "feet"),
  23609. weight: math.unit(200, "lb"),
  23610. name: "Front",
  23611. image: {
  23612. source: "./media/characters/angel/front.svg",
  23613. extra: 1830/1737,
  23614. bottom: 22.6/1854,
  23615. }
  23616. },
  23617. },
  23618. [
  23619. {
  23620. name: "Normal",
  23621. height: math.unit(7 + 2/12, "feet"),
  23622. default: true
  23623. },
  23624. {
  23625. name: "Macro",
  23626. height: math.unit(1000, "feet")
  23627. },
  23628. {
  23629. name: "Megamacro",
  23630. height: math.unit(2, "miles")
  23631. },
  23632. {
  23633. name: "Gigamacro",
  23634. height: math.unit(20, "earths")
  23635. },
  23636. ]
  23637. ))
  23638. characterMakers.push(() => makeCharacter(
  23639. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  23640. {
  23641. front: {
  23642. height: math.unit(5, "feet"),
  23643. weight: math.unit(180, "lb"),
  23644. name: "Front",
  23645. image: {
  23646. source: "./media/characters/mekana/front.svg",
  23647. extra: 1671/1605,
  23648. bottom: 3.5/1691
  23649. }
  23650. },
  23651. side: {
  23652. height: math.unit(5, "feet"),
  23653. weight: math.unit(180, "lb"),
  23654. name: "Side",
  23655. image: {
  23656. source: "./media/characters/mekana/side.svg",
  23657. extra: 1671/1605,
  23658. bottom: 3.5/1691
  23659. }
  23660. },
  23661. back: {
  23662. height: math.unit(5, "feet"),
  23663. weight: math.unit(180, "lb"),
  23664. name: "Back",
  23665. image: {
  23666. source: "./media/characters/mekana/back.svg",
  23667. extra: 1671/1605,
  23668. bottom: 3.5/1691
  23669. }
  23670. },
  23671. },
  23672. [
  23673. {
  23674. name: "Normal",
  23675. height: math.unit(5, "feet"),
  23676. default: true
  23677. },
  23678. ]
  23679. ))
  23680. characterMakers.push(() => makeCharacter(
  23681. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  23682. {
  23683. front: {
  23684. height: math.unit(4 + 6/12, "feet"),
  23685. weight: math.unit(80, "lb"),
  23686. name: "Front",
  23687. image: {
  23688. source: "./media/characters/pixie/front.svg",
  23689. extra: 1924/1825,
  23690. bottom: 22.4/1946
  23691. }
  23692. },
  23693. },
  23694. [
  23695. {
  23696. name: "Normal",
  23697. height: math.unit(4 + 6/12, "feet"),
  23698. default: true
  23699. },
  23700. {
  23701. name: "Macro",
  23702. height: math.unit(40, "feet")
  23703. },
  23704. ]
  23705. ))
  23706. //characters
  23707. function makeCharacters() {
  23708. const results = [];
  23709. characterMakers.forEach(character => {
  23710. results.push(character());
  23711. });
  23712. return results;
  23713. }