less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26490 lines
659 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. }
  1284. //species
  1285. function getSpeciesInfo(speciesList) {
  1286. let result = new Set();
  1287. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1288. result.add(entry)
  1289. });
  1290. return Array.from(result);
  1291. };
  1292. function getSpeciesInfoHelper(species) {
  1293. if (!speciesData[species]) {
  1294. console.warn(species + " doesn't exist");
  1295. return [];
  1296. }
  1297. if (speciesData[species].parents) {
  1298. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1299. } else {
  1300. return [species];
  1301. }
  1302. }
  1303. characterMakers.push(() => makeCharacter(
  1304. {
  1305. name: "Fen",
  1306. species: ["crux"],
  1307. description: {
  1308. title: "Bio",
  1309. text: "Very furry. Sheds on everything."
  1310. },
  1311. tags: [
  1312. "anthro",
  1313. "goo"
  1314. ]
  1315. },
  1316. {
  1317. back: {
  1318. height: math.unit(2.2428, "meter"),
  1319. weight: math.unit(124.738, "kg"),
  1320. name: "Back",
  1321. image: {
  1322. source: "./media/characters/fen/back.svg",
  1323. extra: 1025 / 935,
  1324. bottom: 0.01
  1325. },
  1326. info: {
  1327. description: {
  1328. mode: "append",
  1329. text: "\n\nHe is not currently looking at you."
  1330. }
  1331. }
  1332. },
  1333. full: {
  1334. height: math.unit(1.34, "meter"),
  1335. weight: math.unit(225, "kg"),
  1336. name: "Full",
  1337. image: {
  1338. source: "./media/characters/fen/full.svg"
  1339. },
  1340. info: {
  1341. description: {
  1342. mode: "append",
  1343. text: "\n\nMunch."
  1344. }
  1345. }
  1346. },
  1347. kneeling: {
  1348. height: math.unit(5.4, "feet"),
  1349. weight: math.unit(124.738, "kg"),
  1350. name: "Kneeling",
  1351. image: {
  1352. source: "./media/characters/fen/kneeling.svg",
  1353. extra: 563 / 507
  1354. }
  1355. },
  1356. goo: {
  1357. height: math.unit(2.8, "feet"),
  1358. weight: math.unit(125, "kg"),
  1359. capacity: math.unit(1, "people"),
  1360. name: "Goo",
  1361. image: {
  1362. source: "./media/characters/fen/goo.svg",
  1363. bottom: 116 / 613
  1364. }
  1365. },
  1366. lounging: {
  1367. height: math.unit(6.5, "feet"),
  1368. weight: math.unit(125, "kg"),
  1369. name: "Lounging",
  1370. image: {
  1371. source: "./media/characters/fen/lounging.svg"
  1372. }
  1373. },
  1374. },
  1375. [
  1376. {
  1377. name: "Normal",
  1378. height: math.unit(2.2428, "meter")
  1379. },
  1380. {
  1381. name: "Big",
  1382. height: math.unit(12, "feet")
  1383. },
  1384. {
  1385. name: "Minimacro",
  1386. height: math.unit(40, "feet"),
  1387. default: true,
  1388. info: {
  1389. description: {
  1390. mode: "append",
  1391. text: "\n\nTOO DAMN BIG"
  1392. }
  1393. }
  1394. },
  1395. {
  1396. name: "Macro",
  1397. height: math.unit(100, "feet"),
  1398. info: {
  1399. description: {
  1400. mode: "append",
  1401. text: "\n\nTOO DAMN BIG"
  1402. }
  1403. }
  1404. },
  1405. {
  1406. name: "Macro+",
  1407. height: math.unit(300, "feet")
  1408. },
  1409. {
  1410. name: "Megamacro",
  1411. height: math.unit(2, "miles")
  1412. }
  1413. ]
  1414. ))
  1415. characterMakers.push(() => makeCharacter(
  1416. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1417. {
  1418. front: {
  1419. height: math.unit(183, "cm"),
  1420. weight: math.unit(80, "kg"),
  1421. name: "Front",
  1422. image: {
  1423. source: "./media/characters/sofia-fluttertail/front.svg",
  1424. bottom: 0.01,
  1425. extra: 2154 / 2081
  1426. }
  1427. },
  1428. frontAlt: {
  1429. height: math.unit(183, "cm"),
  1430. weight: math.unit(80, "kg"),
  1431. name: "Front (alt)",
  1432. image: {
  1433. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1434. }
  1435. },
  1436. back: {
  1437. height: math.unit(183, "cm"),
  1438. weight: math.unit(80, "kg"),
  1439. name: "Back",
  1440. image: {
  1441. source: "./media/characters/sofia-fluttertail/back.svg"
  1442. }
  1443. },
  1444. kneeling: {
  1445. height: math.unit(125, "cm"),
  1446. weight: math.unit(80, "kg"),
  1447. name: "Kneeling",
  1448. image: {
  1449. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1450. extra: 1033 / 977,
  1451. bottom: 23.7 / 1057
  1452. }
  1453. },
  1454. maw: {
  1455. height: math.unit(183 / 5, "cm"),
  1456. name: "Maw",
  1457. image: {
  1458. source: "./media/characters/sofia-fluttertail/maw.svg"
  1459. }
  1460. },
  1461. mawcloseup: {
  1462. height: math.unit(183 / 5 * 0.41, "cm"),
  1463. name: "Maw (Closeup)",
  1464. image: {
  1465. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1466. }
  1467. },
  1468. },
  1469. [
  1470. {
  1471. name: "Normal",
  1472. height: math.unit(1.83, "meter")
  1473. },
  1474. {
  1475. name: "Size Thief",
  1476. height: math.unit(18, "feet")
  1477. },
  1478. {
  1479. name: "50 Foot Collie",
  1480. height: math.unit(50, "feet")
  1481. },
  1482. {
  1483. name: "Macro",
  1484. height: math.unit(96, "feet"),
  1485. default: true
  1486. },
  1487. {
  1488. name: "Megamerger",
  1489. height: math.unit(650, "feet")
  1490. },
  1491. ]
  1492. ))
  1493. characterMakers.push(() => makeCharacter(
  1494. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1495. {
  1496. front: {
  1497. height: math.unit(7, "feet"),
  1498. weight: math.unit(100, "kg"),
  1499. name: "Front",
  1500. image: {
  1501. source: "./media/characters/march/front.svg",
  1502. extra: 1,
  1503. bottom: 0.015
  1504. }
  1505. },
  1506. foot: {
  1507. height: math.unit(0.9, "feet"),
  1508. name: "Foot",
  1509. image: {
  1510. source: "./media/characters/march/foot.svg"
  1511. }
  1512. },
  1513. },
  1514. [
  1515. {
  1516. name: "Normal",
  1517. height: math.unit(7.9, "feet")
  1518. },
  1519. {
  1520. name: "Macro",
  1521. height: math.unit(220, "meters")
  1522. },
  1523. {
  1524. name: "Megamacro",
  1525. height: math.unit(2.98, "km"),
  1526. default: true
  1527. },
  1528. {
  1529. name: "Gigamacro",
  1530. height: math.unit(15963, "km")
  1531. },
  1532. {
  1533. name: "Teramacro",
  1534. height: math.unit(2980000000, "km")
  1535. },
  1536. {
  1537. name: "Examacro",
  1538. height: math.unit(250, "parsecs")
  1539. },
  1540. ]
  1541. ))
  1542. characterMakers.push(() => makeCharacter(
  1543. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1544. {
  1545. front: {
  1546. height: math.unit(6, "feet"),
  1547. weight: math.unit(60, "kg"),
  1548. name: "Front",
  1549. image: {
  1550. source: "./media/characters/noir/front.svg",
  1551. extra: 1,
  1552. bottom: 0.032
  1553. }
  1554. },
  1555. },
  1556. [
  1557. {
  1558. name: "Normal",
  1559. height: math.unit(6.6, "feet")
  1560. },
  1561. {
  1562. name: "Macro",
  1563. height: math.unit(500, "feet")
  1564. },
  1565. {
  1566. name: "Megamacro",
  1567. height: math.unit(2.5, "km"),
  1568. default: true
  1569. },
  1570. {
  1571. name: "Gigamacro",
  1572. height: math.unit(22500, "km")
  1573. },
  1574. {
  1575. name: "Teramacro",
  1576. height: math.unit(2500000000, "km")
  1577. },
  1578. {
  1579. name: "Examacro",
  1580. height: math.unit(200, "parsecs")
  1581. },
  1582. ]
  1583. ))
  1584. characterMakers.push(() => makeCharacter(
  1585. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1586. {
  1587. front: {
  1588. height: math.unit(7, "feet"),
  1589. weight: math.unit(100, "kg"),
  1590. name: "Front",
  1591. image: {
  1592. source: "./media/characters/okuri/front.svg",
  1593. extra: 1,
  1594. bottom: 0.037
  1595. }
  1596. },
  1597. back: {
  1598. height: math.unit(7, "feet"),
  1599. weight: math.unit(100, "kg"),
  1600. name: "Back",
  1601. image: {
  1602. source: "./media/characters/okuri/back.svg",
  1603. extra: 1,
  1604. bottom: 0.007
  1605. }
  1606. },
  1607. },
  1608. [
  1609. {
  1610. name: "Megamacro",
  1611. height: math.unit(100, "miles"),
  1612. default: true
  1613. },
  1614. ]
  1615. ))
  1616. characterMakers.push(() => makeCharacter(
  1617. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1618. {
  1619. front: {
  1620. height: math.unit(7, "feet"),
  1621. weight: math.unit(100, "kg"),
  1622. name: "Front",
  1623. image: {
  1624. source: "./media/characters/manny/front.svg",
  1625. extra: 1,
  1626. bottom: 0.06
  1627. }
  1628. },
  1629. back: {
  1630. height: math.unit(7, "feet"),
  1631. weight: math.unit(100, "kg"),
  1632. name: "Back",
  1633. image: {
  1634. source: "./media/characters/manny/back.svg",
  1635. extra: 1,
  1636. bottom: 0.014
  1637. }
  1638. },
  1639. },
  1640. [
  1641. {
  1642. name: "Normal",
  1643. height: math.unit(7, "feet"),
  1644. },
  1645. {
  1646. name: "Macro",
  1647. height: math.unit(78, "feet"),
  1648. default: true
  1649. },
  1650. {
  1651. name: "Macro+",
  1652. height: math.unit(300, "meters")
  1653. },
  1654. {
  1655. name: "Macro++",
  1656. height: math.unit(2400, "meters")
  1657. },
  1658. {
  1659. name: "Megamacro",
  1660. height: math.unit(5167, "meters")
  1661. },
  1662. {
  1663. name: "Gigamacro",
  1664. height: math.unit(41769, "miles")
  1665. },
  1666. ]
  1667. ))
  1668. characterMakers.push(() => makeCharacter(
  1669. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1670. {
  1671. front: {
  1672. height: math.unit(7, "feet"),
  1673. weight: math.unit(100, "kg"),
  1674. name: "Front",
  1675. image: {
  1676. source: "./media/characters/adake/front-1.svg"
  1677. }
  1678. },
  1679. frontAlt: {
  1680. height: math.unit(7, "feet"),
  1681. weight: math.unit(100, "kg"),
  1682. name: "Front (Alt)",
  1683. image: {
  1684. source: "./media/characters/adake/front-2.svg",
  1685. extra: 1,
  1686. bottom: 0.01
  1687. }
  1688. },
  1689. back: {
  1690. height: math.unit(7, "feet"),
  1691. weight: math.unit(100, "kg"),
  1692. name: "Back",
  1693. image: {
  1694. source: "./media/characters/adake/back.svg",
  1695. }
  1696. },
  1697. kneel: {
  1698. height: math.unit(5.385, "feet"),
  1699. weight: math.unit(100, "kg"),
  1700. name: "Kneeling",
  1701. image: {
  1702. source: "./media/characters/adake/kneel.svg",
  1703. bottom: 0.052
  1704. }
  1705. },
  1706. },
  1707. [
  1708. {
  1709. name: "Normal",
  1710. height: math.unit(7, "feet"),
  1711. },
  1712. {
  1713. name: "Macro",
  1714. height: math.unit(78, "feet"),
  1715. default: true
  1716. },
  1717. {
  1718. name: "Macro+",
  1719. height: math.unit(300, "meters")
  1720. },
  1721. {
  1722. name: "Macro++",
  1723. height: math.unit(2400, "meters")
  1724. },
  1725. {
  1726. name: "Megamacro",
  1727. height: math.unit(5167, "meters")
  1728. },
  1729. {
  1730. name: "Gigamacro",
  1731. height: math.unit(41769, "miles")
  1732. },
  1733. ]
  1734. ))
  1735. characterMakers.push(() => makeCharacter(
  1736. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1737. {
  1738. front: {
  1739. height: math.unit(1.65, "meters"),
  1740. weight: math.unit(50, "kg"),
  1741. name: "Front",
  1742. image: {
  1743. source: "./media/characters/elijah/front.svg",
  1744. extra: 858 / 830,
  1745. bottom: 95.5 / 953.8559
  1746. }
  1747. },
  1748. back: {
  1749. height: math.unit(1.65, "meters"),
  1750. weight: math.unit(50, "kg"),
  1751. name: "Back",
  1752. image: {
  1753. source: "./media/characters/elijah/back.svg",
  1754. extra: 895 / 850,
  1755. bottom: 5.3 / 897.956
  1756. }
  1757. },
  1758. frontNsfw: {
  1759. height: math.unit(1.65, "meters"),
  1760. weight: math.unit(50, "kg"),
  1761. name: "Front (NSFW)",
  1762. image: {
  1763. source: "./media/characters/elijah/front-nsfw.svg",
  1764. extra: 858 / 830,
  1765. bottom: 95.5 / 953.8559
  1766. }
  1767. },
  1768. backNsfw: {
  1769. height: math.unit(1.65, "meters"),
  1770. weight: math.unit(50, "kg"),
  1771. name: "Back (NSFW)",
  1772. image: {
  1773. source: "./media/characters/elijah/back-nsfw.svg",
  1774. extra: 895 / 850,
  1775. bottom: 5.3 / 897.956
  1776. }
  1777. },
  1778. dick: {
  1779. height: math.unit(1, "feet"),
  1780. name: "Dick",
  1781. image: {
  1782. source: "./media/characters/elijah/dick.svg"
  1783. }
  1784. },
  1785. beakOpen: {
  1786. height: math.unit(1.25, "feet"),
  1787. name: "Beak (Open)",
  1788. image: {
  1789. source: "./media/characters/elijah/beak-open.svg"
  1790. }
  1791. },
  1792. beakShut: {
  1793. height: math.unit(1.25, "feet"),
  1794. name: "Beak (Shut)",
  1795. image: {
  1796. source: "./media/characters/elijah/beak-shut.svg"
  1797. }
  1798. },
  1799. footFlexing: {
  1800. height: math.unit(1.61, "feet"),
  1801. name: "Foot (Flexing)",
  1802. image: {
  1803. source: "./media/characters/elijah/foot-flexing.svg"
  1804. }
  1805. },
  1806. footStepping: {
  1807. height: math.unit(1.44, "feet"),
  1808. name: "Foot (Stepping)",
  1809. image: {
  1810. source: "./media/characters/elijah/foot-stepping.svg"
  1811. }
  1812. },
  1813. plantigradeLeg: {
  1814. height: math.unit(2.34, "feet"),
  1815. name: "Plantigrade Leg",
  1816. image: {
  1817. source: "./media/characters/elijah/plantigrade-leg.svg"
  1818. }
  1819. },
  1820. plantigradeFootLeft: {
  1821. height: math.unit(0.9, "feet"),
  1822. name: "Plantigrade Foot (Left)",
  1823. image: {
  1824. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1825. }
  1826. },
  1827. plantigradeFootRight: {
  1828. height: math.unit(0.9, "feet"),
  1829. name: "Plantigrade Foot (Right)",
  1830. image: {
  1831. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1832. }
  1833. },
  1834. },
  1835. [
  1836. {
  1837. name: "Normal",
  1838. height: math.unit(1.65, "meters")
  1839. },
  1840. {
  1841. name: "Macro",
  1842. height: math.unit(55, "meters"),
  1843. default: true
  1844. },
  1845. {
  1846. name: "Macro+",
  1847. height: math.unit(105, "meters")
  1848. },
  1849. ]
  1850. ))
  1851. characterMakers.push(() => makeCharacter(
  1852. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1853. {
  1854. front: {
  1855. height: math.unit(11, "feet"),
  1856. weight: math.unit(80, "kg"),
  1857. name: "Front",
  1858. image: {
  1859. source: "./media/characters/rai/front.svg",
  1860. extra: 1,
  1861. bottom: 0.03
  1862. }
  1863. },
  1864. side: {
  1865. height: math.unit(11, "feet"),
  1866. weight: math.unit(80, "kg"),
  1867. name: "Side",
  1868. image: {
  1869. source: "./media/characters/rai/side.svg"
  1870. }
  1871. },
  1872. back: {
  1873. height: math.unit(11, "feet"),
  1874. weight: math.unit(80, "lb"),
  1875. name: "Back",
  1876. image: {
  1877. source: "./media/characters/rai/back.svg",
  1878. extra: 1,
  1879. bottom: 0.01
  1880. }
  1881. },
  1882. feral: {
  1883. height: math.unit(11, "feet"),
  1884. weight: math.unit(800, "lb"),
  1885. name: "Feral",
  1886. image: {
  1887. source: "./media/characters/rai/feral.svg",
  1888. extra: 1050 / 659,
  1889. bottom: 0.07
  1890. }
  1891. },
  1892. dragon: {
  1893. height: math.unit(23, "feet"),
  1894. weight: math.unit(50000, "lb"),
  1895. name: "Dragon",
  1896. image: {
  1897. source: "./media/characters/rai/dragon.svg",
  1898. extra: 2498 / 2030,
  1899. bottom: 85.2 / 2584
  1900. }
  1901. },
  1902. maw: {
  1903. height: math.unit(6 / 3.81416, "feet"),
  1904. name: "Maw",
  1905. image: {
  1906. source: "./media/characters/rai/maw.svg"
  1907. }
  1908. },
  1909. },
  1910. [
  1911. {
  1912. name: "Normal",
  1913. height: math.unit(11, "feet")
  1914. },
  1915. {
  1916. name: "Macro",
  1917. height: math.unit(302, "feet"),
  1918. default: true
  1919. },
  1920. ]
  1921. ))
  1922. characterMakers.push(() => makeCharacter(
  1923. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1924. {
  1925. frontDressed: {
  1926. height: math.unit(216, "feet"),
  1927. weight: math.unit(7000000, "lb"),
  1928. name: "Front (Dressed)",
  1929. image: {
  1930. source: "./media/characters/jazzy/front-dressed.svg",
  1931. extra: 2738 / 2651,
  1932. bottom: 41.8 / 2786
  1933. }
  1934. },
  1935. backDressed: {
  1936. height: math.unit(216, "feet"),
  1937. weight: math.unit(7000000, "lb"),
  1938. name: "Back (Dressed)",
  1939. image: {
  1940. source: "./media/characters/jazzy/back-dressed.svg",
  1941. extra: 2775 / 2673,
  1942. bottom: 36.8 / 2817
  1943. }
  1944. },
  1945. front: {
  1946. height: math.unit(216, "feet"),
  1947. weight: math.unit(7000000, "lb"),
  1948. name: "Front",
  1949. image: {
  1950. source: "./media/characters/jazzy/front.svg",
  1951. extra: 2738 / 2651,
  1952. bottom: 41.8 / 2786
  1953. }
  1954. },
  1955. back: {
  1956. height: math.unit(216, "feet"),
  1957. weight: math.unit(7000000, "lb"),
  1958. name: "Back",
  1959. image: {
  1960. source: "./media/characters/jazzy/back.svg",
  1961. extra: 2775 / 2673,
  1962. bottom: 36.8 / 2817
  1963. }
  1964. },
  1965. maw: {
  1966. height: math.unit(20, "feet"),
  1967. name: "Maw",
  1968. image: {
  1969. source: "./media/characters/jazzy/maw.svg"
  1970. }
  1971. },
  1972. paws: {
  1973. height: math.unit(27.5, "feet"),
  1974. name: "Paws",
  1975. image: {
  1976. source: "./media/characters/jazzy/paws.svg"
  1977. }
  1978. },
  1979. eye: {
  1980. height: math.unit(4.4, "feet"),
  1981. name: "Eye",
  1982. image: {
  1983. source: "./media/characters/jazzy/eye.svg"
  1984. }
  1985. },
  1986. droneOffense: {
  1987. height: math.unit(9.5, "inches"),
  1988. name: "Drone (Offense)",
  1989. image: {
  1990. source: "./media/characters/jazzy/drone-offense.svg"
  1991. }
  1992. },
  1993. droneRecon: {
  1994. height: math.unit(9.5, "inches"),
  1995. name: "Drone (Recon)",
  1996. image: {
  1997. source: "./media/characters/jazzy/drone-recon.svg"
  1998. }
  1999. },
  2000. droneDefense: {
  2001. height: math.unit(9.5, "inches"),
  2002. name: "Drone (Defense)",
  2003. image: {
  2004. source: "./media/characters/jazzy/drone-defense.svg"
  2005. }
  2006. },
  2007. },
  2008. [
  2009. {
  2010. name: "Macro",
  2011. height: math.unit(216, "feet"),
  2012. default: true
  2013. },
  2014. ]
  2015. ))
  2016. characterMakers.push(() => makeCharacter(
  2017. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2018. {
  2019. front: {
  2020. height: math.unit(7, "feet"),
  2021. weight: math.unit(80, "kg"),
  2022. name: "Front",
  2023. image: {
  2024. source: "./media/characters/flamm/front.svg",
  2025. extra: 1794 / 1677,
  2026. bottom: 31.7 / 1828.5
  2027. }
  2028. },
  2029. },
  2030. [
  2031. {
  2032. name: "Normal",
  2033. height: math.unit(9.5, "feet")
  2034. },
  2035. {
  2036. name: "Macro",
  2037. height: math.unit(200, "feet"),
  2038. default: true
  2039. },
  2040. ]
  2041. ))
  2042. characterMakers.push(() => makeCharacter(
  2043. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2044. {
  2045. front: {
  2046. height: math.unit(7, "feet"),
  2047. weight: math.unit(80, "kg"),
  2048. name: "Front",
  2049. image: {
  2050. source: "./media/characters/zephiro/front.svg",
  2051. extra: 2309 / 2162,
  2052. bottom: 0.069
  2053. }
  2054. },
  2055. side: {
  2056. height: math.unit(7, "feet"),
  2057. weight: math.unit(80, "kg"),
  2058. name: "Side",
  2059. image: {
  2060. source: "./media/characters/zephiro/side.svg",
  2061. extra: 2403 / 2279,
  2062. bottom: 0.015
  2063. }
  2064. },
  2065. back: {
  2066. height: math.unit(7, "feet"),
  2067. weight: math.unit(80, "kg"),
  2068. name: "Back",
  2069. image: {
  2070. source: "./media/characters/zephiro/back.svg",
  2071. extra: 2373 / 2244,
  2072. bottom: 0.013
  2073. }
  2074. },
  2075. },
  2076. [
  2077. {
  2078. name: "Micro",
  2079. height: math.unit(3, "inches")
  2080. },
  2081. {
  2082. name: "Normal",
  2083. height: math.unit(5 + 3 / 12, "feet"),
  2084. default: true
  2085. },
  2086. {
  2087. name: "Macro",
  2088. height: math.unit(118, "feet")
  2089. },
  2090. ]
  2091. ))
  2092. characterMakers.push(() => makeCharacter(
  2093. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2094. {
  2095. front: {
  2096. height: math.unit(5, "feet"),
  2097. weight: math.unit(90, "kg"),
  2098. name: "Front",
  2099. image: {
  2100. source: "./media/characters/fory/front.svg",
  2101. extra: 2862 / 2674,
  2102. bottom: 180 / 3043.8
  2103. }
  2104. },
  2105. back: {
  2106. height: math.unit(5, "feet"),
  2107. weight: math.unit(90, "kg"),
  2108. name: "Back",
  2109. image: {
  2110. source: "./media/characters/fory/back.svg",
  2111. extra: 2962 / 2791,
  2112. bottom: 106 / 3071.8
  2113. }
  2114. },
  2115. foot: {
  2116. height: math.unit(2.14, "feet"),
  2117. name: "Foot",
  2118. image: {
  2119. source: "./media/characters/fory/foot.svg"
  2120. }
  2121. },
  2122. },
  2123. [
  2124. {
  2125. name: "Normal",
  2126. height: math.unit(5, "feet")
  2127. },
  2128. {
  2129. name: "Macro",
  2130. height: math.unit(50, "feet"),
  2131. default: true
  2132. },
  2133. {
  2134. name: "Megamacro",
  2135. height: math.unit(10, "miles")
  2136. },
  2137. {
  2138. name: "Gigamacro",
  2139. height: math.unit(5, "earths")
  2140. },
  2141. ]
  2142. ))
  2143. characterMakers.push(() => makeCharacter(
  2144. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2145. {
  2146. front: {
  2147. height: math.unit(7, "feet"),
  2148. weight: math.unit(90, "kg"),
  2149. name: "Front",
  2150. image: {
  2151. source: "./media/characters/kurrikage/front.svg",
  2152. extra: 1,
  2153. bottom: 0.035
  2154. }
  2155. },
  2156. back: {
  2157. height: math.unit(7, "feet"),
  2158. weight: math.unit(90, "lb"),
  2159. name: "Back",
  2160. image: {
  2161. source: "./media/characters/kurrikage/back.svg"
  2162. }
  2163. },
  2164. paw: {
  2165. height: math.unit(1.5, "feet"),
  2166. name: "Paw",
  2167. image: {
  2168. source: "./media/characters/kurrikage/paw.svg"
  2169. }
  2170. },
  2171. staff: {
  2172. height: math.unit(6.7, "feet"),
  2173. name: "Staff",
  2174. image: {
  2175. source: "./media/characters/kurrikage/staff.svg"
  2176. }
  2177. },
  2178. peek: {
  2179. height: math.unit(1.05, "feet"),
  2180. name: "Peeking",
  2181. image: {
  2182. source: "./media/characters/kurrikage/peek.svg",
  2183. bottom: 0.08
  2184. }
  2185. },
  2186. },
  2187. [
  2188. {
  2189. name: "Normal",
  2190. height: math.unit(12, "feet"),
  2191. default: true
  2192. },
  2193. {
  2194. name: "Big",
  2195. height: math.unit(20, "feet")
  2196. },
  2197. {
  2198. name: "Macro",
  2199. height: math.unit(500, "feet")
  2200. },
  2201. {
  2202. name: "Megamacro",
  2203. height: math.unit(20, "miles")
  2204. },
  2205. ]
  2206. ))
  2207. characterMakers.push(() => makeCharacter(
  2208. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2209. {
  2210. front: {
  2211. height: math.unit(6, "feet"),
  2212. weight: math.unit(75, "kg"),
  2213. name: "Front",
  2214. image: {
  2215. source: "./media/characters/shingo/front.svg",
  2216. extra: 3511 / 3338,
  2217. bottom: 0.005
  2218. }
  2219. },
  2220. },
  2221. [
  2222. {
  2223. name: "Micro",
  2224. height: math.unit(4, "inches")
  2225. },
  2226. {
  2227. name: "Normal",
  2228. height: math.unit(6, "feet"),
  2229. default: true
  2230. },
  2231. {
  2232. name: "Macro",
  2233. height: math.unit(108, "feet")
  2234. }
  2235. ]
  2236. ))
  2237. characterMakers.push(() => makeCharacter(
  2238. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2239. {
  2240. side: {
  2241. height: math.unit(6, "feet"),
  2242. weight: math.unit(75, "kg"),
  2243. name: "Side",
  2244. image: {
  2245. source: "./media/characters/aigey/side.svg"
  2246. }
  2247. },
  2248. },
  2249. [
  2250. {
  2251. name: "Macro",
  2252. height: math.unit(200, "feet"),
  2253. default: true
  2254. },
  2255. {
  2256. name: "Megamacro",
  2257. height: math.unit(100, "miles")
  2258. },
  2259. ]
  2260. )
  2261. )
  2262. characterMakers.push(() => makeCharacter(
  2263. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2264. {
  2265. front: {
  2266. height: math.unit(5 + 5 / 12, "feet"),
  2267. weight: math.unit(75, "kg"),
  2268. name: "Front",
  2269. image: {
  2270. source: "./media/characters/natasha/front.svg",
  2271. extra: 859 / 824,
  2272. bottom: 23 / 879.6
  2273. }
  2274. },
  2275. frontNsfw: {
  2276. height: math.unit(5 + 5 / 12, "feet"),
  2277. weight: math.unit(75, "kg"),
  2278. name: "Front (NSFW)",
  2279. image: {
  2280. source: "./media/characters/natasha/front-nsfw.svg",
  2281. extra: 859 / 824,
  2282. bottom: 23 / 879.6
  2283. }
  2284. },
  2285. frontErect: {
  2286. height: math.unit(5 + 5 / 12, "feet"),
  2287. weight: math.unit(75, "kg"),
  2288. name: "Front (Erect)",
  2289. image: {
  2290. source: "./media/characters/natasha/front-erect.svg",
  2291. extra: 859 / 824,
  2292. bottom: 23 / 879.6
  2293. }
  2294. },
  2295. back: {
  2296. height: math.unit(5 + 5 / 12, "feet"),
  2297. weight: math.unit(75, "kg"),
  2298. name: "Back",
  2299. image: {
  2300. source: "./media/characters/natasha/back.svg",
  2301. extra: 887.9 / 852.6,
  2302. bottom: 9.7 / 896.4
  2303. }
  2304. },
  2305. backAlt: {
  2306. height: math.unit(5 + 5 / 12, "feet"),
  2307. weight: math.unit(75, "kg"),
  2308. name: "Back (Alt)",
  2309. image: {
  2310. source: "./media/characters/natasha/back-alt.svg",
  2311. extra: 1236.7 / 1192,
  2312. bottom: 22.3 / 1258.2
  2313. }
  2314. },
  2315. dick: {
  2316. height: math.unit(1.772, "feet"),
  2317. name: "Dick",
  2318. image: {
  2319. source: "./media/characters/natasha/dick.svg"
  2320. }
  2321. },
  2322. },
  2323. [
  2324. {
  2325. name: "Normal",
  2326. height: math.unit(5 + 5 / 12, "feet")
  2327. },
  2328. {
  2329. name: "Large",
  2330. height: math.unit(12, "feet")
  2331. },
  2332. {
  2333. name: "Macro",
  2334. height: math.unit(100, "feet"),
  2335. default: true
  2336. },
  2337. {
  2338. name: "Macro+",
  2339. height: math.unit(260, "feet")
  2340. },
  2341. {
  2342. name: "Macro++",
  2343. height: math.unit(1, "mile")
  2344. },
  2345. ]
  2346. ))
  2347. characterMakers.push(() => makeCharacter(
  2348. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2349. {
  2350. front: {
  2351. height: math.unit(6, "feet"),
  2352. weight: math.unit(75, "kg"),
  2353. name: "Front",
  2354. image: {
  2355. source: "./media/characters/malik/front.svg"
  2356. }
  2357. },
  2358. side: {
  2359. height: math.unit(6, "feet"),
  2360. weight: math.unit(75, "kg"),
  2361. name: "Side",
  2362. image: {
  2363. source: "./media/characters/malik/side.svg",
  2364. extra: 1.1539
  2365. }
  2366. },
  2367. back: {
  2368. height: math.unit(6, "feet"),
  2369. weight: math.unit(75, "kg"),
  2370. name: "Back",
  2371. image: {
  2372. source: "./media/characters/malik/back.svg"
  2373. }
  2374. },
  2375. },
  2376. [
  2377. {
  2378. name: "Macro",
  2379. height: math.unit(156, "feet"),
  2380. default: true
  2381. },
  2382. {
  2383. name: "Macro+",
  2384. height: math.unit(1188, "feet")
  2385. },
  2386. ]
  2387. ))
  2388. characterMakers.push(() => makeCharacter(
  2389. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2390. {
  2391. front: {
  2392. height: math.unit(6, "feet"),
  2393. weight: math.unit(75, "kg"),
  2394. name: "Front",
  2395. image: {
  2396. source: "./media/characters/sefer/front.svg",
  2397. extra: 848 / 659,
  2398. bottom: 28.3 / 876.442
  2399. }
  2400. },
  2401. back: {
  2402. height: math.unit(6, "feet"),
  2403. weight: math.unit(75, "kg"),
  2404. name: "Back",
  2405. image: {
  2406. source: "./media/characters/sefer/back.svg",
  2407. extra: 864 / 695,
  2408. bottom: 10 / 871
  2409. }
  2410. },
  2411. frontDressed: {
  2412. height: math.unit(6, "feet"),
  2413. weight: math.unit(75, "kg"),
  2414. name: "Front (Dressed)",
  2415. image: {
  2416. source: "./media/characters/sefer/front-dressed.svg",
  2417. extra: 839 / 653,
  2418. bottom: 37.6 / 878
  2419. }
  2420. },
  2421. },
  2422. [
  2423. {
  2424. name: "Normal",
  2425. height: math.unit(6, "feet"),
  2426. default: true
  2427. },
  2428. ]
  2429. ))
  2430. characterMakers.push(() => makeCharacter(
  2431. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2432. {
  2433. body: {
  2434. height: math.unit(2.2428, "meter"),
  2435. weight: math.unit(124.738, "kg"),
  2436. name: "Body",
  2437. image: {
  2438. extra: 1225 / 1050,
  2439. source: "./media/characters/north/front.svg"
  2440. }
  2441. }
  2442. },
  2443. [
  2444. {
  2445. name: "Micro",
  2446. height: math.unit(4, "inches")
  2447. },
  2448. {
  2449. name: "Macro",
  2450. height: math.unit(63, "meters")
  2451. },
  2452. {
  2453. name: "Megamacro",
  2454. height: math.unit(101, "miles"),
  2455. default: true
  2456. }
  2457. ]
  2458. ))
  2459. characterMakers.push(() => makeCharacter(
  2460. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2461. {
  2462. angled: {
  2463. height: math.unit(4, "meter"),
  2464. weight: math.unit(150, "kg"),
  2465. name: "Angled",
  2466. image: {
  2467. source: "./media/characters/talan/angled-sfw.svg",
  2468. bottom: 29 / 3734
  2469. }
  2470. },
  2471. angledNsfw: {
  2472. height: math.unit(4, "meter"),
  2473. weight: math.unit(150, "kg"),
  2474. name: "Angled (NSFW)",
  2475. image: {
  2476. source: "./media/characters/talan/angled-nsfw.svg",
  2477. bottom: 29 / 3734
  2478. }
  2479. },
  2480. frontNsfw: {
  2481. height: math.unit(4, "meter"),
  2482. weight: math.unit(150, "kg"),
  2483. name: "Front (NSFW)",
  2484. image: {
  2485. source: "./media/characters/talan/front-nsfw.svg",
  2486. bottom: 29 / 3734
  2487. }
  2488. },
  2489. sideNsfw: {
  2490. height: math.unit(4, "meter"),
  2491. weight: math.unit(150, "kg"),
  2492. name: "Side (NSFW)",
  2493. image: {
  2494. source: "./media/characters/talan/side-nsfw.svg",
  2495. bottom: 29 / 3734
  2496. }
  2497. },
  2498. back: {
  2499. height: math.unit(4, "meter"),
  2500. weight: math.unit(150, "kg"),
  2501. name: "Back",
  2502. image: {
  2503. source: "./media/characters/talan/back.svg"
  2504. }
  2505. },
  2506. dickBottom: {
  2507. height: math.unit(0.621, "meter"),
  2508. name: "Dick (Bottom)",
  2509. image: {
  2510. source: "./media/characters/talan/dick-bottom.svg"
  2511. }
  2512. },
  2513. dickTop: {
  2514. height: math.unit(0.621, "meter"),
  2515. name: "Dick (Top)",
  2516. image: {
  2517. source: "./media/characters/talan/dick-top.svg"
  2518. }
  2519. },
  2520. dickSide: {
  2521. height: math.unit(0.305, "meter"),
  2522. name: "Dick (Side)",
  2523. image: {
  2524. source: "./media/characters/talan/dick-side.svg"
  2525. }
  2526. },
  2527. dickFront: {
  2528. height: math.unit(0.305, "meter"),
  2529. name: "Dick (Front)",
  2530. image: {
  2531. source: "./media/characters/talan/dick-front.svg"
  2532. }
  2533. },
  2534. },
  2535. [
  2536. {
  2537. name: "Normal",
  2538. height: math.unit(4, "meters")
  2539. },
  2540. {
  2541. name: "Macro",
  2542. height: math.unit(100, "meters")
  2543. },
  2544. {
  2545. name: "Megamacro",
  2546. height: math.unit(2, "miles"),
  2547. default: true
  2548. },
  2549. {
  2550. name: "Gigamacro",
  2551. height: math.unit(5000, "miles")
  2552. },
  2553. {
  2554. name: "Teramacro",
  2555. height: math.unit(100, "parsecs")
  2556. }
  2557. ]
  2558. ))
  2559. characterMakers.push(() => makeCharacter(
  2560. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2561. {
  2562. front: {
  2563. height: math.unit(2, "meter"),
  2564. weight: math.unit(90, "kg"),
  2565. name: "Front",
  2566. image: {
  2567. source: "./media/characters/gael'rathus/front.svg"
  2568. }
  2569. },
  2570. frontAlt: {
  2571. height: math.unit(2, "meter"),
  2572. weight: math.unit(90, "kg"),
  2573. name: "Front (alt)",
  2574. image: {
  2575. source: "./media/characters/gael'rathus/front-alt.svg"
  2576. }
  2577. },
  2578. frontAlt2: {
  2579. height: math.unit(2, "meter"),
  2580. weight: math.unit(90, "kg"),
  2581. name: "Front (alt 2)",
  2582. image: {
  2583. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2584. }
  2585. }
  2586. },
  2587. [
  2588. {
  2589. name: "Normal",
  2590. height: math.unit(9, "feet"),
  2591. default: true
  2592. },
  2593. {
  2594. name: "Large",
  2595. height: math.unit(25, "feet")
  2596. },
  2597. {
  2598. name: "Macro",
  2599. height: math.unit(0.25, "miles")
  2600. },
  2601. {
  2602. name: "Megamacro",
  2603. height: math.unit(10, "miles")
  2604. }
  2605. ]
  2606. ))
  2607. characterMakers.push(() => makeCharacter(
  2608. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2609. {
  2610. side: {
  2611. height: math.unit(2, "meter"),
  2612. weight: math.unit(140, "kg"),
  2613. name: "Side",
  2614. image: {
  2615. source: "./media/characters/sosha/side.svg",
  2616. bottom: 0.042
  2617. }
  2618. },
  2619. },
  2620. [
  2621. {
  2622. name: "Normal",
  2623. height: math.unit(12, "feet"),
  2624. default: true
  2625. }
  2626. ]
  2627. ))
  2628. characterMakers.push(() => makeCharacter(
  2629. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2630. {
  2631. side: {
  2632. height: math.unit(5 + 5 / 12, "feet"),
  2633. weight: math.unit(170, "kg"),
  2634. name: "Side",
  2635. image: {
  2636. source: "./media/characters/runnola/side.svg",
  2637. extra: 741 / 448,
  2638. bottom: 0.05
  2639. }
  2640. },
  2641. },
  2642. [
  2643. {
  2644. name: "Small",
  2645. height: math.unit(3, "feet")
  2646. },
  2647. {
  2648. name: "Normal",
  2649. height: math.unit(5 + 5 / 12, "feet"),
  2650. default: true
  2651. },
  2652. {
  2653. name: "Big",
  2654. height: math.unit(10, "feet")
  2655. },
  2656. ]
  2657. ))
  2658. characterMakers.push(() => makeCharacter(
  2659. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2660. {
  2661. front: {
  2662. height: math.unit(2, "meter"),
  2663. weight: math.unit(50, "kg"),
  2664. name: "Front",
  2665. image: {
  2666. source: "./media/characters/kurribird/front.svg",
  2667. bottom: 0.015
  2668. }
  2669. },
  2670. frontAlt: {
  2671. height: math.unit(1.5, "meter"),
  2672. weight: math.unit(50, "kg"),
  2673. name: "Front (Alt)",
  2674. image: {
  2675. source: "./media/characters/kurribird/front-alt.svg",
  2676. extra: 1.45
  2677. }
  2678. },
  2679. },
  2680. [
  2681. {
  2682. name: "Normal",
  2683. height: math.unit(7, "feet")
  2684. },
  2685. {
  2686. name: "Big",
  2687. height: math.unit(12, "feet"),
  2688. default: true
  2689. },
  2690. {
  2691. name: "Macro",
  2692. height: math.unit(1500, "feet")
  2693. },
  2694. {
  2695. name: "Megamacro",
  2696. height: math.unit(2, "miles")
  2697. }
  2698. ]
  2699. ))
  2700. characterMakers.push(() => makeCharacter(
  2701. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2702. {
  2703. front: {
  2704. height: math.unit(2, "meter"),
  2705. weight: math.unit(80, "kg"),
  2706. name: "Front",
  2707. image: {
  2708. source: "./media/characters/elbial/front.svg",
  2709. extra: 1643 / 1556,
  2710. bottom: 60.2 / 1696
  2711. }
  2712. },
  2713. side: {
  2714. height: math.unit(2, "meter"),
  2715. weight: math.unit(80, "kg"),
  2716. name: "Side",
  2717. image: {
  2718. source: "./media/characters/elbial/side.svg",
  2719. extra: 1630 / 1565,
  2720. bottom: 71.5 / 1697
  2721. }
  2722. },
  2723. back: {
  2724. height: math.unit(2, "meter"),
  2725. weight: math.unit(80, "kg"),
  2726. name: "Back",
  2727. image: {
  2728. source: "./media/characters/elbial/back.svg",
  2729. extra: 1668 / 1595,
  2730. bottom: 5.6 / 1672
  2731. }
  2732. },
  2733. frontDressed: {
  2734. height: math.unit(2, "meter"),
  2735. weight: math.unit(80, "kg"),
  2736. name: "Front (Dressed)",
  2737. image: {
  2738. source: "./media/characters/elbial/front-dressed.svg",
  2739. extra: 1653 / 1584,
  2740. bottom: 57 / 1708
  2741. }
  2742. },
  2743. genitals: {
  2744. height: math.unit(2 / 3.367, "meter"),
  2745. name: "Genitals",
  2746. image: {
  2747. source: "./media/characters/elbial/genitals.svg"
  2748. }
  2749. },
  2750. },
  2751. [
  2752. {
  2753. name: "Large",
  2754. height: math.unit(100, "feet")
  2755. },
  2756. {
  2757. name: "Macro",
  2758. height: math.unit(500, "feet"),
  2759. default: true
  2760. },
  2761. {
  2762. name: "Megamacro",
  2763. height: math.unit(10, "miles")
  2764. },
  2765. {
  2766. name: "Gigamacro",
  2767. height: math.unit(25000, "miles")
  2768. },
  2769. {
  2770. name: "Full-Size",
  2771. height: math.unit(8000000, "gigaparsecs")
  2772. }
  2773. ]
  2774. ))
  2775. characterMakers.push(() => makeCharacter(
  2776. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2777. {
  2778. front: {
  2779. height: math.unit(2, "meter"),
  2780. weight: math.unit(60, "kg"),
  2781. name: "Front",
  2782. image: {
  2783. source: "./media/characters/noah/front.svg"
  2784. }
  2785. },
  2786. talons: {
  2787. height: math.unit(0.315, "meter"),
  2788. name: "Talons",
  2789. image: {
  2790. source: "./media/characters/noah/talons.svg"
  2791. }
  2792. }
  2793. },
  2794. [
  2795. {
  2796. name: "Large",
  2797. height: math.unit(50, "feet")
  2798. },
  2799. {
  2800. name: "Macro",
  2801. height: math.unit(750, "feet"),
  2802. default: true
  2803. },
  2804. {
  2805. name: "Megamacro",
  2806. height: math.unit(50, "miles")
  2807. },
  2808. {
  2809. name: "Gigamacro",
  2810. height: math.unit(100000, "miles")
  2811. },
  2812. {
  2813. name: "Full-Size",
  2814. height: math.unit(3000000000, "miles")
  2815. }
  2816. ]
  2817. ))
  2818. characterMakers.push(() => makeCharacter(
  2819. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2820. {
  2821. front: {
  2822. height: math.unit(2, "meter"),
  2823. weight: math.unit(80, "kg"),
  2824. name: "Front",
  2825. image: {
  2826. source: "./media/characters/natalya/front.svg"
  2827. }
  2828. },
  2829. back: {
  2830. height: math.unit(2, "meter"),
  2831. weight: math.unit(80, "kg"),
  2832. name: "Back",
  2833. image: {
  2834. source: "./media/characters/natalya/back.svg"
  2835. }
  2836. }
  2837. },
  2838. [
  2839. {
  2840. name: "Normal",
  2841. height: math.unit(150, "feet"),
  2842. default: true
  2843. },
  2844. {
  2845. name: "Megamacro",
  2846. height: math.unit(5, "miles")
  2847. },
  2848. {
  2849. name: "Full-Size",
  2850. height: math.unit(600, "kiloparsecs")
  2851. }
  2852. ]
  2853. ))
  2854. characterMakers.push(() => makeCharacter(
  2855. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2856. {
  2857. front: {
  2858. height: math.unit(2, "meter"),
  2859. weight: math.unit(50, "kg"),
  2860. name: "Front",
  2861. image: {
  2862. source: "./media/characters/erestrebah/front.svg",
  2863. extra: 208 / 193,
  2864. bottom: 0.055
  2865. }
  2866. },
  2867. back: {
  2868. height: math.unit(2, "meter"),
  2869. weight: math.unit(50, "kg"),
  2870. name: "Back",
  2871. image: {
  2872. source: "./media/characters/erestrebah/back.svg",
  2873. extra: 1.3
  2874. }
  2875. }
  2876. },
  2877. [
  2878. {
  2879. name: "Normal",
  2880. height: math.unit(10, "feet")
  2881. },
  2882. {
  2883. name: "Large",
  2884. height: math.unit(50, "feet"),
  2885. default: true
  2886. },
  2887. {
  2888. name: "Macro",
  2889. height: math.unit(300, "feet")
  2890. },
  2891. {
  2892. name: "Macro+",
  2893. height: math.unit(750, "feet")
  2894. },
  2895. {
  2896. name: "Megamacro",
  2897. height: math.unit(3, "miles")
  2898. }
  2899. ]
  2900. ))
  2901. characterMakers.push(() => makeCharacter(
  2902. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2903. {
  2904. front: {
  2905. height: math.unit(2, "meter"),
  2906. weight: math.unit(80, "kg"),
  2907. name: "Front",
  2908. image: {
  2909. source: "./media/characters/jennifer/front.svg",
  2910. bottom: 0.11,
  2911. extra: 1.16
  2912. }
  2913. },
  2914. frontAlt: {
  2915. height: math.unit(2, "meter"),
  2916. weight: math.unit(80, "kg"),
  2917. name: "Front (Alt)",
  2918. image: {
  2919. source: "./media/characters/jennifer/front-alt.svg"
  2920. }
  2921. }
  2922. },
  2923. [
  2924. {
  2925. name: "Canon Height",
  2926. height: math.unit(120, "feet"),
  2927. default: true
  2928. },
  2929. {
  2930. name: "Macro+",
  2931. height: math.unit(300, "feet")
  2932. },
  2933. {
  2934. name: "Megamacro",
  2935. height: math.unit(20000, "feet")
  2936. }
  2937. ]
  2938. ))
  2939. characterMakers.push(() => makeCharacter(
  2940. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2941. {
  2942. front: {
  2943. height: math.unit(2, "meter"),
  2944. weight: math.unit(50, "kg"),
  2945. name: "Front",
  2946. image: {
  2947. source: "./media/characters/kalista/front.svg",
  2948. extra: 1947 / 1700,
  2949. bottom: 76.6 / 1412.98
  2950. }
  2951. },
  2952. back: {
  2953. height: math.unit(2, "meter"),
  2954. weight: math.unit(50, "kg"),
  2955. name: "Back",
  2956. image: {
  2957. source: "./media/characters/kalista/back.svg",
  2958. extra: 1366 / 1156,
  2959. bottom: 33.9 / 1362.78
  2960. }
  2961. }
  2962. },
  2963. [
  2964. {
  2965. name: "Uncomfortably Small",
  2966. height: math.unit(10, "feet")
  2967. },
  2968. {
  2969. name: "Small",
  2970. height: math.unit(30, "feet")
  2971. },
  2972. {
  2973. name: "Macro",
  2974. height: math.unit(100, "feet"),
  2975. default: true
  2976. },
  2977. {
  2978. name: "Macro+",
  2979. height: math.unit(2000, "feet")
  2980. },
  2981. {
  2982. name: "True Form",
  2983. height: math.unit(8924, "miles")
  2984. }
  2985. ]
  2986. ))
  2987. characterMakers.push(() => makeCharacter(
  2988. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  2989. {
  2990. front: {
  2991. height: math.unit(2, "meter"),
  2992. weight: math.unit(120, "kg"),
  2993. name: "Front",
  2994. image: {
  2995. source: "./media/characters/ggv/front.svg"
  2996. }
  2997. },
  2998. side: {
  2999. height: math.unit(2, "meter"),
  3000. weight: math.unit(120, "kg"),
  3001. name: "Side",
  3002. image: {
  3003. source: "./media/characters/ggv/side.svg"
  3004. }
  3005. }
  3006. },
  3007. [
  3008. {
  3009. name: "Extremely Puny",
  3010. height: math.unit(9 + 5 / 12, "feet")
  3011. },
  3012. {
  3013. name: "Horribly Small",
  3014. height: math.unit(47.7, "miles"),
  3015. default: true
  3016. },
  3017. {
  3018. name: "Reasonably Sized",
  3019. height: math.unit(25000, "parsecs")
  3020. },
  3021. {
  3022. name: "Slightly Uncompressed",
  3023. height: math.unit(7.77e31, "parsecs")
  3024. },
  3025. {
  3026. name: "Omniversal",
  3027. height: math.unit(1e300, "meters")
  3028. },
  3029. ]
  3030. ))
  3031. characterMakers.push(() => makeCharacter(
  3032. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3033. {
  3034. front: {
  3035. height: math.unit(2, "meter"),
  3036. weight: math.unit(75, "lb"),
  3037. name: "Front",
  3038. image: {
  3039. source: "./media/characters/napalm/front.svg"
  3040. }
  3041. },
  3042. back: {
  3043. height: math.unit(2, "meter"),
  3044. weight: math.unit(75, "lb"),
  3045. name: "Back",
  3046. image: {
  3047. source: "./media/characters/napalm/back.svg"
  3048. }
  3049. }
  3050. },
  3051. [
  3052. {
  3053. name: "Standard",
  3054. height: math.unit(55, "feet"),
  3055. default: true
  3056. }
  3057. ]
  3058. ))
  3059. characterMakers.push(() => makeCharacter(
  3060. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3061. {
  3062. front: {
  3063. height: math.unit(7 + 5 / 6, "feet"),
  3064. weight: math.unit(325, "lb"),
  3065. name: "Front",
  3066. image: {
  3067. source: "./media/characters/asana/front.svg",
  3068. extra: 1133 / 1060,
  3069. bottom: 15.2/1148.6
  3070. }
  3071. },
  3072. back: {
  3073. height: math.unit(7 + 5 / 6, "feet"),
  3074. weight: math.unit(325, "lb"),
  3075. name: "Back",
  3076. image: {
  3077. source: "./media/characters/asana/back.svg",
  3078. extra: 1114 / 1043,
  3079. bottom: 5/1120
  3080. }
  3081. },
  3082. dressedDark: {
  3083. height: math.unit(7 + 5 / 6, "feet"),
  3084. weight: math.unit(325, "lb"),
  3085. name: "Dressed (Dark)",
  3086. image: {
  3087. source: "./media/characters/asana/dressed-dark.svg",
  3088. extra: 1133 / 1060,
  3089. bottom: 15.2/1148.6
  3090. }
  3091. },
  3092. dressedLight: {
  3093. height: math.unit(7 + 5 / 6, "feet"),
  3094. weight: math.unit(325, "lb"),
  3095. name: "Dressed (Light)",
  3096. image: {
  3097. source: "./media/characters/asana/dressed-light.svg",
  3098. extra: 1133 / 1060,
  3099. bottom: 15.2/1148.6
  3100. }
  3101. },
  3102. },
  3103. [
  3104. {
  3105. name: "Standard",
  3106. height: math.unit(7 + 5 / 6, "feet"),
  3107. default: true
  3108. },
  3109. {
  3110. name: "Large",
  3111. height: math.unit(10, "meters")
  3112. },
  3113. {
  3114. name: "Macro",
  3115. height: math.unit(2500, "meters")
  3116. },
  3117. {
  3118. name: "Megamacro",
  3119. height: math.unit(5e6, "meters")
  3120. },
  3121. {
  3122. name: "Examacro",
  3123. height: math.unit(5e12, "lightyears")
  3124. },
  3125. {
  3126. name: "Max Size",
  3127. height: math.unit(1e31, "lightyears")
  3128. }
  3129. ]
  3130. ))
  3131. characterMakers.push(() => makeCharacter(
  3132. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3133. {
  3134. front: {
  3135. height: math.unit(2, "meter"),
  3136. weight: math.unit(60, "kg"),
  3137. name: "Front",
  3138. image: {
  3139. source: "./media/characters/ebony/front.svg",
  3140. bottom: 0.03,
  3141. extra: 1045 / 810 + 0.03
  3142. }
  3143. },
  3144. side: {
  3145. height: math.unit(2, "meter"),
  3146. weight: math.unit(60, "kg"),
  3147. name: "Side",
  3148. image: {
  3149. source: "./media/characters/ebony/side.svg",
  3150. bottom: 0.03,
  3151. extra: 1045 / 810 + 0.03
  3152. }
  3153. },
  3154. back: {
  3155. height: math.unit(2, "meter"),
  3156. weight: math.unit(60, "kg"),
  3157. name: "Back",
  3158. image: {
  3159. source: "./media/characters/ebony/back.svg",
  3160. bottom: 0.01,
  3161. extra: 1045 / 810 + 0.01
  3162. }
  3163. },
  3164. },
  3165. [
  3166. // TODO check why I did this lol
  3167. {
  3168. name: "Standard",
  3169. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3170. default: true
  3171. },
  3172. {
  3173. name: "Macro",
  3174. height: math.unit(200, "feet")
  3175. },
  3176. {
  3177. name: "Gigamacro",
  3178. height: math.unit(13000, "km")
  3179. }
  3180. ]
  3181. ))
  3182. characterMakers.push(() => makeCharacter(
  3183. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3184. {
  3185. front: {
  3186. height: math.unit(6, "feet"),
  3187. weight: math.unit(175, "lb"),
  3188. name: "Front",
  3189. image: {
  3190. source: "./media/characters/mountain/front.svg",
  3191. extra: 972/955,
  3192. bottom: 64/1036.6
  3193. }
  3194. },
  3195. back: {
  3196. height: math.unit(6, "feet"),
  3197. weight: math.unit(175, "lb"),
  3198. name: "Back",
  3199. image: {
  3200. source: "./media/characters/mountain/back.svg",
  3201. extra: 970/950,
  3202. bottom: 28.25/999
  3203. }
  3204. },
  3205. },
  3206. [
  3207. {
  3208. name: "Large",
  3209. height: math.unit(20, "meters")
  3210. },
  3211. {
  3212. name: "Macro",
  3213. height: math.unit(300, "meters")
  3214. },
  3215. {
  3216. name: "Gigamacro",
  3217. height: math.unit(10000, "km"),
  3218. default: true
  3219. },
  3220. {
  3221. name: "Examacro",
  3222. height: math.unit(10e9, "lightyears")
  3223. }
  3224. ]
  3225. ))
  3226. characterMakers.push(() => makeCharacter(
  3227. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3228. {
  3229. front: {
  3230. height: math.unit(8, "feet"),
  3231. weight: math.unit(500, "lb"),
  3232. name: "Front",
  3233. image: {
  3234. source: "./media/characters/rick/front.svg"
  3235. }
  3236. }
  3237. },
  3238. [
  3239. {
  3240. name: "Normal",
  3241. height: math.unit(8, "feet"),
  3242. default: true
  3243. },
  3244. {
  3245. name: "Macro",
  3246. height: math.unit(5, "km")
  3247. }
  3248. ]
  3249. ))
  3250. characterMakers.push(() => makeCharacter(
  3251. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3252. {
  3253. front: {
  3254. height: math.unit(8, "feet"),
  3255. weight: math.unit(120, "lb"),
  3256. name: "Front",
  3257. image: {
  3258. source: "./media/characters/ona/front.svg"
  3259. }
  3260. },
  3261. frontAlt: {
  3262. height: math.unit(8, "feet"),
  3263. weight: math.unit(120, "lb"),
  3264. name: "Front (Alt)",
  3265. image: {
  3266. source: "./media/characters/ona/front-alt.svg"
  3267. }
  3268. },
  3269. back: {
  3270. height: math.unit(8, "feet"),
  3271. weight: math.unit(120, "lb"),
  3272. name: "Back",
  3273. image: {
  3274. source: "./media/characters/ona/back.svg"
  3275. }
  3276. },
  3277. foot: {
  3278. height: math.unit(1.1, "feet"),
  3279. name: "Foot",
  3280. image: {
  3281. source: "./media/characters/ona/foot.svg"
  3282. }
  3283. }
  3284. },
  3285. [
  3286. {
  3287. name: "Megamacro",
  3288. height: math.unit(70, "km"),
  3289. default: true
  3290. },
  3291. {
  3292. name: "Gigamacro",
  3293. height: math.unit(681818, "miles")
  3294. },
  3295. {
  3296. name: "Examacro",
  3297. height: math.unit(3800000, "lightyears")
  3298. },
  3299. ]
  3300. ))
  3301. characterMakers.push(() => makeCharacter(
  3302. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3303. {
  3304. front: {
  3305. height: math.unit(12, "feet"),
  3306. weight: math.unit(3000, "lb"),
  3307. name: "Front",
  3308. image: {
  3309. source: "./media/characters/mech/front.svg",
  3310. bottom: 0.025,
  3311. }
  3312. },
  3313. back: {
  3314. height: math.unit(12, "feet"),
  3315. weight: math.unit(3000, "lb"),
  3316. name: "Back",
  3317. image: {
  3318. source: "./media/characters/mech/back.svg",
  3319. bottom: 0.03,
  3320. }
  3321. }
  3322. },
  3323. [
  3324. {
  3325. name: "Normal",
  3326. height: math.unit(12, "feet")
  3327. },
  3328. {
  3329. name: "Macro",
  3330. height: math.unit(300, "feet"),
  3331. default: true
  3332. },
  3333. {
  3334. name: "Macro+",
  3335. height: math.unit(1500, "feet")
  3336. },
  3337. ]
  3338. ))
  3339. characterMakers.push(() => makeCharacter(
  3340. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3341. {
  3342. front: {
  3343. height: math.unit(1.3, "meter"),
  3344. weight: math.unit(30, "kg"),
  3345. name: "Front",
  3346. image: {
  3347. source: "./media/characters/gregory/front.svg",
  3348. }
  3349. }
  3350. },
  3351. [
  3352. {
  3353. name: "Normal",
  3354. height: math.unit(1.3, "meter"),
  3355. default: true
  3356. },
  3357. {
  3358. name: "Macro",
  3359. height: math.unit(20, "meter")
  3360. }
  3361. ]
  3362. ))
  3363. characterMakers.push(() => makeCharacter(
  3364. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3365. {
  3366. front: {
  3367. height: math.unit(2.8, "meter"),
  3368. weight: math.unit(200, "kg"),
  3369. name: "Front",
  3370. image: {
  3371. source: "./media/characters/elory/front.svg",
  3372. }
  3373. }
  3374. },
  3375. [
  3376. {
  3377. name: "Normal",
  3378. height: math.unit(2.8, "meter"),
  3379. default: true
  3380. },
  3381. {
  3382. name: "Macro",
  3383. height: math.unit(38, "meter")
  3384. }
  3385. ]
  3386. ))
  3387. characterMakers.push(() => makeCharacter(
  3388. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3389. {
  3390. front: {
  3391. height: math.unit(470, "feet"),
  3392. weight: math.unit(924, "tons"),
  3393. name: "Front",
  3394. image: {
  3395. source: "./media/characters/angelpatamon/front.svg",
  3396. }
  3397. }
  3398. },
  3399. [
  3400. {
  3401. name: "Normal",
  3402. height: math.unit(470, "feet"),
  3403. default: true
  3404. },
  3405. {
  3406. name: "Deity Size I",
  3407. height: math.unit(28651.2, "km")
  3408. },
  3409. {
  3410. name: "Deity Size II",
  3411. height: math.unit(171907.2, "km")
  3412. }
  3413. ]
  3414. ))
  3415. characterMakers.push(() => makeCharacter(
  3416. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3417. {
  3418. side: {
  3419. height: math.unit(7.2, "meter"),
  3420. weight: math.unit(8.2, "tons"),
  3421. name: "Side",
  3422. image: {
  3423. source: "./media/characters/cryae/side.svg",
  3424. extra: 3500 / 1500
  3425. }
  3426. }
  3427. },
  3428. [
  3429. {
  3430. name: "Normal",
  3431. height: math.unit(7.2, "meter"),
  3432. default: true
  3433. }
  3434. ]
  3435. ))
  3436. characterMakers.push(() => makeCharacter(
  3437. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3438. {
  3439. front: {
  3440. height: math.unit(6, "feet"),
  3441. weight: math.unit(175, "lb"),
  3442. name: "Front",
  3443. image: {
  3444. source: "./media/characters/xera/front.svg",
  3445. extra: 2377 / 1972,
  3446. bottom: 75.5/2452
  3447. }
  3448. },
  3449. side: {
  3450. height: math.unit(6, "feet"),
  3451. weight: math.unit(175, "lb"),
  3452. name: "Side",
  3453. image: {
  3454. source: "./media/characters/xera/side.svg",
  3455. extra: 2345/2019,
  3456. bottom: 39.7/2384
  3457. }
  3458. },
  3459. back: {
  3460. height: math.unit(6, "feet"),
  3461. weight: math.unit(175, "lb"),
  3462. name: "Back",
  3463. image: {
  3464. source: "./media/characters/xera/back.svg",
  3465. extra: 2095/1984,
  3466. bottom: 67/2166
  3467. }
  3468. },
  3469. },
  3470. [
  3471. {
  3472. name: "Small",
  3473. height: math.unit(10, "feet")
  3474. },
  3475. {
  3476. name: "Macro",
  3477. height: math.unit(500, "meters"),
  3478. default: true
  3479. },
  3480. {
  3481. name: "Macro+",
  3482. height: math.unit(10, "km")
  3483. },
  3484. {
  3485. name: "Gigamacro",
  3486. height: math.unit(25000, "km")
  3487. },
  3488. {
  3489. name: "Teramacro",
  3490. height: math.unit(3e6, "km")
  3491. }
  3492. ]
  3493. ))
  3494. characterMakers.push(() => makeCharacter(
  3495. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3496. {
  3497. front: {
  3498. height: math.unit(6, "feet"),
  3499. weight: math.unit(175, "lb"),
  3500. name: "Front",
  3501. image: {
  3502. source: "./media/characters/nebula/front.svg",
  3503. extra: 2566/2362,
  3504. bottom: 81/2644
  3505. }
  3506. }
  3507. },
  3508. [
  3509. {
  3510. name: "Small",
  3511. height: math.unit(4.5, "meters")
  3512. },
  3513. {
  3514. name: "Macro",
  3515. height: math.unit(1500, "meters"),
  3516. default: true
  3517. },
  3518. {
  3519. name: "Megamacro",
  3520. height: math.unit(150, "km")
  3521. },
  3522. {
  3523. name: "Gigamacro",
  3524. height: math.unit(27000, "km")
  3525. }
  3526. ]
  3527. ))
  3528. characterMakers.push(() => makeCharacter(
  3529. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3530. {
  3531. front: {
  3532. height: math.unit(6, "feet"),
  3533. weight: math.unit(225, "lb"),
  3534. name: "Front",
  3535. image: {
  3536. source: "./media/characters/abysgar/front.svg"
  3537. }
  3538. }
  3539. },
  3540. [
  3541. {
  3542. name: "Small",
  3543. height: math.unit(4.5, "meters")
  3544. },
  3545. {
  3546. name: "Macro",
  3547. height: math.unit(1250, "meters"),
  3548. default: true
  3549. },
  3550. {
  3551. name: "Megamacro",
  3552. height: math.unit(125, "km")
  3553. },
  3554. {
  3555. name: "Gigamacro",
  3556. height: math.unit(26000, "km")
  3557. }
  3558. ]
  3559. ))
  3560. characterMakers.push(() => makeCharacter(
  3561. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3562. {
  3563. front: {
  3564. height: math.unit(6, "feet"),
  3565. weight: math.unit(180, "lb"),
  3566. name: "Front",
  3567. image: {
  3568. source: "./media/characters/yakuz/front.svg"
  3569. }
  3570. }
  3571. },
  3572. [
  3573. {
  3574. name: "Small",
  3575. height: math.unit(5, "meters")
  3576. },
  3577. {
  3578. name: "Macro",
  3579. height: math.unit(1500, "meters"),
  3580. default: true
  3581. },
  3582. {
  3583. name: "Megamacro",
  3584. height: math.unit(200, "km")
  3585. },
  3586. {
  3587. name: "Gigamacro",
  3588. height: math.unit(100000, "km")
  3589. }
  3590. ]
  3591. ))
  3592. characterMakers.push(() => makeCharacter(
  3593. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3594. {
  3595. front: {
  3596. height: math.unit(6, "feet"),
  3597. weight: math.unit(175, "lb"),
  3598. name: "Front",
  3599. image: {
  3600. source: "./media/characters/mirova/front.svg",
  3601. extra: 3334/3071,
  3602. bottom: 42/3375.6
  3603. }
  3604. }
  3605. },
  3606. [
  3607. {
  3608. name: "Small",
  3609. height: math.unit(5, "meters")
  3610. },
  3611. {
  3612. name: "Macro",
  3613. height: math.unit(900, "meters"),
  3614. default: true
  3615. },
  3616. {
  3617. name: "Megamacro",
  3618. height: math.unit(135, "km")
  3619. },
  3620. {
  3621. name: "Gigamacro",
  3622. height: math.unit(20000, "km")
  3623. }
  3624. ]
  3625. ))
  3626. characterMakers.push(() => makeCharacter(
  3627. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3628. {
  3629. side: {
  3630. height: math.unit(28.35, "feet"),
  3631. weight: math.unit(99.75, "tons"),
  3632. name: "Side",
  3633. image: {
  3634. source: "./media/characters/asana-mech/side.svg",
  3635. extra: 923/699,
  3636. bottom: 50/975
  3637. }
  3638. },
  3639. chaingun: {
  3640. height: math.unit(7, "feet"),
  3641. weight: math.unit(2400, "lb"),
  3642. name: "Chaingun",
  3643. image: {
  3644. source: "./media/characters/asana-mech/chaingun.svg"
  3645. }
  3646. },
  3647. laser: {
  3648. height: math.unit(7.12, "feet"),
  3649. weight: math.unit(2000, "lb"),
  3650. name: "Laser",
  3651. image: {
  3652. source: "./media/characters/asana-mech/laser.svg"
  3653. }
  3654. },
  3655. },
  3656. [
  3657. {
  3658. name: "Normal",
  3659. height: math.unit(28.35, "feet"),
  3660. default: true
  3661. },
  3662. {
  3663. name: "Macro",
  3664. height: math.unit(2500, "feet")
  3665. },
  3666. {
  3667. name: "Megamacro",
  3668. height: math.unit(25, "miles")
  3669. },
  3670. {
  3671. name: "Examacro",
  3672. height: math.unit(6e8, "lightyears")
  3673. },
  3674. ]
  3675. ))
  3676. characterMakers.push(() => makeCharacter(
  3677. { name: "Ashtrek", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3678. {
  3679. front: {
  3680. height: math.unit(2, "meters"),
  3681. weight: math.unit(70, "kg"),
  3682. name: "Front",
  3683. image: {
  3684. source: "./media/characters/ashtrek/front.svg",
  3685. extra: 560 / 524,
  3686. bottom: 0.01
  3687. }
  3688. },
  3689. frontArmor: {
  3690. height: math.unit(2, "meters"),
  3691. weight: math.unit(76, "kg"),
  3692. name: "Front (Armor)",
  3693. image: {
  3694. source: "./media/characters/ashtrek/front-armor.svg",
  3695. extra: 561 / 527,
  3696. bottom: 0.01
  3697. }
  3698. },
  3699. side: {
  3700. height: math.unit(2, "meters"),
  3701. weight: math.unit(70, "kg"),
  3702. name: "Side",
  3703. image: {
  3704. source: "./media/characters/ashtrek/side.svg",
  3705. extra: 1717 / 1609,
  3706. bottom: 0.005
  3707. }
  3708. },
  3709. back: {
  3710. height: math.unit(2, "meters"),
  3711. weight: math.unit(70, "kg"),
  3712. name: "Back",
  3713. image: {
  3714. source: "./media/characters/ashtrek/back.svg",
  3715. extra: 1570 / 1501
  3716. }
  3717. },
  3718. },
  3719. [
  3720. {
  3721. name: "DEFCON 5",
  3722. height: math.unit(5, "meters")
  3723. },
  3724. {
  3725. name: "DEFCON 4",
  3726. height: math.unit(500, "meters"),
  3727. default: true
  3728. },
  3729. {
  3730. name: "DEFCON 3",
  3731. height: math.unit(5, "km")
  3732. },
  3733. {
  3734. name: "DEFCON 2",
  3735. height: math.unit(500, "km")
  3736. },
  3737. {
  3738. name: "DEFCON 1",
  3739. height: math.unit(500000, "km")
  3740. },
  3741. {
  3742. name: "DEFCON 0",
  3743. height: math.unit(3, "gigaparsecs")
  3744. },
  3745. ]
  3746. ))
  3747. characterMakers.push(() => makeCharacter(
  3748. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3749. {
  3750. front: {
  3751. height: math.unit(2, "meters"),
  3752. weight: math.unit(76, "kg"),
  3753. name: "Front",
  3754. image: {
  3755. source: "./media/characters/gale/front.svg"
  3756. }
  3757. },
  3758. frontAlt1: {
  3759. height: math.unit(2, "meters"),
  3760. weight: math.unit(76, "kg"),
  3761. name: "Front (Alt 1)",
  3762. image: {
  3763. source: "./media/characters/gale/front-alt-1.svg"
  3764. }
  3765. },
  3766. frontAlt2: {
  3767. height: math.unit(2, "meters"),
  3768. weight: math.unit(76, "kg"),
  3769. name: "Front (Alt 2)",
  3770. image: {
  3771. source: "./media/characters/gale/front-alt-2.svg"
  3772. }
  3773. },
  3774. },
  3775. [
  3776. {
  3777. name: "Normal",
  3778. height: math.unit(7, "feet")
  3779. },
  3780. {
  3781. name: "Macro",
  3782. height: math.unit(150, "feet"),
  3783. default: true
  3784. },
  3785. {
  3786. name: "Macro+",
  3787. height: math.unit(300, "feet")
  3788. },
  3789. ]
  3790. ))
  3791. characterMakers.push(() => makeCharacter(
  3792. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3793. {
  3794. front: {
  3795. height: math.unit(2, "meters"),
  3796. weight: math.unit(76, "kg"),
  3797. name: "Front",
  3798. image: {
  3799. source: "./media/characters/draylen/front.svg"
  3800. }
  3801. }
  3802. },
  3803. [
  3804. {
  3805. name: "Macro",
  3806. height: math.unit(150, "feet"),
  3807. default: true
  3808. }
  3809. ]
  3810. ))
  3811. characterMakers.push(() => makeCharacter(
  3812. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3813. {
  3814. front: {
  3815. height: math.unit(7 + 9 / 12, "feet"),
  3816. weight: math.unit(379, "lbs"),
  3817. name: "Front",
  3818. image: {
  3819. source: "./media/characters/chez/front.svg"
  3820. }
  3821. },
  3822. side: {
  3823. height: math.unit(7 + 9 / 12, "feet"),
  3824. weight: math.unit(379, "lbs"),
  3825. name: "Side",
  3826. image: {
  3827. source: "./media/characters/chez/side.svg"
  3828. }
  3829. }
  3830. },
  3831. [
  3832. {
  3833. name: "Normal",
  3834. height: math.unit(7 + 9 / 12, "feet"),
  3835. default: true
  3836. },
  3837. {
  3838. name: "God King",
  3839. height: math.unit(9750000, "meters")
  3840. }
  3841. ]
  3842. ))
  3843. characterMakers.push(() => makeCharacter(
  3844. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3845. {
  3846. front: {
  3847. height: math.unit(6, "feet"),
  3848. weight: math.unit(275, "lbs"),
  3849. name: "Front",
  3850. image: {
  3851. source: "./media/characters/kaylum/front.svg",
  3852. bottom: 0.01,
  3853. extra: 1166 / 1031
  3854. }
  3855. },
  3856. frontWingless: {
  3857. height: math.unit(6, "feet"),
  3858. weight: math.unit(275, "lbs"),
  3859. name: "Front (Wingless)",
  3860. image: {
  3861. source: "./media/characters/kaylum/front-wingless.svg",
  3862. bottom: 0.01,
  3863. extra: 1117 / 1031
  3864. }
  3865. }
  3866. },
  3867. [
  3868. {
  3869. name: "Normal",
  3870. height: math.unit(3.05, "meters")
  3871. },
  3872. {
  3873. name: "Master",
  3874. height: math.unit(5.5, "meters")
  3875. },
  3876. {
  3877. name: "Rampage",
  3878. height: math.unit(19, "meters")
  3879. },
  3880. {
  3881. name: "Macro Lite",
  3882. height: math.unit(37, "meters")
  3883. },
  3884. {
  3885. name: "Hyper Predator",
  3886. height: math.unit(61, "meters")
  3887. },
  3888. {
  3889. name: "Macro",
  3890. height: math.unit(138, "meters"),
  3891. default: true
  3892. }
  3893. ]
  3894. ))
  3895. characterMakers.push(() => makeCharacter(
  3896. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3897. {
  3898. front: {
  3899. height: math.unit(6, "feet"),
  3900. weight: math.unit(150, "lbs"),
  3901. name: "Front",
  3902. image: {
  3903. source: "./media/characters/geta/front.svg"
  3904. }
  3905. }
  3906. },
  3907. [
  3908. {
  3909. name: "Micro",
  3910. height: math.unit(3, "inches"),
  3911. default: true
  3912. },
  3913. {
  3914. name: "Normal",
  3915. height: math.unit(5 + 5 / 12, "feet")
  3916. }
  3917. ]
  3918. ))
  3919. characterMakers.push(() => makeCharacter(
  3920. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3921. {
  3922. front: {
  3923. height: math.unit(6, "feet"),
  3924. weight: math.unit(300, "lbs"),
  3925. name: "Front",
  3926. image: {
  3927. source: "./media/characters/tyrnn/front.svg"
  3928. }
  3929. }
  3930. },
  3931. [
  3932. {
  3933. name: "Main Height",
  3934. height: math.unit(355, "feet"),
  3935. default: true
  3936. },
  3937. {
  3938. name: "Fave. Height",
  3939. height: math.unit(2400, "feet")
  3940. }
  3941. ]
  3942. ))
  3943. characterMakers.push(() => makeCharacter(
  3944. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3945. {
  3946. front: {
  3947. height: math.unit(6, "feet"),
  3948. weight: math.unit(300, "lbs"),
  3949. name: "Front",
  3950. image: {
  3951. source: "./media/characters/appledectomy/front.svg"
  3952. }
  3953. }
  3954. },
  3955. [
  3956. {
  3957. name: "Macro",
  3958. height: math.unit(2500, "feet")
  3959. },
  3960. {
  3961. name: "Megamacro",
  3962. height: math.unit(50, "miles"),
  3963. default: true
  3964. },
  3965. {
  3966. name: "Gigamacro",
  3967. height: math.unit(5000, "miles")
  3968. },
  3969. {
  3970. name: "Teramacro",
  3971. height: math.unit(250000, "miles")
  3972. },
  3973. ]
  3974. ))
  3975. characterMakers.push(() => makeCharacter(
  3976. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  3977. {
  3978. front: {
  3979. height: math.unit(6, "feet"),
  3980. weight: math.unit(200, "lbs"),
  3981. name: "Front",
  3982. image: {
  3983. source: "./media/characters/vulpes/front.svg",
  3984. extra: 573 / 543,
  3985. bottom: 0.033
  3986. }
  3987. },
  3988. side: {
  3989. height: math.unit(6, "feet"),
  3990. weight: math.unit(200, "lbs"),
  3991. name: "Side",
  3992. image: {
  3993. source: "./media/characters/vulpes/side.svg",
  3994. extra: 573 / 543,
  3995. bottom: 0.01
  3996. }
  3997. },
  3998. back: {
  3999. height: math.unit(6, "feet"),
  4000. weight: math.unit(200, "lbs"),
  4001. name: "Back",
  4002. image: {
  4003. source: "./media/characters/vulpes/back.svg",
  4004. extra: 573 / 543,
  4005. }
  4006. },
  4007. feet: {
  4008. height: math.unit(1.276, "feet"),
  4009. name: "Feet",
  4010. image: {
  4011. source: "./media/characters/vulpes/feet.svg"
  4012. }
  4013. },
  4014. maw: {
  4015. height: math.unit(1.18, "feet"),
  4016. name: "Maw",
  4017. image: {
  4018. source: "./media/characters/vulpes/maw.svg"
  4019. }
  4020. },
  4021. },
  4022. [
  4023. {
  4024. name: "Micro",
  4025. height: math.unit(2, "inches")
  4026. },
  4027. {
  4028. name: "Normal",
  4029. height: math.unit(6.3, "feet")
  4030. },
  4031. {
  4032. name: "Macro",
  4033. height: math.unit(850, "feet")
  4034. },
  4035. {
  4036. name: "Megamacro",
  4037. height: math.unit(7500, "feet"),
  4038. default: true
  4039. },
  4040. {
  4041. name: "Gigamacro",
  4042. height: math.unit(570000, "miles")
  4043. }
  4044. ]
  4045. ))
  4046. characterMakers.push(() => makeCharacter(
  4047. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4048. {
  4049. front: {
  4050. height: math.unit(6, "feet"),
  4051. weight: math.unit(210, "lbs"),
  4052. name: "Front",
  4053. image: {
  4054. source: "./media/characters/rain-fallen/front.svg"
  4055. }
  4056. },
  4057. side: {
  4058. height: math.unit(6, "feet"),
  4059. weight: math.unit(210, "lbs"),
  4060. name: "Side",
  4061. image: {
  4062. source: "./media/characters/rain-fallen/side.svg"
  4063. }
  4064. },
  4065. back: {
  4066. height: math.unit(6, "feet"),
  4067. weight: math.unit(210, "lbs"),
  4068. name: "Back",
  4069. image: {
  4070. source: "./media/characters/rain-fallen/back.svg"
  4071. }
  4072. },
  4073. feral: {
  4074. height: math.unit(9, "feet"),
  4075. weight: math.unit(700, "lbs"),
  4076. name: "Feral",
  4077. image: {
  4078. source: "./media/characters/rain-fallen/feral.svg"
  4079. }
  4080. },
  4081. },
  4082. [
  4083. {
  4084. name: "Normal",
  4085. height: math.unit(5, "meter")
  4086. },
  4087. {
  4088. name: "Macro",
  4089. height: math.unit(150, "meter"),
  4090. default: true
  4091. },
  4092. {
  4093. name: "Megamacro",
  4094. height: math.unit(278e6, "meter")
  4095. },
  4096. {
  4097. name: "Gigamacro",
  4098. height: math.unit(2e9, "meter")
  4099. },
  4100. {
  4101. name: "Teramacro",
  4102. height: math.unit(8e12, "meter")
  4103. },
  4104. {
  4105. name: "Devourer",
  4106. height: math.unit(14, "zettameters")
  4107. },
  4108. {
  4109. name: "Scarlet King",
  4110. height: math.unit(18, "yottameters")
  4111. },
  4112. {
  4113. name: "Void",
  4114. height: math.unit(6.66e66, "yottameters")
  4115. }
  4116. ]
  4117. ))
  4118. characterMakers.push(() => makeCharacter(
  4119. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4120. {
  4121. standing: {
  4122. height: math.unit(6, "feet"),
  4123. weight: math.unit(180, "lbs"),
  4124. name: "Standing",
  4125. image: {
  4126. source: "./media/characters/zaakira/standing.svg"
  4127. }
  4128. },
  4129. laying: {
  4130. height: math.unit(3, "feet"),
  4131. weight: math.unit(180, "lbs"),
  4132. name: "Laying",
  4133. image: {
  4134. source: "./media/characters/zaakira/laying.svg"
  4135. }
  4136. },
  4137. },
  4138. [
  4139. {
  4140. name: "Normal",
  4141. height: math.unit(12, "feet")
  4142. },
  4143. {
  4144. name: "Macro",
  4145. height: math.unit(279, "feet"),
  4146. default: true
  4147. }
  4148. ]
  4149. ))
  4150. characterMakers.push(() => makeCharacter(
  4151. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4152. {
  4153. front: {
  4154. height: math.unit(6, "feet"),
  4155. weight: math.unit(250, "lbs"),
  4156. name: "Front",
  4157. image: {
  4158. source: "./media/characters/sigvald/front.svg",
  4159. extra: 1000 / 850
  4160. }
  4161. },
  4162. back: {
  4163. height: math.unit(6, "feet"),
  4164. weight: math.unit(250, "lbs"),
  4165. name: "Back",
  4166. image: {
  4167. source: "./media/characters/sigvald/back.svg"
  4168. }
  4169. },
  4170. },
  4171. [
  4172. {
  4173. name: "Normal",
  4174. height: math.unit(8, "feet")
  4175. },
  4176. {
  4177. name: "Large",
  4178. height: math.unit(12, "feet")
  4179. },
  4180. {
  4181. name: "Larger",
  4182. height: math.unit(20, "feet")
  4183. },
  4184. {
  4185. name: "Macro",
  4186. height: math.unit(150, "feet")
  4187. },
  4188. {
  4189. name: "Macro+",
  4190. height: math.unit(200, "feet"),
  4191. default: true
  4192. },
  4193. ]
  4194. ))
  4195. characterMakers.push(() => makeCharacter(
  4196. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4197. {
  4198. side: {
  4199. height: math.unit(12, "feet"),
  4200. weight: math.unit(2000, "kg"),
  4201. name: "Side",
  4202. image: {
  4203. source: "./media/characters/scott/side.svg",
  4204. extra: 754 / 724,
  4205. bottom: 0.069
  4206. }
  4207. },
  4208. upright: {
  4209. height: math.unit(12, "feet"),
  4210. weight: math.unit(2000, "kg"),
  4211. name: "Upright",
  4212. image: {
  4213. source: "./media/characters/scott/upright.svg",
  4214. extra: 3881 / 3722,
  4215. bottom: 0.05
  4216. }
  4217. },
  4218. },
  4219. [
  4220. {
  4221. name: "Normal",
  4222. height: math.unit(12, "feet"),
  4223. default: true
  4224. },
  4225. ]
  4226. ))
  4227. characterMakers.push(() => makeCharacter(
  4228. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4229. {
  4230. side: {
  4231. height: math.unit(8, "meters"),
  4232. weight: math.unit(84755, "lbs"),
  4233. name: "Side",
  4234. image: {
  4235. source: "./media/characters/tobias/side.svg",
  4236. extra: 1474 / 1096,
  4237. bottom: 38.9 / 1513.1235
  4238. }
  4239. },
  4240. },
  4241. [
  4242. {
  4243. name: "Normal",
  4244. height: math.unit(8, "meters"),
  4245. default: true
  4246. },
  4247. ]
  4248. ))
  4249. characterMakers.push(() => makeCharacter(
  4250. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4251. {
  4252. front: {
  4253. height: math.unit(5.5, "feet"),
  4254. weight: math.unit(400, "lbs"),
  4255. name: "Front",
  4256. image: {
  4257. source: "./media/characters/kieran/front.svg",
  4258. extra: 2694 / 2364,
  4259. bottom: 217 / 2908
  4260. }
  4261. },
  4262. side: {
  4263. height: math.unit(5.5, "feet"),
  4264. weight: math.unit(400, "lbs"),
  4265. name: "Side",
  4266. image: {
  4267. source: "./media/characters/kieran/side.svg",
  4268. extra: 875 / 777,
  4269. bottom: 84.6 / 959
  4270. }
  4271. },
  4272. },
  4273. [
  4274. {
  4275. name: "Normal",
  4276. height: math.unit(5.5, "feet"),
  4277. default: true
  4278. },
  4279. ]
  4280. ))
  4281. characterMakers.push(() => makeCharacter(
  4282. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4283. {
  4284. side: {
  4285. height: math.unit(2, "meters"),
  4286. weight: math.unit(70, "kg"),
  4287. name: "Side",
  4288. image: {
  4289. source: "./media/characters/sanya/side.svg",
  4290. bottom: 0.02,
  4291. extra: 1.02
  4292. }
  4293. },
  4294. },
  4295. [
  4296. {
  4297. name: "Small",
  4298. height: math.unit(2, "meters")
  4299. },
  4300. {
  4301. name: "Normal",
  4302. height: math.unit(3, "meters")
  4303. },
  4304. {
  4305. name: "Macro",
  4306. height: math.unit(16, "meters"),
  4307. default: true
  4308. },
  4309. ]
  4310. ))
  4311. characterMakers.push(() => makeCharacter(
  4312. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4313. {
  4314. front: {
  4315. height: math.unit(2, "meters"),
  4316. weight: math.unit(120, "kg"),
  4317. name: "Front",
  4318. image: {
  4319. source: "./media/characters/miranda/front.svg",
  4320. extra: 195/185,
  4321. bottom: 10.9/206.5
  4322. }
  4323. },
  4324. back: {
  4325. height: math.unit(2, "meters"),
  4326. weight: math.unit(120, "kg"),
  4327. name: "Back",
  4328. image: {
  4329. source: "./media/characters/miranda/back.svg",
  4330. extra: 201/193,
  4331. bottom: 2.3/203.7
  4332. }
  4333. },
  4334. },
  4335. [
  4336. {
  4337. name: "Normal",
  4338. height: math.unit(10, "feet"),
  4339. default: true
  4340. }
  4341. ]
  4342. ))
  4343. characterMakers.push(() => makeCharacter(
  4344. { name: "James", species: ["deer"], tags: ["anthro"] },
  4345. {
  4346. side: {
  4347. height: math.unit(2, "meters"),
  4348. weight: math.unit(100, "kg"),
  4349. name: "Front",
  4350. image: {
  4351. source: "./media/characters/james/front.svg",
  4352. extra: 10 / 8.5
  4353. }
  4354. },
  4355. },
  4356. [
  4357. {
  4358. name: "Normal",
  4359. height: math.unit(8.5, "feet"),
  4360. default: true
  4361. }
  4362. ]
  4363. ))
  4364. characterMakers.push(() => makeCharacter(
  4365. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4366. {
  4367. side: {
  4368. height: math.unit(9.5, "feet"),
  4369. weight: math.unit(2500, "lbs"),
  4370. name: "Side",
  4371. image: {
  4372. source: "./media/characters/heather/side.svg"
  4373. }
  4374. },
  4375. },
  4376. [
  4377. {
  4378. name: "Normal",
  4379. height: math.unit(9.5, "feet"),
  4380. default: true
  4381. }
  4382. ]
  4383. ))
  4384. characterMakers.push(() => makeCharacter(
  4385. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4386. {
  4387. side: {
  4388. height: math.unit(6.5, "feet"),
  4389. weight: math.unit(400, "lbs"),
  4390. name: "Side",
  4391. image: {
  4392. source: "./media/characters/lukas/side.svg",
  4393. extra: 7.25 / 6.5
  4394. }
  4395. },
  4396. },
  4397. [
  4398. {
  4399. name: "Normal",
  4400. height: math.unit(6.5, "feet"),
  4401. default: true
  4402. }
  4403. ]
  4404. ))
  4405. characterMakers.push(() => makeCharacter(
  4406. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4407. {
  4408. side: {
  4409. height: math.unit(5, "feet"),
  4410. weight: math.unit(3000, "lbs"),
  4411. name: "Side",
  4412. image: {
  4413. source: "./media/characters/louise/side.svg"
  4414. }
  4415. },
  4416. },
  4417. [
  4418. {
  4419. name: "Normal",
  4420. height: math.unit(5, "feet"),
  4421. default: true
  4422. }
  4423. ]
  4424. ))
  4425. characterMakers.push(() => makeCharacter(
  4426. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4427. {
  4428. side: {
  4429. height: math.unit(6, "feet"),
  4430. weight: math.unit(150, "lbs"),
  4431. name: "Side",
  4432. image: {
  4433. source: "./media/characters/ramona/side.svg"
  4434. }
  4435. },
  4436. },
  4437. [
  4438. {
  4439. name: "Normal",
  4440. height: math.unit(5.3, "meters"),
  4441. default: true
  4442. },
  4443. {
  4444. name: "Macro",
  4445. height: math.unit(20, "stories")
  4446. },
  4447. {
  4448. name: "Macro+",
  4449. height: math.unit(50, "stories")
  4450. },
  4451. ]
  4452. ))
  4453. characterMakers.push(() => makeCharacter(
  4454. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4455. {
  4456. standing: {
  4457. height: math.unit(5.75, "feet"),
  4458. weight: math.unit(160, "lbs"),
  4459. name: "Standing",
  4460. image: {
  4461. source: "./media/characters/deerpuff/standing.svg",
  4462. extra: 682 / 624
  4463. }
  4464. },
  4465. sitting: {
  4466. height: math.unit(5.75 / 1.79, "feet"),
  4467. weight: math.unit(160, "lbs"),
  4468. name: "Sitting",
  4469. image: {
  4470. source: "./media/characters/deerpuff/sitting.svg",
  4471. bottom: 44 / 400,
  4472. extra: 1
  4473. }
  4474. },
  4475. taurLaying: {
  4476. height: math.unit(6, "feet"),
  4477. weight: math.unit(400, "lbs"),
  4478. name: "Taur (Laying)",
  4479. image: {
  4480. source: "./media/characters/deerpuff/taur-laying.svg"
  4481. }
  4482. },
  4483. },
  4484. [
  4485. {
  4486. name: "Puffball",
  4487. height: math.unit(6, "inches")
  4488. },
  4489. {
  4490. name: "Normalpuff",
  4491. height: math.unit(5.75, "feet")
  4492. },
  4493. {
  4494. name: "Macropuff",
  4495. height: math.unit(1500, "feet"),
  4496. default: true
  4497. },
  4498. {
  4499. name: "Megapuff",
  4500. height: math.unit(500, "miles")
  4501. },
  4502. {
  4503. name: "Gigapuff",
  4504. height: math.unit(250000, "miles")
  4505. },
  4506. {
  4507. name: "Omegapuff",
  4508. height: math.unit(1000, "lightyears")
  4509. },
  4510. ]
  4511. ))
  4512. characterMakers.push(() => makeCharacter(
  4513. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4514. {
  4515. stomping: {
  4516. height: math.unit(6, "feet"),
  4517. weight: math.unit(170, "lbs"),
  4518. name: "Stomping",
  4519. image: {
  4520. source: "./media/characters/vivian/stomping.svg"
  4521. }
  4522. },
  4523. sitting: {
  4524. height: math.unit(6 / 1.75, "feet"),
  4525. weight: math.unit(170, "lbs"),
  4526. name: "Sitting",
  4527. image: {
  4528. source: "./media/characters/vivian/sitting.svg",
  4529. bottom: 1 / 6.4,
  4530. extra: 1,
  4531. }
  4532. },
  4533. },
  4534. [
  4535. {
  4536. name: "Normal",
  4537. height: math.unit(7, "feet"),
  4538. default: true
  4539. },
  4540. {
  4541. name: "Macro",
  4542. height: math.unit(10, "stories")
  4543. },
  4544. {
  4545. name: "Macro+",
  4546. height: math.unit(30, "stories")
  4547. },
  4548. {
  4549. name: "Megamacro",
  4550. height: math.unit(10, "miles")
  4551. },
  4552. {
  4553. name: "Megamacro+",
  4554. height: math.unit(2750000, "meters")
  4555. },
  4556. ]
  4557. ))
  4558. characterMakers.push(() => makeCharacter(
  4559. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4560. {
  4561. front: {
  4562. height: math.unit(6, "feet"),
  4563. weight: math.unit(160, "lbs"),
  4564. name: "Front",
  4565. image: {
  4566. source: "./media/characters/prince/front.svg",
  4567. extra: 3400 / 3000
  4568. }
  4569. },
  4570. jumping: {
  4571. height: math.unit(6, "feet"),
  4572. weight: math.unit(160, "lbs"),
  4573. name: "Jumping",
  4574. image: {
  4575. source: "./media/characters/prince/jump.svg",
  4576. extra: 2555 / 2134
  4577. }
  4578. },
  4579. },
  4580. [
  4581. {
  4582. name: "Normal",
  4583. height: math.unit(7.75, "feet"),
  4584. default: true
  4585. },
  4586. {
  4587. name: "Not cute",
  4588. height: math.unit(17, "feet")
  4589. },
  4590. {
  4591. name: "I said NOT",
  4592. height: math.unit(91, "feet")
  4593. },
  4594. {
  4595. name: "Please stop",
  4596. height: math.unit(560, "feet")
  4597. },
  4598. {
  4599. name: "What have you done",
  4600. height: math.unit(2200, "feet")
  4601. },
  4602. {
  4603. name: "Deer God",
  4604. height: math.unit(3.6, "miles")
  4605. },
  4606. ]
  4607. ))
  4608. characterMakers.push(() => makeCharacter(
  4609. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4610. {
  4611. standing: {
  4612. height: math.unit(6, "feet"),
  4613. weight: math.unit(300, "lbs"),
  4614. name: "Standing",
  4615. image: {
  4616. source: "./media/characters/psymon/standing.svg",
  4617. extra: 1888 / 1810,
  4618. bottom: 0.05
  4619. }
  4620. },
  4621. slithering: {
  4622. height: math.unit(6, "feet"),
  4623. weight: math.unit(300, "lbs"),
  4624. name: "Slithering",
  4625. image: {
  4626. source: "./media/characters/psymon/slithering.svg",
  4627. extra: 1330 / 1224
  4628. }
  4629. },
  4630. slitheringAlt: {
  4631. height: math.unit(6, "feet"),
  4632. weight: math.unit(300, "lbs"),
  4633. name: "Slithering (Alt)",
  4634. image: {
  4635. source: "./media/characters/psymon/slithering-alt.svg",
  4636. extra: 1330 / 1224
  4637. }
  4638. },
  4639. },
  4640. [
  4641. {
  4642. name: "Normal",
  4643. height: math.unit(11.25, "feet"),
  4644. default: true
  4645. },
  4646. {
  4647. name: "Large",
  4648. height: math.unit(27, "feet")
  4649. },
  4650. {
  4651. name: "Giant",
  4652. height: math.unit(87, "feet")
  4653. },
  4654. {
  4655. name: "Macro",
  4656. height: math.unit(365, "feet")
  4657. },
  4658. {
  4659. name: "Megamacro",
  4660. height: math.unit(3, "miles")
  4661. },
  4662. {
  4663. name: "World Serpent",
  4664. height: math.unit(8000, "miles")
  4665. },
  4666. ]
  4667. ))
  4668. characterMakers.push(() => makeCharacter(
  4669. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4670. {
  4671. front: {
  4672. height: math.unit(6, "feet"),
  4673. weight: math.unit(180, "lbs"),
  4674. name: "Front",
  4675. image: {
  4676. source: "./media/characters/daimos/front.svg",
  4677. extra: 4160 / 3897,
  4678. bottom: 0.021
  4679. }
  4680. }
  4681. },
  4682. [
  4683. {
  4684. name: "Normal",
  4685. height: math.unit(8, "feet"),
  4686. default: true
  4687. },
  4688. {
  4689. name: "Big Dog",
  4690. height: math.unit(22, "feet")
  4691. },
  4692. {
  4693. name: "Macro",
  4694. height: math.unit(127, "feet")
  4695. },
  4696. {
  4697. name: "Megamacro",
  4698. height: math.unit(3600, "feet")
  4699. },
  4700. ]
  4701. ))
  4702. characterMakers.push(() => makeCharacter(
  4703. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4704. {
  4705. side: {
  4706. height: math.unit(6, "feet"),
  4707. weight: math.unit(180, "lbs"),
  4708. name: "Side",
  4709. image: {
  4710. source: "./media/characters/blake/side.svg",
  4711. extra: 1212 / 1120,
  4712. bottom: 0.05
  4713. }
  4714. },
  4715. crouched: {
  4716. height: math.unit(6 * 0.57, "feet"),
  4717. weight: math.unit(180, "lbs"),
  4718. name: "Crouched",
  4719. image: {
  4720. source: "./media/characters/blake/crouched.svg",
  4721. extra: 840 / 587,
  4722. bottom: 0.04
  4723. }
  4724. },
  4725. bent: {
  4726. height: math.unit(6 * 0.75, "feet"),
  4727. weight: math.unit(180, "lbs"),
  4728. name: "Bent",
  4729. image: {
  4730. source: "./media/characters/blake/bent.svg",
  4731. extra: 592 / 544,
  4732. bottom: 0.035
  4733. }
  4734. },
  4735. },
  4736. [
  4737. {
  4738. name: "Normal",
  4739. height: math.unit(8 + 1 / 6, "feet"),
  4740. default: true
  4741. },
  4742. {
  4743. name: "Big Backside",
  4744. height: math.unit(37, "feet")
  4745. },
  4746. {
  4747. name: "Subway Shredder",
  4748. height: math.unit(72, "feet")
  4749. },
  4750. {
  4751. name: "City Carver",
  4752. height: math.unit(1675, "feet")
  4753. },
  4754. {
  4755. name: "Tectonic Tweaker",
  4756. height: math.unit(2300, "miles")
  4757. },
  4758. ]
  4759. ))
  4760. characterMakers.push(() => makeCharacter(
  4761. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4762. {
  4763. front: {
  4764. height: math.unit(6, "feet"),
  4765. weight: math.unit(180, "lbs"),
  4766. name: "Front",
  4767. image: {
  4768. source: "./media/characters/guisetto/front.svg",
  4769. extra: 856 / 817,
  4770. bottom: 0.06
  4771. }
  4772. },
  4773. airborne: {
  4774. height: math.unit(6, "feet"),
  4775. weight: math.unit(180, "lbs"),
  4776. name: "Airborne",
  4777. image: {
  4778. source: "./media/characters/guisetto/airborne.svg",
  4779. extra: 584 / 525
  4780. }
  4781. },
  4782. },
  4783. [
  4784. {
  4785. name: "Normal",
  4786. height: math.unit(10 + 11 / 12, "feet"),
  4787. default: true
  4788. },
  4789. {
  4790. name: "Large",
  4791. height: math.unit(35, "feet")
  4792. },
  4793. {
  4794. name: "Macro",
  4795. height: math.unit(475, "feet")
  4796. },
  4797. ]
  4798. ))
  4799. characterMakers.push(() => makeCharacter(
  4800. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4801. {
  4802. front: {
  4803. height: math.unit(6, "feet"),
  4804. weight: math.unit(180, "lbs"),
  4805. name: "Front",
  4806. image: {
  4807. source: "./media/characters/luxor/front.svg",
  4808. extra: 2940 / 2152
  4809. }
  4810. },
  4811. back: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(180, "lbs"),
  4814. name: "Back",
  4815. image: {
  4816. source: "./media/characters/luxor/back.svg",
  4817. extra: 1083 / 960
  4818. }
  4819. },
  4820. },
  4821. [
  4822. {
  4823. name: "Normal",
  4824. height: math.unit(5 + 5 / 6, "feet"),
  4825. default: true
  4826. },
  4827. {
  4828. name: "Lamp",
  4829. height: math.unit(50, "feet")
  4830. },
  4831. {
  4832. name: "Lämp",
  4833. height: math.unit(300, "feet")
  4834. },
  4835. {
  4836. name: "The sun is a lamp",
  4837. height: math.unit(250000, "miles")
  4838. },
  4839. ]
  4840. ))
  4841. characterMakers.push(() => makeCharacter(
  4842. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4843. {
  4844. front: {
  4845. height: math.unit(6, "feet"),
  4846. weight: math.unit(50, "lbs"),
  4847. name: "Front",
  4848. image: {
  4849. source: "./media/characters/huoyan/front.svg"
  4850. }
  4851. },
  4852. side: {
  4853. height: math.unit(6, "feet"),
  4854. weight: math.unit(180, "lbs"),
  4855. name: "Side",
  4856. image: {
  4857. source: "./media/characters/huoyan/side.svg"
  4858. }
  4859. },
  4860. },
  4861. [
  4862. {
  4863. name: "Chef",
  4864. height: math.unit(9, "feet")
  4865. },
  4866. {
  4867. name: "Normal",
  4868. height: math.unit(65, "feet"),
  4869. default: true
  4870. },
  4871. {
  4872. name: "Macro",
  4873. height: math.unit(780, "feet")
  4874. },
  4875. {
  4876. name: "Flaming Mountain",
  4877. height: math.unit(4.8, "miles")
  4878. },
  4879. {
  4880. name: "Celestial",
  4881. height: math.unit(765000, "miles")
  4882. },
  4883. ]
  4884. ))
  4885. characterMakers.push(() => makeCharacter(
  4886. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4887. {
  4888. front: {
  4889. height: math.unit(5 + 3 / 4, "feet"),
  4890. weight: math.unit(120, "lbs"),
  4891. name: "Front",
  4892. image: {
  4893. source: "./media/characters/tails/front.svg"
  4894. }
  4895. }
  4896. },
  4897. [
  4898. {
  4899. name: "Normal",
  4900. height: math.unit(5 + 3 / 4, "feet"),
  4901. default: true
  4902. }
  4903. ]
  4904. ))
  4905. characterMakers.push(() => makeCharacter(
  4906. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4907. {
  4908. front: {
  4909. height: math.unit(4, "feet"),
  4910. weight: math.unit(50, "lbs"),
  4911. name: "Front",
  4912. image: {
  4913. source: "./media/characters/rainy/front.svg"
  4914. }
  4915. }
  4916. },
  4917. [
  4918. {
  4919. name: "Macro",
  4920. height: math.unit(800, "feet"),
  4921. default: true
  4922. }
  4923. ]
  4924. ))
  4925. characterMakers.push(() => makeCharacter(
  4926. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4927. {
  4928. front: {
  4929. height: math.unit(6, "feet"),
  4930. weight: math.unit(150, "lbs"),
  4931. name: "Front",
  4932. image: {
  4933. source: "./media/characters/rainier/front.svg"
  4934. }
  4935. }
  4936. },
  4937. [
  4938. {
  4939. name: "Micro",
  4940. height: math.unit(2, "mm"),
  4941. default: true
  4942. }
  4943. ]
  4944. ))
  4945. characterMakers.push(() => makeCharacter(
  4946. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4947. {
  4948. front: {
  4949. height: math.unit(6, "feet"),
  4950. weight: math.unit(180, "lbs"),
  4951. name: "Front",
  4952. image: {
  4953. source: "./media/characters/andy/front.svg"
  4954. }
  4955. }
  4956. },
  4957. [
  4958. {
  4959. name: "Normal",
  4960. height: math.unit(8, "feet"),
  4961. default: true
  4962. },
  4963. {
  4964. name: "Macro",
  4965. height: math.unit(1000, "feet")
  4966. },
  4967. {
  4968. name: "Megamacro",
  4969. height: math.unit(5, "miles")
  4970. },
  4971. {
  4972. name: "Gigamacro",
  4973. height: math.unit(5000, "miles")
  4974. },
  4975. ]
  4976. ))
  4977. characterMakers.push(() => makeCharacter(
  4978. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  4979. {
  4980. front: {
  4981. height: math.unit(6, "feet"),
  4982. weight: math.unit(210, "lbs"),
  4983. name: "Front",
  4984. image: {
  4985. source: "./media/characters/cimmaron/front-sfw.svg",
  4986. extra: 701 / 676,
  4987. bottom: 0.046
  4988. }
  4989. },
  4990. back: {
  4991. height: math.unit(6, "feet"),
  4992. weight: math.unit(210, "lbs"),
  4993. name: "Back",
  4994. image: {
  4995. source: "./media/characters/cimmaron/back-sfw.svg",
  4996. extra: 701 / 676,
  4997. bottom: 0.046
  4998. }
  4999. },
  5000. frontNsfw: {
  5001. height: math.unit(6, "feet"),
  5002. weight: math.unit(210, "lbs"),
  5003. name: "Front (NSFW)",
  5004. image: {
  5005. source: "./media/characters/cimmaron/front-nsfw.svg",
  5006. extra: 701 / 676,
  5007. bottom: 0.046
  5008. }
  5009. },
  5010. backNsfw: {
  5011. height: math.unit(6, "feet"),
  5012. weight: math.unit(210, "lbs"),
  5013. name: "Back (NSFW)",
  5014. image: {
  5015. source: "./media/characters/cimmaron/back-nsfw.svg",
  5016. extra: 701 / 676,
  5017. bottom: 0.046
  5018. }
  5019. },
  5020. dick: {
  5021. height: math.unit(1.714, "feet"),
  5022. name: "Dick",
  5023. image: {
  5024. source: "./media/characters/cimmaron/dick.svg"
  5025. }
  5026. },
  5027. },
  5028. [
  5029. {
  5030. name: "Normal",
  5031. height: math.unit(6, "feet"),
  5032. default: true
  5033. },
  5034. {
  5035. name: "Macro Mayor",
  5036. height: math.unit(350, "meters")
  5037. },
  5038. ]
  5039. ))
  5040. characterMakers.push(() => makeCharacter(
  5041. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5042. {
  5043. front: {
  5044. height: math.unit(6, "feet"),
  5045. weight: math.unit(200, "lbs"),
  5046. name: "Front",
  5047. image: {
  5048. source: "./media/characters/akari/front.svg",
  5049. extra: 962 / 901,
  5050. bottom: 0.04
  5051. }
  5052. }
  5053. },
  5054. [
  5055. {
  5056. name: "Micro",
  5057. height: math.unit(5, "inches"),
  5058. default: true
  5059. },
  5060. {
  5061. name: "Normal",
  5062. height: math.unit(7, "feet")
  5063. },
  5064. ]
  5065. ))
  5066. characterMakers.push(() => makeCharacter(
  5067. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5068. {
  5069. front: {
  5070. height: math.unit(6, "feet"),
  5071. weight: math.unit(140, "lbs"),
  5072. name: "Front",
  5073. image: {
  5074. source: "./media/characters/cynosura/front.svg",
  5075. extra: 896 / 847
  5076. }
  5077. },
  5078. back: {
  5079. height: math.unit(6, "feet"),
  5080. weight: math.unit(140, "lbs"),
  5081. name: "Back",
  5082. image: {
  5083. source: "./media/characters/cynosura/back.svg",
  5084. extra: 1365 / 1250
  5085. }
  5086. },
  5087. },
  5088. [
  5089. {
  5090. name: "Micro",
  5091. height: math.unit(4, "inches")
  5092. },
  5093. {
  5094. name: "Normal",
  5095. height: math.unit(5.75, "feet"),
  5096. default: true
  5097. },
  5098. {
  5099. name: "Tall",
  5100. height: math.unit(10, "feet")
  5101. },
  5102. {
  5103. name: "Big",
  5104. height: math.unit(20, "feet")
  5105. },
  5106. {
  5107. name: "Macro",
  5108. height: math.unit(50, "feet")
  5109. },
  5110. ]
  5111. ))
  5112. characterMakers.push(() => makeCharacter(
  5113. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5114. {
  5115. front: {
  5116. height: math.unit(6, "feet"),
  5117. weight: math.unit(170, "lbs"),
  5118. name: "Front",
  5119. image: {
  5120. source: "./media/characters/gin/front.svg",
  5121. extra: 1.053,
  5122. bottom: 0.025
  5123. }
  5124. },
  5125. foot: {
  5126. height: math.unit(6 / 4.25, "feet"),
  5127. name: "Foot",
  5128. image: {
  5129. source: "./media/characters/gin/foot.svg"
  5130. }
  5131. },
  5132. sole: {
  5133. height: math.unit(6 / 4.40, "feet"),
  5134. name: "Sole",
  5135. image: {
  5136. source: "./media/characters/gin/sole.svg"
  5137. }
  5138. },
  5139. },
  5140. [
  5141. {
  5142. name: "Normal",
  5143. height: math.unit(13 + 2 / 12, "feet")
  5144. },
  5145. {
  5146. name: "Macro",
  5147. height: math.unit(1500, "feet")
  5148. },
  5149. {
  5150. name: "Megamacro",
  5151. height: math.unit(200, "miles"),
  5152. default: true
  5153. },
  5154. {
  5155. name: "Gigamacro",
  5156. height: math.unit(500, "megameters")
  5157. },
  5158. {
  5159. name: "Teramacro",
  5160. height: math.unit(15, "lightyears")
  5161. }
  5162. ]
  5163. ))
  5164. characterMakers.push(() => makeCharacter(
  5165. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5166. {
  5167. front: {
  5168. height: math.unit(6 + 1 / 6, "feet"),
  5169. weight: math.unit(178, "lbs"),
  5170. name: "Front",
  5171. image: {
  5172. source: "./media/characters/guy/front.svg"
  5173. }
  5174. }
  5175. },
  5176. [
  5177. {
  5178. name: "Normal",
  5179. height: math.unit(6 + 1 / 6, "feet"),
  5180. default: true
  5181. },
  5182. {
  5183. name: "Large",
  5184. height: math.unit(25 + 7 / 12, "feet")
  5185. },
  5186. {
  5187. name: "Macro",
  5188. height: math.unit(60 + 9 / 12, "feet")
  5189. },
  5190. {
  5191. name: "Macro+",
  5192. height: math.unit(246, "feet")
  5193. },
  5194. {
  5195. name: "Macro++",
  5196. height: math.unit(878, "feet")
  5197. }
  5198. ]
  5199. ))
  5200. characterMakers.push(() => makeCharacter(
  5201. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5202. {
  5203. front: {
  5204. height: math.unit(9, "feet"),
  5205. weight: math.unit(800, "lbs"),
  5206. name: "Front",
  5207. image: {
  5208. source: "./media/characters/tiberius/front.svg",
  5209. extra: 2295 / 2071
  5210. }
  5211. },
  5212. back: {
  5213. height: math.unit(9, "feet"),
  5214. weight: math.unit(800, "lbs"),
  5215. name: "Back",
  5216. image: {
  5217. source: "./media/characters/tiberius/back.svg",
  5218. extra: 2373 / 2160
  5219. }
  5220. },
  5221. },
  5222. [
  5223. {
  5224. name: "Normal",
  5225. height: math.unit(9, "feet"),
  5226. default: true
  5227. }
  5228. ]
  5229. ))
  5230. characterMakers.push(() => makeCharacter(
  5231. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5232. {
  5233. front: {
  5234. height: math.unit(6, "feet"),
  5235. weight: math.unit(600, "lbs"),
  5236. name: "Front",
  5237. image: {
  5238. source: "./media/characters/surgo/front.svg",
  5239. extra: 3591 / 2227
  5240. }
  5241. },
  5242. back: {
  5243. height: math.unit(6, "feet"),
  5244. weight: math.unit(600, "lbs"),
  5245. name: "Back",
  5246. image: {
  5247. source: "./media/characters/surgo/back.svg",
  5248. extra: 3557 / 2228
  5249. }
  5250. },
  5251. laying: {
  5252. height: math.unit(6 * 0.85, "feet"),
  5253. weight: math.unit(600, "lbs"),
  5254. name: "Laying",
  5255. image: {
  5256. source: "./media/characters/surgo/laying.svg"
  5257. }
  5258. },
  5259. },
  5260. [
  5261. {
  5262. name: "Normal",
  5263. height: math.unit(6, "feet"),
  5264. default: true
  5265. }
  5266. ]
  5267. ))
  5268. characterMakers.push(() => makeCharacter(
  5269. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5270. {
  5271. side: {
  5272. height: math.unit(6, "feet"),
  5273. weight: math.unit(150, "lbs"),
  5274. name: "Side",
  5275. image: {
  5276. source: "./media/characters/cibus/side.svg",
  5277. extra: 800 / 400
  5278. }
  5279. },
  5280. },
  5281. [
  5282. {
  5283. name: "Normal",
  5284. height: math.unit(6, "feet"),
  5285. default: true
  5286. }
  5287. ]
  5288. ))
  5289. characterMakers.push(() => makeCharacter(
  5290. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5291. {
  5292. front: {
  5293. height: math.unit(6, "feet"),
  5294. weight: math.unit(240, "lbs"),
  5295. name: "Front",
  5296. image: {
  5297. source: "./media/characters/nibbles/front.svg"
  5298. }
  5299. },
  5300. side: {
  5301. height: math.unit(6, "feet"),
  5302. weight: math.unit(240, "lbs"),
  5303. name: "Side",
  5304. image: {
  5305. source: "./media/characters/nibbles/side.svg"
  5306. }
  5307. },
  5308. },
  5309. [
  5310. {
  5311. name: "Normal",
  5312. height: math.unit(9, "feet"),
  5313. default: true
  5314. }
  5315. ]
  5316. ))
  5317. characterMakers.push(() => makeCharacter(
  5318. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5319. {
  5320. side: {
  5321. height: math.unit(5 + 1 / 6, "feet"),
  5322. weight: math.unit(130, "lbs"),
  5323. name: "Side",
  5324. image: {
  5325. source: "./media/characters/rikky/side.svg"
  5326. }
  5327. },
  5328. },
  5329. [
  5330. {
  5331. name: "Normal",
  5332. height: math.unit(5 + 1 / 6, "feet")
  5333. },
  5334. {
  5335. name: "Macro",
  5336. height: math.unit(152, "feet"),
  5337. default: true
  5338. },
  5339. {
  5340. name: "Megamacro",
  5341. height: math.unit(7, "miles")
  5342. }
  5343. ]
  5344. ))
  5345. characterMakers.push(() => makeCharacter(
  5346. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5347. {
  5348. side: {
  5349. height: math.unit(370, "cm"),
  5350. weight: math.unit(350, "lbs"),
  5351. name: "Side",
  5352. image: {
  5353. source: "./media/characters/malfressa/side.svg"
  5354. }
  5355. },
  5356. walking: {
  5357. height: math.unit(370, "cm"),
  5358. weight: math.unit(350, "lbs"),
  5359. name: "Walking",
  5360. image: {
  5361. source: "./media/characters/malfressa/walking.svg"
  5362. }
  5363. },
  5364. feral: {
  5365. height: math.unit(2500, "cm"),
  5366. weight: math.unit(100000, "lbs"),
  5367. name: "Feral",
  5368. image: {
  5369. source: "./media/characters/malfressa/feral.svg",
  5370. extra: 2108 / 837,
  5371. bottom: 0.02
  5372. }
  5373. },
  5374. },
  5375. [
  5376. {
  5377. name: "Normal",
  5378. height: math.unit(370, "cm")
  5379. },
  5380. {
  5381. name: "Macro",
  5382. height: math.unit(300, "meters"),
  5383. default: true
  5384. }
  5385. ]
  5386. ))
  5387. characterMakers.push(() => makeCharacter(
  5388. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5389. {
  5390. front: {
  5391. height: math.unit(6, "feet"),
  5392. weight: math.unit(60, "kg"),
  5393. name: "Front",
  5394. image: {
  5395. source: "./media/characters/jaro/front.svg"
  5396. }
  5397. },
  5398. back: {
  5399. height: math.unit(6, "feet"),
  5400. weight: math.unit(60, "kg"),
  5401. name: "Back",
  5402. image: {
  5403. source: "./media/characters/jaro/back.svg"
  5404. }
  5405. },
  5406. },
  5407. [
  5408. {
  5409. name: "Micro",
  5410. height: math.unit(7, "inches")
  5411. },
  5412. {
  5413. name: "Normal",
  5414. height: math.unit(5.5, "feet"),
  5415. default: true
  5416. },
  5417. {
  5418. name: "Minimacro",
  5419. height: math.unit(20, "feet")
  5420. },
  5421. {
  5422. name: "Macro",
  5423. height: math.unit(200, "meters")
  5424. }
  5425. ]
  5426. ))
  5427. characterMakers.push(() => makeCharacter(
  5428. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5429. {
  5430. front: {
  5431. height: math.unit(6, "feet"),
  5432. weight: math.unit(195, "lb"),
  5433. name: "Front",
  5434. image: {
  5435. source: "./media/characters/rogue/front.svg"
  5436. }
  5437. },
  5438. },
  5439. [
  5440. {
  5441. name: "Macro",
  5442. height: math.unit(90, "feet"),
  5443. default: true
  5444. },
  5445. ]
  5446. ))
  5447. characterMakers.push(() => makeCharacter(
  5448. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5449. {
  5450. front: {
  5451. height: math.unit(5 + 8 / 12, "feet"),
  5452. weight: math.unit(140, "lb"),
  5453. name: "Front",
  5454. image: {
  5455. source: "./media/characters/piper/front.svg",
  5456. extra: 3928 / 3681
  5457. }
  5458. },
  5459. },
  5460. [
  5461. {
  5462. name: "Micro",
  5463. height: math.unit(2, "inches")
  5464. },
  5465. {
  5466. name: "Normal",
  5467. height: math.unit(5 + 8 / 12, "feet")
  5468. },
  5469. {
  5470. name: "Macro",
  5471. height: math.unit(250, "feet"),
  5472. default: true
  5473. },
  5474. {
  5475. name: "Megamacro",
  5476. height: math.unit(7, "miles")
  5477. },
  5478. ]
  5479. ))
  5480. characterMakers.push(() => makeCharacter(
  5481. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5482. {
  5483. front: {
  5484. height: math.unit(6, "feet"),
  5485. weight: math.unit(220, "lb"),
  5486. name: "Front",
  5487. image: {
  5488. source: "./media/characters/gemini/front.svg"
  5489. }
  5490. },
  5491. back: {
  5492. height: math.unit(6, "feet"),
  5493. weight: math.unit(220, "lb"),
  5494. name: "Back",
  5495. image: {
  5496. source: "./media/characters/gemini/back.svg"
  5497. }
  5498. },
  5499. kneeling: {
  5500. height: math.unit(6 / 1.5, "feet"),
  5501. weight: math.unit(220, "lb"),
  5502. name: "Kneeling",
  5503. image: {
  5504. source: "./media/characters/gemini/kneeling.svg",
  5505. bottom: 0.02
  5506. }
  5507. },
  5508. },
  5509. [
  5510. {
  5511. name: "Macro",
  5512. height: math.unit(300, "meters"),
  5513. default: true
  5514. },
  5515. {
  5516. name: "Megamacro",
  5517. height: math.unit(6900, "meters")
  5518. },
  5519. ]
  5520. ))
  5521. characterMakers.push(() => makeCharacter(
  5522. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5523. {
  5524. anthro: {
  5525. height: math.unit(2.35, "meters"),
  5526. weight: math.unit(73, "kg"),
  5527. name: "Anthro",
  5528. image: {
  5529. source: "./media/characters/alicia/anthro.svg",
  5530. extra: 2571 / 2385,
  5531. bottom: 75 / 2648
  5532. }
  5533. },
  5534. paw: {
  5535. height: math.unit(1.32, "feet"),
  5536. name: "Paw",
  5537. image: {
  5538. source: "./media/characters/alicia/paw.svg"
  5539. }
  5540. },
  5541. feral: {
  5542. height: math.unit(1.69, "meters"),
  5543. weight: math.unit(73, "kg"),
  5544. name: "Feral",
  5545. image: {
  5546. source: "./media/characters/alicia/feral.svg",
  5547. extra: 2123 / 1715,
  5548. bottom: 222 / 2349
  5549. }
  5550. },
  5551. },
  5552. [
  5553. {
  5554. name: "Normal",
  5555. height: math.unit(2.35, "meters")
  5556. },
  5557. {
  5558. name: "Macro",
  5559. height: math.unit(60, "meters"),
  5560. default: true
  5561. },
  5562. {
  5563. name: "Megamacro",
  5564. height: math.unit(10000, "kilometers")
  5565. },
  5566. ]
  5567. ))
  5568. characterMakers.push(() => makeCharacter(
  5569. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5570. {
  5571. front: {
  5572. height: math.unit(7, "feet"),
  5573. weight: math.unit(250, "lbs"),
  5574. name: "Front",
  5575. image: {
  5576. source: "./media/characters/archy/front.svg"
  5577. }
  5578. }
  5579. },
  5580. [
  5581. {
  5582. name: "Micro",
  5583. height: math.unit(1, "inch")
  5584. },
  5585. {
  5586. name: "Shorty",
  5587. height: math.unit(5, "feet")
  5588. },
  5589. {
  5590. name: "Normal",
  5591. height: math.unit(7, "feet")
  5592. },
  5593. {
  5594. name: "Macro",
  5595. height: math.unit(600, "meters"),
  5596. default: true
  5597. },
  5598. {
  5599. name: "Megamacro",
  5600. height: math.unit(1, "mile")
  5601. },
  5602. ]
  5603. ))
  5604. characterMakers.push(() => makeCharacter(
  5605. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5606. {
  5607. front: {
  5608. height: math.unit(1.65, "meters"),
  5609. weight: math.unit(74, "kg"),
  5610. name: "Front",
  5611. image: {
  5612. source: "./media/characters/berri/front.svg",
  5613. extra: 857 / 837,
  5614. bottom: 18 / 877
  5615. }
  5616. },
  5617. bum: {
  5618. height: math.unit(1.46, "feet"),
  5619. name: "Bum",
  5620. image: {
  5621. source: "./media/characters/berri/bum.svg"
  5622. }
  5623. },
  5624. mouth: {
  5625. height: math.unit(0.44, "feet"),
  5626. name: "Mouth",
  5627. image: {
  5628. source: "./media/characters/berri/mouth.svg"
  5629. }
  5630. },
  5631. paw: {
  5632. height: math.unit(0.826, "feet"),
  5633. name: "Paw",
  5634. image: {
  5635. source: "./media/characters/berri/paw.svg"
  5636. }
  5637. },
  5638. },
  5639. [
  5640. {
  5641. name: "Normal",
  5642. height: math.unit(1.65, "meters")
  5643. },
  5644. {
  5645. name: "Macro",
  5646. height: math.unit(60, "m"),
  5647. default: true
  5648. },
  5649. {
  5650. name: "Megamacro",
  5651. height: math.unit(9.213, "km")
  5652. },
  5653. {
  5654. name: "Planet Eater",
  5655. height: math.unit(489, "megameters")
  5656. },
  5657. {
  5658. name: "Teramacro",
  5659. height: math.unit(2471635000000, "meters")
  5660. },
  5661. {
  5662. name: "Examacro",
  5663. height: math.unit(8.0624e+26, "meters")
  5664. }
  5665. ]
  5666. ))
  5667. characterMakers.push(() => makeCharacter(
  5668. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5669. {
  5670. front: {
  5671. height: math.unit(1.72, "meters"),
  5672. weight: math.unit(68, "kg"),
  5673. name: "Front",
  5674. image: {
  5675. source: "./media/characters/lexi/front.svg"
  5676. }
  5677. }
  5678. },
  5679. [
  5680. {
  5681. name: "Very Smol",
  5682. height: math.unit(10, "mm")
  5683. },
  5684. {
  5685. name: "Micro",
  5686. height: math.unit(6.8, "cm"),
  5687. default: true
  5688. },
  5689. {
  5690. name: "Normal",
  5691. height: math.unit(1.72, "m")
  5692. }
  5693. ]
  5694. ))
  5695. characterMakers.push(() => makeCharacter(
  5696. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5697. {
  5698. front: {
  5699. height: math.unit(1.69, "meters"),
  5700. weight: math.unit(68, "kg"),
  5701. name: "Front",
  5702. image: {
  5703. source: "./media/characters/martin/front.svg",
  5704. extra: 596 / 581
  5705. }
  5706. }
  5707. },
  5708. [
  5709. {
  5710. name: "Micro",
  5711. height: math.unit(6.85, "cm"),
  5712. default: true
  5713. },
  5714. {
  5715. name: "Normal",
  5716. height: math.unit(1.69, "m")
  5717. }
  5718. ]
  5719. ))
  5720. characterMakers.push(() => makeCharacter(
  5721. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5722. {
  5723. front: {
  5724. height: math.unit(1.69, "meters"),
  5725. weight: math.unit(68, "kg"),
  5726. name: "Front",
  5727. image: {
  5728. source: "./media/characters/juno/front.svg"
  5729. }
  5730. }
  5731. },
  5732. [
  5733. {
  5734. name: "Micro",
  5735. height: math.unit(7, "cm")
  5736. },
  5737. {
  5738. name: "Normal",
  5739. height: math.unit(1.89, "m")
  5740. },
  5741. {
  5742. name: "Macro",
  5743. height: math.unit(353, "meters"),
  5744. default: true
  5745. }
  5746. ]
  5747. ))
  5748. characterMakers.push(() => makeCharacter(
  5749. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5750. {
  5751. front: {
  5752. height: math.unit(1.93, "meters"),
  5753. weight: math.unit(83, "kg"),
  5754. name: "Front",
  5755. image: {
  5756. source: "./media/characters/samantha/front.svg"
  5757. }
  5758. },
  5759. frontClothed: {
  5760. height: math.unit(1.93, "meters"),
  5761. weight: math.unit(83, "kg"),
  5762. name: "Front (Clothed)",
  5763. image: {
  5764. source: "./media/characters/samantha/front-clothed.svg"
  5765. }
  5766. },
  5767. back: {
  5768. height: math.unit(1.93, "meters"),
  5769. weight: math.unit(83, "kg"),
  5770. name: "Back",
  5771. image: {
  5772. source: "./media/characters/samantha/back.svg"
  5773. }
  5774. },
  5775. },
  5776. [
  5777. {
  5778. name: "Normal",
  5779. height: math.unit(1.93, "m")
  5780. },
  5781. {
  5782. name: "Macro",
  5783. height: math.unit(74, "meters"),
  5784. default: true
  5785. },
  5786. {
  5787. name: "Macro+",
  5788. height: math.unit(223, "meters"),
  5789. },
  5790. {
  5791. name: "Megamacro",
  5792. height: math.unit(8381, "meters"),
  5793. },
  5794. {
  5795. name: "Megamacro+",
  5796. height: math.unit(12000, "kilometers")
  5797. },
  5798. ]
  5799. ))
  5800. characterMakers.push(() => makeCharacter(
  5801. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5802. {
  5803. front: {
  5804. height: math.unit(1.92, "meters"),
  5805. weight: math.unit(80, "kg"),
  5806. name: "Front",
  5807. image: {
  5808. source: "./media/characters/dr-clay/front.svg"
  5809. }
  5810. },
  5811. frontClothed: {
  5812. height: math.unit(1.92, "meters"),
  5813. weight: math.unit(80, "kg"),
  5814. name: "Front (Clothed)",
  5815. image: {
  5816. source: "./media/characters/dr-clay/front-clothed.svg"
  5817. }
  5818. }
  5819. },
  5820. [
  5821. {
  5822. name: "Normal",
  5823. height: math.unit(1.92, "m")
  5824. },
  5825. {
  5826. name: "Macro",
  5827. height: math.unit(214, "meters"),
  5828. default: true
  5829. },
  5830. {
  5831. name: "Macro+",
  5832. height: math.unit(12.237, "meters"),
  5833. },
  5834. {
  5835. name: "Megamacro",
  5836. height: math.unit(557, "megameters"),
  5837. },
  5838. {
  5839. name: "Unimaginable",
  5840. height: math.unit(120e9, "lightyears")
  5841. },
  5842. ]
  5843. ))
  5844. characterMakers.push(() => makeCharacter(
  5845. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5846. {
  5847. front: {
  5848. height: math.unit(2, "meters"),
  5849. weight: math.unit(80, "kg"),
  5850. name: "Front",
  5851. image: {
  5852. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5853. }
  5854. }
  5855. },
  5856. [
  5857. {
  5858. name: "Teramacro",
  5859. height: math.unit(500000, "lightyears"),
  5860. default: true
  5861. },
  5862. ]
  5863. ))
  5864. characterMakers.push(() => makeCharacter(
  5865. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5866. {
  5867. front: {
  5868. height: math.unit(2, "meters"),
  5869. weight: math.unit(150, "kg"),
  5870. name: "Front",
  5871. image: {
  5872. source: "./media/characters/vemus/front.svg",
  5873. extra: 2384 / 2084,
  5874. bottom: 0.0123
  5875. }
  5876. }
  5877. },
  5878. [
  5879. {
  5880. name: "Normal",
  5881. height: math.unit(3.75, "meters"),
  5882. default: true
  5883. },
  5884. {
  5885. name: "Big",
  5886. height: math.unit(8, "meters")
  5887. },
  5888. {
  5889. name: "Macro",
  5890. height: math.unit(100, "meters")
  5891. },
  5892. {
  5893. name: "Macro+",
  5894. height: math.unit(1500, "meters")
  5895. },
  5896. {
  5897. name: "Stellar",
  5898. height: math.unit(14e8, "meters")
  5899. },
  5900. ]
  5901. ))
  5902. characterMakers.push(() => makeCharacter(
  5903. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5904. {
  5905. front: {
  5906. height: math.unit(2, "meters"),
  5907. weight: math.unit(70, "kg"),
  5908. name: "Front",
  5909. image: {
  5910. source: "./media/characters/beherit/front.svg",
  5911. extra: 1408 / 1242
  5912. }
  5913. }
  5914. },
  5915. [
  5916. {
  5917. name: "Normal",
  5918. height: math.unit(6, "feet")
  5919. },
  5920. {
  5921. name: "Lorg",
  5922. height: math.unit(25, "feet"),
  5923. default: true
  5924. },
  5925. {
  5926. name: "Lorger",
  5927. height: math.unit(75, "feet")
  5928. },
  5929. {
  5930. name: "Macro",
  5931. height: math.unit(200, "meters")
  5932. },
  5933. ]
  5934. ))
  5935. characterMakers.push(() => makeCharacter(
  5936. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5937. {
  5938. front: {
  5939. height: math.unit(2, "meters"),
  5940. weight: math.unit(150, "kg"),
  5941. name: "Front",
  5942. image: {
  5943. source: "./media/characters/everett/front.svg",
  5944. extra: 2038 / 1737,
  5945. bottom: 0.03
  5946. }
  5947. },
  5948. paw: {
  5949. height: math.unit(2 / 3.6, "meters"),
  5950. name: "Paw",
  5951. image: {
  5952. source: "./media/characters/everett/paw.svg"
  5953. }
  5954. },
  5955. },
  5956. [
  5957. {
  5958. name: "Normal",
  5959. height: math.unit(15, "feet"),
  5960. default: true
  5961. },
  5962. {
  5963. name: "Lorg",
  5964. height: math.unit(70, "feet"),
  5965. default: true
  5966. },
  5967. {
  5968. name: "Lorger",
  5969. height: math.unit(250, "feet")
  5970. },
  5971. {
  5972. name: "Macro",
  5973. height: math.unit(500, "meters")
  5974. },
  5975. ]
  5976. ))
  5977. characterMakers.push(() => makeCharacter(
  5978. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  5979. {
  5980. front: {
  5981. height: math.unit(2, "meters"),
  5982. weight: math.unit(86, "kg"),
  5983. name: "Front",
  5984. image: {
  5985. source: "./media/characters/rose-lion/front.svg"
  5986. }
  5987. },
  5988. bent: {
  5989. height: math.unit(2 / 1.4288, "meters"),
  5990. weight: math.unit(86, "kg"),
  5991. name: "Bent",
  5992. image: {
  5993. source: "./media/characters/rose-lion/bent.svg"
  5994. }
  5995. }
  5996. },
  5997. [
  5998. {
  5999. name: "Mini-Micro",
  6000. height: math.unit(1, "cm")
  6001. },
  6002. {
  6003. name: "Micro",
  6004. height: math.unit(3.5, "inches"),
  6005. default: true
  6006. },
  6007. {
  6008. name: "Normal",
  6009. height: math.unit(6 + 1 / 6, "feet")
  6010. },
  6011. {
  6012. name: "Mini-Macro",
  6013. height: math.unit(9 + 10 / 12, "feet")
  6014. },
  6015. ]
  6016. ))
  6017. characterMakers.push(() => makeCharacter(
  6018. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6019. {
  6020. front: {
  6021. height: math.unit(2, "meters"),
  6022. weight: math.unit(350, "lbs"),
  6023. name: "Front",
  6024. image: {
  6025. source: "./media/characters/regal/front.svg"
  6026. }
  6027. },
  6028. back: {
  6029. height: math.unit(2, "meters"),
  6030. weight: math.unit(350, "lbs"),
  6031. name: "Back",
  6032. image: {
  6033. source: "./media/characters/regal/back.svg"
  6034. }
  6035. },
  6036. },
  6037. [
  6038. {
  6039. name: "Macro",
  6040. height: math.unit(350, "feet"),
  6041. default: true
  6042. }
  6043. ]
  6044. ))
  6045. characterMakers.push(() => makeCharacter(
  6046. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6047. {
  6048. front: {
  6049. height: math.unit(4 + 11 / 12, "feet"),
  6050. weight: math.unit(100, "lbs"),
  6051. name: "Front",
  6052. image: {
  6053. source: "./media/characters/opal/front.svg"
  6054. }
  6055. },
  6056. frontAlt: {
  6057. height: math.unit(4 + 11 / 12, "feet"),
  6058. weight: math.unit(100, "lbs"),
  6059. name: "Front (Alt)",
  6060. image: {
  6061. source: "./media/characters/opal/front-alt.svg"
  6062. }
  6063. },
  6064. },
  6065. [
  6066. {
  6067. name: "Small",
  6068. height: math.unit(4 + 11 / 12, "feet")
  6069. },
  6070. {
  6071. name: "Normal",
  6072. height: math.unit(20, "feet"),
  6073. default: true
  6074. },
  6075. {
  6076. name: "Macro",
  6077. height: math.unit(120, "feet")
  6078. },
  6079. {
  6080. name: "Megamacro",
  6081. height: math.unit(80, "miles")
  6082. },
  6083. {
  6084. name: "True Size",
  6085. height: math.unit(100000, "lightyears")
  6086. },
  6087. ]
  6088. ))
  6089. characterMakers.push(() => makeCharacter(
  6090. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6091. {
  6092. front: {
  6093. height: math.unit(6, "feet"),
  6094. weight: math.unit(200, "lbs"),
  6095. name: "Front",
  6096. image: {
  6097. source: "./media/characters/vector-wuff/front.svg"
  6098. }
  6099. }
  6100. },
  6101. [
  6102. {
  6103. name: "Normal",
  6104. height: math.unit(2.8, "meters")
  6105. },
  6106. {
  6107. name: "Macro",
  6108. height: math.unit(450, "meters"),
  6109. default: true
  6110. },
  6111. {
  6112. name: "Megamacro",
  6113. height: math.unit(15, "kilometers")
  6114. }
  6115. ]
  6116. ))
  6117. characterMakers.push(() => makeCharacter(
  6118. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6119. {
  6120. front: {
  6121. height: math.unit(6, "feet"),
  6122. weight: math.unit(256, "lbs"),
  6123. name: "Front",
  6124. image: {
  6125. source: "./media/characters/dannik/front.svg"
  6126. }
  6127. }
  6128. },
  6129. [
  6130. {
  6131. name: "Macro",
  6132. height: math.unit(69.57, "meters"),
  6133. default: true
  6134. },
  6135. ]
  6136. ))
  6137. characterMakers.push(() => makeCharacter(
  6138. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6139. {
  6140. front: {
  6141. height: math.unit(6, "feet"),
  6142. weight: math.unit(120, "lbs"),
  6143. name: "Front",
  6144. image: {
  6145. source: "./media/characters/azura-saharah/front.svg"
  6146. }
  6147. },
  6148. back: {
  6149. height: math.unit(6, "feet"),
  6150. weight: math.unit(120, "lbs"),
  6151. name: "Back",
  6152. image: {
  6153. source: "./media/characters/azura-saharah/back.svg"
  6154. }
  6155. },
  6156. },
  6157. [
  6158. {
  6159. name: "Macro",
  6160. height: math.unit(100, "feet"),
  6161. default: true
  6162. },
  6163. ]
  6164. ))
  6165. characterMakers.push(() => makeCharacter(
  6166. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6167. {
  6168. side: {
  6169. height: math.unit(5 + 4 / 12, "feet"),
  6170. weight: math.unit(163, "lbs"),
  6171. name: "Side",
  6172. image: {
  6173. source: "./media/characters/kennedy/side.svg"
  6174. }
  6175. }
  6176. },
  6177. [
  6178. {
  6179. name: "Standard Doggo",
  6180. height: math.unit(5 + 4 / 12, "feet")
  6181. },
  6182. {
  6183. name: "Big Doggo",
  6184. height: math.unit(25 + 3 / 12, "feet"),
  6185. default: true
  6186. },
  6187. ]
  6188. ))
  6189. characterMakers.push(() => makeCharacter(
  6190. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6191. {
  6192. front: {
  6193. height: math.unit(6, "feet"),
  6194. weight: math.unit(90, "lbs"),
  6195. name: "Front",
  6196. image: {
  6197. source: "./media/characters/odi-lunar/front.svg"
  6198. }
  6199. }
  6200. },
  6201. [
  6202. {
  6203. name: "Micro",
  6204. height: math.unit(3, "inches"),
  6205. default: true
  6206. },
  6207. {
  6208. name: "Normal",
  6209. height: math.unit(5.5, "feet")
  6210. }
  6211. ]
  6212. ))
  6213. characterMakers.push(() => makeCharacter(
  6214. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6215. {
  6216. back: {
  6217. height: math.unit(6, "feet"),
  6218. weight: math.unit(220, "lbs"),
  6219. name: "Back",
  6220. image: {
  6221. source: "./media/characters/mandake/back.svg"
  6222. }
  6223. }
  6224. },
  6225. [
  6226. {
  6227. name: "Normal",
  6228. height: math.unit(7, "feet"),
  6229. default: true
  6230. },
  6231. {
  6232. name: "Macro",
  6233. height: math.unit(78, "feet")
  6234. },
  6235. {
  6236. name: "Macro+",
  6237. height: math.unit(300, "meters")
  6238. },
  6239. {
  6240. name: "Macro++",
  6241. height: math.unit(2400, "feet")
  6242. },
  6243. {
  6244. name: "Megamacro",
  6245. height: math.unit(5167, "meters")
  6246. },
  6247. {
  6248. name: "Gigamacro",
  6249. height: math.unit(41769, "miles")
  6250. },
  6251. ]
  6252. ))
  6253. characterMakers.push(() => makeCharacter(
  6254. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6255. {
  6256. front: {
  6257. height: math.unit(6, "feet"),
  6258. weight: math.unit(120, "lbs"),
  6259. name: "Front",
  6260. image: {
  6261. source: "./media/characters/yozey/front.svg"
  6262. }
  6263. },
  6264. frontAlt: {
  6265. height: math.unit(6, "feet"),
  6266. weight: math.unit(120, "lbs"),
  6267. name: "Front (Alt)",
  6268. image: {
  6269. source: "./media/characters/yozey/front-alt.svg"
  6270. }
  6271. },
  6272. side: {
  6273. height: math.unit(6, "feet"),
  6274. weight: math.unit(120, "lbs"),
  6275. name: "Side",
  6276. image: {
  6277. source: "./media/characters/yozey/side.svg"
  6278. }
  6279. },
  6280. },
  6281. [
  6282. {
  6283. name: "Micro",
  6284. height: math.unit(3, "inches"),
  6285. default: true
  6286. },
  6287. {
  6288. name: "Normal",
  6289. height: math.unit(6, "feet")
  6290. }
  6291. ]
  6292. ))
  6293. characterMakers.push(() => makeCharacter(
  6294. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6295. {
  6296. front: {
  6297. height: math.unit(6, "feet"),
  6298. weight: math.unit(103, "lbs"),
  6299. name: "Front",
  6300. image: {
  6301. source: "./media/characters/valeska-voss/front.svg"
  6302. }
  6303. }
  6304. },
  6305. [
  6306. {
  6307. name: "Mini-Sized Sub",
  6308. height: math.unit(3.1, "inches")
  6309. },
  6310. {
  6311. name: "Mid-Sized Sub",
  6312. height: math.unit(6.2, "inches")
  6313. },
  6314. {
  6315. name: "Full-Sized Sub",
  6316. height: math.unit(9.3, "inches")
  6317. },
  6318. {
  6319. name: "Normal",
  6320. height: math.unit(5 + 2 / 12, "foot"),
  6321. default: true
  6322. },
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6327. {
  6328. front: {
  6329. height: math.unit(6, "feet"),
  6330. weight: math.unit(160, "lbs"),
  6331. name: "Front",
  6332. image: {
  6333. source: "./media/characters/gene-zeta/front.svg",
  6334. bottom: 0.03,
  6335. extra: 1
  6336. }
  6337. }
  6338. },
  6339. [
  6340. {
  6341. name: "Normal",
  6342. height: math.unit(6.25, "foot"),
  6343. default: true
  6344. },
  6345. ]
  6346. ))
  6347. characterMakers.push(() => makeCharacter(
  6348. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6349. {
  6350. front: {
  6351. height: math.unit(6, "feet"),
  6352. weight: math.unit(350, "lbs"),
  6353. name: "Front",
  6354. image: {
  6355. source: "./media/characters/razinox/front.svg",
  6356. extra: 1686 / 1548,
  6357. bottom: 28.2 / 1868
  6358. }
  6359. },
  6360. back: {
  6361. height: math.unit(6, "feet"),
  6362. weight: math.unit(350, "lbs"),
  6363. name: "Back",
  6364. image: {
  6365. source: "./media/characters/razinox/back.svg",
  6366. extra: 1660 / 1590,
  6367. bottom: 15 / 1665
  6368. }
  6369. },
  6370. },
  6371. [
  6372. {
  6373. name: "Normal",
  6374. height: math.unit(10 + 8 / 12, "foot")
  6375. },
  6376. {
  6377. name: "Minimacro",
  6378. height: math.unit(15, "foot")
  6379. },
  6380. {
  6381. name: "Macro",
  6382. height: math.unit(60, "foot"),
  6383. default: true
  6384. },
  6385. {
  6386. name: "Megamacro",
  6387. height: math.unit(5, "miles")
  6388. },
  6389. {
  6390. name: "Gigamacro",
  6391. height: math.unit(6000, "miles")
  6392. },
  6393. ]
  6394. ))
  6395. characterMakers.push(() => makeCharacter(
  6396. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6397. {
  6398. front: {
  6399. height: math.unit(6, "feet"),
  6400. weight: math.unit(150, "lbs"),
  6401. name: "Front",
  6402. image: {
  6403. source: "./media/characters/cobalt/front.svg"
  6404. }
  6405. }
  6406. },
  6407. [
  6408. {
  6409. name: "Normal",
  6410. height: math.unit(8 + 1 / 12, "foot")
  6411. },
  6412. {
  6413. name: "Macro",
  6414. height: math.unit(111, "foot"),
  6415. default: true
  6416. },
  6417. {
  6418. name: "Supracosmic",
  6419. height: math.unit(1e42, "feet")
  6420. },
  6421. ]
  6422. ))
  6423. characterMakers.push(() => makeCharacter(
  6424. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6425. {
  6426. front: {
  6427. height: math.unit(6, "feet"),
  6428. weight: math.unit(140, "lbs"),
  6429. name: "Front",
  6430. image: {
  6431. source: "./media/characters/amanda/front.svg"
  6432. }
  6433. }
  6434. },
  6435. [
  6436. {
  6437. name: "Micro",
  6438. height: math.unit(5, "inches"),
  6439. default: true
  6440. },
  6441. ]
  6442. ))
  6443. characterMakers.push(() => makeCharacter(
  6444. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6445. {
  6446. front: {
  6447. height: math.unit(5.59, "feet"),
  6448. weight: math.unit(250, "lbs"),
  6449. name: "Front",
  6450. image: {
  6451. source: "./media/characters/teal/front.svg"
  6452. }
  6453. },
  6454. frontAlt: {
  6455. height: math.unit(6, "feet"),
  6456. weight: math.unit(250, "lbs"),
  6457. name: "Front (Alt)",
  6458. image: {
  6459. source: "./media/characters/teal/front-alt.svg",
  6460. bottom: 0.04,
  6461. extra: 1
  6462. }
  6463. },
  6464. },
  6465. [
  6466. {
  6467. name: "Normal",
  6468. height: math.unit(12, "feet"),
  6469. default: true
  6470. },
  6471. {
  6472. name: "Macro",
  6473. height: math.unit(300, "feet")
  6474. },
  6475. ]
  6476. ))
  6477. characterMakers.push(() => makeCharacter(
  6478. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6479. {
  6480. frontCat: {
  6481. height: math.unit(6, "feet"),
  6482. weight: math.unit(180, "lbs"),
  6483. name: "Front (Cat)",
  6484. image: {
  6485. source: "./media/characters/ravin-amulet/front-cat.svg"
  6486. }
  6487. },
  6488. frontCatAlt: {
  6489. height: math.unit(6, "feet"),
  6490. weight: math.unit(180, "lbs"),
  6491. name: "Front (Alt, Cat)",
  6492. image: {
  6493. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6494. }
  6495. },
  6496. frontWerewolf: {
  6497. height: math.unit(6 * 1.2, "feet"),
  6498. weight: math.unit(225, "lbs"),
  6499. name: "Front (Werewolf)",
  6500. image: {
  6501. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6502. }
  6503. },
  6504. backWerewolf: {
  6505. height: math.unit(6 * 1.2, "feet"),
  6506. weight: math.unit(225, "lbs"),
  6507. name: "Back (Werewolf)",
  6508. image: {
  6509. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6510. }
  6511. },
  6512. },
  6513. [
  6514. {
  6515. name: "Nano",
  6516. height: math.unit(1, "micrometer")
  6517. },
  6518. {
  6519. name: "Micro",
  6520. height: math.unit(1, "inch")
  6521. },
  6522. {
  6523. name: "Normal",
  6524. height: math.unit(6, "feet"),
  6525. default: true
  6526. },
  6527. {
  6528. name: "Macro",
  6529. height: math.unit(60, "feet")
  6530. }
  6531. ]
  6532. ))
  6533. characterMakers.push(() => makeCharacter(
  6534. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6535. {
  6536. front: {
  6537. height: math.unit(6, "feet"),
  6538. weight: math.unit(165, "lbs"),
  6539. name: "Front",
  6540. image: {
  6541. source: "./media/characters/fluoresce/front.svg"
  6542. }
  6543. }
  6544. },
  6545. [
  6546. {
  6547. name: "Micro",
  6548. height: math.unit(6, "cm")
  6549. },
  6550. {
  6551. name: "Normal",
  6552. height: math.unit(5 + 7 / 12, "feet"),
  6553. default: true
  6554. },
  6555. {
  6556. name: "Macro",
  6557. height: math.unit(56, "feet")
  6558. },
  6559. {
  6560. name: "Megamacro",
  6561. height: math.unit(1.9, "miles")
  6562. },
  6563. ]
  6564. ))
  6565. characterMakers.push(() => makeCharacter(
  6566. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6567. {
  6568. front: {
  6569. height: math.unit(9 + 6 / 12, "feet"),
  6570. weight: math.unit(523, "lbs"),
  6571. name: "Side",
  6572. image: {
  6573. source: "./media/characters/aurora/side.svg"
  6574. }
  6575. }
  6576. },
  6577. [
  6578. {
  6579. name: "Normal",
  6580. height: math.unit(9 + 6 / 12, "feet")
  6581. },
  6582. {
  6583. name: "Macro",
  6584. height: math.unit(96, "feet"),
  6585. default: true
  6586. },
  6587. {
  6588. name: "Macro+",
  6589. height: math.unit(243, "feet")
  6590. },
  6591. ]
  6592. ))
  6593. characterMakers.push(() => makeCharacter(
  6594. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6595. {
  6596. front: {
  6597. height: math.unit(194, "cm"),
  6598. weight: math.unit(90, "kg"),
  6599. name: "Front",
  6600. image: {
  6601. source: "./media/characters/ranek/front.svg"
  6602. }
  6603. },
  6604. side: {
  6605. height: math.unit(194, "cm"),
  6606. weight: math.unit(90, "kg"),
  6607. name: "Side",
  6608. image: {
  6609. source: "./media/characters/ranek/side.svg"
  6610. }
  6611. },
  6612. back: {
  6613. height: math.unit(194, "cm"),
  6614. weight: math.unit(90, "kg"),
  6615. name: "Back",
  6616. image: {
  6617. source: "./media/characters/ranek/back.svg"
  6618. }
  6619. },
  6620. feral: {
  6621. height: math.unit(30, "cm"),
  6622. weight: math.unit(1.6, "lbs"),
  6623. name: "Feral",
  6624. image: {
  6625. source: "./media/characters/ranek/feral.svg"
  6626. }
  6627. },
  6628. },
  6629. [
  6630. {
  6631. name: "Normal",
  6632. height: math.unit(194, "cm"),
  6633. default: true
  6634. },
  6635. {
  6636. name: "Macro",
  6637. height: math.unit(100, "meters")
  6638. },
  6639. ]
  6640. ))
  6641. characterMakers.push(() => makeCharacter(
  6642. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6643. {
  6644. front: {
  6645. height: math.unit(5 + 6 / 12, "feet"),
  6646. weight: math.unit(153, "lbs"),
  6647. name: "Front",
  6648. image: {
  6649. source: "./media/characters/andrew-cooper/front.svg"
  6650. }
  6651. },
  6652. },
  6653. [
  6654. {
  6655. name: "Nano",
  6656. height: math.unit(1, "mm")
  6657. },
  6658. {
  6659. name: "Micro",
  6660. height: math.unit(2, "inches")
  6661. },
  6662. {
  6663. name: "Normal",
  6664. height: math.unit(5 + 6 / 12, "feet"),
  6665. default: true
  6666. }
  6667. ]
  6668. ))
  6669. characterMakers.push(() => makeCharacter(
  6670. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6671. {
  6672. front: {
  6673. height: math.unit(6, "feet"),
  6674. weight: math.unit(180, "lbs"),
  6675. name: "Front",
  6676. image: {
  6677. source: "./media/characters/akane-sato/front.svg",
  6678. extra: 1219 / 1140
  6679. }
  6680. },
  6681. back: {
  6682. height: math.unit(6, "feet"),
  6683. weight: math.unit(180, "lbs"),
  6684. name: "Back",
  6685. image: {
  6686. source: "./media/characters/akane-sato/back.svg",
  6687. extra: 1219 / 1170
  6688. }
  6689. },
  6690. },
  6691. [
  6692. {
  6693. name: "Normal",
  6694. height: math.unit(2.5, "meters")
  6695. },
  6696. {
  6697. name: "Macro",
  6698. height: math.unit(250, "meters"),
  6699. default: true
  6700. },
  6701. {
  6702. name: "Megamacro",
  6703. height: math.unit(25, "km")
  6704. },
  6705. ]
  6706. ))
  6707. characterMakers.push(() => makeCharacter(
  6708. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6709. {
  6710. front: {
  6711. height: math.unit(6, "feet"),
  6712. weight: math.unit(65, "kg"),
  6713. name: "Front",
  6714. image: {
  6715. source: "./media/characters/rook/front.svg",
  6716. extra: 960 / 950
  6717. }
  6718. }
  6719. },
  6720. [
  6721. {
  6722. name: "Normal",
  6723. height: math.unit(8.8, "feet")
  6724. },
  6725. {
  6726. name: "Macro",
  6727. height: math.unit(88, "feet"),
  6728. default: true
  6729. },
  6730. {
  6731. name: "Megamacro",
  6732. height: math.unit(8, "miles")
  6733. },
  6734. ]
  6735. ))
  6736. characterMakers.push(() => makeCharacter(
  6737. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6738. {
  6739. front: {
  6740. height: math.unit(12 + 2 / 12, "feet"),
  6741. weight: math.unit(808, "lbs"),
  6742. name: "Front",
  6743. image: {
  6744. source: "./media/characters/prodigy/front.svg"
  6745. }
  6746. }
  6747. },
  6748. [
  6749. {
  6750. name: "Normal",
  6751. height: math.unit(12 + 2 / 12, "feet"),
  6752. default: true
  6753. },
  6754. {
  6755. name: "Macro",
  6756. height: math.unit(143, "feet")
  6757. },
  6758. {
  6759. name: "Macro+",
  6760. height: math.unit(400, "feet")
  6761. },
  6762. ]
  6763. ))
  6764. characterMakers.push(() => makeCharacter(
  6765. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6766. {
  6767. front: {
  6768. height: math.unit(6, "feet"),
  6769. weight: math.unit(225, "lbs"),
  6770. name: "Front",
  6771. image: {
  6772. source: "./media/characters/daniel/front.svg"
  6773. }
  6774. },
  6775. leaning: {
  6776. height: math.unit(6, "feet"),
  6777. weight: math.unit(225, "lbs"),
  6778. name: "Leaning",
  6779. image: {
  6780. source: "./media/characters/daniel/leaning.svg"
  6781. }
  6782. },
  6783. },
  6784. [
  6785. {
  6786. name: "Macro",
  6787. height: math.unit(1000, "feet"),
  6788. default: true
  6789. },
  6790. ]
  6791. ))
  6792. characterMakers.push(() => makeCharacter(
  6793. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6794. {
  6795. front: {
  6796. height: math.unit(6, "feet"),
  6797. weight: math.unit(88, "lbs"),
  6798. name: "Front",
  6799. image: {
  6800. source: "./media/characters/chiros/front.svg",
  6801. extra: 306 / 226
  6802. }
  6803. },
  6804. side: {
  6805. height: math.unit(6, "feet"),
  6806. weight: math.unit(88, "lbs"),
  6807. name: "Side",
  6808. image: {
  6809. source: "./media/characters/chiros/side.svg",
  6810. extra: 306 / 226
  6811. }
  6812. },
  6813. },
  6814. [
  6815. {
  6816. name: "Normal",
  6817. height: math.unit(6, "cm"),
  6818. default: true
  6819. },
  6820. ]
  6821. ))
  6822. characterMakers.push(() => makeCharacter(
  6823. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6824. {
  6825. front: {
  6826. height: math.unit(6, "feet"),
  6827. weight: math.unit(100, "lbs"),
  6828. name: "Front",
  6829. image: {
  6830. source: "./media/characters/selka/front.svg",
  6831. extra: 947 / 887
  6832. }
  6833. }
  6834. },
  6835. [
  6836. {
  6837. name: "Normal",
  6838. height: math.unit(5, "cm"),
  6839. default: true
  6840. },
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6845. {
  6846. front: {
  6847. height: math.unit(8 + 3 / 12, "feet"),
  6848. weight: math.unit(424, "lbs"),
  6849. name: "Front",
  6850. image: {
  6851. source: "./media/characters/verin/front.svg",
  6852. extra: 1845 / 1550
  6853. }
  6854. },
  6855. frontArmored: {
  6856. height: math.unit(8 + 3 / 12, "feet"),
  6857. weight: math.unit(424, "lbs"),
  6858. name: "Front (Armored)",
  6859. image: {
  6860. source: "./media/characters/verin/front-armor.svg",
  6861. extra: 1845 / 1550,
  6862. bottom: 0.01
  6863. }
  6864. },
  6865. back: {
  6866. height: math.unit(8 + 3 / 12, "feet"),
  6867. weight: math.unit(424, "lbs"),
  6868. name: "Back",
  6869. image: {
  6870. source: "./media/characters/verin/back.svg",
  6871. bottom: 0.1,
  6872. extra: 1
  6873. }
  6874. },
  6875. foot: {
  6876. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6877. name: "Foot",
  6878. image: {
  6879. source: "./media/characters/verin/foot.svg"
  6880. }
  6881. },
  6882. },
  6883. [
  6884. {
  6885. name: "Normal",
  6886. height: math.unit(8 + 3 / 12, "feet")
  6887. },
  6888. {
  6889. name: "Minimacro",
  6890. height: math.unit(21, "feet"),
  6891. default: true
  6892. },
  6893. {
  6894. name: "Macro",
  6895. height: math.unit(626, "feet")
  6896. },
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6901. {
  6902. front: {
  6903. height: math.unit(2.718, "meters"),
  6904. weight: math.unit(150, "lbs"),
  6905. name: "Front",
  6906. image: {
  6907. source: "./media/characters/sovrim-terraquian/front.svg"
  6908. }
  6909. },
  6910. back: {
  6911. height: math.unit(2.718, "meters"),
  6912. weight: math.unit(150, "lbs"),
  6913. name: "Back",
  6914. image: {
  6915. source: "./media/characters/sovrim-terraquian/back.svg"
  6916. }
  6917. }
  6918. },
  6919. [
  6920. {
  6921. name: "Micro",
  6922. height: math.unit(2, "inches")
  6923. },
  6924. {
  6925. name: "Small",
  6926. height: math.unit(1, "meter")
  6927. },
  6928. {
  6929. name: "Normal",
  6930. height: math.unit(Math.E, "meters"),
  6931. default: true
  6932. },
  6933. {
  6934. name: "Macro",
  6935. height: math.unit(20, "meters")
  6936. },
  6937. {
  6938. name: "Macro+",
  6939. height: math.unit(400, "meters")
  6940. },
  6941. ]
  6942. ))
  6943. characterMakers.push(() => makeCharacter(
  6944. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6945. {
  6946. front: {
  6947. height: math.unit(7, "feet"),
  6948. weight: math.unit(489, "lbs"),
  6949. name: "Front",
  6950. image: {
  6951. source: "./media/characters/reece-silvermane/front.svg",
  6952. bottom: 0.02,
  6953. extra: 1
  6954. }
  6955. },
  6956. },
  6957. [
  6958. {
  6959. name: "Macro",
  6960. height: math.unit(1.5, "miles"),
  6961. default: true
  6962. },
  6963. ]
  6964. ))
  6965. characterMakers.push(() => makeCharacter(
  6966. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  6967. {
  6968. front: {
  6969. height: math.unit(6, "feet"),
  6970. weight: math.unit(78, "kg"),
  6971. name: "Front",
  6972. image: {
  6973. source: "./media/characters/kane/front.svg",
  6974. extra: 978 / 899
  6975. }
  6976. },
  6977. },
  6978. [
  6979. {
  6980. name: "Normal",
  6981. height: math.unit(2.1, "m"),
  6982. },
  6983. {
  6984. name: "Macro",
  6985. height: math.unit(1, "km"),
  6986. default: true
  6987. },
  6988. ]
  6989. ))
  6990. characterMakers.push(() => makeCharacter(
  6991. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  6992. {
  6993. front: {
  6994. height: math.unit(6, "feet"),
  6995. weight: math.unit(200, "kg"),
  6996. name: "Front",
  6997. image: {
  6998. source: "./media/characters/tegon/front.svg",
  6999. bottom: 0.01,
  7000. extra: 1
  7001. }
  7002. },
  7003. },
  7004. [
  7005. {
  7006. name: "Micro",
  7007. height: math.unit(1, "inch")
  7008. },
  7009. {
  7010. name: "Normal",
  7011. height: math.unit(6 + 3 / 12, "feet"),
  7012. default: true
  7013. },
  7014. {
  7015. name: "Macro",
  7016. height: math.unit(300, "feet")
  7017. },
  7018. {
  7019. name: "Megamacro",
  7020. height: math.unit(69, "miles")
  7021. },
  7022. ]
  7023. ))
  7024. characterMakers.push(() => makeCharacter(
  7025. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7026. {
  7027. side: {
  7028. height: math.unit(6, "feet"),
  7029. weight: math.unit(2304, "lbs"),
  7030. name: "Side",
  7031. image: {
  7032. source: "./media/characters/arcturax/side.svg",
  7033. extra: 790 / 376,
  7034. bottom: 0.01
  7035. }
  7036. },
  7037. },
  7038. [
  7039. {
  7040. name: "Micro",
  7041. height: math.unit(2, "inch")
  7042. },
  7043. {
  7044. name: "Normal",
  7045. height: math.unit(6, "feet")
  7046. },
  7047. {
  7048. name: "Macro",
  7049. height: math.unit(39, "feet"),
  7050. default: true
  7051. },
  7052. {
  7053. name: "Megamacro",
  7054. height: math.unit(7, "miles")
  7055. },
  7056. ]
  7057. ))
  7058. characterMakers.push(() => makeCharacter(
  7059. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7060. {
  7061. front: {
  7062. height: math.unit(6, "feet"),
  7063. weight: math.unit(50, "lbs"),
  7064. name: "Front",
  7065. image: {
  7066. source: "./media/characters/sentri/front.svg",
  7067. extra: 1750 / 1570,
  7068. bottom: 0.025
  7069. }
  7070. },
  7071. frontAlt: {
  7072. height: math.unit(6, "feet"),
  7073. weight: math.unit(50, "lbs"),
  7074. name: "Front (Alt)",
  7075. image: {
  7076. source: "./media/characters/sentri/front-alt.svg",
  7077. extra: 1750 / 1570,
  7078. bottom: 0.025
  7079. }
  7080. },
  7081. },
  7082. [
  7083. {
  7084. name: "Normal",
  7085. height: math.unit(15, "feet"),
  7086. default: true
  7087. },
  7088. {
  7089. name: "Macro",
  7090. height: math.unit(2500, "feet")
  7091. }
  7092. ]
  7093. ))
  7094. characterMakers.push(() => makeCharacter(
  7095. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7096. {
  7097. front: {
  7098. height: math.unit(5 + 8 / 12, "feet"),
  7099. weight: math.unit(130, "lbs"),
  7100. name: "Front",
  7101. image: {
  7102. source: "./media/characters/corvin/front.svg",
  7103. extra: 1803 / 1629
  7104. }
  7105. },
  7106. frontShirt: {
  7107. height: math.unit(5 + 8 / 12, "feet"),
  7108. weight: math.unit(130, "lbs"),
  7109. name: "Front (Shirt)",
  7110. image: {
  7111. source: "./media/characters/corvin/front-shirt.svg",
  7112. extra: 1803 / 1629
  7113. }
  7114. },
  7115. frontPoncho: {
  7116. height: math.unit(5 + 8 / 12, "feet"),
  7117. weight: math.unit(130, "lbs"),
  7118. name: "Front (Poncho)",
  7119. image: {
  7120. source: "./media/characters/corvin/front-poncho.svg",
  7121. extra: 1803 / 1629
  7122. }
  7123. },
  7124. side: {
  7125. height: math.unit(5 + 8 / 12, "feet"),
  7126. weight: math.unit(130, "lbs"),
  7127. name: "Side",
  7128. image: {
  7129. source: "./media/characters/corvin/side.svg",
  7130. extra: 1012 / 945
  7131. }
  7132. },
  7133. back: {
  7134. height: math.unit(5 + 8 / 12, "feet"),
  7135. weight: math.unit(130, "lbs"),
  7136. name: "Back",
  7137. image: {
  7138. source: "./media/characters/corvin/back.svg",
  7139. extra: 1803 / 1629
  7140. }
  7141. },
  7142. },
  7143. [
  7144. {
  7145. name: "Micro",
  7146. height: math.unit(3, "inches")
  7147. },
  7148. {
  7149. name: "Normal",
  7150. height: math.unit(5 + 8 / 12, "feet")
  7151. },
  7152. {
  7153. name: "Macro",
  7154. height: math.unit(300, "feet"),
  7155. default: true
  7156. },
  7157. {
  7158. name: "Megamacro",
  7159. height: math.unit(500, "miles")
  7160. }
  7161. ]
  7162. ))
  7163. characterMakers.push(() => makeCharacter(
  7164. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7165. {
  7166. front: {
  7167. height: math.unit(6, "feet"),
  7168. weight: math.unit(135, "lbs"),
  7169. name: "Front",
  7170. image: {
  7171. source: "./media/characters/q/front.svg",
  7172. extra: 854 / 752,
  7173. bottom: 0.005
  7174. }
  7175. },
  7176. back: {
  7177. height: math.unit(6, "feet"),
  7178. weight: math.unit(130, "lbs"),
  7179. name: "Back",
  7180. image: {
  7181. source: "./media/characters/q/back.svg",
  7182. extra: 854 / 752
  7183. }
  7184. },
  7185. },
  7186. [
  7187. {
  7188. name: "Macro",
  7189. height: math.unit(90, "feet"),
  7190. default: true
  7191. },
  7192. {
  7193. name: "Extra Macro",
  7194. height: math.unit(300, "feet"),
  7195. },
  7196. {
  7197. name: "BIG WALF",
  7198. height: math.unit(750, "feet"),
  7199. },
  7200. ]
  7201. ))
  7202. characterMakers.push(() => makeCharacter(
  7203. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7204. {
  7205. front: {
  7206. height: math.unit(6, "feet"),
  7207. weight: math.unit(150, "lbs"),
  7208. name: "Front",
  7209. image: {
  7210. source: "./media/characters/carley/front.svg",
  7211. extra: 3927 / 3540,
  7212. bottom: 0.03
  7213. }
  7214. }
  7215. },
  7216. [
  7217. {
  7218. name: "Normal",
  7219. height: math.unit(6 + 3 / 12, "feet")
  7220. },
  7221. {
  7222. name: "Macro",
  7223. height: math.unit(185, "feet"),
  7224. default: true
  7225. },
  7226. {
  7227. name: "Megamacro",
  7228. height: math.unit(8, "miles"),
  7229. },
  7230. ]
  7231. ))
  7232. characterMakers.push(() => makeCharacter(
  7233. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7234. {
  7235. front: {
  7236. height: math.unit(3, "feet"),
  7237. weight: math.unit(28, "lbs"),
  7238. name: "Front",
  7239. image: {
  7240. source: "./media/characters/citrine/front.svg"
  7241. }
  7242. }
  7243. },
  7244. [
  7245. {
  7246. name: "Normal",
  7247. height: math.unit(3, "feet"),
  7248. default: true
  7249. }
  7250. ]
  7251. ))
  7252. characterMakers.push(() => makeCharacter(
  7253. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7254. {
  7255. front: {
  7256. height: math.unit(14, "feet"),
  7257. weight: math.unit(1450, "kg"),
  7258. capacity: math.unit(15, "people"),
  7259. name: "Front",
  7260. image: {
  7261. source: "./media/characters/aura-starwind/front.svg",
  7262. extra: 1455 / 1335
  7263. }
  7264. },
  7265. side: {
  7266. height: math.unit(14, "feet"),
  7267. weight: math.unit(1450, "kg"),
  7268. capacity: math.unit(15, "people"),
  7269. name: "Side",
  7270. image: {
  7271. source: "./media/characters/aura-starwind/side.svg",
  7272. extra: 1654 / 1497
  7273. }
  7274. },
  7275. taur: {
  7276. height: math.unit(18, "feet"),
  7277. weight: math.unit(5500, "kg"),
  7278. capacity: math.unit(50, "people"),
  7279. name: "Taur",
  7280. image: {
  7281. source: "./media/characters/aura-starwind/taur.svg",
  7282. extra: 1760 / 1650
  7283. }
  7284. },
  7285. feral: {
  7286. height: math.unit(46, "feet"),
  7287. weight: math.unit(25000, "kg"),
  7288. capacity: math.unit(120, "people"),
  7289. name: "Feral",
  7290. image: {
  7291. source: "./media/characters/aura-starwind/feral.svg"
  7292. }
  7293. },
  7294. },
  7295. [
  7296. {
  7297. name: "Normal",
  7298. height: math.unit(14, "feet"),
  7299. default: true
  7300. },
  7301. {
  7302. name: "Macro",
  7303. height: math.unit(50, "meters")
  7304. },
  7305. {
  7306. name: "Megamacro",
  7307. height: math.unit(5000, "meters")
  7308. },
  7309. {
  7310. name: "Gigamacro",
  7311. height: math.unit(100000, "kilometers")
  7312. },
  7313. ]
  7314. ))
  7315. characterMakers.push(() => makeCharacter(
  7316. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7317. {
  7318. front: {
  7319. height: math.unit(2 + 7 / 12, "feet"),
  7320. weight: math.unit(32, "lbs"),
  7321. name: "Front",
  7322. image: {
  7323. source: "./media/characters/rivet/front.svg",
  7324. extra: 1716 / 1658,
  7325. bottom: 0.03
  7326. }
  7327. },
  7328. foot: {
  7329. height: math.unit(0.551, "feet"),
  7330. name: "Rivet's Foot",
  7331. image: {
  7332. source: "./media/characters/rivet/foot.svg"
  7333. },
  7334. rename: true
  7335. }
  7336. },
  7337. [
  7338. {
  7339. name: "Micro",
  7340. height: math.unit(1.5, "inches"),
  7341. },
  7342. {
  7343. name: "Normal",
  7344. height: math.unit(2 + 7 / 12, "feet"),
  7345. default: true
  7346. },
  7347. {
  7348. name: "Macro",
  7349. height: math.unit(85, "feet")
  7350. },
  7351. {
  7352. name: "Megamacro",
  7353. height: math.unit(2.2, "km")
  7354. }
  7355. ]
  7356. ))
  7357. characterMakers.push(() => makeCharacter(
  7358. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7359. {
  7360. front: {
  7361. height: math.unit(5 + 9 / 12, "feet"),
  7362. weight: math.unit(150, "lbs"),
  7363. name: "Front",
  7364. image: {
  7365. source: "./media/characters/coffee/front.svg",
  7366. extra: 3666 / 3032,
  7367. bottom: 0.04
  7368. }
  7369. },
  7370. foot: {
  7371. height: math.unit(1.29, "feet"),
  7372. name: "Foot",
  7373. image: {
  7374. source: "./media/characters/coffee/foot.svg"
  7375. }
  7376. },
  7377. },
  7378. [
  7379. {
  7380. name: "Micro",
  7381. height: math.unit(2, "inches"),
  7382. },
  7383. {
  7384. name: "Normal",
  7385. height: math.unit(5 + 9 / 12, "feet"),
  7386. default: true
  7387. },
  7388. {
  7389. name: "Macro",
  7390. height: math.unit(800, "feet")
  7391. },
  7392. {
  7393. name: "Megamacro",
  7394. height: math.unit(25, "miles")
  7395. }
  7396. ]
  7397. ))
  7398. characterMakers.push(() => makeCharacter(
  7399. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7400. {
  7401. front: {
  7402. height: math.unit(6, "feet"),
  7403. weight: math.unit(200, "lbs"),
  7404. name: "Front",
  7405. image: {
  7406. source: "./media/characters/chari-gal/front.svg",
  7407. extra: 1568 / 1385,
  7408. bottom: 0.047
  7409. }
  7410. },
  7411. gigantamax: {
  7412. height: math.unit(6 * 16, "feet"),
  7413. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7414. name: "Gigantamax",
  7415. image: {
  7416. source: "./media/characters/chari-gal/gigantamax.svg",
  7417. extra: 1124 / 888,
  7418. bottom: 0.03
  7419. }
  7420. },
  7421. },
  7422. [
  7423. {
  7424. name: "Normal",
  7425. height: math.unit(5 + 7 / 12, "feet")
  7426. },
  7427. {
  7428. name: "Macro",
  7429. height: math.unit(200, "feet"),
  7430. default: true
  7431. }
  7432. ]
  7433. ))
  7434. characterMakers.push(() => makeCharacter(
  7435. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7436. {
  7437. front: {
  7438. height: math.unit(6, "feet"),
  7439. weight: math.unit(150, "lbs"),
  7440. name: "Front",
  7441. image: {
  7442. source: "./media/characters/nova/front.svg",
  7443. extra: 5000 / 4722,
  7444. bottom: 0.02
  7445. }
  7446. }
  7447. },
  7448. [
  7449. {
  7450. name: "Micro-",
  7451. height: math.unit(0.8, "inches")
  7452. },
  7453. {
  7454. name: "Micro",
  7455. height: math.unit(2, "inches"),
  7456. default: true
  7457. },
  7458. ]
  7459. ))
  7460. characterMakers.push(() => makeCharacter(
  7461. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7462. {
  7463. front: {
  7464. height: math.unit(3 + 1 / 12, "feet"),
  7465. weight: math.unit(21.7, "lbs"),
  7466. name: "Front",
  7467. image: {
  7468. source: "./media/characters/argent/front.svg",
  7469. extra: 1471 / 1331,
  7470. bottom: 100.8 / 1575.5
  7471. }
  7472. }
  7473. },
  7474. [
  7475. {
  7476. name: "Micro",
  7477. height: math.unit(2, "inches")
  7478. },
  7479. {
  7480. name: "Normal",
  7481. height: math.unit(3 + 1 / 12, "feet"),
  7482. default: true
  7483. },
  7484. {
  7485. name: "Macro",
  7486. height: math.unit(120, "feet")
  7487. },
  7488. ]
  7489. ))
  7490. characterMakers.push(() => makeCharacter(
  7491. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7492. {
  7493. lamp: {
  7494. height: math.unit(7 * 1559 / 989, "feet"),
  7495. name: "Magic Lamp",
  7496. image: {
  7497. source: "./media/characters/mira-al-cul/lamp.svg",
  7498. extra: 1617 / 1559
  7499. }
  7500. },
  7501. front: {
  7502. height: math.unit(7, "feet"),
  7503. name: "Front",
  7504. image: {
  7505. source: "./media/characters/mira-al-cul/front.svg",
  7506. extra: 1044 / 990
  7507. }
  7508. },
  7509. },
  7510. [
  7511. {
  7512. name: "Heavily Restricted",
  7513. height: math.unit(7 * 1559 / 989, "feet")
  7514. },
  7515. {
  7516. name: "Freshly Freed",
  7517. height: math.unit(50 * 1559 / 989, "feet")
  7518. },
  7519. {
  7520. name: "World Encompassing",
  7521. height: math.unit(10000 * 1559 / 989, "miles")
  7522. },
  7523. {
  7524. name: "Galactic",
  7525. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7526. },
  7527. {
  7528. name: "Palmed Universe",
  7529. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7530. default: true
  7531. },
  7532. {
  7533. name: "Multiversal Matriarch",
  7534. height: math.unit(8.87e10, "yottameters")
  7535. },
  7536. {
  7537. name: "Void Mother",
  7538. height: math.unit(3.14e110, "yottaparsecs")
  7539. },
  7540. ]
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7544. {
  7545. front: {
  7546. height: math.unit(17 + 1 / 12, "feet"),
  7547. weight: math.unit(476.2 * 5, "lbs"),
  7548. name: "Front",
  7549. image: {
  7550. source: "./media/characters/kuro-shi-uchū/front.svg",
  7551. extra: 2329 / 1835,
  7552. bottom: 0.02
  7553. }
  7554. },
  7555. },
  7556. [
  7557. {
  7558. name: "Micro",
  7559. height: math.unit(2, "inches")
  7560. },
  7561. {
  7562. name: "Normal",
  7563. height: math.unit(12, "meters")
  7564. },
  7565. {
  7566. name: "Planetary",
  7567. height: math.unit(0.00929, "AU"),
  7568. default: true
  7569. },
  7570. {
  7571. name: "Universal",
  7572. height: math.unit(20, "gigaparsecs")
  7573. },
  7574. ]
  7575. ))
  7576. characterMakers.push(() => makeCharacter(
  7577. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7578. {
  7579. front: {
  7580. height: math.unit(5 + 2 / 12, "feet"),
  7581. weight: math.unit(120, "lbs"),
  7582. name: "Front",
  7583. image: {
  7584. source: "./media/characters/katherine/front.svg",
  7585. extra: 2075 / 1969
  7586. }
  7587. },
  7588. dress: {
  7589. height: math.unit(5 + 2 / 12, "feet"),
  7590. weight: math.unit(120, "lbs"),
  7591. name: "Dress",
  7592. image: {
  7593. source: "./media/characters/katherine/dress.svg",
  7594. extra: 2258 / 2064
  7595. }
  7596. },
  7597. },
  7598. [
  7599. {
  7600. name: "Micro",
  7601. height: math.unit(1, "inches"),
  7602. default: true
  7603. },
  7604. {
  7605. name: "Normal",
  7606. height: math.unit(5 + 2 / 12, "feet")
  7607. },
  7608. {
  7609. name: "Macro",
  7610. height: math.unit(100, "meters")
  7611. },
  7612. {
  7613. name: "Megamacro",
  7614. height: math.unit(80, "miles")
  7615. },
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7620. {
  7621. front: {
  7622. height: math.unit(7 + 8 / 12, "feet"),
  7623. weight: math.unit(250, "lbs"),
  7624. name: "Front",
  7625. image: {
  7626. source: "./media/characters/yevis/front.svg",
  7627. extra: 1938 / 1755
  7628. }
  7629. }
  7630. },
  7631. [
  7632. {
  7633. name: "Mortal",
  7634. height: math.unit(7 + 8 / 12, "feet")
  7635. },
  7636. {
  7637. name: "Battle",
  7638. height: math.unit(25 + 11 / 12, "feet")
  7639. },
  7640. {
  7641. name: "Wrath",
  7642. height: math.unit(1654 + 11 / 12, "feet")
  7643. },
  7644. {
  7645. name: "Planet Destroyer",
  7646. height: math.unit(12000, "miles")
  7647. },
  7648. {
  7649. name: "Galaxy Conqueror",
  7650. height: math.unit(1.45, "zettameters"),
  7651. default: true
  7652. },
  7653. {
  7654. name: "Universal War",
  7655. height: math.unit(184, "gigaparsecs")
  7656. },
  7657. {
  7658. name: "Eternity War",
  7659. height: math.unit(1.98e55, "yottaparsecs")
  7660. },
  7661. ]
  7662. ))
  7663. characterMakers.push(() => makeCharacter(
  7664. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7665. {
  7666. front: {
  7667. height: math.unit(5 + 8 / 12, "feet"),
  7668. weight: math.unit(63, "kg"),
  7669. name: "Front",
  7670. image: {
  7671. source: "./media/characters/xavier/front.svg",
  7672. extra: 944 / 883
  7673. }
  7674. },
  7675. frontStretch: {
  7676. height: math.unit(5 + 8 / 12, "feet"),
  7677. weight: math.unit(63, "kg"),
  7678. name: "Stretching",
  7679. image: {
  7680. source: "./media/characters/xavier/front-stretch.svg",
  7681. extra: 962 / 820
  7682. }
  7683. },
  7684. },
  7685. [
  7686. {
  7687. name: "Normal",
  7688. height: math.unit(5 + 8 / 12, "feet")
  7689. },
  7690. {
  7691. name: "Macro",
  7692. height: math.unit(100, "meters"),
  7693. default: true
  7694. },
  7695. {
  7696. name: "McLargeHuge",
  7697. height: math.unit(10, "miles")
  7698. },
  7699. ]
  7700. ))
  7701. characterMakers.push(() => makeCharacter(
  7702. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7703. {
  7704. front: {
  7705. height: math.unit(5 + 5 / 12, "feet"),
  7706. weight: math.unit(150, "lb"),
  7707. name: "Front",
  7708. image: {
  7709. source: "./media/characters/joshii/front.svg"
  7710. }
  7711. },
  7712. foot: {
  7713. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7714. name: "Foot",
  7715. image: {
  7716. source: "./media/characters/joshii/foot.svg"
  7717. }
  7718. },
  7719. },
  7720. [
  7721. {
  7722. name: "Micro",
  7723. height: math.unit(2, "inches")
  7724. },
  7725. {
  7726. name: "Normal",
  7727. height: math.unit(5 + 5 / 12, "feet"),
  7728. default: true
  7729. },
  7730. {
  7731. name: "Macro",
  7732. height: math.unit(785, "feet")
  7733. },
  7734. {
  7735. name: "Megamacro",
  7736. height: math.unit(24.5, "miles")
  7737. },
  7738. ]
  7739. ))
  7740. characterMakers.push(() => makeCharacter(
  7741. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7742. {
  7743. front: {
  7744. height: math.unit(6, "feet"),
  7745. weight: math.unit(150, "lb"),
  7746. name: "Front",
  7747. image: {
  7748. source: "./media/characters/goddess-elizabeth/front.svg",
  7749. extra: 1800 / 1525,
  7750. bottom: 0.005
  7751. }
  7752. },
  7753. foot: {
  7754. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7755. name: "Foot",
  7756. image: {
  7757. source: "./media/characters/goddess-elizabeth/foot.svg"
  7758. }
  7759. },
  7760. mouth: {
  7761. height: math.unit(6, "feet"),
  7762. name: "Mouth",
  7763. image: {
  7764. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7765. }
  7766. },
  7767. },
  7768. [
  7769. {
  7770. name: "Micro",
  7771. height: math.unit(12, "feet")
  7772. },
  7773. {
  7774. name: "Normal",
  7775. height: math.unit(80, "miles"),
  7776. default: true
  7777. },
  7778. {
  7779. name: "Macro",
  7780. height: math.unit(15000, "parsecs")
  7781. },
  7782. ]
  7783. ))
  7784. characterMakers.push(() => makeCharacter(
  7785. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7786. {
  7787. front: {
  7788. height: math.unit(5 + 9 / 12, "feet"),
  7789. weight: math.unit(144, "lb"),
  7790. name: "Front",
  7791. image: {
  7792. source: "./media/characters/kara/front.svg"
  7793. }
  7794. },
  7795. feet: {
  7796. height: math.unit(6 / 6.765, "feet"),
  7797. name: "Kara's Feet",
  7798. rename: true,
  7799. image: {
  7800. source: "./media/characters/kara/feet.svg"
  7801. }
  7802. },
  7803. },
  7804. [
  7805. {
  7806. name: "Normal",
  7807. height: math.unit(5 + 9 / 12, "feet")
  7808. },
  7809. {
  7810. name: "Macro",
  7811. height: math.unit(174, "feet"),
  7812. default: true
  7813. },
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(18, "feet"),
  7821. weight: math.unit(4050, "lb"),
  7822. name: "Front",
  7823. image: {
  7824. source: "./media/characters/tyrone/front.svg",
  7825. extra: 2520 / 2402,
  7826. bottom: 0.025
  7827. }
  7828. },
  7829. },
  7830. [
  7831. {
  7832. name: "Normal",
  7833. height: math.unit(18, "feet"),
  7834. default: true
  7835. },
  7836. {
  7837. name: "Macro",
  7838. height: math.unit(300, "feet")
  7839. },
  7840. ]
  7841. ))
  7842. characterMakers.push(() => makeCharacter(
  7843. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7844. {
  7845. front: {
  7846. height: math.unit(7 + 8 / 12, "feet"),
  7847. weight: math.unit(120, "lb"),
  7848. name: "Front",
  7849. image: {
  7850. source: "./media/characters/danny/front.svg",
  7851. extra: 1490 / 1350
  7852. }
  7853. },
  7854. back: {
  7855. height: math.unit(7 + 8 / 12, "feet"),
  7856. weight: math.unit(120, "lb"),
  7857. name: "Back",
  7858. image: {
  7859. source: "./media/characters/danny/back.svg",
  7860. extra: 1490 / 1350
  7861. }
  7862. },
  7863. },
  7864. [
  7865. {
  7866. name: "Normal",
  7867. height: math.unit(7 + 8 / 12, "feet"),
  7868. default: true
  7869. },
  7870. ]
  7871. ))
  7872. characterMakers.push(() => makeCharacter(
  7873. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7874. {
  7875. front: {
  7876. height: math.unit(3.5, "inches"),
  7877. weight: math.unit(19, "grams"),
  7878. name: "Front",
  7879. image: {
  7880. source: "./media/characters/mallow/front.svg",
  7881. extra: 471 / 431
  7882. }
  7883. },
  7884. back: {
  7885. height: math.unit(3.5, "inches"),
  7886. weight: math.unit(19, "grams"),
  7887. name: "Back",
  7888. image: {
  7889. source: "./media/characters/mallow/back.svg",
  7890. extra: 471 / 431
  7891. }
  7892. },
  7893. },
  7894. [
  7895. {
  7896. name: "Normal",
  7897. height: math.unit(3.5, "inches"),
  7898. default: true
  7899. },
  7900. ]
  7901. ))
  7902. characterMakers.push(() => makeCharacter(
  7903. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7904. {
  7905. front: {
  7906. height: math.unit(9, "feet"),
  7907. weight: math.unit(230, "kg"),
  7908. name: "Front",
  7909. image: {
  7910. source: "./media/characters/starry-aqua/front.svg"
  7911. }
  7912. },
  7913. back: {
  7914. height: math.unit(9, "feet"),
  7915. weight: math.unit(230, "kg"),
  7916. name: "Back",
  7917. image: {
  7918. source: "./media/characters/starry-aqua/back.svg"
  7919. }
  7920. },
  7921. hand: {
  7922. height: math.unit(9 * 0.1168, "feet"),
  7923. name: "Hand",
  7924. image: {
  7925. source: "./media/characters/starry-aqua/hand.svg"
  7926. }
  7927. },
  7928. foot: {
  7929. height: math.unit(9 * 0.18, "feet"),
  7930. name: "Foot",
  7931. image: {
  7932. source: "./media/characters/starry-aqua/foot.svg"
  7933. }
  7934. }
  7935. },
  7936. [
  7937. {
  7938. name: "Micro",
  7939. height: math.unit(3, "inches")
  7940. },
  7941. {
  7942. name: "Normal",
  7943. height: math.unit(9, "feet")
  7944. },
  7945. {
  7946. name: "Macro",
  7947. height: math.unit(300, "feet"),
  7948. default: true
  7949. },
  7950. {
  7951. name: "Megamacro",
  7952. height: math.unit(3200, "feet")
  7953. }
  7954. ]
  7955. ))
  7956. characterMakers.push(() => makeCharacter(
  7957. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  7958. {
  7959. front: {
  7960. height: math.unit(6, "feet"),
  7961. weight: math.unit(230, "lb"),
  7962. name: "Front",
  7963. image: {
  7964. source: "./media/characters/luka/front.svg",
  7965. extra: 1,
  7966. bottom: 0.025
  7967. }
  7968. },
  7969. },
  7970. [
  7971. {
  7972. name: "Normal",
  7973. height: math.unit(12 + 8 / 12, "feet"),
  7974. default: true
  7975. },
  7976. {
  7977. name: "Minimacro",
  7978. height: math.unit(20, "feet")
  7979. },
  7980. {
  7981. name: "Macro",
  7982. height: math.unit(250, "feet")
  7983. },
  7984. {
  7985. name: "Megamacro",
  7986. height: math.unit(5, "miles")
  7987. },
  7988. {
  7989. name: "Gigamacro",
  7990. height: math.unit(8000, "miles")
  7991. },
  7992. ]
  7993. ))
  7994. characterMakers.push(() => makeCharacter(
  7995. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  7996. {
  7997. front: {
  7998. height: math.unit(6, "feet"),
  7999. weight: math.unit(150, "lb"),
  8000. name: "Front",
  8001. image: {
  8002. source: "./media/characters/natalie-nightring/front.svg",
  8003. extra: 1,
  8004. bottom: 0.06
  8005. }
  8006. },
  8007. },
  8008. [
  8009. {
  8010. name: "Uh Oh",
  8011. height: math.unit(0.1, "mm")
  8012. },
  8013. {
  8014. name: "Small",
  8015. height: math.unit(3, "inches")
  8016. },
  8017. {
  8018. name: "Human Scale",
  8019. height: math.unit(6, "feet")
  8020. },
  8021. {
  8022. name: "Librarian",
  8023. height: math.unit(50, "feet"),
  8024. default: true
  8025. },
  8026. {
  8027. name: "Immense",
  8028. height: math.unit(200, "miles")
  8029. },
  8030. ]
  8031. ))
  8032. characterMakers.push(() => makeCharacter(
  8033. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8034. {
  8035. front: {
  8036. height: math.unit(6, "feet"),
  8037. weight: math.unit(180, "lbs"),
  8038. name: "Front",
  8039. image: {
  8040. source: "./media/characters/danni-rosie/front.svg",
  8041. extra: 1260 / 1128,
  8042. bottom: 0.022
  8043. }
  8044. },
  8045. },
  8046. [
  8047. {
  8048. name: "Micro",
  8049. height: math.unit(2, "inches"),
  8050. default: true
  8051. },
  8052. ]
  8053. ))
  8054. characterMakers.push(() => makeCharacter(
  8055. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8056. {
  8057. front: {
  8058. height: math.unit(5 + 9 / 12, "feet"),
  8059. weight: math.unit(220, "lb"),
  8060. name: "Front",
  8061. image: {
  8062. source: "./media/characters/samantha-kruse/front.svg",
  8063. extra: (985 / 935),
  8064. bottom: 0.03
  8065. }
  8066. },
  8067. frontUndressed: {
  8068. height: math.unit(5 + 9 / 12, "feet"),
  8069. weight: math.unit(220, "lb"),
  8070. name: "Front (Undressed)",
  8071. image: {
  8072. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8073. extra: (973 / 923),
  8074. bottom: 0.025
  8075. }
  8076. },
  8077. fat: {
  8078. height: math.unit(5 + 9 / 12, "feet"),
  8079. weight: math.unit(900, "lb"),
  8080. name: "Front (Fat)",
  8081. image: {
  8082. source: "./media/characters/samantha-kruse/fat.svg",
  8083. extra: 2688 / 2561
  8084. }
  8085. },
  8086. },
  8087. [
  8088. {
  8089. name: "Normal",
  8090. height: math.unit(5 + 9 / 12, "feet"),
  8091. default: true
  8092. }
  8093. ]
  8094. ))
  8095. characterMakers.push(() => makeCharacter(
  8096. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8097. {
  8098. back: {
  8099. height: math.unit(5 + 4 / 12, "feet"),
  8100. weight: math.unit(4963, "lb"),
  8101. name: "Back",
  8102. image: {
  8103. source: "./media/characters/amelia-rosie/back.svg",
  8104. extra: 1113 / 963,
  8105. bottom: 0.01
  8106. }
  8107. },
  8108. },
  8109. [
  8110. {
  8111. name: "Level 0",
  8112. height: math.unit(5 + 4 / 12, "feet")
  8113. },
  8114. {
  8115. name: "Level 1",
  8116. height: math.unit(164597, "feet"),
  8117. default: true
  8118. },
  8119. {
  8120. name: "Level 2",
  8121. height: math.unit(956243, "miles")
  8122. },
  8123. {
  8124. name: "Level 3",
  8125. height: math.unit(29421709423, "miles")
  8126. },
  8127. {
  8128. name: "Level 4",
  8129. height: math.unit(154, "lightyears")
  8130. },
  8131. {
  8132. name: "Level 5",
  8133. height: math.unit(4738272, "lightyears")
  8134. },
  8135. {
  8136. name: "Level 6",
  8137. height: math.unit(145787152896, "lightyears")
  8138. },
  8139. ]
  8140. ))
  8141. characterMakers.push(() => makeCharacter(
  8142. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8143. {
  8144. front: {
  8145. height: math.unit(5 + 11 / 12, "feet"),
  8146. weight: math.unit(65, "kg"),
  8147. name: "Front",
  8148. image: {
  8149. source: "./media/characters/rook-kitara/front.svg",
  8150. extra: 1347 / 1274,
  8151. bottom: 0.005
  8152. }
  8153. },
  8154. },
  8155. [
  8156. {
  8157. name: "Totally Unfair",
  8158. height: math.unit(1.8, "mm")
  8159. },
  8160. {
  8161. name: "Lap Rookie",
  8162. height: math.unit(1.4, "feet")
  8163. },
  8164. {
  8165. name: "Normal",
  8166. height: math.unit(5 + 11 / 12, "feet"),
  8167. default: true
  8168. },
  8169. {
  8170. name: "How Did This Happen",
  8171. height: math.unit(80, "miles")
  8172. }
  8173. ]
  8174. ))
  8175. characterMakers.push(() => makeCharacter(
  8176. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8177. {
  8178. front: {
  8179. height: math.unit(7, "feet"),
  8180. weight: math.unit(300, "lb"),
  8181. name: "Front",
  8182. image: {
  8183. source: "./media/characters/pisces/front.svg",
  8184. extra: 2255 / 2115,
  8185. bottom: 0.03
  8186. }
  8187. },
  8188. back: {
  8189. height: math.unit(7, "feet"),
  8190. weight: math.unit(300, "lb"),
  8191. name: "Back",
  8192. image: {
  8193. source: "./media/characters/pisces/back.svg",
  8194. extra: 2146 / 2055,
  8195. bottom: 0.04
  8196. }
  8197. },
  8198. },
  8199. [
  8200. {
  8201. name: "Normal",
  8202. height: math.unit(7, "feet"),
  8203. default: true
  8204. },
  8205. {
  8206. name: "Swimming Pool",
  8207. height: math.unit(12.2, "meters")
  8208. },
  8209. {
  8210. name: "Olympic Swimming Pool",
  8211. height: math.unit(56.3, "meters")
  8212. },
  8213. {
  8214. name: "Lake Superior",
  8215. height: math.unit(93900, "meters")
  8216. },
  8217. {
  8218. name: "Mediterranean Sea",
  8219. height: math.unit(644457, "meters")
  8220. },
  8221. {
  8222. name: "World's Oceans",
  8223. height: math.unit(4567491, "meters")
  8224. },
  8225. ]
  8226. ))
  8227. characterMakers.push(() => makeCharacter(
  8228. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8229. {
  8230. front: {
  8231. height: math.unit(2.3, "meters"),
  8232. weight: math.unit(120, "kg"),
  8233. name: "Front",
  8234. image: {
  8235. source: "./media/characters/zelas/front.svg"
  8236. }
  8237. },
  8238. side: {
  8239. height: math.unit(2.3, "meters"),
  8240. weight: math.unit(120, "kg"),
  8241. name: "Side",
  8242. image: {
  8243. source: "./media/characters/zelas/side.svg"
  8244. }
  8245. },
  8246. back: {
  8247. height: math.unit(2.3, "meters"),
  8248. weight: math.unit(120, "kg"),
  8249. name: "Back",
  8250. image: {
  8251. source: "./media/characters/zelas/back.svg"
  8252. }
  8253. },
  8254. foot: {
  8255. height: math.unit(1.116, "feet"),
  8256. name: "Foot",
  8257. image: {
  8258. source: "./media/characters/zelas/foot.svg"
  8259. }
  8260. },
  8261. },
  8262. [
  8263. {
  8264. name: "Normal",
  8265. height: math.unit(2.3, "meters")
  8266. },
  8267. {
  8268. name: "Macro",
  8269. height: math.unit(30, "meters"),
  8270. default: true
  8271. },
  8272. ]
  8273. ))
  8274. characterMakers.push(() => makeCharacter(
  8275. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8276. {
  8277. front: {
  8278. height: math.unit(1, "inch"),
  8279. weight: math.unit(0.21, "grams"),
  8280. name: "Front",
  8281. image: {
  8282. source: "./media/characters/talbot/front.svg",
  8283. extra: 594 / 544
  8284. }
  8285. },
  8286. },
  8287. [
  8288. {
  8289. name: "Micro",
  8290. height: math.unit(1, "inch"),
  8291. default: true
  8292. },
  8293. ]
  8294. ))
  8295. characterMakers.push(() => makeCharacter(
  8296. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8297. {
  8298. front: {
  8299. height: math.unit(3 + 3 / 12, "feet"),
  8300. weight: math.unit(51.8, "lb"),
  8301. name: "Front",
  8302. image: {
  8303. source: "./media/characters/fliss/front.svg",
  8304. extra: 840 / 640
  8305. }
  8306. },
  8307. },
  8308. [
  8309. {
  8310. name: "Teeny Tiny",
  8311. height: math.unit(1, "mm")
  8312. },
  8313. {
  8314. name: "Small",
  8315. height: math.unit(1, "inch"),
  8316. default: true
  8317. },
  8318. {
  8319. name: "Standard Sylveon",
  8320. height: math.unit(3 + 3 / 12, "feet")
  8321. },
  8322. {
  8323. name: "Large Nuisance",
  8324. height: math.unit(33, "feet")
  8325. },
  8326. {
  8327. name: "City Filler",
  8328. height: math.unit(3000, "feet")
  8329. },
  8330. {
  8331. name: "New Horizon",
  8332. height: math.unit(6000, "miles")
  8333. },
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8338. {
  8339. front: {
  8340. height: math.unit(5, "cm"),
  8341. weight: math.unit(1.94, "g"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/fleta/front.svg",
  8345. extra: 835 / 803
  8346. }
  8347. },
  8348. back: {
  8349. height: math.unit(5, "cm"),
  8350. weight: math.unit(1.94, "g"),
  8351. name: "Back",
  8352. image: {
  8353. source: "./media/characters/fleta/back.svg",
  8354. extra: 835 / 803
  8355. }
  8356. },
  8357. },
  8358. [
  8359. {
  8360. name: "Micro",
  8361. height: math.unit(5, "cm"),
  8362. default: true
  8363. },
  8364. ]
  8365. ))
  8366. characterMakers.push(() => makeCharacter(
  8367. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8368. {
  8369. front: {
  8370. height: math.unit(6, "feet"),
  8371. weight: math.unit(225, "lb"),
  8372. name: "Front",
  8373. image: {
  8374. source: "./media/characters/dominic/front.svg",
  8375. extra: 1770 / 1620,
  8376. bottom: 0.025
  8377. }
  8378. },
  8379. back: {
  8380. height: math.unit(6, "feet"),
  8381. weight: math.unit(225, "lb"),
  8382. name: "Back",
  8383. image: {
  8384. source: "./media/characters/dominic/back.svg",
  8385. extra: 1745 / 1620,
  8386. bottom: 0.065
  8387. }
  8388. },
  8389. },
  8390. [
  8391. {
  8392. name: "Nano",
  8393. height: math.unit(0.1, "mm")
  8394. },
  8395. {
  8396. name: "Micro-",
  8397. height: math.unit(1, "mm")
  8398. },
  8399. {
  8400. name: "Micro",
  8401. height: math.unit(4, "inches")
  8402. },
  8403. {
  8404. name: "Normal",
  8405. height: math.unit(6 + 4 / 12, "feet"),
  8406. default: true
  8407. },
  8408. {
  8409. name: "Macro",
  8410. height: math.unit(115, "feet")
  8411. },
  8412. {
  8413. name: "Macro+",
  8414. height: math.unit(955, "feet")
  8415. },
  8416. {
  8417. name: "Megamacro",
  8418. height: math.unit(8990, "feet")
  8419. },
  8420. {
  8421. name: "Gigmacro",
  8422. height: math.unit(9310, "miles")
  8423. },
  8424. {
  8425. name: "Teramacro",
  8426. height: math.unit(1567005010, "miles")
  8427. },
  8428. {
  8429. name: "Examacro",
  8430. height: math.unit(1425, "parsecs")
  8431. },
  8432. ]
  8433. ))
  8434. characterMakers.push(() => makeCharacter(
  8435. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8436. {
  8437. front: {
  8438. height: math.unit(400, "feet"),
  8439. weight: math.unit(44444444, "lb"),
  8440. name: "Front",
  8441. image: {
  8442. source: "./media/characters/major-colonel/front.svg"
  8443. }
  8444. },
  8445. back: {
  8446. height: math.unit(400, "feet"),
  8447. weight: math.unit(44444444, "lb"),
  8448. name: "Back",
  8449. image: {
  8450. source: "./media/characters/major-colonel/back.svg"
  8451. }
  8452. },
  8453. },
  8454. [
  8455. {
  8456. name: "Macro",
  8457. height: math.unit(400, "feet"),
  8458. default: true
  8459. },
  8460. ]
  8461. ))
  8462. characterMakers.push(() => makeCharacter(
  8463. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8464. {
  8465. catFront: {
  8466. height: math.unit(6, "feet"),
  8467. weight: math.unit(120, "lb"),
  8468. name: "Front (Cat Side)",
  8469. image: {
  8470. source: "./media/characters/axel-lycan/cat-front.svg",
  8471. extra: 430 / 402,
  8472. bottom: 43 / 472.35
  8473. }
  8474. },
  8475. catBack: {
  8476. height: math.unit(6, "feet"),
  8477. weight: math.unit(120, "lb"),
  8478. name: "Back (Cat Side)",
  8479. image: {
  8480. source: "./media/characters/axel-lycan/cat-back.svg",
  8481. extra: 447 / 419,
  8482. bottom: 23.3 / 469
  8483. }
  8484. },
  8485. wolfFront: {
  8486. height: math.unit(6, "feet"),
  8487. weight: math.unit(120, "lb"),
  8488. name: "Front (Wolf Side)",
  8489. image: {
  8490. source: "./media/characters/axel-lycan/wolf-front.svg",
  8491. extra: 485 / 456,
  8492. bottom: 19 / 504
  8493. }
  8494. },
  8495. wolfBack: {
  8496. height: math.unit(6, "feet"),
  8497. weight: math.unit(120, "lb"),
  8498. name: "Back (Wolf Side)",
  8499. image: {
  8500. source: "./media/characters/axel-lycan/wolf-back.svg",
  8501. extra: 475 / 438,
  8502. bottom: 39.2 / 514
  8503. }
  8504. },
  8505. },
  8506. [
  8507. {
  8508. name: "Macro",
  8509. height: math.unit(1, "km"),
  8510. default: true
  8511. },
  8512. ]
  8513. ))
  8514. characterMakers.push(() => makeCharacter(
  8515. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8516. {
  8517. front: {
  8518. height: math.unit(5 + 9 / 12, "feet"),
  8519. weight: math.unit(175, "lb"),
  8520. name: "Front",
  8521. image: {
  8522. source: "./media/characters/vanrel-hyena/front.svg",
  8523. extra: 1086 / 1010,
  8524. bottom: 0.04
  8525. }
  8526. },
  8527. },
  8528. [
  8529. {
  8530. name: "Normal",
  8531. height: math.unit(5 + 9 / 12, "feet"),
  8532. default: true
  8533. },
  8534. ]
  8535. ))
  8536. characterMakers.push(() => makeCharacter(
  8537. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8538. {
  8539. front: {
  8540. height: math.unit(6, "feet"),
  8541. weight: math.unit(103, "lb"),
  8542. name: "Front",
  8543. image: {
  8544. source: "./media/characters/abbott-absol/front.svg",
  8545. extra: 2010 / 1842
  8546. }
  8547. },
  8548. },
  8549. [
  8550. {
  8551. name: "Megamicro",
  8552. height: math.unit(0.1, "mm")
  8553. },
  8554. {
  8555. name: "Micro",
  8556. height: math.unit(1, "inch")
  8557. },
  8558. {
  8559. name: "Normal",
  8560. height: math.unit(6, "feet"),
  8561. default: true
  8562. },
  8563. ]
  8564. ))
  8565. characterMakers.push(() => makeCharacter(
  8566. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8567. {
  8568. front: {
  8569. height: math.unit(6, "feet"),
  8570. weight: math.unit(264, "lb"),
  8571. name: "Front",
  8572. image: {
  8573. source: "./media/characters/hector/front.svg",
  8574. extra: 2280 / 2130,
  8575. bottom: 0.07
  8576. }
  8577. },
  8578. },
  8579. [
  8580. {
  8581. name: "Normal",
  8582. height: math.unit(12.25, "foot"),
  8583. default: true
  8584. },
  8585. {
  8586. name: "Macro",
  8587. height: math.unit(160, "feet")
  8588. },
  8589. ]
  8590. ))
  8591. characterMakers.push(() => makeCharacter(
  8592. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8593. {
  8594. front: {
  8595. height: math.unit(6, "feet"),
  8596. weight: math.unit(150, "lb"),
  8597. name: "Front",
  8598. image: {
  8599. source: "./media/characters/sal/front.svg",
  8600. extra: 1846 / 1699,
  8601. bottom: 0.04
  8602. }
  8603. },
  8604. },
  8605. [
  8606. {
  8607. name: "Megamacro",
  8608. height: math.unit(10, "miles"),
  8609. default: true
  8610. },
  8611. ]
  8612. ))
  8613. characterMakers.push(() => makeCharacter(
  8614. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8615. {
  8616. front: {
  8617. height: math.unit(3, "meters"),
  8618. weight: math.unit(450, "kg"),
  8619. name: "front",
  8620. image: {
  8621. source: "./media/characters/ranger/front.svg",
  8622. extra: 2401 / 2243,
  8623. bottom: 0.05
  8624. }
  8625. },
  8626. },
  8627. [
  8628. {
  8629. name: "Normal",
  8630. height: math.unit(3, "meters"),
  8631. default: true
  8632. },
  8633. ]
  8634. ))
  8635. characterMakers.push(() => makeCharacter(
  8636. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8637. {
  8638. front: {
  8639. height: math.unit(14, "feet"),
  8640. weight: math.unit(800, "kg"),
  8641. name: "Front",
  8642. image: {
  8643. source: "./media/characters/theresa/front.svg",
  8644. extra: 3575 / 3346,
  8645. bottom: 0.03
  8646. }
  8647. },
  8648. },
  8649. [
  8650. {
  8651. name: "Normal",
  8652. height: math.unit(14, "feet"),
  8653. default: true
  8654. },
  8655. ]
  8656. ))
  8657. characterMakers.push(() => makeCharacter(
  8658. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8659. {
  8660. front: {
  8661. height: math.unit(6, "feet"),
  8662. weight: math.unit(3, "kg"),
  8663. name: "Front",
  8664. image: {
  8665. source: "./media/characters/ine/front.svg",
  8666. extra: 678 / 539,
  8667. bottom: 0.023
  8668. }
  8669. },
  8670. },
  8671. [
  8672. {
  8673. name: "Normal",
  8674. height: math.unit(2.265, "feet"),
  8675. default: true
  8676. },
  8677. ]
  8678. ))
  8679. characterMakers.push(() => makeCharacter(
  8680. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8681. {
  8682. front: {
  8683. height: math.unit(5, "feet"),
  8684. weight: math.unit(30, "kg"),
  8685. name: "Front",
  8686. image: {
  8687. source: "./media/characters/vial/front.svg",
  8688. extra: 1365 / 1277,
  8689. bottom: 0.04
  8690. }
  8691. },
  8692. },
  8693. [
  8694. {
  8695. name: "Normal",
  8696. height: math.unit(5, "feet"),
  8697. default: true
  8698. },
  8699. ]
  8700. ))
  8701. characterMakers.push(() => makeCharacter(
  8702. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8703. {
  8704. side: {
  8705. height: math.unit(3.4, "meters"),
  8706. weight: math.unit(1000, "lb"),
  8707. name: "Side",
  8708. image: {
  8709. source: "./media/characters/rovoska/side.svg",
  8710. extra: 4403 / 1515
  8711. }
  8712. },
  8713. },
  8714. [
  8715. {
  8716. name: "Normal",
  8717. height: math.unit(3.4, "meters"),
  8718. default: true
  8719. },
  8720. ]
  8721. ))
  8722. characterMakers.push(() => makeCharacter(
  8723. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8724. {
  8725. front: {
  8726. height: math.unit(8, "feet"),
  8727. weight: math.unit(315, "lb"),
  8728. name: "Front",
  8729. image: {
  8730. source: "./media/characters/gunner-rotthbauer/front.svg"
  8731. }
  8732. },
  8733. back: {
  8734. height: math.unit(8, "feet"),
  8735. weight: math.unit(315, "lb"),
  8736. name: "Back",
  8737. image: {
  8738. source: "./media/characters/gunner-rotthbauer/back.svg"
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Micro",
  8745. height: math.unit(3.5, "inches")
  8746. },
  8747. {
  8748. name: "Normal",
  8749. height: math.unit(8, "feet"),
  8750. default: true
  8751. },
  8752. {
  8753. name: "Macro",
  8754. height: math.unit(250, "feet")
  8755. },
  8756. {
  8757. name: "Megamacro",
  8758. height: math.unit(1, "AU")
  8759. },
  8760. ]
  8761. ))
  8762. characterMakers.push(() => makeCharacter(
  8763. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8764. {
  8765. front: {
  8766. height: math.unit(5 + 5 / 12, "feet"),
  8767. weight: math.unit(140, "lb"),
  8768. name: "Front",
  8769. image: {
  8770. source: "./media/characters/allatia/front.svg",
  8771. extra: 1227 / 1180,
  8772. bottom: 0.027
  8773. }
  8774. },
  8775. },
  8776. [
  8777. {
  8778. name: "Normal",
  8779. height: math.unit(5 + 5 / 12, "feet")
  8780. },
  8781. {
  8782. name: "Macro",
  8783. height: math.unit(250, "feet"),
  8784. default: true
  8785. },
  8786. {
  8787. name: "Megamacro",
  8788. height: math.unit(8, "miles")
  8789. }
  8790. ]
  8791. ))
  8792. characterMakers.push(() => makeCharacter(
  8793. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8794. {
  8795. front: {
  8796. height: math.unit(6, "feet"),
  8797. weight: math.unit(120, "lb"),
  8798. name: "Front",
  8799. image: {
  8800. source: "./media/characters/tene/front.svg",
  8801. extra: 1728 / 1578,
  8802. bottom: 0.022
  8803. }
  8804. },
  8805. stomping: {
  8806. height: math.unit(2.025, "meters"),
  8807. weight: math.unit(120, "lb"),
  8808. name: "Stomping",
  8809. image: {
  8810. source: "./media/characters/tene/stomping.svg",
  8811. extra: 938 / 873,
  8812. bottom: 0.01
  8813. }
  8814. },
  8815. sitting: {
  8816. height: math.unit(1, "meter"),
  8817. weight: math.unit(120, "lb"),
  8818. name: "Sitting",
  8819. image: {
  8820. source: "./media/characters/tene/sitting.svg",
  8821. extra: 437 / 415,
  8822. bottom: 0.1
  8823. }
  8824. },
  8825. feral: {
  8826. height: math.unit(3.9, "feet"),
  8827. weight: math.unit(250, "lb"),
  8828. name: "Feral",
  8829. image: {
  8830. source: "./media/characters/tene/feral.svg",
  8831. extra: 717 / 458,
  8832. bottom: 0.179
  8833. }
  8834. },
  8835. },
  8836. [
  8837. {
  8838. name: "Normal",
  8839. height: math.unit(6, "feet")
  8840. },
  8841. {
  8842. name: "Macro",
  8843. height: math.unit(300, "feet"),
  8844. default: true
  8845. },
  8846. {
  8847. name: "Megamacro",
  8848. height: math.unit(5, "miles")
  8849. },
  8850. ]
  8851. ))
  8852. characterMakers.push(() => makeCharacter(
  8853. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8854. {
  8855. side: {
  8856. height: math.unit(6, "feet"),
  8857. name: "Side",
  8858. image: {
  8859. source: "./media/characters/evander/side.svg",
  8860. extra: 877 / 477
  8861. }
  8862. },
  8863. },
  8864. [
  8865. {
  8866. name: "Normal",
  8867. height: math.unit(0.83, "meters"),
  8868. default: true
  8869. },
  8870. ]
  8871. ))
  8872. characterMakers.push(() => makeCharacter(
  8873. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8874. {
  8875. front: {
  8876. height: math.unit(12, "feet"),
  8877. weight: math.unit(1000, "lb"),
  8878. name: "Front",
  8879. image: {
  8880. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8881. extra: 1762 / 1611
  8882. }
  8883. },
  8884. back: {
  8885. height: math.unit(12, "feet"),
  8886. weight: math.unit(1000, "lb"),
  8887. name: "Back",
  8888. image: {
  8889. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8890. extra: 1762 / 1611
  8891. }
  8892. },
  8893. },
  8894. [
  8895. {
  8896. name: "Normal",
  8897. height: math.unit(12, "feet"),
  8898. default: true
  8899. },
  8900. {
  8901. name: "Kaiju",
  8902. height: math.unit(150, "feet")
  8903. },
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8908. {
  8909. front: {
  8910. height: math.unit(6, "feet"),
  8911. weight: math.unit(150, "lb"),
  8912. name: "Front",
  8913. image: {
  8914. source: "./media/characters/zero-alurus/front.svg"
  8915. }
  8916. },
  8917. back: {
  8918. height: math.unit(6, "feet"),
  8919. weight: math.unit(150, "lb"),
  8920. name: "Back",
  8921. image: {
  8922. source: "./media/characters/zero-alurus/back.svg"
  8923. }
  8924. },
  8925. },
  8926. [
  8927. {
  8928. name: "Normal",
  8929. height: math.unit(5 + 10 / 12, "feet")
  8930. },
  8931. {
  8932. name: "Macro",
  8933. height: math.unit(60, "feet"),
  8934. default: true
  8935. },
  8936. {
  8937. name: "Macro+",
  8938. height: math.unit(450, "feet")
  8939. },
  8940. ]
  8941. ))
  8942. characterMakers.push(() => makeCharacter(
  8943. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8944. {
  8945. front: {
  8946. height: math.unit(6, "feet"),
  8947. weight: math.unit(200, "lb"),
  8948. name: "Front",
  8949. image: {
  8950. source: "./media/characters/mega-shi/front.svg",
  8951. extra: 1279 / 1250,
  8952. bottom: 0.02
  8953. }
  8954. },
  8955. back: {
  8956. height: math.unit(6, "feet"),
  8957. weight: math.unit(200, "lb"),
  8958. name: "Back",
  8959. image: {
  8960. source: "./media/characters/mega-shi/back.svg",
  8961. extra: 1279 / 1250,
  8962. bottom: 0.02
  8963. }
  8964. },
  8965. },
  8966. [
  8967. {
  8968. name: "Micro",
  8969. height: math.unit(16 + 6 / 12, "feet")
  8970. },
  8971. {
  8972. name: "Third Dimension",
  8973. height: math.unit(40, "meters")
  8974. },
  8975. {
  8976. name: "Normal",
  8977. height: math.unit(660, "feet"),
  8978. default: true
  8979. },
  8980. {
  8981. name: "Megamacro",
  8982. height: math.unit(10, "miles")
  8983. },
  8984. {
  8985. name: "Planetary Launch",
  8986. height: math.unit(500, "miles")
  8987. },
  8988. {
  8989. name: "Interstellar",
  8990. height: math.unit(1e9, "miles")
  8991. },
  8992. {
  8993. name: "Leaving the Universe",
  8994. height: math.unit(1, "gigaparsec")
  8995. },
  8996. {
  8997. name: "Travelling Universes",
  8998. height: math.unit(30e15, "parsecs")
  8999. },
  9000. ]
  9001. ))
  9002. characterMakers.push(() => makeCharacter(
  9003. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9004. {
  9005. front: {
  9006. height: math.unit(6, "feet"),
  9007. weight: math.unit(150, "lb"),
  9008. name: "Front",
  9009. image: {
  9010. source: "./media/characters/odyssey/front.svg",
  9011. extra: 1782 / 1582,
  9012. bottom: 0.01
  9013. }
  9014. },
  9015. side: {
  9016. height: math.unit(5.7, "feet"),
  9017. weight: math.unit(140, "lb"),
  9018. name: "Side",
  9019. image: {
  9020. source: "./media/characters/odyssey/side.svg",
  9021. extra: 6462 / 5700
  9022. }
  9023. },
  9024. },
  9025. [
  9026. {
  9027. name: "Normal",
  9028. height: math.unit(5 + 4 / 12, "feet")
  9029. },
  9030. {
  9031. name: "Macro",
  9032. height: math.unit(1, "km")
  9033. },
  9034. {
  9035. name: "Megamacro",
  9036. height: math.unit(3000, "km")
  9037. },
  9038. {
  9039. name: "Gigamacro",
  9040. height: math.unit(1, "AU"),
  9041. default: true
  9042. },
  9043. {
  9044. name: "Omniversal",
  9045. height: math.unit(100e14, "lightyears")
  9046. },
  9047. ]
  9048. ))
  9049. characterMakers.push(() => makeCharacter(
  9050. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9051. {
  9052. front: {
  9053. height: math.unit(6, "feet"),
  9054. weight: math.unit(300, "lb"),
  9055. name: "Front",
  9056. image: {
  9057. source: "./media/characters/mekuto/front.svg",
  9058. extra: 921 / 832,
  9059. bottom: 0.03
  9060. }
  9061. },
  9062. hand: {
  9063. height: math.unit(6 / 10.24, "feet"),
  9064. name: "Hand",
  9065. image: {
  9066. source: "./media/characters/mekuto/hand.svg"
  9067. }
  9068. },
  9069. foot: {
  9070. height: math.unit(6 / 5.05, "feet"),
  9071. name: "Foot",
  9072. image: {
  9073. source: "./media/characters/mekuto/foot.svg"
  9074. }
  9075. },
  9076. },
  9077. [
  9078. {
  9079. name: "Minimicro",
  9080. height: math.unit(0.2, "inches")
  9081. },
  9082. {
  9083. name: "Micro",
  9084. height: math.unit(1.5, "inches")
  9085. },
  9086. {
  9087. name: "Normal",
  9088. height: math.unit(5 + 11 / 12, "feet"),
  9089. default: true
  9090. },
  9091. {
  9092. name: "Minimacro",
  9093. height: math.unit(17 + 9 / 12, "feet")
  9094. },
  9095. {
  9096. name: "Macro",
  9097. height: math.unit(177.5, "feet")
  9098. },
  9099. {
  9100. name: "Megamacro",
  9101. height: math.unit(152, "miles")
  9102. },
  9103. ]
  9104. ))
  9105. characterMakers.push(() => makeCharacter(
  9106. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9107. {
  9108. front: {
  9109. height: math.unit(6.5, "inches"),
  9110. weight: math.unit(13, "oz"),
  9111. name: "Front",
  9112. image: {
  9113. source: "./media/characters/dafydd-tomos/front.svg",
  9114. extra: 2990 / 2603,
  9115. bottom: 0.03
  9116. }
  9117. },
  9118. },
  9119. [
  9120. {
  9121. name: "Micro",
  9122. height: math.unit(6.5, "inches"),
  9123. default: true
  9124. },
  9125. ]
  9126. ))
  9127. characterMakers.push(() => makeCharacter(
  9128. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9129. {
  9130. front: {
  9131. height: math.unit(6, "feet"),
  9132. weight: math.unit(150, "lb"),
  9133. name: "Front",
  9134. image: {
  9135. source: "./media/characters/splinter/front.svg",
  9136. extra: 2990 / 2882,
  9137. bottom: 0.04
  9138. }
  9139. },
  9140. back: {
  9141. height: math.unit(6, "feet"),
  9142. weight: math.unit(150, "lb"),
  9143. name: "Back",
  9144. image: {
  9145. source: "./media/characters/splinter/back.svg",
  9146. extra: 2990 / 2882,
  9147. bottom: 0.04
  9148. }
  9149. },
  9150. },
  9151. [
  9152. {
  9153. name: "Normal",
  9154. height: math.unit(6, "feet")
  9155. },
  9156. {
  9157. name: "Macro",
  9158. height: math.unit(230, "meters"),
  9159. default: true
  9160. },
  9161. ]
  9162. ))
  9163. characterMakers.push(() => makeCharacter(
  9164. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9165. {
  9166. front: {
  9167. height: math.unit(4 + 10 / 12, "feet"),
  9168. weight: math.unit(480, "lb"),
  9169. name: "Front",
  9170. image: {
  9171. source: "./media/characters/snow-gabumon/front.svg",
  9172. extra: 1140 / 963,
  9173. bottom: 0.058
  9174. }
  9175. },
  9176. back: {
  9177. height: math.unit(4 + 10 / 12, "feet"),
  9178. weight: math.unit(480, "lb"),
  9179. name: "Back",
  9180. image: {
  9181. source: "./media/characters/snow-gabumon/back.svg",
  9182. extra: 1115 / 962,
  9183. bottom: 0.041
  9184. }
  9185. },
  9186. frontUndresed: {
  9187. height: math.unit(4 + 10 / 12, "feet"),
  9188. weight: math.unit(480, "lb"),
  9189. name: "Front (Undressed)",
  9190. image: {
  9191. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9192. extra: 1061 / 960,
  9193. bottom: 0.045
  9194. }
  9195. },
  9196. },
  9197. [
  9198. {
  9199. name: "Micro",
  9200. height: math.unit(1, "inch")
  9201. },
  9202. {
  9203. name: "Normal",
  9204. height: math.unit(4 + 10 / 12, "feet"),
  9205. default: true
  9206. },
  9207. {
  9208. name: "Macro",
  9209. height: math.unit(200, "feet")
  9210. },
  9211. {
  9212. name: "Megamacro",
  9213. height: math.unit(120, "miles")
  9214. },
  9215. {
  9216. name: "Gigamacro",
  9217. height: math.unit(9800, "miles")
  9218. },
  9219. ]
  9220. ))
  9221. characterMakers.push(() => makeCharacter(
  9222. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9223. {
  9224. front: {
  9225. height: math.unit(1.7, "meters"),
  9226. weight: math.unit(140, "lb"),
  9227. name: "Front",
  9228. image: {
  9229. source: "./media/characters/moody/front.svg",
  9230. extra: 3226 / 3007,
  9231. bottom: 0.087
  9232. }
  9233. },
  9234. },
  9235. [
  9236. {
  9237. name: "Micro",
  9238. height: math.unit(1, "mm")
  9239. },
  9240. {
  9241. name: "Normal",
  9242. height: math.unit(1.7, "meters"),
  9243. default: true
  9244. },
  9245. {
  9246. name: "Macro",
  9247. height: math.unit(80, "meters")
  9248. },
  9249. {
  9250. name: "Macro+",
  9251. height: math.unit(500, "meters")
  9252. },
  9253. ]
  9254. ))
  9255. characterMakers.push(() => makeCharacter(
  9256. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9257. {
  9258. front: {
  9259. height: math.unit(6, "feet"),
  9260. weight: math.unit(150, "lb"),
  9261. name: "Front",
  9262. image: {
  9263. source: "./media/characters/zyas/front.svg",
  9264. extra: 1180 / 1120,
  9265. bottom: 0.045
  9266. }
  9267. },
  9268. },
  9269. [
  9270. {
  9271. name: "Normal",
  9272. height: math.unit(10, "feet"),
  9273. default: true
  9274. },
  9275. {
  9276. name: "Macro",
  9277. height: math.unit(500, "feet")
  9278. },
  9279. {
  9280. name: "Megamacro",
  9281. height: math.unit(5, "miles")
  9282. },
  9283. {
  9284. name: "Teramacro",
  9285. height: math.unit(150000, "miles")
  9286. },
  9287. ]
  9288. ))
  9289. characterMakers.push(() => makeCharacter(
  9290. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9291. {
  9292. front: {
  9293. height: math.unit(6, "feet"),
  9294. weight: math.unit(150, "lb"),
  9295. name: "Front",
  9296. image: {
  9297. source: "./media/characters/cuon/front.svg",
  9298. extra: 1390 / 1320,
  9299. bottom: 0.008
  9300. }
  9301. },
  9302. },
  9303. [
  9304. {
  9305. name: "Micro",
  9306. height: math.unit(3, "inches")
  9307. },
  9308. {
  9309. name: "Normal",
  9310. height: math.unit(18 + 9 / 12, "feet"),
  9311. default: true
  9312. },
  9313. {
  9314. name: "Macro",
  9315. height: math.unit(360, "feet")
  9316. },
  9317. {
  9318. name: "Megamacro",
  9319. height: math.unit(360, "miles")
  9320. },
  9321. ]
  9322. ))
  9323. characterMakers.push(() => makeCharacter(
  9324. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9325. {
  9326. front: {
  9327. height: math.unit(2.4, "meters"),
  9328. weight: math.unit(70, "kg"),
  9329. name: "Front",
  9330. image: {
  9331. source: "./media/characters/nyanuxk/front.svg",
  9332. extra: 1172 / 1084,
  9333. bottom: 0.065
  9334. }
  9335. },
  9336. side: {
  9337. height: math.unit(2.4, "meters"),
  9338. weight: math.unit(70, "kg"),
  9339. name: "Side",
  9340. image: {
  9341. source: "./media/characters/nyanuxk/side.svg",
  9342. extra: 1190 / 1132,
  9343. bottom: 0.007
  9344. }
  9345. },
  9346. back: {
  9347. height: math.unit(2.4, "meters"),
  9348. weight: math.unit(70, "kg"),
  9349. name: "Back",
  9350. image: {
  9351. source: "./media/characters/nyanuxk/back.svg",
  9352. extra: 1200 / 1141,
  9353. bottom: 0.015
  9354. }
  9355. },
  9356. foot: {
  9357. height: math.unit(0.52, "meters"),
  9358. name: "Foot",
  9359. image: {
  9360. source: "./media/characters/nyanuxk/foot.svg"
  9361. }
  9362. },
  9363. },
  9364. [
  9365. {
  9366. name: "Micro",
  9367. height: math.unit(2, "cm")
  9368. },
  9369. {
  9370. name: "Normal",
  9371. height: math.unit(2.4, "meters"),
  9372. default: true
  9373. },
  9374. {
  9375. name: "Smaller Macro",
  9376. height: math.unit(120, "meters")
  9377. },
  9378. {
  9379. name: "Bigger Macro",
  9380. height: math.unit(1.2, "km")
  9381. },
  9382. {
  9383. name: "Megamacro",
  9384. height: math.unit(15, "kilometers")
  9385. },
  9386. {
  9387. name: "Gigamacro",
  9388. height: math.unit(2000, "km")
  9389. },
  9390. {
  9391. name: "Teramacro",
  9392. height: math.unit(500000, "km")
  9393. },
  9394. ]
  9395. ))
  9396. characterMakers.push(() => makeCharacter(
  9397. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9398. {
  9399. side: {
  9400. height: math.unit(6, "feet"),
  9401. name: "Side",
  9402. image: {
  9403. source: "./media/characters/ailbhe/side.svg",
  9404. extra: 757 / 464,
  9405. bottom: 0.041
  9406. }
  9407. },
  9408. },
  9409. [
  9410. {
  9411. name: "Normal",
  9412. height: math.unit(1.07, "meters"),
  9413. default: true
  9414. },
  9415. ]
  9416. ))
  9417. characterMakers.push(() => makeCharacter(
  9418. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9419. {
  9420. front: {
  9421. height: math.unit(6, "feet"),
  9422. weight: math.unit(120, "kg"),
  9423. name: "Front",
  9424. image: {
  9425. source: "./media/characters/zevulfius/front.svg",
  9426. extra: 965 / 903
  9427. }
  9428. },
  9429. side: {
  9430. height: math.unit(6, "feet"),
  9431. weight: math.unit(120, "kg"),
  9432. name: "Side",
  9433. image: {
  9434. source: "./media/characters/zevulfius/side.svg",
  9435. extra: 939 / 900
  9436. }
  9437. },
  9438. back: {
  9439. height: math.unit(6, "feet"),
  9440. weight: math.unit(120, "kg"),
  9441. name: "Back",
  9442. image: {
  9443. source: "./media/characters/zevulfius/back.svg",
  9444. extra: 918 / 854,
  9445. bottom: 0.005
  9446. }
  9447. },
  9448. foot: {
  9449. height: math.unit(6 / 3.72, "feet"),
  9450. name: "Foot",
  9451. image: {
  9452. source: "./media/characters/zevulfius/foot.svg"
  9453. }
  9454. },
  9455. },
  9456. [
  9457. {
  9458. name: "Macro",
  9459. height: math.unit(750, "meters")
  9460. },
  9461. {
  9462. name: "Megamacro",
  9463. height: math.unit(20, "km"),
  9464. default: true
  9465. },
  9466. {
  9467. name: "Gigamacro",
  9468. height: math.unit(2000, "km")
  9469. },
  9470. {
  9471. name: "Teramacro",
  9472. height: math.unit(250000, "km")
  9473. },
  9474. ]
  9475. ))
  9476. characterMakers.push(() => makeCharacter(
  9477. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9478. {
  9479. front: {
  9480. height: math.unit(100, "feet"),
  9481. weight: math.unit(350, "kg"),
  9482. name: "Front",
  9483. image: {
  9484. source: "./media/characters/rikes/front.svg",
  9485. extra: 1565 / 1483,
  9486. bottom: 0.017
  9487. }
  9488. },
  9489. },
  9490. [
  9491. {
  9492. name: "Macro",
  9493. height: math.unit(100, "feet"),
  9494. default: true
  9495. },
  9496. ]
  9497. ))
  9498. characterMakers.push(() => makeCharacter(
  9499. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9500. {
  9501. anthro: {
  9502. height: math.unit(8, "feet"),
  9503. weight: math.unit(120, "kg"),
  9504. name: "Anthro",
  9505. image: {
  9506. source: "./media/characters/adam-silver-mane/anthro.svg",
  9507. extra: 5743 / 5339,
  9508. bottom: 0.07
  9509. }
  9510. },
  9511. taur: {
  9512. height: math.unit(16, "feet"),
  9513. weight: math.unit(1500, "kg"),
  9514. name: "Taur",
  9515. image: {
  9516. source: "./media/characters/adam-silver-mane/taur.svg",
  9517. extra: 1713 / 1571,
  9518. bottom: 0.01
  9519. }
  9520. },
  9521. },
  9522. [
  9523. {
  9524. name: "Normal",
  9525. height: math.unit(8, "feet")
  9526. },
  9527. {
  9528. name: "Minimacro",
  9529. height: math.unit(80, "feet")
  9530. },
  9531. {
  9532. name: "Macro",
  9533. height: math.unit(800, "feet"),
  9534. default: true
  9535. },
  9536. {
  9537. name: "Megamacro",
  9538. height: math.unit(8000, "feet")
  9539. },
  9540. {
  9541. name: "Gigamacro",
  9542. height: math.unit(800, "miles")
  9543. },
  9544. {
  9545. name: "Teramacro",
  9546. height: math.unit(80000, "miles")
  9547. },
  9548. {
  9549. name: "Celestial",
  9550. height: math.unit(8e6, "miles")
  9551. },
  9552. {
  9553. name: "Star Dragon",
  9554. height: math.unit(800000, "parsecs")
  9555. },
  9556. {
  9557. name: "Godly",
  9558. height: math.unit(800, "teraparsecs")
  9559. },
  9560. ]
  9561. ))
  9562. characterMakers.push(() => makeCharacter(
  9563. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9564. {
  9565. front: {
  9566. height: math.unit(6, "feet"),
  9567. weight: math.unit(150, "lb"),
  9568. name: "Front",
  9569. image: {
  9570. source: "./media/characters/ky'owin/front.svg",
  9571. extra: 3888 / 3068,
  9572. bottom: 0.015
  9573. }
  9574. },
  9575. },
  9576. [
  9577. {
  9578. name: "Normal",
  9579. height: math.unit(6 + 8 / 12, "feet")
  9580. },
  9581. {
  9582. name: "Large",
  9583. height: math.unit(68, "feet")
  9584. },
  9585. {
  9586. name: "Macro",
  9587. height: math.unit(132, "feet")
  9588. },
  9589. {
  9590. name: "Macro+",
  9591. height: math.unit(340, "feet")
  9592. },
  9593. {
  9594. name: "Macro++",
  9595. height: math.unit(680, "feet"),
  9596. default: true
  9597. },
  9598. {
  9599. name: "Megamacro",
  9600. height: math.unit(1, "mile")
  9601. },
  9602. {
  9603. name: "Megamacro+",
  9604. height: math.unit(10, "miles")
  9605. },
  9606. ]
  9607. ))
  9608. characterMakers.push(() => makeCharacter(
  9609. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9610. {
  9611. front: {
  9612. height: math.unit(4, "feet"),
  9613. weight: math.unit(50, "lb"),
  9614. name: "Front",
  9615. image: {
  9616. source: "./media/characters/mal/front.svg",
  9617. extra: 785 / 724,
  9618. bottom: 0.07
  9619. }
  9620. },
  9621. },
  9622. [
  9623. {
  9624. name: "Micro",
  9625. height: math.unit(4, "inches")
  9626. },
  9627. {
  9628. name: "Normal",
  9629. height: math.unit(4, "feet"),
  9630. default: true
  9631. },
  9632. {
  9633. name: "Macro",
  9634. height: math.unit(200, "feet")
  9635. },
  9636. ]
  9637. ))
  9638. characterMakers.push(() => makeCharacter(
  9639. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9640. {
  9641. front: {
  9642. height: math.unit(6, "feet"),
  9643. weight: math.unit(150, "lb"),
  9644. name: "Front",
  9645. image: {
  9646. source: "./media/characters/jordan-deware/front.svg",
  9647. extra: 1191 / 1012
  9648. }
  9649. },
  9650. },
  9651. [
  9652. {
  9653. name: "Nano",
  9654. height: math.unit(0.01, "mm")
  9655. },
  9656. {
  9657. name: "Minimicro",
  9658. height: math.unit(1, "mm")
  9659. },
  9660. {
  9661. name: "Micro",
  9662. height: math.unit(0.5, "inches")
  9663. },
  9664. {
  9665. name: "Normal",
  9666. height: math.unit(4, "feet"),
  9667. default: true
  9668. },
  9669. {
  9670. name: "Minimacro",
  9671. height: math.unit(40, "meters")
  9672. },
  9673. {
  9674. name: "Small Macro",
  9675. height: math.unit(400, "meters")
  9676. },
  9677. {
  9678. name: "Macro",
  9679. height: math.unit(4, "miles")
  9680. },
  9681. {
  9682. name: "Megamacro",
  9683. height: math.unit(40, "miles")
  9684. },
  9685. {
  9686. name: "Megamacro+",
  9687. height: math.unit(400, "miles")
  9688. },
  9689. {
  9690. name: "Gigamacro",
  9691. height: math.unit(400000, "miles")
  9692. },
  9693. ]
  9694. ))
  9695. characterMakers.push(() => makeCharacter(
  9696. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9697. {
  9698. side: {
  9699. height: math.unit(6, "feet"),
  9700. weight: math.unit(150, "lb"),
  9701. name: "Side",
  9702. image: {
  9703. source: "./media/characters/kimiko/side.svg",
  9704. extra: 600 / 358
  9705. }
  9706. },
  9707. },
  9708. [
  9709. {
  9710. name: "Normal",
  9711. height: math.unit(15, "feet"),
  9712. default: true
  9713. },
  9714. {
  9715. name: "Macro",
  9716. height: math.unit(220, "feet")
  9717. },
  9718. {
  9719. name: "Macro+",
  9720. height: math.unit(1450, "feet")
  9721. },
  9722. {
  9723. name: "Megamacro",
  9724. height: math.unit(11500, "feet")
  9725. },
  9726. {
  9727. name: "Gigamacro",
  9728. height: math.unit(9500, "miles")
  9729. },
  9730. {
  9731. name: "Teramacro",
  9732. height: math.unit(2208005005, "miles")
  9733. },
  9734. {
  9735. name: "Examacro",
  9736. height: math.unit(2750, "parsecs")
  9737. },
  9738. {
  9739. name: "Zettamacro",
  9740. height: math.unit(101500, "parsecs")
  9741. },
  9742. ]
  9743. ))
  9744. characterMakers.push(() => makeCharacter(
  9745. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9746. {
  9747. front: {
  9748. height: math.unit(6, "feet"),
  9749. weight: math.unit(70, "kg"),
  9750. name: "Front",
  9751. image: {
  9752. source: "./media/characters/andrew-sleepy/front.svg"
  9753. }
  9754. },
  9755. side: {
  9756. height: math.unit(6, "feet"),
  9757. weight: math.unit(70, "kg"),
  9758. name: "Side",
  9759. image: {
  9760. source: "./media/characters/andrew-sleepy/side.svg"
  9761. }
  9762. },
  9763. },
  9764. [
  9765. {
  9766. name: "Micro",
  9767. height: math.unit(1, "mm"),
  9768. default: true
  9769. },
  9770. ]
  9771. ))
  9772. characterMakers.push(() => makeCharacter(
  9773. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9774. {
  9775. front: {
  9776. height: math.unit(6, "feet"),
  9777. weight: math.unit(150, "lb"),
  9778. name: "Front",
  9779. image: {
  9780. source: "./media/characters/judio/front.svg",
  9781. extra: 1258 / 1110
  9782. }
  9783. },
  9784. },
  9785. [
  9786. {
  9787. name: "Normal",
  9788. height: math.unit(5 + 6 / 12, "feet")
  9789. },
  9790. {
  9791. name: "Macro",
  9792. height: math.unit(1000, "feet"),
  9793. default: true
  9794. },
  9795. {
  9796. name: "Megamacro",
  9797. height: math.unit(10, "miles")
  9798. },
  9799. ]
  9800. ))
  9801. characterMakers.push(() => makeCharacter(
  9802. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9803. {
  9804. front: {
  9805. height: math.unit(6, "feet"),
  9806. weight: math.unit(68, "kg"),
  9807. name: "Front",
  9808. image: {
  9809. source: "./media/characters/nomaxice/front.svg",
  9810. extra: 1498 / 1073,
  9811. bottom: 0.075
  9812. }
  9813. },
  9814. foot: {
  9815. height: math.unit(1.1, "feet"),
  9816. name: "Foot",
  9817. image: {
  9818. source: "./media/characters/nomaxice/foot.svg"
  9819. }
  9820. },
  9821. },
  9822. [
  9823. {
  9824. name: "Micro",
  9825. height: math.unit(8, "cm")
  9826. },
  9827. {
  9828. name: "Norm",
  9829. height: math.unit(1.82, "m")
  9830. },
  9831. {
  9832. name: "Norm+",
  9833. height: math.unit(8.8, "feet")
  9834. },
  9835. {
  9836. name: "Big",
  9837. height: math.unit(8, "meters"),
  9838. default: true
  9839. },
  9840. {
  9841. name: "Macro",
  9842. height: math.unit(18, "meters")
  9843. },
  9844. {
  9845. name: "Macro+",
  9846. height: math.unit(88, "meters")
  9847. },
  9848. ]
  9849. ))
  9850. characterMakers.push(() => makeCharacter(
  9851. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9852. {
  9853. front: {
  9854. height: math.unit(12, "feet"),
  9855. weight: math.unit(1.5, "tons"),
  9856. name: "Front",
  9857. image: {
  9858. source: "./media/characters/dydros/front.svg",
  9859. extra: 863 / 800,
  9860. bottom: 0.015
  9861. }
  9862. },
  9863. back: {
  9864. height: math.unit(12, "feet"),
  9865. weight: math.unit(1.5, "tons"),
  9866. name: "Back",
  9867. image: {
  9868. source: "./media/characters/dydros/back.svg",
  9869. extra: 900 / 843,
  9870. bottom: 0.005
  9871. }
  9872. },
  9873. },
  9874. [
  9875. {
  9876. name: "Normal",
  9877. height: math.unit(12, "feet"),
  9878. default: true
  9879. },
  9880. ]
  9881. ))
  9882. characterMakers.push(() => makeCharacter(
  9883. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9884. {
  9885. front: {
  9886. height: math.unit(6, "feet"),
  9887. weight: math.unit(100, "kg"),
  9888. name: "Front",
  9889. image: {
  9890. source: "./media/characters/riggi/front.svg",
  9891. extra: 5787 / 5303
  9892. }
  9893. },
  9894. hyper: {
  9895. height: math.unit(6 * 5 / 3, "feet"),
  9896. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9897. name: "Hyper",
  9898. image: {
  9899. source: "./media/characters/riggi/hyper.svg",
  9900. extra: 3595 / 3485
  9901. }
  9902. },
  9903. },
  9904. [
  9905. {
  9906. name: "Small Macro",
  9907. height: math.unit(50, "feet")
  9908. },
  9909. {
  9910. name: "Default",
  9911. height: math.unit(200, "feet"),
  9912. default: true
  9913. },
  9914. {
  9915. name: "Loom",
  9916. height: math.unit(10000, "feet")
  9917. },
  9918. {
  9919. name: "Cruising Altitude",
  9920. height: math.unit(30000, "feet")
  9921. },
  9922. {
  9923. name: "Megamacro",
  9924. height: math.unit(100, "miles")
  9925. },
  9926. {
  9927. name: "Continent Sized",
  9928. height: math.unit(2800, "miles")
  9929. },
  9930. {
  9931. name: "Earth Sized",
  9932. height: math.unit(8000, "miles")
  9933. },
  9934. ]
  9935. ))
  9936. characterMakers.push(() => makeCharacter(
  9937. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9938. {
  9939. front: {
  9940. height: math.unit(6, "feet"),
  9941. weight: math.unit(250, "lb"),
  9942. name: "Front",
  9943. image: {
  9944. source: "./media/characters/alexi/front.svg",
  9945. extra: 3483 / 3291,
  9946. bottom: 0.04
  9947. }
  9948. },
  9949. back: {
  9950. height: math.unit(6, "feet"),
  9951. weight: math.unit(250, "lb"),
  9952. name: "Back",
  9953. image: {
  9954. source: "./media/characters/alexi/back.svg",
  9955. extra: 3533 / 3356,
  9956. bottom: 0.021
  9957. }
  9958. },
  9959. frontTransforming: {
  9960. height: math.unit(8.58, "feet"),
  9961. weight: math.unit(1300, "lb"),
  9962. name: "Transforming",
  9963. image: {
  9964. source: "./media/characters/alexi/front-transforming.svg",
  9965. extra: 437 / 409,
  9966. bottom: 19 / 458.66
  9967. }
  9968. },
  9969. frontTransformed: {
  9970. height: math.unit(12.5, "feet"),
  9971. weight: math.unit(4000, "lb"),
  9972. name: "Transformed",
  9973. image: {
  9974. source: "./media/characters/alexi/front-transformed.svg",
  9975. extra: 639 / 614,
  9976. bottom: 30.55 / 671
  9977. }
  9978. },
  9979. },
  9980. [
  9981. {
  9982. name: "Normal",
  9983. height: math.unit(3, "meters"),
  9984. default: true
  9985. },
  9986. {
  9987. name: "Minimacro",
  9988. height: math.unit(30, "meters")
  9989. },
  9990. {
  9991. name: "Macro",
  9992. height: math.unit(500, "meters")
  9993. },
  9994. {
  9995. name: "Megamacro",
  9996. height: math.unit(9000, "km")
  9997. },
  9998. {
  9999. name: "Teramacro",
  10000. height: math.unit(384000, "km")
  10001. },
  10002. ]
  10003. ))
  10004. characterMakers.push(() => makeCharacter(
  10005. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10006. {
  10007. front: {
  10008. height: math.unit(6, "feet"),
  10009. weight: math.unit(150, "lb"),
  10010. name: "Front",
  10011. image: {
  10012. source: "./media/characters/kayroo/front.svg",
  10013. extra: 1153 / 1038,
  10014. bottom: 0.06
  10015. }
  10016. },
  10017. foot: {
  10018. height: math.unit(6, "feet"),
  10019. weight: math.unit(150, "lb"),
  10020. name: "Foot",
  10021. image: {
  10022. source: "./media/characters/kayroo/foot.svg"
  10023. }
  10024. },
  10025. },
  10026. [
  10027. {
  10028. name: "Normal",
  10029. height: math.unit(8, "feet"),
  10030. default: true
  10031. },
  10032. {
  10033. name: "Minimacro",
  10034. height: math.unit(250, "feet")
  10035. },
  10036. {
  10037. name: "Macro",
  10038. height: math.unit(2800, "feet")
  10039. },
  10040. {
  10041. name: "Megamacro",
  10042. height: math.unit(5200, "feet")
  10043. },
  10044. {
  10045. name: "Gigamacro",
  10046. height: math.unit(27000, "feet")
  10047. },
  10048. {
  10049. name: "Omega",
  10050. height: math.unit(45000, "feet")
  10051. },
  10052. ]
  10053. ))
  10054. characterMakers.push(() => makeCharacter(
  10055. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10056. {
  10057. front: {
  10058. height: math.unit(18, "feet"),
  10059. weight: math.unit(5800, "lb"),
  10060. name: "Front",
  10061. image: {
  10062. source: "./media/characters/rhys/front.svg",
  10063. extra: 3386 / 3090,
  10064. bottom: 0.07
  10065. }
  10066. },
  10067. },
  10068. [
  10069. {
  10070. name: "Normal",
  10071. height: math.unit(18, "feet"),
  10072. default: true
  10073. },
  10074. {
  10075. name: "Working Size",
  10076. height: math.unit(200, "feet")
  10077. },
  10078. {
  10079. name: "Demolition Size",
  10080. height: math.unit(2000, "feet")
  10081. },
  10082. {
  10083. name: "Maximum Licensed Size",
  10084. height: math.unit(5, "miles")
  10085. },
  10086. {
  10087. name: "Maximum Observed Size",
  10088. height: math.unit(10, "yottameters")
  10089. },
  10090. ]
  10091. ))
  10092. characterMakers.push(() => makeCharacter(
  10093. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10094. {
  10095. front: {
  10096. height: math.unit(6, "feet"),
  10097. weight: math.unit(250, "lb"),
  10098. name: "Front",
  10099. image: {
  10100. source: "./media/characters/toto/front.svg",
  10101. extra: 527 / 479,
  10102. bottom: 0.05
  10103. }
  10104. },
  10105. },
  10106. [
  10107. {
  10108. name: "Micro",
  10109. height: math.unit(3, "feet")
  10110. },
  10111. {
  10112. name: "Normal",
  10113. height: math.unit(10, "feet")
  10114. },
  10115. {
  10116. name: "Macro",
  10117. height: math.unit(150, "feet"),
  10118. default: true
  10119. },
  10120. {
  10121. name: "Megamacro",
  10122. height: math.unit(1200, "feet")
  10123. },
  10124. ]
  10125. ))
  10126. characterMakers.push(() => makeCharacter(
  10127. { name: "King", species: ["lion"], tags: ["anthro"] },
  10128. {
  10129. back: {
  10130. height: math.unit(6, "feet"),
  10131. weight: math.unit(150, "lb"),
  10132. name: "Back",
  10133. image: {
  10134. source: "./media/characters/king/back.svg"
  10135. }
  10136. },
  10137. },
  10138. [
  10139. {
  10140. name: "Micro",
  10141. height: math.unit(2, "inches")
  10142. },
  10143. {
  10144. name: "Normal",
  10145. height: math.unit(8, "feet")
  10146. },
  10147. {
  10148. name: "Macro",
  10149. height: math.unit(200, "feet"),
  10150. default: true
  10151. },
  10152. {
  10153. name: "Megamacro",
  10154. height: math.unit(50, "miles")
  10155. },
  10156. ]
  10157. ))
  10158. characterMakers.push(() => makeCharacter(
  10159. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10160. {
  10161. anthro: {
  10162. height: math.unit(6 + 5 / 12, "feet"),
  10163. weight: math.unit(280, "lb"),
  10164. name: "Anthro",
  10165. image: {
  10166. source: "./media/characters/cordite/anthro.svg",
  10167. extra: 1986 / 1905,
  10168. bottom: 0.025
  10169. }
  10170. },
  10171. feral: {
  10172. height: math.unit(2, "feet"),
  10173. weight: math.unit(90, "lb"),
  10174. name: "Feral",
  10175. image: {
  10176. source: "./media/characters/cordite/feral.svg",
  10177. extra: 1260 / 755,
  10178. bottom: 0.05
  10179. }
  10180. },
  10181. },
  10182. [
  10183. {
  10184. name: "Normal",
  10185. height: math.unit(6 + 5 / 12, "feet"),
  10186. default: true
  10187. },
  10188. ]
  10189. ))
  10190. characterMakers.push(() => makeCharacter(
  10191. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10192. {
  10193. front: {
  10194. height: math.unit(6, "feet"),
  10195. weight: math.unit(150, "lb"),
  10196. name: "Front",
  10197. image: {
  10198. source: "./media/characters/pianostrong/front.svg",
  10199. extra: 6577 / 6254,
  10200. bottom: 0.02
  10201. }
  10202. },
  10203. side: {
  10204. height: math.unit(6, "feet"),
  10205. weight: math.unit(150, "lb"),
  10206. name: "Side",
  10207. image: {
  10208. source: "./media/characters/pianostrong/side.svg",
  10209. extra: 6106 / 5730
  10210. }
  10211. },
  10212. back: {
  10213. height: math.unit(6, "feet"),
  10214. weight: math.unit(150, "lb"),
  10215. name: "Back",
  10216. image: {
  10217. source: "./media/characters/pianostrong/back.svg",
  10218. extra: 6085 / 5733,
  10219. bottom: 0.01
  10220. }
  10221. },
  10222. },
  10223. [
  10224. {
  10225. name: "Macro",
  10226. height: math.unit(100, "feet")
  10227. },
  10228. {
  10229. name: "Macro+",
  10230. height: math.unit(300, "feet"),
  10231. default: true
  10232. },
  10233. {
  10234. name: "Macro++",
  10235. height: math.unit(1000, "feet")
  10236. },
  10237. ]
  10238. ))
  10239. characterMakers.push(() => makeCharacter(
  10240. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10241. {
  10242. front: {
  10243. height: math.unit(6, "feet"),
  10244. weight: math.unit(150, "lb"),
  10245. name: "Front",
  10246. image: {
  10247. source: "./media/characters/kona/front.svg",
  10248. extra: 2960 / 2629,
  10249. bottom: 0.005
  10250. }
  10251. },
  10252. },
  10253. [
  10254. {
  10255. name: "Normal",
  10256. height: math.unit(11 + 8 / 12, "feet")
  10257. },
  10258. {
  10259. name: "Macro",
  10260. height: math.unit(850, "feet"),
  10261. default: true
  10262. },
  10263. {
  10264. name: "Macro+",
  10265. height: math.unit(1.5, "km"),
  10266. default: true
  10267. },
  10268. {
  10269. name: "Megamacro",
  10270. height: math.unit(80, "miles")
  10271. },
  10272. {
  10273. name: "Gigamacro",
  10274. height: math.unit(3500, "miles")
  10275. },
  10276. ]
  10277. ))
  10278. characterMakers.push(() => makeCharacter(
  10279. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10280. {
  10281. side: {
  10282. height: math.unit(1.9, "meters"),
  10283. weight: math.unit(326, "kg"),
  10284. name: "Side",
  10285. image: {
  10286. source: "./media/characters/levi/side.svg",
  10287. extra: 1704 / 1334,
  10288. bottom: 0.02
  10289. }
  10290. },
  10291. },
  10292. [
  10293. {
  10294. name: "Normal",
  10295. height: math.unit(1.9, "meters"),
  10296. default: true
  10297. },
  10298. {
  10299. name: "Macro",
  10300. height: math.unit(20, "meters")
  10301. },
  10302. {
  10303. name: "Macro+",
  10304. height: math.unit(200, "meters")
  10305. },
  10306. {
  10307. name: "Megamacro",
  10308. height: math.unit(2, "km")
  10309. },
  10310. {
  10311. name: "Megamacro+",
  10312. height: math.unit(20, "km")
  10313. },
  10314. {
  10315. name: "Gigamacro",
  10316. height: math.unit(2500, "km")
  10317. },
  10318. {
  10319. name: "Gigamacro+",
  10320. height: math.unit(120000, "km")
  10321. },
  10322. {
  10323. name: "Teramacro",
  10324. height: math.unit(7.77e6, "km")
  10325. },
  10326. ]
  10327. ))
  10328. characterMakers.push(() => makeCharacter(
  10329. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10330. {
  10331. front: {
  10332. height: math.unit(6 + 4 / 12, "feet"),
  10333. weight: math.unit(188, "lb"),
  10334. name: "Front",
  10335. image: {
  10336. source: "./media/characters/bmc/front.svg",
  10337. extra: 1067 / 1022,
  10338. bottom: 0.047
  10339. }
  10340. },
  10341. },
  10342. [
  10343. {
  10344. name: "Human-sized",
  10345. height: math.unit(6 + 4 / 12, "feet")
  10346. },
  10347. {
  10348. name: "Small",
  10349. height: math.unit(250, "feet")
  10350. },
  10351. {
  10352. name: "Normal",
  10353. height: math.unit(1250, "feet"),
  10354. default: true
  10355. },
  10356. {
  10357. name: "Good Day",
  10358. height: math.unit(88, "miles")
  10359. },
  10360. {
  10361. name: "Largest Measured Size",
  10362. height: math.unit(11.2e6, "lightyears")
  10363. },
  10364. ]
  10365. ))
  10366. characterMakers.push(() => makeCharacter(
  10367. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10368. {
  10369. front: {
  10370. height: math.unit(20, "feet"),
  10371. weight: math.unit(2016, "kg"),
  10372. name: "Front",
  10373. image: {
  10374. source: "./media/characters/sven-the-kaiju/front.svg",
  10375. extra: 1479 / 1449,
  10376. bottom: 0.05
  10377. }
  10378. },
  10379. },
  10380. [
  10381. {
  10382. name: "Fairy",
  10383. height: math.unit(6, "inches")
  10384. },
  10385. {
  10386. name: "Normal",
  10387. height: math.unit(20, "feet"),
  10388. default: true
  10389. },
  10390. {
  10391. name: "Rampage",
  10392. height: math.unit(200, "feet")
  10393. },
  10394. {
  10395. name: "Archfey Forest Guardian",
  10396. height: math.unit(1, "mile")
  10397. },
  10398. ]
  10399. ))
  10400. characterMakers.push(() => makeCharacter(
  10401. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10402. {
  10403. front: {
  10404. height: math.unit(4, "meters"),
  10405. weight: math.unit(2, "tons"),
  10406. name: "Front",
  10407. image: {
  10408. source: "./media/characters/marik/front.svg",
  10409. extra: 1057 / 1003,
  10410. bottom: 0.08
  10411. }
  10412. },
  10413. },
  10414. [
  10415. {
  10416. name: "Normal",
  10417. height: math.unit(4, "meters"),
  10418. default: true
  10419. },
  10420. {
  10421. name: "Macro",
  10422. height: math.unit(20, "meters")
  10423. },
  10424. {
  10425. name: "Megamacro",
  10426. height: math.unit(50, "km")
  10427. },
  10428. {
  10429. name: "Gigamacro",
  10430. height: math.unit(100, "km")
  10431. },
  10432. {
  10433. name: "Alpha Macro",
  10434. height: math.unit(7.88e7, "yottameters")
  10435. },
  10436. ]
  10437. ))
  10438. characterMakers.push(() => makeCharacter(
  10439. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10440. {
  10441. front: {
  10442. height: math.unit(6, "feet"),
  10443. weight: math.unit(110, "lb"),
  10444. name: "Front",
  10445. image: {
  10446. source: "./media/characters/mel/front.svg",
  10447. extra: 736 / 617,
  10448. bottom: 0.017
  10449. }
  10450. },
  10451. },
  10452. [
  10453. {
  10454. name: "Pico",
  10455. height: math.unit(3, "pm")
  10456. },
  10457. {
  10458. name: "Nano",
  10459. height: math.unit(3, "nm")
  10460. },
  10461. {
  10462. name: "Micro",
  10463. height: math.unit(0.3, "mm"),
  10464. default: true
  10465. },
  10466. {
  10467. name: "Micro+",
  10468. height: math.unit(3, "mm")
  10469. },
  10470. {
  10471. name: "Normal",
  10472. height: math.unit(5 + 10.5 / 12, "feet")
  10473. },
  10474. ]
  10475. ))
  10476. characterMakers.push(() => makeCharacter(
  10477. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10478. {
  10479. kaiju: {
  10480. height: math.unit(1.75, "meters"),
  10481. weight: math.unit(55, "kg"),
  10482. name: "Kaiju",
  10483. image: {
  10484. source: "./media/characters/lykonous/kaiju.svg",
  10485. extra: 1055 / 946,
  10486. bottom: 0.135
  10487. }
  10488. },
  10489. },
  10490. [
  10491. {
  10492. name: "Normal",
  10493. height: math.unit(2.5, "meters"),
  10494. default: true
  10495. },
  10496. {
  10497. name: "Kaiju Dragon",
  10498. height: math.unit(60, "meters")
  10499. },
  10500. {
  10501. name: "Mega Kaiju",
  10502. height: math.unit(120, "km")
  10503. },
  10504. {
  10505. name: "Giga Kaiju",
  10506. height: math.unit(200, "megameters")
  10507. },
  10508. {
  10509. name: "Terra Kaiju",
  10510. height: math.unit(400, "gigameters")
  10511. },
  10512. {
  10513. name: "Kaiju Dragon God",
  10514. height: math.unit(13000, "exaparsecs")
  10515. },
  10516. ]
  10517. ))
  10518. characterMakers.push(() => makeCharacter(
  10519. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10520. {
  10521. front: {
  10522. height: math.unit(6, "feet"),
  10523. weight: math.unit(150, "lb"),
  10524. name: "Front",
  10525. image: {
  10526. source: "./media/characters/blü/front.svg",
  10527. extra: 1883 / 1564,
  10528. bottom: 0.031
  10529. }
  10530. },
  10531. },
  10532. [
  10533. {
  10534. name: "Normal",
  10535. height: math.unit(13, "feet"),
  10536. default: true
  10537. },
  10538. {
  10539. name: "Big Boi",
  10540. height: math.unit(150, "meters")
  10541. },
  10542. {
  10543. name: "Mini Stomper",
  10544. height: math.unit(300, "meters")
  10545. },
  10546. {
  10547. name: "Macro",
  10548. height: math.unit(1000, "meters")
  10549. },
  10550. {
  10551. name: "Megamacro",
  10552. height: math.unit(11000, "meters")
  10553. },
  10554. {
  10555. name: "Gigamacro",
  10556. height: math.unit(11000, "km")
  10557. },
  10558. {
  10559. name: "Teramacro",
  10560. height: math.unit(420000, "km")
  10561. },
  10562. {
  10563. name: "Examacro",
  10564. height: math.unit(120, "parsecs")
  10565. },
  10566. {
  10567. name: "God Tho",
  10568. height: math.unit(98000000000, "parsecs")
  10569. },
  10570. ]
  10571. ))
  10572. characterMakers.push(() => makeCharacter(
  10573. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10574. {
  10575. taurFront: {
  10576. height: math.unit(6, "feet"),
  10577. weight: math.unit(200, "lb"),
  10578. name: "Taur (Front)",
  10579. image: {
  10580. source: "./media/characters/scales/taur-front.svg",
  10581. extra: 1,
  10582. bottom: 0.05
  10583. }
  10584. },
  10585. taurBack: {
  10586. height: math.unit(6, "feet"),
  10587. weight: math.unit(200, "lb"),
  10588. name: "Taur (Back)",
  10589. image: {
  10590. source: "./media/characters/scales/taur-back.svg",
  10591. extra: 1,
  10592. bottom: 0.08
  10593. }
  10594. },
  10595. anthro: {
  10596. height: math.unit(6 * 7 / 12, "feet"),
  10597. weight: math.unit(100, "lb"),
  10598. name: "Anthro",
  10599. image: {
  10600. source: "./media/characters/scales/anthro.svg",
  10601. extra: 1,
  10602. bottom: 0.06
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Normal",
  10609. height: math.unit(12, "feet"),
  10610. default: true
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10616. {
  10617. front: {
  10618. height: math.unit(6, "feet"),
  10619. weight: math.unit(150, "lb"),
  10620. name: "Front",
  10621. image: {
  10622. source: "./media/characters/koragos/front.svg",
  10623. extra: 841 / 794,
  10624. bottom: 0.035
  10625. }
  10626. },
  10627. back: {
  10628. height: math.unit(6, "feet"),
  10629. weight: math.unit(150, "lb"),
  10630. name: "Back",
  10631. image: {
  10632. source: "./media/characters/koragos/back.svg",
  10633. extra: 841 / 810,
  10634. bottom: 0.022
  10635. }
  10636. },
  10637. },
  10638. [
  10639. {
  10640. name: "Normal",
  10641. height: math.unit(6 + 11 / 12, "feet"),
  10642. default: true
  10643. },
  10644. {
  10645. name: "Macro",
  10646. height: math.unit(490, "feet")
  10647. },
  10648. {
  10649. name: "Megamacro",
  10650. height: math.unit(10, "miles")
  10651. },
  10652. {
  10653. name: "Gigamacro",
  10654. height: math.unit(50, "miles")
  10655. },
  10656. ]
  10657. ))
  10658. characterMakers.push(() => makeCharacter(
  10659. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10660. {
  10661. front: {
  10662. height: math.unit(6, "feet"),
  10663. weight: math.unit(250, "lb"),
  10664. name: "Front",
  10665. image: {
  10666. source: "./media/characters/xylrem/front.svg",
  10667. extra: 3323 / 3050,
  10668. bottom: 0.065
  10669. }
  10670. },
  10671. },
  10672. [
  10673. {
  10674. name: "Micro",
  10675. height: math.unit(4, "feet")
  10676. },
  10677. {
  10678. name: "Normal",
  10679. height: math.unit(16, "feet"),
  10680. default: true
  10681. },
  10682. {
  10683. name: "Macro",
  10684. height: math.unit(2720, "feet")
  10685. },
  10686. {
  10687. name: "Megamacro",
  10688. height: math.unit(25000, "miles")
  10689. },
  10690. ]
  10691. ))
  10692. characterMakers.push(() => makeCharacter(
  10693. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10694. {
  10695. front: {
  10696. height: math.unit(8, "feet"),
  10697. weight: math.unit(250, "kg"),
  10698. name: "Front",
  10699. image: {
  10700. source: "./media/characters/ikideru/front.svg",
  10701. extra: 930 / 870,
  10702. bottom: 0.087
  10703. }
  10704. },
  10705. back: {
  10706. height: math.unit(8, "feet"),
  10707. weight: math.unit(250, "kg"),
  10708. name: "Back",
  10709. image: {
  10710. source: "./media/characters/ikideru/back.svg",
  10711. extra: 919 / 852,
  10712. bottom: 0.055
  10713. }
  10714. },
  10715. },
  10716. [
  10717. {
  10718. name: "Rare",
  10719. height: math.unit(8, "feet"),
  10720. default: true
  10721. },
  10722. {
  10723. name: "Playful Loom",
  10724. height: math.unit(80, "feet")
  10725. },
  10726. {
  10727. name: "City Leaner",
  10728. height: math.unit(230, "feet")
  10729. },
  10730. {
  10731. name: "Megamacro",
  10732. height: math.unit(2500, "feet")
  10733. },
  10734. {
  10735. name: "Gigamacro",
  10736. height: math.unit(26400, "feet")
  10737. },
  10738. {
  10739. name: "Tectonic Shifter",
  10740. height: math.unit(1.7, "megameters")
  10741. },
  10742. {
  10743. name: "Planet Carer",
  10744. height: math.unit(21, "megameters")
  10745. },
  10746. {
  10747. name: "God",
  10748. height: math.unit(11157.22, "parsecs")
  10749. },
  10750. ]
  10751. ))
  10752. characterMakers.push(() => makeCharacter(
  10753. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10754. {
  10755. front: {
  10756. height: math.unit(6, "feet"),
  10757. weight: math.unit(120, "lb"),
  10758. name: "Front",
  10759. image: {
  10760. source: "./media/characters/neo/front.svg"
  10761. }
  10762. },
  10763. },
  10764. [
  10765. {
  10766. name: "Micro",
  10767. height: math.unit(2, "inches"),
  10768. default: true
  10769. },
  10770. {
  10771. name: "Human Size",
  10772. height: math.unit(5 + 8 / 12, "feet")
  10773. },
  10774. ]
  10775. ))
  10776. characterMakers.push(() => makeCharacter(
  10777. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10778. {
  10779. front: {
  10780. height: math.unit(13 + 10 / 12, "feet"),
  10781. weight: math.unit(5320, "lb"),
  10782. name: "Front",
  10783. image: {
  10784. source: "./media/characters/chauncey-chantz/front.svg",
  10785. extra: 1587 / 1435,
  10786. bottom: 0.02
  10787. }
  10788. },
  10789. },
  10790. [
  10791. {
  10792. name: "Normal",
  10793. height: math.unit(13 + 10 / 12, "feet"),
  10794. default: true
  10795. },
  10796. {
  10797. name: "Macro",
  10798. height: math.unit(45, "feet")
  10799. },
  10800. {
  10801. name: "Megamacro",
  10802. height: math.unit(250, "miles")
  10803. },
  10804. {
  10805. name: "Planetary",
  10806. height: math.unit(10000, "miles")
  10807. },
  10808. {
  10809. name: "Galactic",
  10810. height: math.unit(40000, "parsecs")
  10811. },
  10812. {
  10813. name: "Universal",
  10814. height: math.unit(1, "yottameter")
  10815. },
  10816. ]
  10817. ))
  10818. characterMakers.push(() => makeCharacter(
  10819. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10820. {
  10821. front: {
  10822. height: math.unit(6, "feet"),
  10823. weight: math.unit(150, "lb"),
  10824. name: "Front",
  10825. image: {
  10826. source: "./media/characters/epifox/front.svg",
  10827. extra: 1,
  10828. bottom: 0.075
  10829. }
  10830. },
  10831. },
  10832. [
  10833. {
  10834. name: "Micro",
  10835. height: math.unit(6, "inches")
  10836. },
  10837. {
  10838. name: "Normal",
  10839. height: math.unit(12, "feet"),
  10840. default: true
  10841. },
  10842. {
  10843. name: "Macro",
  10844. height: math.unit(3810, "feet")
  10845. },
  10846. {
  10847. name: "Megamacro",
  10848. height: math.unit(500, "miles")
  10849. },
  10850. ]
  10851. ))
  10852. characterMakers.push(() => makeCharacter(
  10853. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10854. {
  10855. front: {
  10856. height: math.unit(1.8796, "m"),
  10857. weight: math.unit(230, "lb"),
  10858. name: "Front",
  10859. image: {
  10860. source: "./media/characters/colin-t/front.svg",
  10861. extra: 1272 / 1193,
  10862. bottom: 0.07
  10863. }
  10864. },
  10865. },
  10866. [
  10867. {
  10868. name: "Micro",
  10869. height: math.unit(0.571, "meters")
  10870. },
  10871. {
  10872. name: "Normal",
  10873. height: math.unit(1.8796, "meters"),
  10874. default: true
  10875. },
  10876. {
  10877. name: "Tall",
  10878. height: math.unit(4, "meters")
  10879. },
  10880. {
  10881. name: "Macro",
  10882. height: math.unit(67.241, "meters")
  10883. },
  10884. {
  10885. name: "Megamacro",
  10886. height: math.unit(371.856, "meters")
  10887. },
  10888. {
  10889. name: "Planetary",
  10890. height: math.unit(12631.5689, "km")
  10891. },
  10892. ]
  10893. ))
  10894. characterMakers.push(() => makeCharacter(
  10895. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10896. {
  10897. front: {
  10898. height: math.unit(1.85, "meters"),
  10899. weight: math.unit(80, "kg"),
  10900. name: "Front",
  10901. image: {
  10902. source: "./media/characters/matvei/front.svg",
  10903. extra: 614 / 594,
  10904. bottom: 0.01
  10905. }
  10906. },
  10907. },
  10908. [
  10909. {
  10910. name: "Normal",
  10911. height: math.unit(1.85, "meters"),
  10912. default: true
  10913. },
  10914. ]
  10915. ))
  10916. characterMakers.push(() => makeCharacter(
  10917. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10918. {
  10919. front: {
  10920. height: math.unit(5 + 9 / 12, "feet"),
  10921. weight: math.unit(70, "lb"),
  10922. name: "Front",
  10923. image: {
  10924. source: "./media/characters/quincy/front.svg",
  10925. extra: 3041 / 2751
  10926. }
  10927. },
  10928. back: {
  10929. height: math.unit(5 + 9 / 12, "feet"),
  10930. weight: math.unit(70, "lb"),
  10931. name: "Back",
  10932. image: {
  10933. source: "./media/characters/quincy/back.svg",
  10934. extra: 3041 / 2751
  10935. }
  10936. },
  10937. flying: {
  10938. height: math.unit(5 + 4 / 12, "feet"),
  10939. weight: math.unit(70, "lb"),
  10940. name: "Flying",
  10941. image: {
  10942. source: "./media/characters/quincy/flying.svg",
  10943. extra: 1044 / 930
  10944. }
  10945. },
  10946. },
  10947. [
  10948. {
  10949. name: "Micro",
  10950. height: math.unit(3, "cm")
  10951. },
  10952. {
  10953. name: "Normal",
  10954. height: math.unit(5 + 9 / 12, "feet")
  10955. },
  10956. {
  10957. name: "Macro",
  10958. height: math.unit(200, "meters"),
  10959. default: true
  10960. },
  10961. {
  10962. name: "Megamacro",
  10963. height: math.unit(1000, "meters")
  10964. },
  10965. ]
  10966. ))
  10967. characterMakers.push(() => makeCharacter(
  10968. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  10969. {
  10970. front: {
  10971. height: math.unit(4 + 7 / 12, "feet"),
  10972. weight: math.unit(150, "lb"),
  10973. name: "Front",
  10974. image: {
  10975. source: "./media/characters/vanrel/front.svg",
  10976. extra: 1,
  10977. bottom: 0.02
  10978. }
  10979. },
  10980. elemental: {
  10981. height: math.unit(3, "feet"),
  10982. weight: math.unit(150, "lb"),
  10983. name: "Elemental",
  10984. image: {
  10985. source: "./media/characters/vanrel/elemental.svg",
  10986. extra: 192.3 / 162.8,
  10987. bottom: 1.79 / 194.17
  10988. }
  10989. },
  10990. side: {
  10991. height: math.unit(4 + 7 / 12, "feet"),
  10992. weight: math.unit(150, "lb"),
  10993. name: "Side",
  10994. image: {
  10995. source: "./media/characters/vanrel/side.svg",
  10996. extra: 1,
  10997. bottom: 0.025
  10998. }
  10999. },
  11000. tome: {
  11001. height: math.unit(1.35, "feet"),
  11002. weight: math.unit(10, "lb"),
  11003. name: "Vanrel's Tome",
  11004. rename: true,
  11005. image: {
  11006. source: "./media/characters/vanrel/tome.svg"
  11007. }
  11008. },
  11009. beans: {
  11010. height: math.unit(0.89, "feet"),
  11011. name: "Beans",
  11012. image: {
  11013. source: "./media/characters/vanrel/beans.svg"
  11014. }
  11015. },
  11016. },
  11017. [
  11018. {
  11019. name: "Normal",
  11020. height: math.unit(4 + 7 / 12, "feet"),
  11021. default: true
  11022. },
  11023. ]
  11024. ))
  11025. characterMakers.push(() => makeCharacter(
  11026. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11027. {
  11028. front: {
  11029. height: math.unit(7 + 5 / 12, "feet"),
  11030. weight: math.unit(150, "lb"),
  11031. name: "Front",
  11032. image: {
  11033. source: "./media/characters/kuiper-vanrel/front.svg",
  11034. extra: 1118 / 1068,
  11035. bottom: 0.09
  11036. }
  11037. },
  11038. foot: {
  11039. height: math.unit(0.55, "meters"),
  11040. name: "Foot",
  11041. image: {
  11042. source: "./media/characters/kuiper-vanrel/foot.svg",
  11043. }
  11044. },
  11045. battle: {
  11046. height: math.unit(6.824, "feet"),
  11047. weight: math.unit(150, "lb"),
  11048. name: "Battle",
  11049. image: {
  11050. source: "./media/characters/kuiper-vanrel/battle.svg",
  11051. extra: 1466 / 1327,
  11052. bottom: 29 / 1492.5
  11053. }
  11054. },
  11055. },
  11056. [
  11057. {
  11058. name: "Normal",
  11059. height: math.unit(7 + 5 / 12, "feet"),
  11060. default: true
  11061. },
  11062. ]
  11063. ))
  11064. characterMakers.push(() => makeCharacter(
  11065. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11066. {
  11067. front: {
  11068. height: math.unit(8 + 5 / 12, "feet"),
  11069. weight: math.unit(150, "lb"),
  11070. name: "Front",
  11071. image: {
  11072. source: "./media/characters/keset-vanrel/front.svg",
  11073. extra: 1150 / 1084,
  11074. bottom: 0.05
  11075. }
  11076. },
  11077. hand: {
  11078. height: math.unit(0.6, "meters"),
  11079. name: "Hand",
  11080. image: {
  11081. source: "./media/characters/keset-vanrel/hand.svg"
  11082. }
  11083. },
  11084. foot: {
  11085. height: math.unit(0.94978, "meters"),
  11086. name: "Foot",
  11087. image: {
  11088. source: "./media/characters/keset-vanrel/foot.svg"
  11089. }
  11090. },
  11091. battle: {
  11092. height: math.unit(7.408, "feet"),
  11093. weight: math.unit(150, "lb"),
  11094. name: "Battle",
  11095. image: {
  11096. source: "./media/characters/keset-vanrel/battle.svg",
  11097. extra: 1890 / 1386,
  11098. bottom: 73.28 / 1970
  11099. }
  11100. },
  11101. },
  11102. [
  11103. {
  11104. name: "Normal",
  11105. height: math.unit(8 + 5 / 12, "feet"),
  11106. default: true
  11107. },
  11108. ]
  11109. ))
  11110. characterMakers.push(() => makeCharacter(
  11111. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11112. {
  11113. front: {
  11114. height: math.unit(6, "feet"),
  11115. weight: math.unit(150, "lb"),
  11116. name: "Front",
  11117. image: {
  11118. source: "./media/characters/neos/front.svg",
  11119. extra: 1696 / 992,
  11120. bottom: 0.14
  11121. }
  11122. },
  11123. },
  11124. [
  11125. {
  11126. name: "Normal",
  11127. height: math.unit(54, "cm"),
  11128. default: true
  11129. },
  11130. {
  11131. name: "Macro",
  11132. height: math.unit(100, "m")
  11133. },
  11134. {
  11135. name: "Megamacro",
  11136. height: math.unit(10, "km")
  11137. },
  11138. {
  11139. name: "Megamacro+",
  11140. height: math.unit(100, "km")
  11141. },
  11142. {
  11143. name: "Gigamacro",
  11144. height: math.unit(100, "Mm")
  11145. },
  11146. {
  11147. name: "Teramacro",
  11148. height: math.unit(100, "Gm")
  11149. },
  11150. {
  11151. name: "Examacro",
  11152. height: math.unit(100, "Em")
  11153. },
  11154. {
  11155. name: "Godly",
  11156. height: math.unit(10000, "Ym")
  11157. },
  11158. {
  11159. name: "Beyond Godly",
  11160. height: math.unit(25, "multiverses")
  11161. },
  11162. ]
  11163. ))
  11164. characterMakers.push(() => makeCharacter(
  11165. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11166. {
  11167. feminine: {
  11168. height: math.unit(5, "feet"),
  11169. weight: math.unit(100, "lb"),
  11170. name: "Feminine",
  11171. image: {
  11172. source: "./media/characters/sammy-mouse/feminine.svg",
  11173. extra: 2526 / 2425,
  11174. bottom: 0.123
  11175. }
  11176. },
  11177. masculine: {
  11178. height: math.unit(5, "feet"),
  11179. weight: math.unit(100, "lb"),
  11180. name: "Masculine",
  11181. image: {
  11182. source: "./media/characters/sammy-mouse/masculine.svg",
  11183. extra: 2526 / 2425,
  11184. bottom: 0.123
  11185. }
  11186. },
  11187. },
  11188. [
  11189. {
  11190. name: "Micro",
  11191. height: math.unit(5, "inches")
  11192. },
  11193. {
  11194. name: "Normal",
  11195. height: math.unit(5, "feet"),
  11196. default: true
  11197. },
  11198. {
  11199. name: "Macro",
  11200. height: math.unit(60, "feet")
  11201. },
  11202. ]
  11203. ))
  11204. characterMakers.push(() => makeCharacter(
  11205. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11206. {
  11207. front: {
  11208. height: math.unit(4, "feet"),
  11209. weight: math.unit(50, "lb"),
  11210. name: "Front",
  11211. image: {
  11212. source: "./media/characters/kole/front.svg",
  11213. extra: 1423 / 1303,
  11214. bottom: 0.025
  11215. }
  11216. },
  11217. back: {
  11218. height: math.unit(4, "feet"),
  11219. weight: math.unit(50, "lb"),
  11220. name: "Back",
  11221. image: {
  11222. source: "./media/characters/kole/back.svg",
  11223. extra: 1426 / 1280,
  11224. bottom: 0.02
  11225. }
  11226. },
  11227. },
  11228. [
  11229. {
  11230. name: "Normal",
  11231. height: math.unit(4, "feet"),
  11232. default: true
  11233. },
  11234. ]
  11235. ))
  11236. characterMakers.push(() => makeCharacter(
  11237. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11238. {
  11239. front: {
  11240. height: math.unit(2 + 6 / 12, "feet"),
  11241. weight: math.unit(20, "lb"),
  11242. name: "Front",
  11243. image: {
  11244. source: "./media/characters/rufran/front.svg",
  11245. extra: 2041 / 1839,
  11246. bottom: 0.055
  11247. }
  11248. },
  11249. back: {
  11250. height: math.unit(2 + 6 / 12, "feet"),
  11251. weight: math.unit(20, "lb"),
  11252. name: "Back",
  11253. image: {
  11254. source: "./media/characters/rufran/back.svg",
  11255. extra: 2054 / 1839,
  11256. bottom: 0.01
  11257. }
  11258. },
  11259. hand: {
  11260. height: math.unit(0.2166, "meters"),
  11261. name: "Hand",
  11262. image: {
  11263. source: "./media/characters/rufran/hand.svg"
  11264. }
  11265. },
  11266. foot: {
  11267. height: math.unit(0.185, "meters"),
  11268. name: "Foot",
  11269. image: {
  11270. source: "./media/characters/rufran/foot.svg"
  11271. }
  11272. },
  11273. },
  11274. [
  11275. {
  11276. name: "Micro",
  11277. height: math.unit(1, "inch")
  11278. },
  11279. {
  11280. name: "Normal",
  11281. height: math.unit(2 + 6 / 12, "feet"),
  11282. default: true
  11283. },
  11284. {
  11285. name: "Big",
  11286. height: math.unit(60, "feet")
  11287. },
  11288. {
  11289. name: "Macro",
  11290. height: math.unit(325, "feet")
  11291. },
  11292. ]
  11293. ))
  11294. characterMakers.push(() => makeCharacter(
  11295. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11296. {
  11297. front: {
  11298. height: math.unit(0.3, "meters"),
  11299. weight: math.unit(3.5, "kg"),
  11300. name: "Front",
  11301. image: {
  11302. source: "./media/characters/chip/front.svg",
  11303. extra: 748 / 674
  11304. }
  11305. },
  11306. },
  11307. [
  11308. {
  11309. name: "Micro",
  11310. height: math.unit(1, "inch"),
  11311. default: true
  11312. },
  11313. ]
  11314. ))
  11315. characterMakers.push(() => makeCharacter(
  11316. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11317. {
  11318. side: {
  11319. height: math.unit(2.3, "meters"),
  11320. weight: math.unit(3500, "lb"),
  11321. name: "Side",
  11322. image: {
  11323. source: "./media/characters/torvid/side.svg",
  11324. extra: 1972 / 722,
  11325. bottom: 0.035
  11326. }
  11327. },
  11328. },
  11329. [
  11330. {
  11331. name: "Normal",
  11332. height: math.unit(2.3, "meters"),
  11333. default: true
  11334. },
  11335. ]
  11336. ))
  11337. characterMakers.push(() => makeCharacter(
  11338. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11339. {
  11340. front: {
  11341. height: math.unit(2, "meters"),
  11342. weight: math.unit(150.5, "kg"),
  11343. name: "Front",
  11344. image: {
  11345. source: "./media/characters/susan/front.svg",
  11346. extra: 693 / 635,
  11347. bottom: 0.05
  11348. }
  11349. },
  11350. },
  11351. [
  11352. {
  11353. name: "Megamacro",
  11354. height: math.unit(505, "miles"),
  11355. default: true
  11356. },
  11357. ]
  11358. ))
  11359. characterMakers.push(() => makeCharacter(
  11360. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11361. {
  11362. front: {
  11363. height: math.unit(6, "feet"),
  11364. weight: math.unit(150, "lb"),
  11365. name: "Front",
  11366. image: {
  11367. source: "./media/characters/raindrops/front.svg",
  11368. extra: 2655 / 2461,
  11369. bottom: 49/2705
  11370. }
  11371. },
  11372. back: {
  11373. height: math.unit(6, "feet"),
  11374. weight: math.unit(150, "lb"),
  11375. name: "Back",
  11376. image: {
  11377. source: "./media/characters/raindrops/back.svg",
  11378. extra: 2574 / 2400,
  11379. bottom: 65/2634
  11380. }
  11381. },
  11382. },
  11383. [
  11384. {
  11385. name: "Micro",
  11386. height: math.unit(6, "inches")
  11387. },
  11388. {
  11389. name: "Normal",
  11390. height: math.unit(6 + 2 / 12, "feet")
  11391. },
  11392. {
  11393. name: "Macro",
  11394. height: math.unit(131, "feet"),
  11395. default: true
  11396. },
  11397. {
  11398. name: "Megamacro",
  11399. height: math.unit(15, "miles")
  11400. },
  11401. {
  11402. name: "Gigamacro",
  11403. height: math.unit(4000, "miles")
  11404. },
  11405. {
  11406. name: "Teramacro",
  11407. height: math.unit(315000, "miles")
  11408. },
  11409. ]
  11410. ))
  11411. characterMakers.push(() => makeCharacter(
  11412. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11413. {
  11414. front: {
  11415. height: math.unit(2.794, "meters"),
  11416. weight: math.unit(325, "kg"),
  11417. name: "Front",
  11418. image: {
  11419. source: "./media/characters/tezwa/front.svg",
  11420. extra: 2083 / 1906,
  11421. bottom: 0.031
  11422. }
  11423. },
  11424. foot: {
  11425. height: math.unit(0.687, "meters"),
  11426. name: "Foot",
  11427. image: {
  11428. source: "./media/characters/tezwa/foot.svg"
  11429. }
  11430. },
  11431. },
  11432. [
  11433. {
  11434. name: "Normal",
  11435. height: math.unit(9 + 2 / 12, "feet"),
  11436. default: true
  11437. },
  11438. ]
  11439. ))
  11440. characterMakers.push(() => makeCharacter(
  11441. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11442. {
  11443. front: {
  11444. height: math.unit(58, "feet"),
  11445. weight: math.unit(89000, "lb"),
  11446. name: "Front",
  11447. image: {
  11448. source: "./media/characters/typhus/front.svg",
  11449. extra: 816 / 800,
  11450. bottom: 0.065
  11451. }
  11452. },
  11453. },
  11454. [
  11455. {
  11456. name: "Macro",
  11457. height: math.unit(58, "feet"),
  11458. default: true
  11459. },
  11460. ]
  11461. ))
  11462. characterMakers.push(() => makeCharacter(
  11463. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11464. {
  11465. front: {
  11466. height: math.unit(12, "feet"),
  11467. weight: math.unit(6, "tonnes"),
  11468. name: "Front",
  11469. image: {
  11470. source: "./media/characters/lyra-von-wulf/front.svg",
  11471. extra: 1,
  11472. bottom: 0.10
  11473. }
  11474. },
  11475. frontMecha: {
  11476. height: math.unit(12, "feet"),
  11477. weight: math.unit(12, "tonnes"),
  11478. name: "Front (Mecha)",
  11479. image: {
  11480. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11481. extra: 1,
  11482. bottom: 0.042
  11483. }
  11484. },
  11485. maw: {
  11486. height: math.unit(2.2, "feet"),
  11487. name: "Maw",
  11488. image: {
  11489. source: "./media/characters/lyra-von-wulf/maw.svg"
  11490. }
  11491. },
  11492. },
  11493. [
  11494. {
  11495. name: "Normal",
  11496. height: math.unit(12, "feet"),
  11497. default: true
  11498. },
  11499. {
  11500. name: "Classic",
  11501. height: math.unit(50, "feet")
  11502. },
  11503. {
  11504. name: "Macro",
  11505. height: math.unit(500, "feet")
  11506. },
  11507. {
  11508. name: "Megamacro",
  11509. height: math.unit(1, "mile")
  11510. },
  11511. {
  11512. name: "Gigamacro",
  11513. height: math.unit(400, "miles")
  11514. },
  11515. {
  11516. name: "Teramacro",
  11517. height: math.unit(22000, "miles")
  11518. },
  11519. {
  11520. name: "Solarmacro",
  11521. height: math.unit(8600000, "miles")
  11522. },
  11523. {
  11524. name: "Galactic",
  11525. height: math.unit(1057000, "lightyears")
  11526. },
  11527. ]
  11528. ))
  11529. characterMakers.push(() => makeCharacter(
  11530. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11531. {
  11532. front: {
  11533. height: math.unit(6 + 10 / 12, "feet"),
  11534. weight: math.unit(150, "lb"),
  11535. name: "Front",
  11536. image: {
  11537. source: "./media/characters/dixon/front.svg",
  11538. extra: 3361 / 3209,
  11539. bottom: 0.01
  11540. }
  11541. },
  11542. },
  11543. [
  11544. {
  11545. name: "Normal",
  11546. height: math.unit(6 + 10 / 12, "feet"),
  11547. default: true
  11548. },
  11549. {
  11550. name: "Big",
  11551. height: math.unit(12, "meters")
  11552. },
  11553. {
  11554. name: "Macro",
  11555. height: math.unit(500, "meters")
  11556. },
  11557. {
  11558. name: "Megamacro",
  11559. height: math.unit(2, "km")
  11560. },
  11561. ]
  11562. ))
  11563. characterMakers.push(() => makeCharacter(
  11564. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11565. {
  11566. front: {
  11567. height: math.unit(185, "cm"),
  11568. weight: math.unit(68, "kg"),
  11569. name: "Front",
  11570. image: {
  11571. source: "./media/characters/kauko/front.svg",
  11572. extra: 1455 / 1421,
  11573. bottom: 0.03
  11574. }
  11575. },
  11576. back: {
  11577. height: math.unit(185, "cm"),
  11578. weight: math.unit(68, "kg"),
  11579. name: "Back",
  11580. image: {
  11581. source: "./media/characters/kauko/back.svg",
  11582. extra: 1455 / 1421,
  11583. bottom: 0.004
  11584. }
  11585. },
  11586. },
  11587. [
  11588. {
  11589. name: "Normal",
  11590. height: math.unit(185, "cm"),
  11591. default: true
  11592. },
  11593. ]
  11594. ))
  11595. characterMakers.push(() => makeCharacter(
  11596. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11597. {
  11598. front: {
  11599. height: math.unit(6, "feet"),
  11600. weight: math.unit(150, "kg"),
  11601. name: "Front",
  11602. image: {
  11603. source: "./media/characters/varg/front.svg",
  11604. extra: 1108 / 1018,
  11605. bottom: 0.0375
  11606. }
  11607. },
  11608. },
  11609. [
  11610. {
  11611. name: "Normal",
  11612. height: math.unit(5, "meters")
  11613. },
  11614. {
  11615. name: "Macro",
  11616. height: math.unit(200, "meters")
  11617. },
  11618. {
  11619. name: "Megamacro",
  11620. height: math.unit(20, "kilometers")
  11621. },
  11622. {
  11623. name: "True Size",
  11624. height: math.unit(211, "km"),
  11625. default: true
  11626. },
  11627. {
  11628. name: "Gigamacro",
  11629. height: math.unit(1000, "km")
  11630. },
  11631. {
  11632. name: "Gigamacro+",
  11633. height: math.unit(8000, "km")
  11634. },
  11635. {
  11636. name: "Teramacro",
  11637. height: math.unit(1000000, "km")
  11638. },
  11639. ]
  11640. ))
  11641. characterMakers.push(() => makeCharacter(
  11642. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11643. {
  11644. front: {
  11645. height: math.unit(7 + 7 / 12, "feet"),
  11646. weight: math.unit(267, "lb"),
  11647. name: "Front",
  11648. image: {
  11649. source: "./media/characters/dayza/front.svg",
  11650. extra: 1262 / 1200,
  11651. bottom: 0.035
  11652. }
  11653. },
  11654. side: {
  11655. height: math.unit(7 + 7 / 12, "feet"),
  11656. weight: math.unit(267, "lb"),
  11657. name: "Side",
  11658. image: {
  11659. source: "./media/characters/dayza/side.svg",
  11660. extra: 1295 / 1245,
  11661. bottom: 0.05
  11662. }
  11663. },
  11664. back: {
  11665. height: math.unit(7 + 7 / 12, "feet"),
  11666. weight: math.unit(267, "lb"),
  11667. name: "Back",
  11668. image: {
  11669. source: "./media/characters/dayza/back.svg",
  11670. extra: 1241 / 1170
  11671. }
  11672. },
  11673. },
  11674. [
  11675. {
  11676. name: "Normal",
  11677. height: math.unit(7 + 7 / 12, "feet"),
  11678. default: true
  11679. },
  11680. {
  11681. name: "Macro",
  11682. height: math.unit(155, "feet")
  11683. },
  11684. ]
  11685. ))
  11686. characterMakers.push(() => makeCharacter(
  11687. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11688. {
  11689. front: {
  11690. height: math.unit(6 + 5 / 12, "feet"),
  11691. weight: math.unit(160, "lb"),
  11692. name: "Front",
  11693. image: {
  11694. source: "./media/characters/xanthos/front.svg",
  11695. extra: 1,
  11696. bottom: 0.04
  11697. }
  11698. },
  11699. back: {
  11700. height: math.unit(6 + 5 / 12, "feet"),
  11701. weight: math.unit(160, "lb"),
  11702. name: "Back",
  11703. image: {
  11704. source: "./media/characters/xanthos/back.svg",
  11705. extra: 1,
  11706. bottom: 0.03
  11707. }
  11708. },
  11709. hand: {
  11710. height: math.unit(0.928, "feet"),
  11711. name: "Hand",
  11712. image: {
  11713. source: "./media/characters/xanthos/hand.svg"
  11714. }
  11715. },
  11716. foot: {
  11717. height: math.unit(1.286, "feet"),
  11718. name: "Foot",
  11719. image: {
  11720. source: "./media/characters/xanthos/foot.svg"
  11721. }
  11722. },
  11723. },
  11724. [
  11725. {
  11726. name: "Normal",
  11727. height: math.unit(6 + 5 / 12, "feet"),
  11728. default: true
  11729. },
  11730. {
  11731. name: "Normal+",
  11732. height: math.unit(6, "meters")
  11733. },
  11734. {
  11735. name: "Macro",
  11736. height: math.unit(40, "feet")
  11737. },
  11738. {
  11739. name: "Macro+",
  11740. height: math.unit(200, "meters")
  11741. },
  11742. {
  11743. name: "Megamacro",
  11744. height: math.unit(20, "km")
  11745. },
  11746. {
  11747. name: "Megamacro+",
  11748. height: math.unit(100, "km")
  11749. },
  11750. ]
  11751. ))
  11752. characterMakers.push(() => makeCharacter(
  11753. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11754. {
  11755. front: {
  11756. height: math.unit(6 + 3 / 12, "feet"),
  11757. weight: math.unit(215, "lb"),
  11758. name: "Front",
  11759. image: {
  11760. source: "./media/characters/grynn/front.svg",
  11761. extra: 4627 / 4209,
  11762. bottom: 0.047
  11763. }
  11764. },
  11765. },
  11766. [
  11767. {
  11768. name: "Micro",
  11769. height: math.unit(6, "inches")
  11770. },
  11771. {
  11772. name: "Normal",
  11773. height: math.unit(6 + 3 / 12, "feet"),
  11774. default: true
  11775. },
  11776. {
  11777. name: "Big",
  11778. height: math.unit(104, "feet")
  11779. },
  11780. {
  11781. name: "Macro",
  11782. height: math.unit(944, "feet")
  11783. },
  11784. {
  11785. name: "Macro+",
  11786. height: math.unit(9480, "feet")
  11787. },
  11788. {
  11789. name: "Megamacro",
  11790. height: math.unit(78752, "feet")
  11791. },
  11792. {
  11793. name: "Megamacro+",
  11794. height: math.unit(630128, "feet")
  11795. },
  11796. {
  11797. name: "Megamacro++",
  11798. height: math.unit(3150695, "feet")
  11799. },
  11800. ]
  11801. ))
  11802. characterMakers.push(() => makeCharacter(
  11803. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11804. {
  11805. front: {
  11806. height: math.unit(7 + 5 / 12, "feet"),
  11807. weight: math.unit(450, "lb"),
  11808. name: "Front",
  11809. image: {
  11810. source: "./media/characters/mocha-aura/front.svg",
  11811. extra: 1907 / 1817,
  11812. bottom: 0.04
  11813. }
  11814. },
  11815. back: {
  11816. height: math.unit(7 + 5 / 12, "feet"),
  11817. weight: math.unit(450, "lb"),
  11818. name: "Back",
  11819. image: {
  11820. source: "./media/characters/mocha-aura/back.svg",
  11821. extra: 1900 / 1825,
  11822. bottom: 0.045
  11823. }
  11824. },
  11825. },
  11826. [
  11827. {
  11828. name: "Nano",
  11829. height: math.unit(1, "nm")
  11830. },
  11831. {
  11832. name: "Megamicro",
  11833. height: math.unit(1, "mm")
  11834. },
  11835. {
  11836. name: "Micro",
  11837. height: math.unit(3, "inches")
  11838. },
  11839. {
  11840. name: "Normal",
  11841. height: math.unit(7 + 5 / 12, "feet"),
  11842. default: true
  11843. },
  11844. {
  11845. name: "Macro",
  11846. height: math.unit(30, "feet")
  11847. },
  11848. {
  11849. name: "Megamacro",
  11850. height: math.unit(3500, "feet")
  11851. },
  11852. {
  11853. name: "Teramacro",
  11854. height: math.unit(500000, "miles")
  11855. },
  11856. {
  11857. name: "Petamacro",
  11858. height: math.unit(50000000000000000, "parsecs")
  11859. },
  11860. ]
  11861. ))
  11862. characterMakers.push(() => makeCharacter(
  11863. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11864. {
  11865. front: {
  11866. height: math.unit(6, "feet"),
  11867. weight: math.unit(150, "lb"),
  11868. name: "Front",
  11869. image: {
  11870. source: "./media/characters/ilisha-devya/front.svg",
  11871. extra: 1,
  11872. bottom: 0.175
  11873. }
  11874. },
  11875. back: {
  11876. height: math.unit(6, "feet"),
  11877. weight: math.unit(150, "lb"),
  11878. name: "Back",
  11879. image: {
  11880. source: "./media/characters/ilisha-devya/back.svg",
  11881. extra: 1,
  11882. bottom: 0.015
  11883. }
  11884. },
  11885. },
  11886. [
  11887. {
  11888. name: "Macro",
  11889. height: math.unit(500, "feet"),
  11890. default: true
  11891. },
  11892. {
  11893. name: "Megamacro",
  11894. height: math.unit(10, "miles")
  11895. },
  11896. {
  11897. name: "Gigamacro",
  11898. height: math.unit(100000, "miles")
  11899. },
  11900. {
  11901. name: "Examacro",
  11902. height: math.unit(1e9, "lightyears")
  11903. },
  11904. {
  11905. name: "Omniversal",
  11906. height: math.unit(1e33, "lightyears")
  11907. },
  11908. {
  11909. name: "Beyond Infinite",
  11910. height: math.unit(1e100, "lightyears")
  11911. },
  11912. ]
  11913. ))
  11914. characterMakers.push(() => makeCharacter(
  11915. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11916. {
  11917. Side: {
  11918. height: math.unit(6, "feet"),
  11919. weight: math.unit(150, "lb"),
  11920. name: "Side",
  11921. image: {
  11922. source: "./media/characters/mira/side.svg",
  11923. extra: 900 / 799,
  11924. bottom: 0.02
  11925. }
  11926. },
  11927. },
  11928. [
  11929. {
  11930. name: "Human Size",
  11931. height: math.unit(6, "feet")
  11932. },
  11933. {
  11934. name: "Macro",
  11935. height: math.unit(100, "feet"),
  11936. default: true
  11937. },
  11938. {
  11939. name: "Megamacro",
  11940. height: math.unit(10, "miles")
  11941. },
  11942. {
  11943. name: "Gigamacro",
  11944. height: math.unit(25000, "miles")
  11945. },
  11946. {
  11947. name: "Teramacro",
  11948. height: math.unit(300, "AU")
  11949. },
  11950. {
  11951. name: "Full Size",
  11952. height: math.unit(4.5e10, "lightyears")
  11953. },
  11954. ]
  11955. ))
  11956. characterMakers.push(() => makeCharacter(
  11957. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  11958. {
  11959. front: {
  11960. height: math.unit(6, "feet"),
  11961. weight: math.unit(150, "lb"),
  11962. name: "Front",
  11963. image: {
  11964. source: "./media/characters/holly/front.svg",
  11965. extra: 639 / 606
  11966. }
  11967. },
  11968. back: {
  11969. height: math.unit(6, "feet"),
  11970. weight: math.unit(150, "lb"),
  11971. name: "Back",
  11972. image: {
  11973. source: "./media/characters/holly/back.svg",
  11974. extra: 623 / 598
  11975. }
  11976. },
  11977. frontWorking: {
  11978. height: math.unit(6, "feet"),
  11979. weight: math.unit(150, "lb"),
  11980. name: "Front (Working)",
  11981. image: {
  11982. source: "./media/characters/holly/front-working.svg",
  11983. extra: 607 / 577,
  11984. bottom: 0.048
  11985. }
  11986. },
  11987. },
  11988. [
  11989. {
  11990. name: "Normal",
  11991. height: math.unit(12 + 3 / 12, "feet"),
  11992. default: true
  11993. },
  11994. ]
  11995. ))
  11996. characterMakers.push(() => makeCharacter(
  11997. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  11998. {
  11999. front: {
  12000. height: math.unit(6, "feet"),
  12001. weight: math.unit(150, "lb"),
  12002. name: "Front",
  12003. image: {
  12004. source: "./media/characters/porter/front.svg",
  12005. extra: 1,
  12006. bottom: 0.01
  12007. }
  12008. },
  12009. frontRobes: {
  12010. height: math.unit(6, "feet"),
  12011. weight: math.unit(150, "lb"),
  12012. name: "Front (Robes)",
  12013. image: {
  12014. source: "./media/characters/porter/front-robes.svg",
  12015. extra: 1.01,
  12016. bottom: 0.01
  12017. }
  12018. },
  12019. },
  12020. [
  12021. {
  12022. name: "Normal",
  12023. height: math.unit(11 + 9 / 12, "feet"),
  12024. default: true
  12025. },
  12026. ]
  12027. ))
  12028. characterMakers.push(() => makeCharacter(
  12029. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12030. {
  12031. legendary: {
  12032. height: math.unit(6, "feet"),
  12033. weight: math.unit(150, "lb"),
  12034. name: "Legendary",
  12035. image: {
  12036. source: "./media/characters/lucy/legendary.svg",
  12037. extra: 1355 / 1100,
  12038. bottom: 0.045
  12039. }
  12040. },
  12041. },
  12042. [
  12043. {
  12044. name: "Legendary",
  12045. height: math.unit(86882 * 2, "miles"),
  12046. default: true
  12047. },
  12048. ]
  12049. ))
  12050. characterMakers.push(() => makeCharacter(
  12051. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12052. {
  12053. front: {
  12054. height: math.unit(6, "feet"),
  12055. weight: math.unit(150, "lb"),
  12056. name: "Front",
  12057. image: {
  12058. source: "./media/characters/drusilla/front.svg",
  12059. extra: 678 / 635,
  12060. bottom: 0.03
  12061. }
  12062. },
  12063. back: {
  12064. height: math.unit(6, "feet"),
  12065. weight: math.unit(150, "lb"),
  12066. name: "Back",
  12067. image: {
  12068. source: "./media/characters/drusilla/back.svg",
  12069. extra: 678 / 635,
  12070. bottom: 0.005
  12071. }
  12072. },
  12073. },
  12074. [
  12075. {
  12076. name: "Macro",
  12077. height: math.unit(100, "feet")
  12078. },
  12079. {
  12080. name: "Canon Height",
  12081. height: math.unit(2000, "feet"),
  12082. default: true
  12083. },
  12084. ]
  12085. ))
  12086. characterMakers.push(() => makeCharacter(
  12087. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12088. {
  12089. front: {
  12090. height: math.unit(6, "feet"),
  12091. weight: math.unit(180, "lb"),
  12092. name: "Front",
  12093. image: {
  12094. source: "./media/characters/renard-thatch/front.svg",
  12095. extra: 2411 / 2275,
  12096. bottom: 0.01
  12097. }
  12098. },
  12099. frontPosing: {
  12100. height: math.unit(6, "feet"),
  12101. weight: math.unit(180, "lb"),
  12102. name: "Front (Posing)",
  12103. image: {
  12104. source: "./media/characters/renard-thatch/front-posing.svg",
  12105. extra: 2381 / 2261,
  12106. bottom: 0.01
  12107. }
  12108. },
  12109. back: {
  12110. height: math.unit(6, "feet"),
  12111. weight: math.unit(180, "lb"),
  12112. name: "Back",
  12113. image: {
  12114. source: "./media/characters/renard-thatch/back.svg",
  12115. extra: 2428 / 2288
  12116. }
  12117. },
  12118. },
  12119. [
  12120. {
  12121. name: "Micro",
  12122. height: math.unit(3, "inches")
  12123. },
  12124. {
  12125. name: "Default",
  12126. height: math.unit(6, "feet"),
  12127. default: true
  12128. },
  12129. {
  12130. name: "Macro",
  12131. height: math.unit(75, "feet")
  12132. },
  12133. ]
  12134. ))
  12135. characterMakers.push(() => makeCharacter(
  12136. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12137. {
  12138. front: {
  12139. height: math.unit(1450, "feet"),
  12140. weight: math.unit(1.21e6, "tons"),
  12141. name: "Front",
  12142. image: {
  12143. source: "./media/characters/sekvra/front.svg",
  12144. extra: 1,
  12145. bottom: 0.03
  12146. }
  12147. },
  12148. frontClothed: {
  12149. height: math.unit(1450, "feet"),
  12150. weight: math.unit(1.21e6, "tons"),
  12151. name: "Front (Clothed)",
  12152. image: {
  12153. source: "./media/characters/sekvra/front-clothed.svg",
  12154. extra: 1,
  12155. bottom: 0.03
  12156. }
  12157. },
  12158. side: {
  12159. height: math.unit(1450, "feet"),
  12160. weight: math.unit(1.21e6, "tons"),
  12161. name: "Side",
  12162. image: {
  12163. source: "./media/characters/sekvra/side.svg",
  12164. extra: 1,
  12165. bottom: 0.025
  12166. }
  12167. },
  12168. back: {
  12169. height: math.unit(1450, "feet"),
  12170. weight: math.unit(1.21e6, "tons"),
  12171. name: "Back",
  12172. image: {
  12173. source: "./media/characters/sekvra/back.svg",
  12174. extra: 1,
  12175. bottom: 0.005
  12176. }
  12177. },
  12178. },
  12179. [
  12180. {
  12181. name: "Macro",
  12182. height: math.unit(1450, "feet"),
  12183. default: true
  12184. },
  12185. {
  12186. name: "Megamacro",
  12187. height: math.unit(15000, "feet")
  12188. },
  12189. ]
  12190. ))
  12191. characterMakers.push(() => makeCharacter(
  12192. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12193. {
  12194. front: {
  12195. height: math.unit(6, "feet"),
  12196. weight: math.unit(150, "lb"),
  12197. name: "Front",
  12198. image: {
  12199. source: "./media/characters/carmine/front.svg",
  12200. extra: 1,
  12201. bottom: 0.035
  12202. }
  12203. },
  12204. frontArmor: {
  12205. height: math.unit(6, "feet"),
  12206. weight: math.unit(150, "lb"),
  12207. name: "Front (Armor)",
  12208. image: {
  12209. source: "./media/characters/carmine/front-armor.svg",
  12210. extra: 1,
  12211. bottom: 0.035
  12212. }
  12213. },
  12214. },
  12215. [
  12216. {
  12217. name: "Large",
  12218. height: math.unit(1, "mile")
  12219. },
  12220. {
  12221. name: "Huge",
  12222. height: math.unit(40, "miles"),
  12223. default: true
  12224. },
  12225. {
  12226. name: "Colossal",
  12227. height: math.unit(2500, "miles")
  12228. },
  12229. ]
  12230. ))
  12231. characterMakers.push(() => makeCharacter(
  12232. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12233. {
  12234. front: {
  12235. height: math.unit(6, "feet"),
  12236. weight: math.unit(150, "lb"),
  12237. name: "Front",
  12238. image: {
  12239. source: "./media/characters/elyssia/front.svg",
  12240. extra: 2201 / 2035,
  12241. bottom: 0.05
  12242. }
  12243. },
  12244. frontClothed: {
  12245. height: math.unit(6, "feet"),
  12246. weight: math.unit(150, "lb"),
  12247. name: "Front (Clothed)",
  12248. image: {
  12249. source: "./media/characters/elyssia/front-clothed.svg",
  12250. extra: 2201 / 2035,
  12251. bottom: 0.05
  12252. }
  12253. },
  12254. back: {
  12255. height: math.unit(6, "feet"),
  12256. weight: math.unit(150, "lb"),
  12257. name: "Back",
  12258. image: {
  12259. source: "./media/characters/elyssia/back.svg",
  12260. extra: 2201 / 2035,
  12261. bottom: 0.013
  12262. }
  12263. },
  12264. },
  12265. [
  12266. {
  12267. name: "Smaller",
  12268. height: math.unit(150, "feet")
  12269. },
  12270. {
  12271. name: "Standard",
  12272. height: math.unit(1400, "feet"),
  12273. default: true
  12274. },
  12275. {
  12276. name: "Distracted",
  12277. height: math.unit(15000, "feet")
  12278. },
  12279. ]
  12280. ))
  12281. characterMakers.push(() => makeCharacter(
  12282. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12283. {
  12284. front: {
  12285. height: math.unit(7 + 4 / 12, "feet"),
  12286. weight: math.unit(500, "lb"),
  12287. name: "Front",
  12288. image: {
  12289. source: "./media/characters/geno-maxwell/front.svg",
  12290. extra: 2207 / 2040,
  12291. bottom: 0.015
  12292. }
  12293. },
  12294. },
  12295. [
  12296. {
  12297. name: "Micro",
  12298. height: math.unit(3, "inches")
  12299. },
  12300. {
  12301. name: "Normal",
  12302. height: math.unit(7 + 4 / 12, "feet"),
  12303. default: true
  12304. },
  12305. {
  12306. name: "Macro",
  12307. height: math.unit(220, "feet")
  12308. },
  12309. {
  12310. name: "Megamacro",
  12311. height: math.unit(11, "miles")
  12312. },
  12313. ]
  12314. ))
  12315. characterMakers.push(() => makeCharacter(
  12316. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12317. {
  12318. front: {
  12319. height: math.unit(7 + 4 / 12, "feet"),
  12320. weight: math.unit(500, "lb"),
  12321. name: "Front",
  12322. image: {
  12323. source: "./media/characters/regena-maxwell/front.svg",
  12324. extra: 3115 / 2770,
  12325. bottom: 0.02
  12326. }
  12327. },
  12328. },
  12329. [
  12330. {
  12331. name: "Normal",
  12332. height: math.unit(7 + 4 / 12, "feet"),
  12333. default: true
  12334. },
  12335. {
  12336. name: "Macro",
  12337. height: math.unit(220, "feet")
  12338. },
  12339. {
  12340. name: "Megamacro",
  12341. height: math.unit(11, "miles")
  12342. },
  12343. ]
  12344. ))
  12345. characterMakers.push(() => makeCharacter(
  12346. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12347. {
  12348. front: {
  12349. height: math.unit(6, "feet"),
  12350. weight: math.unit(150, "lb"),
  12351. name: "Front",
  12352. image: {
  12353. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12354. extra: 860 / 690,
  12355. bottom: 0.03
  12356. }
  12357. },
  12358. },
  12359. [
  12360. {
  12361. name: "Normal",
  12362. height: math.unit(1.7, "meters"),
  12363. default: true
  12364. },
  12365. ]
  12366. ))
  12367. characterMakers.push(() => makeCharacter(
  12368. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12369. {
  12370. front: {
  12371. height: math.unit(6, "feet"),
  12372. weight: math.unit(150, "lb"),
  12373. name: "Front",
  12374. image: {
  12375. source: "./media/characters/quilly/front.svg",
  12376. extra: 890 / 776
  12377. }
  12378. },
  12379. },
  12380. [
  12381. {
  12382. name: "Gigamacro",
  12383. height: math.unit(404090, "miles"),
  12384. default: true
  12385. },
  12386. ]
  12387. ))
  12388. characterMakers.push(() => makeCharacter(
  12389. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12390. {
  12391. front: {
  12392. height: math.unit(7 + 8 / 12, "feet"),
  12393. weight: math.unit(350, "lb"),
  12394. name: "Front",
  12395. image: {
  12396. source: "./media/characters/tempest/front.svg",
  12397. extra: 1175 / 1086,
  12398. bottom: 0.02
  12399. }
  12400. },
  12401. },
  12402. [
  12403. {
  12404. name: "Normal",
  12405. height: math.unit(7 + 8 / 12, "feet"),
  12406. default: true
  12407. },
  12408. ]
  12409. ))
  12410. characterMakers.push(() => makeCharacter(
  12411. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12412. {
  12413. side: {
  12414. height: math.unit(4 + 5 / 12, "feet"),
  12415. weight: math.unit(80, "lb"),
  12416. name: "Side",
  12417. image: {
  12418. source: "./media/characters/rodger/side.svg",
  12419. extra: 1235 / 1118
  12420. }
  12421. },
  12422. },
  12423. [
  12424. {
  12425. name: "Micro",
  12426. height: math.unit(1, "inch")
  12427. },
  12428. {
  12429. name: "Normal",
  12430. height: math.unit(4 + 5 / 12, "feet"),
  12431. default: true
  12432. },
  12433. {
  12434. name: "Macro",
  12435. height: math.unit(120, "feet")
  12436. },
  12437. ]
  12438. ))
  12439. characterMakers.push(() => makeCharacter(
  12440. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12441. {
  12442. front: {
  12443. height: math.unit(6, "feet"),
  12444. weight: math.unit(150, "lb"),
  12445. name: "Front",
  12446. image: {
  12447. source: "./media/characters/danyel/front.svg",
  12448. extra: 1185 / 1123,
  12449. bottom: 0.05
  12450. }
  12451. },
  12452. },
  12453. [
  12454. {
  12455. name: "Shrunken",
  12456. height: math.unit(0.5, "mm")
  12457. },
  12458. {
  12459. name: "Micro",
  12460. height: math.unit(1, "mm"),
  12461. default: true
  12462. },
  12463. {
  12464. name: "Upsized",
  12465. height: math.unit(5 + 5 / 12, "feet")
  12466. },
  12467. ]
  12468. ))
  12469. characterMakers.push(() => makeCharacter(
  12470. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12471. {
  12472. front: {
  12473. height: math.unit(5 + 6 / 12, "feet"),
  12474. weight: math.unit(200, "lb"),
  12475. name: "Front",
  12476. image: {
  12477. source: "./media/characters/vivian-bijoux/front.svg",
  12478. extra: 1,
  12479. bottom: 0.072
  12480. }
  12481. },
  12482. },
  12483. [
  12484. {
  12485. name: "Normal",
  12486. height: math.unit(5 + 6 / 12, "feet"),
  12487. default: true
  12488. },
  12489. {
  12490. name: "Bad Dream",
  12491. height: math.unit(500, "feet")
  12492. },
  12493. {
  12494. name: "Nightmare",
  12495. height: math.unit(500, "miles")
  12496. },
  12497. ]
  12498. ))
  12499. characterMakers.push(() => makeCharacter(
  12500. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12501. {
  12502. front: {
  12503. height: math.unit(6 + 1 / 12, "feet"),
  12504. weight: math.unit(260, "lb"),
  12505. name: "Front",
  12506. image: {
  12507. source: "./media/characters/zeta/front.svg",
  12508. extra: 1968 / 1889,
  12509. bottom: 0.06
  12510. }
  12511. },
  12512. back: {
  12513. height: math.unit(6 + 1 / 12, "feet"),
  12514. weight: math.unit(260, "lb"),
  12515. name: "Back",
  12516. image: {
  12517. source: "./media/characters/zeta/back.svg",
  12518. extra: 1944 / 1858,
  12519. bottom: 0.03
  12520. }
  12521. },
  12522. hand: {
  12523. height: math.unit(1.112, "feet"),
  12524. name: "Hand",
  12525. image: {
  12526. source: "./media/characters/zeta/hand.svg"
  12527. }
  12528. },
  12529. foot: {
  12530. height: math.unit(1.48, "feet"),
  12531. name: "Foot",
  12532. image: {
  12533. source: "./media/characters/zeta/foot.svg"
  12534. }
  12535. },
  12536. },
  12537. [
  12538. {
  12539. name: "Micro",
  12540. height: math.unit(6, "inches")
  12541. },
  12542. {
  12543. name: "Normal",
  12544. height: math.unit(6 + 1 / 12, "feet"),
  12545. default: true
  12546. },
  12547. {
  12548. name: "Macro",
  12549. height: math.unit(20, "feet")
  12550. },
  12551. ]
  12552. ))
  12553. characterMakers.push(() => makeCharacter(
  12554. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12555. {
  12556. front: {
  12557. height: math.unit(6, "feet"),
  12558. weight: math.unit(150, "lb"),
  12559. name: "Front",
  12560. image: {
  12561. source: "./media/characters/jamie-larsen/front.svg",
  12562. extra: 962 / 933,
  12563. bottom: 0.02
  12564. }
  12565. },
  12566. back: {
  12567. height: math.unit(6, "feet"),
  12568. weight: math.unit(150, "lb"),
  12569. name: "Back",
  12570. image: {
  12571. source: "./media/characters/jamie-larsen/back.svg",
  12572. extra: 997 / 946
  12573. }
  12574. },
  12575. },
  12576. [
  12577. {
  12578. name: "Macro",
  12579. height: math.unit(28 + 7 / 12, "feet"),
  12580. default: true
  12581. },
  12582. {
  12583. name: "Macro+",
  12584. height: math.unit(180, "feet")
  12585. },
  12586. {
  12587. name: "Megamacro",
  12588. height: math.unit(10, "miles")
  12589. },
  12590. {
  12591. name: "Gigamacro",
  12592. height: math.unit(200000, "miles")
  12593. },
  12594. ]
  12595. ))
  12596. characterMakers.push(() => makeCharacter(
  12597. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12598. {
  12599. front: {
  12600. height: math.unit(6, "feet"),
  12601. weight: math.unit(120, "lb"),
  12602. name: "Front",
  12603. image: {
  12604. source: "./media/characters/vance/front.svg",
  12605. extra: 1980 / 1890,
  12606. bottom: 0.09
  12607. }
  12608. },
  12609. back: {
  12610. height: math.unit(6, "feet"),
  12611. weight: math.unit(120, "lb"),
  12612. name: "Back",
  12613. image: {
  12614. source: "./media/characters/vance/back.svg",
  12615. extra: 2081 / 1994,
  12616. bottom: 0.014
  12617. }
  12618. },
  12619. hand: {
  12620. height: math.unit(0.88, "feet"),
  12621. name: "Hand",
  12622. image: {
  12623. source: "./media/characters/vance/hand.svg"
  12624. }
  12625. },
  12626. foot: {
  12627. height: math.unit(0.64, "feet"),
  12628. name: "Foot",
  12629. image: {
  12630. source: "./media/characters/vance/foot.svg"
  12631. }
  12632. },
  12633. },
  12634. [
  12635. {
  12636. name: "Small",
  12637. height: math.unit(90, "feet"),
  12638. default: true
  12639. },
  12640. {
  12641. name: "Macro",
  12642. height: math.unit(100, "meters")
  12643. },
  12644. {
  12645. name: "Megamacro",
  12646. height: math.unit(15, "miles")
  12647. },
  12648. ]
  12649. ))
  12650. characterMakers.push(() => makeCharacter(
  12651. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12652. {
  12653. front: {
  12654. height: math.unit(6, "feet"),
  12655. weight: math.unit(180, "lb"),
  12656. name: "Front",
  12657. image: {
  12658. source: "./media/characters/xochitl/front.svg",
  12659. extra: 2297 / 2261,
  12660. bottom: 0.065
  12661. }
  12662. },
  12663. back: {
  12664. height: math.unit(6, "feet"),
  12665. weight: math.unit(180, "lb"),
  12666. name: "Back",
  12667. image: {
  12668. source: "./media/characters/xochitl/back.svg",
  12669. extra: 2386 / 2354,
  12670. bottom: 0.01
  12671. }
  12672. },
  12673. foot: {
  12674. height: math.unit(6 / 5 * 1.15, "feet"),
  12675. weight: math.unit(150, "lb"),
  12676. name: "Foot",
  12677. image: {
  12678. source: "./media/characters/xochitl/foot.svg"
  12679. }
  12680. },
  12681. },
  12682. [
  12683. {
  12684. name: "Macro",
  12685. height: math.unit(80, "feet")
  12686. },
  12687. {
  12688. name: "Macro+",
  12689. height: math.unit(400, "feet"),
  12690. default: true
  12691. },
  12692. {
  12693. name: "Gigamacro",
  12694. height: math.unit(80000, "miles")
  12695. },
  12696. {
  12697. name: "Gigamacro+",
  12698. height: math.unit(400000, "miles")
  12699. },
  12700. {
  12701. name: "Teramacro",
  12702. height: math.unit(300, "AU")
  12703. },
  12704. ]
  12705. ))
  12706. characterMakers.push(() => makeCharacter(
  12707. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12708. {
  12709. front: {
  12710. height: math.unit(6, "feet"),
  12711. weight: math.unit(150, "lb"),
  12712. name: "Front",
  12713. image: {
  12714. source: "./media/characters/vincent/front.svg",
  12715. extra: 1130 / 1080,
  12716. bottom: 0.055
  12717. }
  12718. },
  12719. beak: {
  12720. height: math.unit(6 * 0.1, "feet"),
  12721. name: "Beak",
  12722. image: {
  12723. source: "./media/characters/vincent/beak.svg"
  12724. }
  12725. },
  12726. hand: {
  12727. height: math.unit(6 * 0.85, "feet"),
  12728. weight: math.unit(150, "lb"),
  12729. name: "Hand",
  12730. image: {
  12731. source: "./media/characters/vincent/hand.svg"
  12732. }
  12733. },
  12734. foot: {
  12735. height: math.unit(6 * 0.19, "feet"),
  12736. weight: math.unit(150, "lb"),
  12737. name: "Foot",
  12738. image: {
  12739. source: "./media/characters/vincent/foot.svg"
  12740. }
  12741. },
  12742. },
  12743. [
  12744. {
  12745. name: "Base",
  12746. height: math.unit(6 + 5 / 12, "feet"),
  12747. default: true
  12748. },
  12749. {
  12750. name: "Macro",
  12751. height: math.unit(300, "feet")
  12752. },
  12753. {
  12754. name: "Megamacro",
  12755. height: math.unit(2, "miles")
  12756. },
  12757. {
  12758. name: "Gigamacro",
  12759. height: math.unit(1000, "miles")
  12760. },
  12761. ]
  12762. ))
  12763. characterMakers.push(() => makeCharacter(
  12764. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12765. {
  12766. front: {
  12767. height: math.unit(6 + 2 / 12, "feet"),
  12768. weight: math.unit(265, "lb"),
  12769. name: "Front",
  12770. image: {
  12771. source: "./media/characters/jay/front.svg",
  12772. extra: 1510 / 1430,
  12773. bottom: 0.042
  12774. }
  12775. },
  12776. back: {
  12777. height: math.unit(6 + 2 / 12, "feet"),
  12778. weight: math.unit(265, "lb"),
  12779. name: "Back",
  12780. image: {
  12781. source: "./media/characters/jay/back.svg",
  12782. extra: 1510 / 1430,
  12783. bottom: 0.025
  12784. }
  12785. },
  12786. clothed: {
  12787. height: math.unit(6 + 2 / 12, "feet"),
  12788. weight: math.unit(265, "lb"),
  12789. name: "Front (Clothed)",
  12790. image: {
  12791. source: "./media/characters/jay/clothed.svg",
  12792. extra: 744 / 699,
  12793. bottom: 0.043
  12794. }
  12795. },
  12796. head: {
  12797. height: math.unit(1.772, "feet"),
  12798. name: "Head",
  12799. image: {
  12800. source: "./media/characters/jay/head.svg"
  12801. }
  12802. },
  12803. sizeRay: {
  12804. height: math.unit(1.331, "feet"),
  12805. name: "Size Ray",
  12806. image: {
  12807. source: "./media/characters/jay/size-ray.svg"
  12808. }
  12809. },
  12810. },
  12811. [
  12812. {
  12813. name: "Micro",
  12814. height: math.unit(1, "inch")
  12815. },
  12816. {
  12817. name: "Normal",
  12818. height: math.unit(6 + 2 / 12, "feet"),
  12819. default: true
  12820. },
  12821. {
  12822. name: "Macro",
  12823. height: math.unit(1, "mile")
  12824. },
  12825. {
  12826. name: "Megamacro",
  12827. height: math.unit(100, "miles")
  12828. },
  12829. ]
  12830. ))
  12831. characterMakers.push(() => makeCharacter(
  12832. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12833. {
  12834. front: {
  12835. height: math.unit(2, "meters"),
  12836. weight: math.unit(500, "kg"),
  12837. name: "Front",
  12838. image: {
  12839. source: "./media/characters/coatl/front.svg",
  12840. extra: 3948 / 3500,
  12841. bottom: 0.082
  12842. }
  12843. },
  12844. },
  12845. [
  12846. {
  12847. name: "Normal",
  12848. height: math.unit(4, "meters")
  12849. },
  12850. {
  12851. name: "Macro",
  12852. height: math.unit(100, "meters"),
  12853. default: true
  12854. },
  12855. {
  12856. name: "Macro+",
  12857. height: math.unit(300, "meters")
  12858. },
  12859. {
  12860. name: "Megamacro",
  12861. height: math.unit(3, "gigameters")
  12862. },
  12863. {
  12864. name: "Megamacro+",
  12865. height: math.unit(300, "terameters")
  12866. },
  12867. {
  12868. name: "Megamacro++",
  12869. height: math.unit(3, "lightyears")
  12870. },
  12871. ]
  12872. ))
  12873. characterMakers.push(() => makeCharacter(
  12874. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12875. {
  12876. front: {
  12877. height: math.unit(6, "feet"),
  12878. weight: math.unit(50, "kg"),
  12879. name: "front",
  12880. image: {
  12881. source: "./media/characters/shiroryu/front.svg",
  12882. extra: 1990 / 1935
  12883. }
  12884. },
  12885. },
  12886. [
  12887. {
  12888. name: "Mortal Mingling",
  12889. height: math.unit(3, "meters")
  12890. },
  12891. {
  12892. name: "Kaiju-ish",
  12893. height: math.unit(250, "meters")
  12894. },
  12895. {
  12896. name: "Somewhat Godly",
  12897. height: math.unit(400, "km"),
  12898. default: true
  12899. },
  12900. {
  12901. name: "Planetary",
  12902. height: math.unit(300, "megameters")
  12903. },
  12904. {
  12905. name: "Galaxy-dwarfing",
  12906. height: math.unit(450, "kiloparsecs")
  12907. },
  12908. {
  12909. name: "Universe Eater",
  12910. height: math.unit(150, "gigaparsecs")
  12911. },
  12912. {
  12913. name: "Almost Immeasurable",
  12914. height: math.unit(1.3e266, "yottaparsecs")
  12915. },
  12916. ]
  12917. ))
  12918. characterMakers.push(() => makeCharacter(
  12919. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12920. {
  12921. front: {
  12922. height: math.unit(6, "feet"),
  12923. weight: math.unit(150, "lb"),
  12924. name: "Front",
  12925. image: {
  12926. source: "./media/characters/umeko/front.svg",
  12927. extra: 1,
  12928. bottom: 0.019
  12929. }
  12930. },
  12931. frontArmored: {
  12932. height: math.unit(6, "feet"),
  12933. weight: math.unit(150, "lb"),
  12934. name: "Front (Armored)",
  12935. image: {
  12936. source: "./media/characters/umeko/front-armored.svg",
  12937. extra: 1,
  12938. bottom: 0.021
  12939. }
  12940. },
  12941. },
  12942. [
  12943. {
  12944. name: "Macro",
  12945. height: math.unit(220, "feet"),
  12946. default: true
  12947. },
  12948. {
  12949. name: "Guardian Dragon",
  12950. height: math.unit(50, "miles")
  12951. },
  12952. {
  12953. name: "Cosmic",
  12954. height: math.unit(800000, "miles")
  12955. },
  12956. ]
  12957. ))
  12958. characterMakers.push(() => makeCharacter(
  12959. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  12960. {
  12961. front: {
  12962. height: math.unit(6, "feet"),
  12963. weight: math.unit(150, "lb"),
  12964. name: "Front",
  12965. image: {
  12966. source: "./media/characters/cassidy/front.svg",
  12967. extra: 1,
  12968. bottom: 0.043
  12969. }
  12970. },
  12971. },
  12972. [
  12973. {
  12974. name: "Canon Height",
  12975. height: math.unit(120, "feet"),
  12976. default: true
  12977. },
  12978. {
  12979. name: "Macro+",
  12980. height: math.unit(400, "feet")
  12981. },
  12982. {
  12983. name: "Macro++",
  12984. height: math.unit(4000, "feet")
  12985. },
  12986. {
  12987. name: "Megamacro",
  12988. height: math.unit(3, "miles")
  12989. },
  12990. ]
  12991. ))
  12992. characterMakers.push(() => makeCharacter(
  12993. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  12994. {
  12995. front: {
  12996. height: math.unit(6, "feet"),
  12997. weight: math.unit(150, "lb"),
  12998. name: "Front",
  12999. image: {
  13000. source: "./media/characters/isaac/front.svg",
  13001. extra: 896 / 815,
  13002. bottom: 0.11
  13003. }
  13004. },
  13005. },
  13006. [
  13007. {
  13008. name: "Human Size",
  13009. height: math.unit(8, "feet"),
  13010. default: true
  13011. },
  13012. {
  13013. name: "Macro",
  13014. height: math.unit(400, "feet")
  13015. },
  13016. {
  13017. name: "Megamacro",
  13018. height: math.unit(50, "miles")
  13019. },
  13020. {
  13021. name: "Canon Height",
  13022. height: math.unit(200, "AU")
  13023. },
  13024. ]
  13025. ))
  13026. characterMakers.push(() => makeCharacter(
  13027. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13028. {
  13029. front: {
  13030. height: math.unit(6, "feet"),
  13031. weight: math.unit(72, "kg"),
  13032. name: "Front",
  13033. image: {
  13034. source: "./media/characters/sleekit/front.svg",
  13035. extra: 4693 / 4487,
  13036. bottom: 0.012
  13037. }
  13038. },
  13039. },
  13040. [
  13041. {
  13042. name: "Minimum Height",
  13043. height: math.unit(10, "meters")
  13044. },
  13045. {
  13046. name: "Smaller",
  13047. height: math.unit(25, "meters")
  13048. },
  13049. {
  13050. name: "Larger",
  13051. height: math.unit(38, "meters"),
  13052. default: true
  13053. },
  13054. {
  13055. name: "Maximum height",
  13056. height: math.unit(100, "meters")
  13057. },
  13058. ]
  13059. ))
  13060. characterMakers.push(() => makeCharacter(
  13061. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13062. {
  13063. front: {
  13064. height: math.unit(6, "feet"),
  13065. weight: math.unit(150, "lb"),
  13066. name: "Front",
  13067. image: {
  13068. source: "./media/characters/nillia/front.svg",
  13069. extra: 2195 / 2037,
  13070. bottom: 0.005
  13071. }
  13072. },
  13073. back: {
  13074. height: math.unit(6, "feet"),
  13075. weight: math.unit(150, "lb"),
  13076. name: "Back",
  13077. image: {
  13078. source: "./media/characters/nillia/back.svg",
  13079. extra: 2195 / 2037,
  13080. bottom: 0.005
  13081. }
  13082. },
  13083. },
  13084. [
  13085. {
  13086. name: "Canon Height",
  13087. height: math.unit(489, "feet"),
  13088. default: true
  13089. }
  13090. ]
  13091. ))
  13092. characterMakers.push(() => makeCharacter(
  13093. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13094. {
  13095. front: {
  13096. height: math.unit(6, "feet"),
  13097. weight: math.unit(150, "lb"),
  13098. name: "Front",
  13099. image: {
  13100. source: "./media/characters/mesmyriza/front.svg",
  13101. extra: 2067 / 1784,
  13102. bottom: 0.035
  13103. }
  13104. },
  13105. foot: {
  13106. height: math.unit(6 / (250 / 35), "feet"),
  13107. name: "Foot",
  13108. image: {
  13109. source: "./media/characters/mesmyriza/foot.svg"
  13110. }
  13111. },
  13112. },
  13113. [
  13114. {
  13115. name: "Macro",
  13116. height: math.unit(457, "meters"),
  13117. default: true
  13118. },
  13119. {
  13120. name: "Megamacro",
  13121. height: math.unit(8, "megameters")
  13122. },
  13123. ]
  13124. ))
  13125. characterMakers.push(() => makeCharacter(
  13126. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13127. {
  13128. front: {
  13129. height: math.unit(6, "feet"),
  13130. weight: math.unit(250, "lb"),
  13131. name: "Front",
  13132. image: {
  13133. source: "./media/characters/saudade/front.svg",
  13134. extra: 1172 / 1139,
  13135. bottom: 0.035
  13136. }
  13137. },
  13138. },
  13139. [
  13140. {
  13141. name: "Micro",
  13142. height: math.unit(3, "inches")
  13143. },
  13144. {
  13145. name: "Normal",
  13146. height: math.unit(6, "feet"),
  13147. default: true
  13148. },
  13149. {
  13150. name: "Macro",
  13151. height: math.unit(50, "feet")
  13152. },
  13153. {
  13154. name: "Megamacro",
  13155. height: math.unit(2800, "feet")
  13156. },
  13157. ]
  13158. ))
  13159. characterMakers.push(() => makeCharacter(
  13160. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13161. {
  13162. front: {
  13163. height: math.unit(5 + 4 / 12, "feet"),
  13164. weight: math.unit(100, "lb"),
  13165. name: "Front",
  13166. image: {
  13167. source: "./media/characters/keireer/front.svg",
  13168. extra: 716 / 666,
  13169. bottom: 0.05
  13170. }
  13171. },
  13172. },
  13173. [
  13174. {
  13175. name: "Normal",
  13176. height: math.unit(5 + 4 / 12, "feet"),
  13177. default: true
  13178. },
  13179. ]
  13180. ))
  13181. characterMakers.push(() => makeCharacter(
  13182. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13183. {
  13184. front: {
  13185. height: math.unit(6, "feet"),
  13186. weight: math.unit(90, "kg"),
  13187. name: "Front",
  13188. image: {
  13189. source: "./media/characters/mirja/front.svg",
  13190. extra: 1789 / 1683,
  13191. bottom: 0.05
  13192. }
  13193. },
  13194. frontDressed: {
  13195. height: math.unit(6, "feet"),
  13196. weight: math.unit(90, "lb"),
  13197. name: "Front (Dressed)",
  13198. image: {
  13199. source: "./media/characters/mirja/front-dressed.svg",
  13200. extra: 1789 / 1683,
  13201. bottom: 0.05
  13202. }
  13203. },
  13204. back: {
  13205. height: math.unit(6, "feet"),
  13206. weight: math.unit(90, "lb"),
  13207. name: "Back",
  13208. image: {
  13209. source: "./media/characters/mirja/back.svg",
  13210. extra: 953 / 917,
  13211. bottom: 0.017
  13212. }
  13213. },
  13214. },
  13215. [
  13216. {
  13217. name: "\"Incognito\"",
  13218. height: math.unit(3, "meters")
  13219. },
  13220. {
  13221. name: "Strolling Size",
  13222. height: math.unit(15, "km")
  13223. },
  13224. {
  13225. name: "Larger Strolling Size",
  13226. height: math.unit(400, "km")
  13227. },
  13228. {
  13229. name: "Preferred Size",
  13230. height: math.unit(5000, "km")
  13231. },
  13232. {
  13233. name: "True Size",
  13234. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13235. default: true
  13236. },
  13237. ]
  13238. ))
  13239. characterMakers.push(() => makeCharacter(
  13240. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13241. {
  13242. front: {
  13243. height: math.unit(15, "feet"),
  13244. weight: math.unit(880, "kg"),
  13245. name: "Front",
  13246. image: {
  13247. source: "./media/characters/nightraver/front.svg",
  13248. extra: 2444 / 2160,
  13249. bottom: 0.027
  13250. }
  13251. },
  13252. back: {
  13253. height: math.unit(15, "feet"),
  13254. weight: math.unit(880, "kg"),
  13255. name: "Back",
  13256. image: {
  13257. source: "./media/characters/nightraver/back.svg",
  13258. extra: 2309 / 2180,
  13259. bottom: 0.005
  13260. }
  13261. },
  13262. sole: {
  13263. height: math.unit(2.878, "feet"),
  13264. name: "Sole",
  13265. image: {
  13266. source: "./media/characters/nightraver/sole.svg"
  13267. }
  13268. },
  13269. foot: {
  13270. height: math.unit(2.285, "feet"),
  13271. name: "Foot",
  13272. image: {
  13273. source: "./media/characters/nightraver/foot.svg"
  13274. }
  13275. },
  13276. maw: {
  13277. height: math.unit(2.67, "feet"),
  13278. name: "Maw",
  13279. image: {
  13280. source: "./media/characters/nightraver/maw.svg"
  13281. }
  13282. },
  13283. },
  13284. [
  13285. {
  13286. name: "Micro",
  13287. height: math.unit(1, "cm")
  13288. },
  13289. {
  13290. name: "Normal",
  13291. height: math.unit(15, "feet"),
  13292. default: true
  13293. },
  13294. {
  13295. name: "Macro",
  13296. height: math.unit(300, "feet")
  13297. },
  13298. {
  13299. name: "Megamacro",
  13300. height: math.unit(300, "miles")
  13301. },
  13302. {
  13303. name: "Gigamacro",
  13304. height: math.unit(10000, "miles")
  13305. },
  13306. ]
  13307. ))
  13308. characterMakers.push(() => makeCharacter(
  13309. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13310. {
  13311. side: {
  13312. height: math.unit(2, "inches"),
  13313. weight: math.unit(5, "grams"),
  13314. name: "Side",
  13315. image: {
  13316. source: "./media/characters/arc/side.svg"
  13317. }
  13318. },
  13319. },
  13320. [
  13321. {
  13322. name: "Micro",
  13323. height: math.unit(2, "inches"),
  13324. default: true
  13325. },
  13326. ]
  13327. ))
  13328. characterMakers.push(() => makeCharacter(
  13329. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13330. {
  13331. front: {
  13332. height: math.unit(1.1938, "meters"),
  13333. weight: math.unit(54, "kg"),
  13334. name: "Front",
  13335. image: {
  13336. source: "./media/characters/nebula-shahar/front.svg",
  13337. extra: 1642 / 1436,
  13338. bottom: 0.06
  13339. }
  13340. },
  13341. },
  13342. [
  13343. {
  13344. name: "Megamicro",
  13345. height: math.unit(0.3, "mm")
  13346. },
  13347. {
  13348. name: "Micro",
  13349. height: math.unit(3, "cm")
  13350. },
  13351. {
  13352. name: "Normal",
  13353. height: math.unit(138, "cm"),
  13354. default: true
  13355. },
  13356. {
  13357. name: "Macro",
  13358. height: math.unit(30, "m")
  13359. },
  13360. ]
  13361. ))
  13362. characterMakers.push(() => makeCharacter(
  13363. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13364. {
  13365. front: {
  13366. height: math.unit(5.24, "feet"),
  13367. weight: math.unit(150, "lb"),
  13368. name: "Front",
  13369. image: {
  13370. source: "./media/characters/shayla/front.svg",
  13371. extra: 1512 / 1414,
  13372. bottom: 0.01
  13373. }
  13374. },
  13375. back: {
  13376. height: math.unit(5.24, "feet"),
  13377. weight: math.unit(150, "lb"),
  13378. name: "Back",
  13379. image: {
  13380. source: "./media/characters/shayla/back.svg",
  13381. extra: 1512 / 1414
  13382. }
  13383. },
  13384. hand: {
  13385. height: math.unit(0.7781496062992126, "feet"),
  13386. name: "Hand",
  13387. image: {
  13388. source: "./media/characters/shayla/hand.svg"
  13389. }
  13390. },
  13391. foot: {
  13392. height: math.unit(1.4206036745406823, "feet"),
  13393. name: "Foot",
  13394. image: {
  13395. source: "./media/characters/shayla/foot.svg"
  13396. }
  13397. },
  13398. },
  13399. [
  13400. {
  13401. name: "Micro",
  13402. height: math.unit(0.32, "feet")
  13403. },
  13404. {
  13405. name: "Normal",
  13406. height: math.unit(5.24, "feet"),
  13407. default: true
  13408. },
  13409. {
  13410. name: "Macro",
  13411. height: math.unit(492.12, "feet")
  13412. },
  13413. {
  13414. name: "Megamacro",
  13415. height: math.unit(186.41, "miles")
  13416. },
  13417. ]
  13418. ))
  13419. characterMakers.push(() => makeCharacter(
  13420. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13421. {
  13422. front: {
  13423. height: math.unit(2.2, "m"),
  13424. weight: math.unit(120, "kg"),
  13425. name: "Front",
  13426. image: {
  13427. source: "./media/characters/pia-jr/front.svg",
  13428. extra: 1000 / 970,
  13429. bottom: 0.035
  13430. }
  13431. },
  13432. hand: {
  13433. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13434. name: "Hand",
  13435. image: {
  13436. source: "./media/characters/pia-jr/hand.svg"
  13437. }
  13438. },
  13439. paw: {
  13440. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13441. name: "Paw",
  13442. image: {
  13443. source: "./media/characters/pia-jr/paw.svg"
  13444. }
  13445. },
  13446. },
  13447. [
  13448. {
  13449. name: "Micro",
  13450. height: math.unit(1.2, "cm")
  13451. },
  13452. {
  13453. name: "Normal",
  13454. height: math.unit(2.2, "m"),
  13455. default: true
  13456. },
  13457. {
  13458. name: "Macro",
  13459. height: math.unit(180, "m")
  13460. },
  13461. {
  13462. name: "Megamacro",
  13463. height: math.unit(420, "km")
  13464. },
  13465. ]
  13466. ))
  13467. characterMakers.push(() => makeCharacter(
  13468. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13469. {
  13470. front: {
  13471. height: math.unit(2, "m"),
  13472. weight: math.unit(115, "kg"),
  13473. name: "Front",
  13474. image: {
  13475. source: "./media/characters/pia-sr/front.svg",
  13476. extra: 760 / 730,
  13477. bottom: 0.015
  13478. }
  13479. },
  13480. back: {
  13481. height: math.unit(2, "m"),
  13482. weight: math.unit(115, "kg"),
  13483. name: "Back",
  13484. image: {
  13485. source: "./media/characters/pia-sr/back.svg",
  13486. extra: 760 / 730,
  13487. bottom: 0.01
  13488. }
  13489. },
  13490. hand: {
  13491. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13492. name: "Hand",
  13493. image: {
  13494. source: "./media/characters/pia-sr/hand.svg"
  13495. }
  13496. },
  13497. foot: {
  13498. height: math.unit(1.83, "feet"),
  13499. name: "Foot",
  13500. image: {
  13501. source: "./media/characters/pia-sr/foot.svg"
  13502. }
  13503. },
  13504. },
  13505. [
  13506. {
  13507. name: "Micro",
  13508. height: math.unit(88, "mm")
  13509. },
  13510. {
  13511. name: "Normal",
  13512. height: math.unit(2, "m"),
  13513. default: true
  13514. },
  13515. {
  13516. name: "Macro",
  13517. height: math.unit(200, "m")
  13518. },
  13519. {
  13520. name: "Megamacro",
  13521. height: math.unit(420, "km")
  13522. },
  13523. ]
  13524. ))
  13525. characterMakers.push(() => makeCharacter(
  13526. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13527. {
  13528. front: {
  13529. height: math.unit(8 + 2 / 12, "feet"),
  13530. weight: math.unit(300, "lb"),
  13531. name: "Front",
  13532. image: {
  13533. source: "./media/characters/kibibyte/front.svg",
  13534. extra: 2221 / 2098,
  13535. bottom: 0.04
  13536. }
  13537. },
  13538. },
  13539. [
  13540. {
  13541. name: "Normal",
  13542. height: math.unit(8 + 2 / 12, "feet"),
  13543. default: true
  13544. },
  13545. {
  13546. name: "Socialable Macro",
  13547. height: math.unit(50, "feet")
  13548. },
  13549. {
  13550. name: "Macro",
  13551. height: math.unit(300, "feet")
  13552. },
  13553. {
  13554. name: "Megamacro",
  13555. height: math.unit(500, "miles")
  13556. },
  13557. ]
  13558. ))
  13559. characterMakers.push(() => makeCharacter(
  13560. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13561. {
  13562. front: {
  13563. height: math.unit(6, "feet"),
  13564. weight: math.unit(150, "lb"),
  13565. name: "Front",
  13566. image: {
  13567. source: "./media/characters/felix/front.svg",
  13568. extra: 762 / 722,
  13569. bottom: 0.02
  13570. }
  13571. },
  13572. frontClothed: {
  13573. height: math.unit(6, "feet"),
  13574. weight: math.unit(150, "lb"),
  13575. name: "Front (Clothed)",
  13576. image: {
  13577. source: "./media/characters/felix/front-clothed.svg",
  13578. extra: 762 / 722,
  13579. bottom: 0.02
  13580. }
  13581. },
  13582. },
  13583. [
  13584. {
  13585. name: "Normal",
  13586. height: math.unit(6 + 8 / 12, "feet"),
  13587. default: true
  13588. },
  13589. {
  13590. name: "Macro",
  13591. height: math.unit(2600, "feet")
  13592. },
  13593. {
  13594. name: "Megamacro",
  13595. height: math.unit(450, "miles")
  13596. },
  13597. ]
  13598. ))
  13599. characterMakers.push(() => makeCharacter(
  13600. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13601. {
  13602. front: {
  13603. height: math.unit(6 + 1 / 12, "feet"),
  13604. weight: math.unit(250, "lb"),
  13605. name: "Front",
  13606. image: {
  13607. source: "./media/characters/tobo/front.svg",
  13608. extra: 608 / 586,
  13609. bottom: 0.023
  13610. }
  13611. },
  13612. back: {
  13613. height: math.unit(6 + 1 / 12, "feet"),
  13614. weight: math.unit(250, "lb"),
  13615. name: "Back",
  13616. image: {
  13617. source: "./media/characters/tobo/back.svg",
  13618. extra: 608 / 586
  13619. }
  13620. },
  13621. },
  13622. [
  13623. {
  13624. name: "Nano",
  13625. height: math.unit(2, "nm")
  13626. },
  13627. {
  13628. name: "Megamicro",
  13629. height: math.unit(0.1, "mm")
  13630. },
  13631. {
  13632. name: "Micro",
  13633. height: math.unit(1, "inch"),
  13634. default: true
  13635. },
  13636. {
  13637. name: "Human-sized",
  13638. height: math.unit(6 + 1 / 12, "feet")
  13639. },
  13640. {
  13641. name: "Macro",
  13642. height: math.unit(250, "feet")
  13643. },
  13644. {
  13645. name: "Megamacro",
  13646. height: math.unit(75, "miles")
  13647. },
  13648. {
  13649. name: "Texas-sized",
  13650. height: math.unit(750, "miles")
  13651. },
  13652. {
  13653. name: "Teramacro",
  13654. height: math.unit(50000, "miles")
  13655. },
  13656. ]
  13657. ))
  13658. characterMakers.push(() => makeCharacter(
  13659. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13660. {
  13661. front: {
  13662. height: math.unit(6, "feet"),
  13663. weight: math.unit(269, "lb"),
  13664. name: "Front",
  13665. image: {
  13666. source: "./media/characters/danny-kapowsky/front.svg",
  13667. extra: 766 / 736,
  13668. bottom: 0.044
  13669. }
  13670. },
  13671. back: {
  13672. height: math.unit(6, "feet"),
  13673. weight: math.unit(269, "lb"),
  13674. name: "Back",
  13675. image: {
  13676. source: "./media/characters/danny-kapowsky/back.svg",
  13677. extra: 797 / 760,
  13678. bottom: 0.025
  13679. }
  13680. },
  13681. },
  13682. [
  13683. {
  13684. name: "Macro",
  13685. height: math.unit(150, "feet"),
  13686. default: true
  13687. },
  13688. {
  13689. name: "Macro+",
  13690. height: math.unit(200, "feet")
  13691. },
  13692. {
  13693. name: "Macro++",
  13694. height: math.unit(300, "feet")
  13695. },
  13696. {
  13697. name: "Macro+++",
  13698. height: math.unit(400, "feet")
  13699. },
  13700. ]
  13701. ))
  13702. characterMakers.push(() => makeCharacter(
  13703. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13704. {
  13705. side: {
  13706. height: math.unit(6, "feet"),
  13707. weight: math.unit(170, "lb"),
  13708. name: "Side",
  13709. image: {
  13710. source: "./media/characters/finn/side.svg",
  13711. extra: 1953 / 1807,
  13712. bottom: 0.057
  13713. }
  13714. },
  13715. },
  13716. [
  13717. {
  13718. name: "Megamacro",
  13719. height: math.unit(14445, "feet"),
  13720. default: true
  13721. },
  13722. ]
  13723. ))
  13724. characterMakers.push(() => makeCharacter(
  13725. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13726. {
  13727. front: {
  13728. height: math.unit(5 + 6 / 12, "feet"),
  13729. weight: math.unit(125, "lb"),
  13730. name: "Front",
  13731. image: {
  13732. source: "./media/characters/roy/front.svg",
  13733. extra: 1,
  13734. bottom: 0.11
  13735. }
  13736. },
  13737. },
  13738. [
  13739. {
  13740. name: "Micro",
  13741. height: math.unit(3, "inches"),
  13742. default: true
  13743. },
  13744. {
  13745. name: "Normal",
  13746. height: math.unit(5 + 6 / 12, "feet")
  13747. },
  13748. {
  13749. name: "Lesser Macro",
  13750. height: math.unit(60, "feet")
  13751. },
  13752. {
  13753. name: "Greater Macro",
  13754. height: math.unit(120, "feet")
  13755. },
  13756. ]
  13757. ))
  13758. characterMakers.push(() => makeCharacter(
  13759. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13760. {
  13761. front: {
  13762. height: math.unit(6, "feet"),
  13763. weight: math.unit(100, "lb"),
  13764. name: "Front",
  13765. image: {
  13766. source: "./media/characters/aevsivs/front.svg",
  13767. extra: 1,
  13768. bottom: 0.03
  13769. }
  13770. },
  13771. back: {
  13772. height: math.unit(6, "feet"),
  13773. weight: math.unit(100, "lb"),
  13774. name: "Back",
  13775. image: {
  13776. source: "./media/characters/aevsivs/back.svg"
  13777. }
  13778. },
  13779. },
  13780. [
  13781. {
  13782. name: "Micro",
  13783. height: math.unit(2, "inches"),
  13784. default: true
  13785. },
  13786. {
  13787. name: "Normal",
  13788. height: math.unit(5, "feet")
  13789. },
  13790. ]
  13791. ))
  13792. characterMakers.push(() => makeCharacter(
  13793. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13794. {
  13795. front: {
  13796. height: math.unit(5 + 7 / 12, "feet"),
  13797. weight: math.unit(159, "lb"),
  13798. name: "Front",
  13799. image: {
  13800. source: "./media/characters/hildegard/front.svg",
  13801. extra: 289 / 269,
  13802. bottom: 7.63/297.8
  13803. }
  13804. },
  13805. back: {
  13806. height: math.unit(5 + 7 / 12, "feet"),
  13807. weight: math.unit(159, "lb"),
  13808. name: "Back",
  13809. image: {
  13810. source: "./media/characters/hildegard/back.svg",
  13811. extra: 280/260,
  13812. bottom: 2.3/282
  13813. }
  13814. },
  13815. },
  13816. [
  13817. {
  13818. name: "Normal",
  13819. height: math.unit(5 + 7 / 12, "feet"),
  13820. default: true
  13821. },
  13822. ]
  13823. ))
  13824. characterMakers.push(() => makeCharacter(
  13825. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13826. {
  13827. bernard: {
  13828. height: math.unit(2 + 7 / 12, "feet"),
  13829. weight: math.unit(66, "lb"),
  13830. name: "Bernard",
  13831. rename: true,
  13832. image: {
  13833. source: "./media/characters/bernard-wilder/bernard.svg",
  13834. extra: 192 / 128,
  13835. bottom: 0.05
  13836. }
  13837. },
  13838. wilder: {
  13839. height: math.unit(5 + 8 / 12, "feet"),
  13840. weight: math.unit(143, "lb"),
  13841. name: "Wilder",
  13842. rename: true,
  13843. image: {
  13844. source: "./media/characters/bernard-wilder/wilder.svg",
  13845. extra: 361 / 312,
  13846. bottom: 0.02
  13847. }
  13848. },
  13849. },
  13850. [
  13851. {
  13852. name: "Normal",
  13853. height: math.unit(2 + 7 / 12, "feet"),
  13854. default: true
  13855. },
  13856. ]
  13857. ))
  13858. characterMakers.push(() => makeCharacter(
  13859. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13860. {
  13861. anthro: {
  13862. height: math.unit(6 + 1 / 12, "feet"),
  13863. weight: math.unit(155, "lb"),
  13864. name: "Anthro",
  13865. image: {
  13866. source: "./media/characters/hearth/anthro.svg",
  13867. extra: 260 / 250,
  13868. bottom: 0.02
  13869. }
  13870. },
  13871. feral: {
  13872. height: math.unit(3.78, "feet"),
  13873. weight: math.unit(35, "kg"),
  13874. name: "Feral",
  13875. image: {
  13876. source: "./media/characters/hearth/feral.svg",
  13877. extra: 153 / 135,
  13878. bottom: 0.03
  13879. }
  13880. },
  13881. },
  13882. [
  13883. {
  13884. name: "Normal",
  13885. height: math.unit(6 + 1 / 12, "feet"),
  13886. default: true
  13887. },
  13888. ]
  13889. ))
  13890. characterMakers.push(() => makeCharacter(
  13891. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13892. {
  13893. front: {
  13894. height: math.unit(6, "feet"),
  13895. weight: math.unit(182, "lb"),
  13896. name: "Front",
  13897. image: {
  13898. source: "./media/characters/ingrid/front.svg",
  13899. extra: 294 / 268,
  13900. bottom: 0.027
  13901. }
  13902. },
  13903. },
  13904. [
  13905. {
  13906. name: "Normal",
  13907. height: math.unit(6, "feet"),
  13908. default: true
  13909. },
  13910. ]
  13911. ))
  13912. characterMakers.push(() => makeCharacter(
  13913. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13914. {
  13915. eevee: {
  13916. height: math.unit(2 + 10 / 12, "feet"),
  13917. weight: math.unit(86, "lb"),
  13918. name: "Malgam",
  13919. image: {
  13920. source: "./media/characters/malgam/eevee.svg",
  13921. extra: 218 / 180,
  13922. bottom: 0.2
  13923. }
  13924. },
  13925. sylveon: {
  13926. height: math.unit(4, "feet"),
  13927. weight: math.unit(101, "lb"),
  13928. name: "Future Malgam",
  13929. rename: true,
  13930. image: {
  13931. source: "./media/characters/malgam/sylveon.svg",
  13932. extra: 371 / 325,
  13933. bottom: 0.015
  13934. }
  13935. },
  13936. gigantamax: {
  13937. height: math.unit(50, "feet"),
  13938. name: "Gigantamax Malgam",
  13939. rename: true,
  13940. image: {
  13941. source: "./media/characters/malgam/gigantamax.svg"
  13942. }
  13943. },
  13944. },
  13945. [
  13946. {
  13947. name: "Normal",
  13948. height: math.unit(2 + 10 / 12, "feet"),
  13949. default: true
  13950. },
  13951. ]
  13952. ))
  13953. characterMakers.push(() => makeCharacter(
  13954. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  13955. {
  13956. front: {
  13957. height: math.unit(5 + 11 / 12, "feet"),
  13958. weight: math.unit(188, "lb"),
  13959. name: "Front",
  13960. image: {
  13961. source: "./media/characters/fleur/front.svg",
  13962. extra: 309 / 283,
  13963. bottom: 0.007
  13964. }
  13965. },
  13966. },
  13967. [
  13968. {
  13969. name: "Normal",
  13970. height: math.unit(5 + 11 / 12, "feet"),
  13971. default: true
  13972. },
  13973. ]
  13974. ))
  13975. characterMakers.push(() => makeCharacter(
  13976. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  13977. {
  13978. front: {
  13979. height: math.unit(5 + 4 / 12, "feet"),
  13980. weight: math.unit(122, "lb"),
  13981. name: "Front",
  13982. image: {
  13983. source: "./media/characters/jude/front.svg",
  13984. extra: 288 / 273,
  13985. bottom: 0.03
  13986. }
  13987. },
  13988. },
  13989. [
  13990. {
  13991. name: "Normal",
  13992. height: math.unit(5 + 4 / 12, "feet"),
  13993. default: true
  13994. },
  13995. ]
  13996. ))
  13997. characterMakers.push(() => makeCharacter(
  13998. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  13999. {
  14000. front: {
  14001. height: math.unit(5 + 11 / 12, "feet"),
  14002. weight: math.unit(190, "lb"),
  14003. name: "Front",
  14004. image: {
  14005. source: "./media/characters/seara/front.svg",
  14006. extra: 1,
  14007. bottom: 0.05
  14008. }
  14009. },
  14010. },
  14011. [
  14012. {
  14013. name: "Normal",
  14014. height: math.unit(5 + 11 / 12, "feet"),
  14015. default: true
  14016. },
  14017. ]
  14018. ))
  14019. characterMakers.push(() => makeCharacter(
  14020. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14021. {
  14022. front: {
  14023. height: math.unit(16 + 5 / 12, "feet"),
  14024. weight: math.unit(524, "lb"),
  14025. name: "Front",
  14026. image: {
  14027. source: "./media/characters/caspian/front.svg",
  14028. extra: 1,
  14029. bottom: 0.04
  14030. }
  14031. },
  14032. },
  14033. [
  14034. {
  14035. name: "Normal",
  14036. height: math.unit(16 + 5 / 12, "feet"),
  14037. default: true
  14038. },
  14039. ]
  14040. ))
  14041. characterMakers.push(() => makeCharacter(
  14042. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14043. {
  14044. front: {
  14045. height: math.unit(5 + 7 / 12, "feet"),
  14046. weight: math.unit(170, "lb"),
  14047. name: "Front",
  14048. image: {
  14049. source: "./media/characters/mika/front.svg",
  14050. extra: 1,
  14051. bottom: 0.016
  14052. }
  14053. },
  14054. },
  14055. [
  14056. {
  14057. name: "Normal",
  14058. height: math.unit(5 + 7 / 12, "feet"),
  14059. default: true
  14060. },
  14061. ]
  14062. ))
  14063. characterMakers.push(() => makeCharacter(
  14064. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14065. {
  14066. front: {
  14067. height: math.unit(6 + 2 / 12, "feet"),
  14068. weight: math.unit(268, "lb"),
  14069. name: "Front",
  14070. image: {
  14071. source: "./media/characters/sol/front.svg",
  14072. extra: 247 / 231,
  14073. bottom: 0.05
  14074. }
  14075. },
  14076. },
  14077. [
  14078. {
  14079. name: "Normal",
  14080. height: math.unit(6 + 2 / 12, "feet"),
  14081. default: true
  14082. },
  14083. ]
  14084. ))
  14085. characterMakers.push(() => makeCharacter(
  14086. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14087. {
  14088. buizel: {
  14089. height: math.unit(2 + 5 / 12, "feet"),
  14090. weight: math.unit(87, "lb"),
  14091. name: "Buizel",
  14092. image: {
  14093. source: "./media/characters/umiko/buizel.svg",
  14094. extra: 172 / 157,
  14095. bottom: 0.01
  14096. }
  14097. },
  14098. floatzel: {
  14099. height: math.unit(5 + 9 / 12, "feet"),
  14100. weight: math.unit(250, "lb"),
  14101. name: "Floatzel",
  14102. image: {
  14103. source: "./media/characters/umiko/floatzel.svg",
  14104. extra: 262 / 248
  14105. }
  14106. },
  14107. },
  14108. [
  14109. {
  14110. name: "Normal",
  14111. height: math.unit(2 + 5 / 12, "feet"),
  14112. default: true
  14113. },
  14114. ]
  14115. ))
  14116. characterMakers.push(() => makeCharacter(
  14117. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14118. {
  14119. front: {
  14120. height: math.unit(6 + 2 / 12, "feet"),
  14121. weight: math.unit(146, "lb"),
  14122. name: "Front",
  14123. image: {
  14124. source: "./media/characters/iliac/front.svg",
  14125. extra: 389 / 365,
  14126. bottom: 0.035
  14127. }
  14128. },
  14129. },
  14130. [
  14131. {
  14132. name: "Normal",
  14133. height: math.unit(6 + 2 / 12, "feet"),
  14134. default: true
  14135. },
  14136. ]
  14137. ))
  14138. characterMakers.push(() => makeCharacter(
  14139. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14140. {
  14141. front: {
  14142. height: math.unit(6, "feet"),
  14143. weight: math.unit(170, "lb"),
  14144. name: "Front",
  14145. image: {
  14146. source: "./media/characters/topaz/front.svg",
  14147. extra: 317 / 303,
  14148. bottom: 0.055
  14149. }
  14150. },
  14151. },
  14152. [
  14153. {
  14154. name: "Normal",
  14155. height: math.unit(6, "feet"),
  14156. default: true
  14157. },
  14158. ]
  14159. ))
  14160. characterMakers.push(() => makeCharacter(
  14161. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14162. {
  14163. front: {
  14164. height: math.unit(5 + 11 / 12, "feet"),
  14165. weight: math.unit(144, "lb"),
  14166. name: "Front",
  14167. image: {
  14168. source: "./media/characters/gabriel/front.svg",
  14169. extra: 285 / 262,
  14170. bottom: 0.004
  14171. }
  14172. },
  14173. },
  14174. [
  14175. {
  14176. name: "Normal",
  14177. height: math.unit(5 + 11 / 12, "feet"),
  14178. default: true
  14179. },
  14180. ]
  14181. ))
  14182. characterMakers.push(() => makeCharacter(
  14183. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14184. {
  14185. side: {
  14186. height: math.unit(6 + 5 / 12, "feet"),
  14187. weight: math.unit(300, "lb"),
  14188. name: "Side",
  14189. image: {
  14190. source: "./media/characters/tempest-suicune/side.svg",
  14191. extra: 195 / 154,
  14192. bottom: 0.04
  14193. }
  14194. },
  14195. },
  14196. [
  14197. {
  14198. name: "Normal",
  14199. height: math.unit(6 + 5 / 12, "feet"),
  14200. default: true
  14201. },
  14202. ]
  14203. ))
  14204. characterMakers.push(() => makeCharacter(
  14205. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14206. {
  14207. front: {
  14208. height: math.unit(7 + 2 / 12, "feet"),
  14209. weight: math.unit(322, "lb"),
  14210. name: "Front",
  14211. image: {
  14212. source: "./media/characters/vulcan/front.svg",
  14213. extra: 154 / 147,
  14214. bottom: 0.04
  14215. }
  14216. },
  14217. },
  14218. [
  14219. {
  14220. name: "Normal",
  14221. height: math.unit(7 + 2 / 12, "feet"),
  14222. default: true
  14223. },
  14224. ]
  14225. ))
  14226. characterMakers.push(() => makeCharacter(
  14227. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14228. {
  14229. front: {
  14230. height: math.unit(5 + 10 / 12, "feet"),
  14231. weight: math.unit(264, "lb"),
  14232. name: "Front",
  14233. image: {
  14234. source: "./media/characters/gault/front.svg",
  14235. extra: 161 / 140,
  14236. bottom: 0.028
  14237. }
  14238. },
  14239. },
  14240. [
  14241. {
  14242. name: "Normal",
  14243. height: math.unit(5 + 10 / 12, "feet"),
  14244. default: true
  14245. },
  14246. ]
  14247. ))
  14248. characterMakers.push(() => makeCharacter(
  14249. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14250. {
  14251. front: {
  14252. height: math.unit(6, "feet"),
  14253. weight: math.unit(150, "lb"),
  14254. name: "Front",
  14255. image: {
  14256. source: "./media/characters/shard/front.svg",
  14257. extra: 273 / 238,
  14258. bottom: 0.02
  14259. }
  14260. },
  14261. },
  14262. [
  14263. {
  14264. name: "Normal",
  14265. height: math.unit(3 + 6 / 12, "feet"),
  14266. default: true
  14267. },
  14268. ]
  14269. ))
  14270. characterMakers.push(() => makeCharacter(
  14271. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14272. {
  14273. front: {
  14274. height: math.unit(5 + 11 / 12, "feet"),
  14275. weight: math.unit(146, "lb"),
  14276. name: "Front",
  14277. image: {
  14278. source: "./media/characters/ashe/front.svg",
  14279. extra: 400 / 373,
  14280. bottom: 0.01
  14281. }
  14282. },
  14283. },
  14284. [
  14285. {
  14286. name: "Normal",
  14287. height: math.unit(5 + 11 / 12, "feet"),
  14288. default: true
  14289. },
  14290. ]
  14291. ))
  14292. characterMakers.push(() => makeCharacter(
  14293. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14294. {
  14295. front: {
  14296. height: math.unit(5 + 5 / 12, "feet"),
  14297. weight: math.unit(135, "lb"),
  14298. name: "Front",
  14299. image: {
  14300. source: "./media/characters/beatrix/front.svg",
  14301. extra: 392 / 379,
  14302. bottom: 0.01
  14303. }
  14304. },
  14305. },
  14306. [
  14307. {
  14308. name: "Normal",
  14309. height: math.unit(6, "feet"),
  14310. default: true
  14311. },
  14312. ]
  14313. ))
  14314. characterMakers.push(() => makeCharacter(
  14315. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14316. {
  14317. front: {
  14318. height: math.unit(6, "feet"),
  14319. weight: math.unit(150, "lb"),
  14320. name: "Front",
  14321. image: {
  14322. source: "./media/characters/ignatius/front.svg",
  14323. extra: 245 / 222,
  14324. bottom: 0.01
  14325. }
  14326. },
  14327. },
  14328. [
  14329. {
  14330. name: "Normal",
  14331. height: math.unit(5 + 5 / 12, "feet"),
  14332. default: true
  14333. },
  14334. ]
  14335. ))
  14336. characterMakers.push(() => makeCharacter(
  14337. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14338. {
  14339. front: {
  14340. height: math.unit(6 + 2 / 12, "feet"),
  14341. weight: math.unit(138, "lb"),
  14342. name: "Front",
  14343. image: {
  14344. source: "./media/characters/mei-li/front.svg",
  14345. extra: 237 / 229,
  14346. bottom: 0.03
  14347. }
  14348. },
  14349. },
  14350. [
  14351. {
  14352. name: "Normal",
  14353. height: math.unit(6 + 2 / 12, "feet"),
  14354. default: true
  14355. },
  14356. ]
  14357. ))
  14358. characterMakers.push(() => makeCharacter(
  14359. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14360. {
  14361. front: {
  14362. height: math.unit(2 + 4 / 12, "feet"),
  14363. weight: math.unit(62, "lb"),
  14364. name: "Front",
  14365. image: {
  14366. source: "./media/characters/puru/front.svg",
  14367. extra: 206 / 149,
  14368. bottom: 0.06
  14369. }
  14370. },
  14371. },
  14372. [
  14373. {
  14374. name: "Normal",
  14375. height: math.unit(2 + 4 / 12, "feet"),
  14376. default: true
  14377. },
  14378. ]
  14379. ))
  14380. characterMakers.push(() => makeCharacter(
  14381. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14382. {
  14383. taur: {
  14384. height: math.unit(11, "feet"),
  14385. weight: math.unit(500, "lb"),
  14386. name: "Taur",
  14387. image: {
  14388. source: "./media/characters/kee/taur.svg",
  14389. extra: 1,
  14390. bottom: 0.04
  14391. }
  14392. },
  14393. },
  14394. [
  14395. {
  14396. name: "Normal",
  14397. height: math.unit(11, "feet"),
  14398. default: true
  14399. },
  14400. ]
  14401. ))
  14402. characterMakers.push(() => makeCharacter(
  14403. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14404. {
  14405. anthro: {
  14406. height: math.unit(7, "feet"),
  14407. weight: math.unit(190, "lb"),
  14408. name: "Anthro",
  14409. image: {
  14410. source: "./media/characters/cobalt-dracha/anthro.svg",
  14411. extra: 231 / 225,
  14412. bottom: 0.04
  14413. }
  14414. },
  14415. feral: {
  14416. height: math.unit(9 + 7 / 12, "feet"),
  14417. weight: math.unit(294, "lb"),
  14418. name: "Feral",
  14419. image: {
  14420. source: "./media/characters/cobalt-dracha/feral.svg",
  14421. extra: 692 / 633,
  14422. bottom: 0.05
  14423. }
  14424. },
  14425. },
  14426. [
  14427. {
  14428. name: "Normal",
  14429. height: math.unit(7, "feet"),
  14430. default: true
  14431. },
  14432. ]
  14433. ))
  14434. characterMakers.push(() => makeCharacter(
  14435. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14436. {
  14437. fallen: {
  14438. height: math.unit(11 + 8 / 12, "feet"),
  14439. weight: math.unit(485, "lb"),
  14440. name: "Java (Fallen)",
  14441. rename: true,
  14442. image: {
  14443. source: "./media/characters/java/fallen.svg",
  14444. extra: 226 / 208,
  14445. bottom: 0.005
  14446. }
  14447. },
  14448. godkin: {
  14449. height: math.unit(10 + 6 / 12, "feet"),
  14450. weight: math.unit(328, "lb"),
  14451. name: "Java (Godkin)",
  14452. rename: true,
  14453. image: {
  14454. source: "./media/characters/java/godkin.svg",
  14455. extra: 270 / 262,
  14456. bottom: 0.02
  14457. }
  14458. },
  14459. },
  14460. [
  14461. {
  14462. name: "Normal",
  14463. height: math.unit(11 + 8 / 12, "feet"),
  14464. default: true
  14465. },
  14466. ]
  14467. ))
  14468. characterMakers.push(() => makeCharacter(
  14469. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14470. {
  14471. front: {
  14472. height: math.unit(7 + 8 / 12, "feet"),
  14473. weight: math.unit(320, "lb"),
  14474. name: "Front",
  14475. image: {
  14476. source: "./media/characters/skoll/front.svg",
  14477. extra: 232 / 220,
  14478. bottom: 0.02
  14479. }
  14480. },
  14481. },
  14482. [
  14483. {
  14484. name: "Normal",
  14485. height: math.unit(7 + 8 / 12, "feet"),
  14486. default: true
  14487. },
  14488. ]
  14489. ))
  14490. characterMakers.push(() => makeCharacter(
  14491. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14492. {
  14493. front: {
  14494. height: math.unit(5 + 9 / 12, "feet"),
  14495. weight: math.unit(170, "lb"),
  14496. name: "Front",
  14497. image: {
  14498. source: "./media/characters/purna/front.svg",
  14499. extra: 239 / 229,
  14500. bottom: 0.01
  14501. }
  14502. },
  14503. },
  14504. [
  14505. {
  14506. name: "Normal",
  14507. height: math.unit(5 + 9 / 12, "feet"),
  14508. default: true
  14509. },
  14510. ]
  14511. ))
  14512. characterMakers.push(() => makeCharacter(
  14513. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14514. {
  14515. front: {
  14516. height: math.unit(5 + 9 / 12, "feet"),
  14517. weight: math.unit(142, "lb"),
  14518. name: "Front",
  14519. image: {
  14520. source: "./media/characters/kuva/front.svg",
  14521. extra: 281 / 271,
  14522. bottom: 0.006
  14523. }
  14524. },
  14525. },
  14526. [
  14527. {
  14528. name: "Normal",
  14529. height: math.unit(5 + 9 / 12, "feet"),
  14530. default: true
  14531. },
  14532. ]
  14533. ))
  14534. characterMakers.push(() => makeCharacter(
  14535. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14536. {
  14537. anthro: {
  14538. height: math.unit(9 + 2 / 12, "feet"),
  14539. weight: math.unit(270, "lb"),
  14540. name: "Anthro",
  14541. image: {
  14542. source: "./media/characters/embra/anthro.svg",
  14543. extra: 200 / 187,
  14544. bottom: 0.02
  14545. }
  14546. },
  14547. feral: {
  14548. height: math.unit(18 + 8 / 12, "feet"),
  14549. weight: math.unit(576, "lb"),
  14550. name: "Feral",
  14551. image: {
  14552. source: "./media/characters/embra/feral.svg",
  14553. extra: 152 / 137,
  14554. bottom: 0.037
  14555. }
  14556. },
  14557. },
  14558. [
  14559. {
  14560. name: "Normal",
  14561. height: math.unit(9 + 2 / 12, "feet"),
  14562. default: true
  14563. },
  14564. ]
  14565. ))
  14566. characterMakers.push(() => makeCharacter(
  14567. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14568. {
  14569. anthro: {
  14570. height: math.unit(10 + 9 / 12, "feet"),
  14571. weight: math.unit(224, "lb"),
  14572. name: "Anthro",
  14573. image: {
  14574. source: "./media/characters/grottos/anthro.svg",
  14575. extra: 350 / 332,
  14576. bottom: 0.045
  14577. }
  14578. },
  14579. feral: {
  14580. height: math.unit(20 + 7 / 12, "feet"),
  14581. weight: math.unit(629, "lb"),
  14582. name: "Feral",
  14583. image: {
  14584. source: "./media/characters/grottos/feral.svg",
  14585. extra: 207 / 190,
  14586. bottom: 0.05
  14587. }
  14588. },
  14589. },
  14590. [
  14591. {
  14592. name: "Normal",
  14593. height: math.unit(10 + 9 / 12, "feet"),
  14594. default: true
  14595. },
  14596. ]
  14597. ))
  14598. characterMakers.push(() => makeCharacter(
  14599. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14600. {
  14601. anthro: {
  14602. height: math.unit(9 + 6 / 12, "feet"),
  14603. weight: math.unit(298, "lb"),
  14604. name: "Anthro",
  14605. image: {
  14606. source: "./media/characters/frifna/anthro.svg",
  14607. extra: 282 / 269,
  14608. bottom: 0.015
  14609. }
  14610. },
  14611. feral: {
  14612. height: math.unit(16 + 2 / 12, "feet"),
  14613. weight: math.unit(624, "lb"),
  14614. name: "Feral",
  14615. image: {
  14616. source: "./media/characters/frifna/feral.svg"
  14617. }
  14618. },
  14619. },
  14620. [
  14621. {
  14622. name: "Normal",
  14623. height: math.unit(9 + 6 / 12, "feet"),
  14624. default: true
  14625. },
  14626. ]
  14627. ))
  14628. characterMakers.push(() => makeCharacter(
  14629. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14630. {
  14631. front: {
  14632. height: math.unit(6 + 2 / 12, "feet"),
  14633. weight: math.unit(168, "lb"),
  14634. name: "Front",
  14635. image: {
  14636. source: "./media/characters/elise/front.svg",
  14637. extra: 276 / 271
  14638. }
  14639. },
  14640. },
  14641. [
  14642. {
  14643. name: "Normal",
  14644. height: math.unit(6 + 2 / 12, "feet"),
  14645. default: true
  14646. },
  14647. ]
  14648. ))
  14649. characterMakers.push(() => makeCharacter(
  14650. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14651. {
  14652. front: {
  14653. height: math.unit(5 + 10 / 12, "feet"),
  14654. weight: math.unit(210, "lb"),
  14655. name: "Front",
  14656. image: {
  14657. source: "./media/characters/glade/front.svg",
  14658. extra: 258 / 247,
  14659. bottom: 0.008
  14660. }
  14661. },
  14662. },
  14663. [
  14664. {
  14665. name: "Normal",
  14666. height: math.unit(5 + 10 / 12, "feet"),
  14667. default: true
  14668. },
  14669. ]
  14670. ))
  14671. characterMakers.push(() => makeCharacter(
  14672. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14673. {
  14674. front: {
  14675. height: math.unit(5 + 10 / 12, "feet"),
  14676. weight: math.unit(129, "lb"),
  14677. name: "Front",
  14678. image: {
  14679. source: "./media/characters/rina/front.svg",
  14680. extra: 266 / 255,
  14681. bottom: 0.005
  14682. }
  14683. },
  14684. },
  14685. [
  14686. {
  14687. name: "Normal",
  14688. height: math.unit(5 + 10 / 12, "feet"),
  14689. default: true
  14690. },
  14691. ]
  14692. ))
  14693. characterMakers.push(() => makeCharacter(
  14694. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14695. {
  14696. front: {
  14697. height: math.unit(6 + 1 / 12, "feet"),
  14698. weight: math.unit(192, "lb"),
  14699. name: "Front",
  14700. image: {
  14701. source: "./media/characters/veronica/front.svg",
  14702. extra: 319 / 309,
  14703. bottom: 0.005
  14704. }
  14705. },
  14706. },
  14707. [
  14708. {
  14709. name: "Normal",
  14710. height: math.unit(6 + 1 / 12, "feet"),
  14711. default: true
  14712. },
  14713. ]
  14714. ))
  14715. characterMakers.push(() => makeCharacter(
  14716. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14717. {
  14718. front: {
  14719. height: math.unit(9 + 3 / 12, "feet"),
  14720. weight: math.unit(1100, "lb"),
  14721. name: "Front",
  14722. image: {
  14723. source: "./media/characters/braxton/front.svg",
  14724. extra: 1057 / 984,
  14725. bottom: 0.05
  14726. }
  14727. },
  14728. },
  14729. [
  14730. {
  14731. name: "Normal",
  14732. height: math.unit(9 + 3 / 12, "feet")
  14733. },
  14734. {
  14735. name: "Giant",
  14736. height: math.unit(300, "feet"),
  14737. default: true
  14738. },
  14739. {
  14740. name: "Macro",
  14741. height: math.unit(700, "feet")
  14742. },
  14743. {
  14744. name: "Megamacro",
  14745. height: math.unit(6000, "feet")
  14746. },
  14747. ]
  14748. ))
  14749. characterMakers.push(() => makeCharacter(
  14750. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14751. {
  14752. front: {
  14753. height: math.unit(6 + 7 / 12, "feet"),
  14754. weight: math.unit(150, "lb"),
  14755. name: "Front",
  14756. image: {
  14757. source: "./media/characters/blue-feyonics/front.svg",
  14758. extra: 1403 / 1306,
  14759. bottom: 0.047
  14760. }
  14761. },
  14762. },
  14763. [
  14764. {
  14765. name: "Normal",
  14766. height: math.unit(6 + 7 / 12, "feet"),
  14767. default: true
  14768. },
  14769. ]
  14770. ))
  14771. characterMakers.push(() => makeCharacter(
  14772. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14773. {
  14774. front: {
  14775. height: math.unit(1.8, "meters"),
  14776. weight: math.unit(60, "kg"),
  14777. name: "Front",
  14778. image: {
  14779. source: "./media/characters/maxwell/front.svg",
  14780. extra: 2060 / 1873
  14781. }
  14782. },
  14783. },
  14784. [
  14785. {
  14786. name: "Micro",
  14787. height: math.unit(1, "mm")
  14788. },
  14789. {
  14790. name: "Normal",
  14791. height: math.unit(1.8, "meter"),
  14792. default: true
  14793. },
  14794. {
  14795. name: "Macro",
  14796. height: math.unit(30, "meters")
  14797. },
  14798. {
  14799. name: "Megamacro",
  14800. height: math.unit(10, "km")
  14801. },
  14802. ]
  14803. ))
  14804. characterMakers.push(() => makeCharacter(
  14805. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14806. {
  14807. front: {
  14808. height: math.unit(6, "feet"),
  14809. weight: math.unit(150, "lb"),
  14810. name: "Front",
  14811. image: {
  14812. source: "./media/characters/jack/front.svg",
  14813. extra: 1754 / 1640,
  14814. bottom: 0.01
  14815. }
  14816. },
  14817. },
  14818. [
  14819. {
  14820. name: "Normal",
  14821. height: math.unit(80000, "feet"),
  14822. default: true
  14823. },
  14824. {
  14825. name: "Max size",
  14826. height: math.unit(10, "lightyears")
  14827. },
  14828. ]
  14829. ))
  14830. characterMakers.push(() => makeCharacter(
  14831. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14832. {
  14833. upright: {
  14834. height: math.unit(7, "feet"),
  14835. weight: math.unit(170, "lb"),
  14836. name: "Upright",
  14837. image: {
  14838. source: "./media/characters/cafat/upright.svg",
  14839. bottom: 0.01
  14840. }
  14841. },
  14842. uprightFull: {
  14843. height: math.unit(7, "feet"),
  14844. weight: math.unit(170, "lb"),
  14845. name: "Upright (Full)",
  14846. image: {
  14847. source: "./media/characters/cafat/upright-full.svg",
  14848. bottom: 0.01
  14849. }
  14850. },
  14851. side: {
  14852. height: math.unit(5, "feet"),
  14853. weight: math.unit(150, "lb"),
  14854. name: "Side",
  14855. image: {
  14856. source: "./media/characters/cafat/side.svg"
  14857. }
  14858. },
  14859. },
  14860. [
  14861. {
  14862. name: "Small",
  14863. height: math.unit(7, "feet"),
  14864. default: true
  14865. },
  14866. {
  14867. name: "Large",
  14868. height: math.unit(15.5, "feet")
  14869. },
  14870. ]
  14871. ))
  14872. characterMakers.push(() => makeCharacter(
  14873. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14874. {
  14875. front: {
  14876. height: math.unit(6, "feet"),
  14877. weight: math.unit(150, "lb"),
  14878. name: "Front",
  14879. image: {
  14880. source: "./media/characters/verin-raharra/front.svg",
  14881. extra: 5019 / 4835,
  14882. bottom: 0.023
  14883. }
  14884. },
  14885. },
  14886. [
  14887. {
  14888. name: "Normal",
  14889. height: math.unit(7 + 5 / 12, "feet"),
  14890. default: true
  14891. },
  14892. {
  14893. name: "Upsized",
  14894. height: math.unit(20, "feet")
  14895. },
  14896. ]
  14897. ))
  14898. characterMakers.push(() => makeCharacter(
  14899. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14900. {
  14901. front: {
  14902. height: math.unit(7, "feet"),
  14903. weight: math.unit(230, "lb"),
  14904. name: "Front",
  14905. image: {
  14906. source: "./media/characters/nakata/front.svg",
  14907. extra: 1.005,
  14908. bottom: 0.01
  14909. }
  14910. },
  14911. },
  14912. [
  14913. {
  14914. name: "Normal",
  14915. height: math.unit(7, "feet"),
  14916. default: true
  14917. },
  14918. {
  14919. name: "Big",
  14920. height: math.unit(14, "feet")
  14921. },
  14922. {
  14923. name: "Macro",
  14924. height: math.unit(400, "feet")
  14925. },
  14926. ]
  14927. ))
  14928. characterMakers.push(() => makeCharacter(
  14929. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14930. {
  14931. front: {
  14932. height: math.unit(4.91, "feet"),
  14933. weight: math.unit(100, "lb"),
  14934. name: "Front",
  14935. image: {
  14936. source: "./media/characters/lily/front.svg",
  14937. extra: 1585 / 1415,
  14938. bottom: 0.02
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Normal",
  14945. height: math.unit(4.91, "feet"),
  14946. default: true
  14947. },
  14948. ]
  14949. ))
  14950. characterMakers.push(() => makeCharacter(
  14951. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14952. {
  14953. laying: {
  14954. height: math.unit(4 + 4 / 12, "feet"),
  14955. weight: math.unit(600, "lb"),
  14956. name: "Laying",
  14957. image: {
  14958. source: "./media/characters/sheila/laying.svg",
  14959. extra: 1333 / 1265,
  14960. bottom: 0.16
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Normal",
  14967. height: math.unit(4 + 4 / 12, "feet"),
  14968. default: true
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  14974. {
  14975. front: {
  14976. height: math.unit(6, "feet"),
  14977. weight: math.unit(190, "lb"),
  14978. name: "Front",
  14979. image: {
  14980. source: "./media/characters/sax/front.svg",
  14981. extra: 1187 / 973,
  14982. bottom: 0.042
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Micro",
  14989. height: math.unit(4, "inches"),
  14990. default: true
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  14996. {
  14997. front: {
  14998. height: math.unit(6, "feet"),
  14999. weight: math.unit(150, "lb"),
  15000. name: "Front",
  15001. image: {
  15002. source: "./media/characters/pandora/front.svg",
  15003. extra: 2720 / 2556,
  15004. bottom: 0.015
  15005. }
  15006. },
  15007. back: {
  15008. height: math.unit(6, "feet"),
  15009. weight: math.unit(150, "lb"),
  15010. name: "Back",
  15011. image: {
  15012. source: "./media/characters/pandora/back.svg",
  15013. extra: 2720 / 2556,
  15014. bottom: 0.01
  15015. }
  15016. },
  15017. beans: {
  15018. height: math.unit(6 / 8, "feet"),
  15019. name: "Beans",
  15020. image: {
  15021. source: "./media/characters/pandora/beans.svg"
  15022. }
  15023. },
  15024. skirt: {
  15025. height: math.unit(6, "feet"),
  15026. weight: math.unit(150, "lb"),
  15027. name: "Skirt",
  15028. image: {
  15029. source: "./media/characters/pandora/skirt.svg",
  15030. extra: 1622 / 1525,
  15031. bottom: 0.015
  15032. }
  15033. },
  15034. hoodie: {
  15035. height: math.unit(6, "feet"),
  15036. weight: math.unit(150, "lb"),
  15037. name: "Hoodie",
  15038. image: {
  15039. source: "./media/characters/pandora/hoodie.svg",
  15040. extra: 1622 / 1525,
  15041. bottom: 0.015
  15042. }
  15043. },
  15044. casual: {
  15045. height: math.unit(6, "feet"),
  15046. weight: math.unit(150, "lb"),
  15047. name: "Casual",
  15048. image: {
  15049. source: "./media/characters/pandora/casual.svg",
  15050. extra: 1622 / 1525,
  15051. bottom: 0.015
  15052. }
  15053. },
  15054. },
  15055. [
  15056. {
  15057. name: "Normal",
  15058. height: math.unit(6, "feet")
  15059. },
  15060. {
  15061. name: "Big Steppy",
  15062. height: math.unit(1, "km"),
  15063. default: true
  15064. },
  15065. ]
  15066. ))
  15067. characterMakers.push(() => makeCharacter(
  15068. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15069. {
  15070. side: {
  15071. height: math.unit(10, "feet"),
  15072. weight: math.unit(800, "kg"),
  15073. name: "Side",
  15074. image: {
  15075. source: "./media/characters/venio-darcony/side.svg",
  15076. extra: 1373 / 1003,
  15077. bottom: 0.037
  15078. }
  15079. },
  15080. front: {
  15081. height: math.unit(19, "feet"),
  15082. weight: math.unit(800, "kg"),
  15083. name: "Front",
  15084. image: {
  15085. source: "./media/characters/venio-darcony/front.svg"
  15086. }
  15087. },
  15088. back: {
  15089. height: math.unit(19, "feet"),
  15090. weight: math.unit(800, "kg"),
  15091. name: "Back",
  15092. image: {
  15093. source: "./media/characters/venio-darcony/back.svg"
  15094. }
  15095. },
  15096. sideNsfw: {
  15097. height: math.unit(10, "feet"),
  15098. weight: math.unit(800, "kg"),
  15099. name: "Side (NSFW)",
  15100. image: {
  15101. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15102. extra: 1373 / 1003,
  15103. bottom: 0.037
  15104. }
  15105. },
  15106. frontNsfw: {
  15107. height: math.unit(19, "feet"),
  15108. weight: math.unit(800, "kg"),
  15109. name: "Front (NSFW)",
  15110. image: {
  15111. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15112. }
  15113. },
  15114. backNsfw: {
  15115. height: math.unit(19, "feet"),
  15116. weight: math.unit(800, "kg"),
  15117. name: "Back (NSFW)",
  15118. image: {
  15119. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15120. }
  15121. },
  15122. sideArmored: {
  15123. height: math.unit(10, "feet"),
  15124. weight: math.unit(800, "kg"),
  15125. name: "Side (Armored)",
  15126. image: {
  15127. source: "./media/characters/venio-darcony/side-armored.svg",
  15128. extra: 1373 / 1003,
  15129. bottom: 0.037
  15130. }
  15131. },
  15132. frontArmored: {
  15133. height: math.unit(19, "feet"),
  15134. weight: math.unit(900, "kg"),
  15135. name: "Front (Armored)",
  15136. image: {
  15137. source: "./media/characters/venio-darcony/front-armored.svg"
  15138. }
  15139. },
  15140. backArmored: {
  15141. height: math.unit(19, "feet"),
  15142. weight: math.unit(900, "kg"),
  15143. name: "Back (Armored)",
  15144. image: {
  15145. source: "./media/characters/venio-darcony/back-armored.svg"
  15146. }
  15147. },
  15148. sword: {
  15149. height: math.unit(10, "feet"),
  15150. weight: math.unit(50, "lb"),
  15151. name: "Sword",
  15152. image: {
  15153. source: "./media/characters/venio-darcony/sword.svg"
  15154. }
  15155. },
  15156. },
  15157. [
  15158. {
  15159. name: "Normal",
  15160. height: math.unit(10, "feet")
  15161. },
  15162. {
  15163. name: "Macro",
  15164. height: math.unit(130, "feet"),
  15165. default: true
  15166. },
  15167. {
  15168. name: "Macro+",
  15169. height: math.unit(240, "feet")
  15170. },
  15171. ]
  15172. ))
  15173. characterMakers.push(() => makeCharacter(
  15174. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15175. {
  15176. front: {
  15177. height: math.unit(6, "feet"),
  15178. weight: math.unit(150, "lb"),
  15179. name: "Front",
  15180. image: {
  15181. source: "./media/characters/veski/front.svg",
  15182. extra: 1299 / 1225,
  15183. bottom: 0.04
  15184. }
  15185. },
  15186. back: {
  15187. height: math.unit(6, "feet"),
  15188. weight: math.unit(150, "lb"),
  15189. name: "Back",
  15190. image: {
  15191. source: "./media/characters/veski/back.svg",
  15192. extra: 1299 / 1225,
  15193. bottom: 0.008
  15194. }
  15195. },
  15196. maw: {
  15197. height: math.unit(1.5 * 1.21, "feet"),
  15198. name: "Maw",
  15199. image: {
  15200. source: "./media/characters/veski/maw.svg"
  15201. }
  15202. },
  15203. },
  15204. [
  15205. {
  15206. name: "Macro",
  15207. height: math.unit(2, "km"),
  15208. default: true
  15209. },
  15210. ]
  15211. ))
  15212. characterMakers.push(() => makeCharacter(
  15213. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15214. {
  15215. front: {
  15216. height: math.unit(5 + 7 / 12, "feet"),
  15217. name: "Front",
  15218. image: {
  15219. source: "./media/characters/isabelle/front.svg",
  15220. extra: 2130 / 1976,
  15221. bottom: 0.05
  15222. }
  15223. },
  15224. },
  15225. [
  15226. {
  15227. name: "Supermicro",
  15228. height: math.unit(10, "micrometers")
  15229. },
  15230. {
  15231. name: "Micro",
  15232. height: math.unit(1, "inch")
  15233. },
  15234. {
  15235. name: "Tiny",
  15236. height: math.unit(5, "inches")
  15237. },
  15238. {
  15239. name: "Standard",
  15240. height: math.unit(5 + 7 / 12, "inches")
  15241. },
  15242. {
  15243. name: "Macro",
  15244. height: math.unit(80, "meters"),
  15245. default: true
  15246. },
  15247. {
  15248. name: "Megamacro",
  15249. height: math.unit(250, "meters")
  15250. },
  15251. {
  15252. name: "Gigamacro",
  15253. height: math.unit(5, "km")
  15254. },
  15255. {
  15256. name: "Cosmic",
  15257. height: math.unit(2.5e6, "miles")
  15258. },
  15259. ]
  15260. ))
  15261. characterMakers.push(() => makeCharacter(
  15262. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15263. {
  15264. front: {
  15265. height: math.unit(6, "feet"),
  15266. weight: math.unit(150, "lb"),
  15267. name: "Front",
  15268. image: {
  15269. source: "./media/characters/hanzo/front.svg",
  15270. extra: 374 / 344,
  15271. bottom: 0.02
  15272. }
  15273. },
  15274. },
  15275. [
  15276. {
  15277. name: "Normal",
  15278. height: math.unit(8, "feet"),
  15279. default: true
  15280. },
  15281. ]
  15282. ))
  15283. characterMakers.push(() => makeCharacter(
  15284. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15285. {
  15286. front: {
  15287. height: math.unit(7, "feet"),
  15288. weight: math.unit(130, "lb"),
  15289. name: "Front",
  15290. image: {
  15291. source: "./media/characters/anna/front.svg",
  15292. extra: 169 / 145,
  15293. bottom: 0.06
  15294. }
  15295. },
  15296. full: {
  15297. height: math.unit(4.96, "feet"),
  15298. weight: math.unit(220, "lb"),
  15299. name: "Full",
  15300. image: {
  15301. source: "./media/characters/anna/full.svg",
  15302. extra: 138 / 114,
  15303. bottom: 0.15
  15304. }
  15305. },
  15306. tongue: {
  15307. height: math.unit(2.53, "feet"),
  15308. name: "Tongue",
  15309. image: {
  15310. source: "./media/characters/anna/tongue.svg"
  15311. }
  15312. },
  15313. },
  15314. [
  15315. {
  15316. name: "Normal",
  15317. height: math.unit(7, "feet"),
  15318. default: true
  15319. },
  15320. ]
  15321. ))
  15322. characterMakers.push(() => makeCharacter(
  15323. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15324. {
  15325. front: {
  15326. height: math.unit(7, "feet"),
  15327. weight: math.unit(150, "lb"),
  15328. name: "Front",
  15329. image: {
  15330. source: "./media/characters/ian-corvid/front.svg",
  15331. extra: 150 / 142,
  15332. bottom: 0.02
  15333. }
  15334. },
  15335. back: {
  15336. height: math.unit(7, "feet"),
  15337. weight: math.unit(150, "lb"),
  15338. name: "Back",
  15339. image: {
  15340. source: "./media/characters/ian-corvid/back.svg",
  15341. extra: 150 / 143,
  15342. bottom: 0.01
  15343. }
  15344. },
  15345. stomping: {
  15346. height: math.unit(7, "feet"),
  15347. weight: math.unit(150, "lb"),
  15348. name: "Stomping",
  15349. image: {
  15350. source: "./media/characters/ian-corvid/stomping.svg",
  15351. extra: 76 / 72
  15352. }
  15353. },
  15354. sitting: {
  15355. height: math.unit(7 / 1.8, "feet"),
  15356. weight: math.unit(150, "lb"),
  15357. name: "Sitting",
  15358. image: {
  15359. source: "./media/characters/ian-corvid/sitting.svg",
  15360. extra: 1400 / 1269,
  15361. bottom: 0.15
  15362. }
  15363. },
  15364. },
  15365. [
  15366. {
  15367. name: "Tiny Microw",
  15368. height: math.unit(1, "inch")
  15369. },
  15370. {
  15371. name: "Microw",
  15372. height: math.unit(6, "inches")
  15373. },
  15374. {
  15375. name: "Crow",
  15376. height: math.unit(7 + 1 / 12, "feet"),
  15377. default: true
  15378. },
  15379. {
  15380. name: "Macrow",
  15381. height: math.unit(176, "feet")
  15382. },
  15383. ]
  15384. ))
  15385. characterMakers.push(() => makeCharacter(
  15386. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15387. {
  15388. front: {
  15389. height: math.unit(5 + 7 / 12, "feet"),
  15390. weight: math.unit(147, "lb"),
  15391. name: "Front",
  15392. image: {
  15393. source: "./media/characters/natalie-kellon/front.svg",
  15394. extra: 1214 / 1141,
  15395. bottom: 0.02
  15396. }
  15397. },
  15398. },
  15399. [
  15400. {
  15401. name: "Micro",
  15402. height: math.unit(1 / 16, "inch")
  15403. },
  15404. {
  15405. name: "Tiny",
  15406. height: math.unit(4, "inches")
  15407. },
  15408. {
  15409. name: "Normal",
  15410. height: math.unit(5 + 7 / 12, "feet"),
  15411. default: true
  15412. },
  15413. {
  15414. name: "Amazon",
  15415. height: math.unit(12, "feet")
  15416. },
  15417. {
  15418. name: "Giantess",
  15419. height: math.unit(160, "meters")
  15420. },
  15421. {
  15422. name: "Titaness",
  15423. height: math.unit(800, "meters")
  15424. },
  15425. ]
  15426. ))
  15427. characterMakers.push(() => makeCharacter(
  15428. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15429. {
  15430. front: {
  15431. height: math.unit(6, "feet"),
  15432. weight: math.unit(150, "lb"),
  15433. name: "Front",
  15434. image: {
  15435. source: "./media/characters/alluria/front.svg",
  15436. extra: 806 / 738,
  15437. bottom: 0.01
  15438. }
  15439. },
  15440. side: {
  15441. height: math.unit(6, "feet"),
  15442. weight: math.unit(150, "lb"),
  15443. name: "Side",
  15444. image: {
  15445. source: "./media/characters/alluria/side.svg",
  15446. extra: 800 / 750,
  15447. }
  15448. },
  15449. back: {
  15450. height: math.unit(6, "feet"),
  15451. weight: math.unit(150, "lb"),
  15452. name: "Back",
  15453. image: {
  15454. source: "./media/characters/alluria/back.svg",
  15455. extra: 806 / 738,
  15456. }
  15457. },
  15458. frontMaid: {
  15459. height: math.unit(6, "feet"),
  15460. weight: math.unit(150, "lb"),
  15461. name: "Front (Maid)",
  15462. image: {
  15463. source: "./media/characters/alluria/front-maid.svg",
  15464. extra: 806 / 738,
  15465. bottom: 0.01
  15466. }
  15467. },
  15468. sideMaid: {
  15469. height: math.unit(6, "feet"),
  15470. weight: math.unit(150, "lb"),
  15471. name: "Side (Maid)",
  15472. image: {
  15473. source: "./media/characters/alluria/side-maid.svg",
  15474. extra: 800 / 750,
  15475. bottom: 0.005
  15476. }
  15477. },
  15478. backMaid: {
  15479. height: math.unit(6, "feet"),
  15480. weight: math.unit(150, "lb"),
  15481. name: "Back (Maid)",
  15482. image: {
  15483. source: "./media/characters/alluria/back-maid.svg",
  15484. extra: 806 / 738,
  15485. }
  15486. },
  15487. },
  15488. [
  15489. {
  15490. name: "Micro",
  15491. height: math.unit(6, "inches"),
  15492. default: true
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15498. {
  15499. front: {
  15500. height: math.unit(6, "feet"),
  15501. weight: math.unit(150, "lb"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/kyle/front.svg",
  15505. extra: 1069 / 962,
  15506. bottom: 77.228 / 1727.45
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Macro",
  15513. height: math.unit(150, "feet"),
  15514. default: true
  15515. },
  15516. ]
  15517. ))
  15518. characterMakers.push(() => makeCharacter(
  15519. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15520. {
  15521. front: {
  15522. height: math.unit(6, "feet"),
  15523. weight: math.unit(300, "lb"),
  15524. name: "Front",
  15525. image: {
  15526. source: "./media/characters/duncan/front.svg",
  15527. extra: 1650 / 1482,
  15528. bottom: 0.05
  15529. }
  15530. },
  15531. },
  15532. [
  15533. {
  15534. name: "Macro",
  15535. height: math.unit(100, "feet"),
  15536. default: true
  15537. },
  15538. ]
  15539. ))
  15540. characterMakers.push(() => makeCharacter(
  15541. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15542. {
  15543. front: {
  15544. height: math.unit(5 + 4 / 12, "feet"),
  15545. weight: math.unit(220, "lb"),
  15546. name: "Front",
  15547. image: {
  15548. source: "./media/characters/memory/front.svg",
  15549. extra: 3641 / 3545,
  15550. bottom: 0.03
  15551. }
  15552. },
  15553. back: {
  15554. height: math.unit(5 + 4 / 12, "feet"),
  15555. weight: math.unit(220, "lb"),
  15556. name: "Back",
  15557. image: {
  15558. source: "./media/characters/memory/back.svg",
  15559. extra: 3641 / 3545,
  15560. bottom: 0.025
  15561. }
  15562. },
  15563. frontSkirt: {
  15564. height: math.unit(5 + 4 / 12, "feet"),
  15565. weight: math.unit(220, "lb"),
  15566. name: "Front (Skirt)",
  15567. image: {
  15568. source: "./media/characters/memory/front-skirt.svg",
  15569. extra: 3641 / 3545,
  15570. bottom: 0.03
  15571. }
  15572. },
  15573. frontDress: {
  15574. height: math.unit(5 + 4 / 12, "feet"),
  15575. weight: math.unit(220, "lb"),
  15576. name: "Front (Dress)",
  15577. image: {
  15578. source: "./media/characters/memory/front-dress.svg",
  15579. extra: 3641 / 3545,
  15580. bottom: 0.03
  15581. }
  15582. },
  15583. },
  15584. [
  15585. {
  15586. name: "Micro",
  15587. height: math.unit(6, "inches"),
  15588. default: true
  15589. },
  15590. {
  15591. name: "Normal",
  15592. height: math.unit(5 + 4 / 12, "feet")
  15593. },
  15594. ]
  15595. ))
  15596. characterMakers.push(() => makeCharacter(
  15597. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15598. {
  15599. front: {
  15600. height: math.unit(4 + 11 / 12, "feet"),
  15601. weight: math.unit(100, "lb"),
  15602. name: "Front",
  15603. image: {
  15604. source: "./media/characters/luno/front.svg",
  15605. extra: 1535 / 1487,
  15606. bottom: 0.03
  15607. }
  15608. },
  15609. },
  15610. [
  15611. {
  15612. name: "Micro",
  15613. height: math.unit(3, "inches")
  15614. },
  15615. {
  15616. name: "Normal",
  15617. height: math.unit(4 + 11 / 12, "feet"),
  15618. default: true
  15619. },
  15620. {
  15621. name: "Macro",
  15622. height: math.unit(300, "feet")
  15623. },
  15624. {
  15625. name: "Megamacro",
  15626. height: math.unit(700, "miles")
  15627. },
  15628. ]
  15629. ))
  15630. characterMakers.push(() => makeCharacter(
  15631. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15632. {
  15633. front: {
  15634. height: math.unit(6 + 2 / 12, "feet"),
  15635. weight: math.unit(170, "lb"),
  15636. name: "Front",
  15637. image: {
  15638. source: "./media/characters/jamesy/front.svg",
  15639. extra: 440 / 382,
  15640. bottom: 0.005
  15641. }
  15642. },
  15643. },
  15644. [
  15645. {
  15646. name: "Micro",
  15647. height: math.unit(3, "inches")
  15648. },
  15649. {
  15650. name: "Normal",
  15651. height: math.unit(6 + 2 / 12, "feet"),
  15652. default: true
  15653. },
  15654. {
  15655. name: "Macro",
  15656. height: math.unit(300, "feet")
  15657. },
  15658. {
  15659. name: "Megamacro",
  15660. height: math.unit(700, "miles")
  15661. },
  15662. ]
  15663. ))
  15664. characterMakers.push(() => makeCharacter(
  15665. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15666. {
  15667. front: {
  15668. height: math.unit(6, "feet"),
  15669. weight: math.unit(160, "lb"),
  15670. name: "Front",
  15671. image: {
  15672. source: "./media/characters/mark/front.svg",
  15673. extra: 3300 / 3100,
  15674. bottom: 136.42 / 3440.47
  15675. }
  15676. },
  15677. },
  15678. [
  15679. {
  15680. name: "Macro",
  15681. height: math.unit(120, "meters")
  15682. },
  15683. {
  15684. name: "Bigger Macro",
  15685. height: math.unit(350, "meters")
  15686. },
  15687. {
  15688. name: "Megamacro",
  15689. height: math.unit(8, "km"),
  15690. default: true
  15691. },
  15692. {
  15693. name: "Continental",
  15694. height: math.unit(4550, "km")
  15695. },
  15696. {
  15697. name: "Planetary",
  15698. height: math.unit(65000, "km")
  15699. },
  15700. ]
  15701. ))
  15702. characterMakers.push(() => makeCharacter(
  15703. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15704. {
  15705. front: {
  15706. height: math.unit(6, "feet"),
  15707. weight: math.unit(400, "lb"),
  15708. name: "Front",
  15709. image: {
  15710. source: "./media/characters/mac/front.svg",
  15711. extra: 1048 / 987.7,
  15712. bottom: 60 / 1107.6,
  15713. }
  15714. },
  15715. },
  15716. [
  15717. {
  15718. name: "Macro",
  15719. height: math.unit(500, "feet"),
  15720. default: true
  15721. },
  15722. ]
  15723. ))
  15724. characterMakers.push(() => makeCharacter(
  15725. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15726. {
  15727. front: {
  15728. height: math.unit(5 + 2 / 12, "feet"),
  15729. weight: math.unit(190, "lb"),
  15730. name: "Front",
  15731. image: {
  15732. source: "./media/characters/bari/front.svg",
  15733. extra: 3156 / 2880,
  15734. bottom: 0.03
  15735. }
  15736. },
  15737. back: {
  15738. height: math.unit(5 + 2 / 12, "feet"),
  15739. weight: math.unit(190, "lb"),
  15740. name: "Back",
  15741. image: {
  15742. source: "./media/characters/bari/back.svg",
  15743. extra: 3260 / 2834,
  15744. bottom: 0.025
  15745. }
  15746. },
  15747. frontPlush: {
  15748. height: math.unit(5 + 2 / 12, "feet"),
  15749. weight: math.unit(190, "lb"),
  15750. name: "Front (Plush)",
  15751. image: {
  15752. source: "./media/characters/bari/front-plush.svg",
  15753. extra: 1112 / 1061,
  15754. bottom: 0.002
  15755. }
  15756. },
  15757. },
  15758. [
  15759. {
  15760. name: "Micro",
  15761. height: math.unit(3, "inches")
  15762. },
  15763. {
  15764. name: "Normal",
  15765. height: math.unit(5 + 2 / 12, "feet"),
  15766. default: true
  15767. },
  15768. {
  15769. name: "Macro",
  15770. height: math.unit(20, "feet")
  15771. },
  15772. ]
  15773. ))
  15774. characterMakers.push(() => makeCharacter(
  15775. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15776. {
  15777. front: {
  15778. height: math.unit(6 + 1 / 12, "feet"),
  15779. weight: math.unit(275, "lb"),
  15780. name: "Front",
  15781. image: {
  15782. source: "./media/characters/hunter-misha-raven/front.svg"
  15783. }
  15784. },
  15785. },
  15786. [
  15787. {
  15788. name: "Mortal",
  15789. height: math.unit(6 + 1 / 12, "feet")
  15790. },
  15791. {
  15792. name: "Divine",
  15793. height: math.unit(1.12134e34, "parsecs"),
  15794. default: true
  15795. },
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15800. {
  15801. front: {
  15802. height: math.unit(6 + 3 / 12, "feet"),
  15803. weight: math.unit(220, "lb"),
  15804. name: "Front",
  15805. image: {
  15806. source: "./media/characters/max-calore/front.svg",
  15807. extra: 1700 / 1648,
  15808. bottom: 0.01
  15809. }
  15810. },
  15811. back: {
  15812. height: math.unit(6 + 3 / 12, "feet"),
  15813. weight: math.unit(220, "lb"),
  15814. name: "Back",
  15815. image: {
  15816. source: "./media/characters/max-calore/back.svg",
  15817. extra: 1700 / 1648,
  15818. bottom: 0.01
  15819. }
  15820. },
  15821. },
  15822. [
  15823. {
  15824. name: "Normal",
  15825. height: math.unit(6 + 3 / 12, "feet"),
  15826. default: true
  15827. },
  15828. ]
  15829. ))
  15830. characterMakers.push(() => makeCharacter(
  15831. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15832. {
  15833. side: {
  15834. height: math.unit(2 + 8 / 12, "feet"),
  15835. weight: math.unit(99, "lb"),
  15836. name: "Side",
  15837. image: {
  15838. source: "./media/characters/aspen/side.svg",
  15839. extra: 152 / 138,
  15840. bottom: 0.032
  15841. }
  15842. },
  15843. },
  15844. [
  15845. {
  15846. name: "Normal",
  15847. height: math.unit(2 + 8 / 12, "feet"),
  15848. default: true
  15849. },
  15850. ]
  15851. ))
  15852. characterMakers.push(() => makeCharacter(
  15853. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15854. {
  15855. side: {
  15856. height: math.unit(3 + 2 / 12, "feet"),
  15857. weight: math.unit(224, "lb"),
  15858. name: "Side",
  15859. image: {
  15860. source: "./media/characters/sheila-feral-wolf/side.svg",
  15861. extra: 179 / 166,
  15862. bottom: 0.03
  15863. }
  15864. },
  15865. },
  15866. [
  15867. {
  15868. name: "Normal",
  15869. height: math.unit(3 + 2 / 12, "feet"),
  15870. default: true
  15871. },
  15872. ]
  15873. ))
  15874. characterMakers.push(() => makeCharacter(
  15875. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15876. {
  15877. side: {
  15878. height: math.unit(1 + 9 / 12, "feet"),
  15879. weight: math.unit(38, "lb"),
  15880. name: "Side",
  15881. image: {
  15882. source: "./media/characters/michelle/side.svg",
  15883. extra: 147 / 136.7,
  15884. bottom: 0.03
  15885. }
  15886. },
  15887. },
  15888. [
  15889. {
  15890. name: "Normal",
  15891. height: math.unit(1 + 9 / 12, "feet"),
  15892. default: true
  15893. },
  15894. ]
  15895. ))
  15896. characterMakers.push(() => makeCharacter(
  15897. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15898. {
  15899. front: {
  15900. height: math.unit(1 + 1 / 12, "feet"),
  15901. weight: math.unit(18, "lb"),
  15902. name: "Front",
  15903. image: {
  15904. source: "./media/characters/nino/front.svg"
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Normal",
  15911. height: math.unit(1 + 1 / 12, "feet"),
  15912. default: true
  15913. },
  15914. ]
  15915. ))
  15916. characterMakers.push(() => makeCharacter(
  15917. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15918. {
  15919. front: {
  15920. height: math.unit(1, "feet"),
  15921. weight: math.unit(16, "lb"),
  15922. name: "Front",
  15923. image: {
  15924. source: "./media/characters/viola/front.svg"
  15925. }
  15926. },
  15927. },
  15928. [
  15929. {
  15930. name: "Normal",
  15931. height: math.unit(1, "feet"),
  15932. default: true
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15938. {
  15939. front: {
  15940. height: math.unit(6 + 5 / 12, "feet"),
  15941. weight: math.unit(580, "lb"),
  15942. name: "Front",
  15943. image: {
  15944. source: "./media/characters/atlas/front.svg",
  15945. extra: 298.5 / 290,
  15946. bottom: 0.015
  15947. }
  15948. },
  15949. },
  15950. [
  15951. {
  15952. name: "Normal",
  15953. height: math.unit(6 + 5 / 12, "feet"),
  15954. default: true
  15955. },
  15956. ]
  15957. ))
  15958. characterMakers.push(() => makeCharacter(
  15959. { name: "Davy", species: ["cat"], tags: ["feral"] },
  15960. {
  15961. side: {
  15962. height: math.unit(1 + 10 / 12, "feet"),
  15963. weight: math.unit(25, "lb"),
  15964. name: "Side",
  15965. image: {
  15966. source: "./media/characters/davy/side.svg",
  15967. extra: 200 / 170,
  15968. bottom: 0.01
  15969. }
  15970. },
  15971. },
  15972. [
  15973. {
  15974. name: "Normal",
  15975. height: math.unit(1 + 10 / 12, "feet"),
  15976. default: true
  15977. },
  15978. ]
  15979. ))
  15980. characterMakers.push(() => makeCharacter(
  15981. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  15982. {
  15983. side: {
  15984. height: math.unit(4 + 8 / 12, "feet"),
  15985. weight: math.unit(166, "lb"),
  15986. name: "Side",
  15987. image: {
  15988. source: "./media/characters/fiona/side.svg",
  15989. extra: 232 / 220,
  15990. bottom: 0.03
  15991. }
  15992. },
  15993. },
  15994. [
  15995. {
  15996. name: "Normal",
  15997. height: math.unit(4 + 8 / 12, "feet"),
  15998. default: true
  15999. },
  16000. ]
  16001. ))
  16002. characterMakers.push(() => makeCharacter(
  16003. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16004. {
  16005. front: {
  16006. height: math.unit(2, "feet"),
  16007. weight: math.unit(62, "lb"),
  16008. name: "Front",
  16009. image: {
  16010. source: "./media/characters/lyla/front.svg",
  16011. bottom: 0.1
  16012. }
  16013. },
  16014. },
  16015. [
  16016. {
  16017. name: "Normal",
  16018. height: math.unit(2, "feet"),
  16019. default: true
  16020. },
  16021. ]
  16022. ))
  16023. characterMakers.push(() => makeCharacter(
  16024. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16025. {
  16026. side: {
  16027. height: math.unit(1.8, "feet"),
  16028. weight: math.unit(44, "lb"),
  16029. name: "Side",
  16030. image: {
  16031. source: "./media/characters/perseus/side.svg",
  16032. bottom: 0.21
  16033. }
  16034. },
  16035. },
  16036. [
  16037. {
  16038. name: "Normal",
  16039. height: math.unit(1.8, "feet"),
  16040. default: true
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16046. {
  16047. side: {
  16048. height: math.unit(4 + 2 / 12, "feet"),
  16049. weight: math.unit(20, "lb"),
  16050. name: "Side",
  16051. image: {
  16052. source: "./media/characters/remus/side.svg"
  16053. }
  16054. },
  16055. },
  16056. [
  16057. {
  16058. name: "Normal",
  16059. height: math.unit(4 + 2 / 12, "feet"),
  16060. default: true
  16061. },
  16062. ]
  16063. ))
  16064. characterMakers.push(() => makeCharacter(
  16065. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16066. {
  16067. front: {
  16068. height: math.unit(4 + 11 / 12, "feet"),
  16069. weight: math.unit(114, "lb"),
  16070. name: "Front",
  16071. image: {
  16072. source: "./media/characters/raf/front.svg",
  16073. bottom: 0.01
  16074. }
  16075. },
  16076. side: {
  16077. height: math.unit(4 + 11 / 12, "feet"),
  16078. weight: math.unit(114, "lb"),
  16079. name: "Side",
  16080. image: {
  16081. source: "./media/characters/raf/side.svg",
  16082. bottom: 0.005
  16083. }
  16084. },
  16085. },
  16086. [
  16087. {
  16088. name: "Micro",
  16089. height: math.unit(2, "inches")
  16090. },
  16091. {
  16092. name: "Normal",
  16093. height: math.unit(4 + 11 / 12, "feet"),
  16094. default: true
  16095. },
  16096. {
  16097. name: "Macro",
  16098. height: math.unit(70, "feet")
  16099. },
  16100. ]
  16101. ))
  16102. characterMakers.push(() => makeCharacter(
  16103. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16104. {
  16105. front: {
  16106. height: math.unit(1.5, "meters"),
  16107. weight: math.unit(68, "kg"),
  16108. name: "Front",
  16109. image: {
  16110. source: "./media/characters/liam-einarr/front.svg",
  16111. extra: 2822 / 2666
  16112. }
  16113. },
  16114. back: {
  16115. height: math.unit(1.5, "meters"),
  16116. weight: math.unit(68, "kg"),
  16117. name: "Back",
  16118. image: {
  16119. source: "./media/characters/liam-einarr/back.svg",
  16120. extra: 2822 / 2666,
  16121. bottom: 0.015
  16122. }
  16123. },
  16124. },
  16125. [
  16126. {
  16127. name: "Normal",
  16128. height: math.unit(1.5, "meters"),
  16129. default: true
  16130. },
  16131. {
  16132. name: "Macro",
  16133. height: math.unit(150, "meters")
  16134. },
  16135. {
  16136. name: "Megamacro",
  16137. height: math.unit(35, "km")
  16138. },
  16139. ]
  16140. ))
  16141. characterMakers.push(() => makeCharacter(
  16142. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16143. {
  16144. front: {
  16145. height: math.unit(6, "feet"),
  16146. weight: math.unit(75, "kg"),
  16147. name: "Front",
  16148. image: {
  16149. source: "./media/characters/linda/front.svg",
  16150. extra: 930 / 874,
  16151. bottom: 0.004
  16152. }
  16153. },
  16154. },
  16155. [
  16156. {
  16157. name: "Normal",
  16158. height: math.unit(6, "feet"),
  16159. default: true
  16160. },
  16161. ]
  16162. ))
  16163. characterMakers.push(() => makeCharacter(
  16164. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16165. {
  16166. front: {
  16167. height: math.unit(6 + 8 / 12, "feet"),
  16168. weight: math.unit(220, "lb"),
  16169. name: "Front",
  16170. image: {
  16171. source: "./media/characters/caylex/front.svg",
  16172. extra: 821 / 772,
  16173. bottom: 0.07
  16174. }
  16175. },
  16176. back: {
  16177. height: math.unit(6 + 8 / 12, "feet"),
  16178. weight: math.unit(220, "lb"),
  16179. name: "Back",
  16180. image: {
  16181. source: "./media/characters/caylex/back.svg",
  16182. extra: 821 / 772,
  16183. bottom: 0.022
  16184. }
  16185. },
  16186. hand: {
  16187. height: math.unit(1.25, "feet"),
  16188. name: "Hand",
  16189. image: {
  16190. source: "./media/characters/caylex/hand.svg"
  16191. }
  16192. },
  16193. foot: {
  16194. height: math.unit(1.6, "feet"),
  16195. name: "Foot",
  16196. image: {
  16197. source: "./media/characters/caylex/foot.svg"
  16198. }
  16199. },
  16200. armored: {
  16201. height: math.unit(6 + 8 / 12, "feet"),
  16202. weight: math.unit(250, "lb"),
  16203. name: "Armored",
  16204. image: {
  16205. source: "./media/characters/caylex/armored.svg",
  16206. extra: 1420 / 1310,
  16207. bottom: 0.045
  16208. }
  16209. },
  16210. },
  16211. [
  16212. {
  16213. name: "Normal",
  16214. height: math.unit(6 + 8 / 12, "feet"),
  16215. default: true
  16216. },
  16217. {
  16218. name: "Normal+",
  16219. height: math.unit(12, "feet")
  16220. },
  16221. ]
  16222. ))
  16223. characterMakers.push(() => makeCharacter(
  16224. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16225. {
  16226. front: {
  16227. height: math.unit(7 + 6 / 12, "feet"),
  16228. weight: math.unit(288, "lb"),
  16229. name: "Front",
  16230. image: {
  16231. source: "./media/characters/alana/front.svg",
  16232. extra: 679 / 653,
  16233. bottom: 22.5 / 701
  16234. }
  16235. },
  16236. },
  16237. [
  16238. {
  16239. name: "Normal",
  16240. height: math.unit(7 + 6 / 12, "feet")
  16241. },
  16242. {
  16243. name: "Large",
  16244. height: math.unit(50, "feet")
  16245. },
  16246. {
  16247. name: "Macro",
  16248. height: math.unit(100, "feet"),
  16249. default: true
  16250. },
  16251. {
  16252. name: "Macro+",
  16253. height: math.unit(200, "feet")
  16254. },
  16255. ]
  16256. ))
  16257. characterMakers.push(() => makeCharacter(
  16258. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16259. {
  16260. front: {
  16261. height: math.unit(6 + 1 / 12, "feet"),
  16262. weight: math.unit(210, "lb"),
  16263. name: "Front",
  16264. image: {
  16265. source: "./media/characters/hasani/front.svg",
  16266. extra: 244 / 232,
  16267. bottom: 0.01
  16268. }
  16269. },
  16270. back: {
  16271. height: math.unit(6 + 1 / 12, "feet"),
  16272. weight: math.unit(210, "lb"),
  16273. name: "Back",
  16274. image: {
  16275. source: "./media/characters/hasani/back.svg",
  16276. extra: 244 / 232,
  16277. bottom: 0.01
  16278. }
  16279. },
  16280. },
  16281. [
  16282. {
  16283. name: "Normal",
  16284. height: math.unit(6 + 1 / 12, "feet")
  16285. },
  16286. {
  16287. name: "Macro",
  16288. height: math.unit(175, "feet"),
  16289. default: true
  16290. },
  16291. ]
  16292. ))
  16293. characterMakers.push(() => makeCharacter(
  16294. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16295. {
  16296. front: {
  16297. height: math.unit(1.82, "meters"),
  16298. weight: math.unit(140, "lb"),
  16299. name: "Front",
  16300. image: {
  16301. source: "./media/characters/nita/front.svg",
  16302. extra: 2473 / 2363,
  16303. bottom: 0.01
  16304. }
  16305. },
  16306. },
  16307. [
  16308. {
  16309. name: "Normal",
  16310. height: math.unit(1.82, "m")
  16311. },
  16312. {
  16313. name: "Macro",
  16314. height: math.unit(300, "m")
  16315. },
  16316. {
  16317. name: "Mistake Canon",
  16318. height: math.unit(0.5, "miles"),
  16319. default: true
  16320. },
  16321. {
  16322. name: "Big Mistake",
  16323. height: math.unit(13, "miles")
  16324. },
  16325. {
  16326. name: "Playing God",
  16327. height: math.unit(2450, "miles")
  16328. },
  16329. ]
  16330. ))
  16331. characterMakers.push(() => makeCharacter(
  16332. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16333. {
  16334. front: {
  16335. height: math.unit(4, "feet"),
  16336. weight: math.unit(120, "lb"),
  16337. name: "Front",
  16338. image: {
  16339. source: "./media/characters/shiriko/front.svg",
  16340. extra: 195 / 188
  16341. }
  16342. },
  16343. },
  16344. [
  16345. {
  16346. name: "Normal",
  16347. height: math.unit(4, "feet"),
  16348. default: true
  16349. },
  16350. ]
  16351. ))
  16352. characterMakers.push(() => makeCharacter(
  16353. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16354. {
  16355. front: {
  16356. height: math.unit(6, "feet"),
  16357. name: "front",
  16358. image: {
  16359. source: "./media/characters/deja/front.svg",
  16360. extra: 926 / 840,
  16361. bottom: 0.07
  16362. }
  16363. },
  16364. },
  16365. [
  16366. {
  16367. name: "Planck Length",
  16368. height: math.unit(1.6e-35, "meters")
  16369. },
  16370. {
  16371. name: "Normal",
  16372. height: math.unit(30.48, "meters"),
  16373. default: true
  16374. },
  16375. {
  16376. name: "Universal",
  16377. height: math.unit(8.8e26, "meters")
  16378. },
  16379. ]
  16380. ))
  16381. characterMakers.push(() => makeCharacter(
  16382. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16383. {
  16384. side: {
  16385. height: math.unit(8, "feet"),
  16386. weight: math.unit(6300, "lb"),
  16387. name: "Side",
  16388. image: {
  16389. source: "./media/characters/anima/side.svg",
  16390. bottom: 0.035
  16391. }
  16392. },
  16393. },
  16394. [
  16395. {
  16396. name: "Normal",
  16397. height: math.unit(8, "feet"),
  16398. default: true
  16399. },
  16400. ]
  16401. ))
  16402. characterMakers.push(() => makeCharacter(
  16403. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16404. {
  16405. front: {
  16406. height: math.unit(8, "feet"),
  16407. weight: math.unit(350, "lb"),
  16408. name: "Front",
  16409. image: {
  16410. source: "./media/characters/bianca/front.svg",
  16411. extra: 234 / 225,
  16412. bottom: 0.03
  16413. }
  16414. },
  16415. },
  16416. [
  16417. {
  16418. name: "Normal",
  16419. height: math.unit(8, "feet"),
  16420. default: true
  16421. },
  16422. ]
  16423. ))
  16424. characterMakers.push(() => makeCharacter(
  16425. { name: "Adinia", species: ["kelpie"], tags: ["anthro"] },
  16426. {
  16427. front: {
  16428. height: math.unit(6, "feet"),
  16429. weight: math.unit(150, "lb"),
  16430. name: "Front",
  16431. image: {
  16432. source: "./media/characters/adinia/front.svg",
  16433. extra: 1845 / 1672,
  16434. bottom: 0.02
  16435. }
  16436. },
  16437. back: {
  16438. height: math.unit(6, "feet"),
  16439. weight: math.unit(150, "lb"),
  16440. name: "Back",
  16441. image: {
  16442. source: "./media/characters/adinia/back.svg",
  16443. extra: 1845 / 1672,
  16444. bottom: 0.002
  16445. }
  16446. },
  16447. },
  16448. [
  16449. {
  16450. name: "Normal",
  16451. height: math.unit(11 + 5 / 12, "feet"),
  16452. default: true
  16453. },
  16454. ]
  16455. ))
  16456. characterMakers.push(() => makeCharacter(
  16457. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16458. {
  16459. front: {
  16460. height: math.unit(3, "meters"),
  16461. weight: math.unit(200, "kg"),
  16462. name: "Front",
  16463. image: {
  16464. source: "./media/characters/lykasa/front.svg",
  16465. extra: 1076 / 976,
  16466. bottom: 0.06
  16467. }
  16468. },
  16469. },
  16470. [
  16471. {
  16472. name: "Normal",
  16473. height: math.unit(3, "meters")
  16474. },
  16475. {
  16476. name: "Kaiju",
  16477. height: math.unit(120, "meters"),
  16478. default: true
  16479. },
  16480. {
  16481. name: "Mega Kaiju",
  16482. height: math.unit(240, "km")
  16483. },
  16484. {
  16485. name: "Giga Kaiju",
  16486. height: math.unit(400, "megameters")
  16487. },
  16488. {
  16489. name: "Tera Kaiju",
  16490. height: math.unit(800, "gigameters")
  16491. },
  16492. {
  16493. name: "Kaiju Dragon Goddess",
  16494. height: math.unit(26, "zettaparsecs")
  16495. },
  16496. ]
  16497. ))
  16498. characterMakers.push(() => makeCharacter(
  16499. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16500. {
  16501. side: {
  16502. height: math.unit(283 / 124 * 6, "feet"),
  16503. weight: math.unit(35000, "lb"),
  16504. name: "Side",
  16505. image: {
  16506. source: "./media/characters/malfaren/side.svg",
  16507. extra: 2500 / 1010,
  16508. bottom: 0.01
  16509. }
  16510. },
  16511. front: {
  16512. height: math.unit(22.36, "feet"),
  16513. weight: math.unit(35000, "lb"),
  16514. name: "Front",
  16515. image: {
  16516. source: "./media/characters/malfaren/front.svg",
  16517. extra: 1631 / 1476,
  16518. bottom: 0.01
  16519. }
  16520. },
  16521. maw: {
  16522. height: math.unit(6.9, "feet"),
  16523. name: "Maw",
  16524. image: {
  16525. source: "./media/characters/malfaren/maw.svg"
  16526. }
  16527. },
  16528. },
  16529. [
  16530. {
  16531. name: "Big",
  16532. height: math.unit(283 / 162 * 6, "feet"),
  16533. },
  16534. {
  16535. name: "Bigger",
  16536. height: math.unit(283 / 124 * 6, "feet")
  16537. },
  16538. {
  16539. name: "Massive",
  16540. height: math.unit(283 / 92 * 6, "feet"),
  16541. default: true
  16542. },
  16543. {
  16544. name: "👀💦",
  16545. height: math.unit(283 / 73 * 6, "feet"),
  16546. },
  16547. ]
  16548. ))
  16549. characterMakers.push(() => makeCharacter(
  16550. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16551. {
  16552. front: {
  16553. height: math.unit(1.7, "m"),
  16554. weight: math.unit(70, "kg"),
  16555. name: "Front",
  16556. image: {
  16557. source: "./media/characters/kernel/front.svg",
  16558. extra: 222 / 210,
  16559. bottom: 0.007
  16560. }
  16561. },
  16562. },
  16563. [
  16564. {
  16565. name: "Nano",
  16566. height: math.unit(17, "micrometers")
  16567. },
  16568. {
  16569. name: "Micro",
  16570. height: math.unit(1.7, "mm")
  16571. },
  16572. {
  16573. name: "Small",
  16574. height: math.unit(1.7, "cm")
  16575. },
  16576. {
  16577. name: "Normal",
  16578. height: math.unit(1.7, "m"),
  16579. default: true
  16580. },
  16581. ]
  16582. ))
  16583. characterMakers.push(() => makeCharacter(
  16584. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16585. {
  16586. front: {
  16587. height: math.unit(1.75, "meters"),
  16588. weight: math.unit(65, "kg"),
  16589. name: "Front",
  16590. image: {
  16591. source: "./media/characters/jayne-folest/front.svg",
  16592. extra: 2115 / 2007,
  16593. bottom: 0.02
  16594. }
  16595. },
  16596. back: {
  16597. height: math.unit(1.75, "meters"),
  16598. weight: math.unit(65, "kg"),
  16599. name: "Back",
  16600. image: {
  16601. source: "./media/characters/jayne-folest/back.svg",
  16602. extra: 2115 / 2007,
  16603. bottom: 0.005
  16604. }
  16605. },
  16606. frontClothed: {
  16607. height: math.unit(1.75, "meters"),
  16608. weight: math.unit(65, "kg"),
  16609. name: "Front (Clothed)",
  16610. image: {
  16611. source: "./media/characters/jayne-folest/front-clothed.svg",
  16612. extra: 2115 / 2007,
  16613. bottom: 0.035
  16614. }
  16615. },
  16616. hand: {
  16617. height: math.unit(1 / 1.260, "feet"),
  16618. name: "Hand",
  16619. image: {
  16620. source: "./media/characters/jayne-folest/hand.svg"
  16621. }
  16622. },
  16623. foot: {
  16624. height: math.unit(1 / 0.918, "feet"),
  16625. name: "Foot",
  16626. image: {
  16627. source: "./media/characters/jayne-folest/foot.svg"
  16628. }
  16629. },
  16630. },
  16631. [
  16632. {
  16633. name: "Micro",
  16634. height: math.unit(4, "cm")
  16635. },
  16636. {
  16637. name: "Normal",
  16638. height: math.unit(1.75, "meters")
  16639. },
  16640. {
  16641. name: "Macro",
  16642. height: math.unit(47.5, "meters"),
  16643. default: true
  16644. },
  16645. ]
  16646. ))
  16647. characterMakers.push(() => makeCharacter(
  16648. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16649. {
  16650. front: {
  16651. height: math.unit(180, "cm"),
  16652. weight: math.unit(70, "kg"),
  16653. name: "Front",
  16654. image: {
  16655. source: "./media/characters/algier/front.svg",
  16656. extra: 596 / 572,
  16657. bottom: 0.04
  16658. }
  16659. },
  16660. back: {
  16661. height: math.unit(180, "cm"),
  16662. weight: math.unit(70, "kg"),
  16663. name: "Back",
  16664. image: {
  16665. source: "./media/characters/algier/back.svg",
  16666. extra: 596 / 572,
  16667. bottom: 0.025
  16668. }
  16669. },
  16670. frontdressed: {
  16671. height: math.unit(180, "cm"),
  16672. weight: math.unit(150, "kg"),
  16673. name: "Front-dressed",
  16674. image: {
  16675. source: "./media/characters/algier/front-dressed.svg",
  16676. extra: 596 / 572,
  16677. bottom: 0.038
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Micro",
  16684. height: math.unit(5, "cm")
  16685. },
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(180, "cm"),
  16689. default: true
  16690. },
  16691. {
  16692. name: "Macro",
  16693. height: math.unit(64, "m")
  16694. },
  16695. ]
  16696. ))
  16697. characterMakers.push(() => makeCharacter(
  16698. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16699. {
  16700. upright: {
  16701. height: math.unit(7, "feet"),
  16702. weight: math.unit(300, "lb"),
  16703. name: "Upright",
  16704. image: {
  16705. source: "./media/characters/pretzel/upright.svg",
  16706. extra: 534 / 522,
  16707. bottom: 0.065
  16708. }
  16709. },
  16710. sprawling: {
  16711. height: math.unit(3.75, "feet"),
  16712. weight: math.unit(300, "lb"),
  16713. name: "Sprawling",
  16714. image: {
  16715. source: "./media/characters/pretzel/sprawling.svg",
  16716. extra: 314 / 281,
  16717. bottom: 0.1
  16718. }
  16719. },
  16720. tongue: {
  16721. height: math.unit(2, "feet"),
  16722. name: "Tongue",
  16723. image: {
  16724. source: "./media/characters/pretzel/tongue.svg"
  16725. }
  16726. },
  16727. },
  16728. [
  16729. {
  16730. name: "Normal",
  16731. height: math.unit(7, "feet"),
  16732. default: true
  16733. },
  16734. {
  16735. name: "Oversized",
  16736. height: math.unit(15, "feet")
  16737. },
  16738. {
  16739. name: "Huge",
  16740. height: math.unit(30, "feet")
  16741. },
  16742. {
  16743. name: "Macro",
  16744. height: math.unit(250, "feet")
  16745. },
  16746. ]
  16747. ))
  16748. characterMakers.push(() => makeCharacter(
  16749. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16750. {
  16751. sideFront: {
  16752. height: math.unit(5 + 2 / 12, "feet"),
  16753. weight: math.unit(120, "lb"),
  16754. name: "Front Side",
  16755. image: {
  16756. source: "./media/characters/roxi/side-front.svg",
  16757. extra: 2924 / 2717,
  16758. bottom: 0.08
  16759. }
  16760. },
  16761. sideBack: {
  16762. height: math.unit(5 + 2 / 12, "feet"),
  16763. weight: math.unit(120, "lb"),
  16764. name: "Back Side",
  16765. image: {
  16766. source: "./media/characters/roxi/side-back.svg",
  16767. extra: 2904 / 2693,
  16768. bottom: 0.06
  16769. }
  16770. },
  16771. front: {
  16772. height: math.unit(5 + 2 / 12, "feet"),
  16773. weight: math.unit(120, "lb"),
  16774. name: "Front",
  16775. image: {
  16776. source: "./media/characters/roxi/front.svg",
  16777. extra: 2028 / 1907,
  16778. bottom: 0.01
  16779. }
  16780. },
  16781. frontAlt: {
  16782. height: math.unit(5 + 2 / 12, "feet"),
  16783. weight: math.unit(120, "lb"),
  16784. name: "Front (Alt)",
  16785. image: {
  16786. source: "./media/characters/roxi/front-alt.svg",
  16787. extra: 1828 / 1798,
  16788. bottom: 0.01
  16789. }
  16790. },
  16791. sitting: {
  16792. height: math.unit(2.8, "feet"),
  16793. weight: math.unit(120, "lb"),
  16794. name: "Sitting",
  16795. image: {
  16796. source: "./media/characters/roxi/sitting.svg",
  16797. extra: 2660 / 2462,
  16798. bottom: 0.1
  16799. }
  16800. },
  16801. },
  16802. [
  16803. {
  16804. name: "Normal",
  16805. height: math.unit(5 + 2 / 12, "feet"),
  16806. default: true
  16807. },
  16808. ]
  16809. ))
  16810. characterMakers.push(() => makeCharacter(
  16811. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16812. {
  16813. side: {
  16814. height: math.unit(55, "feet"),
  16815. weight: math.unit(153, "tons"),
  16816. name: "Side",
  16817. image: {
  16818. source: "./media/characters/shadow/side.svg",
  16819. extra: 701 / 628,
  16820. bottom: 0.02
  16821. }
  16822. },
  16823. flying: {
  16824. height: math.unit(145, "feet"),
  16825. weight: math.unit(153, "tons"),
  16826. name: "Flying",
  16827. image: {
  16828. source: "./media/characters/shadow/flying.svg"
  16829. }
  16830. },
  16831. },
  16832. [
  16833. {
  16834. name: "Normal",
  16835. height: math.unit(55, "feet"),
  16836. default: true
  16837. },
  16838. ]
  16839. ))
  16840. characterMakers.push(() => makeCharacter(
  16841. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16842. {
  16843. front: {
  16844. height: math.unit(6, "feet"),
  16845. weight: math.unit(200, "lb"),
  16846. name: "Front",
  16847. image: {
  16848. source: "./media/characters/marcie/front.svg",
  16849. extra: 960 / 876,
  16850. bottom: 58 / 1017.87
  16851. }
  16852. },
  16853. },
  16854. [
  16855. {
  16856. name: "Macro",
  16857. height: math.unit(1, "mile"),
  16858. default: true
  16859. },
  16860. ]
  16861. ))
  16862. characterMakers.push(() => makeCharacter(
  16863. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16864. {
  16865. front: {
  16866. height: math.unit(7, "feet"),
  16867. weight: math.unit(200, "lb"),
  16868. name: "Front",
  16869. image: {
  16870. source: "./media/characters/kachina/front.svg",
  16871. extra: 1290.68 / 1119,
  16872. bottom: 36.5 / 1327.18
  16873. }
  16874. },
  16875. },
  16876. [
  16877. {
  16878. name: "Normal",
  16879. height: math.unit(7, "feet"),
  16880. default: true
  16881. },
  16882. ]
  16883. ))
  16884. characterMakers.push(() => makeCharacter(
  16885. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16886. {
  16887. looking: {
  16888. height: math.unit(2, "meters"),
  16889. weight: math.unit(300, "kg"),
  16890. name: "Looking",
  16891. image: {
  16892. source: "./media/characters/kash/looking.svg",
  16893. extra: 474 / 344,
  16894. bottom: 0.03
  16895. }
  16896. },
  16897. side: {
  16898. height: math.unit(2, "meters"),
  16899. weight: math.unit(300, "kg"),
  16900. name: "Side",
  16901. image: {
  16902. source: "./media/characters/kash/side.svg",
  16903. extra: 302 / 251,
  16904. bottom: 0.03
  16905. }
  16906. },
  16907. front: {
  16908. height: math.unit(2, "meters"),
  16909. weight: math.unit(300, "kg"),
  16910. name: "Front",
  16911. image: {
  16912. source: "./media/characters/kash/front.svg",
  16913. extra: 495 / 360,
  16914. bottom: 0.015
  16915. }
  16916. },
  16917. },
  16918. [
  16919. {
  16920. name: "Normal",
  16921. height: math.unit(2, "meters"),
  16922. default: true
  16923. },
  16924. {
  16925. name: "Big",
  16926. height: math.unit(3, "meters")
  16927. },
  16928. {
  16929. name: "Large",
  16930. height: math.unit(5, "meters")
  16931. },
  16932. ]
  16933. ))
  16934. characterMakers.push(() => makeCharacter(
  16935. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16936. {
  16937. feeding: {
  16938. height: math.unit(6.7, "feet"),
  16939. weight: math.unit(350, "lb"),
  16940. name: "Feeding",
  16941. image: {
  16942. source: "./media/characters/lalim/feeding.svg",
  16943. }
  16944. },
  16945. },
  16946. [
  16947. {
  16948. name: "Normal",
  16949. height: math.unit(6.7, "feet"),
  16950. default: true
  16951. },
  16952. ]
  16953. ))
  16954. characterMakers.push(() => makeCharacter(
  16955. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  16956. {
  16957. front: {
  16958. height: math.unit(9.5, "feet"),
  16959. weight: math.unit(600, "lb"),
  16960. name: "Front",
  16961. image: {
  16962. source: "./media/characters/de'vout/front.svg",
  16963. extra: 1443 / 1328,
  16964. bottom: 0.025
  16965. }
  16966. },
  16967. back: {
  16968. height: math.unit(9.5, "feet"),
  16969. weight: math.unit(600, "lb"),
  16970. name: "Back",
  16971. image: {
  16972. source: "./media/characters/de'vout/back.svg",
  16973. extra: 1443 / 1328
  16974. }
  16975. },
  16976. frontDressed: {
  16977. height: math.unit(9.5, "feet"),
  16978. weight: math.unit(600, "lb"),
  16979. name: "Front (Dressed",
  16980. image: {
  16981. source: "./media/characters/de'vout/front-dressed.svg",
  16982. extra: 1443 / 1328,
  16983. bottom: 0.025
  16984. }
  16985. },
  16986. backDressed: {
  16987. height: math.unit(9.5, "feet"),
  16988. weight: math.unit(600, "lb"),
  16989. name: "Back (Dressed",
  16990. image: {
  16991. source: "./media/characters/de'vout/back-dressed.svg",
  16992. extra: 1443 / 1328
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Normal",
  16999. height: math.unit(9.5, "feet"),
  17000. default: true
  17001. },
  17002. ]
  17003. ))
  17004. characterMakers.push(() => makeCharacter(
  17005. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17006. {
  17007. front: {
  17008. height: math.unit(8, "feet"),
  17009. weight: math.unit(225, "lb"),
  17010. name: "Front",
  17011. image: {
  17012. source: "./media/characters/talana/front.svg",
  17013. extra: 1410 / 1300,
  17014. bottom: 0.015
  17015. }
  17016. },
  17017. frontDressed: {
  17018. height: math.unit(8, "feet"),
  17019. weight: math.unit(225, "lb"),
  17020. name: "Front (Dressed",
  17021. image: {
  17022. source: "./media/characters/talana/front-dressed.svg",
  17023. extra: 1410 / 1300,
  17024. bottom: 0.015
  17025. }
  17026. },
  17027. },
  17028. [
  17029. {
  17030. name: "Normal",
  17031. height: math.unit(8, "feet"),
  17032. default: true
  17033. },
  17034. ]
  17035. ))
  17036. characterMakers.push(() => makeCharacter(
  17037. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17038. {
  17039. side: {
  17040. height: math.unit(7.2, "feet"),
  17041. weight: math.unit(150, "lb"),
  17042. name: "Side",
  17043. image: {
  17044. source: "./media/characters/xeauvok/side.svg",
  17045. extra: 1975 / 1523,
  17046. bottom: 0.07
  17047. }
  17048. },
  17049. },
  17050. [
  17051. {
  17052. name: "Normal",
  17053. height: math.unit(7.2, "feet"),
  17054. default: true
  17055. },
  17056. ]
  17057. ))
  17058. characterMakers.push(() => makeCharacter(
  17059. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17060. {
  17061. side: {
  17062. height: math.unit(10, "feet"),
  17063. weight: math.unit(900, "kg"),
  17064. name: "Side",
  17065. image: {
  17066. source: "./media/characters/zara/side.svg",
  17067. extra: 504 / 498
  17068. }
  17069. },
  17070. },
  17071. [
  17072. {
  17073. name: "Normal",
  17074. height: math.unit(10, "feet"),
  17075. default: true
  17076. },
  17077. ]
  17078. ))
  17079. characterMakers.push(() => makeCharacter(
  17080. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17081. {
  17082. side: {
  17083. height: math.unit(6, "feet"),
  17084. weight: math.unit(150, "lb"),
  17085. name: "Side",
  17086. image: {
  17087. source: "./media/characters/richard-dragon/side.svg",
  17088. extra: 845 / 340,
  17089. bottom: 0.017
  17090. }
  17091. },
  17092. maw: {
  17093. height: math.unit(2.97, "feet"),
  17094. name: "Maw",
  17095. image: {
  17096. source: "./media/characters/richard-dragon/maw.svg"
  17097. }
  17098. },
  17099. },
  17100. [
  17101. ]
  17102. ))
  17103. characterMakers.push(() => makeCharacter(
  17104. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17105. {
  17106. front: {
  17107. height: math.unit(4, "feet"),
  17108. weight: math.unit(100, "lb"),
  17109. name: "Front",
  17110. image: {
  17111. source: "./media/characters/richard-smeargle/front.svg",
  17112. extra: 2952 / 2820,
  17113. bottom: 0.028
  17114. }
  17115. },
  17116. },
  17117. [
  17118. {
  17119. name: "Normal",
  17120. height: math.unit(4, "feet"),
  17121. default: true
  17122. },
  17123. {
  17124. name: "Dynamax",
  17125. height: math.unit(20, "meters")
  17126. },
  17127. ]
  17128. ))
  17129. characterMakers.push(() => makeCharacter(
  17130. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17131. {
  17132. front: {
  17133. height: math.unit(6, "feet"),
  17134. weight: math.unit(110, "lb"),
  17135. name: "Front",
  17136. image: {
  17137. source: "./media/characters/klay/front.svg",
  17138. extra: 962 / 883,
  17139. bottom: 0.04
  17140. }
  17141. },
  17142. back: {
  17143. height: math.unit(6, "feet"),
  17144. weight: math.unit(110, "lb"),
  17145. name: "Back",
  17146. image: {
  17147. source: "./media/characters/klay/back.svg",
  17148. extra: 962 / 883
  17149. }
  17150. },
  17151. beans: {
  17152. height: math.unit(1.15, "feet"),
  17153. name: "Beans",
  17154. image: {
  17155. source: "./media/characters/klay/beans.svg"
  17156. }
  17157. },
  17158. },
  17159. [
  17160. {
  17161. name: "Micro",
  17162. height: math.unit(6, "inches")
  17163. },
  17164. {
  17165. name: "Mini",
  17166. height: math.unit(3, "feet")
  17167. },
  17168. {
  17169. name: "Normal",
  17170. height: math.unit(6, "feet"),
  17171. default: true
  17172. },
  17173. {
  17174. name: "Big",
  17175. height: math.unit(25, "feet")
  17176. },
  17177. {
  17178. name: "Macro",
  17179. height: math.unit(100, "feet")
  17180. },
  17181. {
  17182. name: "Megamacro",
  17183. height: math.unit(400, "feet")
  17184. },
  17185. ]
  17186. ))
  17187. characterMakers.push(() => makeCharacter(
  17188. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17189. {
  17190. front: {
  17191. height: math.unit(6, "feet"),
  17192. weight: math.unit(160, "lb"),
  17193. name: "Front",
  17194. image: {
  17195. source: "./media/characters/marcus/front.svg",
  17196. extra: 734 / 676,
  17197. bottom: 0.03
  17198. }
  17199. },
  17200. },
  17201. [
  17202. {
  17203. name: "Little",
  17204. height: math.unit(6, "feet")
  17205. },
  17206. {
  17207. name: "Normal",
  17208. height: math.unit(110, "feet"),
  17209. default: true
  17210. },
  17211. {
  17212. name: "Macro",
  17213. height: math.unit(250, "feet")
  17214. },
  17215. {
  17216. name: "Megamacro",
  17217. height: math.unit(1000, "feet")
  17218. },
  17219. ]
  17220. ))
  17221. characterMakers.push(() => makeCharacter(
  17222. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17223. {
  17224. front: {
  17225. height: math.unit(7, "feet"),
  17226. weight: math.unit(275, "lb"),
  17227. name: "Front",
  17228. image: {
  17229. source: "./media/characters/claude-delroute/front.svg",
  17230. extra: 230 / 214,
  17231. bottom: 0.007
  17232. }
  17233. },
  17234. side: {
  17235. height: math.unit(7, "feet"),
  17236. weight: math.unit(275, "lb"),
  17237. name: "Side",
  17238. image: {
  17239. source: "./media/characters/claude-delroute/side.svg",
  17240. extra: 222 / 214,
  17241. bottom: 0.01
  17242. }
  17243. },
  17244. back: {
  17245. height: math.unit(7, "feet"),
  17246. weight: math.unit(275, "lb"),
  17247. name: "Back",
  17248. image: {
  17249. source: "./media/characters/claude-delroute/back.svg",
  17250. extra: 230 / 214,
  17251. bottom: 0.015
  17252. }
  17253. },
  17254. maw: {
  17255. height: math.unit(0.6407, "meters"),
  17256. name: "Maw",
  17257. image: {
  17258. source: "./media/characters/claude-delroute/maw.svg"
  17259. }
  17260. },
  17261. },
  17262. [
  17263. {
  17264. name: "Normal",
  17265. height: math.unit(7, "feet"),
  17266. default: true
  17267. },
  17268. {
  17269. name: "Lorge",
  17270. height: math.unit(20, "feet")
  17271. },
  17272. ]
  17273. ))
  17274. characterMakers.push(() => makeCharacter(
  17275. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17276. {
  17277. front: {
  17278. height: math.unit(8 + 4 / 12, "feet"),
  17279. weight: math.unit(600, "lb"),
  17280. name: "Front",
  17281. image: {
  17282. source: "./media/characters/dragonien/front.svg",
  17283. extra: 100 / 94,
  17284. bottom: 3.3 / 103.3445
  17285. }
  17286. },
  17287. back: {
  17288. height: math.unit(8 + 4 / 12, "feet"),
  17289. weight: math.unit(600, "lb"),
  17290. name: "Back",
  17291. image: {
  17292. source: "./media/characters/dragonien/back.svg",
  17293. extra: 776 / 746,
  17294. bottom: 6.4 / 782.0616
  17295. }
  17296. },
  17297. foot: {
  17298. height: math.unit(1.54, "feet"),
  17299. name: "Foot",
  17300. image: {
  17301. source: "./media/characters/dragonien/foot.svg",
  17302. }
  17303. },
  17304. },
  17305. [
  17306. {
  17307. name: "Normal",
  17308. height: math.unit(8 + 4 / 12, "feet"),
  17309. default: true
  17310. },
  17311. {
  17312. name: "Macro",
  17313. height: math.unit(200, "feet")
  17314. },
  17315. {
  17316. name: "Megamacro",
  17317. height: math.unit(1, "mile")
  17318. },
  17319. {
  17320. name: "Gigamacro",
  17321. height: math.unit(1000, "miles")
  17322. },
  17323. ]
  17324. ))
  17325. characterMakers.push(() => makeCharacter(
  17326. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17327. {
  17328. front: {
  17329. height: math.unit(5 + 2 / 12, "feet"),
  17330. weight: math.unit(110, "lb"),
  17331. name: "Front",
  17332. image: {
  17333. source: "./media/characters/desta/front.svg",
  17334. extra: 767/726,
  17335. bottom: 11.7/779
  17336. }
  17337. },
  17338. back: {
  17339. height: math.unit(5 + 2 / 12, "feet"),
  17340. weight: math.unit(110, "lb"),
  17341. name: "Back",
  17342. image: {
  17343. source: "./media/characters/desta/back.svg",
  17344. extra: 777/728,
  17345. bottom: 6/784
  17346. }
  17347. },
  17348. frontAlt: {
  17349. height: math.unit(5 + 2 / 12, "feet"),
  17350. weight: math.unit(110, "lb"),
  17351. name: "Front",
  17352. image: {
  17353. source: "./media/characters/desta/front-alt.svg",
  17354. extra: 1482 / 1417
  17355. }
  17356. },
  17357. side: {
  17358. height: math.unit(5 + 2 / 12, "feet"),
  17359. weight: math.unit(110, "lb"),
  17360. name: "Side",
  17361. image: {
  17362. source: "./media/characters/desta/side.svg",
  17363. extra: 2579 / 2491,
  17364. bottom: 0.053
  17365. }
  17366. },
  17367. },
  17368. [
  17369. {
  17370. name: "Micro",
  17371. height: math.unit(6, "inches")
  17372. },
  17373. {
  17374. name: "Normal",
  17375. height: math.unit(5 + 2 / 12, "feet"),
  17376. default: true
  17377. },
  17378. {
  17379. name: "Macro",
  17380. height: math.unit(62, "feet")
  17381. },
  17382. {
  17383. name: "Megamacro",
  17384. height: math.unit(1800, "feet")
  17385. },
  17386. ]
  17387. ))
  17388. characterMakers.push(() => makeCharacter(
  17389. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17390. {
  17391. front: {
  17392. height: math.unit(10, "feet"),
  17393. weight: math.unit(700, "lb"),
  17394. name: "Front",
  17395. image: {
  17396. source: "./media/characters/storm-alystar/front.svg",
  17397. extra: 2112 / 1898,
  17398. bottom: 0.034
  17399. }
  17400. },
  17401. },
  17402. [
  17403. {
  17404. name: "Micro",
  17405. height: math.unit(3.5, "inches")
  17406. },
  17407. {
  17408. name: "Normal",
  17409. height: math.unit(10, "feet"),
  17410. default: true
  17411. },
  17412. {
  17413. name: "Macro",
  17414. height: math.unit(400, "feet")
  17415. },
  17416. {
  17417. name: "Deific",
  17418. height: math.unit(60, "miles")
  17419. },
  17420. ]
  17421. ))
  17422. characterMakers.push(() => makeCharacter(
  17423. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17424. {
  17425. front: {
  17426. height: math.unit(2.35, "meters"),
  17427. weight: math.unit(119, "kg"),
  17428. name: "Front",
  17429. image: {
  17430. source: "./media/characters/ilia/front.svg",
  17431. extra: 1285 / 1255,
  17432. bottom: 0.06
  17433. }
  17434. },
  17435. },
  17436. [
  17437. {
  17438. name: "Normal",
  17439. height: math.unit(2.35, "meters")
  17440. },
  17441. {
  17442. name: "Macro",
  17443. height: math.unit(140, "meters"),
  17444. default: true
  17445. },
  17446. {
  17447. name: "Megamacro",
  17448. height: math.unit(100, "miles")
  17449. },
  17450. ]
  17451. ))
  17452. characterMakers.push(() => makeCharacter(
  17453. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17454. {
  17455. front: {
  17456. height: math.unit(6 + 5 / 12, "feet"),
  17457. weight: math.unit(190, "lb"),
  17458. name: "Front",
  17459. image: {
  17460. source: "./media/characters/kingdead/front.svg",
  17461. extra: 1228 / 1177
  17462. }
  17463. },
  17464. },
  17465. [
  17466. {
  17467. name: "Micro",
  17468. height: math.unit(7, "inches")
  17469. },
  17470. {
  17471. name: "Normal",
  17472. height: math.unit(6 + 5 / 12, "feet")
  17473. },
  17474. {
  17475. name: "Macro",
  17476. height: math.unit(150, "feet"),
  17477. default: true
  17478. },
  17479. {
  17480. name: "Megamacro",
  17481. height: math.unit(200, "miles")
  17482. },
  17483. ]
  17484. ))
  17485. characterMakers.push(() => makeCharacter(
  17486. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17487. {
  17488. front: {
  17489. height: math.unit(8, "feet"),
  17490. weight: math.unit(600, "lb"),
  17491. name: "Front",
  17492. image: {
  17493. source: "./media/characters/kyrehx/front.svg",
  17494. extra: 1195 / 1095,
  17495. bottom: 0.034
  17496. }
  17497. },
  17498. },
  17499. [
  17500. {
  17501. name: "Micro",
  17502. height: math.unit(2, "inches")
  17503. },
  17504. {
  17505. name: "Normal",
  17506. height: math.unit(8, "feet"),
  17507. default: true
  17508. },
  17509. {
  17510. name: "Macro",
  17511. height: math.unit(255, "feet")
  17512. },
  17513. ]
  17514. ))
  17515. characterMakers.push(() => makeCharacter(
  17516. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17517. {
  17518. front: {
  17519. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17520. weight: math.unit(184, "lb"),
  17521. name: "Front",
  17522. image: {
  17523. source: "./media/characters/xang/front.svg",
  17524. extra: 845 / 755
  17525. }
  17526. },
  17527. },
  17528. [
  17529. {
  17530. name: "Normal",
  17531. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17532. default: true
  17533. },
  17534. {
  17535. name: "Macro",
  17536. height: math.unit(0.935 * 146, "feet")
  17537. },
  17538. {
  17539. name: "Megamacro",
  17540. height: math.unit(0.935 * 3, "miles")
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17546. {
  17547. frontDressed: {
  17548. height: math.unit(5 + 7 / 12, "feet"),
  17549. weight: math.unit(140, "lb"),
  17550. name: "Front (Dressed)",
  17551. image: {
  17552. source: "./media/characters/doc-weardno/front-dressed.svg",
  17553. extra: 263 / 234
  17554. }
  17555. },
  17556. backDressed: {
  17557. height: math.unit(5 + 7 / 12, "feet"),
  17558. weight: math.unit(140, "lb"),
  17559. name: "Back (Dressed)",
  17560. image: {
  17561. source: "./media/characters/doc-weardno/back-dressed.svg",
  17562. extra: 266 / 238
  17563. }
  17564. },
  17565. front: {
  17566. height: math.unit(5 + 7 / 12, "feet"),
  17567. weight: math.unit(140, "lb"),
  17568. name: "Front",
  17569. image: {
  17570. source: "./media/characters/doc-weardno/front.svg",
  17571. extra: 254 / 233
  17572. }
  17573. },
  17574. },
  17575. [
  17576. {
  17577. name: "Micro",
  17578. height: math.unit(3, "inches")
  17579. },
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(5 + 7 / 12, "feet"),
  17583. default: true
  17584. },
  17585. {
  17586. name: "Macro",
  17587. height: math.unit(25, "feet")
  17588. },
  17589. {
  17590. name: "Megamacro",
  17591. height: math.unit(2, "miles")
  17592. },
  17593. ]
  17594. ))
  17595. characterMakers.push(() => makeCharacter(
  17596. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17597. {
  17598. front: {
  17599. height: math.unit(6 + 2 / 12, "feet"),
  17600. weight: math.unit(153, "lb"),
  17601. name: "Front",
  17602. image: {
  17603. source: "./media/characters/seth-whilst/front.svg",
  17604. bottom: 0.07
  17605. }
  17606. },
  17607. },
  17608. [
  17609. {
  17610. name: "Micro",
  17611. height: math.unit(5, "inches")
  17612. },
  17613. {
  17614. name: "Normal",
  17615. height: math.unit(6 + 2 / 12, "feet"),
  17616. default: true
  17617. },
  17618. ]
  17619. ))
  17620. characterMakers.push(() => makeCharacter(
  17621. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17622. {
  17623. front: {
  17624. height: math.unit(3, "inches"),
  17625. weight: math.unit(8, "grams"),
  17626. name: "Front",
  17627. image: {
  17628. source: "./media/characters/pocket-jabari/front.svg",
  17629. extra: 1024 / 974,
  17630. bottom: 0.039
  17631. }
  17632. },
  17633. },
  17634. [
  17635. {
  17636. name: "Minimicro",
  17637. height: math.unit(8, "mm")
  17638. },
  17639. {
  17640. name: "Micro",
  17641. height: math.unit(3, "inches"),
  17642. default: true
  17643. },
  17644. {
  17645. name: "Normal",
  17646. height: math.unit(3, "feet")
  17647. },
  17648. ]
  17649. ))
  17650. characterMakers.push(() => makeCharacter(
  17651. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17652. {
  17653. front: {
  17654. height: math.unit(15, "feet"),
  17655. weight: math.unit(3280, "lb"),
  17656. name: "Front",
  17657. image: {
  17658. source: "./media/characters/sapphy/front.svg",
  17659. extra: 671 / 577,
  17660. bottom: 0.085
  17661. }
  17662. },
  17663. back: {
  17664. height: math.unit(15, "feet"),
  17665. weight: math.unit(3280, "lb"),
  17666. name: "Back",
  17667. image: {
  17668. source: "./media/characters/sapphy/back.svg",
  17669. extra: 631 / 607,
  17670. bottom: 0.045
  17671. }
  17672. },
  17673. },
  17674. [
  17675. {
  17676. name: "Normal",
  17677. height: math.unit(15, "feet")
  17678. },
  17679. {
  17680. name: "Casual Macro",
  17681. height: math.unit(120, "feet")
  17682. },
  17683. {
  17684. name: "Macro",
  17685. height: math.unit(2150, "feet"),
  17686. default: true
  17687. },
  17688. {
  17689. name: "Megamacro",
  17690. height: math.unit(8, "miles")
  17691. },
  17692. {
  17693. name: "Galaxy Mom",
  17694. height: math.unit(6, "megalightyears")
  17695. },
  17696. ]
  17697. ))
  17698. characterMakers.push(() => makeCharacter(
  17699. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17700. {
  17701. front: {
  17702. height: math.unit(6, "feet"),
  17703. weight: math.unit(170, "lb"),
  17704. name: "Front",
  17705. image: {
  17706. source: "./media/characters/kiro/front.svg",
  17707. extra: 1064 / 1012,
  17708. bottom: 0.052
  17709. }
  17710. },
  17711. },
  17712. [
  17713. {
  17714. name: "Micro",
  17715. height: math.unit(6, "inches")
  17716. },
  17717. {
  17718. name: "Normal",
  17719. height: math.unit(6, "feet"),
  17720. default: true
  17721. },
  17722. {
  17723. name: "Macro",
  17724. height: math.unit(72, "feet")
  17725. },
  17726. ]
  17727. ))
  17728. characterMakers.push(() => makeCharacter(
  17729. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17730. {
  17731. front: {
  17732. height: math.unit(5 + 9 / 12, "feet"),
  17733. weight: math.unit(175, "lb"),
  17734. name: "Front",
  17735. image: {
  17736. source: "./media/characters/irishfox/front.svg",
  17737. extra: 1912 / 1680,
  17738. bottom: 0.02
  17739. }
  17740. },
  17741. },
  17742. [
  17743. {
  17744. name: "Nano",
  17745. height: math.unit(1, "mm")
  17746. },
  17747. {
  17748. name: "Micro",
  17749. height: math.unit(2, "inches")
  17750. },
  17751. {
  17752. name: "Normal",
  17753. height: math.unit(5 + 9 / 12, "feet"),
  17754. default: true
  17755. },
  17756. {
  17757. name: "Macro",
  17758. height: math.unit(45, "feet")
  17759. },
  17760. ]
  17761. ))
  17762. characterMakers.push(() => makeCharacter(
  17763. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17764. {
  17765. front: {
  17766. height: math.unit(6 + 1 / 12, "feet"),
  17767. weight: math.unit(150, "lb"),
  17768. name: "Front",
  17769. image: {
  17770. source: "./media/characters/aronai-sieyes/front.svg",
  17771. extra: 1556 / 1480,
  17772. bottom: 0.015
  17773. }
  17774. },
  17775. side: {
  17776. height: math.unit(6 + 1 / 12, "feet"),
  17777. weight: math.unit(150, "lb"),
  17778. name: "Side",
  17779. image: {
  17780. source: "./media/characters/aronai-sieyes/side.svg",
  17781. extra: 1433 / 1390,
  17782. bottom: 0.0393
  17783. }
  17784. },
  17785. back: {
  17786. height: math.unit(6 + 1 / 12, "feet"),
  17787. weight: math.unit(150, "lb"),
  17788. name: "Back",
  17789. image: {
  17790. source: "./media/characters/aronai-sieyes/back.svg",
  17791. extra: 1544 / 1494,
  17792. bottom: 0.02
  17793. }
  17794. },
  17795. frontClothed: {
  17796. height: math.unit(6 + 1 / 12, "feet"),
  17797. weight: math.unit(150, "lb"),
  17798. name: "Front (Clothed)",
  17799. image: {
  17800. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17801. extra: 1582 / 1527
  17802. }
  17803. },
  17804. feral: {
  17805. height: math.unit(18, "feet"),
  17806. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17807. name: "Feral",
  17808. image: {
  17809. source: "./media/characters/aronai-sieyes/feral.svg",
  17810. extra: 1530 / 1240,
  17811. bottom: 0.035
  17812. }
  17813. },
  17814. },
  17815. [
  17816. {
  17817. name: "Micro",
  17818. height: math.unit(2, "inches")
  17819. },
  17820. {
  17821. name: "Normal",
  17822. height: math.unit(6 + 1 / 12, "feet"),
  17823. default: true
  17824. }
  17825. ]
  17826. ))
  17827. characterMakers.push(() => makeCharacter(
  17828. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17829. {
  17830. front: {
  17831. height: math.unit(12, "feet"),
  17832. weight: math.unit(410, "kg"),
  17833. name: "Front",
  17834. image: {
  17835. source: "./media/characters/xuna/front.svg",
  17836. extra: 2184 / 1980
  17837. }
  17838. },
  17839. side: {
  17840. height: math.unit(12, "feet"),
  17841. weight: math.unit(410, "kg"),
  17842. name: "Side",
  17843. image: {
  17844. source: "./media/characters/xuna/side.svg",
  17845. extra: 2184 / 1980
  17846. }
  17847. },
  17848. back: {
  17849. height: math.unit(12, "feet"),
  17850. weight: math.unit(410, "kg"),
  17851. name: "Back",
  17852. image: {
  17853. source: "./media/characters/xuna/back.svg",
  17854. extra: 2184 / 1980
  17855. }
  17856. },
  17857. },
  17858. [
  17859. {
  17860. name: "Nano glow",
  17861. height: math.unit(10, "nm")
  17862. },
  17863. {
  17864. name: "Micro floof",
  17865. height: math.unit(0.3, "m")
  17866. },
  17867. {
  17868. name: "Huggable softy boi",
  17869. height: math.unit(3.6576, "m"),
  17870. default: true
  17871. },
  17872. {
  17873. name: "Admirable floof",
  17874. height: math.unit(80, "meters")
  17875. },
  17876. {
  17877. name: "Gentle macro",
  17878. height: math.unit(300, "meters")
  17879. },
  17880. {
  17881. name: "Very careful floof",
  17882. height: math.unit(3200, "meters")
  17883. },
  17884. {
  17885. name: "The mega floof",
  17886. height: math.unit(36000, "meters")
  17887. },
  17888. {
  17889. name: "Giga-fur-Wicker",
  17890. height: math.unit(4800000, "meters")
  17891. },
  17892. {
  17893. name: "Licky world",
  17894. height: math.unit(20000000, "meters")
  17895. },
  17896. {
  17897. name: "Floofy cyan sun",
  17898. height: math.unit(1500000000, "meters")
  17899. },
  17900. {
  17901. name: "Milky Wicker",
  17902. height: math.unit(1000000000000000000000, "meters")
  17903. },
  17904. {
  17905. name: "The observing Wicker",
  17906. height: math.unit(999999999999999999999999999, "meters")
  17907. },
  17908. ]
  17909. ))
  17910. characterMakers.push(() => makeCharacter(
  17911. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17912. {
  17913. front: {
  17914. height: math.unit(5 + 9 / 12, "feet"),
  17915. weight: math.unit(150, "lb"),
  17916. name: "Front",
  17917. image: {
  17918. source: "./media/characters/arokha-sieyes/front.svg",
  17919. extra: 1425 / 1284,
  17920. bottom: 0.05
  17921. }
  17922. },
  17923. },
  17924. [
  17925. {
  17926. name: "Normal",
  17927. height: math.unit(5 + 9 / 12, "feet")
  17928. },
  17929. {
  17930. name: "Macro",
  17931. height: math.unit(30, "meters"),
  17932. default: true
  17933. },
  17934. ]
  17935. ))
  17936. characterMakers.push(() => makeCharacter(
  17937. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17938. {
  17939. front: {
  17940. height: math.unit(6, "feet"),
  17941. weight: math.unit(180, "lb"),
  17942. name: "Front",
  17943. image: {
  17944. source: "./media/characters/arokh-sieyes/front.svg",
  17945. extra: 1830 / 1769,
  17946. bottom: 0.01
  17947. }
  17948. },
  17949. },
  17950. [
  17951. {
  17952. name: "Normal",
  17953. height: math.unit(6, "feet")
  17954. },
  17955. {
  17956. name: "Macro",
  17957. height: math.unit(30, "meters"),
  17958. default: true
  17959. },
  17960. ]
  17961. ))
  17962. characterMakers.push(() => makeCharacter(
  17963. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  17964. {
  17965. side: {
  17966. height: math.unit(13 + 1 / 12, "feet"),
  17967. weight: math.unit(8.5, "tonnes"),
  17968. name: "Side",
  17969. image: {
  17970. source: "./media/characters/goldeneye/side.svg",
  17971. extra: 1182 / 778,
  17972. bottom: 0.067
  17973. }
  17974. },
  17975. paw: {
  17976. height: math.unit(3.4, "feet"),
  17977. name: "Paw",
  17978. image: {
  17979. source: "./media/characters/goldeneye/paw.svg"
  17980. }
  17981. },
  17982. },
  17983. [
  17984. {
  17985. name: "Normal",
  17986. height: math.unit(13 + 1 / 12, "feet"),
  17987. default: true
  17988. },
  17989. ]
  17990. ))
  17991. characterMakers.push(() => makeCharacter(
  17992. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  17993. {
  17994. front: {
  17995. height: math.unit(6 + 1 / 12, "feet"),
  17996. weight: math.unit(210, "lb"),
  17997. name: "Front",
  17998. image: {
  17999. source: "./media/characters/leonardo-lycheborne/front.svg",
  18000. extra: 390 / 365,
  18001. bottom: 0.032
  18002. }
  18003. },
  18004. side: {
  18005. height: math.unit(6 + 1 / 12, "feet"),
  18006. weight: math.unit(210, "lb"),
  18007. name: "Side",
  18008. image: {
  18009. source: "./media/characters/leonardo-lycheborne/side.svg",
  18010. extra: 390 / 365,
  18011. bottom: 0.005
  18012. }
  18013. },
  18014. back: {
  18015. height: math.unit(6 + 1 / 12, "feet"),
  18016. weight: math.unit(210, "lb"),
  18017. name: "Back",
  18018. image: {
  18019. source: "./media/characters/leonardo-lycheborne/back.svg",
  18020. extra: 392 / 366,
  18021. bottom: 0.01
  18022. }
  18023. },
  18024. hand: {
  18025. height: math.unit(1.08, "feet"),
  18026. name: "Hand",
  18027. image: {
  18028. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18029. }
  18030. },
  18031. foot: {
  18032. height: math.unit(1.32, "feet"),
  18033. name: "Foot",
  18034. image: {
  18035. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18036. }
  18037. },
  18038. were: {
  18039. height: math.unit(20, "feet"),
  18040. weight: math.unit(7800, "lb"),
  18041. name: "Were",
  18042. image: {
  18043. source: "./media/characters/leonardo-lycheborne/were.svg",
  18044. extra: 308 / 294,
  18045. bottom: 0.048
  18046. }
  18047. },
  18048. feral: {
  18049. height: math.unit(7.5, "feet"),
  18050. weight: math.unit(600, "lb"),
  18051. name: "Feral",
  18052. image: {
  18053. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18054. extra: 210 / 186,
  18055. bottom: 0.108
  18056. }
  18057. },
  18058. taur: {
  18059. height: math.unit(11, "feet"),
  18060. weight: math.unit(3300, "lb"),
  18061. name: "Taur",
  18062. image: {
  18063. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18064. extra: 320 / 303,
  18065. bottom: 0.025
  18066. }
  18067. },
  18068. barghest: {
  18069. height: math.unit(11, "feet"),
  18070. weight: math.unit(1300, "lb"),
  18071. name: "Barghest",
  18072. image: {
  18073. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18074. extra: 323 / 302,
  18075. bottom: 0.027
  18076. }
  18077. },
  18078. dick: {
  18079. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18080. name: "Dick",
  18081. image: {
  18082. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18083. }
  18084. },
  18085. dickWere: {
  18086. height: math.unit((20) / 3.8, "feet"),
  18087. name: "Dick (Were)",
  18088. image: {
  18089. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18090. }
  18091. },
  18092. },
  18093. [
  18094. {
  18095. name: "Normal",
  18096. height: math.unit(6 + 1 / 12, "feet"),
  18097. default: true
  18098. },
  18099. ]
  18100. ))
  18101. characterMakers.push(() => makeCharacter(
  18102. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18103. {
  18104. front: {
  18105. height: math.unit(10, "feet"),
  18106. weight: math.unit(350, "lb"),
  18107. name: "Front",
  18108. image: {
  18109. source: "./media/characters/jet/front.svg",
  18110. extra: 2050 / 1980,
  18111. bottom: 0.013
  18112. }
  18113. },
  18114. back: {
  18115. height: math.unit(10, "feet"),
  18116. weight: math.unit(350, "lb"),
  18117. name: "Back",
  18118. image: {
  18119. source: "./media/characters/jet/back.svg",
  18120. extra: 2050 / 1980,
  18121. bottom: 0.013
  18122. }
  18123. },
  18124. },
  18125. [
  18126. {
  18127. name: "Micro",
  18128. height: math.unit(6, "inches")
  18129. },
  18130. {
  18131. name: "Normal",
  18132. height: math.unit(10, "feet"),
  18133. default: true
  18134. },
  18135. {
  18136. name: "Macro",
  18137. height: math.unit(100, "feet")
  18138. },
  18139. ]
  18140. ))
  18141. characterMakers.push(() => makeCharacter(
  18142. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18143. {
  18144. front: {
  18145. height: math.unit(15, "feet"),
  18146. weight: math.unit(2800, "lb"),
  18147. name: "Front",
  18148. image: {
  18149. source: "./media/characters/tanarath/front.svg",
  18150. extra: 2392 / 2220,
  18151. bottom: 0.03
  18152. }
  18153. },
  18154. back: {
  18155. height: math.unit(15, "feet"),
  18156. weight: math.unit(2800, "lb"),
  18157. name: "Back",
  18158. image: {
  18159. source: "./media/characters/tanarath/back.svg",
  18160. extra: 2392 / 2220,
  18161. bottom: 0.03
  18162. }
  18163. },
  18164. },
  18165. [
  18166. {
  18167. name: "Normal",
  18168. height: math.unit(15, "feet"),
  18169. default: true
  18170. },
  18171. ]
  18172. ))
  18173. characterMakers.push(() => makeCharacter(
  18174. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18175. {
  18176. front: {
  18177. height: math.unit(7 + 1 / 12, "feet"),
  18178. weight: math.unit(175, "lb"),
  18179. name: "Front",
  18180. image: {
  18181. source: "./media/characters/patty-cattybatty/front.svg",
  18182. extra: 908 / 874,
  18183. bottom: 0.025
  18184. }
  18185. },
  18186. },
  18187. [
  18188. {
  18189. name: "Micro",
  18190. height: math.unit(1, "inch")
  18191. },
  18192. {
  18193. name: "Normal",
  18194. height: math.unit(7 + 1 / 12, "feet")
  18195. },
  18196. {
  18197. name: "Mini Macro",
  18198. height: math.unit(155, "feet")
  18199. },
  18200. {
  18201. name: "Macro",
  18202. height: math.unit(1077, "feet")
  18203. },
  18204. {
  18205. name: "Mega Macro",
  18206. height: math.unit(47650, "feet"),
  18207. default: true
  18208. },
  18209. {
  18210. name: "Giga Macro",
  18211. height: math.unit(440, "miles")
  18212. },
  18213. {
  18214. name: "Tera Macro",
  18215. height: math.unit(8700, "miles")
  18216. },
  18217. {
  18218. name: "Planetary Macro",
  18219. height: math.unit(32700, "miles")
  18220. },
  18221. {
  18222. name: "Solar Macro",
  18223. height: math.unit(550000, "miles")
  18224. },
  18225. {
  18226. name: "Celestial Macro",
  18227. height: math.unit(2.5, "AU")
  18228. },
  18229. ]
  18230. ))
  18231. characterMakers.push(() => makeCharacter(
  18232. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18233. {
  18234. front: {
  18235. height: math.unit(4 + 5 / 12, "feet"),
  18236. weight: math.unit(90, "lb"),
  18237. name: "Front",
  18238. image: {
  18239. source: "./media/characters/cappu/front.svg",
  18240. extra: 1247 / 1152,
  18241. bottom: 0.012
  18242. }
  18243. },
  18244. },
  18245. [
  18246. {
  18247. name: "Normal",
  18248. height: math.unit(4 + 5 / 12, "feet"),
  18249. default: true
  18250. },
  18251. ]
  18252. ))
  18253. characterMakers.push(() => makeCharacter(
  18254. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18255. {
  18256. frontDressed: {
  18257. height: math.unit(70, "cm"),
  18258. weight: math.unit(6, "kg"),
  18259. name: "Front (Dressed)",
  18260. image: {
  18261. source: "./media/characters/sebi/front-dressed.svg",
  18262. extra: 713.5 / 686.5,
  18263. bottom: 0.003
  18264. }
  18265. },
  18266. front: {
  18267. height: math.unit(70, "cm"),
  18268. weight: math.unit(5, "kg"),
  18269. name: "Front",
  18270. image: {
  18271. source: "./media/characters/sebi/front.svg",
  18272. extra: 713.5 / 686.5,
  18273. bottom: 0.003
  18274. }
  18275. }
  18276. },
  18277. [
  18278. {
  18279. name: "Normal",
  18280. height: math.unit(70, "cm"),
  18281. default: true
  18282. },
  18283. {
  18284. name: "Macro",
  18285. height: math.unit(8, "meters")
  18286. },
  18287. ]
  18288. ))
  18289. characterMakers.push(() => makeCharacter(
  18290. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18291. {
  18292. front: {
  18293. height: math.unit(6, "feet"),
  18294. weight: math.unit(150, "lb"),
  18295. name: "Front",
  18296. image: {
  18297. source: "./media/characters/typhek/front.svg",
  18298. extra: 1948 / 1929,
  18299. bottom: 0.025
  18300. }
  18301. },
  18302. side: {
  18303. height: math.unit(6, "feet"),
  18304. weight: math.unit(150, "lb"),
  18305. name: "Side",
  18306. image: {
  18307. source: "./media/characters/typhek/side.svg",
  18308. extra: 2034 / 2010,
  18309. bottom: 0.003
  18310. }
  18311. },
  18312. back: {
  18313. height: math.unit(6, "feet"),
  18314. weight: math.unit(150, "lb"),
  18315. name: "Back",
  18316. image: {
  18317. source: "./media/characters/typhek/back.svg",
  18318. extra: 2005 / 1978,
  18319. bottom: 0.004
  18320. }
  18321. },
  18322. palm: {
  18323. height: math.unit(1.2, "feet"),
  18324. name: "Palm",
  18325. image: {
  18326. source: "./media/characters/typhek/palm.svg"
  18327. }
  18328. },
  18329. fist: {
  18330. height: math.unit(1.1, "feet"),
  18331. name: "Fist",
  18332. image: {
  18333. source: "./media/characters/typhek/fist.svg"
  18334. }
  18335. },
  18336. foot: {
  18337. height: math.unit(1.57, "feet"),
  18338. name: "Foot",
  18339. image: {
  18340. source: "./media/characters/typhek/foot.svg"
  18341. }
  18342. },
  18343. sole: {
  18344. height: math.unit(2.05, "feet"),
  18345. name: "Sole",
  18346. image: {
  18347. source: "./media/characters/typhek/sole.svg"
  18348. }
  18349. },
  18350. },
  18351. [
  18352. {
  18353. name: "Macro",
  18354. height: math.unit(40, "stories"),
  18355. default: true
  18356. },
  18357. {
  18358. name: "Megamacro",
  18359. height: math.unit(1, "mile")
  18360. },
  18361. {
  18362. name: "Gigamacro",
  18363. height: math.unit(4000, "solarradii")
  18364. },
  18365. {
  18366. name: "Universal",
  18367. height: math.unit(1.1, "universes")
  18368. }
  18369. ]
  18370. ))
  18371. characterMakers.push(() => makeCharacter(
  18372. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18373. {
  18374. side: {
  18375. height: math.unit(5 + 7 / 12, "feet"),
  18376. weight: math.unit(150, "lb"),
  18377. name: "Side",
  18378. image: {
  18379. source: "./media/characters/kassy/side.svg",
  18380. extra: 1280 / 1225,
  18381. bottom: 0.002
  18382. }
  18383. },
  18384. front: {
  18385. height: math.unit(5 + 7 / 12, "feet"),
  18386. weight: math.unit(150, "lb"),
  18387. name: "Front",
  18388. image: {
  18389. source: "./media/characters/kassy/front.svg",
  18390. extra: 1280 / 1225,
  18391. bottom: 0.025
  18392. }
  18393. },
  18394. back: {
  18395. height: math.unit(5 + 7 / 12, "feet"),
  18396. weight: math.unit(150, "lb"),
  18397. name: "Back",
  18398. image: {
  18399. source: "./media/characters/kassy/back.svg",
  18400. extra: 1280 / 1225,
  18401. bottom: 0.002
  18402. }
  18403. },
  18404. foot: {
  18405. height: math.unit(1.266, "feet"),
  18406. name: "Foot",
  18407. image: {
  18408. source: "./media/characters/kassy/foot.svg"
  18409. }
  18410. },
  18411. },
  18412. [
  18413. {
  18414. name: "Normal",
  18415. height: math.unit(5 + 7 / 12, "feet")
  18416. },
  18417. {
  18418. name: "Macro",
  18419. height: math.unit(137, "feet"),
  18420. default: true
  18421. },
  18422. {
  18423. name: "Megamacro",
  18424. height: math.unit(1, "mile")
  18425. },
  18426. ]
  18427. ))
  18428. characterMakers.push(() => makeCharacter(
  18429. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18430. {
  18431. front: {
  18432. height: math.unit(6 + 1 / 12, "feet"),
  18433. weight: math.unit(200, "lb"),
  18434. name: "Front",
  18435. image: {
  18436. source: "./media/characters/neil/front.svg",
  18437. extra: 1326 / 1250,
  18438. bottom: 0.023
  18439. }
  18440. },
  18441. },
  18442. [
  18443. {
  18444. name: "Normal",
  18445. height: math.unit(6 + 1 / 12, "feet"),
  18446. default: true
  18447. },
  18448. {
  18449. name: "Macro",
  18450. height: math.unit(200, "feet")
  18451. },
  18452. ]
  18453. ))
  18454. characterMakers.push(() => makeCharacter(
  18455. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18456. {
  18457. front: {
  18458. height: math.unit(5 + 9 / 12, "feet"),
  18459. weight: math.unit(190, "lb"),
  18460. name: "Front",
  18461. image: {
  18462. source: "./media/characters/atticus/front.svg",
  18463. extra: 2934 / 2785,
  18464. bottom: 0.025
  18465. }
  18466. },
  18467. },
  18468. [
  18469. {
  18470. name: "Normal",
  18471. height: math.unit(5 + 9 / 12, "feet"),
  18472. default: true
  18473. },
  18474. {
  18475. name: "Macro",
  18476. height: math.unit(180, "feet")
  18477. },
  18478. ]
  18479. ))
  18480. characterMakers.push(() => makeCharacter(
  18481. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18482. {
  18483. side: {
  18484. height: math.unit(9, "feet"),
  18485. weight: math.unit(650, "lb"),
  18486. name: "Side",
  18487. image: {
  18488. source: "./media/characters/milo/side.svg",
  18489. extra: 2644 / 2310,
  18490. bottom: 0.032
  18491. }
  18492. },
  18493. },
  18494. [
  18495. {
  18496. name: "Normal",
  18497. height: math.unit(9, "feet"),
  18498. default: true
  18499. },
  18500. {
  18501. name: "Macro",
  18502. height: math.unit(300, "feet")
  18503. },
  18504. ]
  18505. ))
  18506. characterMakers.push(() => makeCharacter(
  18507. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18508. {
  18509. side: {
  18510. height: math.unit(8, "meters"),
  18511. weight: math.unit(90000, "kg"),
  18512. name: "Side",
  18513. image: {
  18514. source: "./media/characters/ijzer/side.svg",
  18515. extra: 2756 / 1600,
  18516. bottom: 0.01
  18517. }
  18518. },
  18519. },
  18520. [
  18521. {
  18522. name: "Small",
  18523. height: math.unit(3, "meters")
  18524. },
  18525. {
  18526. name: "Normal",
  18527. height: math.unit(8, "meters"),
  18528. default: true
  18529. },
  18530. {
  18531. name: "Normal+",
  18532. height: math.unit(10, "meters")
  18533. },
  18534. {
  18535. name: "Bigger",
  18536. height: math.unit(24, "meters")
  18537. },
  18538. {
  18539. name: "Huge",
  18540. height: math.unit(80, "meters")
  18541. },
  18542. ]
  18543. ))
  18544. characterMakers.push(() => makeCharacter(
  18545. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18546. {
  18547. front: {
  18548. height: math.unit(6 + 2 / 12, "feet"),
  18549. weight: math.unit(153, "lb"),
  18550. name: "Front",
  18551. image: {
  18552. source: "./media/characters/luca-cervicum/front.svg",
  18553. extra: 370 / 327,
  18554. bottom: 0.015
  18555. }
  18556. },
  18557. back: {
  18558. height: math.unit(6 + 2 / 12, "feet"),
  18559. weight: math.unit(153, "lb"),
  18560. name: "Back",
  18561. image: {
  18562. source: "./media/characters/luca-cervicum/back.svg",
  18563. extra: 367 / 333,
  18564. bottom: 0.005
  18565. }
  18566. },
  18567. frontGear: {
  18568. height: math.unit(6 + 2 / 12, "feet"),
  18569. weight: math.unit(173, "lb"),
  18570. name: "Front (Gear)",
  18571. image: {
  18572. source: "./media/characters/luca-cervicum/front-gear.svg",
  18573. extra: 377 / 333,
  18574. bottom: 0.006
  18575. }
  18576. },
  18577. },
  18578. [
  18579. {
  18580. name: "Normal",
  18581. height: math.unit(6 + 2 / 12, "feet"),
  18582. default: true
  18583. },
  18584. ]
  18585. ))
  18586. characterMakers.push(() => makeCharacter(
  18587. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18588. {
  18589. front: {
  18590. height: math.unit(6 + 1 / 12, "feet"),
  18591. weight: math.unit(304, "lb"),
  18592. name: "Front",
  18593. image: {
  18594. source: "./media/characters/oliver/front.svg",
  18595. extra: 157 / 143,
  18596. bottom: 0.08
  18597. }
  18598. },
  18599. },
  18600. [
  18601. {
  18602. name: "Normal",
  18603. height: math.unit(6 + 1 / 12, "feet"),
  18604. default: true
  18605. },
  18606. ]
  18607. ))
  18608. characterMakers.push(() => makeCharacter(
  18609. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18610. {
  18611. front: {
  18612. height: math.unit(5 + 7 / 12, "feet"),
  18613. weight: math.unit(140, "lb"),
  18614. name: "Front",
  18615. image: {
  18616. source: "./media/characters/shane/front.svg",
  18617. extra: 304 / 289,
  18618. bottom: 0.005
  18619. }
  18620. },
  18621. },
  18622. [
  18623. {
  18624. name: "Normal",
  18625. height: math.unit(5 + 7 / 12, "feet"),
  18626. default: true
  18627. },
  18628. ]
  18629. ))
  18630. characterMakers.push(() => makeCharacter(
  18631. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18632. {
  18633. front: {
  18634. height: math.unit(5 + 9 / 12, "feet"),
  18635. weight: math.unit(178, "lb"),
  18636. name: "Front",
  18637. image: {
  18638. source: "./media/characters/shin/front.svg",
  18639. extra: 159 / 151,
  18640. bottom: 0.015
  18641. }
  18642. },
  18643. },
  18644. [
  18645. {
  18646. name: "Normal",
  18647. height: math.unit(5 + 9 / 12, "feet"),
  18648. default: true
  18649. },
  18650. ]
  18651. ))
  18652. characterMakers.push(() => makeCharacter(
  18653. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18654. {
  18655. front: {
  18656. height: math.unit(5 + 10 / 12, "feet"),
  18657. weight: math.unit(168, "lb"),
  18658. name: "Front",
  18659. image: {
  18660. source: "./media/characters/xerxes/front.svg",
  18661. extra: 282 / 260,
  18662. bottom: 0.045
  18663. }
  18664. },
  18665. },
  18666. [
  18667. {
  18668. name: "Normal",
  18669. height: math.unit(5 + 10 / 12, "feet"),
  18670. default: true
  18671. },
  18672. ]
  18673. ))
  18674. characterMakers.push(() => makeCharacter(
  18675. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18676. {
  18677. front: {
  18678. height: math.unit(6 + 7 / 12, "feet"),
  18679. weight: math.unit(208, "lb"),
  18680. name: "Front",
  18681. image: {
  18682. source: "./media/characters/chaska/front.svg",
  18683. extra: 332 / 319,
  18684. bottom: 0.015
  18685. }
  18686. },
  18687. },
  18688. [
  18689. {
  18690. name: "Normal",
  18691. height: math.unit(6 + 7 / 12, "feet"),
  18692. default: true
  18693. },
  18694. ]
  18695. ))
  18696. characterMakers.push(() => makeCharacter(
  18697. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18698. {
  18699. front: {
  18700. height: math.unit(5 + 8 / 12, "feet"),
  18701. weight: math.unit(208, "lb"),
  18702. name: "Front",
  18703. image: {
  18704. source: "./media/characters/enuk/front.svg",
  18705. extra: 437 / 406,
  18706. bottom: 0.02
  18707. }
  18708. },
  18709. },
  18710. [
  18711. {
  18712. name: "Normal",
  18713. height: math.unit(5 + 8 / 12, "feet"),
  18714. default: true
  18715. },
  18716. ]
  18717. ))
  18718. characterMakers.push(() => makeCharacter(
  18719. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18720. {
  18721. front: {
  18722. height: math.unit(5 + 10 / 12, "feet"),
  18723. weight: math.unit(252, "lb"),
  18724. name: "Front",
  18725. image: {
  18726. source: "./media/characters/bruun/front.svg",
  18727. extra: 197 / 187,
  18728. bottom: 0.012
  18729. }
  18730. },
  18731. },
  18732. [
  18733. {
  18734. name: "Normal",
  18735. height: math.unit(5 + 10 / 12, "feet"),
  18736. default: true
  18737. },
  18738. ]
  18739. ))
  18740. characterMakers.push(() => makeCharacter(
  18741. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18742. {
  18743. front: {
  18744. height: math.unit(6 + 10 / 12, "feet"),
  18745. weight: math.unit(255, "lb"),
  18746. name: "Front",
  18747. image: {
  18748. source: "./media/characters/alexeev/front.svg",
  18749. extra: 213 / 200,
  18750. bottom: 0.05
  18751. }
  18752. },
  18753. },
  18754. [
  18755. {
  18756. name: "Normal",
  18757. height: math.unit(6 + 10 / 12, "feet"),
  18758. default: true
  18759. },
  18760. ]
  18761. ))
  18762. characterMakers.push(() => makeCharacter(
  18763. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18764. {
  18765. front: {
  18766. height: math.unit(2 + 8 / 12, "feet"),
  18767. weight: math.unit(22, "lb"),
  18768. name: "Front",
  18769. image: {
  18770. source: "./media/characters/evelyn/front.svg",
  18771. extra: 208 / 180
  18772. }
  18773. },
  18774. },
  18775. [
  18776. {
  18777. name: "Normal",
  18778. height: math.unit(2 + 8 / 12, "feet"),
  18779. default: true
  18780. },
  18781. ]
  18782. ))
  18783. characterMakers.push(() => makeCharacter(
  18784. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18785. {
  18786. front: {
  18787. height: math.unit(5 + 9 / 12, "feet"),
  18788. weight: math.unit(139, "lb"),
  18789. name: "Front",
  18790. image: {
  18791. source: "./media/characters/inca/front.svg",
  18792. extra: 294 / 291,
  18793. bottom: 0.03
  18794. }
  18795. },
  18796. },
  18797. [
  18798. {
  18799. name: "Normal",
  18800. height: math.unit(5 + 9 / 12, "feet"),
  18801. default: true
  18802. },
  18803. ]
  18804. ))
  18805. characterMakers.push(() => makeCharacter(
  18806. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18807. {
  18808. front: {
  18809. height: math.unit(5 + 1 / 12, "feet"),
  18810. weight: math.unit(84, "lb"),
  18811. name: "Front",
  18812. image: {
  18813. source: "./media/characters/magdalene/front.svg",
  18814. extra: 293 / 273
  18815. }
  18816. },
  18817. },
  18818. [
  18819. {
  18820. name: "Normal",
  18821. height: math.unit(5 + 1 / 12, "feet"),
  18822. default: true
  18823. },
  18824. ]
  18825. ))
  18826. characterMakers.push(() => makeCharacter(
  18827. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18828. {
  18829. front: {
  18830. height: math.unit(6 + 3 / 12, "feet"),
  18831. weight: math.unit(185, "lb"),
  18832. name: "Front",
  18833. image: {
  18834. source: "./media/characters/mera/front.svg",
  18835. extra: 291 / 277,
  18836. bottom: 0.03
  18837. }
  18838. },
  18839. },
  18840. [
  18841. {
  18842. name: "Normal",
  18843. height: math.unit(6 + 3 / 12, "feet"),
  18844. default: true
  18845. },
  18846. ]
  18847. ))
  18848. characterMakers.push(() => makeCharacter(
  18849. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18850. {
  18851. front: {
  18852. height: math.unit(6 + 7 / 12, "feet"),
  18853. weight: math.unit(160, "lb"),
  18854. name: "Front",
  18855. image: {
  18856. source: "./media/characters/ceres/front.svg",
  18857. extra: 1023 / 950,
  18858. bottom: 0.027
  18859. }
  18860. },
  18861. back: {
  18862. height: math.unit(6 + 7 / 12, "feet"),
  18863. weight: math.unit(160, "lb"),
  18864. name: "Back",
  18865. image: {
  18866. source: "./media/characters/ceres/back.svg",
  18867. extra: 1023 / 950
  18868. }
  18869. },
  18870. },
  18871. [
  18872. {
  18873. name: "Normal",
  18874. height: math.unit(6 + 7 / 12, "feet"),
  18875. default: true
  18876. },
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18881. {
  18882. front: {
  18883. height: math.unit(5 + 10 / 12, "feet"),
  18884. weight: math.unit(150, "lb"),
  18885. name: "Front",
  18886. image: {
  18887. source: "./media/characters/kris/front.svg",
  18888. extra: 885 / 803,
  18889. bottom: 0.03
  18890. }
  18891. },
  18892. },
  18893. [
  18894. {
  18895. name: "Normal",
  18896. height: math.unit(5 + 10 / 12, "feet"),
  18897. default: true
  18898. },
  18899. ]
  18900. ))
  18901. characterMakers.push(() => makeCharacter(
  18902. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18903. {
  18904. front: {
  18905. height: math.unit(7, "feet"),
  18906. weight: math.unit(120, "kg"),
  18907. name: "Front",
  18908. image: {
  18909. source: "./media/characters/taluthus/front.svg",
  18910. extra: 903 / 833,
  18911. bottom: 0.015
  18912. }
  18913. },
  18914. },
  18915. [
  18916. {
  18917. name: "Normal",
  18918. height: math.unit(7, "feet"),
  18919. default: true
  18920. },
  18921. {
  18922. name: "Macro",
  18923. height: math.unit(300, "feet")
  18924. },
  18925. ]
  18926. ))
  18927. characterMakers.push(() => makeCharacter(
  18928. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18929. {
  18930. front: {
  18931. height: math.unit(5 + 9 / 12, "feet"),
  18932. weight: math.unit(145, "lb"),
  18933. name: "Front",
  18934. image: {
  18935. source: "./media/characters/dawn/front.svg",
  18936. extra: 2094 / 2016,
  18937. bottom: 0.025
  18938. }
  18939. },
  18940. back: {
  18941. height: math.unit(5 + 9 / 12, "feet"),
  18942. weight: math.unit(160, "lb"),
  18943. name: "Back",
  18944. image: {
  18945. source: "./media/characters/dawn/back.svg",
  18946. extra: 2112 / 2080,
  18947. bottom: 0.005
  18948. }
  18949. },
  18950. },
  18951. [
  18952. {
  18953. name: "Normal",
  18954. height: math.unit(6 + 7 / 12, "feet"),
  18955. default: true
  18956. },
  18957. ]
  18958. ))
  18959. characterMakers.push(() => makeCharacter(
  18960. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  18961. {
  18962. anthro: {
  18963. height: math.unit(8 + 3 / 12, "feet"),
  18964. weight: math.unit(450, "lb"),
  18965. name: "Anthro",
  18966. image: {
  18967. source: "./media/characters/arador/anthro.svg",
  18968. extra: 1835 / 1718,
  18969. bottom: 0.025
  18970. }
  18971. },
  18972. feral: {
  18973. height: math.unit(4, "feet"),
  18974. weight: math.unit(200, "lb"),
  18975. name: "Feral",
  18976. image: {
  18977. source: "./media/characters/arador/feral.svg",
  18978. extra: 1683 / 1514,
  18979. bottom: 0.07
  18980. }
  18981. },
  18982. },
  18983. [
  18984. {
  18985. name: "Normal",
  18986. height: math.unit(8 + 3 / 12, "feet")
  18987. },
  18988. {
  18989. name: "Macro",
  18990. height: math.unit(82.5, "feet"),
  18991. default: true
  18992. },
  18993. ]
  18994. ))
  18995. characterMakers.push(() => makeCharacter(
  18996. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  18997. {
  18998. front: {
  18999. height: math.unit(5 + 10 / 12, "feet"),
  19000. weight: math.unit(125, "lb"),
  19001. name: "Front",
  19002. image: {
  19003. source: "./media/characters/dharsi/front.svg",
  19004. extra: 716 / 630,
  19005. bottom: 0.035
  19006. }
  19007. },
  19008. },
  19009. [
  19010. {
  19011. name: "Nano",
  19012. height: math.unit(100, "nm")
  19013. },
  19014. {
  19015. name: "Micro",
  19016. height: math.unit(2, "inches")
  19017. },
  19018. {
  19019. name: "Normal",
  19020. height: math.unit(5 + 10 / 12, "feet"),
  19021. default: true
  19022. },
  19023. {
  19024. name: "Macro",
  19025. height: math.unit(1000, "feet")
  19026. },
  19027. {
  19028. name: "Megamacro",
  19029. height: math.unit(10, "miles")
  19030. },
  19031. {
  19032. name: "Gigamacro",
  19033. height: math.unit(3000, "miles")
  19034. },
  19035. {
  19036. name: "Teramacro",
  19037. height: math.unit(500000, "miles")
  19038. },
  19039. {
  19040. name: "Teramacro+",
  19041. height: math.unit(30, "galaxies")
  19042. },
  19043. ]
  19044. ))
  19045. characterMakers.push(() => makeCharacter(
  19046. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19047. {
  19048. front: {
  19049. height: math.unit(6, "feet"),
  19050. weight: math.unit(150, "lb"),
  19051. name: "Front",
  19052. image: {
  19053. source: "./media/characters/deathy/front.svg",
  19054. extra: 1552 / 1463,
  19055. bottom: 0.025
  19056. }
  19057. },
  19058. side: {
  19059. height: math.unit(6, "feet"),
  19060. weight: math.unit(150, "lb"),
  19061. name: "Side",
  19062. image: {
  19063. source: "./media/characters/deathy/side.svg",
  19064. extra: 1604 / 1455,
  19065. bottom: 0.025
  19066. }
  19067. },
  19068. back: {
  19069. height: math.unit(6, "feet"),
  19070. weight: math.unit(150, "lb"),
  19071. name: "Back",
  19072. image: {
  19073. source: "./media/characters/deathy/back.svg",
  19074. extra: 1580 / 1463,
  19075. bottom: 0.005
  19076. }
  19077. },
  19078. },
  19079. [
  19080. {
  19081. name: "Micro",
  19082. height: math.unit(5, "millimeters")
  19083. },
  19084. {
  19085. name: "Normal",
  19086. height: math.unit(6 + 5 / 12, "feet"),
  19087. default: true
  19088. },
  19089. ]
  19090. ))
  19091. characterMakers.push(() => makeCharacter(
  19092. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19093. {
  19094. front: {
  19095. height: math.unit(16, "feet"),
  19096. weight: math.unit(4000, "lb"),
  19097. name: "Front",
  19098. image: {
  19099. source: "./media/characters/juniper/front.svg",
  19100. bottom: 0.04
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Normal",
  19107. height: math.unit(16, "feet"),
  19108. default: true
  19109. },
  19110. ]
  19111. ))
  19112. characterMakers.push(() => makeCharacter(
  19113. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19114. {
  19115. front: {
  19116. height: math.unit(6, "feet"),
  19117. weight: math.unit(150, "lb"),
  19118. name: "Front",
  19119. image: {
  19120. source: "./media/characters/hipster/front.svg",
  19121. extra: 1312 / 1209,
  19122. bottom: 0.025
  19123. }
  19124. },
  19125. back: {
  19126. height: math.unit(6, "feet"),
  19127. weight: math.unit(150, "lb"),
  19128. name: "Back",
  19129. image: {
  19130. source: "./media/characters/hipster/back.svg",
  19131. extra: 1281 / 1196,
  19132. bottom: 0.01
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Micro",
  19139. height: math.unit(1, "mm")
  19140. },
  19141. {
  19142. name: "Normal",
  19143. height: math.unit(4, "inches"),
  19144. default: true
  19145. },
  19146. {
  19147. name: "Macro",
  19148. height: math.unit(500, "feet")
  19149. },
  19150. {
  19151. name: "Megamacro",
  19152. height: math.unit(1000, "miles")
  19153. },
  19154. ]
  19155. ))
  19156. characterMakers.push(() => makeCharacter(
  19157. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19158. {
  19159. front: {
  19160. height: math.unit(6, "feet"),
  19161. weight: math.unit(150, "lb"),
  19162. name: "Front",
  19163. image: {
  19164. source: "./media/characters/tendirmuldr/front.svg",
  19165. extra: 1878 / 1772,
  19166. bottom: 0.015
  19167. }
  19168. },
  19169. },
  19170. [
  19171. {
  19172. name: "Megamacro",
  19173. height: math.unit(1500, "miles"),
  19174. default: true
  19175. },
  19176. ]
  19177. ))
  19178. characterMakers.push(() => makeCharacter(
  19179. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19180. {
  19181. front: {
  19182. height: math.unit(14, "feet"),
  19183. weight: math.unit(12000, "lb"),
  19184. name: "Front",
  19185. image: {
  19186. source: "./media/characters/mort/front.svg",
  19187. extra: 365 / 318,
  19188. bottom: 0.01
  19189. }
  19190. },
  19191. side: {
  19192. height: math.unit(14, "feet"),
  19193. weight: math.unit(12000, "lb"),
  19194. name: "Side",
  19195. image: {
  19196. source: "./media/characters/mort/side.svg",
  19197. extra: 365 / 318,
  19198. bottom: 0.052
  19199. },
  19200. default: true
  19201. },
  19202. back: {
  19203. height: math.unit(14, "feet"),
  19204. weight: math.unit(12000, "lb"),
  19205. name: "Back",
  19206. image: {
  19207. source: "./media/characters/mort/back.svg",
  19208. extra: 371 / 332,
  19209. bottom: 0.18
  19210. }
  19211. },
  19212. },
  19213. [
  19214. {
  19215. name: "Normal",
  19216. height: math.unit(14, "feet"),
  19217. default: true
  19218. },
  19219. ]
  19220. ))
  19221. characterMakers.push(() => makeCharacter(
  19222. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19223. {
  19224. front: {
  19225. height: math.unit(8, "feet"),
  19226. weight: math.unit(1, "ton"),
  19227. name: "Front",
  19228. image: {
  19229. source: "./media/characters/lycoa/front.svg",
  19230. extra: 1875 / 1789,
  19231. bottom: 0.022
  19232. }
  19233. },
  19234. back: {
  19235. height: math.unit(8, "feet"),
  19236. weight: math.unit(1, "ton"),
  19237. name: "Back",
  19238. image: {
  19239. source: "./media/characters/lycoa/back.svg",
  19240. extra: 1835 / 1781,
  19241. bottom: 0.03
  19242. }
  19243. },
  19244. head: {
  19245. height: math.unit(2.1, "feet"),
  19246. name: "Head",
  19247. image: {
  19248. source: "./media/characters/lycoa/head.svg"
  19249. }
  19250. },
  19251. tailmaw: {
  19252. height: math.unit(1.9, "feet"),
  19253. name: "Tailmaw",
  19254. image: {
  19255. source: "./media/characters/lycoa/tailmaw.svg"
  19256. }
  19257. },
  19258. tentacles: {
  19259. height: math.unit(2.1, "feet"),
  19260. name: "Tentacles",
  19261. image: {
  19262. source: "./media/characters/lycoa/tentacles.svg"
  19263. }
  19264. },
  19265. dick: {
  19266. height: math.unit(1.73, "feet"),
  19267. name: "Dick",
  19268. image: {
  19269. source: "./media/characters/lycoa/dick.svg"
  19270. }
  19271. },
  19272. },
  19273. [
  19274. {
  19275. name: "Normal",
  19276. height: math.unit(8, "feet"),
  19277. default: true
  19278. },
  19279. {
  19280. name: "Macro",
  19281. height: math.unit(30, "feet")
  19282. },
  19283. ]
  19284. ))
  19285. characterMakers.push(() => makeCharacter(
  19286. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19287. {
  19288. front: {
  19289. height: math.unit(4 + 2 / 12, "feet"),
  19290. weight: math.unit(70, "lb"),
  19291. name: "Front",
  19292. image: {
  19293. source: "./media/characters/naldara/front.svg",
  19294. extra: 841 / 720,
  19295. bottom: 0.04
  19296. }
  19297. },
  19298. naga: {
  19299. height: math.unit(23, "feet"),
  19300. weight: math.unit(15000, "kg"),
  19301. name: "Naga",
  19302. image: {
  19303. source: "./media/characters/naldara/naga.svg",
  19304. extra: 3290/2959,
  19305. bottom: 124/3432
  19306. }
  19307. },
  19308. },
  19309. [
  19310. {
  19311. name: "Normal",
  19312. height: math.unit(4 + 2 / 12, "feet"),
  19313. default: true
  19314. },
  19315. ]
  19316. ))
  19317. characterMakers.push(() => makeCharacter(
  19318. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19319. {
  19320. front: {
  19321. height: math.unit(13 + 7 / 12, "feet"),
  19322. weight: math.unit(1500, "lb"),
  19323. name: "Front",
  19324. image: {
  19325. source: "./media/characters/briar/front.svg",
  19326. extra: 626 / 596,
  19327. bottom: 0.08
  19328. }
  19329. },
  19330. },
  19331. [
  19332. {
  19333. name: "Normal",
  19334. height: math.unit(13 + 7 / 12, "feet"),
  19335. default: true
  19336. },
  19337. ]
  19338. ))
  19339. characterMakers.push(() => makeCharacter(
  19340. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19341. {
  19342. side: {
  19343. height: math.unit(10, "feet"),
  19344. weight: math.unit(500, "lb"),
  19345. name: "Side",
  19346. image: {
  19347. source: "./media/characters/vanguard/side.svg",
  19348. extra: 502 / 425,
  19349. bottom: 0.087
  19350. }
  19351. },
  19352. },
  19353. [
  19354. {
  19355. name: "Normal",
  19356. height: math.unit(10, "feet"),
  19357. default: true
  19358. },
  19359. ]
  19360. ))
  19361. characterMakers.push(() => makeCharacter(
  19362. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19363. {
  19364. front: {
  19365. height: math.unit(7.5, "feet"),
  19366. weight: math.unit(2, "lb"),
  19367. name: "Front",
  19368. image: {
  19369. source: "./media/characters/artemis/front.svg",
  19370. extra: 1192 / 1075,
  19371. bottom: 0.07
  19372. }
  19373. },
  19374. frontNsfw: {
  19375. height: math.unit(7.5, "feet"),
  19376. weight: math.unit(2, "lb"),
  19377. name: "Front (NSFW)",
  19378. image: {
  19379. source: "./media/characters/artemis/front-nsfw.svg",
  19380. extra: 1192 / 1075,
  19381. bottom: 0.07
  19382. }
  19383. },
  19384. frontNsfwer: {
  19385. height: math.unit(7.5, "feet"),
  19386. weight: math.unit(2, "lb"),
  19387. name: "Front (NSFW-er)",
  19388. image: {
  19389. source: "./media/characters/artemis/front-nsfwer.svg",
  19390. extra: 1192 / 1075,
  19391. bottom: 0.07
  19392. }
  19393. },
  19394. side: {
  19395. height: math.unit(7.5, "feet"),
  19396. weight: math.unit(2, "lb"),
  19397. name: "Side",
  19398. image: {
  19399. source: "./media/characters/artemis/side.svg",
  19400. extra: 1192 / 1075,
  19401. bottom: 0.07
  19402. }
  19403. },
  19404. sideNsfw: {
  19405. height: math.unit(7.5, "feet"),
  19406. weight: math.unit(2, "lb"),
  19407. name: "Side (NSFW)",
  19408. image: {
  19409. source: "./media/characters/artemis/side-nsfw.svg",
  19410. extra: 1192 / 1075,
  19411. bottom: 0.07
  19412. }
  19413. },
  19414. sideNsfwer: {
  19415. height: math.unit(7.5, "feet"),
  19416. weight: math.unit(2, "lb"),
  19417. name: "Side (NSFW-er)",
  19418. image: {
  19419. source: "./media/characters/artemis/side-nsfwer.svg",
  19420. extra: 1192 / 1075,
  19421. bottom: 0.07
  19422. }
  19423. },
  19424. maw: {
  19425. height: math.unit(1.1, "feet"),
  19426. name: "Maw",
  19427. image: {
  19428. source: "./media/characters/artemis/maw.svg"
  19429. }
  19430. },
  19431. stomach: {
  19432. height: math.unit(0.95, "feet"),
  19433. name: "Stomach",
  19434. image: {
  19435. source: "./media/characters/artemis/stomach.svg"
  19436. }
  19437. },
  19438. dickCanine: {
  19439. height: math.unit(1, "feet"),
  19440. name: "Dick (Canine)",
  19441. image: {
  19442. source: "./media/characters/artemis/dick-canine.svg"
  19443. }
  19444. },
  19445. dickEquine: {
  19446. height: math.unit(0.85, "feet"),
  19447. name: "Dick (Equine)",
  19448. image: {
  19449. source: "./media/characters/artemis/dick-equine.svg"
  19450. }
  19451. },
  19452. dickExotic: {
  19453. height: math.unit(0.85, "feet"),
  19454. name: "Dick (Exotic)",
  19455. image: {
  19456. source: "./media/characters/artemis/dick-exotic.svg"
  19457. }
  19458. },
  19459. },
  19460. [
  19461. {
  19462. name: "Normal",
  19463. height: math.unit(7.5, "feet"),
  19464. default: true
  19465. },
  19466. {
  19467. name: "Enlarged",
  19468. height: math.unit(12, "feet")
  19469. },
  19470. ]
  19471. ))
  19472. characterMakers.push(() => makeCharacter(
  19473. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19474. {
  19475. front: {
  19476. height: math.unit(5 + 3 / 12, "feet"),
  19477. weight: math.unit(160, "lb"),
  19478. name: "Front",
  19479. image: {
  19480. source: "./media/characters/kira/front.svg",
  19481. extra: 906 / 786,
  19482. bottom: 0.01
  19483. }
  19484. },
  19485. back: {
  19486. height: math.unit(5 + 3 / 12, "feet"),
  19487. weight: math.unit(160, "lb"),
  19488. name: "Back",
  19489. image: {
  19490. source: "./media/characters/kira/back.svg",
  19491. extra: 882 / 757,
  19492. bottom: 0.005
  19493. }
  19494. },
  19495. frontDressed: {
  19496. height: math.unit(5 + 3 / 12, "feet"),
  19497. weight: math.unit(160, "lb"),
  19498. name: "Front (Dressed)",
  19499. image: {
  19500. source: "./media/characters/kira/front-dressed.svg",
  19501. extra: 906 / 786,
  19502. bottom: 0.01
  19503. }
  19504. },
  19505. beans: {
  19506. height: math.unit(0.92, "feet"),
  19507. name: "Beans",
  19508. image: {
  19509. source: "./media/characters/kira/beans.svg"
  19510. }
  19511. },
  19512. },
  19513. [
  19514. {
  19515. name: "Normal",
  19516. height: math.unit(5 + 3 / 12, "feet"),
  19517. default: true
  19518. },
  19519. ]
  19520. ))
  19521. characterMakers.push(() => makeCharacter(
  19522. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19523. {
  19524. front: {
  19525. height: math.unit(5 + 4 / 12, "feet"),
  19526. weight: math.unit(145, "lb"),
  19527. name: "Front",
  19528. image: {
  19529. source: "./media/characters/scramble/front.svg",
  19530. extra: 763 / 727,
  19531. bottom: 0.05
  19532. }
  19533. },
  19534. back: {
  19535. height: math.unit(5 + 4 / 12, "feet"),
  19536. weight: math.unit(145, "lb"),
  19537. name: "Back",
  19538. image: {
  19539. source: "./media/characters/scramble/back.svg",
  19540. extra: 826 / 737,
  19541. bottom: 0.002
  19542. }
  19543. },
  19544. },
  19545. [
  19546. {
  19547. name: "Normal",
  19548. height: math.unit(5 + 4 / 12, "feet"),
  19549. default: true
  19550. },
  19551. ]
  19552. ))
  19553. characterMakers.push(() => makeCharacter(
  19554. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19555. {
  19556. side: {
  19557. height: math.unit(6 + 2 / 12, "feet"),
  19558. weight: math.unit(190, "lb"),
  19559. name: "Side",
  19560. image: {
  19561. source: "./media/characters/biscuit/side.svg",
  19562. extra: 858 / 791,
  19563. bottom: 0.044
  19564. }
  19565. },
  19566. },
  19567. [
  19568. {
  19569. name: "Normal",
  19570. height: math.unit(6 + 2 / 12, "feet"),
  19571. default: true
  19572. },
  19573. ]
  19574. ))
  19575. characterMakers.push(() => makeCharacter(
  19576. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19577. {
  19578. front: {
  19579. height: math.unit(5 + 2 / 12, "feet"),
  19580. weight: math.unit(120, "lb"),
  19581. name: "Front",
  19582. image: {
  19583. source: "./media/characters/poffin/front.svg",
  19584. extra: 786 / 680,
  19585. bottom: 0.005
  19586. }
  19587. },
  19588. },
  19589. [
  19590. {
  19591. name: "Normal",
  19592. height: math.unit(5 + 2 / 12, "feet"),
  19593. default: true
  19594. },
  19595. ]
  19596. ))
  19597. characterMakers.push(() => makeCharacter(
  19598. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19599. {
  19600. front: {
  19601. height: math.unit(6 + 3 / 12, "feet"),
  19602. weight: math.unit(519, "lb"),
  19603. name: "Front",
  19604. image: {
  19605. source: "./media/characters/dhari/front.svg",
  19606. extra: 1048 / 946,
  19607. bottom: 0.015
  19608. }
  19609. },
  19610. back: {
  19611. height: math.unit(6 + 3 / 12, "feet"),
  19612. weight: math.unit(519, "lb"),
  19613. name: "Back",
  19614. image: {
  19615. source: "./media/characters/dhari/back.svg",
  19616. extra: 1048 / 931,
  19617. bottom: 0.005
  19618. }
  19619. },
  19620. frontDressed: {
  19621. height: math.unit(6 + 3 / 12, "feet"),
  19622. weight: math.unit(519, "lb"),
  19623. name: "Front (Dressed)",
  19624. image: {
  19625. source: "./media/characters/dhari/front-dressed.svg",
  19626. extra: 1713 / 1546,
  19627. bottom: 0.02
  19628. }
  19629. },
  19630. backDressed: {
  19631. height: math.unit(6 + 3 / 12, "feet"),
  19632. weight: math.unit(519, "lb"),
  19633. name: "Back (Dressed)",
  19634. image: {
  19635. source: "./media/characters/dhari/back-dressed.svg",
  19636. extra: 1699 / 1537,
  19637. bottom: 0.01
  19638. }
  19639. },
  19640. maw: {
  19641. height: math.unit(0.95, "feet"),
  19642. name: "Maw",
  19643. image: {
  19644. source: "./media/characters/dhari/maw.svg"
  19645. }
  19646. },
  19647. wereFront: {
  19648. height: math.unit(12 + 8 / 12, "feet"),
  19649. weight: math.unit(4000, "lb"),
  19650. name: "Front (Were)",
  19651. image: {
  19652. source: "./media/characters/dhari/were-front.svg",
  19653. extra: 1065 / 969,
  19654. bottom: 0.015
  19655. }
  19656. },
  19657. wereBack: {
  19658. height: math.unit(12 + 8 / 12, "feet"),
  19659. weight: math.unit(4000, "lb"),
  19660. name: "Back (Were)",
  19661. image: {
  19662. source: "./media/characters/dhari/were-back.svg",
  19663. extra: 1065 / 969,
  19664. bottom: 0.012
  19665. }
  19666. },
  19667. wereMaw: {
  19668. height: math.unit(0.625, "meters"),
  19669. name: "Maw (Were)",
  19670. image: {
  19671. source: "./media/characters/dhari/were-maw.svg"
  19672. }
  19673. },
  19674. },
  19675. [
  19676. {
  19677. name: "Normal",
  19678. height: math.unit(6 + 3 / 12, "feet"),
  19679. default: true
  19680. },
  19681. ]
  19682. ))
  19683. characterMakers.push(() => makeCharacter(
  19684. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19685. {
  19686. anthro: {
  19687. height: math.unit(5 + 7 / 12, "feet"),
  19688. weight: math.unit(175, "lb"),
  19689. name: "Anthro",
  19690. image: {
  19691. source: "./media/characters/rena-dyne/anthro.svg",
  19692. extra: 1849 / 1785,
  19693. bottom: 0.005
  19694. }
  19695. },
  19696. taur: {
  19697. height: math.unit(15 + 6 / 12, "feet"),
  19698. weight: math.unit(8000, "lb"),
  19699. name: "Taur",
  19700. image: {
  19701. source: "./media/characters/rena-dyne/taur.svg",
  19702. extra: 2315 / 2234,
  19703. bottom: 0.033
  19704. }
  19705. },
  19706. },
  19707. [
  19708. {
  19709. name: "Normal",
  19710. height: math.unit(5 + 7 / 12, "feet"),
  19711. default: true
  19712. },
  19713. ]
  19714. ))
  19715. characterMakers.push(() => makeCharacter(
  19716. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19717. {
  19718. front: {
  19719. height: math.unit(8, "feet"),
  19720. weight: math.unit(600, "lb"),
  19721. name: "Front",
  19722. image: {
  19723. source: "./media/characters/weremeep/front.svg",
  19724. extra: 967 / 862,
  19725. bottom: 0.01
  19726. }
  19727. },
  19728. },
  19729. [
  19730. {
  19731. name: "Normal",
  19732. height: math.unit(8, "feet"),
  19733. default: true
  19734. },
  19735. {
  19736. name: "Lorg",
  19737. height: math.unit(12, "feet")
  19738. },
  19739. {
  19740. name: "Oh Lawd She Comin'",
  19741. height: math.unit(20, "feet")
  19742. },
  19743. ]
  19744. ))
  19745. characterMakers.push(() => makeCharacter(
  19746. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19747. {
  19748. front: {
  19749. height: math.unit(4, "feet"),
  19750. weight: math.unit(90, "lb"),
  19751. name: "Front",
  19752. image: {
  19753. source: "./media/characters/reza/front.svg",
  19754. extra: 1183 / 1111,
  19755. bottom: 0.017
  19756. }
  19757. },
  19758. back: {
  19759. height: math.unit(4, "feet"),
  19760. weight: math.unit(90, "lb"),
  19761. name: "Back",
  19762. image: {
  19763. source: "./media/characters/reza/back.svg",
  19764. extra: 1183 / 1111,
  19765. bottom: 0.01
  19766. }
  19767. },
  19768. drake: {
  19769. height: math.unit(30, "feet"),
  19770. weight: math.unit(246960, "lb"),
  19771. name: "Drake",
  19772. image: {
  19773. source: "./media/characters/reza/drake.svg",
  19774. extra: 2350 / 2024,
  19775. bottom: 60.7 / 2403
  19776. }
  19777. },
  19778. },
  19779. [
  19780. {
  19781. name: "Normal",
  19782. height: math.unit(4, "feet"),
  19783. default: true
  19784. },
  19785. ]
  19786. ))
  19787. characterMakers.push(() => makeCharacter(
  19788. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19789. {
  19790. side: {
  19791. height: math.unit(15, "feet"),
  19792. weight: math.unit(14, "tons"),
  19793. name: "Side",
  19794. image: {
  19795. source: "./media/characters/athea/side.svg",
  19796. extra: 960 / 540,
  19797. bottom: 0.003
  19798. }
  19799. },
  19800. sitting: {
  19801. height: math.unit(6 * 2.85, "feet"),
  19802. weight: math.unit(14, "tons"),
  19803. name: "Sitting",
  19804. image: {
  19805. source: "./media/characters/athea/sitting.svg",
  19806. extra: 621 / 581,
  19807. bottom: 0.075
  19808. }
  19809. },
  19810. maw: {
  19811. height: math.unit(7.59498031496063, "feet"),
  19812. name: "Maw",
  19813. image: {
  19814. source: "./media/characters/athea/maw.svg"
  19815. }
  19816. },
  19817. },
  19818. [
  19819. {
  19820. name: "Lap Cat",
  19821. height: math.unit(2.5, "feet")
  19822. },
  19823. {
  19824. name: "Minimacro",
  19825. height: math.unit(15, "feet"),
  19826. default: true
  19827. },
  19828. {
  19829. name: "Macro",
  19830. height: math.unit(120, "feet")
  19831. },
  19832. {
  19833. name: "Macro+",
  19834. height: math.unit(640, "feet")
  19835. },
  19836. {
  19837. name: "Colossus",
  19838. height: math.unit(2.2, "miles")
  19839. },
  19840. ]
  19841. ))
  19842. characterMakers.push(() => makeCharacter(
  19843. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19844. {
  19845. front: {
  19846. height: math.unit(8 + 8 / 12, "feet"),
  19847. weight: math.unit(130, "kg"),
  19848. name: "Front",
  19849. image: {
  19850. source: "./media/characters/seroko/front.svg",
  19851. extra: 1385 / 1280,
  19852. bottom: 0.025
  19853. }
  19854. },
  19855. back: {
  19856. height: math.unit(8 + 8 / 12, "feet"),
  19857. weight: math.unit(130, "kg"),
  19858. name: "Back",
  19859. image: {
  19860. source: "./media/characters/seroko/back.svg",
  19861. extra: 1369 / 1238,
  19862. bottom: 0.018
  19863. }
  19864. },
  19865. frontDressed: {
  19866. height: math.unit(8 + 8 / 12, "feet"),
  19867. weight: math.unit(130, "kg"),
  19868. name: "Front (Dressed)",
  19869. image: {
  19870. source: "./media/characters/seroko/front-dressed.svg",
  19871. extra: 1366 / 1275,
  19872. bottom: 0.03
  19873. }
  19874. },
  19875. },
  19876. [
  19877. {
  19878. name: "Normal",
  19879. height: math.unit(8 + 8 / 12, "feet"),
  19880. default: true
  19881. },
  19882. ]
  19883. ))
  19884. characterMakers.push(() => makeCharacter(
  19885. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19886. {
  19887. front: {
  19888. height: math.unit(5.5, "feet"),
  19889. weight: math.unit(160, "lb"),
  19890. name: "Front",
  19891. image: {
  19892. source: "./media/characters/quatzi/front.svg",
  19893. extra: 2346 / 2242,
  19894. bottom: 0.015
  19895. }
  19896. },
  19897. },
  19898. [
  19899. {
  19900. name: "Normal",
  19901. height: math.unit(5.5, "feet"),
  19902. default: true
  19903. },
  19904. {
  19905. name: "Big",
  19906. height: math.unit(7.7, "feet")
  19907. },
  19908. ]
  19909. ))
  19910. characterMakers.push(() => makeCharacter(
  19911. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19912. {
  19913. front: {
  19914. height: math.unit(5 + 11 / 12, "feet"),
  19915. weight: math.unit(180, "lb"),
  19916. name: "Front",
  19917. image: {
  19918. source: "./media/characters/sen/front.svg",
  19919. extra: 1321 / 1254,
  19920. bottom: 0.015
  19921. }
  19922. },
  19923. side: {
  19924. height: math.unit(5 + 11 / 12, "feet"),
  19925. weight: math.unit(180, "lb"),
  19926. name: "Side",
  19927. image: {
  19928. source: "./media/characters/sen/side.svg",
  19929. extra: 1321 / 1254,
  19930. bottom: 0.007
  19931. }
  19932. },
  19933. back: {
  19934. height: math.unit(5 + 11 / 12, "feet"),
  19935. weight: math.unit(180, "lb"),
  19936. name: "Back",
  19937. image: {
  19938. source: "./media/characters/sen/back.svg",
  19939. extra: 1321 / 1254
  19940. }
  19941. },
  19942. },
  19943. [
  19944. {
  19945. name: "Normal",
  19946. height: math.unit(5 + 11 / 12, "feet"),
  19947. default: true
  19948. },
  19949. ]
  19950. ))
  19951. characterMakers.push(() => makeCharacter(
  19952. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  19953. {
  19954. front: {
  19955. height: math.unit(166.6, "cm"),
  19956. weight: math.unit(66.6, "kg"),
  19957. name: "Front",
  19958. image: {
  19959. source: "./media/characters/fruity/front.svg",
  19960. extra: 1510 / 1386,
  19961. bottom: 0.04
  19962. }
  19963. },
  19964. back: {
  19965. height: math.unit(166.6, "cm"),
  19966. weight: math.unit(66.6, "lb"),
  19967. name: "Back",
  19968. image: {
  19969. source: "./media/characters/fruity/back.svg",
  19970. extra: 1563 / 1435,
  19971. bottom: 0.005
  19972. }
  19973. },
  19974. },
  19975. [
  19976. {
  19977. name: "Normal",
  19978. height: math.unit(166.6, "cm"),
  19979. default: true
  19980. },
  19981. {
  19982. name: "Demonic",
  19983. height: math.unit(166.6, "feet")
  19984. },
  19985. ]
  19986. ))
  19987. characterMakers.push(() => makeCharacter(
  19988. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  19989. {
  19990. side: {
  19991. height: math.unit(10, "feet"),
  19992. weight: math.unit(500, "lb"),
  19993. name: "Side",
  19994. image: {
  19995. source: "./media/characters/zost/side.svg",
  19996. extra: 966 / 880,
  19997. bottom: 0.075
  19998. }
  19999. },
  20000. mawFront: {
  20001. height: math.unit(1.08, "meters"),
  20002. name: "Maw (Front)",
  20003. image: {
  20004. source: "./media/characters/zost/maw-front.svg"
  20005. }
  20006. },
  20007. mawSide: {
  20008. height: math.unit(2.66, "feet"),
  20009. name: "Maw (Side)",
  20010. image: {
  20011. source: "./media/characters/zost/maw-side.svg"
  20012. }
  20013. },
  20014. },
  20015. [
  20016. {
  20017. name: "Normal",
  20018. height: math.unit(10, "feet"),
  20019. default: true
  20020. },
  20021. ]
  20022. ))
  20023. characterMakers.push(() => makeCharacter(
  20024. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20025. {
  20026. front: {
  20027. height: math.unit(5 + 4 / 12, "feet"),
  20028. weight: math.unit(120, "lb"),
  20029. name: "Front",
  20030. image: {
  20031. source: "./media/characters/luci/front.svg",
  20032. extra: 1985 / 1884,
  20033. bottom: 0.04
  20034. }
  20035. },
  20036. back: {
  20037. height: math.unit(5 + 4 / 12, "feet"),
  20038. weight: math.unit(120, "lb"),
  20039. name: "Back",
  20040. image: {
  20041. source: "./media/characters/luci/back.svg",
  20042. extra: 1892 / 1791,
  20043. bottom: 0.002
  20044. }
  20045. },
  20046. },
  20047. [
  20048. {
  20049. name: "Normal",
  20050. height: math.unit(5 + 4 / 12, "feet"),
  20051. default: true
  20052. },
  20053. ]
  20054. ))
  20055. characterMakers.push(() => makeCharacter(
  20056. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20057. {
  20058. front: {
  20059. height: math.unit(1500, "feet"),
  20060. weight: math.unit(3.8e6, "tons"),
  20061. name: "Front",
  20062. image: {
  20063. source: "./media/characters/2th/front.svg",
  20064. extra: 3489 / 3350,
  20065. bottom: 0.1
  20066. }
  20067. },
  20068. foot: {
  20069. height: math.unit(461, "feet"),
  20070. name: "Foot",
  20071. image: {
  20072. source: "./media/characters/2th/foot.svg"
  20073. }
  20074. },
  20075. },
  20076. [
  20077. {
  20078. name: "\"Micro\"",
  20079. height: math.unit(15 + 7 / 12, "feet")
  20080. },
  20081. {
  20082. name: "Normal",
  20083. height: math.unit(1500, "feet"),
  20084. default: true
  20085. },
  20086. {
  20087. name: "Macro",
  20088. height: math.unit(5000, "feet")
  20089. },
  20090. {
  20091. name: "Megamacro",
  20092. height: math.unit(15, "miles")
  20093. },
  20094. {
  20095. name: "Gigamacro",
  20096. height: math.unit(4000, "miles")
  20097. },
  20098. {
  20099. name: "Galactic",
  20100. height: math.unit(50, "AU")
  20101. },
  20102. ]
  20103. ))
  20104. characterMakers.push(() => makeCharacter(
  20105. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20106. {
  20107. front: {
  20108. height: math.unit(5 + 6 / 12, "feet"),
  20109. weight: math.unit(220, "lb"),
  20110. name: "Front",
  20111. image: {
  20112. source: "./media/characters/amethyst/front.svg",
  20113. extra: 2078 / 2040,
  20114. bottom: 0.045
  20115. }
  20116. },
  20117. back: {
  20118. height: math.unit(5 + 6 / 12, "feet"),
  20119. weight: math.unit(220, "lb"),
  20120. name: "Back",
  20121. image: {
  20122. source: "./media/characters/amethyst/back.svg",
  20123. extra: 2021 / 1989,
  20124. bottom: 0.02
  20125. }
  20126. },
  20127. },
  20128. [
  20129. {
  20130. name: "Normal",
  20131. height: math.unit(5 + 6 / 12, "feet"),
  20132. default: true
  20133. },
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20138. {
  20139. front: {
  20140. height: math.unit(4 + 11 / 12, "feet"),
  20141. weight: math.unit(120, "lb"),
  20142. name: "Front",
  20143. image: {
  20144. source: "./media/characters/yumi-akiyama/front.svg",
  20145. extra: 1327 / 1235,
  20146. bottom: 0.02
  20147. }
  20148. },
  20149. back: {
  20150. height: math.unit(4 + 11 / 12, "feet"),
  20151. weight: math.unit(120, "lb"),
  20152. name: "Back",
  20153. image: {
  20154. source: "./media/characters/yumi-akiyama/back.svg",
  20155. extra: 1287 / 1245,
  20156. bottom: 0.002
  20157. }
  20158. },
  20159. },
  20160. [
  20161. {
  20162. name: "Galactic",
  20163. height: math.unit(50, "galaxies"),
  20164. default: true
  20165. },
  20166. {
  20167. name: "Universal",
  20168. height: math.unit(100, "universes")
  20169. },
  20170. ]
  20171. ))
  20172. characterMakers.push(() => makeCharacter(
  20173. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20174. {
  20175. front: {
  20176. height: math.unit(8, "feet"),
  20177. weight: math.unit(500, "lb"),
  20178. name: "Front",
  20179. image: {
  20180. source: "./media/characters/rifter-yrmori/front.svg",
  20181. extra: 1180 / 1125,
  20182. bottom: 0.02
  20183. }
  20184. },
  20185. back: {
  20186. height: math.unit(8, "feet"),
  20187. weight: math.unit(500, "lb"),
  20188. name: "Back",
  20189. image: {
  20190. source: "./media/characters/rifter-yrmori/back.svg",
  20191. extra: 1190 / 1145,
  20192. bottom: 0.001
  20193. }
  20194. },
  20195. wings: {
  20196. height: math.unit(7.75, "feet"),
  20197. weight: math.unit(500, "lb"),
  20198. name: "Wings",
  20199. image: {
  20200. source: "./media/characters/rifter-yrmori/wings.svg",
  20201. extra: 1357 / 1285
  20202. }
  20203. },
  20204. maw: {
  20205. height: math.unit(0.8, "feet"),
  20206. name: "Maw",
  20207. image: {
  20208. source: "./media/characters/rifter-yrmori/maw.svg"
  20209. }
  20210. },
  20211. mawfront: {
  20212. height: math.unit(1.45, "feet"),
  20213. name: "Maw (Front)",
  20214. image: {
  20215. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20216. }
  20217. },
  20218. },
  20219. [
  20220. {
  20221. name: "Normal",
  20222. height: math.unit(8, "feet"),
  20223. default: true
  20224. },
  20225. {
  20226. name: "Macro",
  20227. height: math.unit(42, "meters")
  20228. },
  20229. ]
  20230. ))
  20231. characterMakers.push(() => makeCharacter(
  20232. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20233. {
  20234. were: {
  20235. height: math.unit(25 + 6 / 12, "feet"),
  20236. weight: math.unit(10000, "lb"),
  20237. name: "Were",
  20238. image: {
  20239. source: "./media/characters/tahajin/were.svg",
  20240. extra: 801 / 770,
  20241. bottom: 0.042
  20242. }
  20243. },
  20244. aquatic: {
  20245. height: math.unit(6 + 4 / 12, "feet"),
  20246. weight: math.unit(160, "lb"),
  20247. name: "Aquatic",
  20248. image: {
  20249. source: "./media/characters/tahajin/aquatic.svg",
  20250. extra: 572 / 542,
  20251. bottom: 0.04
  20252. }
  20253. },
  20254. chow: {
  20255. height: math.unit(8 + 11 / 12, "feet"),
  20256. weight: math.unit(450, "lb"),
  20257. name: "Chow",
  20258. image: {
  20259. source: "./media/characters/tahajin/chow.svg",
  20260. extra: 660 / 640,
  20261. bottom: 0.015
  20262. }
  20263. },
  20264. demiNaga: {
  20265. height: math.unit(6 + 8 / 12, "feet"),
  20266. weight: math.unit(300, "lb"),
  20267. name: "Demi Naga",
  20268. image: {
  20269. source: "./media/characters/tahajin/demi-naga.svg",
  20270. extra: 643 / 615,
  20271. bottom: 0.1
  20272. }
  20273. },
  20274. data: {
  20275. height: math.unit(5, "inches"),
  20276. weight: math.unit(0.1, "lb"),
  20277. name: "Data",
  20278. image: {
  20279. source: "./media/characters/tahajin/data.svg"
  20280. }
  20281. },
  20282. fluu: {
  20283. height: math.unit(5 + 7 / 12, "feet"),
  20284. weight: math.unit(140, "lb"),
  20285. name: "Fluu",
  20286. image: {
  20287. source: "./media/characters/tahajin/fluu.svg",
  20288. extra: 628 / 592,
  20289. bottom: 0.02
  20290. }
  20291. },
  20292. starWarrior: {
  20293. height: math.unit(4 + 5 / 12, "feet"),
  20294. weight: math.unit(50, "lb"),
  20295. name: "Star Warrior",
  20296. image: {
  20297. source: "./media/characters/tahajin/star-warrior.svg"
  20298. }
  20299. },
  20300. },
  20301. [
  20302. {
  20303. name: "Normal",
  20304. height: math.unit(25 + 6 / 12, "feet"),
  20305. default: true
  20306. },
  20307. ]
  20308. ))
  20309. characterMakers.push(() => makeCharacter(
  20310. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20311. {
  20312. front: {
  20313. height: math.unit(8, "feet"),
  20314. weight: math.unit(350, "lb"),
  20315. name: "Front",
  20316. image: {
  20317. source: "./media/characters/gabira/front.svg",
  20318. extra: 608 / 580,
  20319. bottom: 0.03
  20320. }
  20321. },
  20322. back: {
  20323. height: math.unit(8, "feet"),
  20324. weight: math.unit(350, "lb"),
  20325. name: "Back",
  20326. image: {
  20327. source: "./media/characters/gabira/back.svg",
  20328. extra: 608 / 580,
  20329. bottom: 0.03
  20330. }
  20331. },
  20332. },
  20333. [
  20334. {
  20335. name: "Normal",
  20336. height: math.unit(8, "feet"),
  20337. default: true
  20338. },
  20339. ]
  20340. ))
  20341. characterMakers.push(() => makeCharacter(
  20342. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20343. {
  20344. front: {
  20345. height: math.unit(5 + 3 / 12, "feet"),
  20346. weight: math.unit(137, "lb"),
  20347. name: "Front",
  20348. image: {
  20349. source: "./media/characters/sasha-katraine/front.svg",
  20350. bottom: 0.045
  20351. }
  20352. },
  20353. },
  20354. [
  20355. {
  20356. name: "Micro",
  20357. height: math.unit(5, "inches")
  20358. },
  20359. {
  20360. name: "Normal",
  20361. height: math.unit(5 + 3 / 12, "feet"),
  20362. default: true
  20363. },
  20364. ]
  20365. ))
  20366. characterMakers.push(() => makeCharacter(
  20367. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20368. {
  20369. side: {
  20370. height: math.unit(4, "inches"),
  20371. weight: math.unit(200, "grams"),
  20372. name: "Side",
  20373. image: {
  20374. source: "./media/characters/der/side.svg",
  20375. extra: 719 / 400,
  20376. bottom: 30.6 / 749.9187
  20377. }
  20378. },
  20379. },
  20380. [
  20381. {
  20382. name: "Micro",
  20383. height: math.unit(4, "inches"),
  20384. default: true
  20385. },
  20386. ]
  20387. ))
  20388. characterMakers.push(() => makeCharacter(
  20389. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20390. {
  20391. side: {
  20392. height: math.unit(30, "meters"),
  20393. weight: math.unit(700, "tonnes"),
  20394. name: "Side",
  20395. image: {
  20396. source: "./media/characters/fixerdragon/side.svg",
  20397. extra: (1293.0514 - 116.03) / 1106.86,
  20398. bottom: 116.03 / 1293.0514
  20399. }
  20400. },
  20401. },
  20402. [
  20403. {
  20404. name: "Planck",
  20405. height: math.unit(1.6e-35, "meters")
  20406. },
  20407. {
  20408. name: "Micro",
  20409. height: math.unit(0.4, "meters")
  20410. },
  20411. {
  20412. name: "Normal",
  20413. height: math.unit(30, "meters"),
  20414. default: true
  20415. },
  20416. {
  20417. name: "Megamacro",
  20418. height: math.unit(1.2, "megameters")
  20419. },
  20420. {
  20421. name: "Teramacro",
  20422. height: math.unit(130, "terameters")
  20423. },
  20424. {
  20425. name: "Yottamacro",
  20426. height: math.unit(6200, "yottameters")
  20427. },
  20428. ]
  20429. ));
  20430. characterMakers.push(() => makeCharacter(
  20431. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20432. {
  20433. front: {
  20434. height: math.unit(8, "feet"),
  20435. weight: math.unit(250, "lb"),
  20436. name: "Front",
  20437. image: {
  20438. source: "./media/characters/kite/front.svg",
  20439. extra: 2796 / 2659,
  20440. bottom: 0.002
  20441. }
  20442. },
  20443. },
  20444. [
  20445. {
  20446. name: "Normal",
  20447. height: math.unit(8, "feet"),
  20448. default: true
  20449. },
  20450. {
  20451. name: "Macro",
  20452. height: math.unit(360, "feet")
  20453. },
  20454. {
  20455. name: "Megamacro",
  20456. height: math.unit(1500, "feet")
  20457. },
  20458. ]
  20459. ))
  20460. characterMakers.push(() => makeCharacter(
  20461. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20462. {
  20463. front: {
  20464. height: math.unit(5 + 10 / 12, "feet"),
  20465. weight: math.unit(150, "lb"),
  20466. name: "Front",
  20467. image: {
  20468. source: "./media/characters/poojawa-vynar/front.svg",
  20469. extra: (1506.1547 - 55) / 1356.6,
  20470. bottom: 55 / 1506.1547
  20471. }
  20472. },
  20473. frontTailless: {
  20474. height: math.unit(5 + 10 / 12, "feet"),
  20475. weight: math.unit(150, "lb"),
  20476. name: "Front (Tailless)",
  20477. image: {
  20478. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20479. extra: (1506.1547 - 55) / 1356.6,
  20480. bottom: 55 / 1506.1547
  20481. }
  20482. },
  20483. },
  20484. [
  20485. {
  20486. name: "Normal",
  20487. height: math.unit(5 + 10 / 12, "feet"),
  20488. default: true
  20489. },
  20490. ]
  20491. ))
  20492. characterMakers.push(() => makeCharacter(
  20493. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20494. {
  20495. front: {
  20496. height: math.unit(293, "meters"),
  20497. weight: math.unit(70400, "tons"),
  20498. name: "Front",
  20499. image: {
  20500. source: "./media/characters/violette/front.svg",
  20501. extra: 1227 / 1180,
  20502. bottom: 0.005
  20503. }
  20504. },
  20505. back: {
  20506. height: math.unit(293, "meters"),
  20507. weight: math.unit(70400, "tons"),
  20508. name: "Back",
  20509. image: {
  20510. source: "./media/characters/violette/back.svg",
  20511. extra: 1227 / 1180,
  20512. bottom: 0.005
  20513. }
  20514. },
  20515. },
  20516. [
  20517. {
  20518. name: "Macro",
  20519. height: math.unit(293, "meters"),
  20520. default: true
  20521. },
  20522. ]
  20523. ))
  20524. characterMakers.push(() => makeCharacter(
  20525. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20526. {
  20527. front: {
  20528. height: math.unit(1050, "feet"),
  20529. weight: math.unit(200000, "tons"),
  20530. name: "Front",
  20531. image: {
  20532. source: "./media/characters/alessandra/front.svg",
  20533. extra: 960 / 912,
  20534. bottom: 0.06
  20535. }
  20536. },
  20537. },
  20538. [
  20539. {
  20540. name: "Macro",
  20541. height: math.unit(1050, "feet")
  20542. },
  20543. {
  20544. name: "Macro+",
  20545. height: math.unit(900, "meters"),
  20546. default: true
  20547. },
  20548. ]
  20549. ))
  20550. characterMakers.push(() => makeCharacter(
  20551. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20552. {
  20553. front: {
  20554. height: math.unit(5, "feet"),
  20555. weight: math.unit(187, "lb"),
  20556. name: "Front",
  20557. image: {
  20558. source: "./media/characters/person/front.svg",
  20559. extra: 3087 / 2945,
  20560. bottom: 91 / 3181
  20561. }
  20562. },
  20563. },
  20564. [
  20565. {
  20566. name: "Micro",
  20567. height: math.unit(3, "inches")
  20568. },
  20569. {
  20570. name: "Normal",
  20571. height: math.unit(5, "feet"),
  20572. default: true
  20573. },
  20574. {
  20575. name: "Macro",
  20576. height: math.unit(90, "feet")
  20577. },
  20578. {
  20579. name: "Max Size",
  20580. height: math.unit(280, "feet")
  20581. },
  20582. ]
  20583. ))
  20584. characterMakers.push(() => makeCharacter(
  20585. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20586. {
  20587. front: {
  20588. height: math.unit(4.5, "meters"),
  20589. weight: math.unit(3200, "lb"),
  20590. name: "Front",
  20591. image: {
  20592. source: "./media/characters/ty/front.svg",
  20593. extra: 1038 / 960,
  20594. bottom: 31.156 / 1068
  20595. }
  20596. },
  20597. back: {
  20598. height: math.unit(4.5, "meters"),
  20599. weight: math.unit(3200, "lb"),
  20600. name: "Back",
  20601. image: {
  20602. source: "./media/characters/ty/back.svg",
  20603. extra: 1044 / 966,
  20604. bottom: 7.48 / 1049
  20605. }
  20606. },
  20607. },
  20608. [
  20609. {
  20610. name: "Normal",
  20611. height: math.unit(4.5, "meters"),
  20612. default: true
  20613. },
  20614. ]
  20615. ))
  20616. characterMakers.push(() => makeCharacter(
  20617. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20618. {
  20619. front: {
  20620. height: math.unit(5 + 4 / 12, "feet"),
  20621. weight: math.unit(115, "lb"),
  20622. name: "Front",
  20623. image: {
  20624. source: "./media/characters/rocky/front.svg",
  20625. extra: 1012 / 975,
  20626. bottom: 54 / 1066
  20627. }
  20628. },
  20629. },
  20630. [
  20631. {
  20632. name: "Normal",
  20633. height: math.unit(5 + 4 / 12, "feet"),
  20634. default: true
  20635. },
  20636. ]
  20637. ))
  20638. characterMakers.push(() => makeCharacter(
  20639. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20640. {
  20641. upright: {
  20642. height: math.unit(6, "meters"),
  20643. weight: math.unit(4000, "kg"),
  20644. name: "Upright",
  20645. image: {
  20646. source: "./media/characters/ruin/upright.svg",
  20647. extra: 668 / 661,
  20648. bottom: 42 / 799.8396
  20649. }
  20650. },
  20651. },
  20652. [
  20653. {
  20654. name: "Normal",
  20655. height: math.unit(6, "meters"),
  20656. default: true
  20657. },
  20658. ]
  20659. ))
  20660. characterMakers.push(() => makeCharacter(
  20661. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20662. {
  20663. front: {
  20664. height: math.unit(5, "feet"),
  20665. weight: math.unit(106, "lb"),
  20666. name: "Front",
  20667. image: {
  20668. source: "./media/characters/robin/front.svg",
  20669. extra: 862 / 799,
  20670. bottom: 42.4 / 914.8856
  20671. }
  20672. },
  20673. },
  20674. [
  20675. {
  20676. name: "Normal",
  20677. height: math.unit(5, "feet"),
  20678. default: true
  20679. },
  20680. ]
  20681. ))
  20682. characterMakers.push(() => makeCharacter(
  20683. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20684. {
  20685. side: {
  20686. height: math.unit(3, "feet"),
  20687. weight: math.unit(225, "lb"),
  20688. name: "Side",
  20689. image: {
  20690. source: "./media/characters/saian/side.svg",
  20691. extra: 566 / 356,
  20692. bottom: 79.7 / 643
  20693. }
  20694. },
  20695. maw: {
  20696. height: math.unit(2.85, "feet"),
  20697. name: "Maw",
  20698. image: {
  20699. source: "./media/characters/saian/maw.svg"
  20700. }
  20701. },
  20702. },
  20703. [
  20704. {
  20705. name: "Normal",
  20706. height: math.unit(3, "feet"),
  20707. default: true
  20708. },
  20709. ]
  20710. ))
  20711. characterMakers.push(() => makeCharacter(
  20712. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20713. {
  20714. side: {
  20715. height: math.unit(8, "feet"),
  20716. weight: math.unit(300, "lb"),
  20717. name: "Side",
  20718. image: {
  20719. source: "./media/characters/equus-silvermane/side.svg",
  20720. extra: 2176 / 2050,
  20721. bottom: 65.7 / 2245
  20722. }
  20723. },
  20724. front: {
  20725. height: math.unit(8, "feet"),
  20726. weight: math.unit(300, "lb"),
  20727. name: "Front",
  20728. image: {
  20729. source: "./media/characters/equus-silvermane/front.svg",
  20730. extra: 4633 / 4400,
  20731. bottom: 71.3 / 4706.915
  20732. }
  20733. },
  20734. sideStepping: {
  20735. height: math.unit(8, "feet"),
  20736. weight: math.unit(300, "lb"),
  20737. name: "Side (Stepping)",
  20738. image: {
  20739. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20740. extra: 1968 / 1860,
  20741. bottom: 16.4 / 1989
  20742. }
  20743. },
  20744. },
  20745. [
  20746. {
  20747. name: "Normal",
  20748. height: math.unit(8, "feet")
  20749. },
  20750. {
  20751. name: "Minimacro",
  20752. height: math.unit(75, "feet"),
  20753. default: true
  20754. },
  20755. {
  20756. name: "Macro",
  20757. height: math.unit(150, "feet")
  20758. },
  20759. {
  20760. name: "Macro+",
  20761. height: math.unit(1000, "feet")
  20762. },
  20763. {
  20764. name: "Megamacro",
  20765. height: math.unit(1, "mile")
  20766. },
  20767. ]
  20768. ))
  20769. characterMakers.push(() => makeCharacter(
  20770. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20771. {
  20772. side: {
  20773. height: math.unit(20, "feet"),
  20774. weight: math.unit(30000, "kg"),
  20775. name: "Side",
  20776. image: {
  20777. source: "./media/characters/windar/side.svg",
  20778. extra: 1491 / 1248,
  20779. bottom: 82.56 / 1568
  20780. }
  20781. },
  20782. },
  20783. [
  20784. {
  20785. name: "Normal",
  20786. height: math.unit(20, "feet"),
  20787. default: true
  20788. },
  20789. ]
  20790. ))
  20791. characterMakers.push(() => makeCharacter(
  20792. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20793. {
  20794. side: {
  20795. height: math.unit(15.66, "feet"),
  20796. weight: math.unit(150, "lb"),
  20797. name: "Side",
  20798. image: {
  20799. source: "./media/characters/melody/side.svg",
  20800. extra: 1097 / 944,
  20801. bottom: 11.8 / 1109
  20802. }
  20803. },
  20804. sideOutfit: {
  20805. height: math.unit(15.66, "feet"),
  20806. weight: math.unit(150, "lb"),
  20807. name: "Side (Outfit)",
  20808. image: {
  20809. source: "./media/characters/melody/side-outfit.svg",
  20810. extra: 1097 / 944,
  20811. bottom: 11.8 / 1109
  20812. }
  20813. },
  20814. },
  20815. [
  20816. {
  20817. name: "Normal",
  20818. height: math.unit(15.66, "feet"),
  20819. default: true
  20820. },
  20821. ]
  20822. ))
  20823. characterMakers.push(() => makeCharacter(
  20824. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20825. {
  20826. front: {
  20827. height: math.unit(8, "feet"),
  20828. weight: math.unit(325, "lb"),
  20829. name: "Front",
  20830. image: {
  20831. source: "./media/characters/windera/front.svg",
  20832. extra: 3180 / 2845,
  20833. bottom: 178 / 3365
  20834. }
  20835. },
  20836. },
  20837. [
  20838. {
  20839. name: "Normal",
  20840. height: math.unit(8, "feet"),
  20841. default: true
  20842. },
  20843. ]
  20844. ))
  20845. characterMakers.push(() => makeCharacter(
  20846. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20847. {
  20848. front: {
  20849. height: math.unit(28.75, "feet"),
  20850. weight: math.unit(2000, "kg"),
  20851. name: "Front",
  20852. image: {
  20853. source: "./media/characters/sonear/front.svg",
  20854. extra: 1041.1 / 964.9,
  20855. bottom: 53.7 / 1096.6
  20856. }
  20857. },
  20858. },
  20859. [
  20860. {
  20861. name: "Normal",
  20862. height: math.unit(28.75, "feet"),
  20863. default: true
  20864. },
  20865. ]
  20866. ))
  20867. characterMakers.push(() => makeCharacter(
  20868. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20869. {
  20870. side: {
  20871. height: math.unit(25.5, "feet"),
  20872. weight: math.unit(23000, "kg"),
  20873. name: "Side",
  20874. image: {
  20875. source: "./media/characters/kanara/side.svg"
  20876. }
  20877. },
  20878. },
  20879. [
  20880. {
  20881. name: "Normal",
  20882. height: math.unit(25.5, "feet"),
  20883. default: true
  20884. },
  20885. ]
  20886. ))
  20887. characterMakers.push(() => makeCharacter(
  20888. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20889. {
  20890. side: {
  20891. height: math.unit(10, "feet"),
  20892. weight: math.unit(1000, "kg"),
  20893. name: "Side",
  20894. image: {
  20895. source: "./media/characters/ereus/side.svg",
  20896. extra: 1157 / 959,
  20897. bottom: 153 / 1312.5
  20898. }
  20899. },
  20900. },
  20901. [
  20902. {
  20903. name: "Normal",
  20904. height: math.unit(10, "feet"),
  20905. default: true
  20906. },
  20907. ]
  20908. ))
  20909. characterMakers.push(() => makeCharacter(
  20910. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20911. {
  20912. side: {
  20913. height: math.unit(4.5, "feet"),
  20914. weight: math.unit(500, "lb"),
  20915. name: "Side",
  20916. image: {
  20917. source: "./media/characters/e-ter/side.svg",
  20918. extra: 1550 / 1248,
  20919. bottom: 146 / 1694
  20920. }
  20921. },
  20922. },
  20923. [
  20924. {
  20925. name: "Normal",
  20926. height: math.unit(4.5, "feet"),
  20927. default: true
  20928. },
  20929. ]
  20930. ))
  20931. characterMakers.push(() => makeCharacter(
  20932. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20933. {
  20934. side: {
  20935. height: math.unit(9.7, "feet"),
  20936. weight: math.unit(4000, "kg"),
  20937. name: "Side",
  20938. image: {
  20939. source: "./media/characters/yamie/side.svg"
  20940. }
  20941. },
  20942. },
  20943. [
  20944. {
  20945. name: "Normal",
  20946. height: math.unit(9.7, "feet"),
  20947. default: true
  20948. },
  20949. ]
  20950. ))
  20951. characterMakers.push(() => makeCharacter(
  20952. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  20953. {
  20954. front: {
  20955. height: math.unit(50, "feet"),
  20956. weight: math.unit(50000, "kg"),
  20957. name: "Front",
  20958. image: {
  20959. source: "./media/characters/anders/front.svg",
  20960. extra: 570 / 539,
  20961. bottom: 14.7 / 586.7
  20962. }
  20963. },
  20964. },
  20965. [
  20966. {
  20967. name: "Large",
  20968. height: math.unit(50, "feet")
  20969. },
  20970. {
  20971. name: "Macro",
  20972. height: math.unit(2000, "feet"),
  20973. default: true
  20974. },
  20975. {
  20976. name: "Megamacro",
  20977. height: math.unit(12, "miles")
  20978. },
  20979. ]
  20980. ))
  20981. characterMakers.push(() => makeCharacter(
  20982. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  20983. {
  20984. front: {
  20985. height: math.unit(7 + 2 / 12, "feet"),
  20986. weight: math.unit(300, "lb"),
  20987. name: "Front",
  20988. image: {
  20989. source: "./media/characters/reban/front.svg",
  20990. extra: 516 / 487,
  20991. bottom: 42.82 / 558.356
  20992. }
  20993. },
  20994. dick: {
  20995. height: math.unit(7 / 5, "feet"),
  20996. name: "Dick",
  20997. image: {
  20998. source: "./media/characters/reban/dick.svg"
  20999. }
  21000. },
  21001. },
  21002. [
  21003. {
  21004. name: "Natural Height",
  21005. height: math.unit(7 + 2 / 12, "feet")
  21006. },
  21007. {
  21008. name: "Macro",
  21009. height: math.unit(500, "feet"),
  21010. default: true
  21011. },
  21012. {
  21013. name: "Canon Height",
  21014. height: math.unit(50, "AU")
  21015. },
  21016. ]
  21017. ))
  21018. characterMakers.push(() => makeCharacter(
  21019. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21020. {
  21021. front: {
  21022. height: math.unit(6, "feet"),
  21023. weight: math.unit(150, "lb"),
  21024. name: "Front",
  21025. image: {
  21026. source: "./media/characters/terrance-keayes/front.svg",
  21027. extra: 1.005,
  21028. bottom: 151 / 1615
  21029. }
  21030. },
  21031. side: {
  21032. height: math.unit(6, "feet"),
  21033. weight: math.unit(150, "lb"),
  21034. name: "Side",
  21035. image: {
  21036. source: "./media/characters/terrance-keayes/side.svg",
  21037. extra: 1.005,
  21038. bottom: 129.4 / 1544
  21039. }
  21040. },
  21041. back: {
  21042. height: math.unit(6, "feet"),
  21043. weight: math.unit(150, "lb"),
  21044. name: "Back",
  21045. image: {
  21046. source: "./media/characters/terrance-keayes/back.svg",
  21047. extra: 1.005,
  21048. bottom: 58.4 / 1557.3
  21049. }
  21050. },
  21051. dick: {
  21052. height: math.unit(6 * 0.208, "feet"),
  21053. name: "Dick",
  21054. image: {
  21055. source: "./media/characters/terrance-keayes/dick.svg"
  21056. }
  21057. },
  21058. },
  21059. [
  21060. {
  21061. name: "Canon Height",
  21062. height: math.unit(35, "miles"),
  21063. default: true
  21064. },
  21065. ]
  21066. ))
  21067. characterMakers.push(() => makeCharacter(
  21068. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21069. {
  21070. front: {
  21071. height: math.unit(6, "feet"),
  21072. weight: math.unit(150, "lb"),
  21073. name: "Front",
  21074. image: {
  21075. source: "./media/characters/ofelia/front.svg",
  21076. extra: 546 / 541,
  21077. bottom: 39 / 583
  21078. }
  21079. },
  21080. back: {
  21081. height: math.unit(6, "feet"),
  21082. weight: math.unit(150, "lb"),
  21083. name: "Back",
  21084. image: {
  21085. source: "./media/characters/ofelia/back.svg",
  21086. extra: 564 / 559.5,
  21087. bottom: 8.69 / 573.02
  21088. }
  21089. },
  21090. maw: {
  21091. height: math.unit(1, "feet"),
  21092. name: "Maw",
  21093. image: {
  21094. source: "./media/characters/ofelia/maw.svg"
  21095. }
  21096. },
  21097. foot: {
  21098. height: math.unit(1.949, "feet"),
  21099. name: "Foot",
  21100. image: {
  21101. source: "./media/characters/ofelia/foot.svg"
  21102. }
  21103. },
  21104. },
  21105. [
  21106. {
  21107. name: "Canon Height",
  21108. height: math.unit(2000, "miles"),
  21109. default: true
  21110. },
  21111. ]
  21112. ))
  21113. characterMakers.push(() => makeCharacter(
  21114. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21115. {
  21116. front: {
  21117. height: math.unit(6, "feet"),
  21118. weight: math.unit(150, "lb"),
  21119. name: "Front",
  21120. image: {
  21121. source: "./media/characters/samuel/front.svg",
  21122. extra: 265 / 258,
  21123. bottom: 2 / 266.1566
  21124. }
  21125. },
  21126. },
  21127. [
  21128. {
  21129. name: "Macro",
  21130. height: math.unit(100, "feet"),
  21131. default: true
  21132. },
  21133. {
  21134. name: "Full Size",
  21135. height: math.unit(1000, "miles")
  21136. },
  21137. ]
  21138. ))
  21139. characterMakers.push(() => makeCharacter(
  21140. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21141. {
  21142. front: {
  21143. height: math.unit(6, "feet"),
  21144. weight: math.unit(300, "lb"),
  21145. name: "Front",
  21146. image: {
  21147. source: "./media/characters/beishir-kiel/front.svg",
  21148. extra: 569 / 547,
  21149. bottom: 41.9 / 609
  21150. }
  21151. },
  21152. maw: {
  21153. height: math.unit(6 * 0.202, "feet"),
  21154. name: "Maw",
  21155. image: {
  21156. source: "./media/characters/beishir-kiel/maw.svg"
  21157. }
  21158. },
  21159. },
  21160. [
  21161. {
  21162. name: "Macro",
  21163. height: math.unit(300, "feet"),
  21164. default: true
  21165. },
  21166. ]
  21167. ))
  21168. characterMakers.push(() => makeCharacter(
  21169. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21170. {
  21171. front: {
  21172. height: math.unit(5 + 8 / 12, "feet"),
  21173. weight: math.unit(120, "lb"),
  21174. name: "Front",
  21175. image: {
  21176. source: "./media/characters/logan-grey/front.svg",
  21177. extra: 2539 / 2393,
  21178. bottom: 97.6 / 2636.37
  21179. }
  21180. },
  21181. frontAlt: {
  21182. height: math.unit(5 + 8 / 12, "feet"),
  21183. weight: math.unit(120, "lb"),
  21184. name: "Front (Alt)",
  21185. image: {
  21186. source: "./media/characters/logan-grey/front-alt.svg",
  21187. extra: 958 / 893,
  21188. bottom: 15 / 970.768
  21189. }
  21190. },
  21191. back: {
  21192. height: math.unit(5 + 8 / 12, "feet"),
  21193. weight: math.unit(120, "lb"),
  21194. name: "Back",
  21195. image: {
  21196. source: "./media/characters/logan-grey/back.svg",
  21197. extra: 958 / 893,
  21198. bottom: 2.1881 / 970.9788
  21199. }
  21200. },
  21201. dick: {
  21202. height: math.unit(1.437, "feet"),
  21203. name: "Dick",
  21204. image: {
  21205. source: "./media/characters/logan-grey/dick.svg"
  21206. }
  21207. },
  21208. },
  21209. [
  21210. {
  21211. name: "Normal",
  21212. height: math.unit(5 + 8 / 12, "feet")
  21213. },
  21214. {
  21215. name: "The 500 Foot Femboy",
  21216. height: math.unit(500, "feet"),
  21217. default: true
  21218. },
  21219. {
  21220. name: "Megmacro",
  21221. height: math.unit(20, "miles")
  21222. },
  21223. ]
  21224. ))
  21225. characterMakers.push(() => makeCharacter(
  21226. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21227. {
  21228. front: {
  21229. height: math.unit(8 + 2 / 12, "feet"),
  21230. weight: math.unit(275, "lb"),
  21231. name: "Front",
  21232. image: {
  21233. source: "./media/characters/draganta/front.svg",
  21234. extra: 1177 / 1135,
  21235. bottom: 33.46 / 1212.1
  21236. }
  21237. },
  21238. },
  21239. [
  21240. {
  21241. name: "Normal",
  21242. height: math.unit(8 + 6 / 12, "feet"),
  21243. default: true
  21244. },
  21245. {
  21246. name: "Macro",
  21247. height: math.unit(150, "feet")
  21248. },
  21249. {
  21250. name: "Megamacro",
  21251. height: math.unit(1000, "miles")
  21252. },
  21253. ]
  21254. ))
  21255. characterMakers.push(() => makeCharacter(
  21256. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21257. {
  21258. front: {
  21259. height: math.unit(1.72, "m"),
  21260. weight: math.unit(80, "lb"),
  21261. name: "Front",
  21262. image: {
  21263. source: "./media/characters/voski/front.svg",
  21264. extra: 2076.22 / 2022.4,
  21265. bottom: 102.7 / 2177.3866
  21266. }
  21267. },
  21268. frontNsfw: {
  21269. height: math.unit(1.72, "m"),
  21270. weight: math.unit(80, "lb"),
  21271. name: "Front (NSFW)",
  21272. image: {
  21273. source: "./media/characters/voski/front-nsfw.svg",
  21274. extra: 2076.22 / 2022.4,
  21275. bottom: 102.7 / 2177.3866
  21276. }
  21277. },
  21278. back: {
  21279. height: math.unit(1.72, "m"),
  21280. weight: math.unit(80, "lb"),
  21281. name: "Back",
  21282. image: {
  21283. source: "./media/characters/voski/back.svg",
  21284. extra: 2104 / 2051,
  21285. bottom: 10.45 / 2113.63
  21286. }
  21287. },
  21288. },
  21289. [
  21290. {
  21291. name: "Normal",
  21292. height: math.unit(1.72, "m")
  21293. },
  21294. {
  21295. name: "Macro",
  21296. height: math.unit(55, "m"),
  21297. default: true
  21298. },
  21299. {
  21300. name: "Macro+",
  21301. height: math.unit(300, "m")
  21302. },
  21303. {
  21304. name: "Macro++",
  21305. height: math.unit(700, "m")
  21306. },
  21307. {
  21308. name: "Macro+++",
  21309. height: math.unit(4500, "m")
  21310. },
  21311. {
  21312. name: "Macro++++",
  21313. height: math.unit(45, "km")
  21314. },
  21315. {
  21316. name: "Macro+++++",
  21317. height: math.unit(1220, "km")
  21318. },
  21319. ]
  21320. ))
  21321. characterMakers.push(() => makeCharacter(
  21322. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21323. {
  21324. front: {
  21325. height: math.unit(2.3, "m"),
  21326. weight: math.unit(304, "kg"),
  21327. name: "Front",
  21328. image: {
  21329. source: "./media/characters/icowom-lee/front.svg",
  21330. extra: 985 / 955,
  21331. bottom: 25.4 / 1012
  21332. }
  21333. },
  21334. fronttentacles: {
  21335. height: math.unit(2.3, "m"),
  21336. weight: math.unit(304, "kg"),
  21337. name: "Front-tentacles",
  21338. image: {
  21339. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21340. extra: 985 / 955,
  21341. bottom: 25.4 / 1012
  21342. }
  21343. },
  21344. back: {
  21345. height: math.unit(2.3, "m"),
  21346. weight: math.unit(304, "kg"),
  21347. name: "Back",
  21348. image: {
  21349. source: "./media/characters/icowom-lee/back.svg",
  21350. extra: 975 / 954,
  21351. bottom: 9.5 / 985
  21352. }
  21353. },
  21354. backtentacles: {
  21355. height: math.unit(2.3, "m"),
  21356. weight: math.unit(304, "kg"),
  21357. name: "Back-tentacles",
  21358. image: {
  21359. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21360. extra: 975 / 954,
  21361. bottom: 9.5 / 985
  21362. }
  21363. },
  21364. frontDressed: {
  21365. height: math.unit(2.3, "m"),
  21366. weight: math.unit(304, "kg"),
  21367. name: "Front (Dressed)",
  21368. image: {
  21369. source: "./media/characters/icowom-lee/front-dressed.svg",
  21370. extra: 3076 / 2933,
  21371. bottom: 51.4 / 3125.1889
  21372. }
  21373. },
  21374. rump: {
  21375. height: math.unit(0.776, "meters"),
  21376. name: "Rump",
  21377. image: {
  21378. source: "./media/characters/icowom-lee/rump.svg"
  21379. }
  21380. },
  21381. genitals: {
  21382. height: math.unit(0.78, "meters"),
  21383. name: "Genitals",
  21384. image: {
  21385. source: "./media/characters/icowom-lee/genitals.svg"
  21386. }
  21387. },
  21388. },
  21389. [
  21390. {
  21391. name: "Normal",
  21392. height: math.unit(2.3, "meters"),
  21393. default: true
  21394. },
  21395. {
  21396. name: "Macro",
  21397. height: math.unit(94, "meters"),
  21398. default: true
  21399. },
  21400. ]
  21401. ))
  21402. characterMakers.push(() => makeCharacter(
  21403. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21404. {
  21405. front: {
  21406. height: math.unit(22, "meters"),
  21407. weight: math.unit(21000, "kg"),
  21408. name: "Front",
  21409. image: {
  21410. source: "./media/characters/shock-diamond/front.svg",
  21411. extra: 2204 / 2053,
  21412. bottom: 65 / 2239.47
  21413. }
  21414. },
  21415. frontNude: {
  21416. height: math.unit(22, "meters"),
  21417. weight: math.unit(21000, "kg"),
  21418. name: "Front (Nude)",
  21419. image: {
  21420. source: "./media/characters/shock-diamond/front-nude.svg",
  21421. extra: 2514 / 2285,
  21422. bottom: 13 / 2527.56
  21423. }
  21424. },
  21425. },
  21426. [
  21427. {
  21428. name: "Normal",
  21429. height: math.unit(3, "meters")
  21430. },
  21431. {
  21432. name: "Macro",
  21433. height: math.unit(22, "meters"),
  21434. default: true
  21435. },
  21436. ]
  21437. ))
  21438. characterMakers.push(() => makeCharacter(
  21439. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21440. {
  21441. front: {
  21442. height: math.unit(5 + 4 / 12, "feet"),
  21443. weight: math.unit(120, "lb"),
  21444. name: "Front",
  21445. image: {
  21446. source: "./media/characters/rory/front.svg",
  21447. extra: 589 / 556,
  21448. bottom: 45.7 / 635.76
  21449. }
  21450. },
  21451. frontNude: {
  21452. height: math.unit(5 + 4 / 12, "feet"),
  21453. weight: math.unit(120, "lb"),
  21454. name: "Front (Nude)",
  21455. image: {
  21456. source: "./media/characters/rory/front-nude.svg",
  21457. extra: 589 / 556,
  21458. bottom: 45.7 / 635.76
  21459. }
  21460. },
  21461. side: {
  21462. height: math.unit(5 + 4 / 12, "feet"),
  21463. weight: math.unit(120, "lb"),
  21464. name: "Side",
  21465. image: {
  21466. source: "./media/characters/rory/side.svg",
  21467. extra: 597 / 564,
  21468. bottom: 55 / 653
  21469. }
  21470. },
  21471. back: {
  21472. height: math.unit(5 + 4 / 12, "feet"),
  21473. weight: math.unit(120, "lb"),
  21474. name: "Back",
  21475. image: {
  21476. source: "./media/characters/rory/back.svg",
  21477. extra: 620 / 585,
  21478. bottom: 8.86 / 630.43
  21479. }
  21480. },
  21481. dick: {
  21482. height: math.unit(0.86, "feet"),
  21483. name: "Dick",
  21484. image: {
  21485. source: "./media/characters/rory/dick.svg"
  21486. }
  21487. },
  21488. },
  21489. [
  21490. {
  21491. name: "Normal",
  21492. height: math.unit(5 + 4 / 12, "feet"),
  21493. default: true
  21494. },
  21495. {
  21496. name: "Macro",
  21497. height: math.unit(100, "feet")
  21498. },
  21499. {
  21500. name: "Macro+",
  21501. height: math.unit(140, "feet")
  21502. },
  21503. {
  21504. name: "Macro++",
  21505. height: math.unit(300, "feet")
  21506. },
  21507. ]
  21508. ))
  21509. characterMakers.push(() => makeCharacter(
  21510. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21511. {
  21512. front: {
  21513. height: math.unit(5 + 9 / 12, "feet"),
  21514. weight: math.unit(190, "lb"),
  21515. name: "Front",
  21516. image: {
  21517. source: "./media/characters/sprisk/front.svg",
  21518. extra: 1225 / 1180,
  21519. bottom: 42.7 / 1266.4
  21520. }
  21521. },
  21522. frontNsfw: {
  21523. height: math.unit(5 + 9 / 12, "feet"),
  21524. weight: math.unit(190, "lb"),
  21525. name: "Front (NSFW)",
  21526. image: {
  21527. source: "./media/characters/sprisk/front-nsfw.svg",
  21528. extra: 1225 / 1180,
  21529. bottom: 42.7 / 1266.4
  21530. }
  21531. },
  21532. back: {
  21533. height: math.unit(5 + 9 / 12, "feet"),
  21534. weight: math.unit(190, "lb"),
  21535. name: "Back",
  21536. image: {
  21537. source: "./media/characters/sprisk/back.svg",
  21538. extra: 1247 / 1200,
  21539. bottom: 5.6 / 1253.04
  21540. }
  21541. },
  21542. },
  21543. [
  21544. {
  21545. name: "Tiny",
  21546. height: math.unit(2, "inches")
  21547. },
  21548. {
  21549. name: "Normal",
  21550. height: math.unit(5 + 9 / 12, "feet"),
  21551. default: true
  21552. },
  21553. {
  21554. name: "Mini Macro",
  21555. height: math.unit(18, "feet")
  21556. },
  21557. {
  21558. name: "Macro",
  21559. height: math.unit(100, "feet")
  21560. },
  21561. {
  21562. name: "MACRO",
  21563. height: math.unit(50, "miles")
  21564. },
  21565. {
  21566. name: "M A C R O",
  21567. height: math.unit(300, "miles")
  21568. },
  21569. ]
  21570. ))
  21571. characterMakers.push(() => makeCharacter(
  21572. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21573. {
  21574. side: {
  21575. height: math.unit(15.6, "meters"),
  21576. weight: math.unit(700000, "kg"),
  21577. name: "Side",
  21578. image: {
  21579. source: "./media/characters/bunsen/side.svg",
  21580. extra: 1644 / 358
  21581. }
  21582. },
  21583. foot: {
  21584. height: math.unit(1.611 * 1644 / 358, "meter"),
  21585. name: "Foot",
  21586. image: {
  21587. source: "./media/characters/bunsen/foot.svg"
  21588. }
  21589. },
  21590. },
  21591. [
  21592. {
  21593. name: "Small",
  21594. height: math.unit(10, "feet")
  21595. },
  21596. {
  21597. name: "Normal",
  21598. height: math.unit(15.6, "meters"),
  21599. default: true
  21600. },
  21601. ]
  21602. ))
  21603. characterMakers.push(() => makeCharacter(
  21604. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21605. {
  21606. front: {
  21607. height: math.unit(4 + 11 / 12, "feet"),
  21608. weight: math.unit(140, "lb"),
  21609. name: "Front",
  21610. image: {
  21611. source: "./media/characters/sesh/front.svg",
  21612. extra: 3420 / 3231,
  21613. bottom: 72 / 3949.5
  21614. }
  21615. },
  21616. },
  21617. [
  21618. {
  21619. name: "Normal",
  21620. height: math.unit(4 + 11 / 12, "feet")
  21621. },
  21622. {
  21623. name: "Grown",
  21624. height: math.unit(15, "feet"),
  21625. default: true
  21626. },
  21627. {
  21628. name: "Macro",
  21629. height: math.unit(1500, "feet")
  21630. },
  21631. {
  21632. name: "Megamacro",
  21633. height: math.unit(30, "miles")
  21634. },
  21635. {
  21636. name: "Continental",
  21637. height: math.unit(3000, "miles")
  21638. },
  21639. {
  21640. name: "Gravity Mass",
  21641. height: math.unit(300000, "miles")
  21642. },
  21643. {
  21644. name: "Planet Buster",
  21645. height: math.unit(30000000, "miles")
  21646. },
  21647. {
  21648. name: "Big",
  21649. height: math.unit(3000000000, "miles")
  21650. },
  21651. ]
  21652. ))
  21653. characterMakers.push(() => makeCharacter(
  21654. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21655. {
  21656. front: {
  21657. height: math.unit(9, "feet"),
  21658. weight: math.unit(350, "lb"),
  21659. name: "Front",
  21660. image: {
  21661. source: "./media/characters/pepper/front.svg",
  21662. extra: 1448 / 1312,
  21663. bottom: 9.4 / 1457.88
  21664. }
  21665. },
  21666. back: {
  21667. height: math.unit(9, "feet"),
  21668. weight: math.unit(350, "lb"),
  21669. name: "Back",
  21670. image: {
  21671. source: "./media/characters/pepper/back.svg",
  21672. extra: 1423 / 1300,
  21673. bottom: 4.6 / 1429
  21674. }
  21675. },
  21676. maw: {
  21677. height: math.unit(0.932, "feet"),
  21678. name: "Maw",
  21679. image: {
  21680. source: "./media/characters/pepper/maw.svg"
  21681. }
  21682. },
  21683. },
  21684. [
  21685. {
  21686. name: "Normal",
  21687. height: math.unit(9, "feet"),
  21688. default: true
  21689. },
  21690. ]
  21691. ))
  21692. characterMakers.push(() => makeCharacter(
  21693. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21694. {
  21695. front: {
  21696. height: math.unit(6, "feet"),
  21697. weight: math.unit(150, "lb"),
  21698. name: "Front",
  21699. image: {
  21700. source: "./media/characters/maelstrom/front.svg",
  21701. extra: 2100 / 1883,
  21702. bottom: 94 / 2196.7
  21703. }
  21704. },
  21705. },
  21706. [
  21707. {
  21708. name: "Less Kaiju",
  21709. height: math.unit(200, "feet")
  21710. },
  21711. {
  21712. name: "Kaiju",
  21713. height: math.unit(400, "feet"),
  21714. default: true
  21715. },
  21716. {
  21717. name: "Kaiju-er",
  21718. height: math.unit(600, "feet")
  21719. },
  21720. ]
  21721. ))
  21722. characterMakers.push(() => makeCharacter(
  21723. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21724. {
  21725. front: {
  21726. height: math.unit(6 + 5 / 12, "feet"),
  21727. weight: math.unit(180, "lb"),
  21728. name: "Front",
  21729. image: {
  21730. source: "./media/characters/lexir/front.svg",
  21731. extra: 180 / 172,
  21732. bottom: 12 / 192
  21733. }
  21734. },
  21735. back: {
  21736. height: math.unit(6 + 5 / 12, "feet"),
  21737. weight: math.unit(180, "lb"),
  21738. name: "Back",
  21739. image: {
  21740. source: "./media/characters/lexir/back.svg",
  21741. extra: 183.84 / 175.5,
  21742. bottom: 3.1 / 187
  21743. }
  21744. },
  21745. },
  21746. [
  21747. {
  21748. name: "Very Smal",
  21749. height: math.unit(1, "nm")
  21750. },
  21751. {
  21752. name: "Normal",
  21753. height: math.unit(6 + 5 / 12, "feet"),
  21754. default: true
  21755. },
  21756. {
  21757. name: "Macro",
  21758. height: math.unit(1, "mile")
  21759. },
  21760. {
  21761. name: "Megamacro",
  21762. height: math.unit(50, "miles")
  21763. },
  21764. ]
  21765. ))
  21766. characterMakers.push(() => makeCharacter(
  21767. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21768. {
  21769. front: {
  21770. height: math.unit(1.5, "meters"),
  21771. weight: math.unit(100, "lb"),
  21772. name: "Front",
  21773. image: {
  21774. source: "./media/characters/maksio/front.svg",
  21775. extra: 1549 / 1531,
  21776. bottom: 123.7 / 1674.5429
  21777. }
  21778. },
  21779. back: {
  21780. height: math.unit(1.5, "meters"),
  21781. weight: math.unit(100, "lb"),
  21782. name: "Back",
  21783. image: {
  21784. source: "./media/characters/maksio/back.svg",
  21785. extra: 1541 / 1509,
  21786. bottom: 97 / 1639
  21787. }
  21788. },
  21789. hand: {
  21790. height: math.unit(0.621, "feet"),
  21791. name: "Hand",
  21792. image: {
  21793. source: "./media/characters/maksio/hand.svg"
  21794. }
  21795. },
  21796. foot: {
  21797. height: math.unit(1.611, "feet"),
  21798. name: "Foot",
  21799. image: {
  21800. source: "./media/characters/maksio/foot.svg"
  21801. }
  21802. },
  21803. },
  21804. [
  21805. {
  21806. name: "Shrunken",
  21807. height: math.unit(10, "cm")
  21808. },
  21809. {
  21810. name: "Normal",
  21811. height: math.unit(150, "cm"),
  21812. default: true
  21813. },
  21814. ]
  21815. ))
  21816. characterMakers.push(() => makeCharacter(
  21817. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21818. {
  21819. front: {
  21820. height: math.unit(100, "feet"),
  21821. name: "Front",
  21822. image: {
  21823. source: "./media/characters/erza-bear/front.svg",
  21824. extra: 2449 / 2390,
  21825. bottom: 46 / 2494
  21826. }
  21827. },
  21828. back: {
  21829. height: math.unit(100, "feet"),
  21830. name: "Back",
  21831. image: {
  21832. source: "./media/characters/erza-bear/back.svg",
  21833. extra: 2489 / 2430,
  21834. bottom: 85.4 / 2480
  21835. }
  21836. },
  21837. tail: {
  21838. height: math.unit(42, "feet"),
  21839. name: "Tail",
  21840. image: {
  21841. source: "./media/characters/erza-bear/tail.svg"
  21842. }
  21843. },
  21844. tongue: {
  21845. height: math.unit(8, "feet"),
  21846. name: "Tongue",
  21847. image: {
  21848. source: "./media/characters/erza-bear/tongue.svg"
  21849. }
  21850. },
  21851. dick: {
  21852. height: math.unit(10.5, "feet"),
  21853. name: "Dick",
  21854. image: {
  21855. source: "./media/characters/erza-bear/dick.svg"
  21856. }
  21857. },
  21858. dickVertical: {
  21859. height: math.unit(16.9, "feet"),
  21860. name: "Dick (Vertical)",
  21861. image: {
  21862. source: "./media/characters/erza-bear/dick-vertical.svg"
  21863. }
  21864. },
  21865. },
  21866. [
  21867. {
  21868. name: "Macro",
  21869. height: math.unit(100, "feet"),
  21870. default: true
  21871. },
  21872. ]
  21873. ))
  21874. characterMakers.push(() => makeCharacter(
  21875. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21876. {
  21877. front: {
  21878. height: math.unit(172, "cm"),
  21879. weight: math.unit(73, "kg"),
  21880. name: "Front",
  21881. image: {
  21882. source: "./media/characters/violet-flor/front.svg",
  21883. extra: 1530 / 1442,
  21884. bottom: 61.9 / 1588.8
  21885. }
  21886. },
  21887. back: {
  21888. height: math.unit(180, "cm"),
  21889. weight: math.unit(73, "kg"),
  21890. name: "Back",
  21891. image: {
  21892. source: "./media/characters/violet-flor/back.svg",
  21893. extra: 1692 / 1630,
  21894. bottom: 20 / 1712
  21895. }
  21896. },
  21897. },
  21898. [
  21899. {
  21900. name: "Normal",
  21901. height: math.unit(172, "cm"),
  21902. default: true
  21903. },
  21904. ]
  21905. ))
  21906. characterMakers.push(() => makeCharacter(
  21907. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21908. {
  21909. front: {
  21910. height: math.unit(6, "feet"),
  21911. weight: math.unit(220, "lb"),
  21912. name: "Front",
  21913. image: {
  21914. source: "./media/characters/lynn-rhea/front.svg",
  21915. extra: 310 / 273
  21916. }
  21917. },
  21918. back: {
  21919. height: math.unit(6, "feet"),
  21920. weight: math.unit(220, "lb"),
  21921. name: "Back",
  21922. image: {
  21923. source: "./media/characters/lynn-rhea/back.svg",
  21924. extra: 310 / 273
  21925. }
  21926. },
  21927. dicks: {
  21928. height: math.unit(0.9, "feet"),
  21929. name: "Dicks",
  21930. image: {
  21931. source: "./media/characters/lynn-rhea/dicks.svg"
  21932. }
  21933. },
  21934. slit: {
  21935. height: math.unit(0.4, "feet"),
  21936. name: "Slit",
  21937. image: {
  21938. source: "./media/characters/lynn-rhea/slit.svg"
  21939. }
  21940. },
  21941. },
  21942. [
  21943. {
  21944. name: "Micro",
  21945. height: math.unit(1, "inch")
  21946. },
  21947. {
  21948. name: "Macro",
  21949. height: math.unit(60, "feet"),
  21950. default: true
  21951. },
  21952. {
  21953. name: "Megamacro",
  21954. height: math.unit(2, "miles")
  21955. },
  21956. {
  21957. name: "Gigamacro",
  21958. height: math.unit(3, "earths")
  21959. },
  21960. {
  21961. name: "Galactic",
  21962. height: math.unit(0.8, "galaxies")
  21963. },
  21964. ]
  21965. ))
  21966. characterMakers.push(() => makeCharacter(
  21967. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  21968. {
  21969. front: {
  21970. height: math.unit(1600, "feet"),
  21971. weight: math.unit(85758785169, "kg"),
  21972. name: "Front",
  21973. image: {
  21974. source: "./media/characters/valathos/front.svg",
  21975. extra: 1451 / 1339
  21976. }
  21977. },
  21978. },
  21979. [
  21980. {
  21981. name: "Macro",
  21982. height: math.unit(1600, "feet"),
  21983. default: true
  21984. },
  21985. ]
  21986. ))
  21987. characterMakers.push(() => makeCharacter(
  21988. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  21989. {
  21990. front: {
  21991. height: math.unit(7 + 5 / 12, "feet"),
  21992. weight: math.unit(300, "lb"),
  21993. name: "Front",
  21994. image: {
  21995. source: "./media/characters/azula/front.svg",
  21996. extra: 3208 / 2880,
  21997. bottom: 80.2 / 3277
  21998. }
  21999. },
  22000. back: {
  22001. height: math.unit(7 + 5 / 12, "feet"),
  22002. weight: math.unit(300, "lb"),
  22003. name: "Back",
  22004. image: {
  22005. source: "./media/characters/azula/back.svg",
  22006. extra: 3169 / 2822,
  22007. bottom: 150.6 / 3321
  22008. }
  22009. },
  22010. },
  22011. [
  22012. {
  22013. name: "Normal",
  22014. height: math.unit(7 + 5 / 12, "feet"),
  22015. default: true
  22016. },
  22017. {
  22018. name: "Big",
  22019. height: math.unit(20, "feet")
  22020. },
  22021. ]
  22022. ))
  22023. characterMakers.push(() => makeCharacter(
  22024. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22025. {
  22026. front: {
  22027. height: math.unit(5 + 1 / 12, "feet"),
  22028. weight: math.unit(110, "lb"),
  22029. name: "Front",
  22030. image: {
  22031. source: "./media/characters/rupert/front.svg",
  22032. extra: 1549 / 1495,
  22033. bottom: 54.2 / 1604.4
  22034. }
  22035. },
  22036. },
  22037. [
  22038. {
  22039. name: "Normal",
  22040. height: math.unit(5 + 1 / 12, "feet"),
  22041. default: true
  22042. },
  22043. ]
  22044. ))
  22045. characterMakers.push(() => makeCharacter(
  22046. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22047. {
  22048. front: {
  22049. height: math.unit(8 + 4 / 12, "feet"),
  22050. weight: math.unit(350, "lb"),
  22051. name: "Front",
  22052. image: {
  22053. source: "./media/characters/sheera-castellar/front.svg",
  22054. extra: 1957 / 1894,
  22055. bottom: 26.97 / 1975.017
  22056. }
  22057. },
  22058. side: {
  22059. height: math.unit(8 + 4 / 12, "feet"),
  22060. weight: math.unit(350, "lb"),
  22061. name: "Side",
  22062. image: {
  22063. source: "./media/characters/sheera-castellar/side.svg",
  22064. extra: 1957 / 1894
  22065. }
  22066. },
  22067. back: {
  22068. height: math.unit(8 + 4 / 12, "feet"),
  22069. weight: math.unit(350, "lb"),
  22070. name: "Back",
  22071. image: {
  22072. source: "./media/characters/sheera-castellar/back.svg",
  22073. extra: 1957 / 1894
  22074. }
  22075. },
  22076. angled: {
  22077. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22078. weight: math.unit(350, "lb"),
  22079. name: "Angled",
  22080. image: {
  22081. source: "./media/characters/sheera-castellar/angled.svg",
  22082. extra: 1807 / 1707,
  22083. bottom: 68 / 1875
  22084. }
  22085. },
  22086. genitals: {
  22087. height: math.unit(2.2, "feet"),
  22088. name: "Genitals",
  22089. image: {
  22090. source: "./media/characters/sheera-castellar/genitals.svg"
  22091. }
  22092. },
  22093. },
  22094. [
  22095. {
  22096. name: "Normal",
  22097. height: math.unit(8 + 4 / 12, "feet")
  22098. },
  22099. {
  22100. name: "Macro",
  22101. height: math.unit(150, "feet"),
  22102. default: true
  22103. },
  22104. {
  22105. name: "Macro+",
  22106. height: math.unit(800, "feet")
  22107. },
  22108. ]
  22109. ))
  22110. characterMakers.push(() => makeCharacter(
  22111. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22112. {
  22113. front: {
  22114. height: math.unit(6, "feet"),
  22115. weight: math.unit(150, "lb"),
  22116. name: "Front",
  22117. image: {
  22118. source: "./media/characters/jaipur/front.svg",
  22119. extra: 3860 / 3731,
  22120. bottom: 287 / 4140
  22121. }
  22122. },
  22123. back: {
  22124. height: math.unit(6, "feet"),
  22125. weight: math.unit(150, "lb"),
  22126. name: "Back",
  22127. image: {
  22128. source: "./media/characters/jaipur/back.svg",
  22129. extra: 4060 / 3930,
  22130. bottom: 151 / 4200
  22131. }
  22132. },
  22133. },
  22134. [
  22135. {
  22136. name: "Normal",
  22137. height: math.unit(1.85, "meters"),
  22138. default: true
  22139. },
  22140. {
  22141. name: "Macro",
  22142. height: math.unit(150, "meters")
  22143. },
  22144. {
  22145. name: "Macro+",
  22146. height: math.unit(0.5, "miles")
  22147. },
  22148. {
  22149. name: "Macro++",
  22150. height: math.unit(2.5, "miles")
  22151. },
  22152. {
  22153. name: "Macro+++",
  22154. height: math.unit(12, "miles")
  22155. },
  22156. {
  22157. name: "Macro++++",
  22158. height: math.unit(120, "miles")
  22159. },
  22160. {
  22161. name: "Macro+++++",
  22162. height: math.unit(1200, "miles")
  22163. },
  22164. ]
  22165. ))
  22166. characterMakers.push(() => makeCharacter(
  22167. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22168. {
  22169. front: {
  22170. height: math.unit(6, "feet"),
  22171. weight: math.unit(150, "lb"),
  22172. name: "Front",
  22173. image: {
  22174. source: "./media/characters/sheila-wolf/front.svg",
  22175. extra: 1931 / 1808,
  22176. bottom: 29.5 / 1960
  22177. }
  22178. },
  22179. dick: {
  22180. height: math.unit(1.464, "feet"),
  22181. name: "Dick",
  22182. image: {
  22183. source: "./media/characters/sheila-wolf/dick.svg"
  22184. }
  22185. },
  22186. muzzle: {
  22187. height: math.unit(0.513, "feet"),
  22188. name: "Muzzle",
  22189. image: {
  22190. source: "./media/characters/sheila-wolf/muzzle.svg"
  22191. }
  22192. },
  22193. },
  22194. [
  22195. {
  22196. name: "Macro",
  22197. height: math.unit(70, "feet"),
  22198. default: true
  22199. },
  22200. ]
  22201. ))
  22202. characterMakers.push(() => makeCharacter(
  22203. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22204. {
  22205. front: {
  22206. height: math.unit(32, "meters"),
  22207. weight: math.unit(300000, "kg"),
  22208. name: "Front",
  22209. image: {
  22210. source: "./media/characters/almor/front.svg",
  22211. extra: 1408 / 1322,
  22212. bottom: 94.6 / 1506.5
  22213. }
  22214. },
  22215. },
  22216. [
  22217. {
  22218. name: "Macro",
  22219. height: math.unit(32, "meters"),
  22220. default: true
  22221. },
  22222. ]
  22223. ))
  22224. characterMakers.push(() => makeCharacter(
  22225. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22226. {
  22227. front: {
  22228. height: math.unit(7, "feet"),
  22229. weight: math.unit(200, "lb"),
  22230. name: "Front",
  22231. image: {
  22232. source: "./media/characters/silver/front.svg",
  22233. extra: 472.1 / 450.5,
  22234. bottom: 26.5 / 499.424
  22235. }
  22236. },
  22237. },
  22238. [
  22239. {
  22240. name: "Normal",
  22241. height: math.unit(7, "feet"),
  22242. default: true
  22243. },
  22244. {
  22245. name: "Macro",
  22246. height: math.unit(800, "feet")
  22247. },
  22248. {
  22249. name: "Megamacro",
  22250. height: math.unit(250, "miles")
  22251. },
  22252. ]
  22253. ))
  22254. characterMakers.push(() => makeCharacter(
  22255. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22256. {
  22257. front: {
  22258. height: math.unit(6, "feet"),
  22259. weight: math.unit(150, "lb"),
  22260. name: "Front",
  22261. image: {
  22262. source: "./media/characters/pliskin/front.svg",
  22263. extra: 1469 / 1359,
  22264. bottom: 70 / 1540
  22265. }
  22266. },
  22267. },
  22268. [
  22269. {
  22270. name: "Micro",
  22271. height: math.unit(3, "inches")
  22272. },
  22273. {
  22274. name: "Normal",
  22275. height: math.unit(5 + 11 / 12, "feet"),
  22276. default: true
  22277. },
  22278. {
  22279. name: "Macro",
  22280. height: math.unit(120, "feet")
  22281. },
  22282. ]
  22283. ))
  22284. characterMakers.push(() => makeCharacter(
  22285. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22286. {
  22287. front: {
  22288. height: math.unit(6, "feet"),
  22289. weight: math.unit(150, "lb"),
  22290. name: "Front",
  22291. image: {
  22292. source: "./media/characters/sammy/front.svg",
  22293. extra: 1193 / 1089,
  22294. bottom: 30.5 / 1226
  22295. }
  22296. },
  22297. },
  22298. [
  22299. {
  22300. name: "Macro",
  22301. height: math.unit(1700, "feet"),
  22302. default: true
  22303. },
  22304. {
  22305. name: "Examacro",
  22306. height: math.unit(2.5e9, "lightyears")
  22307. },
  22308. ]
  22309. ))
  22310. characterMakers.push(() => makeCharacter(
  22311. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22312. {
  22313. front: {
  22314. height: math.unit(21, "meters"),
  22315. weight: math.unit(12, "tonnes"),
  22316. name: "Front",
  22317. image: {
  22318. source: "./media/characters/kuru/front.svg",
  22319. extra: 4301 / 3785,
  22320. bottom: 371.3 / 4691
  22321. }
  22322. },
  22323. },
  22324. [
  22325. {
  22326. name: "Macro",
  22327. height: math.unit(21, "meters"),
  22328. default: true
  22329. },
  22330. ]
  22331. ))
  22332. characterMakers.push(() => makeCharacter(
  22333. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22334. {
  22335. front: {
  22336. height: math.unit(23, "meters"),
  22337. weight: math.unit(12.2, "tonnes"),
  22338. name: "Front",
  22339. image: {
  22340. source: "./media/characters/rakka/front.svg",
  22341. extra: 4670 / 4169,
  22342. bottom: 301 / 4968.7
  22343. }
  22344. },
  22345. },
  22346. [
  22347. {
  22348. name: "Macro",
  22349. height: math.unit(23, "meters"),
  22350. default: true
  22351. },
  22352. ]
  22353. ))
  22354. characterMakers.push(() => makeCharacter(
  22355. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22356. {
  22357. front: {
  22358. height: math.unit(6, "feet"),
  22359. weight: math.unit(150, "lb"),
  22360. name: "Front",
  22361. image: {
  22362. source: "./media/characters/rhys-feline/front.svg",
  22363. extra: 2488 / 2308,
  22364. bottom: 35.67 / 2519.19
  22365. }
  22366. },
  22367. },
  22368. [
  22369. {
  22370. name: "Really Small",
  22371. height: math.unit(1, "nm")
  22372. },
  22373. {
  22374. name: "Micro",
  22375. height: math.unit(4, "inches")
  22376. },
  22377. {
  22378. name: "Normal",
  22379. height: math.unit(4 + 10 / 12, "feet"),
  22380. default: true
  22381. },
  22382. {
  22383. name: "Macro",
  22384. height: math.unit(100, "feet")
  22385. },
  22386. {
  22387. name: "Megamacto",
  22388. height: math.unit(50, "miles")
  22389. },
  22390. ]
  22391. ))
  22392. characterMakers.push(() => makeCharacter(
  22393. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22394. {
  22395. side: {
  22396. height: math.unit(30, "feet"),
  22397. weight: math.unit(35000, "kg"),
  22398. name: "Side",
  22399. image: {
  22400. source: "./media/characters/alydar/side.svg",
  22401. extra: 234 / 222,
  22402. bottom: 6.5 / 241
  22403. }
  22404. },
  22405. front: {
  22406. height: math.unit(30, "feet"),
  22407. weight: math.unit(35000, "kg"),
  22408. name: "Front",
  22409. image: {
  22410. source: "./media/characters/alydar/front.svg",
  22411. extra: 223.37 / 210.2,
  22412. bottom: 22.3 / 246.76
  22413. }
  22414. },
  22415. top: {
  22416. height: math.unit(64.54, "feet"),
  22417. weight: math.unit(35000, "kg"),
  22418. name: "Top",
  22419. image: {
  22420. source: "./media/characters/alydar/top.svg"
  22421. }
  22422. },
  22423. anthro: {
  22424. height: math.unit(30, "feet"),
  22425. weight: math.unit(9000, "kg"),
  22426. name: "Anthro",
  22427. image: {
  22428. source: "./media/characters/alydar/anthro.svg",
  22429. extra: 432 / 421,
  22430. bottom: 7.18 / 440
  22431. }
  22432. },
  22433. maw: {
  22434. height: math.unit(11.693, "feet"),
  22435. name: "Maw",
  22436. image: {
  22437. source: "./media/characters/alydar/maw.svg"
  22438. }
  22439. },
  22440. head: {
  22441. height: math.unit(11.693, "feet"),
  22442. name: "Head",
  22443. image: {
  22444. source: "./media/characters/alydar/head.svg"
  22445. }
  22446. },
  22447. headAlt: {
  22448. height: math.unit(12.861, "feet"),
  22449. name: "Head (Alt)",
  22450. image: {
  22451. source: "./media/characters/alydar/head-alt.svg"
  22452. }
  22453. },
  22454. wing: {
  22455. height: math.unit(20.712, "feet"),
  22456. name: "Wing",
  22457. image: {
  22458. source: "./media/characters/alydar/wing.svg"
  22459. }
  22460. },
  22461. wingFeather: {
  22462. height: math.unit(9.662, "feet"),
  22463. name: "Wing Feather",
  22464. image: {
  22465. source: "./media/characters/alydar/wing-feather.svg"
  22466. }
  22467. },
  22468. countourFeather: {
  22469. height: math.unit(4.154, "feet"),
  22470. name: "Contour Feather",
  22471. image: {
  22472. source: "./media/characters/alydar/contour-feather.svg"
  22473. }
  22474. },
  22475. },
  22476. [
  22477. {
  22478. name: "Diplomatic",
  22479. height: math.unit(13, "feet"),
  22480. default: true
  22481. },
  22482. {
  22483. name: "Small",
  22484. height: math.unit(30, "feet")
  22485. },
  22486. {
  22487. name: "Normal",
  22488. height: math.unit(95, "feet"),
  22489. default: true
  22490. },
  22491. {
  22492. name: "Large",
  22493. height: math.unit(285, "feet")
  22494. },
  22495. {
  22496. name: "Incomprehensible",
  22497. height: math.unit(450, "megameters")
  22498. },
  22499. ]
  22500. ))
  22501. characterMakers.push(() => makeCharacter(
  22502. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22503. {
  22504. side: {
  22505. height: math.unit(11, "feet"),
  22506. weight: math.unit(1750, "kg"),
  22507. name: "Side",
  22508. image: {
  22509. source: "./media/characters/selicia/side.svg",
  22510. extra: 440 / 396,
  22511. bottom: 24.8 / 465.979
  22512. }
  22513. },
  22514. maw: {
  22515. height: math.unit(4.665, "feet"),
  22516. name: "Maw",
  22517. image: {
  22518. source: "./media/characters/selicia/maw.svg"
  22519. }
  22520. },
  22521. },
  22522. [
  22523. {
  22524. name: "Normal",
  22525. height: math.unit(11, "feet"),
  22526. default: true
  22527. },
  22528. ]
  22529. ))
  22530. characterMakers.push(() => makeCharacter(
  22531. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22532. {
  22533. side: {
  22534. height: math.unit(2 + 6 / 12, "feet"),
  22535. weight: math.unit(30, "lb"),
  22536. name: "Side",
  22537. image: {
  22538. source: "./media/characters/layla/side.svg",
  22539. extra: 244 / 188,
  22540. bottom: 18.2 / 262.1
  22541. }
  22542. },
  22543. back: {
  22544. height: math.unit(2 + 6 / 12, "feet"),
  22545. weight: math.unit(30, "lb"),
  22546. name: "Back",
  22547. image: {
  22548. source: "./media/characters/layla/back.svg",
  22549. extra: 308 / 241.5,
  22550. bottom: 8.9 / 316.8
  22551. }
  22552. },
  22553. cumming: {
  22554. height: math.unit(2 + 6 / 12, "feet"),
  22555. weight: math.unit(30, "lb"),
  22556. name: "Cumming",
  22557. image: {
  22558. source: "./media/characters/layla/cumming.svg",
  22559. extra: 342 / 279,
  22560. bottom: 595 / 938
  22561. }
  22562. },
  22563. dickFlaccid: {
  22564. height: math.unit(2.595, "feet"),
  22565. name: "Flaccid Genitals",
  22566. image: {
  22567. source: "./media/characters/layla/dick-flaccid.svg"
  22568. }
  22569. },
  22570. dickErect: {
  22571. height: math.unit(2.359, "feet"),
  22572. name: "Erect Genitals",
  22573. image: {
  22574. source: "./media/characters/layla/dick-erect.svg"
  22575. }
  22576. },
  22577. },
  22578. [
  22579. {
  22580. name: "Micro",
  22581. height: math.unit(1, "inch")
  22582. },
  22583. {
  22584. name: "Small",
  22585. height: math.unit(1, "foot")
  22586. },
  22587. {
  22588. name: "Normal",
  22589. height: math.unit(2 + 6 / 12, "feet"),
  22590. default: true
  22591. },
  22592. {
  22593. name: "Macro",
  22594. height: math.unit(200, "feet")
  22595. },
  22596. {
  22597. name: "Megamacro",
  22598. height: math.unit(1000, "miles")
  22599. },
  22600. {
  22601. name: "Planetary",
  22602. height: math.unit(8000, "miles")
  22603. },
  22604. {
  22605. name: "True Layla",
  22606. height: math.unit(200000 * 7, "multiverses")
  22607. },
  22608. ]
  22609. ))
  22610. characterMakers.push(() => makeCharacter(
  22611. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22612. {
  22613. back: {
  22614. height: math.unit(10.5, "feet"),
  22615. weight: math.unit(800, "lb"),
  22616. name: "Back",
  22617. image: {
  22618. source: "./media/characters/knox/back.svg",
  22619. extra: 1486 / 1089,
  22620. bottom: 107 / 1601.4
  22621. }
  22622. },
  22623. side: {
  22624. height: math.unit(10.5, "feet"),
  22625. weight: math.unit(800, "lb"),
  22626. name: "Side",
  22627. image: {
  22628. source: "./media/characters/knox/side.svg",
  22629. extra: 244 / 218,
  22630. bottom: 14 / 260
  22631. }
  22632. },
  22633. },
  22634. [
  22635. {
  22636. name: "Compact",
  22637. height: math.unit(10.5, "feet"),
  22638. default: true
  22639. },
  22640. {
  22641. name: "Dynamax",
  22642. height: math.unit(210, "feet")
  22643. },
  22644. {
  22645. name: "Full Macro",
  22646. height: math.unit(850, "feet")
  22647. },
  22648. ]
  22649. ))
  22650. characterMakers.push(() => makeCharacter(
  22651. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22652. {
  22653. front: {
  22654. height: math.unit(6, "feet"),
  22655. weight: math.unit(152, "lb"),
  22656. name: "Front",
  22657. image: {
  22658. source: "./media/characters/shin-pikachu/front.svg",
  22659. extra: 1574 / 1480,
  22660. bottom: 53.3 / 1626
  22661. }
  22662. },
  22663. hand: {
  22664. height: math.unit(1.055, "feet"),
  22665. name: "Hand",
  22666. image: {
  22667. source: "./media/characters/shin-pikachu/hand.svg"
  22668. }
  22669. },
  22670. foot: {
  22671. height: math.unit(1.1, "feet"),
  22672. name: "Foot",
  22673. image: {
  22674. source: "./media/characters/shin-pikachu/foot.svg"
  22675. }
  22676. },
  22677. collar: {
  22678. height: math.unit(0.386, "feet"),
  22679. name: "Collar",
  22680. image: {
  22681. source: "./media/characters/shin-pikachu/collar.svg"
  22682. }
  22683. },
  22684. },
  22685. [
  22686. {
  22687. name: "Smallest",
  22688. height: math.unit(0.5, "inches")
  22689. },
  22690. {
  22691. name: "Micro",
  22692. height: math.unit(6, "inches")
  22693. },
  22694. {
  22695. name: "Normal",
  22696. height: math.unit(6, "feet"),
  22697. default: true
  22698. },
  22699. {
  22700. name: "Macro",
  22701. height: math.unit(150, "feet")
  22702. },
  22703. ]
  22704. ))
  22705. characterMakers.push(() => makeCharacter(
  22706. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22707. {
  22708. front: {
  22709. height: math.unit(28, "feet"),
  22710. weight: math.unit(10500, "lb"),
  22711. name: "Front",
  22712. image: {
  22713. source: "./media/characters/kayda/front.svg",
  22714. extra: 1536 / 1428,
  22715. bottom: 68.7 / 1603
  22716. }
  22717. },
  22718. back: {
  22719. height: math.unit(28, "feet"),
  22720. weight: math.unit(10500, "lb"),
  22721. name: "Back",
  22722. image: {
  22723. source: "./media/characters/kayda/back.svg",
  22724. extra: 1557 / 1464,
  22725. bottom: 39.5 / 1597.49
  22726. }
  22727. },
  22728. dick: {
  22729. height: math.unit(3.858, "feet"),
  22730. name: "Dick",
  22731. image: {
  22732. source: "./media/characters/kayda/dick.svg"
  22733. }
  22734. },
  22735. },
  22736. [
  22737. {
  22738. name: "Macro",
  22739. height: math.unit(28, "feet"),
  22740. default: true
  22741. },
  22742. ]
  22743. ))
  22744. characterMakers.push(() => makeCharacter(
  22745. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22746. {
  22747. front: {
  22748. height: math.unit(10 + 11 / 12, "feet"),
  22749. weight: math.unit(1400, "lb"),
  22750. name: "Front",
  22751. image: {
  22752. source: "./media/characters/brian/front.svg",
  22753. extra: 737 / 692,
  22754. bottom: 55.4 / 785
  22755. }
  22756. },
  22757. },
  22758. [
  22759. {
  22760. name: "Normal",
  22761. height: math.unit(10 + 11 / 12, "feet"),
  22762. default: true
  22763. },
  22764. ]
  22765. ))
  22766. characterMakers.push(() => makeCharacter(
  22767. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22768. {
  22769. front: {
  22770. height: math.unit(5 + 8 / 12, "feet"),
  22771. weight: math.unit(140, "lb"),
  22772. name: "Front",
  22773. image: {
  22774. source: "./media/characters/khemri/front.svg",
  22775. extra: 4780 / 4059,
  22776. bottom: 80.1 / 4859.25
  22777. }
  22778. },
  22779. },
  22780. [
  22781. {
  22782. name: "Micro",
  22783. height: math.unit(6, "inches")
  22784. },
  22785. {
  22786. name: "Normal",
  22787. height: math.unit(5 + 8 / 12, "feet"),
  22788. default: true
  22789. },
  22790. ]
  22791. ))
  22792. characterMakers.push(() => makeCharacter(
  22793. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22794. {
  22795. front: {
  22796. height: math.unit(13, "feet"),
  22797. weight: math.unit(1700, "lb"),
  22798. name: "Front",
  22799. image: {
  22800. source: "./media/characters/felix-braveheart/front.svg",
  22801. extra: 1222 / 1157,
  22802. bottom: 53.2 / 1280
  22803. }
  22804. },
  22805. back: {
  22806. height: math.unit(13, "feet"),
  22807. weight: math.unit(1700, "lb"),
  22808. name: "Back",
  22809. image: {
  22810. source: "./media/characters/felix-braveheart/back.svg",
  22811. extra: 1277 / 1203,
  22812. bottom: 50.2 / 1327
  22813. }
  22814. },
  22815. feral: {
  22816. height: math.unit(6, "feet"),
  22817. weight: math.unit(400, "lb"),
  22818. name: "Feral",
  22819. image: {
  22820. source: "./media/characters/felix-braveheart/feral.svg",
  22821. extra: 682 / 625,
  22822. bottom: 6.9 / 688
  22823. }
  22824. },
  22825. },
  22826. [
  22827. {
  22828. name: "Normal",
  22829. height: math.unit(13, "feet"),
  22830. default: true
  22831. },
  22832. ]
  22833. ))
  22834. characterMakers.push(() => makeCharacter(
  22835. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22836. {
  22837. side: {
  22838. height: math.unit(5 + 11 / 12, "feet"),
  22839. weight: math.unit(1400, "lb"),
  22840. name: "Side",
  22841. image: {
  22842. source: "./media/characters/shadow-blade/side.svg",
  22843. extra: 1726 / 1267,
  22844. bottom: 58.4 / 1785
  22845. }
  22846. },
  22847. },
  22848. [
  22849. {
  22850. name: "Normal",
  22851. height: math.unit(5 + 11 / 12, "feet"),
  22852. default: true
  22853. },
  22854. ]
  22855. ))
  22856. characterMakers.push(() => makeCharacter(
  22857. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22858. {
  22859. front: {
  22860. height: math.unit(1 + 6 / 12, "feet"),
  22861. weight: math.unit(25, "lb"),
  22862. name: "Front",
  22863. image: {
  22864. source: "./media/characters/karla-halldor/front.svg",
  22865. extra: 1459 / 1383,
  22866. bottom: 12 / 1472
  22867. }
  22868. },
  22869. },
  22870. [
  22871. {
  22872. name: "Normal",
  22873. height: math.unit(1 + 6 / 12, "feet"),
  22874. default: true
  22875. },
  22876. ]
  22877. ))
  22878. characterMakers.push(() => makeCharacter(
  22879. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22880. {
  22881. front: {
  22882. height: math.unit(6 + 2 / 12, "feet"),
  22883. weight: math.unit(160, "lb"),
  22884. name: "Front",
  22885. image: {
  22886. source: "./media/characters/ariam/front.svg",
  22887. extra: 714 / 617,
  22888. bottom: 23.4 / 737,
  22889. }
  22890. },
  22891. squatting: {
  22892. height: math.unit(4.1, "feet"),
  22893. weight: math.unit(160, "lb"),
  22894. name: "Squatting",
  22895. image: {
  22896. source: "./media/characters/ariam/squatting.svg",
  22897. extra: 2617 / 2112,
  22898. bottom: 61.2 / 2681,
  22899. }
  22900. },
  22901. },
  22902. [
  22903. {
  22904. name: "Normal",
  22905. height: math.unit(6 + 2 / 12, "feet"),
  22906. default: true
  22907. },
  22908. {
  22909. name: "Normal+",
  22910. height: math.unit(4, "meters")
  22911. },
  22912. {
  22913. name: "Macro",
  22914. height: math.unit(50, "meters")
  22915. },
  22916. {
  22917. name: "Macro+",
  22918. height: math.unit(100, "meters")
  22919. },
  22920. {
  22921. name: "Megamacro",
  22922. height: math.unit(20, "km")
  22923. },
  22924. ]
  22925. ))
  22926. characterMakers.push(() => makeCharacter(
  22927. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22928. {
  22929. front: {
  22930. height: math.unit(1.67, "meters"),
  22931. weight: math.unit(140, "lb"),
  22932. name: "Front",
  22933. image: {
  22934. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22935. extra: 438 / 410,
  22936. bottom: 0.75 / 439
  22937. }
  22938. },
  22939. },
  22940. [
  22941. {
  22942. name: "Shrunken",
  22943. height: math.unit(7.6, "cm")
  22944. },
  22945. {
  22946. name: "Human Scale",
  22947. height: math.unit(1.67, "meters")
  22948. },
  22949. {
  22950. name: "Wolxi Scale",
  22951. height: math.unit(36.7, "meters"),
  22952. default: true
  22953. },
  22954. ]
  22955. ))
  22956. characterMakers.push(() => makeCharacter(
  22957. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  22958. {
  22959. front: {
  22960. height: math.unit(1.73, "meters"),
  22961. weight: math.unit(240, "lb"),
  22962. name: "Front",
  22963. image: {
  22964. source: "./media/characters/izue-two-mothers/front.svg",
  22965. extra: 469 / 437,
  22966. bottom: 1.24 / 470.6
  22967. }
  22968. },
  22969. },
  22970. [
  22971. {
  22972. name: "Shrunken",
  22973. height: math.unit(7.86, "cm")
  22974. },
  22975. {
  22976. name: "Human Scale",
  22977. height: math.unit(1.73, "meters")
  22978. },
  22979. {
  22980. name: "Wolxi Scale",
  22981. height: math.unit(38, "meters"),
  22982. default: true
  22983. },
  22984. ]
  22985. ))
  22986. characterMakers.push(() => makeCharacter(
  22987. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  22988. {
  22989. front: {
  22990. height: math.unit(1.55, "meters"),
  22991. weight: math.unit(120, "lb"),
  22992. name: "Front",
  22993. image: {
  22994. source: "./media/characters/teeku-love-shack/front.svg",
  22995. extra: 387 / 362,
  22996. bottom: 1.51 / 388
  22997. }
  22998. },
  22999. },
  23000. [
  23001. {
  23002. name: "Shrunken",
  23003. height: math.unit(7, "cm")
  23004. },
  23005. {
  23006. name: "Human Scale",
  23007. height: math.unit(1.55, "meters")
  23008. },
  23009. {
  23010. name: "Wolxi Scale",
  23011. height: math.unit(34.1, "meters"),
  23012. default: true
  23013. },
  23014. ]
  23015. ))
  23016. characterMakers.push(() => makeCharacter(
  23017. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23018. {
  23019. front: {
  23020. height: math.unit(1.83, "meters"),
  23021. weight: math.unit(135, "lb"),
  23022. name: "Front",
  23023. image: {
  23024. source: "./media/characters/dejma-the-red/front.svg",
  23025. extra: 480 / 458,
  23026. bottom: 1.8 / 482
  23027. }
  23028. },
  23029. },
  23030. [
  23031. {
  23032. name: "Shrunken",
  23033. height: math.unit(8.3, "cm")
  23034. },
  23035. {
  23036. name: "Human Scale",
  23037. height: math.unit(1.83, "meters")
  23038. },
  23039. {
  23040. name: "Wolxi Scale",
  23041. height: math.unit(40, "meters"),
  23042. default: true
  23043. },
  23044. ]
  23045. ))
  23046. characterMakers.push(() => makeCharacter(
  23047. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23048. {
  23049. front: {
  23050. height: math.unit(1.78, "meters"),
  23051. weight: math.unit(65, "kg"),
  23052. name: "Front",
  23053. image: {
  23054. source: "./media/characters/aki/front.svg",
  23055. extra: 452 / 415
  23056. }
  23057. },
  23058. frontNsfw: {
  23059. height: math.unit(1.78, "meters"),
  23060. weight: math.unit(65, "kg"),
  23061. name: "Front (NSFW)",
  23062. image: {
  23063. source: "./media/characters/aki/front-nsfw.svg",
  23064. extra: 452 / 415
  23065. }
  23066. },
  23067. back: {
  23068. height: math.unit(1.78, "meters"),
  23069. weight: math.unit(65, "kg"),
  23070. name: "Back",
  23071. image: {
  23072. source: "./media/characters/aki/back.svg",
  23073. extra: 452 / 415
  23074. }
  23075. },
  23076. rump: {
  23077. height: math.unit(2.05, "feet"),
  23078. name: "Rump",
  23079. image: {
  23080. source: "./media/characters/aki/rump.svg"
  23081. }
  23082. },
  23083. dick: {
  23084. height: math.unit(0.95, "feet"),
  23085. name: "Dick",
  23086. image: {
  23087. source: "./media/characters/aki/dick.svg"
  23088. }
  23089. },
  23090. },
  23091. [
  23092. {
  23093. name: "Micro",
  23094. height: math.unit(15, "cm")
  23095. },
  23096. {
  23097. name: "Normal",
  23098. height: math.unit(178, "cm"),
  23099. default: true
  23100. },
  23101. {
  23102. name: "Macro",
  23103. height: math.unit(214, "m")
  23104. },
  23105. {
  23106. name: "Macro+",
  23107. height: math.unit(534, "m")
  23108. },
  23109. ]
  23110. ))
  23111. characterMakers.push(() => makeCharacter(
  23112. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23113. {
  23114. front: {
  23115. height: math.unit(5 + 5 / 12, "feet"),
  23116. weight: math.unit(120, "lb"),
  23117. name: "Front",
  23118. image: {
  23119. source: "./media/characters/ari/front.svg",
  23120. extra: 714.5 / 682,
  23121. bottom: 8 / 722.5
  23122. }
  23123. },
  23124. },
  23125. [
  23126. {
  23127. name: "Normal",
  23128. height: math.unit(5 + 5 / 12, "feet")
  23129. },
  23130. {
  23131. name: "Macro",
  23132. height: math.unit(100, "feet"),
  23133. default: true
  23134. },
  23135. {
  23136. name: "Megamacro",
  23137. height: math.unit(100, "miles")
  23138. },
  23139. {
  23140. name: "Gigamacro",
  23141. height: math.unit(80000, "miles")
  23142. },
  23143. ]
  23144. ))
  23145. characterMakers.push(() => makeCharacter(
  23146. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23147. {
  23148. side: {
  23149. height: math.unit(9, "feet"),
  23150. weight: math.unit(400, "kg"),
  23151. name: "Side",
  23152. image: {
  23153. source: "./media/characters/bolt/side.svg",
  23154. extra: 1126 / 896,
  23155. bottom: 60 / 1187.3,
  23156. }
  23157. },
  23158. },
  23159. [
  23160. {
  23161. name: "Micro",
  23162. height: math.unit(5, "inches")
  23163. },
  23164. {
  23165. name: "Normal",
  23166. height: math.unit(9, "feet"),
  23167. default: true
  23168. },
  23169. {
  23170. name: "Macro",
  23171. height: math.unit(700, "feet")
  23172. },
  23173. {
  23174. name: "Max Size",
  23175. height: math.unit(1.52e22, "yottameters")
  23176. },
  23177. ]
  23178. ))
  23179. characterMakers.push(() => makeCharacter(
  23180. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23181. {
  23182. front: {
  23183. height: math.unit(4.53, "meters"),
  23184. weight: math.unit(3, "tons"),
  23185. name: "Front",
  23186. image: {
  23187. source: "./media/characters/draekon-sylviar/front.svg",
  23188. extra: 1228 / 1068,
  23189. bottom: 41 / 1270
  23190. }
  23191. },
  23192. tail: {
  23193. height: math.unit(1.772, "meter"),
  23194. name: "Tail",
  23195. image: {
  23196. source: "./media/characters/draekon-sylviar/tail.svg"
  23197. }
  23198. },
  23199. head: {
  23200. height: math.unit(1.331, "meter"),
  23201. name: "Head",
  23202. image: {
  23203. source: "./media/characters/draekon-sylviar/head.svg"
  23204. }
  23205. },
  23206. hand: {
  23207. height: math.unit(0.564, "meter"),
  23208. name: "Hand",
  23209. image: {
  23210. source: "./media/characters/draekon-sylviar/hand.svg"
  23211. }
  23212. },
  23213. foot: {
  23214. height: math.unit(0.621, "meter"),
  23215. name: "Foot",
  23216. image: {
  23217. source: "./media/characters/draekon-sylviar/foot.svg",
  23218. bottom: 32 / 324
  23219. }
  23220. },
  23221. dick: {
  23222. height: math.unit(61, "cm"),
  23223. name: "Dick",
  23224. image: {
  23225. source: "./media/characters/draekon-sylviar/dick.svg"
  23226. }
  23227. },
  23228. dickseparated: {
  23229. height: math.unit(61, "cm"),
  23230. name: "Dick-separated",
  23231. image: {
  23232. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23233. }
  23234. },
  23235. },
  23236. [
  23237. {
  23238. name: "Small",
  23239. height: math.unit(4.53 / 2, "meters"),
  23240. default: true
  23241. },
  23242. {
  23243. name: "Normal",
  23244. height: math.unit(4.53, "meters"),
  23245. default: true
  23246. },
  23247. {
  23248. name: "Large",
  23249. height: math.unit(4.53 * 2, "meters"),
  23250. },
  23251. ]
  23252. ))
  23253. characterMakers.push(() => makeCharacter(
  23254. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23255. {
  23256. front: {
  23257. height: math.unit(6 + 2 / 12, "feet"),
  23258. weight: math.unit(180, "lb"),
  23259. name: "Front",
  23260. image: {
  23261. source: "./media/characters/brawler/front.svg",
  23262. extra: 3301 / 3027,
  23263. bottom: 138 / 3439
  23264. }
  23265. },
  23266. },
  23267. [
  23268. {
  23269. name: "Normal",
  23270. height: math.unit(6 + 2 / 12, "feet"),
  23271. default: true
  23272. },
  23273. ]
  23274. ))
  23275. characterMakers.push(() => makeCharacter(
  23276. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23277. {
  23278. front: {
  23279. height: math.unit(11, "feet"),
  23280. weight: math.unit(1000, "lb"),
  23281. name: "Front",
  23282. image: {
  23283. source: "./media/characters/alex/front.svg",
  23284. bottom: 44.5 / 620
  23285. }
  23286. },
  23287. },
  23288. [
  23289. {
  23290. name: "Micro",
  23291. height: math.unit(5, "inches")
  23292. },
  23293. {
  23294. name: "Normal",
  23295. height: math.unit(11, "feet"),
  23296. default: true
  23297. },
  23298. {
  23299. name: "Macro",
  23300. height: math.unit(9.5e9, "feet")
  23301. },
  23302. {
  23303. name: "Max Size",
  23304. height: math.unit(1.4e283, "yottameters")
  23305. },
  23306. ]
  23307. ))
  23308. characterMakers.push(() => makeCharacter(
  23309. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23310. {
  23311. female: {
  23312. height: math.unit(29.9, "m"),
  23313. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23314. name: "Female",
  23315. image: {
  23316. source: "./media/characters/zenari/female.svg",
  23317. extra: 3281.6 / 3217,
  23318. bottom: 72.2 / 3353
  23319. }
  23320. },
  23321. male: {
  23322. height: math.unit(27.7, "m"),
  23323. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23324. name: "Male",
  23325. image: {
  23326. source: "./media/characters/zenari/male.svg",
  23327. extra: 3008 / 2991,
  23328. bottom: 54.6 / 3069
  23329. }
  23330. },
  23331. },
  23332. [
  23333. {
  23334. name: "Macro",
  23335. height: math.unit(29.7, "meters"),
  23336. default: true
  23337. },
  23338. ]
  23339. ))
  23340. characterMakers.push(() => makeCharacter(
  23341. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23342. {
  23343. female: {
  23344. height: math.unit(23.8, "m"),
  23345. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23346. name: "Female",
  23347. image: {
  23348. source: "./media/characters/mactarian/female.svg",
  23349. extra: 2662 / 2569,
  23350. bottom: 73 / 2736
  23351. }
  23352. },
  23353. male: {
  23354. height: math.unit(23.8, "m"),
  23355. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23356. name: "Male",
  23357. image: {
  23358. source: "./media/characters/mactarian/male.svg",
  23359. extra: 2673 / 2600,
  23360. bottom: 76 / 2750
  23361. }
  23362. },
  23363. },
  23364. [
  23365. {
  23366. name: "Macro",
  23367. height: math.unit(23.8, "meters"),
  23368. default: true
  23369. },
  23370. ]
  23371. ))
  23372. characterMakers.push(() => makeCharacter(
  23373. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23374. {
  23375. female: {
  23376. height: math.unit(19.3, "m"),
  23377. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23378. name: "Female",
  23379. image: {
  23380. source: "./media/characters/umok/female.svg",
  23381. extra: 2186 / 2078,
  23382. bottom: 87 / 2277
  23383. }
  23384. },
  23385. male: {
  23386. height: math.unit(19.5, "m"),
  23387. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23388. name: "Male",
  23389. image: {
  23390. source: "./media/characters/umok/male.svg",
  23391. extra: 2233 / 2140,
  23392. bottom: 24.4 / 2258
  23393. }
  23394. },
  23395. },
  23396. [
  23397. {
  23398. name: "Macro",
  23399. height: math.unit(19.3, "meters"),
  23400. default: true
  23401. },
  23402. ]
  23403. ))
  23404. characterMakers.push(() => makeCharacter(
  23405. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23406. {
  23407. female: {
  23408. height: math.unit(26.15, "m"),
  23409. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23410. name: "Female",
  23411. image: {
  23412. source: "./media/characters/joraxian/female.svg",
  23413. extra: 2912 / 2824,
  23414. bottom: 36 / 2956
  23415. }
  23416. },
  23417. male: {
  23418. height: math.unit(25.4, "m"),
  23419. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23420. name: "Male",
  23421. image: {
  23422. source: "./media/characters/joraxian/male.svg",
  23423. extra: 2877 / 2721,
  23424. bottom: 82 / 2967
  23425. }
  23426. },
  23427. },
  23428. [
  23429. {
  23430. name: "Macro",
  23431. height: math.unit(26.15, "meters"),
  23432. default: true
  23433. },
  23434. ]
  23435. ))
  23436. characterMakers.push(() => makeCharacter(
  23437. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23438. {
  23439. female: {
  23440. height: math.unit(21.6, "m"),
  23441. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23442. name: "Female",
  23443. image: {
  23444. source: "./media/characters/sthara/female.svg",
  23445. extra: 2516 / 2347,
  23446. bottom: 21.5 / 2537
  23447. }
  23448. },
  23449. male: {
  23450. height: math.unit(24, "m"),
  23451. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23452. name: "Male",
  23453. image: {
  23454. source: "./media/characters/sthara/male.svg",
  23455. extra: 2732 / 2607,
  23456. bottom: 23 / 2732
  23457. }
  23458. },
  23459. },
  23460. [
  23461. {
  23462. name: "Macro",
  23463. height: math.unit(21.6, "meters"),
  23464. default: true
  23465. },
  23466. ]
  23467. ))
  23468. characterMakers.push(() => makeCharacter(
  23469. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23470. {
  23471. front: {
  23472. height: math.unit(6 + 4 / 12, "feet"),
  23473. weight: math.unit(175, "lb"),
  23474. name: "Front",
  23475. image: {
  23476. source: "./media/characters/luka-bryzant/front.svg",
  23477. extra: 311 / 289,
  23478. bottom: 4 / 315
  23479. }
  23480. },
  23481. back: {
  23482. height: math.unit(6 + 4 / 12, "feet"),
  23483. weight: math.unit(175, "lb"),
  23484. name: "Back",
  23485. image: {
  23486. source: "./media/characters/luka-bryzant/back.svg",
  23487. extra: 311 / 289,
  23488. bottom: 3.8 / 313.7
  23489. }
  23490. },
  23491. },
  23492. [
  23493. {
  23494. name: "Micro",
  23495. height: math.unit(10, "inches")
  23496. },
  23497. {
  23498. name: "Normal",
  23499. height: math.unit(6 + 4 / 12, "feet"),
  23500. default: true
  23501. },
  23502. {
  23503. name: "Large",
  23504. height: math.unit(12, "feet")
  23505. },
  23506. ]
  23507. ))
  23508. characterMakers.push(() => makeCharacter(
  23509. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23510. {
  23511. front: {
  23512. height: math.unit(5 + 7 / 12, "feet"),
  23513. weight: math.unit(185, "lb"),
  23514. name: "Front",
  23515. image: {
  23516. source: "./media/characters/aman-aquila/front.svg",
  23517. extra: 1013 / 976,
  23518. bottom: 45.6 / 1057
  23519. }
  23520. },
  23521. side: {
  23522. height: math.unit(5 + 7 / 12, "feet"),
  23523. weight: math.unit(185, "lb"),
  23524. name: "Side",
  23525. image: {
  23526. source: "./media/characters/aman-aquila/side.svg",
  23527. extra: 1054 / 1011,
  23528. bottom: 15 / 1070
  23529. }
  23530. },
  23531. back: {
  23532. height: math.unit(5 + 7 / 12, "feet"),
  23533. weight: math.unit(185, "lb"),
  23534. name: "Back",
  23535. image: {
  23536. source: "./media/characters/aman-aquila/back.svg",
  23537. extra: 1026 / 970,
  23538. bottom: 12 / 1039
  23539. }
  23540. },
  23541. head: {
  23542. height: math.unit(1.211, "feet"),
  23543. name: "Head",
  23544. image: {
  23545. source: "./media/characters/aman-aquila/head.svg",
  23546. }
  23547. },
  23548. },
  23549. [
  23550. {
  23551. name: "Minimicro",
  23552. height: math.unit(0.057, "inches")
  23553. },
  23554. {
  23555. name: "Micro",
  23556. height: math.unit(7, "inches")
  23557. },
  23558. {
  23559. name: "Mini",
  23560. height: math.unit(3 + 7 / 12, "feet")
  23561. },
  23562. {
  23563. name: "Normal",
  23564. height: math.unit(5 + 7 / 12, "feet"),
  23565. default: true
  23566. },
  23567. {
  23568. name: "Macro",
  23569. height: math.unit(157 + 7 / 12, "feet")
  23570. },
  23571. {
  23572. name: "Megamacro",
  23573. height: math.unit(1557 + 7 / 12, "feet")
  23574. },
  23575. {
  23576. name: "Gigamacro",
  23577. height: math.unit(15557 + 7 / 12, "feet")
  23578. },
  23579. ]
  23580. ))
  23581. characterMakers.push(() => makeCharacter(
  23582. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23583. {
  23584. front: {
  23585. height: math.unit(3 + 2 / 12, "inches"),
  23586. weight: math.unit(0.3, "ounces"),
  23587. name: "Front",
  23588. image: {
  23589. source: "./media/characters/hiphae/front.svg",
  23590. extra: 1931 / 1683,
  23591. bottom: 24 / 1955
  23592. }
  23593. },
  23594. },
  23595. [
  23596. {
  23597. name: "Normal",
  23598. height: math.unit(3 + 1 / 2, "inches"),
  23599. default: true
  23600. },
  23601. ]
  23602. ))
  23603. characterMakers.push(() => makeCharacter(
  23604. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23605. {
  23606. front: {
  23607. height: math.unit(5 + 10 / 12, "feet"),
  23608. weight: math.unit(165, "lb"),
  23609. name: "Front",
  23610. image: {
  23611. source: "./media/characters/nicky/front.svg",
  23612. extra: 3144 / 2886,
  23613. bottom: 45.6 / 3192
  23614. }
  23615. },
  23616. back: {
  23617. height: math.unit(5 + 10 / 12, "feet"),
  23618. weight: math.unit(165, "lb"),
  23619. name: "Back",
  23620. image: {
  23621. source: "./media/characters/nicky/back.svg",
  23622. extra: 3055 / 2804,
  23623. bottom: 28.4 / 3087
  23624. }
  23625. },
  23626. frontclothed: {
  23627. height: math.unit(5 + 10 / 12, "feet"),
  23628. weight: math.unit(165, "lb"),
  23629. name: "Front-clothed",
  23630. image: {
  23631. source: "./media/characters/nicky/front-clothed.svg",
  23632. extra: 3184.9 / 2926.9,
  23633. bottom: 86.5 / 3239.9
  23634. }
  23635. },
  23636. foot: {
  23637. height: math.unit(1.16, "feet"),
  23638. name: "Foot",
  23639. image: {
  23640. source: "./media/characters/nicky/foot.svg"
  23641. }
  23642. },
  23643. feet: {
  23644. height: math.unit(1.34, "feet"),
  23645. name: "Feet",
  23646. image: {
  23647. source: "./media/characters/nicky/feet.svg"
  23648. }
  23649. },
  23650. maw: {
  23651. height: math.unit(0.9, "feet"),
  23652. name: "Maw",
  23653. image: {
  23654. source: "./media/characters/nicky/maw.svg"
  23655. }
  23656. },
  23657. },
  23658. [
  23659. {
  23660. name: "Normal",
  23661. height: math.unit(5 + 10 / 12, "feet"),
  23662. default: true
  23663. },
  23664. {
  23665. name: "Macro",
  23666. height: math.unit(60, "feet")
  23667. },
  23668. {
  23669. name: "Megamacro",
  23670. height: math.unit(1, "mile")
  23671. },
  23672. ]
  23673. ))
  23674. characterMakers.push(() => makeCharacter(
  23675. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23676. {
  23677. side: {
  23678. height: math.unit(10, "feet"),
  23679. weight: math.unit(600, "lb"),
  23680. name: "Side",
  23681. image: {
  23682. source: "./media/characters/blair/side.svg",
  23683. bottom: 16.6 / 475,
  23684. extra: 458 / 431
  23685. }
  23686. },
  23687. },
  23688. [
  23689. {
  23690. name: "Micro",
  23691. height: math.unit(8, "inches")
  23692. },
  23693. {
  23694. name: "Normal",
  23695. height: math.unit(10, "feet"),
  23696. default: true
  23697. },
  23698. {
  23699. name: "Macro",
  23700. height: math.unit(180, "feet")
  23701. },
  23702. ]
  23703. ))
  23704. characterMakers.push(() => makeCharacter(
  23705. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23706. {
  23707. front: {
  23708. height: math.unit(5 + 4 / 12, "feet"),
  23709. weight: math.unit(125, "lb"),
  23710. name: "Front",
  23711. image: {
  23712. source: "./media/characters/fisher/front.svg",
  23713. extra: 444 / 390,
  23714. bottom: 2 / 444.8
  23715. }
  23716. },
  23717. },
  23718. [
  23719. {
  23720. name: "Micro",
  23721. height: math.unit(4, "inches")
  23722. },
  23723. {
  23724. name: "Normal",
  23725. height: math.unit(5 + 4 / 12, "feet"),
  23726. default: true
  23727. },
  23728. {
  23729. name: "Macro",
  23730. height: math.unit(100, "feet")
  23731. },
  23732. ]
  23733. ))
  23734. characterMakers.push(() => makeCharacter(
  23735. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23736. {
  23737. front: {
  23738. height: math.unit(6.71, "feet"),
  23739. weight: math.unit(200, "lb"),
  23740. capacity: math.unit(1000000, "people"),
  23741. name: "Front",
  23742. image: {
  23743. source: "./media/characters/gliss/front.svg",
  23744. extra: 2347 / 2231,
  23745. bottom: 113 / 2462
  23746. }
  23747. },
  23748. hammerspaceSize: {
  23749. height: math.unit(6.71 * 717, "feet"),
  23750. weight: math.unit(200, "lb"),
  23751. capacity: math.unit(1000000, "people"),
  23752. name: "Hammerspace Size",
  23753. image: {
  23754. source: "./media/characters/gliss/front.svg",
  23755. extra: 2347 / 2231,
  23756. bottom: 113 / 2462
  23757. }
  23758. },
  23759. },
  23760. [
  23761. {
  23762. name: "Normal",
  23763. height: math.unit(6.71, "feet"),
  23764. default: true
  23765. },
  23766. ]
  23767. ))
  23768. characterMakers.push(() => makeCharacter(
  23769. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23770. {
  23771. side: {
  23772. height: math.unit(1.44, "m"),
  23773. weight: math.unit(80, "kg"),
  23774. name: "Side",
  23775. image: {
  23776. source: "./media/characters/dune-anderson/side.svg",
  23777. bottom: 49 / 1426
  23778. }
  23779. },
  23780. },
  23781. [
  23782. {
  23783. name: "Wolf-sized",
  23784. height: math.unit(1.44, "meters")
  23785. },
  23786. {
  23787. name: "Normal",
  23788. height: math.unit(5.05, "meters"),
  23789. default: true
  23790. },
  23791. {
  23792. name: "Big",
  23793. height: math.unit(14.4, "meters")
  23794. },
  23795. {
  23796. name: "Huge",
  23797. height: math.unit(144, "meters")
  23798. },
  23799. ]
  23800. ))
  23801. characterMakers.push(() => makeCharacter(
  23802. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23803. {
  23804. front: {
  23805. height: math.unit(7, "feet"),
  23806. weight: math.unit(425, "lb"),
  23807. name: "Front",
  23808. image: {
  23809. source: "./media/characters/hind/front.svg",
  23810. extra: 2091 / 1860,
  23811. bottom: 129 / 2220
  23812. }
  23813. },
  23814. back: {
  23815. height: math.unit(7, "feet"),
  23816. weight: math.unit(425, "lb"),
  23817. name: "Back",
  23818. image: {
  23819. source: "./media/characters/hind/back.svg",
  23820. extra: 2091 / 1860,
  23821. bottom: 24.6 / 2309
  23822. }
  23823. },
  23824. tail: {
  23825. height: math.unit(2.8, "feet"),
  23826. name: "Tail",
  23827. image: {
  23828. source: "./media/characters/hind/tail.svg"
  23829. }
  23830. },
  23831. head: {
  23832. height: math.unit(2.55, "feet"),
  23833. name: "Head",
  23834. image: {
  23835. source: "./media/characters/hind/head.svg"
  23836. }
  23837. },
  23838. },
  23839. [
  23840. {
  23841. name: "XS",
  23842. height: math.unit(0.7, "feet")
  23843. },
  23844. {
  23845. name: "Normal",
  23846. height: math.unit(7, "feet"),
  23847. default: true
  23848. },
  23849. {
  23850. name: "XL",
  23851. height: math.unit(70, "feet")
  23852. },
  23853. ]
  23854. ))
  23855. characterMakers.push(() => makeCharacter(
  23856. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23857. {
  23858. front: {
  23859. height: math.unit(6, "feet"),
  23860. weight: math.unit(150, "lb"),
  23861. name: "Front",
  23862. image: {
  23863. source: "./media/characters/dylan-skaven/front.svg",
  23864. extra: 2318 / 2063,
  23865. bottom: 93.4 / 2410
  23866. }
  23867. },
  23868. },
  23869. [
  23870. {
  23871. name: "Nano",
  23872. height: math.unit(1, "mm")
  23873. },
  23874. {
  23875. name: "Micro",
  23876. height: math.unit(1, "cm")
  23877. },
  23878. {
  23879. name: "Normal",
  23880. height: math.unit(2.1, "meters"),
  23881. default: true
  23882. },
  23883. ]
  23884. ))
  23885. characterMakers.push(() => makeCharacter(
  23886. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23887. {
  23888. front: {
  23889. height: math.unit(7 + 5 / 12, "feet"),
  23890. weight: math.unit(357, "lb"),
  23891. name: "Front",
  23892. image: {
  23893. source: "./media/characters/solex-draconov/front.svg",
  23894. extra: 1993 / 1865,
  23895. bottom: 117 / 2111
  23896. }
  23897. },
  23898. },
  23899. [
  23900. {
  23901. name: "Natural Height",
  23902. height: math.unit(7 + 5 / 12, "feet"),
  23903. default: true
  23904. },
  23905. {
  23906. name: "Macro",
  23907. height: math.unit(350, "feet")
  23908. },
  23909. {
  23910. name: "Macro+",
  23911. height: math.unit(1000, "feet")
  23912. },
  23913. {
  23914. name: "Megamacro",
  23915. height: math.unit(20, "km")
  23916. },
  23917. {
  23918. name: "Megamacro+",
  23919. height: math.unit(1000, "km")
  23920. },
  23921. {
  23922. name: "Gigamacro",
  23923. height: math.unit(2.5, "Gm")
  23924. },
  23925. {
  23926. name: "Teramacro",
  23927. height: math.unit(15, "Tm")
  23928. },
  23929. {
  23930. name: "Galactic",
  23931. height: math.unit(30, "Zm")
  23932. },
  23933. {
  23934. name: "Universal",
  23935. height: math.unit(21000, "Ym")
  23936. },
  23937. {
  23938. name: "Omniversal",
  23939. height: math.unit(9.861e50, "Ym")
  23940. },
  23941. {
  23942. name: "Existential",
  23943. height: math.unit(1e300, "meters")
  23944. },
  23945. ]
  23946. ))
  23947. characterMakers.push(() => makeCharacter(
  23948. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23949. {
  23950. side: {
  23951. height: math.unit(25, "feet"),
  23952. weight: math.unit(90000, "lb"),
  23953. name: "Side",
  23954. image: {
  23955. source: "./media/characters/mandarax/side.svg",
  23956. extra: 614 / 332,
  23957. bottom: 55 / 630
  23958. }
  23959. },
  23960. head: {
  23961. height: math.unit(11.4, "feet"),
  23962. name: "Head",
  23963. image: {
  23964. source: "./media/characters/mandarax/head.svg"
  23965. }
  23966. },
  23967. belly: {
  23968. height: math.unit(33, "feet"),
  23969. name: "Belly",
  23970. capacity: math.unit(500, "people"),
  23971. image: {
  23972. source: "./media/characters/mandarax/belly.svg"
  23973. }
  23974. },
  23975. dick: {
  23976. height: math.unit(8.46, "feet"),
  23977. name: "Dick",
  23978. image: {
  23979. source: "./media/characters/mandarax/dick.svg"
  23980. }
  23981. },
  23982. top: {
  23983. height: math.unit(28, "meters"),
  23984. name: "Top",
  23985. image: {
  23986. source: "./media/characters/mandarax/top.svg"
  23987. }
  23988. },
  23989. },
  23990. [
  23991. {
  23992. name: "Normal",
  23993. height: math.unit(25, "feet"),
  23994. default: true
  23995. },
  23996. ]
  23997. ))
  23998. characterMakers.push(() => makeCharacter(
  23999. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24000. {
  24001. front: {
  24002. height: math.unit(5, "feet"),
  24003. weight: math.unit(90, "lb"),
  24004. name: "Front",
  24005. image: {
  24006. source: "./media/characters/pixil/front.svg",
  24007. extra: 2000 / 1618,
  24008. bottom: 12.3 / 2011
  24009. }
  24010. },
  24011. },
  24012. [
  24013. {
  24014. name: "Normal",
  24015. height: math.unit(5, "feet"),
  24016. default: true
  24017. },
  24018. {
  24019. name: "Megamacro",
  24020. height: math.unit(10, "miles"),
  24021. },
  24022. ]
  24023. ))
  24024. characterMakers.push(() => makeCharacter(
  24025. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24026. {
  24027. front: {
  24028. height: math.unit(7 + 2 / 12, "feet"),
  24029. weight: math.unit(200, "lb"),
  24030. name: "Front",
  24031. image: {
  24032. source: "./media/characters/angel/front.svg",
  24033. extra: 1830 / 1737,
  24034. bottom: 22.6 / 1854,
  24035. }
  24036. },
  24037. },
  24038. [
  24039. {
  24040. name: "Normal",
  24041. height: math.unit(7 + 2 / 12, "feet"),
  24042. default: true
  24043. },
  24044. {
  24045. name: "Macro",
  24046. height: math.unit(1000, "feet")
  24047. },
  24048. {
  24049. name: "Megamacro",
  24050. height: math.unit(2, "miles")
  24051. },
  24052. {
  24053. name: "Gigamacro",
  24054. height: math.unit(20, "earths")
  24055. },
  24056. ]
  24057. ))
  24058. characterMakers.push(() => makeCharacter(
  24059. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24060. {
  24061. front: {
  24062. height: math.unit(5, "feet"),
  24063. weight: math.unit(180, "lb"),
  24064. name: "Front",
  24065. image: {
  24066. source: "./media/characters/mekana/front.svg",
  24067. extra: 1671 / 1605,
  24068. bottom: 3.5 / 1691
  24069. }
  24070. },
  24071. side: {
  24072. height: math.unit(5, "feet"),
  24073. weight: math.unit(180, "lb"),
  24074. name: "Side",
  24075. image: {
  24076. source: "./media/characters/mekana/side.svg",
  24077. extra: 1671 / 1605,
  24078. bottom: 3.5 / 1691
  24079. }
  24080. },
  24081. back: {
  24082. height: math.unit(5, "feet"),
  24083. weight: math.unit(180, "lb"),
  24084. name: "Back",
  24085. image: {
  24086. source: "./media/characters/mekana/back.svg",
  24087. extra: 1671 / 1605,
  24088. bottom: 3.5 / 1691
  24089. }
  24090. },
  24091. },
  24092. [
  24093. {
  24094. name: "Normal",
  24095. height: math.unit(5, "feet"),
  24096. default: true
  24097. },
  24098. ]
  24099. ))
  24100. characterMakers.push(() => makeCharacter(
  24101. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24102. {
  24103. front: {
  24104. height: math.unit(4 + 6 / 12, "feet"),
  24105. weight: math.unit(80, "lb"),
  24106. name: "Front",
  24107. image: {
  24108. source: "./media/characters/pixie/front.svg",
  24109. extra: 1924 / 1825,
  24110. bottom: 22.4 / 1946
  24111. }
  24112. },
  24113. },
  24114. [
  24115. {
  24116. name: "Normal",
  24117. height: math.unit(4 + 6 / 12, "feet"),
  24118. default: true
  24119. },
  24120. {
  24121. name: "Macro",
  24122. height: math.unit(40, "feet")
  24123. },
  24124. ]
  24125. ))
  24126. characterMakers.push(() => makeCharacter(
  24127. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24128. {
  24129. front: {
  24130. height: math.unit(2.1, "meters"),
  24131. weight: math.unit(200, "lb"),
  24132. name: "Front",
  24133. image: {
  24134. source: "./media/characters/the-lascivious/front.svg",
  24135. extra: 1 / 0.893,
  24136. bottom: 3.5 / 573.7
  24137. }
  24138. },
  24139. },
  24140. [
  24141. {
  24142. name: "Human Scale",
  24143. height: math.unit(2.1, "meters")
  24144. },
  24145. {
  24146. name: "Wolxi Scale",
  24147. height: math.unit(46.2, "m"),
  24148. default: true
  24149. },
  24150. {
  24151. name: "Boinker of Buildings",
  24152. height: math.unit(10, "km")
  24153. },
  24154. {
  24155. name: "Shagger of Skyscrapers",
  24156. height: math.unit(40, "km")
  24157. },
  24158. {
  24159. name: "Banger of Boroughs",
  24160. height: math.unit(4000, "km")
  24161. },
  24162. {
  24163. name: "Screwer of States",
  24164. height: math.unit(100000, "km")
  24165. },
  24166. {
  24167. name: "Pounder of Planets",
  24168. height: math.unit(2000000, "km")
  24169. },
  24170. ]
  24171. ))
  24172. characterMakers.push(() => makeCharacter(
  24173. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24174. {
  24175. front: {
  24176. height: math.unit(6, "feet"),
  24177. weight: math.unit(150, "lb"),
  24178. name: "Front",
  24179. image: {
  24180. source: "./media/characters/aj/front.svg",
  24181. extra: 2039 / 1562,
  24182. bottom: 40 / 2079
  24183. }
  24184. },
  24185. },
  24186. [
  24187. {
  24188. name: "Normal",
  24189. height: math.unit(11 + 6 / 12, "feet"),
  24190. default: true
  24191. },
  24192. {
  24193. name: "Megamacro",
  24194. height: math.unit(60, "megameters")
  24195. },
  24196. ]
  24197. ))
  24198. characterMakers.push(() => makeCharacter(
  24199. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24200. {
  24201. side: {
  24202. height: math.unit(31 + 8/12, "feet"),
  24203. weight: math.unit(75000, "kg"),
  24204. name: "Side",
  24205. image: {
  24206. source: "./media/characters/koros/side.svg",
  24207. extra: 1442/1297,
  24208. bottom: 122.7/1562
  24209. }
  24210. },
  24211. dicksKingsCrown: {
  24212. height: math.unit(6, "feet"),
  24213. name: "Dicks (King's Crown)",
  24214. image: {
  24215. source: "./media/characters/koros/dicks-kings-crown.svg"
  24216. }
  24217. },
  24218. dicksTailSet: {
  24219. height: math.unit(3, "feet"),
  24220. name: "Dicks (Tail Set)",
  24221. image: {
  24222. source: "./media/characters/koros/dicks-tail-set.svg"
  24223. }
  24224. },
  24225. dickCumming: {
  24226. height: math.unit(7.98, "feet"),
  24227. name: "Dick (Cumming)",
  24228. image: {
  24229. source: "./media/characters/koros/dick-cumming.svg"
  24230. }
  24231. },
  24232. dicksBack: {
  24233. height: math.unit(5.9, "feet"),
  24234. name: "Dicks (Back)",
  24235. image: {
  24236. source: "./media/characters/koros/dicks-back.svg"
  24237. }
  24238. },
  24239. dicksFront: {
  24240. height: math.unit(3.72, "feet"),
  24241. name: "Dicks (Front)",
  24242. image: {
  24243. source: "./media/characters/koros/dicks-front.svg"
  24244. }
  24245. },
  24246. dicksPeeking: {
  24247. height: math.unit(3.0, "feet"),
  24248. name: "Dicks (Peeking)",
  24249. image: {
  24250. source: "./media/characters/koros/dicks-peeking.svg"
  24251. }
  24252. },
  24253. eye: {
  24254. height: math.unit(1.7, "feet"),
  24255. name: "Eye",
  24256. image: {
  24257. source: "./media/characters/koros/eye.svg"
  24258. }
  24259. },
  24260. headFront: {
  24261. height: math.unit(11.69, "feet"),
  24262. name: "Head (Front)",
  24263. image: {
  24264. source: "./media/characters/koros/head-front.svg"
  24265. }
  24266. },
  24267. headSide: {
  24268. height: math.unit(14, "feet"),
  24269. name: "Head (Side)",
  24270. image: {
  24271. source: "./media/characters/koros/head-side.svg"
  24272. }
  24273. },
  24274. leg: {
  24275. height: math.unit(17, "feet"),
  24276. name: "Leg",
  24277. image: {
  24278. source: "./media/characters/koros/leg.svg"
  24279. }
  24280. },
  24281. mawSide: {
  24282. height: math.unit(12.8, "feet"),
  24283. name: "Maw (Side)",
  24284. image: {
  24285. source: "./media/characters/koros/maw-side.svg"
  24286. }
  24287. },
  24288. mawSpitting: {
  24289. height: math.unit(17, "feet"),
  24290. name: "Maw (Spitting)",
  24291. image: {
  24292. source: "./media/characters/koros/maw-spitting.svg"
  24293. }
  24294. },
  24295. slit: {
  24296. height: math.unit(2.8, "feet"),
  24297. name: "Slit",
  24298. image: {
  24299. source: "./media/characters/koros/slit.svg"
  24300. }
  24301. },
  24302. stomach: {
  24303. height: math.unit(6.8, "feet"),
  24304. capacity: math.unit(20, "people"),
  24305. name: "Stomach",
  24306. image: {
  24307. source: "./media/characters/koros/stomach.svg"
  24308. }
  24309. },
  24310. wingspanBottom: {
  24311. height: math.unit(114, "feet"),
  24312. name: "Wingspan (Bottom)",
  24313. image: {
  24314. source: "./media/characters/koros/wingspan-bottom.svg"
  24315. }
  24316. },
  24317. wingspanTop: {
  24318. height: math.unit(104, "feet"),
  24319. name: "Wingspan (Top)",
  24320. image: {
  24321. source: "./media/characters/koros/wingspan-top.svg"
  24322. }
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Normal",
  24328. height: math.unit(31 + 8/12, "feet"),
  24329. default: true
  24330. },
  24331. ]
  24332. ))
  24333. characterMakers.push(() => makeCharacter(
  24334. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24335. {
  24336. front: {
  24337. height: math.unit(18 + 5/12, "feet"),
  24338. weight: math.unit(3750, "kg"),
  24339. name: "Front",
  24340. image: {
  24341. source: "./media/characters/vexx/front.svg",
  24342. extra: 426/396,
  24343. bottom: 31.5/458
  24344. }
  24345. },
  24346. maw: {
  24347. height: math.unit(6, "feet"),
  24348. name: "Maw",
  24349. image: {
  24350. source: "./media/characters/vexx/maw.svg"
  24351. }
  24352. },
  24353. },
  24354. [
  24355. {
  24356. name: "Normal",
  24357. height: math.unit(18 + 5/12, "feet"),
  24358. default: true
  24359. },
  24360. ]
  24361. ))
  24362. characterMakers.push(() => makeCharacter(
  24363. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24364. {
  24365. front: {
  24366. height: math.unit(17 + 6/12, "feet"),
  24367. weight: math.unit(150, "lb"),
  24368. name: "Front",
  24369. image: {
  24370. source: "./media/characters/baadra/front.svg",
  24371. extra: 3137/2890,
  24372. bottom: 168.4/3305
  24373. }
  24374. },
  24375. back: {
  24376. height: math.unit(17 + 6/12, "feet"),
  24377. weight: math.unit(150, "lb"),
  24378. name: "Back",
  24379. image: {
  24380. source: "./media/characters/baadra/back.svg",
  24381. extra: 3142/2890,
  24382. bottom: 220/3371
  24383. }
  24384. },
  24385. head: {
  24386. height: math.unit(5.45, "feet"),
  24387. name: "Head",
  24388. image: {
  24389. source: "./media/characters/baadra/head.svg"
  24390. }
  24391. },
  24392. headAngry: {
  24393. height: math.unit(4.95, "feet"),
  24394. name: "Head (Angry)",
  24395. image: {
  24396. source: "./media/characters/baadra/head-angry.svg"
  24397. }
  24398. },
  24399. headOpen: {
  24400. height: math.unit(6, "feet"),
  24401. name: "Head (Open)",
  24402. image: {
  24403. source: "./media/characters/baadra/head-open.svg"
  24404. }
  24405. },
  24406. },
  24407. [
  24408. {
  24409. name: "Normal",
  24410. height: math.unit(17 + 6/12, "feet"),
  24411. default: true
  24412. },
  24413. ]
  24414. ))
  24415. characterMakers.push(() => makeCharacter(
  24416. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24417. {
  24418. front: {
  24419. height: math.unit(7 + 3/12, "feet"),
  24420. weight: math.unit(180, "lb"),
  24421. name: "Front",
  24422. image: {
  24423. source: "./media/characters/juri/front.svg",
  24424. extra: 1401/1237,
  24425. bottom: 18.5/1418
  24426. }
  24427. },
  24428. side: {
  24429. height: math.unit(7 + 3/12, "feet"),
  24430. weight: math.unit(180, "lb"),
  24431. name: "Side",
  24432. image: {
  24433. source: "./media/characters/juri/side.svg",
  24434. extra: 1424/1242,
  24435. bottom: 18.5/1447
  24436. }
  24437. },
  24438. sitting: {
  24439. height: math.unit(6, "feet"),
  24440. weight: math.unit(180, "lb"),
  24441. name: "Sitting",
  24442. image: {
  24443. source: "./media/characters/juri/sitting.svg",
  24444. extra: 1270/1143,
  24445. bottom: 100/1343
  24446. }
  24447. },
  24448. back: {
  24449. height: math.unit(7 + 3/12, "feet"),
  24450. weight: math.unit(180, "lb"),
  24451. name: "Back",
  24452. image: {
  24453. source: "./media/characters/juri/back.svg",
  24454. extra: 1377/1240,
  24455. bottom: 23.7/1405
  24456. }
  24457. },
  24458. maw: {
  24459. height: math.unit(2.8, "feet"),
  24460. name: "Maw",
  24461. image: {
  24462. source: "./media/characters/juri/maw.svg"
  24463. }
  24464. },
  24465. stomach: {
  24466. height: math.unit(0.89, "feet"),
  24467. capacity: math.unit(4, "liters"),
  24468. name: "Stomach",
  24469. image: {
  24470. source: "./media/characters/juri/stomach.svg"
  24471. }
  24472. },
  24473. },
  24474. [
  24475. {
  24476. name: "Normal",
  24477. height: math.unit(7 + 3/12, "feet"),
  24478. default: true
  24479. },
  24480. ]
  24481. ))
  24482. characterMakers.push(() => makeCharacter(
  24483. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24484. {
  24485. fox: {
  24486. height: math.unit(5 + 6/12, "feet"),
  24487. weight: math.unit(140, "lb"),
  24488. name: "Fox",
  24489. image: {
  24490. source: "./media/characters/maxene-sita/fox.svg",
  24491. extra: 146/138,
  24492. bottom: 2.1/148.19
  24493. }
  24494. },
  24495. kitsune: {
  24496. height: math.unit(10, "feet"),
  24497. weight: math.unit(800, "lb"),
  24498. name: "Kitsune",
  24499. image: {
  24500. source: "./media/characters/maxene-sita/kitsune.svg",
  24501. extra: 185/176,
  24502. bottom: 4.7/189.9
  24503. }
  24504. },
  24505. },
  24506. [
  24507. {
  24508. name: "Normal",
  24509. height: math.unit(5 + 6/12, "feet"),
  24510. default: true
  24511. },
  24512. ]
  24513. ))
  24514. characterMakers.push(() => makeCharacter(
  24515. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24516. {
  24517. front: {
  24518. height: math.unit(3 + 4/12, "feet"),
  24519. weight: math.unit(70, "lb"),
  24520. name: "Front",
  24521. image: {
  24522. source: "./media/characters/maia/front.svg",
  24523. extra: 227/219.5,
  24524. bottom: 40 / 267
  24525. }
  24526. },
  24527. back: {
  24528. height: math.unit(3 + 4/12, "feet"),
  24529. weight: math.unit(70, "lb"),
  24530. name: "Back",
  24531. image: {
  24532. source: "./media/characters/maia/back.svg",
  24533. extra: 237/225
  24534. }
  24535. },
  24536. },
  24537. [
  24538. {
  24539. name: "Normal",
  24540. height: math.unit(3 + 4/12, "feet"),
  24541. default: true
  24542. },
  24543. ]
  24544. ))
  24545. characterMakers.push(() => makeCharacter(
  24546. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24547. {
  24548. front: {
  24549. height: math.unit(5 + 10/12, "feet"),
  24550. weight: math.unit(197, "lb"),
  24551. name: "Front",
  24552. image: {
  24553. source: "./media/characters/jabaro/front.svg",
  24554. extra: 225/216,
  24555. bottom: 5.06/230
  24556. }
  24557. },
  24558. back: {
  24559. height: math.unit(5 + 10/12, "feet"),
  24560. weight: math.unit(197, "lb"),
  24561. name: "Back",
  24562. image: {
  24563. source: "./media/characters/jabaro/back.svg",
  24564. extra: 225/219,
  24565. bottom: 1.9/227
  24566. }
  24567. },
  24568. },
  24569. [
  24570. {
  24571. name: "Normal",
  24572. height: math.unit(5 + 10/12, "feet"),
  24573. default: true
  24574. },
  24575. ]
  24576. ))
  24577. characterMakers.push(() => makeCharacter(
  24578. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24579. {
  24580. front: {
  24581. height: math.unit(5 + 8/12, "feet"),
  24582. weight: math.unit(139, "lb"),
  24583. name: "Front",
  24584. image: {
  24585. source: "./media/characters/risa/front.svg",
  24586. extra: 270/260,
  24587. bottom: 11.2/282
  24588. }
  24589. },
  24590. back: {
  24591. height: math.unit(5 + 8/12, "feet"),
  24592. weight: math.unit(139, "lb"),
  24593. name: "Back",
  24594. image: {
  24595. source: "./media/characters/risa/back.svg",
  24596. extra: 264/255,
  24597. bottom: 4/268
  24598. }
  24599. },
  24600. },
  24601. [
  24602. {
  24603. name: "Normal",
  24604. height: math.unit(5 + 8/12, "feet"),
  24605. default: true
  24606. },
  24607. ]
  24608. ))
  24609. characterMakers.push(() => makeCharacter(
  24610. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24611. {
  24612. front: {
  24613. height: math.unit(2 + 11/12, "feet"),
  24614. weight: math.unit(30, "lb"),
  24615. name: "Front",
  24616. image: {
  24617. source: "./media/characters/weatley/front.svg",
  24618. bottom: 10.7/414,
  24619. extra: 403.5/362
  24620. }
  24621. },
  24622. back: {
  24623. height: math.unit(2 + 11/12, "feet"),
  24624. weight: math.unit(30, "lb"),
  24625. name: "Back",
  24626. image: {
  24627. source: "./media/characters/weatley/back.svg",
  24628. bottom: 10.7/414,
  24629. extra: 403.5/362
  24630. }
  24631. },
  24632. },
  24633. [
  24634. {
  24635. name: "Normal",
  24636. height: math.unit(2 + 11/12, "feet"),
  24637. default: true
  24638. },
  24639. ]
  24640. ))
  24641. characterMakers.push(() => makeCharacter(
  24642. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24643. {
  24644. front: {
  24645. height: math.unit(5 + 2/12, "feet"),
  24646. weight: math.unit(50, "kg"),
  24647. name: "Front",
  24648. image: {
  24649. source: "./media/characters/mercury-crescent/front.svg",
  24650. extra: 1088/1033,
  24651. bottom: 18.9/1109
  24652. }
  24653. },
  24654. },
  24655. [
  24656. {
  24657. name: "Normal",
  24658. height: math.unit(5 + 2/12, "feet"),
  24659. default: true
  24660. },
  24661. ]
  24662. ))
  24663. characterMakers.push(() => makeCharacter(
  24664. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24665. {
  24666. front: {
  24667. height: math.unit(2, "feet"),
  24668. weight: math.unit(15, "kg"),
  24669. name: "Front",
  24670. image: {
  24671. source: "./media/characters/diamond-jones/front.svg",
  24672. bottom: 16/568
  24673. }
  24674. },
  24675. },
  24676. [
  24677. {
  24678. name: "Normal",
  24679. height: math.unit(2, "feet"),
  24680. default: true
  24681. },
  24682. ]
  24683. ))
  24684. characterMakers.push(() => makeCharacter(
  24685. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24686. {
  24687. front: {
  24688. height: math.unit(3, "feet"),
  24689. weight: math.unit(30, "kg"),
  24690. name: "Front",
  24691. image: {
  24692. source: "./media/characters/sweet-bit/front.svg",
  24693. extra: 675/567,
  24694. bottom: 27.7/703
  24695. }
  24696. },
  24697. },
  24698. [
  24699. {
  24700. name: "Normal",
  24701. height: math.unit(3, "feet"),
  24702. default: true
  24703. },
  24704. ]
  24705. ))
  24706. characterMakers.push(() => makeCharacter(
  24707. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24708. {
  24709. side: {
  24710. height: math.unit(9.178, "feet"),
  24711. weight: math.unit(500, "lb"),
  24712. name: "Side",
  24713. image: {
  24714. source: "./media/characters/umbrazen/side.svg",
  24715. extra: 1730/1473,
  24716. bottom: 34.6/1765
  24717. }
  24718. },
  24719. },
  24720. [
  24721. {
  24722. name: "Normal",
  24723. height: math.unit(9.178, "feet"),
  24724. default: true
  24725. },
  24726. ]
  24727. ))
  24728. characterMakers.push(() => makeCharacter(
  24729. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24730. {
  24731. front: {
  24732. height: math.unit(10, "feet"),
  24733. weight: math.unit(750, "lb"),
  24734. name: "Front",
  24735. image: {
  24736. source: "./media/characters/arlist/front.svg",
  24737. extra: 961/778,
  24738. bottom: 6.2/986
  24739. }
  24740. },
  24741. },
  24742. [
  24743. {
  24744. name: "Normal",
  24745. height: math.unit(10, "feet"),
  24746. default: true
  24747. },
  24748. ]
  24749. ))
  24750. characterMakers.push(() => makeCharacter(
  24751. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24752. {
  24753. front: {
  24754. height: math.unit(5 + 1/12, "feet"),
  24755. weight: math.unit(110, "lb"),
  24756. name: "Front",
  24757. image: {
  24758. source: "./media/characters/aradel/front.svg",
  24759. extra: 324/303,
  24760. bottom: 3.6/329.4
  24761. }
  24762. },
  24763. },
  24764. [
  24765. {
  24766. name: "Normal",
  24767. height: math.unit(5 + 1/12, "feet"),
  24768. default: true
  24769. },
  24770. ]
  24771. ))
  24772. characterMakers.push(() => makeCharacter(
  24773. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24774. {
  24775. front: {
  24776. height: math.unit(3 + 8/12, "feet"),
  24777. weight: math.unit(50, "lb"),
  24778. name: "Front",
  24779. image: {
  24780. source: "./media/characters/serryn/front.svg",
  24781. extra: 1792/1656,
  24782. bottom: 43.5/1840
  24783. }
  24784. },
  24785. },
  24786. [
  24787. {
  24788. name: "Normal",
  24789. height: math.unit(3 + 8/12, "feet"),
  24790. default: true
  24791. },
  24792. ]
  24793. ))
  24794. characterMakers.push(() => makeCharacter(
  24795. { name: "Xavier Thyme" },
  24796. {
  24797. front: {
  24798. height: math.unit(7 + 10/12, "feet"),
  24799. weight: math.unit(255, "lb"),
  24800. name: "Front",
  24801. image: {
  24802. source: "./media/characters/xavier-thyme/front.svg",
  24803. extra: 3733/3642,
  24804. bottom: 131/3869
  24805. }
  24806. },
  24807. frontRaven: {
  24808. height: math.unit(7 + 10/12, "feet"),
  24809. weight: math.unit(255, "lb"),
  24810. name: "Front (Raven)",
  24811. image: {
  24812. source: "./media/characters/xavier-thyme/front-raven.svg",
  24813. extra: 4385/3642,
  24814. bottom: 131/4517
  24815. }
  24816. },
  24817. },
  24818. [
  24819. {
  24820. name: "Normal",
  24821. height: math.unit(7 + 10/12, "feet"),
  24822. default: true
  24823. },
  24824. ]
  24825. ))
  24826. characterMakers.push(() => makeCharacter(
  24827. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24828. {
  24829. front: {
  24830. height: math.unit(1.6, "m"),
  24831. weight: math.unit(50, "kg"),
  24832. name: "Front",
  24833. image: {
  24834. source: "./media/characters/kiki/front.svg",
  24835. extra: 4682/3610,
  24836. bottom: 115/4777
  24837. }
  24838. },
  24839. },
  24840. [
  24841. {
  24842. name: "Normal",
  24843. height: math.unit(1.6, "meters"),
  24844. default: true
  24845. },
  24846. ]
  24847. ))
  24848. characterMakers.push(() => makeCharacter(
  24849. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24850. {
  24851. front: {
  24852. height: math.unit(50, "m"),
  24853. weight: math.unit(500, "tonnes"),
  24854. name: "Front",
  24855. image: {
  24856. source: "./media/characters/ryoko/front.svg",
  24857. extra: 4632/3926,
  24858. bottom: 193/4823
  24859. }
  24860. },
  24861. },
  24862. [
  24863. {
  24864. name: "Normal",
  24865. height: math.unit(50, "meters"),
  24866. default: true
  24867. },
  24868. ]
  24869. ))
  24870. characterMakers.push(() => makeCharacter(
  24871. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24872. {
  24873. front: {
  24874. height: math.unit(30, "m"),
  24875. weight: math.unit(22, "tonnes"),
  24876. name: "Front",
  24877. image: {
  24878. source: "./media/characters/elio/front.svg",
  24879. extra: 4582/3720,
  24880. bottom: 236/4828
  24881. }
  24882. },
  24883. },
  24884. [
  24885. {
  24886. name: "Normal",
  24887. height: math.unit(30, "meters"),
  24888. default: true
  24889. },
  24890. ]
  24891. ))
  24892. characterMakers.push(() => makeCharacter(
  24893. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  24894. {
  24895. front: {
  24896. height: math.unit(6 + 3/12, "feet"),
  24897. weight: math.unit(120, "lb"),
  24898. name: "Front",
  24899. image: {
  24900. source: "./media/characters/azura/front.svg",
  24901. extra: 1149/1135,
  24902. bottom: 45/1194
  24903. }
  24904. },
  24905. frontClothed: {
  24906. height: math.unit(6 + 3/12, "feet"),
  24907. weight: math.unit(120, "lb"),
  24908. name: "Front (Clothed)",
  24909. image: {
  24910. source: "./media/characters/azura/front-clothed.svg",
  24911. extra: 1149/1135,
  24912. bottom: 45/1194
  24913. }
  24914. },
  24915. },
  24916. [
  24917. {
  24918. name: "Normal",
  24919. height: math.unit(6 + 3/12, "feet"),
  24920. default: true
  24921. },
  24922. {
  24923. name: "Macro",
  24924. height: math.unit(20 + 6/12, "feet")
  24925. },
  24926. {
  24927. name: "Megamacro",
  24928. height: math.unit(12, "miles")
  24929. },
  24930. {
  24931. name: "Gigamacro",
  24932. height: math.unit(10000, "miles")
  24933. },
  24934. {
  24935. name: "Teramacro",
  24936. height: math.unit(900000, "miles")
  24937. },
  24938. ]
  24939. ))
  24940. characterMakers.push(() => makeCharacter(
  24941. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  24942. {
  24943. front: {
  24944. height: math.unit(12, "feet"),
  24945. weight: math.unit(1, "ton"),
  24946. capacity: math.unit(660000, "gallons"),
  24947. name: "Front",
  24948. image: {
  24949. source: "./media/characters/zeus/front.svg",
  24950. extra: 5005/4717,
  24951. bottom: 363/5388
  24952. }
  24953. },
  24954. },
  24955. [
  24956. {
  24957. name: "Normal",
  24958. height: math.unit(12, "feet")
  24959. },
  24960. {
  24961. name: "Preferred Size",
  24962. height: math.unit(0.5, "miles"),
  24963. default: true
  24964. },
  24965. {
  24966. name: "Giga Horse",
  24967. height: math.unit(300, "miles")
  24968. },
  24969. {
  24970. name: "Riding Planets",
  24971. height: math.unit(30, "megameters")
  24972. },
  24973. {
  24974. name: "Cosmic Giant",
  24975. height: math.unit(3, "zettameters")
  24976. },
  24977. {
  24978. name: "Breeding God",
  24979. height: math.unit(9.92e22, "yottameters")
  24980. },
  24981. ]
  24982. ))
  24983. characterMakers.push(() => makeCharacter(
  24984. { name: "Fang", species: ["monster"], tags: ["feral"] },
  24985. {
  24986. side: {
  24987. height: math.unit(9, "feet"),
  24988. weight: math.unit(1500, "kg"),
  24989. name: "Side",
  24990. image: {
  24991. source: "./media/characters/fang/side.svg",
  24992. extra: 924/866,
  24993. bottom: 47.5/972.3
  24994. }
  24995. },
  24996. },
  24997. [
  24998. {
  24999. name: "Normal",
  25000. height: math.unit(9, "feet"),
  25001. default: true
  25002. },
  25003. {
  25004. name: "Macro",
  25005. height: math.unit(75 + 6/12, "feet")
  25006. },
  25007. {
  25008. name: "Teramacro",
  25009. height: math.unit(50000, "miles")
  25010. },
  25011. ]
  25012. ))
  25013. characterMakers.push(() => makeCharacter(
  25014. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25015. {
  25016. front: {
  25017. height: math.unit(10, "feet"),
  25018. weight: math.unit(2, "tons"),
  25019. name: "Front",
  25020. image: {
  25021. source: "./media/characters/rekhit/front.svg",
  25022. extra: 2796/2590,
  25023. bottom: 225/3022
  25024. }
  25025. },
  25026. },
  25027. [
  25028. {
  25029. name: "Normal",
  25030. height: math.unit(10, "feet"),
  25031. default: true
  25032. },
  25033. {
  25034. name: "Macro",
  25035. height: math.unit(500, "feet")
  25036. },
  25037. ]
  25038. ))
  25039. characterMakers.push(() => makeCharacter(
  25040. { name: "Dahlia Verrick" },
  25041. {
  25042. front: {
  25043. height: math.unit(7 + 6.451/12, "feet"),
  25044. weight: math.unit(310, "lb"),
  25045. name: "Front",
  25046. image: {
  25047. source: "./media/characters/dahlia-verrick/front.svg",
  25048. extra: 1488/1365,
  25049. bottom: 6.2/1495
  25050. }
  25051. },
  25052. back: {
  25053. height: math.unit(7 + 6.451/12, "feet"),
  25054. weight: math.unit(310, "lb"),
  25055. name: "Back",
  25056. image: {
  25057. source: "./media/characters/dahlia-verrick/back.svg",
  25058. extra: 1472/1351,
  25059. bottom: 5.28/1477
  25060. }
  25061. },
  25062. frontBusiness: {
  25063. height: math.unit(7 + 6.451/12, "feet"),
  25064. weight: math.unit(200, "lb"),
  25065. name: "Front (Business)",
  25066. image: {
  25067. source: "./media/characters/dahlia-verrick/front-business.svg",
  25068. extra: 1478/1381,
  25069. bottom: 5.5/1484
  25070. }
  25071. },
  25072. frontCasual: {
  25073. height: math.unit(7 + 6.451/12, "feet"),
  25074. weight: math.unit(200, "lb"),
  25075. name: "Front (Casual)",
  25076. image: {
  25077. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25078. extra: 1478/1381,
  25079. bottom: 5.5/1484
  25080. }
  25081. },
  25082. },
  25083. [
  25084. {
  25085. name: "Travel-Sized",
  25086. height: math.unit(7.45, "inches")
  25087. },
  25088. {
  25089. name: "Normal",
  25090. height: math.unit(7 + 6.451/12, "feet"),
  25091. default: true
  25092. },
  25093. {
  25094. name: "Hitting the Town",
  25095. height: math.unit(37 + 8/12, "feet")
  25096. },
  25097. {
  25098. name: "Stomp in the Suburbs",
  25099. height: math.unit(964 + 9.728/12, "feet")
  25100. },
  25101. {
  25102. name: "Sit on the City",
  25103. height: math.unit(61747 + 10.592/12, "feet")
  25104. },
  25105. {
  25106. name: "Glomp the Globe",
  25107. height: math.unit(252919327 + 4.832/12, "feet")
  25108. },
  25109. ]
  25110. ))
  25111. characterMakers.push(() => makeCharacter(
  25112. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25113. {
  25114. front: {
  25115. height: math.unit(6 + 4/12, "feet"),
  25116. weight: math.unit(320, "lb"),
  25117. name: "Front",
  25118. image: {
  25119. source: "./media/characters/balina-mahigan/front.svg",
  25120. extra: 447/428,
  25121. bottom: 18/466
  25122. }
  25123. },
  25124. back: {
  25125. height: math.unit(6 + 4/12, "feet"),
  25126. weight: math.unit(320, "lb"),
  25127. name: "Back",
  25128. image: {
  25129. source: "./media/characters/balina-mahigan/back.svg",
  25130. extra: 445/428,
  25131. bottom: 4.07/448
  25132. }
  25133. },
  25134. arm: {
  25135. height: math.unit(1.88, "feet"),
  25136. name: "Arm",
  25137. image: {
  25138. source: "./media/characters/balina-mahigan/arm.svg"
  25139. }
  25140. },
  25141. backPort: {
  25142. height: math.unit(0.685, "feet"),
  25143. name: "Back Port",
  25144. image: {
  25145. source: "./media/characters/balina-mahigan/back-port.svg"
  25146. }
  25147. },
  25148. hoofpaw: {
  25149. height: math.unit(1.41, "feet"),
  25150. name: "Hoofpaw",
  25151. image: {
  25152. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25153. }
  25154. },
  25155. leftHandBack: {
  25156. height: math.unit(0.938, "feet"),
  25157. name: "Left Hand (Back)",
  25158. image: {
  25159. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25160. }
  25161. },
  25162. leftHandFront: {
  25163. height: math.unit(0.938, "feet"),
  25164. name: "Left Hand (Front)",
  25165. image: {
  25166. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25167. }
  25168. },
  25169. rightHandBack: {
  25170. height: math.unit(0.95, "feet"),
  25171. name: "Right Hand (Back)",
  25172. image: {
  25173. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25174. }
  25175. },
  25176. rightHandFront: {
  25177. height: math.unit(0.95, "feet"),
  25178. name: "Right Hand (Front)",
  25179. image: {
  25180. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25181. }
  25182. },
  25183. },
  25184. [
  25185. {
  25186. name: "Normal",
  25187. height: math.unit(6 + 4/12, "feet"),
  25188. default: true
  25189. },
  25190. ]
  25191. ))
  25192. characterMakers.push(() => makeCharacter(
  25193. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25194. {
  25195. front: {
  25196. height: math.unit(6, "feet"),
  25197. weight: math.unit(320, "lb"),
  25198. name: "Front",
  25199. image: {
  25200. source: "./media/characters/balina-mejeri/front.svg",
  25201. extra: 517/488,
  25202. bottom: 44.2/561
  25203. }
  25204. },
  25205. },
  25206. [
  25207. {
  25208. name: "Normal",
  25209. height: math.unit(6 + 4/12, "feet")
  25210. },
  25211. {
  25212. name: "Business",
  25213. height: math.unit(155, "feet"),
  25214. default: true
  25215. },
  25216. ]
  25217. ))
  25218. characterMakers.push(() => makeCharacter(
  25219. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25220. {
  25221. kneeling: {
  25222. height: math.unit(6 + 4/12, "feet"),
  25223. weight: math.unit(300*20, "lb"),
  25224. name: "Kneeling",
  25225. image: {
  25226. source: "./media/characters/balbarian/kneeling.svg",
  25227. extra: 922/862,
  25228. bottom: 42.4/965
  25229. }
  25230. },
  25231. },
  25232. [
  25233. {
  25234. name: "Normal",
  25235. height: math.unit(6 + 4/12, "feet")
  25236. },
  25237. {
  25238. name: "Treasured",
  25239. height: math.unit(18 + 9/12, "feet"),
  25240. default: true
  25241. },
  25242. {
  25243. name: "Macro",
  25244. height: math.unit(900, "feet")
  25245. },
  25246. ]
  25247. ))
  25248. characterMakers.push(() => makeCharacter(
  25249. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25250. {
  25251. front: {
  25252. height: math.unit(6 + 4/12, "feet"),
  25253. weight: math.unit(325, "lb"),
  25254. name: "Front",
  25255. image: {
  25256. source: "./media/characters/balina-amarini/front.svg",
  25257. extra: 415/403,
  25258. bottom: 19/433.4
  25259. }
  25260. },
  25261. back: {
  25262. height: math.unit(6 + 4/12, "feet"),
  25263. weight: math.unit(325, "lb"),
  25264. name: "Back",
  25265. image: {
  25266. source: "./media/characters/balina-amarini/back.svg",
  25267. extra: 415/403,
  25268. bottom: 13.5/432
  25269. }
  25270. },
  25271. overdrive: {
  25272. height: math.unit(6 + 4/12, "feet"),
  25273. weight: math.unit(400, "lb"),
  25274. name: "Overdrive",
  25275. image: {
  25276. source: "./media/characters/balina-amarini/overdrive.svg",
  25277. extra: 269/259,
  25278. bottom: 12/282
  25279. }
  25280. },
  25281. },
  25282. [
  25283. {
  25284. name: "Boom",
  25285. height: math.unit(9 + 10/12, "feet"),
  25286. default: true
  25287. },
  25288. {
  25289. name: "Macro",
  25290. height: math.unit(280, "feet")
  25291. },
  25292. ]
  25293. ))
  25294. characterMakers.push(() => makeCharacter(
  25295. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25296. {
  25297. goddess: {
  25298. height: math.unit(600, "feet"),
  25299. weight: math.unit(2000000, "tons"),
  25300. name: "Goddess",
  25301. image: {
  25302. source: "./media/characters/lady-kubwa/goddess.svg",
  25303. extra: 1240.5/1223,
  25304. bottom: 22/1263
  25305. }
  25306. },
  25307. goddesser: {
  25308. height: math.unit(900, "feet"),
  25309. weight: math.unit(20000000, "lb"),
  25310. name: "Goddess-er",
  25311. image: {
  25312. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25313. extra: 899/888,
  25314. bottom: 12.6/912
  25315. }
  25316. },
  25317. },
  25318. [
  25319. {
  25320. name: "Macro",
  25321. height: math.unit(600, "feet"),
  25322. default: true
  25323. },
  25324. {
  25325. name: "Megamacro",
  25326. height: math.unit(250, "miles")
  25327. },
  25328. ]
  25329. ))
  25330. characterMakers.push(() => makeCharacter(
  25331. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25332. {
  25333. front: {
  25334. height: math.unit(7 + 7/12, "feet"),
  25335. weight: math.unit(250, "lb"),
  25336. name: "Front",
  25337. image: {
  25338. source: "./media/characters/tala-grovehorn/front.svg",
  25339. extra: 2636/2525,
  25340. bottom: 147/2781
  25341. }
  25342. },
  25343. back: {
  25344. height: math.unit(7 + 7/12, "feet"),
  25345. weight: math.unit(250, "lb"),
  25346. name: "Back",
  25347. image: {
  25348. source: "./media/characters/tala-grovehorn/back.svg",
  25349. extra: 2635/2539,
  25350. bottom: 100/2732.8
  25351. }
  25352. },
  25353. mouth: {
  25354. height: math.unit(1.15, "feet"),
  25355. name: "Mouth",
  25356. image: {
  25357. source: "./media/characters/tala-grovehorn/mouth.svg"
  25358. }
  25359. },
  25360. dick: {
  25361. height: math.unit(2.36, "feet"),
  25362. name: "Dick",
  25363. image: {
  25364. source: "./media/characters/tala-grovehorn/dick.svg"
  25365. }
  25366. },
  25367. slit: {
  25368. height: math.unit(0.61, "feet"),
  25369. name: "Slit",
  25370. image: {
  25371. source: "./media/characters/tala-grovehorn/slit.svg"
  25372. }
  25373. },
  25374. },
  25375. [
  25376. ]
  25377. ))
  25378. characterMakers.push(() => makeCharacter(
  25379. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25380. {
  25381. front: {
  25382. height: math.unit(7 + 7/12, "feet"),
  25383. weight: math.unit(225, "lb"),
  25384. name: "Front",
  25385. image: {
  25386. source: "./media/characters/epona/front.svg",
  25387. extra: 2445/2290,
  25388. bottom: 251/2696
  25389. }
  25390. },
  25391. back: {
  25392. height: math.unit(7 + 7/12, "feet"),
  25393. weight: math.unit(225, "lb"),
  25394. name: "Back",
  25395. image: {
  25396. source: "./media/characters/epona/back.svg",
  25397. extra: 2546/2408,
  25398. bottom: 44/2589
  25399. }
  25400. },
  25401. genitals: {
  25402. height: math.unit(1.5, "feet"),
  25403. name: "Genitals",
  25404. image: {
  25405. source: "./media/characters/epona/genitals.svg"
  25406. }
  25407. },
  25408. },
  25409. [
  25410. {
  25411. name: "Normal",
  25412. height: math.unit(7 + 7/12, "feet")
  25413. },
  25414. ]
  25415. ))
  25416. characterMakers.push(() => makeCharacter(
  25417. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25418. {
  25419. front: {
  25420. height: math.unit(7, "feet"),
  25421. weight: math.unit(518, "lb"),
  25422. name: "Front",
  25423. image: {
  25424. source: "./media/characters/avia-bloodbourn/front.svg",
  25425. extra: 1466/1350,
  25426. bottom: 65/1527
  25427. }
  25428. },
  25429. },
  25430. [
  25431. ]
  25432. ))
  25433. characterMakers.push(() => makeCharacter(
  25434. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25435. {
  25436. front: {
  25437. height: math.unit(9.35, "feet"),
  25438. weight: math.unit(600, "lb"),
  25439. name: "Front",
  25440. image: {
  25441. source: "./media/characters/amera/front.svg",
  25442. extra: 891/818,
  25443. bottom: 30/922.7
  25444. }
  25445. },
  25446. back: {
  25447. height: math.unit(9.35, "feet"),
  25448. weight: math.unit(600, "lb"),
  25449. name: "Back",
  25450. image: {
  25451. source: "./media/characters/amera/back.svg",
  25452. extra: 876/824,
  25453. bottom: 6.8/884
  25454. }
  25455. },
  25456. dick: {
  25457. height: math.unit(2.14, "feet"),
  25458. name: "Dick",
  25459. image: {
  25460. source: "./media/characters/amera/dick.svg"
  25461. }
  25462. },
  25463. },
  25464. [
  25465. {
  25466. name: "Normal",
  25467. height: math.unit(9.35, "feet"),
  25468. default: true
  25469. },
  25470. ]
  25471. ))
  25472. characterMakers.push(() => makeCharacter(
  25473. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25474. {
  25475. kneeling: {
  25476. height: math.unit(3 + 4/12, "feet"),
  25477. weight: math.unit(90, "lb"),
  25478. name: "Kneeling",
  25479. image: {
  25480. source: "./media/characters/rosewen/kneeling.svg",
  25481. extra: 1835/1571,
  25482. bottom: 27.7/1862
  25483. }
  25484. },
  25485. },
  25486. [
  25487. {
  25488. name: "Normal",
  25489. height: math.unit(3 + 4/12, "feet"),
  25490. default: true
  25491. },
  25492. ]
  25493. ))
  25494. characterMakers.push(() => makeCharacter(
  25495. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25496. {
  25497. front: {
  25498. height: math.unit(5 + 10/12, "feet"),
  25499. weight: math.unit(200, "lb"),
  25500. name: "Front",
  25501. image: {
  25502. source: "./media/characters/sabah/front.svg",
  25503. extra: 849/763,
  25504. bottom: 33.9/881
  25505. }
  25506. },
  25507. },
  25508. [
  25509. {
  25510. name: "Normal",
  25511. height: math.unit(5 + 10/12, "feet"),
  25512. default: true
  25513. },
  25514. ]
  25515. ))
  25516. characterMakers.push(() => makeCharacter(
  25517. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25518. {
  25519. front: {
  25520. height: math.unit(3 + 5/12, "feet"),
  25521. weight: math.unit(40, "kg"),
  25522. name: "Front",
  25523. image: {
  25524. source: "./media/characters/purple-flame/front.svg",
  25525. extra: 1577/1412,
  25526. bottom: 97/1694
  25527. }
  25528. },
  25529. frontDressed: {
  25530. height: math.unit(3 + 5/12, "feet"),
  25531. weight: math.unit(40, "kg"),
  25532. name: "Front (Dressed)",
  25533. image: {
  25534. source: "./media/characters/purple-flame/front-dressed.svg",
  25535. extra: 1577/1412,
  25536. bottom: 97/1694
  25537. }
  25538. },
  25539. headphones: {
  25540. height: math.unit(0.85, "feet"),
  25541. name: "Headphones",
  25542. image: {
  25543. source: "./media/characters/purple-flame/headphones.svg"
  25544. }
  25545. },
  25546. },
  25547. [
  25548. {
  25549. name: "Really Small",
  25550. height: math.unit(5, "cm")
  25551. },
  25552. {
  25553. name: "Micro",
  25554. height: math.unit(1 + 5/12, "feet")
  25555. },
  25556. {
  25557. name: "Normal",
  25558. height: math.unit(3 + 5/12, "feet"),
  25559. default: true
  25560. },
  25561. {
  25562. name: "Minimacro",
  25563. height: math.unit(125, "feet")
  25564. },
  25565. {
  25566. name: "Macro",
  25567. height: math.unit(0.5, "miles")
  25568. },
  25569. {
  25570. name: "Megamacro",
  25571. height: math.unit(50, "miles")
  25572. },
  25573. {
  25574. name: "Gigantic",
  25575. height: math.unit(750, "miles")
  25576. },
  25577. {
  25578. name: "Planetary",
  25579. height: math.unit(15000, "miles")
  25580. },
  25581. ]
  25582. ))
  25583. characterMakers.push(() => makeCharacter(
  25584. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25585. {
  25586. front: {
  25587. height: math.unit(14, "feet"),
  25588. weight: math.unit(959, "lb"),
  25589. name: "Front",
  25590. image: {
  25591. source: "./media/characters/arsenal/front.svg",
  25592. extra: 2357/2157,
  25593. bottom: 93/2458
  25594. }
  25595. },
  25596. },
  25597. [
  25598. {
  25599. name: "Normal",
  25600. height: math.unit(14, "feet"),
  25601. default: true
  25602. },
  25603. ]
  25604. ))
  25605. characterMakers.push(() => makeCharacter(
  25606. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25607. {
  25608. front: {
  25609. height: math.unit(6, "feet"),
  25610. weight: math.unit(150, "lb"),
  25611. name: "Front",
  25612. image: {
  25613. source: "./media/characters/adira/front.svg",
  25614. extra: 1078/1029,
  25615. bottom: 87/1166
  25616. }
  25617. },
  25618. },
  25619. [
  25620. {
  25621. name: "Micro",
  25622. height: math.unit(4, "inches"),
  25623. default: true
  25624. },
  25625. {
  25626. name: "Macro",
  25627. height: math.unit(50, "feet")
  25628. },
  25629. ]
  25630. ))
  25631. characterMakers.push(() => makeCharacter(
  25632. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25633. {
  25634. front: {
  25635. height: math.unit(16, "feet"),
  25636. weight: math.unit(1000, "lb"),
  25637. name: "Front",
  25638. image: {
  25639. source: "./media/characters/grim/front.svg",
  25640. extra: 622/614,
  25641. bottom: 18.1/642
  25642. }
  25643. },
  25644. back: {
  25645. height: math.unit(16, "feet"),
  25646. weight: math.unit(1000, "lb"),
  25647. name: "Back",
  25648. image: {
  25649. source: "./media/characters/grim/back.svg",
  25650. extra: 610.6/602,
  25651. bottom: 40.8/652
  25652. }
  25653. },
  25654. hunched: {
  25655. height: math.unit(9.75, "feet"),
  25656. weight: math.unit(1000, "lb"),
  25657. name: "Hunched",
  25658. image: {
  25659. source: "./media/characters/grim/hunched.svg",
  25660. extra: 304/297,
  25661. bottom: 35.4/394
  25662. }
  25663. },
  25664. },
  25665. [
  25666. {
  25667. name: "Normal",
  25668. height: math.unit(16, "feet"),
  25669. default: true
  25670. },
  25671. ]
  25672. ))
  25673. characterMakers.push(() => makeCharacter(
  25674. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25675. {
  25676. front: {
  25677. height: math.unit(2.3, "meters"),
  25678. weight: math.unit(300, "lb"),
  25679. name: "Front",
  25680. image: {
  25681. source: "./media/characters/sinja/front-sfw.svg",
  25682. extra: 1393/1294,
  25683. bottom: 70/1463
  25684. }
  25685. },
  25686. frontNsfw: {
  25687. height: math.unit(2.3, "meters"),
  25688. weight: math.unit(300, "lb"),
  25689. name: "Front (NSFW)",
  25690. image: {
  25691. source: "./media/characters/sinja/front-nsfw.svg",
  25692. extra: 1393/1294,
  25693. bottom: 70/1463
  25694. }
  25695. },
  25696. back: {
  25697. height: math.unit(2.3, "meters"),
  25698. weight: math.unit(300, "lb"),
  25699. name: "Back",
  25700. image: {
  25701. source: "./media/characters/sinja/back.svg",
  25702. extra: 1393/1294,
  25703. bottom: 70/1463
  25704. }
  25705. },
  25706. head: {
  25707. height: math.unit(1.771, "feet"),
  25708. name: "Head",
  25709. image: {
  25710. source: "./media/characters/sinja/head.svg"
  25711. }
  25712. },
  25713. slit: {
  25714. height: math.unit(0.8, "feet"),
  25715. name: "Slit",
  25716. image: {
  25717. source: "./media/characters/sinja/slit.svg"
  25718. }
  25719. },
  25720. },
  25721. [
  25722. {
  25723. name: "Normal",
  25724. height: math.unit(2.3, "meters")
  25725. },
  25726. {
  25727. name: "Macro",
  25728. height: math.unit(91, "meters"),
  25729. default: true
  25730. },
  25731. {
  25732. name: "Megamacro",
  25733. height: math.unit(91440, "meters")
  25734. },
  25735. {
  25736. name: "Gigamacro",
  25737. height: math.unit(60960000, "meters")
  25738. },
  25739. {
  25740. name: "Teramacro",
  25741. height: math.unit(9144000000, "meters")
  25742. },
  25743. ]
  25744. ))
  25745. characterMakers.push(() => makeCharacter(
  25746. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25747. {
  25748. front: {
  25749. height: math.unit(1.7, "meters"),
  25750. weight: math.unit(130, "lb"),
  25751. name: "Front",
  25752. image: {
  25753. source: "./media/characters/kyu/front.svg",
  25754. extra: 415/395,
  25755. bottom: 5/420
  25756. }
  25757. },
  25758. head: {
  25759. height: math.unit(1.75, "feet"),
  25760. name: "Head",
  25761. image: {
  25762. source: "./media/characters/kyu/head.svg"
  25763. }
  25764. },
  25765. foot: {
  25766. height: math.unit(0.81, "feet"),
  25767. name: "Foot",
  25768. image: {
  25769. source: "./media/characters/kyu/foot.svg"
  25770. }
  25771. },
  25772. },
  25773. [
  25774. {
  25775. name: "Normal",
  25776. height: math.unit(1.7, "meters")
  25777. },
  25778. {
  25779. name: "Macro",
  25780. height: math.unit(131, "feet"),
  25781. default: true
  25782. },
  25783. {
  25784. name: "Megamacro",
  25785. height: math.unit(91440, "meters")
  25786. },
  25787. {
  25788. name: "Gigamacro",
  25789. height: math.unit(60960000, "meters")
  25790. },
  25791. {
  25792. name: "Teramacro",
  25793. height: math.unit(9144000000, "meters")
  25794. },
  25795. ]
  25796. ))
  25797. //characters
  25798. function makeCharacters() {
  25799. const results = [];
  25800. characterMakers.forEach(character => {
  25801. results.push(character());
  25802. });
  25803. return results;
  25804. }