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.
 
 
 

27975 lines
697 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. }
  1328. //species
  1329. function getSpeciesInfo(speciesList) {
  1330. let result = new Set();
  1331. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1332. result.add(entry)
  1333. });
  1334. return Array.from(result);
  1335. };
  1336. function getSpeciesInfoHelper(species) {
  1337. if (!speciesData[species]) {
  1338. console.warn(species + " doesn't exist");
  1339. return [];
  1340. }
  1341. if (speciesData[species].parents) {
  1342. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1343. } else {
  1344. return [species];
  1345. }
  1346. }
  1347. characterMakers.push(() => makeCharacter(
  1348. {
  1349. name: "Fen",
  1350. species: ["crux"],
  1351. description: {
  1352. title: "Bio",
  1353. text: "Very furry. Sheds on everything."
  1354. },
  1355. tags: [
  1356. "anthro",
  1357. "goo"
  1358. ]
  1359. },
  1360. {
  1361. back: {
  1362. height: math.unit(2.2428, "meter"),
  1363. weight: math.unit(124.738, "kg"),
  1364. name: "Back",
  1365. image: {
  1366. source: "./media/characters/fen/back.svg",
  1367. extra: 1025 / 935,
  1368. bottom: 0.01
  1369. },
  1370. info: {
  1371. description: {
  1372. mode: "append",
  1373. text: "\n\nHe is not currently looking at you."
  1374. }
  1375. }
  1376. },
  1377. full: {
  1378. height: math.unit(1.34, "meter"),
  1379. weight: math.unit(225, "kg"),
  1380. name: "Full",
  1381. image: {
  1382. source: "./media/characters/fen/full.svg"
  1383. },
  1384. info: {
  1385. description: {
  1386. mode: "append",
  1387. text: "\n\nMunch."
  1388. }
  1389. }
  1390. },
  1391. kneeling: {
  1392. height: math.unit(5.4, "feet"),
  1393. weight: math.unit(124.738, "kg"),
  1394. name: "Kneeling",
  1395. image: {
  1396. source: "./media/characters/fen/kneeling.svg",
  1397. extra: 563 / 507
  1398. }
  1399. },
  1400. goo: {
  1401. height: math.unit(2.8, "feet"),
  1402. weight: math.unit(125, "kg"),
  1403. capacity: math.unit(1, "people"),
  1404. name: "Goo",
  1405. image: {
  1406. source: "./media/characters/fen/goo.svg",
  1407. bottom: 116 / 613
  1408. }
  1409. },
  1410. lounging: {
  1411. height: math.unit(6.5, "feet"),
  1412. weight: math.unit(125, "kg"),
  1413. name: "Lounging",
  1414. image: {
  1415. source: "./media/characters/fen/lounging.svg"
  1416. }
  1417. },
  1418. },
  1419. [
  1420. {
  1421. name: "Normal",
  1422. height: math.unit(2.2428, "meter")
  1423. },
  1424. {
  1425. name: "Big",
  1426. height: math.unit(12, "feet")
  1427. },
  1428. {
  1429. name: "Minimacro",
  1430. height: math.unit(40, "feet"),
  1431. default: true,
  1432. info: {
  1433. description: {
  1434. mode: "append",
  1435. text: "\n\nTOO DAMN BIG"
  1436. }
  1437. }
  1438. },
  1439. {
  1440. name: "Macro",
  1441. height: math.unit(100, "feet"),
  1442. info: {
  1443. description: {
  1444. mode: "append",
  1445. text: "\n\nTOO DAMN BIG"
  1446. }
  1447. }
  1448. },
  1449. {
  1450. name: "Macro+",
  1451. height: math.unit(300, "feet")
  1452. },
  1453. {
  1454. name: "Megamacro",
  1455. height: math.unit(2, "miles")
  1456. }
  1457. ]
  1458. ))
  1459. characterMakers.push(() => makeCharacter(
  1460. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1461. {
  1462. front: {
  1463. height: math.unit(183, "cm"),
  1464. weight: math.unit(80, "kg"),
  1465. name: "Front",
  1466. image: {
  1467. source: "./media/characters/sofia-fluttertail/front.svg",
  1468. bottom: 0.01,
  1469. extra: 2154 / 2081
  1470. }
  1471. },
  1472. frontAlt: {
  1473. height: math.unit(183, "cm"),
  1474. weight: math.unit(80, "kg"),
  1475. name: "Front (alt)",
  1476. image: {
  1477. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1478. }
  1479. },
  1480. back: {
  1481. height: math.unit(183, "cm"),
  1482. weight: math.unit(80, "kg"),
  1483. name: "Back",
  1484. image: {
  1485. source: "./media/characters/sofia-fluttertail/back.svg"
  1486. }
  1487. },
  1488. kneeling: {
  1489. height: math.unit(125, "cm"),
  1490. weight: math.unit(80, "kg"),
  1491. name: "Kneeling",
  1492. image: {
  1493. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1494. extra: 1033 / 977,
  1495. bottom: 23.7 / 1057
  1496. }
  1497. },
  1498. maw: {
  1499. height: math.unit(183 / 5, "cm"),
  1500. name: "Maw",
  1501. image: {
  1502. source: "./media/characters/sofia-fluttertail/maw.svg"
  1503. }
  1504. },
  1505. mawcloseup: {
  1506. height: math.unit(183 / 5 * 0.41, "cm"),
  1507. name: "Maw (Closeup)",
  1508. image: {
  1509. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1510. }
  1511. },
  1512. },
  1513. [
  1514. {
  1515. name: "Normal",
  1516. height: math.unit(1.83, "meter")
  1517. },
  1518. {
  1519. name: "Size Thief",
  1520. height: math.unit(18, "feet")
  1521. },
  1522. {
  1523. name: "50 Foot Collie",
  1524. height: math.unit(50, "feet")
  1525. },
  1526. {
  1527. name: "Macro",
  1528. height: math.unit(96, "feet"),
  1529. default: true
  1530. },
  1531. {
  1532. name: "Megamerger",
  1533. height: math.unit(650, "feet")
  1534. },
  1535. ]
  1536. ))
  1537. characterMakers.push(() => makeCharacter(
  1538. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1539. {
  1540. front: {
  1541. height: math.unit(7, "feet"),
  1542. weight: math.unit(100, "kg"),
  1543. name: "Front",
  1544. image: {
  1545. source: "./media/characters/march/front.svg",
  1546. extra: 1,
  1547. bottom: 0.015
  1548. }
  1549. },
  1550. foot: {
  1551. height: math.unit(0.9, "feet"),
  1552. name: "Foot",
  1553. image: {
  1554. source: "./media/characters/march/foot.svg"
  1555. }
  1556. },
  1557. },
  1558. [
  1559. {
  1560. name: "Normal",
  1561. height: math.unit(7.9, "feet")
  1562. },
  1563. {
  1564. name: "Macro",
  1565. height: math.unit(220, "meters")
  1566. },
  1567. {
  1568. name: "Megamacro",
  1569. height: math.unit(2.98, "km"),
  1570. default: true
  1571. },
  1572. {
  1573. name: "Gigamacro",
  1574. height: math.unit(15963, "km")
  1575. },
  1576. {
  1577. name: "Teramacro",
  1578. height: math.unit(2980000000, "km")
  1579. },
  1580. {
  1581. name: "Examacro",
  1582. height: math.unit(250, "parsecs")
  1583. },
  1584. ]
  1585. ))
  1586. characterMakers.push(() => makeCharacter(
  1587. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1588. {
  1589. front: {
  1590. height: math.unit(6, "feet"),
  1591. weight: math.unit(60, "kg"),
  1592. name: "Front",
  1593. image: {
  1594. source: "./media/characters/noir/front.svg",
  1595. extra: 1,
  1596. bottom: 0.032
  1597. }
  1598. },
  1599. },
  1600. [
  1601. {
  1602. name: "Normal",
  1603. height: math.unit(6.6, "feet")
  1604. },
  1605. {
  1606. name: "Macro",
  1607. height: math.unit(500, "feet")
  1608. },
  1609. {
  1610. name: "Megamacro",
  1611. height: math.unit(2.5, "km"),
  1612. default: true
  1613. },
  1614. {
  1615. name: "Gigamacro",
  1616. height: math.unit(22500, "km")
  1617. },
  1618. {
  1619. name: "Teramacro",
  1620. height: math.unit(2500000000, "km")
  1621. },
  1622. {
  1623. name: "Examacro",
  1624. height: math.unit(200, "parsecs")
  1625. },
  1626. ]
  1627. ))
  1628. characterMakers.push(() => makeCharacter(
  1629. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1630. {
  1631. front: {
  1632. height: math.unit(7, "feet"),
  1633. weight: math.unit(100, "kg"),
  1634. name: "Front",
  1635. image: {
  1636. source: "./media/characters/okuri/front.svg",
  1637. extra: 1,
  1638. bottom: 0.037
  1639. }
  1640. },
  1641. back: {
  1642. height: math.unit(7, "feet"),
  1643. weight: math.unit(100, "kg"),
  1644. name: "Back",
  1645. image: {
  1646. source: "./media/characters/okuri/back.svg",
  1647. extra: 1,
  1648. bottom: 0.007
  1649. }
  1650. },
  1651. },
  1652. [
  1653. {
  1654. name: "Megamacro",
  1655. height: math.unit(100, "miles"),
  1656. default: true
  1657. },
  1658. ]
  1659. ))
  1660. characterMakers.push(() => makeCharacter(
  1661. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1662. {
  1663. front: {
  1664. height: math.unit(7, "feet"),
  1665. weight: math.unit(100, "kg"),
  1666. name: "Front",
  1667. image: {
  1668. source: "./media/characters/manny/front.svg",
  1669. extra: 1,
  1670. bottom: 0.06
  1671. }
  1672. },
  1673. back: {
  1674. height: math.unit(7, "feet"),
  1675. weight: math.unit(100, "kg"),
  1676. name: "Back",
  1677. image: {
  1678. source: "./media/characters/manny/back.svg",
  1679. extra: 1,
  1680. bottom: 0.014
  1681. }
  1682. },
  1683. },
  1684. [
  1685. {
  1686. name: "Normal",
  1687. height: math.unit(7, "feet"),
  1688. },
  1689. {
  1690. name: "Macro",
  1691. height: math.unit(78, "feet"),
  1692. default: true
  1693. },
  1694. {
  1695. name: "Macro+",
  1696. height: math.unit(300, "meters")
  1697. },
  1698. {
  1699. name: "Macro++",
  1700. height: math.unit(2400, "meters")
  1701. },
  1702. {
  1703. name: "Megamacro",
  1704. height: math.unit(5167, "meters")
  1705. },
  1706. {
  1707. name: "Gigamacro",
  1708. height: math.unit(41769, "miles")
  1709. },
  1710. ]
  1711. ))
  1712. characterMakers.push(() => makeCharacter(
  1713. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1714. {
  1715. front: {
  1716. height: math.unit(7, "feet"),
  1717. weight: math.unit(100, "kg"),
  1718. name: "Front",
  1719. image: {
  1720. source: "./media/characters/adake/front-1.svg"
  1721. }
  1722. },
  1723. frontAlt: {
  1724. height: math.unit(7, "feet"),
  1725. weight: math.unit(100, "kg"),
  1726. name: "Front (Alt)",
  1727. image: {
  1728. source: "./media/characters/adake/front-2.svg",
  1729. extra: 1,
  1730. bottom: 0.01
  1731. }
  1732. },
  1733. back: {
  1734. height: math.unit(7, "feet"),
  1735. weight: math.unit(100, "kg"),
  1736. name: "Back",
  1737. image: {
  1738. source: "./media/characters/adake/back.svg",
  1739. }
  1740. },
  1741. kneel: {
  1742. height: math.unit(5.385, "feet"),
  1743. weight: math.unit(100, "kg"),
  1744. name: "Kneeling",
  1745. image: {
  1746. source: "./media/characters/adake/kneel.svg",
  1747. bottom: 0.052
  1748. }
  1749. },
  1750. },
  1751. [
  1752. {
  1753. name: "Normal",
  1754. height: math.unit(7, "feet"),
  1755. },
  1756. {
  1757. name: "Macro",
  1758. height: math.unit(78, "feet"),
  1759. default: true
  1760. },
  1761. {
  1762. name: "Macro+",
  1763. height: math.unit(300, "meters")
  1764. },
  1765. {
  1766. name: "Macro++",
  1767. height: math.unit(2400, "meters")
  1768. },
  1769. {
  1770. name: "Megamacro",
  1771. height: math.unit(5167, "meters")
  1772. },
  1773. {
  1774. name: "Gigamacro",
  1775. height: math.unit(41769, "miles")
  1776. },
  1777. ]
  1778. ))
  1779. characterMakers.push(() => makeCharacter(
  1780. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1781. {
  1782. front: {
  1783. height: math.unit(1.65, "meters"),
  1784. weight: math.unit(50, "kg"),
  1785. name: "Front",
  1786. image: {
  1787. source: "./media/characters/elijah/front.svg",
  1788. extra: 858 / 830,
  1789. bottom: 95.5 / 953.8559
  1790. }
  1791. },
  1792. back: {
  1793. height: math.unit(1.65, "meters"),
  1794. weight: math.unit(50, "kg"),
  1795. name: "Back",
  1796. image: {
  1797. source: "./media/characters/elijah/back.svg",
  1798. extra: 895 / 850,
  1799. bottom: 5.3 / 897.956
  1800. }
  1801. },
  1802. frontNsfw: {
  1803. height: math.unit(1.65, "meters"),
  1804. weight: math.unit(50, "kg"),
  1805. name: "Front (NSFW)",
  1806. image: {
  1807. source: "./media/characters/elijah/front-nsfw.svg",
  1808. extra: 858 / 830,
  1809. bottom: 95.5 / 953.8559
  1810. }
  1811. },
  1812. backNsfw: {
  1813. height: math.unit(1.65, "meters"),
  1814. weight: math.unit(50, "kg"),
  1815. name: "Back (NSFW)",
  1816. image: {
  1817. source: "./media/characters/elijah/back-nsfw.svg",
  1818. extra: 895 / 850,
  1819. bottom: 5.3 / 897.956
  1820. }
  1821. },
  1822. dick: {
  1823. height: math.unit(1, "feet"),
  1824. name: "Dick",
  1825. image: {
  1826. source: "./media/characters/elijah/dick.svg"
  1827. }
  1828. },
  1829. beakOpen: {
  1830. height: math.unit(1.25, "feet"),
  1831. name: "Beak (Open)",
  1832. image: {
  1833. source: "./media/characters/elijah/beak-open.svg"
  1834. }
  1835. },
  1836. beakShut: {
  1837. height: math.unit(1.25, "feet"),
  1838. name: "Beak (Shut)",
  1839. image: {
  1840. source: "./media/characters/elijah/beak-shut.svg"
  1841. }
  1842. },
  1843. footFlexing: {
  1844. height: math.unit(1.61, "feet"),
  1845. name: "Foot (Flexing)",
  1846. image: {
  1847. source: "./media/characters/elijah/foot-flexing.svg"
  1848. }
  1849. },
  1850. footStepping: {
  1851. height: math.unit(1.44, "feet"),
  1852. name: "Foot (Stepping)",
  1853. image: {
  1854. source: "./media/characters/elijah/foot-stepping.svg"
  1855. }
  1856. },
  1857. plantigradeLeg: {
  1858. height: math.unit(2.34, "feet"),
  1859. name: "Plantigrade Leg",
  1860. image: {
  1861. source: "./media/characters/elijah/plantigrade-leg.svg"
  1862. }
  1863. },
  1864. plantigradeFootLeft: {
  1865. height: math.unit(0.9, "feet"),
  1866. name: "Plantigrade Foot (Left)",
  1867. image: {
  1868. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1869. }
  1870. },
  1871. plantigradeFootRight: {
  1872. height: math.unit(0.9, "feet"),
  1873. name: "Plantigrade Foot (Right)",
  1874. image: {
  1875. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1876. }
  1877. },
  1878. },
  1879. [
  1880. {
  1881. name: "Normal",
  1882. height: math.unit(1.65, "meters")
  1883. },
  1884. {
  1885. name: "Macro",
  1886. height: math.unit(55, "meters"),
  1887. default: true
  1888. },
  1889. {
  1890. name: "Macro+",
  1891. height: math.unit(105, "meters")
  1892. },
  1893. ]
  1894. ))
  1895. characterMakers.push(() => makeCharacter(
  1896. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1897. {
  1898. front: {
  1899. height: math.unit(11, "feet"),
  1900. weight: math.unit(80, "kg"),
  1901. name: "Front",
  1902. image: {
  1903. source: "./media/characters/rai/front.svg",
  1904. extra: 1,
  1905. bottom: 0.03
  1906. }
  1907. },
  1908. side: {
  1909. height: math.unit(11, "feet"),
  1910. weight: math.unit(80, "kg"),
  1911. name: "Side",
  1912. image: {
  1913. source: "./media/characters/rai/side.svg"
  1914. }
  1915. },
  1916. back: {
  1917. height: math.unit(11, "feet"),
  1918. weight: math.unit(80, "lb"),
  1919. name: "Back",
  1920. image: {
  1921. source: "./media/characters/rai/back.svg",
  1922. extra: 1,
  1923. bottom: 0.01
  1924. }
  1925. },
  1926. feral: {
  1927. height: math.unit(11, "feet"),
  1928. weight: math.unit(800, "lb"),
  1929. name: "Feral",
  1930. image: {
  1931. source: "./media/characters/rai/feral.svg",
  1932. extra: 1050 / 659,
  1933. bottom: 0.07
  1934. }
  1935. },
  1936. dragon: {
  1937. height: math.unit(23, "feet"),
  1938. weight: math.unit(50000, "lb"),
  1939. name: "Dragon",
  1940. image: {
  1941. source: "./media/characters/rai/dragon.svg",
  1942. extra: 2498 / 2030,
  1943. bottom: 85.2 / 2584
  1944. }
  1945. },
  1946. maw: {
  1947. height: math.unit(6 / 3.81416, "feet"),
  1948. name: "Maw",
  1949. image: {
  1950. source: "./media/characters/rai/maw.svg"
  1951. }
  1952. },
  1953. },
  1954. [
  1955. {
  1956. name: "Normal",
  1957. height: math.unit(11, "feet")
  1958. },
  1959. {
  1960. name: "Macro",
  1961. height: math.unit(302, "feet"),
  1962. default: true
  1963. },
  1964. ]
  1965. ))
  1966. characterMakers.push(() => makeCharacter(
  1967. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1968. {
  1969. frontDressed: {
  1970. height: math.unit(216, "feet"),
  1971. weight: math.unit(7000000, "lb"),
  1972. name: "Front (Dressed)",
  1973. image: {
  1974. source: "./media/characters/jazzy/front-dressed.svg",
  1975. extra: 2738 / 2651,
  1976. bottom: 41.8 / 2786
  1977. }
  1978. },
  1979. backDressed: {
  1980. height: math.unit(216, "feet"),
  1981. weight: math.unit(7000000, "lb"),
  1982. name: "Back (Dressed)",
  1983. image: {
  1984. source: "./media/characters/jazzy/back-dressed.svg",
  1985. extra: 2775 / 2673,
  1986. bottom: 36.8 / 2817
  1987. }
  1988. },
  1989. front: {
  1990. height: math.unit(216, "feet"),
  1991. weight: math.unit(7000000, "lb"),
  1992. name: "Front",
  1993. image: {
  1994. source: "./media/characters/jazzy/front.svg",
  1995. extra: 2738 / 2651,
  1996. bottom: 41.8 / 2786
  1997. }
  1998. },
  1999. back: {
  2000. height: math.unit(216, "feet"),
  2001. weight: math.unit(7000000, "lb"),
  2002. name: "Back",
  2003. image: {
  2004. source: "./media/characters/jazzy/back.svg",
  2005. extra: 2775 / 2673,
  2006. bottom: 36.8 / 2817
  2007. }
  2008. },
  2009. maw: {
  2010. height: math.unit(20, "feet"),
  2011. name: "Maw",
  2012. image: {
  2013. source: "./media/characters/jazzy/maw.svg"
  2014. }
  2015. },
  2016. paws: {
  2017. height: math.unit(27.5, "feet"),
  2018. name: "Paws",
  2019. image: {
  2020. source: "./media/characters/jazzy/paws.svg"
  2021. }
  2022. },
  2023. eye: {
  2024. height: math.unit(4.4, "feet"),
  2025. name: "Eye",
  2026. image: {
  2027. source: "./media/characters/jazzy/eye.svg"
  2028. }
  2029. },
  2030. droneOffense: {
  2031. height: math.unit(9.5, "inches"),
  2032. name: "Drone (Offense)",
  2033. image: {
  2034. source: "./media/characters/jazzy/drone-offense.svg"
  2035. }
  2036. },
  2037. droneRecon: {
  2038. height: math.unit(9.5, "inches"),
  2039. name: "Drone (Recon)",
  2040. image: {
  2041. source: "./media/characters/jazzy/drone-recon.svg"
  2042. }
  2043. },
  2044. droneDefense: {
  2045. height: math.unit(9.5, "inches"),
  2046. name: "Drone (Defense)",
  2047. image: {
  2048. source: "./media/characters/jazzy/drone-defense.svg"
  2049. }
  2050. },
  2051. },
  2052. [
  2053. {
  2054. name: "Macro",
  2055. height: math.unit(216, "feet"),
  2056. default: true
  2057. },
  2058. ]
  2059. ))
  2060. characterMakers.push(() => makeCharacter(
  2061. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2062. {
  2063. front: {
  2064. height: math.unit(7, "feet"),
  2065. weight: math.unit(80, "kg"),
  2066. name: "Front",
  2067. image: {
  2068. source: "./media/characters/flamm/front.svg",
  2069. extra: 1794 / 1677,
  2070. bottom: 31.7 / 1828.5
  2071. }
  2072. },
  2073. },
  2074. [
  2075. {
  2076. name: "Normal",
  2077. height: math.unit(9.5, "feet")
  2078. },
  2079. {
  2080. name: "Macro",
  2081. height: math.unit(200, "feet"),
  2082. default: true
  2083. },
  2084. ]
  2085. ))
  2086. characterMakers.push(() => makeCharacter(
  2087. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2088. {
  2089. front: {
  2090. height: math.unit(7, "feet"),
  2091. weight: math.unit(80, "kg"),
  2092. name: "Front",
  2093. image: {
  2094. source: "./media/characters/zephiro/front.svg",
  2095. extra: 2309 / 2162,
  2096. bottom: 0.069
  2097. }
  2098. },
  2099. side: {
  2100. height: math.unit(7, "feet"),
  2101. weight: math.unit(80, "kg"),
  2102. name: "Side",
  2103. image: {
  2104. source: "./media/characters/zephiro/side.svg",
  2105. extra: 2403 / 2279,
  2106. bottom: 0.015
  2107. }
  2108. },
  2109. back: {
  2110. height: math.unit(7, "feet"),
  2111. weight: math.unit(80, "kg"),
  2112. name: "Back",
  2113. image: {
  2114. source: "./media/characters/zephiro/back.svg",
  2115. extra: 2373 / 2244,
  2116. bottom: 0.013
  2117. }
  2118. },
  2119. },
  2120. [
  2121. {
  2122. name: "Micro",
  2123. height: math.unit(3, "inches")
  2124. },
  2125. {
  2126. name: "Normal",
  2127. height: math.unit(5 + 3 / 12, "feet"),
  2128. default: true
  2129. },
  2130. {
  2131. name: "Macro",
  2132. height: math.unit(118, "feet")
  2133. },
  2134. ]
  2135. ))
  2136. characterMakers.push(() => makeCharacter(
  2137. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2138. {
  2139. front: {
  2140. height: math.unit(5, "feet"),
  2141. weight: math.unit(90, "kg"),
  2142. name: "Front",
  2143. image: {
  2144. source: "./media/characters/fory/front.svg",
  2145. extra: 2862 / 2674,
  2146. bottom: 180 / 3043.8
  2147. }
  2148. },
  2149. back: {
  2150. height: math.unit(5, "feet"),
  2151. weight: math.unit(90, "kg"),
  2152. name: "Back",
  2153. image: {
  2154. source: "./media/characters/fory/back.svg",
  2155. extra: 2962 / 2791,
  2156. bottom: 106 / 3071.8
  2157. }
  2158. },
  2159. foot: {
  2160. height: math.unit(2.14, "feet"),
  2161. name: "Foot",
  2162. image: {
  2163. source: "./media/characters/fory/foot.svg"
  2164. }
  2165. },
  2166. },
  2167. [
  2168. {
  2169. name: "Normal",
  2170. height: math.unit(5, "feet")
  2171. },
  2172. {
  2173. name: "Macro",
  2174. height: math.unit(50, "feet"),
  2175. default: true
  2176. },
  2177. {
  2178. name: "Megamacro",
  2179. height: math.unit(10, "miles")
  2180. },
  2181. {
  2182. name: "Gigamacro",
  2183. height: math.unit(5, "earths")
  2184. },
  2185. ]
  2186. ))
  2187. characterMakers.push(() => makeCharacter(
  2188. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2189. {
  2190. front: {
  2191. height: math.unit(7, "feet"),
  2192. weight: math.unit(90, "kg"),
  2193. name: "Front",
  2194. image: {
  2195. source: "./media/characters/kurrikage/front.svg",
  2196. extra: 1,
  2197. bottom: 0.035
  2198. }
  2199. },
  2200. back: {
  2201. height: math.unit(7, "feet"),
  2202. weight: math.unit(90, "lb"),
  2203. name: "Back",
  2204. image: {
  2205. source: "./media/characters/kurrikage/back.svg"
  2206. }
  2207. },
  2208. paw: {
  2209. height: math.unit(1.5, "feet"),
  2210. name: "Paw",
  2211. image: {
  2212. source: "./media/characters/kurrikage/paw.svg"
  2213. }
  2214. },
  2215. staff: {
  2216. height: math.unit(6.7, "feet"),
  2217. name: "Staff",
  2218. image: {
  2219. source: "./media/characters/kurrikage/staff.svg"
  2220. }
  2221. },
  2222. peek: {
  2223. height: math.unit(1.05, "feet"),
  2224. name: "Peeking",
  2225. image: {
  2226. source: "./media/characters/kurrikage/peek.svg",
  2227. bottom: 0.08
  2228. }
  2229. },
  2230. },
  2231. [
  2232. {
  2233. name: "Normal",
  2234. height: math.unit(12, "feet"),
  2235. default: true
  2236. },
  2237. {
  2238. name: "Big",
  2239. height: math.unit(20, "feet")
  2240. },
  2241. {
  2242. name: "Macro",
  2243. height: math.unit(500, "feet")
  2244. },
  2245. {
  2246. name: "Megamacro",
  2247. height: math.unit(20, "miles")
  2248. },
  2249. ]
  2250. ))
  2251. characterMakers.push(() => makeCharacter(
  2252. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2253. {
  2254. front: {
  2255. height: math.unit(6, "feet"),
  2256. weight: math.unit(75, "kg"),
  2257. name: "Front",
  2258. image: {
  2259. source: "./media/characters/shingo/front.svg",
  2260. extra: 3511 / 3338,
  2261. bottom: 0.005
  2262. }
  2263. },
  2264. paw: {
  2265. height: math.unit(1, "feet"),
  2266. name: "Paw",
  2267. image: {
  2268. source: "./media/characters/shingo/paw.svg"
  2269. }
  2270. },
  2271. },
  2272. [
  2273. {
  2274. name: "Micro",
  2275. height: math.unit(4, "inches")
  2276. },
  2277. {
  2278. name: "Normal",
  2279. height: math.unit(6, "feet"),
  2280. default: true
  2281. },
  2282. {
  2283. name: "Macro",
  2284. height: math.unit(108, "feet")
  2285. }
  2286. ]
  2287. ))
  2288. characterMakers.push(() => makeCharacter(
  2289. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2290. {
  2291. side: {
  2292. height: math.unit(6, "feet"),
  2293. weight: math.unit(75, "kg"),
  2294. name: "Side",
  2295. image: {
  2296. source: "./media/characters/aigey/side.svg"
  2297. }
  2298. },
  2299. },
  2300. [
  2301. {
  2302. name: "Macro",
  2303. height: math.unit(200, "feet"),
  2304. default: true
  2305. },
  2306. {
  2307. name: "Megamacro",
  2308. height: math.unit(100, "miles")
  2309. },
  2310. ]
  2311. )
  2312. )
  2313. characterMakers.push(() => makeCharacter(
  2314. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2315. {
  2316. front: {
  2317. height: math.unit(5 + 5 / 12, "feet"),
  2318. weight: math.unit(75, "kg"),
  2319. name: "Front",
  2320. image: {
  2321. source: "./media/characters/natasha/front.svg",
  2322. extra: 859 / 824,
  2323. bottom: 23 / 879.6
  2324. }
  2325. },
  2326. frontNsfw: {
  2327. height: math.unit(5 + 5 / 12, "feet"),
  2328. weight: math.unit(75, "kg"),
  2329. name: "Front (NSFW)",
  2330. image: {
  2331. source: "./media/characters/natasha/front-nsfw.svg",
  2332. extra: 859 / 824,
  2333. bottom: 23 / 879.6
  2334. }
  2335. },
  2336. frontErect: {
  2337. height: math.unit(5 + 5 / 12, "feet"),
  2338. weight: math.unit(75, "kg"),
  2339. name: "Front (Erect)",
  2340. image: {
  2341. source: "./media/characters/natasha/front-erect.svg",
  2342. extra: 859 / 824,
  2343. bottom: 23 / 879.6
  2344. }
  2345. },
  2346. back: {
  2347. height: math.unit(5 + 5 / 12, "feet"),
  2348. weight: math.unit(75, "kg"),
  2349. name: "Back",
  2350. image: {
  2351. source: "./media/characters/natasha/back.svg",
  2352. extra: 887.9 / 852.6,
  2353. bottom: 9.7 / 896.4
  2354. }
  2355. },
  2356. backAlt: {
  2357. height: math.unit(5 + 5 / 12, "feet"),
  2358. weight: math.unit(75, "kg"),
  2359. name: "Back (Alt)",
  2360. image: {
  2361. source: "./media/characters/natasha/back-alt.svg",
  2362. extra: 1236.7 / 1192,
  2363. bottom: 22.3 / 1258.2
  2364. }
  2365. },
  2366. dick: {
  2367. height: math.unit(1.772, "feet"),
  2368. name: "Dick",
  2369. image: {
  2370. source: "./media/characters/natasha/dick.svg"
  2371. }
  2372. },
  2373. },
  2374. [
  2375. {
  2376. name: "Normal",
  2377. height: math.unit(5 + 5 / 12, "feet")
  2378. },
  2379. {
  2380. name: "Large",
  2381. height: math.unit(12, "feet")
  2382. },
  2383. {
  2384. name: "Macro",
  2385. height: math.unit(100, "feet"),
  2386. default: true
  2387. },
  2388. {
  2389. name: "Macro+",
  2390. height: math.unit(260, "feet")
  2391. },
  2392. {
  2393. name: "Macro++",
  2394. height: math.unit(1, "mile")
  2395. },
  2396. ]
  2397. ))
  2398. characterMakers.push(() => makeCharacter(
  2399. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2400. {
  2401. front: {
  2402. height: math.unit(6, "feet"),
  2403. weight: math.unit(75, "kg"),
  2404. name: "Front",
  2405. image: {
  2406. source: "./media/characters/malik/front.svg"
  2407. }
  2408. },
  2409. side: {
  2410. height: math.unit(6, "feet"),
  2411. weight: math.unit(75, "kg"),
  2412. name: "Side",
  2413. image: {
  2414. source: "./media/characters/malik/side.svg",
  2415. extra: 1.1539
  2416. }
  2417. },
  2418. back: {
  2419. height: math.unit(6, "feet"),
  2420. weight: math.unit(75, "kg"),
  2421. name: "Back",
  2422. image: {
  2423. source: "./media/characters/malik/back.svg"
  2424. }
  2425. },
  2426. },
  2427. [
  2428. {
  2429. name: "Macro",
  2430. height: math.unit(156, "feet"),
  2431. default: true
  2432. },
  2433. {
  2434. name: "Macro+",
  2435. height: math.unit(1188, "feet")
  2436. },
  2437. ]
  2438. ))
  2439. characterMakers.push(() => makeCharacter(
  2440. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2441. {
  2442. front: {
  2443. height: math.unit(6, "feet"),
  2444. weight: math.unit(75, "kg"),
  2445. name: "Front",
  2446. image: {
  2447. source: "./media/characters/sefer/front.svg",
  2448. extra: 848 / 659,
  2449. bottom: 28.3 / 876.442
  2450. }
  2451. },
  2452. back: {
  2453. height: math.unit(6, "feet"),
  2454. weight: math.unit(75, "kg"),
  2455. name: "Back",
  2456. image: {
  2457. source: "./media/characters/sefer/back.svg",
  2458. extra: 864 / 695,
  2459. bottom: 10 / 871
  2460. }
  2461. },
  2462. frontDressed: {
  2463. height: math.unit(6, "feet"),
  2464. weight: math.unit(75, "kg"),
  2465. name: "Front (Dressed)",
  2466. image: {
  2467. source: "./media/characters/sefer/front-dressed.svg",
  2468. extra: 839 / 653,
  2469. bottom: 37.6 / 878
  2470. }
  2471. },
  2472. },
  2473. [
  2474. {
  2475. name: "Normal",
  2476. height: math.unit(6, "feet"),
  2477. default: true
  2478. },
  2479. ]
  2480. ))
  2481. characterMakers.push(() => makeCharacter(
  2482. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2483. {
  2484. body: {
  2485. height: math.unit(2.2428, "meter"),
  2486. weight: math.unit(124.738, "kg"),
  2487. name: "Body",
  2488. image: {
  2489. extra: 1225 / 1050,
  2490. source: "./media/characters/north/front.svg"
  2491. }
  2492. }
  2493. },
  2494. [
  2495. {
  2496. name: "Micro",
  2497. height: math.unit(4, "inches")
  2498. },
  2499. {
  2500. name: "Macro",
  2501. height: math.unit(63, "meters")
  2502. },
  2503. {
  2504. name: "Megamacro",
  2505. height: math.unit(101, "miles"),
  2506. default: true
  2507. }
  2508. ]
  2509. ))
  2510. characterMakers.push(() => makeCharacter(
  2511. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2512. {
  2513. angled: {
  2514. height: math.unit(4, "meter"),
  2515. weight: math.unit(150, "kg"),
  2516. name: "Angled",
  2517. image: {
  2518. source: "./media/characters/talan/angled-sfw.svg",
  2519. bottom: 29 / 3734
  2520. }
  2521. },
  2522. angledNsfw: {
  2523. height: math.unit(4, "meter"),
  2524. weight: math.unit(150, "kg"),
  2525. name: "Angled (NSFW)",
  2526. image: {
  2527. source: "./media/characters/talan/angled-nsfw.svg",
  2528. bottom: 29 / 3734
  2529. }
  2530. },
  2531. frontNsfw: {
  2532. height: math.unit(4, "meter"),
  2533. weight: math.unit(150, "kg"),
  2534. name: "Front (NSFW)",
  2535. image: {
  2536. source: "./media/characters/talan/front-nsfw.svg",
  2537. bottom: 29 / 3734
  2538. }
  2539. },
  2540. sideNsfw: {
  2541. height: math.unit(4, "meter"),
  2542. weight: math.unit(150, "kg"),
  2543. name: "Side (NSFW)",
  2544. image: {
  2545. source: "./media/characters/talan/side-nsfw.svg",
  2546. bottom: 29 / 3734
  2547. }
  2548. },
  2549. back: {
  2550. height: math.unit(4, "meter"),
  2551. weight: math.unit(150, "kg"),
  2552. name: "Back",
  2553. image: {
  2554. source: "./media/characters/talan/back.svg"
  2555. }
  2556. },
  2557. dickBottom: {
  2558. height: math.unit(0.621, "meter"),
  2559. name: "Dick (Bottom)",
  2560. image: {
  2561. source: "./media/characters/talan/dick-bottom.svg"
  2562. }
  2563. },
  2564. dickTop: {
  2565. height: math.unit(0.621, "meter"),
  2566. name: "Dick (Top)",
  2567. image: {
  2568. source: "./media/characters/talan/dick-top.svg"
  2569. }
  2570. },
  2571. dickSide: {
  2572. height: math.unit(0.305, "meter"),
  2573. name: "Dick (Side)",
  2574. image: {
  2575. source: "./media/characters/talan/dick-side.svg"
  2576. }
  2577. },
  2578. dickFront: {
  2579. height: math.unit(0.305, "meter"),
  2580. name: "Dick (Front)",
  2581. image: {
  2582. source: "./media/characters/talan/dick-front.svg"
  2583. }
  2584. },
  2585. },
  2586. [
  2587. {
  2588. name: "Normal",
  2589. height: math.unit(4, "meters")
  2590. },
  2591. {
  2592. name: "Macro",
  2593. height: math.unit(100, "meters")
  2594. },
  2595. {
  2596. name: "Megamacro",
  2597. height: math.unit(2, "miles"),
  2598. default: true
  2599. },
  2600. {
  2601. name: "Gigamacro",
  2602. height: math.unit(5000, "miles")
  2603. },
  2604. {
  2605. name: "Teramacro",
  2606. height: math.unit(100, "parsecs")
  2607. }
  2608. ]
  2609. ))
  2610. characterMakers.push(() => makeCharacter(
  2611. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2612. {
  2613. front: {
  2614. height: math.unit(2, "meter"),
  2615. weight: math.unit(90, "kg"),
  2616. name: "Front",
  2617. image: {
  2618. source: "./media/characters/gael'rathus/front.svg"
  2619. }
  2620. },
  2621. frontAlt: {
  2622. height: math.unit(2, "meter"),
  2623. weight: math.unit(90, "kg"),
  2624. name: "Front (alt)",
  2625. image: {
  2626. source: "./media/characters/gael'rathus/front-alt.svg"
  2627. }
  2628. },
  2629. frontAlt2: {
  2630. height: math.unit(2, "meter"),
  2631. weight: math.unit(90, "kg"),
  2632. name: "Front (alt 2)",
  2633. image: {
  2634. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2635. }
  2636. }
  2637. },
  2638. [
  2639. {
  2640. name: "Normal",
  2641. height: math.unit(9, "feet"),
  2642. default: true
  2643. },
  2644. {
  2645. name: "Large",
  2646. height: math.unit(25, "feet")
  2647. },
  2648. {
  2649. name: "Macro",
  2650. height: math.unit(0.25, "miles")
  2651. },
  2652. {
  2653. name: "Megamacro",
  2654. height: math.unit(10, "miles")
  2655. }
  2656. ]
  2657. ))
  2658. characterMakers.push(() => makeCharacter(
  2659. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2660. {
  2661. side: {
  2662. height: math.unit(2, "meter"),
  2663. weight: math.unit(140, "kg"),
  2664. name: "Side",
  2665. image: {
  2666. source: "./media/characters/sosha/side.svg",
  2667. bottom: 0.042
  2668. }
  2669. },
  2670. },
  2671. [
  2672. {
  2673. name: "Normal",
  2674. height: math.unit(12, "feet"),
  2675. default: true
  2676. }
  2677. ]
  2678. ))
  2679. characterMakers.push(() => makeCharacter(
  2680. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2681. {
  2682. side: {
  2683. height: math.unit(5 + 5 / 12, "feet"),
  2684. weight: math.unit(170, "kg"),
  2685. name: "Side",
  2686. image: {
  2687. source: "./media/characters/runnola/side.svg",
  2688. extra: 741 / 448,
  2689. bottom: 0.05
  2690. }
  2691. },
  2692. },
  2693. [
  2694. {
  2695. name: "Small",
  2696. height: math.unit(3, "feet")
  2697. },
  2698. {
  2699. name: "Normal",
  2700. height: math.unit(5 + 5 / 12, "feet"),
  2701. default: true
  2702. },
  2703. {
  2704. name: "Big",
  2705. height: math.unit(10, "feet")
  2706. },
  2707. ]
  2708. ))
  2709. characterMakers.push(() => makeCharacter(
  2710. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2711. {
  2712. front: {
  2713. height: math.unit(2, "meter"),
  2714. weight: math.unit(50, "kg"),
  2715. name: "Front",
  2716. image: {
  2717. source: "./media/characters/kurribird/front.svg",
  2718. bottom: 0.015
  2719. }
  2720. },
  2721. frontAlt: {
  2722. height: math.unit(1.5, "meter"),
  2723. weight: math.unit(50, "kg"),
  2724. name: "Front (Alt)",
  2725. image: {
  2726. source: "./media/characters/kurribird/front-alt.svg",
  2727. extra: 1.45
  2728. }
  2729. },
  2730. },
  2731. [
  2732. {
  2733. name: "Normal",
  2734. height: math.unit(7, "feet")
  2735. },
  2736. {
  2737. name: "Big",
  2738. height: math.unit(12, "feet"),
  2739. default: true
  2740. },
  2741. {
  2742. name: "Macro",
  2743. height: math.unit(1500, "feet")
  2744. },
  2745. {
  2746. name: "Megamacro",
  2747. height: math.unit(2, "miles")
  2748. }
  2749. ]
  2750. ))
  2751. characterMakers.push(() => makeCharacter(
  2752. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2753. {
  2754. front: {
  2755. height: math.unit(2, "meter"),
  2756. weight: math.unit(80, "kg"),
  2757. name: "Front",
  2758. image: {
  2759. source: "./media/characters/elbial/front.svg",
  2760. extra: 1643 / 1556,
  2761. bottom: 60.2 / 1696
  2762. }
  2763. },
  2764. side: {
  2765. height: math.unit(2, "meter"),
  2766. weight: math.unit(80, "kg"),
  2767. name: "Side",
  2768. image: {
  2769. source: "./media/characters/elbial/side.svg",
  2770. extra: 1630 / 1565,
  2771. bottom: 71.5 / 1697
  2772. }
  2773. },
  2774. back: {
  2775. height: math.unit(2, "meter"),
  2776. weight: math.unit(80, "kg"),
  2777. name: "Back",
  2778. image: {
  2779. source: "./media/characters/elbial/back.svg",
  2780. extra: 1668 / 1595,
  2781. bottom: 5.6 / 1672
  2782. }
  2783. },
  2784. frontDressed: {
  2785. height: math.unit(2, "meter"),
  2786. weight: math.unit(80, "kg"),
  2787. name: "Front (Dressed)",
  2788. image: {
  2789. source: "./media/characters/elbial/front-dressed.svg",
  2790. extra: 1653 / 1584,
  2791. bottom: 57 / 1708
  2792. }
  2793. },
  2794. genitals: {
  2795. height: math.unit(2 / 3.367, "meter"),
  2796. name: "Genitals",
  2797. image: {
  2798. source: "./media/characters/elbial/genitals.svg"
  2799. }
  2800. },
  2801. },
  2802. [
  2803. {
  2804. name: "Large",
  2805. height: math.unit(100, "feet")
  2806. },
  2807. {
  2808. name: "Macro",
  2809. height: math.unit(500, "feet"),
  2810. default: true
  2811. },
  2812. {
  2813. name: "Megamacro",
  2814. height: math.unit(10, "miles")
  2815. },
  2816. {
  2817. name: "Gigamacro",
  2818. height: math.unit(25000, "miles")
  2819. },
  2820. {
  2821. name: "Full-Size",
  2822. height: math.unit(8000000, "gigaparsecs")
  2823. }
  2824. ]
  2825. ))
  2826. characterMakers.push(() => makeCharacter(
  2827. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2828. {
  2829. front: {
  2830. height: math.unit(2, "meter"),
  2831. weight: math.unit(60, "kg"),
  2832. name: "Front",
  2833. image: {
  2834. source: "./media/characters/noah/front.svg"
  2835. }
  2836. },
  2837. talons: {
  2838. height: math.unit(0.315, "meter"),
  2839. name: "Talons",
  2840. image: {
  2841. source: "./media/characters/noah/talons.svg"
  2842. }
  2843. }
  2844. },
  2845. [
  2846. {
  2847. name: "Large",
  2848. height: math.unit(50, "feet")
  2849. },
  2850. {
  2851. name: "Macro",
  2852. height: math.unit(750, "feet"),
  2853. default: true
  2854. },
  2855. {
  2856. name: "Megamacro",
  2857. height: math.unit(50, "miles")
  2858. },
  2859. {
  2860. name: "Gigamacro",
  2861. height: math.unit(100000, "miles")
  2862. },
  2863. {
  2864. name: "Full-Size",
  2865. height: math.unit(3000000000, "miles")
  2866. }
  2867. ]
  2868. ))
  2869. characterMakers.push(() => makeCharacter(
  2870. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2871. {
  2872. front: {
  2873. height: math.unit(2, "meter"),
  2874. weight: math.unit(80, "kg"),
  2875. name: "Front",
  2876. image: {
  2877. source: "./media/characters/natalya/front.svg"
  2878. }
  2879. },
  2880. back: {
  2881. height: math.unit(2, "meter"),
  2882. weight: math.unit(80, "kg"),
  2883. name: "Back",
  2884. image: {
  2885. source: "./media/characters/natalya/back.svg"
  2886. }
  2887. }
  2888. },
  2889. [
  2890. {
  2891. name: "Normal",
  2892. height: math.unit(150, "feet"),
  2893. default: true
  2894. },
  2895. {
  2896. name: "Megamacro",
  2897. height: math.unit(5, "miles")
  2898. },
  2899. {
  2900. name: "Full-Size",
  2901. height: math.unit(600, "kiloparsecs")
  2902. }
  2903. ]
  2904. ))
  2905. characterMakers.push(() => makeCharacter(
  2906. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2907. {
  2908. front: {
  2909. height: math.unit(2, "meter"),
  2910. weight: math.unit(50, "kg"),
  2911. name: "Front",
  2912. image: {
  2913. source: "./media/characters/erestrebah/front.svg",
  2914. extra: 208 / 193,
  2915. bottom: 0.055
  2916. }
  2917. },
  2918. back: {
  2919. height: math.unit(2, "meter"),
  2920. weight: math.unit(50, "kg"),
  2921. name: "Back",
  2922. image: {
  2923. source: "./media/characters/erestrebah/back.svg",
  2924. extra: 1.3
  2925. }
  2926. }
  2927. },
  2928. [
  2929. {
  2930. name: "Normal",
  2931. height: math.unit(10, "feet")
  2932. },
  2933. {
  2934. name: "Large",
  2935. height: math.unit(50, "feet"),
  2936. default: true
  2937. },
  2938. {
  2939. name: "Macro",
  2940. height: math.unit(300, "feet")
  2941. },
  2942. {
  2943. name: "Macro+",
  2944. height: math.unit(750, "feet")
  2945. },
  2946. {
  2947. name: "Megamacro",
  2948. height: math.unit(3, "miles")
  2949. }
  2950. ]
  2951. ))
  2952. characterMakers.push(() => makeCharacter(
  2953. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2954. {
  2955. front: {
  2956. height: math.unit(2, "meter"),
  2957. weight: math.unit(80, "kg"),
  2958. name: "Front",
  2959. image: {
  2960. source: "./media/characters/jennifer/front.svg",
  2961. bottom: 0.11,
  2962. extra: 1.16
  2963. }
  2964. },
  2965. frontAlt: {
  2966. height: math.unit(2, "meter"),
  2967. weight: math.unit(80, "kg"),
  2968. name: "Front (Alt)",
  2969. image: {
  2970. source: "./media/characters/jennifer/front-alt.svg"
  2971. }
  2972. }
  2973. },
  2974. [
  2975. {
  2976. name: "Canon Height",
  2977. height: math.unit(120, "feet"),
  2978. default: true
  2979. },
  2980. {
  2981. name: "Macro+",
  2982. height: math.unit(300, "feet")
  2983. },
  2984. {
  2985. name: "Megamacro",
  2986. height: math.unit(20000, "feet")
  2987. }
  2988. ]
  2989. ))
  2990. characterMakers.push(() => makeCharacter(
  2991. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2992. {
  2993. front: {
  2994. height: math.unit(2, "meter"),
  2995. weight: math.unit(50, "kg"),
  2996. name: "Front",
  2997. image: {
  2998. source: "./media/characters/kalista/front.svg",
  2999. extra: 1947 / 1700,
  3000. bottom: 76.6 / 1412.98
  3001. }
  3002. },
  3003. back: {
  3004. height: math.unit(2, "meter"),
  3005. weight: math.unit(50, "kg"),
  3006. name: "Back",
  3007. image: {
  3008. source: "./media/characters/kalista/back.svg",
  3009. extra: 1366 / 1156,
  3010. bottom: 33.9 / 1362.78
  3011. }
  3012. }
  3013. },
  3014. [
  3015. {
  3016. name: "Uncomfortably Small",
  3017. height: math.unit(10, "feet")
  3018. },
  3019. {
  3020. name: "Small",
  3021. height: math.unit(30, "feet")
  3022. },
  3023. {
  3024. name: "Macro",
  3025. height: math.unit(100, "feet"),
  3026. default: true
  3027. },
  3028. {
  3029. name: "Macro+",
  3030. height: math.unit(2000, "feet")
  3031. },
  3032. {
  3033. name: "True Form",
  3034. height: math.unit(8924, "miles")
  3035. }
  3036. ]
  3037. ))
  3038. characterMakers.push(() => makeCharacter(
  3039. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3040. {
  3041. front: {
  3042. height: math.unit(2, "meter"),
  3043. weight: math.unit(120, "kg"),
  3044. name: "Front",
  3045. image: {
  3046. source: "./media/characters/ggv/front.svg"
  3047. }
  3048. },
  3049. side: {
  3050. height: math.unit(2, "meter"),
  3051. weight: math.unit(120, "kg"),
  3052. name: "Side",
  3053. image: {
  3054. source: "./media/characters/ggv/side.svg"
  3055. }
  3056. }
  3057. },
  3058. [
  3059. {
  3060. name: "Extremely Puny",
  3061. height: math.unit(9 + 5 / 12, "feet")
  3062. },
  3063. {
  3064. name: "Horribly Small",
  3065. height: math.unit(47.7, "miles"),
  3066. default: true
  3067. },
  3068. {
  3069. name: "Reasonably Sized",
  3070. height: math.unit(25000, "parsecs")
  3071. },
  3072. {
  3073. name: "Slightly Uncompressed",
  3074. height: math.unit(7.77e31, "parsecs")
  3075. },
  3076. {
  3077. name: "Omniversal",
  3078. height: math.unit(1e300, "meters")
  3079. },
  3080. ]
  3081. ))
  3082. characterMakers.push(() => makeCharacter(
  3083. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3084. {
  3085. front: {
  3086. height: math.unit(2, "meter"),
  3087. weight: math.unit(75, "lb"),
  3088. name: "Front",
  3089. image: {
  3090. source: "./media/characters/napalm/front.svg"
  3091. }
  3092. },
  3093. back: {
  3094. height: math.unit(2, "meter"),
  3095. weight: math.unit(75, "lb"),
  3096. name: "Back",
  3097. image: {
  3098. source: "./media/characters/napalm/back.svg"
  3099. }
  3100. }
  3101. },
  3102. [
  3103. {
  3104. name: "Standard",
  3105. height: math.unit(55, "feet"),
  3106. default: true
  3107. }
  3108. ]
  3109. ))
  3110. characterMakers.push(() => makeCharacter(
  3111. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3112. {
  3113. front: {
  3114. height: math.unit(7 + 5 / 6, "feet"),
  3115. weight: math.unit(325, "lb"),
  3116. name: "Front",
  3117. image: {
  3118. source: "./media/characters/asana/front.svg",
  3119. extra: 1133 / 1060,
  3120. bottom: 15.2/1148.6
  3121. }
  3122. },
  3123. back: {
  3124. height: math.unit(7 + 5 / 6, "feet"),
  3125. weight: math.unit(325, "lb"),
  3126. name: "Back",
  3127. image: {
  3128. source: "./media/characters/asana/back.svg",
  3129. extra: 1114 / 1043,
  3130. bottom: 5/1120
  3131. }
  3132. },
  3133. dressedDark: {
  3134. height: math.unit(7 + 5 / 6, "feet"),
  3135. weight: math.unit(325, "lb"),
  3136. name: "Dressed (Dark)",
  3137. image: {
  3138. source: "./media/characters/asana/dressed-dark.svg",
  3139. extra: 1133 / 1060,
  3140. bottom: 15.2/1148.6
  3141. }
  3142. },
  3143. dressedLight: {
  3144. height: math.unit(7 + 5 / 6, "feet"),
  3145. weight: math.unit(325, "lb"),
  3146. name: "Dressed (Light)",
  3147. image: {
  3148. source: "./media/characters/asana/dressed-light.svg",
  3149. extra: 1133 / 1060,
  3150. bottom: 15.2/1148.6
  3151. }
  3152. },
  3153. },
  3154. [
  3155. {
  3156. name: "Standard",
  3157. height: math.unit(7 + 5 / 6, "feet"),
  3158. default: true
  3159. },
  3160. {
  3161. name: "Large",
  3162. height: math.unit(10, "meters")
  3163. },
  3164. {
  3165. name: "Macro",
  3166. height: math.unit(2500, "meters")
  3167. },
  3168. {
  3169. name: "Megamacro",
  3170. height: math.unit(5e6, "meters")
  3171. },
  3172. {
  3173. name: "Examacro",
  3174. height: math.unit(5e12, "lightyears")
  3175. },
  3176. {
  3177. name: "Max Size",
  3178. height: math.unit(1e31, "lightyears")
  3179. }
  3180. ]
  3181. ))
  3182. characterMakers.push(() => makeCharacter(
  3183. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3184. {
  3185. front: {
  3186. height: math.unit(2, "meter"),
  3187. weight: math.unit(60, "kg"),
  3188. name: "Front",
  3189. image: {
  3190. source: "./media/characters/ebony/front.svg",
  3191. bottom: 0.03,
  3192. extra: 1045 / 810 + 0.03
  3193. }
  3194. },
  3195. side: {
  3196. height: math.unit(2, "meter"),
  3197. weight: math.unit(60, "kg"),
  3198. name: "Side",
  3199. image: {
  3200. source: "./media/characters/ebony/side.svg",
  3201. bottom: 0.03,
  3202. extra: 1045 / 810 + 0.03
  3203. }
  3204. },
  3205. back: {
  3206. height: math.unit(2, "meter"),
  3207. weight: math.unit(60, "kg"),
  3208. name: "Back",
  3209. image: {
  3210. source: "./media/characters/ebony/back.svg",
  3211. bottom: 0.01,
  3212. extra: 1045 / 810 + 0.01
  3213. }
  3214. },
  3215. },
  3216. [
  3217. // TODO check why I did this lol
  3218. {
  3219. name: "Standard",
  3220. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3221. default: true
  3222. },
  3223. {
  3224. name: "Macro",
  3225. height: math.unit(200, "feet")
  3226. },
  3227. {
  3228. name: "Gigamacro",
  3229. height: math.unit(13000, "km")
  3230. }
  3231. ]
  3232. ))
  3233. characterMakers.push(() => makeCharacter(
  3234. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3235. {
  3236. front: {
  3237. height: math.unit(6, "feet"),
  3238. weight: math.unit(175, "lb"),
  3239. name: "Front",
  3240. image: {
  3241. source: "./media/characters/mountain/front.svg",
  3242. extra: 972/955,
  3243. bottom: 64/1036.6
  3244. }
  3245. },
  3246. back: {
  3247. height: math.unit(6, "feet"),
  3248. weight: math.unit(175, "lb"),
  3249. name: "Back",
  3250. image: {
  3251. source: "./media/characters/mountain/back.svg",
  3252. extra: 970/950,
  3253. bottom: 28.25/999
  3254. }
  3255. },
  3256. },
  3257. [
  3258. {
  3259. name: "Large",
  3260. height: math.unit(20, "meters")
  3261. },
  3262. {
  3263. name: "Macro",
  3264. height: math.unit(300, "meters")
  3265. },
  3266. {
  3267. name: "Gigamacro",
  3268. height: math.unit(10000, "km"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Examacro",
  3273. height: math.unit(10e9, "lightyears")
  3274. }
  3275. ]
  3276. ))
  3277. characterMakers.push(() => makeCharacter(
  3278. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3279. {
  3280. front: {
  3281. height: math.unit(8, "feet"),
  3282. weight: math.unit(500, "lb"),
  3283. name: "Front",
  3284. image: {
  3285. source: "./media/characters/rick/front.svg"
  3286. }
  3287. }
  3288. },
  3289. [
  3290. {
  3291. name: "Normal",
  3292. height: math.unit(8, "feet"),
  3293. default: true
  3294. },
  3295. {
  3296. name: "Macro",
  3297. height: math.unit(5, "km")
  3298. }
  3299. ]
  3300. ))
  3301. characterMakers.push(() => makeCharacter(
  3302. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3303. {
  3304. front: {
  3305. height: math.unit(8, "feet"),
  3306. weight: math.unit(120, "lb"),
  3307. name: "Front",
  3308. image: {
  3309. source: "./media/characters/ona/front.svg"
  3310. }
  3311. },
  3312. frontAlt: {
  3313. height: math.unit(8, "feet"),
  3314. weight: math.unit(120, "lb"),
  3315. name: "Front (Alt)",
  3316. image: {
  3317. source: "./media/characters/ona/front-alt.svg"
  3318. }
  3319. },
  3320. back: {
  3321. height: math.unit(8, "feet"),
  3322. weight: math.unit(120, "lb"),
  3323. name: "Back",
  3324. image: {
  3325. source: "./media/characters/ona/back.svg"
  3326. }
  3327. },
  3328. foot: {
  3329. height: math.unit(1.1, "feet"),
  3330. name: "Foot",
  3331. image: {
  3332. source: "./media/characters/ona/foot.svg"
  3333. }
  3334. }
  3335. },
  3336. [
  3337. {
  3338. name: "Megamacro",
  3339. height: math.unit(70, "km"),
  3340. default: true
  3341. },
  3342. {
  3343. name: "Gigamacro",
  3344. height: math.unit(681818, "miles")
  3345. },
  3346. {
  3347. name: "Examacro",
  3348. height: math.unit(3800000, "lightyears")
  3349. },
  3350. ]
  3351. ))
  3352. characterMakers.push(() => makeCharacter(
  3353. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3354. {
  3355. front: {
  3356. height: math.unit(12, "feet"),
  3357. weight: math.unit(3000, "lb"),
  3358. name: "Front",
  3359. image: {
  3360. source: "./media/characters/mech/front.svg",
  3361. bottom: 0.025,
  3362. }
  3363. },
  3364. back: {
  3365. height: math.unit(12, "feet"),
  3366. weight: math.unit(3000, "lb"),
  3367. name: "Back",
  3368. image: {
  3369. source: "./media/characters/mech/back.svg",
  3370. bottom: 0.03,
  3371. }
  3372. }
  3373. },
  3374. [
  3375. {
  3376. name: "Normal",
  3377. height: math.unit(12, "feet")
  3378. },
  3379. {
  3380. name: "Macro",
  3381. height: math.unit(300, "feet"),
  3382. default: true
  3383. },
  3384. {
  3385. name: "Macro+",
  3386. height: math.unit(1500, "feet")
  3387. },
  3388. ]
  3389. ))
  3390. characterMakers.push(() => makeCharacter(
  3391. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3392. {
  3393. front: {
  3394. height: math.unit(1.3, "meter"),
  3395. weight: math.unit(30, "kg"),
  3396. name: "Front",
  3397. image: {
  3398. source: "./media/characters/gregory/front.svg",
  3399. }
  3400. }
  3401. },
  3402. [
  3403. {
  3404. name: "Normal",
  3405. height: math.unit(1.3, "meter"),
  3406. default: true
  3407. },
  3408. {
  3409. name: "Macro",
  3410. height: math.unit(20, "meter")
  3411. }
  3412. ]
  3413. ))
  3414. characterMakers.push(() => makeCharacter(
  3415. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3416. {
  3417. front: {
  3418. height: math.unit(2.8, "meter"),
  3419. weight: math.unit(200, "kg"),
  3420. name: "Front",
  3421. image: {
  3422. source: "./media/characters/elory/front.svg",
  3423. }
  3424. }
  3425. },
  3426. [
  3427. {
  3428. name: "Normal",
  3429. height: math.unit(2.8, "meter"),
  3430. default: true
  3431. },
  3432. {
  3433. name: "Macro",
  3434. height: math.unit(38, "meter")
  3435. }
  3436. ]
  3437. ))
  3438. characterMakers.push(() => makeCharacter(
  3439. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3440. {
  3441. front: {
  3442. height: math.unit(470, "feet"),
  3443. weight: math.unit(924, "tons"),
  3444. name: "Front",
  3445. image: {
  3446. source: "./media/characters/angelpatamon/front.svg",
  3447. }
  3448. }
  3449. },
  3450. [
  3451. {
  3452. name: "Normal",
  3453. height: math.unit(470, "feet"),
  3454. default: true
  3455. },
  3456. {
  3457. name: "Deity Size I",
  3458. height: math.unit(28651.2, "km")
  3459. },
  3460. {
  3461. name: "Deity Size II",
  3462. height: math.unit(171907.2, "km")
  3463. }
  3464. ]
  3465. ))
  3466. characterMakers.push(() => makeCharacter(
  3467. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3468. {
  3469. side: {
  3470. height: math.unit(7.2, "meter"),
  3471. weight: math.unit(8.2, "tons"),
  3472. name: "Side",
  3473. image: {
  3474. source: "./media/characters/cryae/side.svg",
  3475. extra: 3500 / 1500
  3476. }
  3477. }
  3478. },
  3479. [
  3480. {
  3481. name: "Normal",
  3482. height: math.unit(7.2, "meter"),
  3483. default: true
  3484. }
  3485. ]
  3486. ))
  3487. characterMakers.push(() => makeCharacter(
  3488. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3489. {
  3490. front: {
  3491. height: math.unit(6, "feet"),
  3492. weight: math.unit(175, "lb"),
  3493. name: "Front",
  3494. image: {
  3495. source: "./media/characters/xera/front.svg",
  3496. extra: 2377 / 1972,
  3497. bottom: 75.5/2452
  3498. }
  3499. },
  3500. side: {
  3501. height: math.unit(6, "feet"),
  3502. weight: math.unit(175, "lb"),
  3503. name: "Side",
  3504. image: {
  3505. source: "./media/characters/xera/side.svg",
  3506. extra: 2345/2019,
  3507. bottom: 39.7/2384
  3508. }
  3509. },
  3510. back: {
  3511. height: math.unit(6, "feet"),
  3512. weight: math.unit(175, "lb"),
  3513. name: "Back",
  3514. image: {
  3515. source: "./media/characters/xera/back.svg",
  3516. extra: 2095/1984,
  3517. bottom: 67/2166
  3518. }
  3519. },
  3520. },
  3521. [
  3522. {
  3523. name: "Small",
  3524. height: math.unit(10, "feet")
  3525. },
  3526. {
  3527. name: "Macro",
  3528. height: math.unit(500, "meters"),
  3529. default: true
  3530. },
  3531. {
  3532. name: "Macro+",
  3533. height: math.unit(10, "km")
  3534. },
  3535. {
  3536. name: "Gigamacro",
  3537. height: math.unit(25000, "km")
  3538. },
  3539. {
  3540. name: "Teramacro",
  3541. height: math.unit(3e6, "km")
  3542. }
  3543. ]
  3544. ))
  3545. characterMakers.push(() => makeCharacter(
  3546. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3547. {
  3548. front: {
  3549. height: math.unit(6, "feet"),
  3550. weight: math.unit(175, "lb"),
  3551. name: "Front",
  3552. image: {
  3553. source: "./media/characters/nebula/front.svg",
  3554. extra: 2566/2362,
  3555. bottom: 81/2644
  3556. }
  3557. }
  3558. },
  3559. [
  3560. {
  3561. name: "Small",
  3562. height: math.unit(4.5, "meters")
  3563. },
  3564. {
  3565. name: "Macro",
  3566. height: math.unit(1500, "meters"),
  3567. default: true
  3568. },
  3569. {
  3570. name: "Megamacro",
  3571. height: math.unit(150, "km")
  3572. },
  3573. {
  3574. name: "Gigamacro",
  3575. height: math.unit(27000, "km")
  3576. }
  3577. ]
  3578. ))
  3579. characterMakers.push(() => makeCharacter(
  3580. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3581. {
  3582. front: {
  3583. height: math.unit(6, "feet"),
  3584. weight: math.unit(225, "lb"),
  3585. name: "Front",
  3586. image: {
  3587. source: "./media/characters/abysgar/front.svg"
  3588. }
  3589. }
  3590. },
  3591. [
  3592. {
  3593. name: "Small",
  3594. height: math.unit(4.5, "meters")
  3595. },
  3596. {
  3597. name: "Macro",
  3598. height: math.unit(1250, "meters"),
  3599. default: true
  3600. },
  3601. {
  3602. name: "Megamacro",
  3603. height: math.unit(125, "km")
  3604. },
  3605. {
  3606. name: "Gigamacro",
  3607. height: math.unit(26000, "km")
  3608. }
  3609. ]
  3610. ))
  3611. characterMakers.push(() => makeCharacter(
  3612. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3613. {
  3614. front: {
  3615. height: math.unit(6, "feet"),
  3616. weight: math.unit(180, "lb"),
  3617. name: "Front",
  3618. image: {
  3619. source: "./media/characters/yakuz/front.svg"
  3620. }
  3621. }
  3622. },
  3623. [
  3624. {
  3625. name: "Small",
  3626. height: math.unit(5, "meters")
  3627. },
  3628. {
  3629. name: "Macro",
  3630. height: math.unit(1500, "meters"),
  3631. default: true
  3632. },
  3633. {
  3634. name: "Megamacro",
  3635. height: math.unit(200, "km")
  3636. },
  3637. {
  3638. name: "Gigamacro",
  3639. height: math.unit(100000, "km")
  3640. }
  3641. ]
  3642. ))
  3643. characterMakers.push(() => makeCharacter(
  3644. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3645. {
  3646. front: {
  3647. height: math.unit(6, "feet"),
  3648. weight: math.unit(175, "lb"),
  3649. name: "Front",
  3650. image: {
  3651. source: "./media/characters/mirova/front.svg",
  3652. extra: 3334/3071,
  3653. bottom: 42/3375.6
  3654. }
  3655. }
  3656. },
  3657. [
  3658. {
  3659. name: "Small",
  3660. height: math.unit(5, "meters")
  3661. },
  3662. {
  3663. name: "Macro",
  3664. height: math.unit(900, "meters"),
  3665. default: true
  3666. },
  3667. {
  3668. name: "Megamacro",
  3669. height: math.unit(135, "km")
  3670. },
  3671. {
  3672. name: "Gigamacro",
  3673. height: math.unit(20000, "km")
  3674. }
  3675. ]
  3676. ))
  3677. characterMakers.push(() => makeCharacter(
  3678. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3679. {
  3680. side: {
  3681. height: math.unit(28.35, "feet"),
  3682. weight: math.unit(99.75, "tons"),
  3683. name: "Side",
  3684. image: {
  3685. source: "./media/characters/asana-mech/side.svg",
  3686. extra: 923/699,
  3687. bottom: 50/975
  3688. }
  3689. },
  3690. chaingun: {
  3691. height: math.unit(7, "feet"),
  3692. weight: math.unit(2400, "lb"),
  3693. name: "Chaingun",
  3694. image: {
  3695. source: "./media/characters/asana-mech/chaingun.svg"
  3696. }
  3697. },
  3698. laser: {
  3699. height: math.unit(7.12, "feet"),
  3700. weight: math.unit(2000, "lb"),
  3701. name: "Laser",
  3702. image: {
  3703. source: "./media/characters/asana-mech/laser.svg"
  3704. }
  3705. },
  3706. },
  3707. [
  3708. {
  3709. name: "Normal",
  3710. height: math.unit(28.35, "feet"),
  3711. default: true
  3712. },
  3713. {
  3714. name: "Macro",
  3715. height: math.unit(2500, "feet")
  3716. },
  3717. {
  3718. name: "Megamacro",
  3719. height: math.unit(25, "miles")
  3720. },
  3721. {
  3722. name: "Examacro",
  3723. height: math.unit(6e8, "lightyears")
  3724. },
  3725. ]
  3726. ))
  3727. characterMakers.push(() => makeCharacter(
  3728. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3729. {
  3730. front: {
  3731. height: math.unit(5, "meters"),
  3732. weight: math.unit(1000, "kg"),
  3733. name: "Front",
  3734. image: {
  3735. source: "./media/characters/asche/front.svg",
  3736. extra: 1258/1190,
  3737. bottom: 47/1305
  3738. }
  3739. },
  3740. frontUnderwear: {
  3741. height: math.unit(5, "meters"),
  3742. weight: math.unit(1000, "kg"),
  3743. name: "Front (Underwear)",
  3744. image: {
  3745. source: "./media/characters/asche/front-underwear.svg",
  3746. extra: 1258/1190,
  3747. bottom: 47/1305
  3748. }
  3749. },
  3750. frontDressed: {
  3751. height: math.unit(5, "meters"),
  3752. weight: math.unit(1000, "kg"),
  3753. name: "Front (Dressed)",
  3754. image: {
  3755. source: "./media/characters/asche/front-dressed.svg",
  3756. extra: 1258/1190,
  3757. bottom: 47/1305
  3758. }
  3759. },
  3760. frontArmor: {
  3761. height: math.unit(5, "meters"),
  3762. weight: math.unit(1000, "kg"),
  3763. name: "Front (Armored)",
  3764. image: {
  3765. source: "./media/characters/asche/front-armored.svg",
  3766. extra: 1374 / 1308,
  3767. bottom: 23/1397
  3768. }
  3769. },
  3770. mp724: {
  3771. height: math.unit(0.96, "meters"),
  3772. weight: math.unit(38, "kg"),
  3773. name: "H&K MP724",
  3774. image: {
  3775. source: "./media/characters/asche/h&k-mp724.svg"
  3776. }
  3777. },
  3778. side: {
  3779. height: math.unit(5, "meters"),
  3780. weight: math.unit(1000, "kg"),
  3781. name: "Side",
  3782. image: {
  3783. source: "./media/characters/asche/side.svg",
  3784. extra: 1717 / 1609,
  3785. bottom: 0.005
  3786. }
  3787. },
  3788. back: {
  3789. height: math.unit(5, "meters"),
  3790. weight: math.unit(1000, "kg"),
  3791. name: "Back",
  3792. image: {
  3793. source: "./media/characters/asche/back.svg",
  3794. extra: 1570 / 1501
  3795. }
  3796. },
  3797. },
  3798. [
  3799. {
  3800. name: "DEFCON 5",
  3801. height: math.unit(5, "meters")
  3802. },
  3803. {
  3804. name: "DEFCON 4",
  3805. height: math.unit(500, "meters"),
  3806. default: true
  3807. },
  3808. {
  3809. name: "DEFCON 3",
  3810. height: math.unit(5, "km")
  3811. },
  3812. {
  3813. name: "DEFCON 2",
  3814. height: math.unit(500, "km")
  3815. },
  3816. {
  3817. name: "DEFCON 1",
  3818. height: math.unit(500000, "km")
  3819. },
  3820. {
  3821. name: "DEFCON 0",
  3822. height: math.unit(3, "gigaparsecs")
  3823. },
  3824. ]
  3825. ))
  3826. characterMakers.push(() => makeCharacter(
  3827. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3828. {
  3829. front: {
  3830. height: math.unit(2, "meters"),
  3831. weight: math.unit(76, "kg"),
  3832. name: "Front",
  3833. image: {
  3834. source: "./media/characters/gale/front.svg"
  3835. }
  3836. },
  3837. frontAlt1: {
  3838. height: math.unit(2, "meters"),
  3839. weight: math.unit(76, "kg"),
  3840. name: "Front (Alt 1)",
  3841. image: {
  3842. source: "./media/characters/gale/front-alt-1.svg"
  3843. }
  3844. },
  3845. frontAlt2: {
  3846. height: math.unit(2, "meters"),
  3847. weight: math.unit(76, "kg"),
  3848. name: "Front (Alt 2)",
  3849. image: {
  3850. source: "./media/characters/gale/front-alt-2.svg"
  3851. }
  3852. },
  3853. },
  3854. [
  3855. {
  3856. name: "Normal",
  3857. height: math.unit(7, "feet")
  3858. },
  3859. {
  3860. name: "Macro",
  3861. height: math.unit(150, "feet"),
  3862. default: true
  3863. },
  3864. {
  3865. name: "Macro+",
  3866. height: math.unit(300, "feet")
  3867. },
  3868. ]
  3869. ))
  3870. characterMakers.push(() => makeCharacter(
  3871. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3872. {
  3873. front: {
  3874. height: math.unit(2, "meters"),
  3875. weight: math.unit(76, "kg"),
  3876. name: "Front",
  3877. image: {
  3878. source: "./media/characters/draylen/front.svg"
  3879. }
  3880. }
  3881. },
  3882. [
  3883. {
  3884. name: "Macro",
  3885. height: math.unit(150, "feet"),
  3886. default: true
  3887. }
  3888. ]
  3889. ))
  3890. characterMakers.push(() => makeCharacter(
  3891. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3892. {
  3893. front: {
  3894. height: math.unit(7 + 9 / 12, "feet"),
  3895. weight: math.unit(379, "lbs"),
  3896. name: "Front",
  3897. image: {
  3898. source: "./media/characters/chez/front.svg"
  3899. }
  3900. },
  3901. side: {
  3902. height: math.unit(7 + 9 / 12, "feet"),
  3903. weight: math.unit(379, "lbs"),
  3904. name: "Side",
  3905. image: {
  3906. source: "./media/characters/chez/side.svg"
  3907. }
  3908. }
  3909. },
  3910. [
  3911. {
  3912. name: "Normal",
  3913. height: math.unit(7 + 9 / 12, "feet"),
  3914. default: true
  3915. },
  3916. {
  3917. name: "God King",
  3918. height: math.unit(9750000, "meters")
  3919. }
  3920. ]
  3921. ))
  3922. characterMakers.push(() => makeCharacter(
  3923. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3924. {
  3925. front: {
  3926. height: math.unit(6, "feet"),
  3927. weight: math.unit(275, "lbs"),
  3928. name: "Front",
  3929. image: {
  3930. source: "./media/characters/kaylum/front.svg",
  3931. bottom: 0.01,
  3932. extra: 1166 / 1031
  3933. }
  3934. },
  3935. frontWingless: {
  3936. height: math.unit(6, "feet"),
  3937. weight: math.unit(275, "lbs"),
  3938. name: "Front (Wingless)",
  3939. image: {
  3940. source: "./media/characters/kaylum/front-wingless.svg",
  3941. bottom: 0.01,
  3942. extra: 1117 / 1031
  3943. }
  3944. }
  3945. },
  3946. [
  3947. {
  3948. name: "Normal",
  3949. height: math.unit(3.05, "meters")
  3950. },
  3951. {
  3952. name: "Master",
  3953. height: math.unit(5.5, "meters")
  3954. },
  3955. {
  3956. name: "Rampage",
  3957. height: math.unit(19, "meters")
  3958. },
  3959. {
  3960. name: "Macro Lite",
  3961. height: math.unit(37, "meters")
  3962. },
  3963. {
  3964. name: "Hyper Predator",
  3965. height: math.unit(61, "meters")
  3966. },
  3967. {
  3968. name: "Macro",
  3969. height: math.unit(138, "meters"),
  3970. default: true
  3971. }
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3976. {
  3977. front: {
  3978. height: math.unit(6, "feet"),
  3979. weight: math.unit(150, "lbs"),
  3980. name: "Front",
  3981. image: {
  3982. source: "./media/characters/geta/front.svg"
  3983. }
  3984. }
  3985. },
  3986. [
  3987. {
  3988. name: "Micro",
  3989. height: math.unit(3, "inches"),
  3990. default: true
  3991. },
  3992. {
  3993. name: "Normal",
  3994. height: math.unit(5 + 5 / 12, "feet")
  3995. }
  3996. ]
  3997. ))
  3998. characterMakers.push(() => makeCharacter(
  3999. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4000. {
  4001. front: {
  4002. height: math.unit(6, "feet"),
  4003. weight: math.unit(300, "lbs"),
  4004. name: "Front",
  4005. image: {
  4006. source: "./media/characters/tyrnn/front.svg"
  4007. }
  4008. }
  4009. },
  4010. [
  4011. {
  4012. name: "Main Height",
  4013. height: math.unit(355, "feet"),
  4014. default: true
  4015. },
  4016. {
  4017. name: "Fave. Height",
  4018. height: math.unit(2400, "feet")
  4019. }
  4020. ]
  4021. ))
  4022. characterMakers.push(() => makeCharacter(
  4023. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4024. {
  4025. front: {
  4026. height: math.unit(6, "feet"),
  4027. weight: math.unit(300, "lbs"),
  4028. name: "Front",
  4029. image: {
  4030. source: "./media/characters/appledectomy/front.svg"
  4031. }
  4032. }
  4033. },
  4034. [
  4035. {
  4036. name: "Macro",
  4037. height: math.unit(2500, "feet")
  4038. },
  4039. {
  4040. name: "Megamacro",
  4041. height: math.unit(50, "miles"),
  4042. default: true
  4043. },
  4044. {
  4045. name: "Gigamacro",
  4046. height: math.unit(5000, "miles")
  4047. },
  4048. {
  4049. name: "Teramacro",
  4050. height: math.unit(250000, "miles")
  4051. },
  4052. ]
  4053. ))
  4054. characterMakers.push(() => makeCharacter(
  4055. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4056. {
  4057. front: {
  4058. height: math.unit(6, "feet"),
  4059. weight: math.unit(200, "lbs"),
  4060. name: "Front",
  4061. image: {
  4062. source: "./media/characters/vulpes/front.svg",
  4063. extra: 573 / 543,
  4064. bottom: 0.033
  4065. }
  4066. },
  4067. side: {
  4068. height: math.unit(6, "feet"),
  4069. weight: math.unit(200, "lbs"),
  4070. name: "Side",
  4071. image: {
  4072. source: "./media/characters/vulpes/side.svg",
  4073. extra: 573 / 543,
  4074. bottom: 0.01
  4075. }
  4076. },
  4077. back: {
  4078. height: math.unit(6, "feet"),
  4079. weight: math.unit(200, "lbs"),
  4080. name: "Back",
  4081. image: {
  4082. source: "./media/characters/vulpes/back.svg",
  4083. extra: 573 / 543,
  4084. }
  4085. },
  4086. feet: {
  4087. height: math.unit(1.276, "feet"),
  4088. name: "Feet",
  4089. image: {
  4090. source: "./media/characters/vulpes/feet.svg"
  4091. }
  4092. },
  4093. maw: {
  4094. height: math.unit(1.18, "feet"),
  4095. name: "Maw",
  4096. image: {
  4097. source: "./media/characters/vulpes/maw.svg"
  4098. }
  4099. },
  4100. },
  4101. [
  4102. {
  4103. name: "Micro",
  4104. height: math.unit(2, "inches")
  4105. },
  4106. {
  4107. name: "Normal",
  4108. height: math.unit(6.3, "feet")
  4109. },
  4110. {
  4111. name: "Macro",
  4112. height: math.unit(850, "feet")
  4113. },
  4114. {
  4115. name: "Megamacro",
  4116. height: math.unit(7500, "feet"),
  4117. default: true
  4118. },
  4119. {
  4120. name: "Gigamacro",
  4121. height: math.unit(570000, "miles")
  4122. }
  4123. ]
  4124. ))
  4125. characterMakers.push(() => makeCharacter(
  4126. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4127. {
  4128. front: {
  4129. height: math.unit(6, "feet"),
  4130. weight: math.unit(210, "lbs"),
  4131. name: "Front",
  4132. image: {
  4133. source: "./media/characters/rain-fallen/front.svg"
  4134. }
  4135. },
  4136. side: {
  4137. height: math.unit(6, "feet"),
  4138. weight: math.unit(210, "lbs"),
  4139. name: "Side",
  4140. image: {
  4141. source: "./media/characters/rain-fallen/side.svg"
  4142. }
  4143. },
  4144. back: {
  4145. height: math.unit(6, "feet"),
  4146. weight: math.unit(210, "lbs"),
  4147. name: "Back",
  4148. image: {
  4149. source: "./media/characters/rain-fallen/back.svg"
  4150. }
  4151. },
  4152. feral: {
  4153. height: math.unit(9, "feet"),
  4154. weight: math.unit(700, "lbs"),
  4155. name: "Feral",
  4156. image: {
  4157. source: "./media/characters/rain-fallen/feral.svg"
  4158. }
  4159. },
  4160. },
  4161. [
  4162. {
  4163. name: "Normal",
  4164. height: math.unit(5, "meter")
  4165. },
  4166. {
  4167. name: "Macro",
  4168. height: math.unit(150, "meter"),
  4169. default: true
  4170. },
  4171. {
  4172. name: "Megamacro",
  4173. height: math.unit(278e6, "meter")
  4174. },
  4175. {
  4176. name: "Gigamacro",
  4177. height: math.unit(2e9, "meter")
  4178. },
  4179. {
  4180. name: "Teramacro",
  4181. height: math.unit(8e12, "meter")
  4182. },
  4183. {
  4184. name: "Devourer",
  4185. height: math.unit(14, "zettameters")
  4186. },
  4187. {
  4188. name: "Scarlet King",
  4189. height: math.unit(18, "yottameters")
  4190. },
  4191. {
  4192. name: "Void",
  4193. height: math.unit(6.66e66, "yottameters")
  4194. }
  4195. ]
  4196. ))
  4197. characterMakers.push(() => makeCharacter(
  4198. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4199. {
  4200. standing: {
  4201. height: math.unit(6, "feet"),
  4202. weight: math.unit(180, "lbs"),
  4203. name: "Standing",
  4204. image: {
  4205. source: "./media/characters/zaakira/standing.svg"
  4206. }
  4207. },
  4208. laying: {
  4209. height: math.unit(3, "feet"),
  4210. weight: math.unit(180, "lbs"),
  4211. name: "Laying",
  4212. image: {
  4213. source: "./media/characters/zaakira/laying.svg"
  4214. }
  4215. },
  4216. },
  4217. [
  4218. {
  4219. name: "Normal",
  4220. height: math.unit(12, "feet")
  4221. },
  4222. {
  4223. name: "Macro",
  4224. height: math.unit(279, "feet"),
  4225. default: true
  4226. }
  4227. ]
  4228. ))
  4229. characterMakers.push(() => makeCharacter(
  4230. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4231. {
  4232. femSfw: {
  4233. height: math.unit(8, "feet"),
  4234. weight: math.unit(350, "lb"),
  4235. name: "Fem",
  4236. image: {
  4237. source: "./media/characters/sigvald/fem-sfw.svg",
  4238. extra: 182/164,
  4239. bottom: 8.7/190.5
  4240. }
  4241. },
  4242. femNsfw: {
  4243. height: math.unit(8, "feet"),
  4244. weight: math.unit(350, "lb"),
  4245. name: "Fem (NSFW)",
  4246. image: {
  4247. source: "./media/characters/sigvald/fem-nsfw.svg",
  4248. extra: 182/164,
  4249. bottom: 8.7/190.5
  4250. }
  4251. },
  4252. maleNsfw: {
  4253. height: math.unit(8, "feet"),
  4254. weight: math.unit(350, "lb"),
  4255. name: "Male (NSFW)",
  4256. image: {
  4257. source: "./media/characters/sigvald/male-nsfw.svg",
  4258. extra: 182/164,
  4259. bottom: 8.7/190.5
  4260. }
  4261. },
  4262. hermNsfw: {
  4263. height: math.unit(8, "feet"),
  4264. weight: math.unit(350, "lb"),
  4265. name: "Herm (NSFW)",
  4266. image: {
  4267. source: "./media/characters/sigvald/herm-nsfw.svg",
  4268. extra: 182/164,
  4269. bottom: 8.7/190.5
  4270. }
  4271. },
  4272. dick: {
  4273. height: math.unit(2.36, "feet"),
  4274. name: "Dick",
  4275. image: {
  4276. source: "./media/characters/sigvald/dick.svg"
  4277. }
  4278. },
  4279. eye: {
  4280. height: math.unit(0.31, "feet"),
  4281. name: "Eye",
  4282. image: {
  4283. source: "./media/characters/sigvald/eye.svg"
  4284. }
  4285. },
  4286. mouth: {
  4287. height: math.unit(0.92, "feet"),
  4288. name: "Mouth",
  4289. image: {
  4290. source: "./media/characters/sigvald/mouth.svg"
  4291. }
  4292. },
  4293. paws: {
  4294. height: math.unit(2.2, "feet"),
  4295. name: "Paws",
  4296. image: {
  4297. source: "./media/characters/sigvald/paws.svg"
  4298. }
  4299. }
  4300. },
  4301. [
  4302. {
  4303. name: "Normal",
  4304. height: math.unit(8, "feet")
  4305. },
  4306. {
  4307. name: "Large",
  4308. height: math.unit(12, "feet")
  4309. },
  4310. {
  4311. name: "Larger",
  4312. height: math.unit(20, "feet")
  4313. },
  4314. {
  4315. name: "Macro",
  4316. height: math.unit(150, "feet")
  4317. },
  4318. {
  4319. name: "Macro+",
  4320. height: math.unit(200, "feet"),
  4321. default: true
  4322. },
  4323. ]
  4324. ))
  4325. characterMakers.push(() => makeCharacter(
  4326. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4327. {
  4328. side: {
  4329. height: math.unit(12, "feet"),
  4330. weight: math.unit(2000, "kg"),
  4331. name: "Side",
  4332. image: {
  4333. source: "./media/characters/scott/side.svg",
  4334. extra: 754 / 724,
  4335. bottom: 0.069
  4336. }
  4337. },
  4338. upright: {
  4339. height: math.unit(12, "feet"),
  4340. weight: math.unit(2000, "kg"),
  4341. name: "Upright",
  4342. image: {
  4343. source: "./media/characters/scott/upright.svg",
  4344. extra: 3881 / 3722,
  4345. bottom: 0.05
  4346. }
  4347. },
  4348. },
  4349. [
  4350. {
  4351. name: "Normal",
  4352. height: math.unit(12, "feet"),
  4353. default: true
  4354. },
  4355. ]
  4356. ))
  4357. characterMakers.push(() => makeCharacter(
  4358. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4359. {
  4360. side: {
  4361. height: math.unit(8, "meters"),
  4362. weight: math.unit(84755, "lbs"),
  4363. name: "Side",
  4364. image: {
  4365. source: "./media/characters/tobias/side.svg",
  4366. extra: 1474 / 1096,
  4367. bottom: 38.9 / 1513.1235
  4368. }
  4369. },
  4370. },
  4371. [
  4372. {
  4373. name: "Normal",
  4374. height: math.unit(8, "meters"),
  4375. default: true
  4376. },
  4377. ]
  4378. ))
  4379. characterMakers.push(() => makeCharacter(
  4380. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4381. {
  4382. front: {
  4383. height: math.unit(5.5, "feet"),
  4384. weight: math.unit(400, "lbs"),
  4385. name: "Front",
  4386. image: {
  4387. source: "./media/characters/kieran/front.svg",
  4388. extra: 2694 / 2364,
  4389. bottom: 217 / 2908
  4390. }
  4391. },
  4392. side: {
  4393. height: math.unit(5.5, "feet"),
  4394. weight: math.unit(400, "lbs"),
  4395. name: "Side",
  4396. image: {
  4397. source: "./media/characters/kieran/side.svg",
  4398. extra: 875 / 777,
  4399. bottom: 84.6 / 959
  4400. }
  4401. },
  4402. },
  4403. [
  4404. {
  4405. name: "Normal",
  4406. height: math.unit(5.5, "feet"),
  4407. default: true
  4408. },
  4409. ]
  4410. ))
  4411. characterMakers.push(() => makeCharacter(
  4412. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4413. {
  4414. side: {
  4415. height: math.unit(2, "meters"),
  4416. weight: math.unit(70, "kg"),
  4417. name: "Side",
  4418. image: {
  4419. source: "./media/characters/sanya/side.svg",
  4420. bottom: 0.02,
  4421. extra: 1.02
  4422. }
  4423. },
  4424. },
  4425. [
  4426. {
  4427. name: "Small",
  4428. height: math.unit(2, "meters")
  4429. },
  4430. {
  4431. name: "Normal",
  4432. height: math.unit(3, "meters")
  4433. },
  4434. {
  4435. name: "Macro",
  4436. height: math.unit(16, "meters"),
  4437. default: true
  4438. },
  4439. ]
  4440. ))
  4441. characterMakers.push(() => makeCharacter(
  4442. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4443. {
  4444. front: {
  4445. height: math.unit(2, "meters"),
  4446. weight: math.unit(120, "kg"),
  4447. name: "Front",
  4448. image: {
  4449. source: "./media/characters/miranda/front.svg",
  4450. extra: 195/185,
  4451. bottom: 10.9/206.5
  4452. }
  4453. },
  4454. back: {
  4455. height: math.unit(2, "meters"),
  4456. weight: math.unit(120, "kg"),
  4457. name: "Back",
  4458. image: {
  4459. source: "./media/characters/miranda/back.svg",
  4460. extra: 201/193,
  4461. bottom: 2.3/203.7
  4462. }
  4463. },
  4464. },
  4465. [
  4466. {
  4467. name: "Normal",
  4468. height: math.unit(10, "feet"),
  4469. default: true
  4470. }
  4471. ]
  4472. ))
  4473. characterMakers.push(() => makeCharacter(
  4474. { name: "James", species: ["deer"], tags: ["anthro"] },
  4475. {
  4476. side: {
  4477. height: math.unit(2, "meters"),
  4478. weight: math.unit(100, "kg"),
  4479. name: "Front",
  4480. image: {
  4481. source: "./media/characters/james/front.svg",
  4482. extra: 10 / 8.5
  4483. }
  4484. },
  4485. },
  4486. [
  4487. {
  4488. name: "Normal",
  4489. height: math.unit(8.5, "feet"),
  4490. default: true
  4491. }
  4492. ]
  4493. ))
  4494. characterMakers.push(() => makeCharacter(
  4495. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4496. {
  4497. side: {
  4498. height: math.unit(9.5, "feet"),
  4499. weight: math.unit(2500, "lbs"),
  4500. name: "Side",
  4501. image: {
  4502. source: "./media/characters/heather/side.svg"
  4503. }
  4504. },
  4505. },
  4506. [
  4507. {
  4508. name: "Normal",
  4509. height: math.unit(9.5, "feet"),
  4510. default: true
  4511. }
  4512. ]
  4513. ))
  4514. characterMakers.push(() => makeCharacter(
  4515. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4516. {
  4517. side: {
  4518. height: math.unit(6.5, "feet"),
  4519. weight: math.unit(400, "lbs"),
  4520. name: "Side",
  4521. image: {
  4522. source: "./media/characters/lukas/side.svg",
  4523. extra: 7.25 / 6.5
  4524. }
  4525. },
  4526. },
  4527. [
  4528. {
  4529. name: "Normal",
  4530. height: math.unit(6.5, "feet"),
  4531. default: true
  4532. }
  4533. ]
  4534. ))
  4535. characterMakers.push(() => makeCharacter(
  4536. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4537. {
  4538. side: {
  4539. height: math.unit(5, "feet"),
  4540. weight: math.unit(3000, "lbs"),
  4541. name: "Side",
  4542. image: {
  4543. source: "./media/characters/louise/side.svg"
  4544. }
  4545. },
  4546. },
  4547. [
  4548. {
  4549. name: "Normal",
  4550. height: math.unit(5, "feet"),
  4551. default: true
  4552. }
  4553. ]
  4554. ))
  4555. characterMakers.push(() => makeCharacter(
  4556. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4557. {
  4558. side: {
  4559. height: math.unit(6, "feet"),
  4560. weight: math.unit(150, "lbs"),
  4561. name: "Side",
  4562. image: {
  4563. source: "./media/characters/ramona/side.svg"
  4564. }
  4565. },
  4566. },
  4567. [
  4568. {
  4569. name: "Normal",
  4570. height: math.unit(5.3, "meters"),
  4571. default: true
  4572. },
  4573. {
  4574. name: "Macro",
  4575. height: math.unit(20, "stories")
  4576. },
  4577. {
  4578. name: "Macro+",
  4579. height: math.unit(50, "stories")
  4580. },
  4581. ]
  4582. ))
  4583. characterMakers.push(() => makeCharacter(
  4584. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4585. {
  4586. standing: {
  4587. height: math.unit(5.75, "feet"),
  4588. weight: math.unit(160, "lbs"),
  4589. name: "Standing",
  4590. image: {
  4591. source: "./media/characters/deerpuff/standing.svg",
  4592. extra: 682 / 624
  4593. }
  4594. },
  4595. sitting: {
  4596. height: math.unit(5.75 / 1.79, "feet"),
  4597. weight: math.unit(160, "lbs"),
  4598. name: "Sitting",
  4599. image: {
  4600. source: "./media/characters/deerpuff/sitting.svg",
  4601. bottom: 44 / 400,
  4602. extra: 1
  4603. }
  4604. },
  4605. taurLaying: {
  4606. height: math.unit(6, "feet"),
  4607. weight: math.unit(400, "lbs"),
  4608. name: "Taur (Laying)",
  4609. image: {
  4610. source: "./media/characters/deerpuff/taur-laying.svg"
  4611. }
  4612. },
  4613. },
  4614. [
  4615. {
  4616. name: "Puffball",
  4617. height: math.unit(6, "inches")
  4618. },
  4619. {
  4620. name: "Normalpuff",
  4621. height: math.unit(5.75, "feet")
  4622. },
  4623. {
  4624. name: "Macropuff",
  4625. height: math.unit(1500, "feet"),
  4626. default: true
  4627. },
  4628. {
  4629. name: "Megapuff",
  4630. height: math.unit(500, "miles")
  4631. },
  4632. {
  4633. name: "Gigapuff",
  4634. height: math.unit(250000, "miles")
  4635. },
  4636. {
  4637. name: "Omegapuff",
  4638. height: math.unit(1000, "lightyears")
  4639. },
  4640. ]
  4641. ))
  4642. characterMakers.push(() => makeCharacter(
  4643. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4644. {
  4645. stomping: {
  4646. height: math.unit(6, "feet"),
  4647. weight: math.unit(170, "lbs"),
  4648. name: "Stomping",
  4649. image: {
  4650. source: "./media/characters/vivian/stomping.svg"
  4651. }
  4652. },
  4653. sitting: {
  4654. height: math.unit(6 / 1.75, "feet"),
  4655. weight: math.unit(170, "lbs"),
  4656. name: "Sitting",
  4657. image: {
  4658. source: "./media/characters/vivian/sitting.svg",
  4659. bottom: 1 / 6.4,
  4660. extra: 1,
  4661. }
  4662. },
  4663. },
  4664. [
  4665. {
  4666. name: "Normal",
  4667. height: math.unit(7, "feet"),
  4668. default: true
  4669. },
  4670. {
  4671. name: "Macro",
  4672. height: math.unit(10, "stories")
  4673. },
  4674. {
  4675. name: "Macro+",
  4676. height: math.unit(30, "stories")
  4677. },
  4678. {
  4679. name: "Megamacro",
  4680. height: math.unit(10, "miles")
  4681. },
  4682. {
  4683. name: "Megamacro+",
  4684. height: math.unit(2750000, "meters")
  4685. },
  4686. ]
  4687. ))
  4688. characterMakers.push(() => makeCharacter(
  4689. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4690. {
  4691. front: {
  4692. height: math.unit(6, "feet"),
  4693. weight: math.unit(160, "lbs"),
  4694. name: "Front",
  4695. image: {
  4696. source: "./media/characters/prince/front.svg",
  4697. extra: 3400 / 3000
  4698. }
  4699. },
  4700. jumping: {
  4701. height: math.unit(6, "feet"),
  4702. weight: math.unit(160, "lbs"),
  4703. name: "Jumping",
  4704. image: {
  4705. source: "./media/characters/prince/jump.svg",
  4706. extra: 2555 / 2134
  4707. }
  4708. },
  4709. },
  4710. [
  4711. {
  4712. name: "Normal",
  4713. height: math.unit(7.75, "feet"),
  4714. default: true
  4715. },
  4716. {
  4717. name: "Not cute",
  4718. height: math.unit(17, "feet")
  4719. },
  4720. {
  4721. name: "I said NOT",
  4722. height: math.unit(91, "feet")
  4723. },
  4724. {
  4725. name: "Please stop",
  4726. height: math.unit(560, "feet")
  4727. },
  4728. {
  4729. name: "What have you done",
  4730. height: math.unit(2200, "feet")
  4731. },
  4732. {
  4733. name: "Deer God",
  4734. height: math.unit(3.6, "miles")
  4735. },
  4736. ]
  4737. ))
  4738. characterMakers.push(() => makeCharacter(
  4739. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4740. {
  4741. standing: {
  4742. height: math.unit(6, "feet"),
  4743. weight: math.unit(300, "lbs"),
  4744. name: "Standing",
  4745. image: {
  4746. source: "./media/characters/psymon/standing.svg",
  4747. extra: 1888 / 1810,
  4748. bottom: 0.05
  4749. }
  4750. },
  4751. slithering: {
  4752. height: math.unit(6, "feet"),
  4753. weight: math.unit(300, "lbs"),
  4754. name: "Slithering",
  4755. image: {
  4756. source: "./media/characters/psymon/slithering.svg",
  4757. extra: 1330 / 1224
  4758. }
  4759. },
  4760. slitheringAlt: {
  4761. height: math.unit(6, "feet"),
  4762. weight: math.unit(300, "lbs"),
  4763. name: "Slithering (Alt)",
  4764. image: {
  4765. source: "./media/characters/psymon/slithering-alt.svg",
  4766. extra: 1330 / 1224
  4767. }
  4768. },
  4769. },
  4770. [
  4771. {
  4772. name: "Normal",
  4773. height: math.unit(11.25, "feet"),
  4774. default: true
  4775. },
  4776. {
  4777. name: "Large",
  4778. height: math.unit(27, "feet")
  4779. },
  4780. {
  4781. name: "Giant",
  4782. height: math.unit(87, "feet")
  4783. },
  4784. {
  4785. name: "Macro",
  4786. height: math.unit(365, "feet")
  4787. },
  4788. {
  4789. name: "Megamacro",
  4790. height: math.unit(3, "miles")
  4791. },
  4792. {
  4793. name: "World Serpent",
  4794. height: math.unit(8000, "miles")
  4795. },
  4796. ]
  4797. ))
  4798. characterMakers.push(() => makeCharacter(
  4799. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4800. {
  4801. front: {
  4802. height: math.unit(6, "feet"),
  4803. weight: math.unit(180, "lbs"),
  4804. name: "Front",
  4805. image: {
  4806. source: "./media/characters/daimos/front.svg",
  4807. extra: 4160 / 3897,
  4808. bottom: 0.021
  4809. }
  4810. }
  4811. },
  4812. [
  4813. {
  4814. name: "Normal",
  4815. height: math.unit(8, "feet"),
  4816. default: true
  4817. },
  4818. {
  4819. name: "Big Dog",
  4820. height: math.unit(22, "feet")
  4821. },
  4822. {
  4823. name: "Macro",
  4824. height: math.unit(127, "feet")
  4825. },
  4826. {
  4827. name: "Megamacro",
  4828. height: math.unit(3600, "feet")
  4829. },
  4830. ]
  4831. ))
  4832. characterMakers.push(() => makeCharacter(
  4833. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4834. {
  4835. side: {
  4836. height: math.unit(6, "feet"),
  4837. weight: math.unit(180, "lbs"),
  4838. name: "Side",
  4839. image: {
  4840. source: "./media/characters/blake/side.svg",
  4841. extra: 1212 / 1120,
  4842. bottom: 0.05
  4843. }
  4844. },
  4845. crouched: {
  4846. height: math.unit(6 * 0.57, "feet"),
  4847. weight: math.unit(180, "lbs"),
  4848. name: "Crouched",
  4849. image: {
  4850. source: "./media/characters/blake/crouched.svg",
  4851. extra: 840 / 587,
  4852. bottom: 0.04
  4853. }
  4854. },
  4855. bent: {
  4856. height: math.unit(6 * 0.75, "feet"),
  4857. weight: math.unit(180, "lbs"),
  4858. name: "Bent",
  4859. image: {
  4860. source: "./media/characters/blake/bent.svg",
  4861. extra: 592 / 544,
  4862. bottom: 0.035
  4863. }
  4864. },
  4865. },
  4866. [
  4867. {
  4868. name: "Normal",
  4869. height: math.unit(8 + 1 / 6, "feet"),
  4870. default: true
  4871. },
  4872. {
  4873. name: "Big Backside",
  4874. height: math.unit(37, "feet")
  4875. },
  4876. {
  4877. name: "Subway Shredder",
  4878. height: math.unit(72, "feet")
  4879. },
  4880. {
  4881. name: "City Carver",
  4882. height: math.unit(1675, "feet")
  4883. },
  4884. {
  4885. name: "Tectonic Tweaker",
  4886. height: math.unit(2300, "miles")
  4887. },
  4888. ]
  4889. ))
  4890. characterMakers.push(() => makeCharacter(
  4891. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4892. {
  4893. front: {
  4894. height: math.unit(6, "feet"),
  4895. weight: math.unit(180, "lbs"),
  4896. name: "Front",
  4897. image: {
  4898. source: "./media/characters/guisetto/front.svg",
  4899. extra: 856 / 817,
  4900. bottom: 0.06
  4901. }
  4902. },
  4903. airborne: {
  4904. height: math.unit(6, "feet"),
  4905. weight: math.unit(180, "lbs"),
  4906. name: "Airborne",
  4907. image: {
  4908. source: "./media/characters/guisetto/airborne.svg",
  4909. extra: 584 / 525
  4910. }
  4911. },
  4912. },
  4913. [
  4914. {
  4915. name: "Normal",
  4916. height: math.unit(10 + 11 / 12, "feet"),
  4917. default: true
  4918. },
  4919. {
  4920. name: "Large",
  4921. height: math.unit(35, "feet")
  4922. },
  4923. {
  4924. name: "Macro",
  4925. height: math.unit(475, "feet")
  4926. },
  4927. ]
  4928. ))
  4929. characterMakers.push(() => makeCharacter(
  4930. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4931. {
  4932. front: {
  4933. height: math.unit(6, "feet"),
  4934. weight: math.unit(180, "lbs"),
  4935. name: "Front",
  4936. image: {
  4937. source: "./media/characters/luxor/front.svg",
  4938. extra: 2940 / 2152
  4939. }
  4940. },
  4941. back: {
  4942. height: math.unit(6, "feet"),
  4943. weight: math.unit(180, "lbs"),
  4944. name: "Back",
  4945. image: {
  4946. source: "./media/characters/luxor/back.svg",
  4947. extra: 1083 / 960
  4948. }
  4949. },
  4950. },
  4951. [
  4952. {
  4953. name: "Normal",
  4954. height: math.unit(5 + 5 / 6, "feet"),
  4955. default: true
  4956. },
  4957. {
  4958. name: "Lamp",
  4959. height: math.unit(50, "feet")
  4960. },
  4961. {
  4962. name: "Lämp",
  4963. height: math.unit(300, "feet")
  4964. },
  4965. {
  4966. name: "The sun is a lamp",
  4967. height: math.unit(250000, "miles")
  4968. },
  4969. ]
  4970. ))
  4971. characterMakers.push(() => makeCharacter(
  4972. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4973. {
  4974. front: {
  4975. height: math.unit(6, "feet"),
  4976. weight: math.unit(50, "lbs"),
  4977. name: "Front",
  4978. image: {
  4979. source: "./media/characters/huoyan/front.svg"
  4980. }
  4981. },
  4982. side: {
  4983. height: math.unit(6, "feet"),
  4984. weight: math.unit(180, "lbs"),
  4985. name: "Side",
  4986. image: {
  4987. source: "./media/characters/huoyan/side.svg"
  4988. }
  4989. },
  4990. },
  4991. [
  4992. {
  4993. name: "Chef",
  4994. height: math.unit(9, "feet")
  4995. },
  4996. {
  4997. name: "Normal",
  4998. height: math.unit(65, "feet"),
  4999. default: true
  5000. },
  5001. {
  5002. name: "Macro",
  5003. height: math.unit(780, "feet")
  5004. },
  5005. {
  5006. name: "Flaming Mountain",
  5007. height: math.unit(4.8, "miles")
  5008. },
  5009. {
  5010. name: "Celestial",
  5011. height: math.unit(765000, "miles")
  5012. },
  5013. ]
  5014. ))
  5015. characterMakers.push(() => makeCharacter(
  5016. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5017. {
  5018. front: {
  5019. height: math.unit(5 + 3 / 4, "feet"),
  5020. weight: math.unit(120, "lbs"),
  5021. name: "Front",
  5022. image: {
  5023. source: "./media/characters/tails/front.svg"
  5024. }
  5025. }
  5026. },
  5027. [
  5028. {
  5029. name: "Normal",
  5030. height: math.unit(5 + 3 / 4, "feet"),
  5031. default: true
  5032. }
  5033. ]
  5034. ))
  5035. characterMakers.push(() => makeCharacter(
  5036. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5037. {
  5038. front: {
  5039. height: math.unit(4, "feet"),
  5040. weight: math.unit(50, "lbs"),
  5041. name: "Front",
  5042. image: {
  5043. source: "./media/characters/rainy/front.svg"
  5044. }
  5045. }
  5046. },
  5047. [
  5048. {
  5049. name: "Macro",
  5050. height: math.unit(800, "feet"),
  5051. default: true
  5052. }
  5053. ]
  5054. ))
  5055. characterMakers.push(() => makeCharacter(
  5056. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5057. {
  5058. front: {
  5059. height: math.unit(6, "feet"),
  5060. weight: math.unit(150, "lbs"),
  5061. name: "Front",
  5062. image: {
  5063. source: "./media/characters/rainier/front.svg"
  5064. }
  5065. }
  5066. },
  5067. [
  5068. {
  5069. name: "Micro",
  5070. height: math.unit(2, "mm"),
  5071. default: true
  5072. }
  5073. ]
  5074. ))
  5075. characterMakers.push(() => makeCharacter(
  5076. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5077. {
  5078. front: {
  5079. height: math.unit(6, "feet"),
  5080. weight: math.unit(180, "lbs"),
  5081. name: "Front",
  5082. image: {
  5083. source: "./media/characters/andy/front.svg"
  5084. }
  5085. }
  5086. },
  5087. [
  5088. {
  5089. name: "Normal",
  5090. height: math.unit(8, "feet"),
  5091. default: true
  5092. },
  5093. {
  5094. name: "Macro",
  5095. height: math.unit(1000, "feet")
  5096. },
  5097. {
  5098. name: "Megamacro",
  5099. height: math.unit(5, "miles")
  5100. },
  5101. {
  5102. name: "Gigamacro",
  5103. height: math.unit(5000, "miles")
  5104. },
  5105. ]
  5106. ))
  5107. characterMakers.push(() => makeCharacter(
  5108. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5109. {
  5110. front: {
  5111. height: math.unit(6, "feet"),
  5112. weight: math.unit(210, "lbs"),
  5113. name: "Front",
  5114. image: {
  5115. source: "./media/characters/cimmaron/front-sfw.svg",
  5116. extra: 701 / 676,
  5117. bottom: 0.046
  5118. }
  5119. },
  5120. back: {
  5121. height: math.unit(6, "feet"),
  5122. weight: math.unit(210, "lbs"),
  5123. name: "Back",
  5124. image: {
  5125. source: "./media/characters/cimmaron/back-sfw.svg",
  5126. extra: 701 / 676,
  5127. bottom: 0.046
  5128. }
  5129. },
  5130. frontNsfw: {
  5131. height: math.unit(6, "feet"),
  5132. weight: math.unit(210, "lbs"),
  5133. name: "Front (NSFW)",
  5134. image: {
  5135. source: "./media/characters/cimmaron/front-nsfw.svg",
  5136. extra: 701 / 676,
  5137. bottom: 0.046
  5138. }
  5139. },
  5140. backNsfw: {
  5141. height: math.unit(6, "feet"),
  5142. weight: math.unit(210, "lbs"),
  5143. name: "Back (NSFW)",
  5144. image: {
  5145. source: "./media/characters/cimmaron/back-nsfw.svg",
  5146. extra: 701 / 676,
  5147. bottom: 0.046
  5148. }
  5149. },
  5150. dick: {
  5151. height: math.unit(1.714, "feet"),
  5152. name: "Dick",
  5153. image: {
  5154. source: "./media/characters/cimmaron/dick.svg"
  5155. }
  5156. },
  5157. },
  5158. [
  5159. {
  5160. name: "Normal",
  5161. height: math.unit(6, "feet"),
  5162. default: true
  5163. },
  5164. {
  5165. name: "Macro Mayor",
  5166. height: math.unit(350, "meters")
  5167. },
  5168. ]
  5169. ))
  5170. characterMakers.push(() => makeCharacter(
  5171. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5172. {
  5173. front: {
  5174. height: math.unit(6, "feet"),
  5175. weight: math.unit(200, "lbs"),
  5176. name: "Front",
  5177. image: {
  5178. source: "./media/characters/akari/front.svg",
  5179. extra: 962 / 901,
  5180. bottom: 0.04
  5181. }
  5182. }
  5183. },
  5184. [
  5185. {
  5186. name: "Micro",
  5187. height: math.unit(5, "inches"),
  5188. default: true
  5189. },
  5190. {
  5191. name: "Normal",
  5192. height: math.unit(7, "feet")
  5193. },
  5194. ]
  5195. ))
  5196. characterMakers.push(() => makeCharacter(
  5197. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5198. {
  5199. front: {
  5200. height: math.unit(6, "feet"),
  5201. weight: math.unit(140, "lbs"),
  5202. name: "Front",
  5203. image: {
  5204. source: "./media/characters/cynosura/front.svg",
  5205. extra: 896 / 847
  5206. }
  5207. },
  5208. back: {
  5209. height: math.unit(6, "feet"),
  5210. weight: math.unit(140, "lbs"),
  5211. name: "Back",
  5212. image: {
  5213. source: "./media/characters/cynosura/back.svg",
  5214. extra: 1365 / 1250
  5215. }
  5216. },
  5217. },
  5218. [
  5219. {
  5220. name: "Micro",
  5221. height: math.unit(4, "inches")
  5222. },
  5223. {
  5224. name: "Normal",
  5225. height: math.unit(5.75, "feet"),
  5226. default: true
  5227. },
  5228. {
  5229. name: "Tall",
  5230. height: math.unit(10, "feet")
  5231. },
  5232. {
  5233. name: "Big",
  5234. height: math.unit(20, "feet")
  5235. },
  5236. {
  5237. name: "Macro",
  5238. height: math.unit(50, "feet")
  5239. },
  5240. ]
  5241. ))
  5242. characterMakers.push(() => makeCharacter(
  5243. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5244. {
  5245. front: {
  5246. height: math.unit(6, "feet"),
  5247. weight: math.unit(170, "lbs"),
  5248. name: "Front",
  5249. image: {
  5250. source: "./media/characters/gin/front.svg",
  5251. extra: 1.053,
  5252. bottom: 0.025
  5253. }
  5254. },
  5255. foot: {
  5256. height: math.unit(6 / 4.25, "feet"),
  5257. name: "Foot",
  5258. image: {
  5259. source: "./media/characters/gin/foot.svg"
  5260. }
  5261. },
  5262. sole: {
  5263. height: math.unit(6 / 4.40, "feet"),
  5264. name: "Sole",
  5265. image: {
  5266. source: "./media/characters/gin/sole.svg"
  5267. }
  5268. },
  5269. },
  5270. [
  5271. {
  5272. name: "Normal",
  5273. height: math.unit(13 + 2 / 12, "feet")
  5274. },
  5275. {
  5276. name: "Macro",
  5277. height: math.unit(1500, "feet")
  5278. },
  5279. {
  5280. name: "Megamacro",
  5281. height: math.unit(200, "miles"),
  5282. default: true
  5283. },
  5284. {
  5285. name: "Gigamacro",
  5286. height: math.unit(500, "megameters")
  5287. },
  5288. {
  5289. name: "Teramacro",
  5290. height: math.unit(15, "lightyears")
  5291. }
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5296. {
  5297. front: {
  5298. height: math.unit(6 + 1 / 6, "feet"),
  5299. weight: math.unit(178, "lbs"),
  5300. name: "Front",
  5301. image: {
  5302. source: "./media/characters/guy/front.svg"
  5303. }
  5304. }
  5305. },
  5306. [
  5307. {
  5308. name: "Normal",
  5309. height: math.unit(6 + 1 / 6, "feet"),
  5310. default: true
  5311. },
  5312. {
  5313. name: "Large",
  5314. height: math.unit(25 + 7 / 12, "feet")
  5315. },
  5316. {
  5317. name: "Macro",
  5318. height: math.unit(60 + 9 / 12, "feet")
  5319. },
  5320. {
  5321. name: "Macro+",
  5322. height: math.unit(246, "feet")
  5323. },
  5324. {
  5325. name: "Macro++",
  5326. height: math.unit(878, "feet")
  5327. }
  5328. ]
  5329. ))
  5330. characterMakers.push(() => makeCharacter(
  5331. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5332. {
  5333. front: {
  5334. height: math.unit(9, "feet"),
  5335. weight: math.unit(800, "lbs"),
  5336. name: "Front",
  5337. image: {
  5338. source: "./media/characters/tiberius/front.svg",
  5339. extra: 2295 / 2071
  5340. }
  5341. },
  5342. back: {
  5343. height: math.unit(9, "feet"),
  5344. weight: math.unit(800, "lbs"),
  5345. name: "Back",
  5346. image: {
  5347. source: "./media/characters/tiberius/back.svg",
  5348. extra: 2373 / 2160
  5349. }
  5350. },
  5351. },
  5352. [
  5353. {
  5354. name: "Normal",
  5355. height: math.unit(9, "feet"),
  5356. default: true
  5357. }
  5358. ]
  5359. ))
  5360. characterMakers.push(() => makeCharacter(
  5361. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5362. {
  5363. front: {
  5364. height: math.unit(6, "feet"),
  5365. weight: math.unit(600, "lbs"),
  5366. name: "Front",
  5367. image: {
  5368. source: "./media/characters/surgo/front.svg",
  5369. extra: 3591 / 2227
  5370. }
  5371. },
  5372. back: {
  5373. height: math.unit(6, "feet"),
  5374. weight: math.unit(600, "lbs"),
  5375. name: "Back",
  5376. image: {
  5377. source: "./media/characters/surgo/back.svg",
  5378. extra: 3557 / 2228
  5379. }
  5380. },
  5381. laying: {
  5382. height: math.unit(6 * 0.85, "feet"),
  5383. weight: math.unit(600, "lbs"),
  5384. name: "Laying",
  5385. image: {
  5386. source: "./media/characters/surgo/laying.svg"
  5387. }
  5388. },
  5389. },
  5390. [
  5391. {
  5392. name: "Normal",
  5393. height: math.unit(6, "feet"),
  5394. default: true
  5395. }
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5400. {
  5401. side: {
  5402. height: math.unit(6, "feet"),
  5403. weight: math.unit(150, "lbs"),
  5404. name: "Side",
  5405. image: {
  5406. source: "./media/characters/cibus/side.svg",
  5407. extra: 800 / 400
  5408. }
  5409. },
  5410. },
  5411. [
  5412. {
  5413. name: "Normal",
  5414. height: math.unit(6, "feet"),
  5415. default: true
  5416. }
  5417. ]
  5418. ))
  5419. characterMakers.push(() => makeCharacter(
  5420. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5421. {
  5422. front: {
  5423. height: math.unit(6, "feet"),
  5424. weight: math.unit(240, "lbs"),
  5425. name: "Front",
  5426. image: {
  5427. source: "./media/characters/nibbles/front.svg"
  5428. }
  5429. },
  5430. side: {
  5431. height: math.unit(6, "feet"),
  5432. weight: math.unit(240, "lbs"),
  5433. name: "Side",
  5434. image: {
  5435. source: "./media/characters/nibbles/side.svg"
  5436. }
  5437. },
  5438. },
  5439. [
  5440. {
  5441. name: "Normal",
  5442. height: math.unit(9, "feet"),
  5443. default: true
  5444. }
  5445. ]
  5446. ))
  5447. characterMakers.push(() => makeCharacter(
  5448. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5449. {
  5450. side: {
  5451. height: math.unit(5 + 1 / 6, "feet"),
  5452. weight: math.unit(130, "lbs"),
  5453. name: "Side",
  5454. image: {
  5455. source: "./media/characters/rikky/side.svg",
  5456. extra: 851/801
  5457. }
  5458. },
  5459. },
  5460. [
  5461. {
  5462. name: "Normal",
  5463. height: math.unit(5 + 1 / 6, "feet")
  5464. },
  5465. {
  5466. name: "Macro",
  5467. height: math.unit(152, "feet"),
  5468. default: true
  5469. },
  5470. {
  5471. name: "Megamacro",
  5472. height: math.unit(7, "miles")
  5473. }
  5474. ]
  5475. ))
  5476. characterMakers.push(() => makeCharacter(
  5477. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5478. {
  5479. side: {
  5480. height: math.unit(370, "cm"),
  5481. weight: math.unit(350, "lbs"),
  5482. name: "Side",
  5483. image: {
  5484. source: "./media/characters/malfressa/side.svg"
  5485. }
  5486. },
  5487. walking: {
  5488. height: math.unit(370, "cm"),
  5489. weight: math.unit(350, "lbs"),
  5490. name: "Walking",
  5491. image: {
  5492. source: "./media/characters/malfressa/walking.svg"
  5493. }
  5494. },
  5495. feral: {
  5496. height: math.unit(2500, "cm"),
  5497. weight: math.unit(100000, "lbs"),
  5498. name: "Feral",
  5499. image: {
  5500. source: "./media/characters/malfressa/feral.svg",
  5501. extra: 2108 / 837,
  5502. bottom: 0.02
  5503. }
  5504. },
  5505. },
  5506. [
  5507. {
  5508. name: "Normal",
  5509. height: math.unit(370, "cm")
  5510. },
  5511. {
  5512. name: "Macro",
  5513. height: math.unit(300, "meters"),
  5514. default: true
  5515. }
  5516. ]
  5517. ))
  5518. characterMakers.push(() => makeCharacter(
  5519. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5520. {
  5521. front: {
  5522. height: math.unit(6, "feet"),
  5523. weight: math.unit(60, "kg"),
  5524. name: "Front",
  5525. image: {
  5526. source: "./media/characters/jaro/front.svg"
  5527. }
  5528. },
  5529. back: {
  5530. height: math.unit(6, "feet"),
  5531. weight: math.unit(60, "kg"),
  5532. name: "Back",
  5533. image: {
  5534. source: "./media/characters/jaro/back.svg"
  5535. }
  5536. },
  5537. },
  5538. [
  5539. {
  5540. name: "Micro",
  5541. height: math.unit(7, "inches")
  5542. },
  5543. {
  5544. name: "Normal",
  5545. height: math.unit(5.5, "feet"),
  5546. default: true
  5547. },
  5548. {
  5549. name: "Minimacro",
  5550. height: math.unit(20, "feet")
  5551. },
  5552. {
  5553. name: "Macro",
  5554. height: math.unit(200, "meters")
  5555. }
  5556. ]
  5557. ))
  5558. characterMakers.push(() => makeCharacter(
  5559. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5560. {
  5561. front: {
  5562. height: math.unit(6, "feet"),
  5563. weight: math.unit(195, "lb"),
  5564. name: "Front",
  5565. image: {
  5566. source: "./media/characters/rogue/front.svg"
  5567. }
  5568. },
  5569. },
  5570. [
  5571. {
  5572. name: "Macro",
  5573. height: math.unit(90, "feet"),
  5574. default: true
  5575. },
  5576. ]
  5577. ))
  5578. characterMakers.push(() => makeCharacter(
  5579. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5580. {
  5581. front: {
  5582. height: math.unit(5 + 8 / 12, "feet"),
  5583. weight: math.unit(140, "lb"),
  5584. name: "Front",
  5585. image: {
  5586. source: "./media/characters/piper/front.svg",
  5587. extra: 3928 / 3681
  5588. }
  5589. },
  5590. },
  5591. [
  5592. {
  5593. name: "Micro",
  5594. height: math.unit(2, "inches")
  5595. },
  5596. {
  5597. name: "Normal",
  5598. height: math.unit(5 + 8 / 12, "feet")
  5599. },
  5600. {
  5601. name: "Macro",
  5602. height: math.unit(250, "feet"),
  5603. default: true
  5604. },
  5605. {
  5606. name: "Megamacro",
  5607. height: math.unit(7, "miles")
  5608. },
  5609. ]
  5610. ))
  5611. characterMakers.push(() => makeCharacter(
  5612. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5613. {
  5614. front: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(220, "lb"),
  5617. name: "Front",
  5618. image: {
  5619. source: "./media/characters/gemini/front.svg"
  5620. }
  5621. },
  5622. back: {
  5623. height: math.unit(6, "feet"),
  5624. weight: math.unit(220, "lb"),
  5625. name: "Back",
  5626. image: {
  5627. source: "./media/characters/gemini/back.svg"
  5628. }
  5629. },
  5630. kneeling: {
  5631. height: math.unit(6 / 1.5, "feet"),
  5632. weight: math.unit(220, "lb"),
  5633. name: "Kneeling",
  5634. image: {
  5635. source: "./media/characters/gemini/kneeling.svg",
  5636. bottom: 0.02
  5637. }
  5638. },
  5639. },
  5640. [
  5641. {
  5642. name: "Macro",
  5643. height: math.unit(300, "meters"),
  5644. default: true
  5645. },
  5646. {
  5647. name: "Megamacro",
  5648. height: math.unit(6900, "meters")
  5649. },
  5650. ]
  5651. ))
  5652. characterMakers.push(() => makeCharacter(
  5653. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5654. {
  5655. anthro: {
  5656. height: math.unit(2.35, "meters"),
  5657. weight: math.unit(73, "kg"),
  5658. name: "Anthro",
  5659. image: {
  5660. source: "./media/characters/alicia/anthro.svg",
  5661. extra: 2571 / 2385,
  5662. bottom: 75 / 2648
  5663. }
  5664. },
  5665. paw: {
  5666. height: math.unit(1.32, "feet"),
  5667. name: "Paw",
  5668. image: {
  5669. source: "./media/characters/alicia/paw.svg"
  5670. }
  5671. },
  5672. feral: {
  5673. height: math.unit(1.69, "meters"),
  5674. weight: math.unit(73, "kg"),
  5675. name: "Feral",
  5676. image: {
  5677. source: "./media/characters/alicia/feral.svg",
  5678. extra: 2123 / 1715,
  5679. bottom: 222 / 2349
  5680. }
  5681. },
  5682. },
  5683. [
  5684. {
  5685. name: "Normal",
  5686. height: math.unit(2.35, "meters")
  5687. },
  5688. {
  5689. name: "Macro",
  5690. height: math.unit(60, "meters"),
  5691. default: true
  5692. },
  5693. {
  5694. name: "Megamacro",
  5695. height: math.unit(10000, "kilometers")
  5696. },
  5697. ]
  5698. ))
  5699. characterMakers.push(() => makeCharacter(
  5700. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5701. {
  5702. front: {
  5703. height: math.unit(7, "feet"),
  5704. weight: math.unit(250, "lbs"),
  5705. name: "Front",
  5706. image: {
  5707. source: "./media/characters/archy/front.svg"
  5708. }
  5709. }
  5710. },
  5711. [
  5712. {
  5713. name: "Micro",
  5714. height: math.unit(1, "inch")
  5715. },
  5716. {
  5717. name: "Shorty",
  5718. height: math.unit(5, "feet")
  5719. },
  5720. {
  5721. name: "Normal",
  5722. height: math.unit(7, "feet")
  5723. },
  5724. {
  5725. name: "Macro",
  5726. height: math.unit(600, "meters"),
  5727. default: true
  5728. },
  5729. {
  5730. name: "Megamacro",
  5731. height: math.unit(1, "mile")
  5732. },
  5733. ]
  5734. ))
  5735. characterMakers.push(() => makeCharacter(
  5736. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5737. {
  5738. front: {
  5739. height: math.unit(1.65, "meters"),
  5740. weight: math.unit(74, "kg"),
  5741. name: "Front",
  5742. image: {
  5743. source: "./media/characters/berri/front.svg",
  5744. extra: 857 / 837,
  5745. bottom: 18 / 877
  5746. }
  5747. },
  5748. bum: {
  5749. height: math.unit(1.46, "feet"),
  5750. name: "Bum",
  5751. image: {
  5752. source: "./media/characters/berri/bum.svg"
  5753. }
  5754. },
  5755. mouth: {
  5756. height: math.unit(0.44, "feet"),
  5757. name: "Mouth",
  5758. image: {
  5759. source: "./media/characters/berri/mouth.svg"
  5760. }
  5761. },
  5762. paw: {
  5763. height: math.unit(0.826, "feet"),
  5764. name: "Paw",
  5765. image: {
  5766. source: "./media/characters/berri/paw.svg"
  5767. }
  5768. },
  5769. },
  5770. [
  5771. {
  5772. name: "Normal",
  5773. height: math.unit(1.65, "meters")
  5774. },
  5775. {
  5776. name: "Macro",
  5777. height: math.unit(60, "m"),
  5778. default: true
  5779. },
  5780. {
  5781. name: "Megamacro",
  5782. height: math.unit(9.213, "km")
  5783. },
  5784. {
  5785. name: "Planet Eater",
  5786. height: math.unit(489, "megameters")
  5787. },
  5788. {
  5789. name: "Teramacro",
  5790. height: math.unit(2471635000000, "meters")
  5791. },
  5792. {
  5793. name: "Examacro",
  5794. height: math.unit(8.0624e+26, "meters")
  5795. }
  5796. ]
  5797. ))
  5798. characterMakers.push(() => makeCharacter(
  5799. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5800. {
  5801. front: {
  5802. height: math.unit(1.72, "meters"),
  5803. weight: math.unit(68, "kg"),
  5804. name: "Front",
  5805. image: {
  5806. source: "./media/characters/lexi/front.svg"
  5807. }
  5808. }
  5809. },
  5810. [
  5811. {
  5812. name: "Very Smol",
  5813. height: math.unit(10, "mm")
  5814. },
  5815. {
  5816. name: "Micro",
  5817. height: math.unit(6.8, "cm"),
  5818. default: true
  5819. },
  5820. {
  5821. name: "Normal",
  5822. height: math.unit(1.72, "m")
  5823. }
  5824. ]
  5825. ))
  5826. characterMakers.push(() => makeCharacter(
  5827. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5828. {
  5829. front: {
  5830. height: math.unit(1.69, "meters"),
  5831. weight: math.unit(68, "kg"),
  5832. name: "Front",
  5833. image: {
  5834. source: "./media/characters/martin/front.svg",
  5835. extra: 596 / 581
  5836. }
  5837. }
  5838. },
  5839. [
  5840. {
  5841. name: "Micro",
  5842. height: math.unit(6.85, "cm"),
  5843. default: true
  5844. },
  5845. {
  5846. name: "Normal",
  5847. height: math.unit(1.69, "m")
  5848. }
  5849. ]
  5850. ))
  5851. characterMakers.push(() => makeCharacter(
  5852. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5853. {
  5854. front: {
  5855. height: math.unit(1.69, "meters"),
  5856. weight: math.unit(68, "kg"),
  5857. name: "Front",
  5858. image: {
  5859. source: "./media/characters/juno/front.svg"
  5860. }
  5861. }
  5862. },
  5863. [
  5864. {
  5865. name: "Micro",
  5866. height: math.unit(7, "cm")
  5867. },
  5868. {
  5869. name: "Normal",
  5870. height: math.unit(1.89, "m")
  5871. },
  5872. {
  5873. name: "Macro",
  5874. height: math.unit(353, "meters"),
  5875. default: true
  5876. }
  5877. ]
  5878. ))
  5879. characterMakers.push(() => makeCharacter(
  5880. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5881. {
  5882. front: {
  5883. height: math.unit(1.93, "meters"),
  5884. weight: math.unit(83, "kg"),
  5885. name: "Front",
  5886. image: {
  5887. source: "./media/characters/samantha/front.svg"
  5888. }
  5889. },
  5890. frontClothed: {
  5891. height: math.unit(1.93, "meters"),
  5892. weight: math.unit(83, "kg"),
  5893. name: "Front (Clothed)",
  5894. image: {
  5895. source: "./media/characters/samantha/front-clothed.svg"
  5896. }
  5897. },
  5898. back: {
  5899. height: math.unit(1.93, "meters"),
  5900. weight: math.unit(83, "kg"),
  5901. name: "Back",
  5902. image: {
  5903. source: "./media/characters/samantha/back.svg"
  5904. }
  5905. },
  5906. },
  5907. [
  5908. {
  5909. name: "Normal",
  5910. height: math.unit(1.93, "m")
  5911. },
  5912. {
  5913. name: "Macro",
  5914. height: math.unit(74, "meters"),
  5915. default: true
  5916. },
  5917. {
  5918. name: "Macro+",
  5919. height: math.unit(223, "meters"),
  5920. },
  5921. {
  5922. name: "Megamacro",
  5923. height: math.unit(8381, "meters"),
  5924. },
  5925. {
  5926. name: "Megamacro+",
  5927. height: math.unit(12000, "kilometers")
  5928. },
  5929. ]
  5930. ))
  5931. characterMakers.push(() => makeCharacter(
  5932. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5933. {
  5934. front: {
  5935. height: math.unit(1.92, "meters"),
  5936. weight: math.unit(80, "kg"),
  5937. name: "Front",
  5938. image: {
  5939. source: "./media/characters/dr-clay/front.svg"
  5940. }
  5941. },
  5942. frontClothed: {
  5943. height: math.unit(1.92, "meters"),
  5944. weight: math.unit(80, "kg"),
  5945. name: "Front (Clothed)",
  5946. image: {
  5947. source: "./media/characters/dr-clay/front-clothed.svg"
  5948. }
  5949. }
  5950. },
  5951. [
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(1.92, "m")
  5955. },
  5956. {
  5957. name: "Macro",
  5958. height: math.unit(214, "meters"),
  5959. default: true
  5960. },
  5961. {
  5962. name: "Macro+",
  5963. height: math.unit(12.237, "meters"),
  5964. },
  5965. {
  5966. name: "Megamacro",
  5967. height: math.unit(557, "megameters"),
  5968. },
  5969. {
  5970. name: "Unimaginable",
  5971. height: math.unit(120e9, "lightyears")
  5972. },
  5973. ]
  5974. ))
  5975. characterMakers.push(() => makeCharacter(
  5976. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5977. {
  5978. front: {
  5979. height: math.unit(2, "meters"),
  5980. weight: math.unit(80, "kg"),
  5981. name: "Front",
  5982. image: {
  5983. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5984. }
  5985. }
  5986. },
  5987. [
  5988. {
  5989. name: "Teramacro",
  5990. height: math.unit(500000, "lightyears"),
  5991. default: true
  5992. },
  5993. ]
  5994. ))
  5995. characterMakers.push(() => makeCharacter(
  5996. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5997. {
  5998. front: {
  5999. height: math.unit(2, "meters"),
  6000. weight: math.unit(150, "kg"),
  6001. name: "Front",
  6002. image: {
  6003. source: "./media/characters/vemus/front.svg",
  6004. extra: 2384 / 2084,
  6005. bottom: 0.0123
  6006. }
  6007. }
  6008. },
  6009. [
  6010. {
  6011. name: "Normal",
  6012. height: math.unit(3.75, "meters"),
  6013. default: true
  6014. },
  6015. {
  6016. name: "Big",
  6017. height: math.unit(8, "meters")
  6018. },
  6019. {
  6020. name: "Macro",
  6021. height: math.unit(100, "meters")
  6022. },
  6023. {
  6024. name: "Macro+",
  6025. height: math.unit(1500, "meters")
  6026. },
  6027. {
  6028. name: "Stellar",
  6029. height: math.unit(14e8, "meters")
  6030. },
  6031. ]
  6032. ))
  6033. characterMakers.push(() => makeCharacter(
  6034. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6035. {
  6036. front: {
  6037. height: math.unit(2, "meters"),
  6038. weight: math.unit(70, "kg"),
  6039. name: "Front",
  6040. image: {
  6041. source: "./media/characters/beherit/front.svg",
  6042. extra: 1408 / 1242
  6043. }
  6044. }
  6045. },
  6046. [
  6047. {
  6048. name: "Normal",
  6049. height: math.unit(6, "feet")
  6050. },
  6051. {
  6052. name: "Lorg",
  6053. height: math.unit(25, "feet"),
  6054. default: true
  6055. },
  6056. {
  6057. name: "Lorger",
  6058. height: math.unit(75, "feet")
  6059. },
  6060. {
  6061. name: "Macro",
  6062. height: math.unit(200, "meters")
  6063. },
  6064. ]
  6065. ))
  6066. characterMakers.push(() => makeCharacter(
  6067. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6068. {
  6069. front: {
  6070. height: math.unit(2, "meters"),
  6071. weight: math.unit(150, "kg"),
  6072. name: "Front",
  6073. image: {
  6074. source: "./media/characters/everett/front.svg",
  6075. extra: 2038 / 1737,
  6076. bottom: 0.03
  6077. }
  6078. },
  6079. paw: {
  6080. height: math.unit(2 / 3.6, "meters"),
  6081. name: "Paw",
  6082. image: {
  6083. source: "./media/characters/everett/paw.svg"
  6084. }
  6085. },
  6086. },
  6087. [
  6088. {
  6089. name: "Normal",
  6090. height: math.unit(15, "feet"),
  6091. default: true
  6092. },
  6093. {
  6094. name: "Lorg",
  6095. height: math.unit(70, "feet"),
  6096. default: true
  6097. },
  6098. {
  6099. name: "Lorger",
  6100. height: math.unit(250, "feet")
  6101. },
  6102. {
  6103. name: "Macro",
  6104. height: math.unit(500, "meters")
  6105. },
  6106. ]
  6107. ))
  6108. characterMakers.push(() => makeCharacter(
  6109. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6110. {
  6111. front: {
  6112. height: math.unit(2, "meters"),
  6113. weight: math.unit(86, "kg"),
  6114. name: "Front",
  6115. image: {
  6116. source: "./media/characters/rose-lion/front.svg"
  6117. }
  6118. },
  6119. bent: {
  6120. height: math.unit(2 / 1.4288, "meters"),
  6121. weight: math.unit(86, "kg"),
  6122. name: "Bent",
  6123. image: {
  6124. source: "./media/characters/rose-lion/bent.svg"
  6125. }
  6126. }
  6127. },
  6128. [
  6129. {
  6130. name: "Mini-Micro",
  6131. height: math.unit(1, "cm")
  6132. },
  6133. {
  6134. name: "Micro",
  6135. height: math.unit(3.5, "inches"),
  6136. default: true
  6137. },
  6138. {
  6139. name: "Normal",
  6140. height: math.unit(6 + 1 / 6, "feet")
  6141. },
  6142. {
  6143. name: "Mini-Macro",
  6144. height: math.unit(9 + 10 / 12, "feet")
  6145. },
  6146. ]
  6147. ))
  6148. characterMakers.push(() => makeCharacter(
  6149. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6150. {
  6151. front: {
  6152. height: math.unit(2, "meters"),
  6153. weight: math.unit(350, "lbs"),
  6154. name: "Front",
  6155. image: {
  6156. source: "./media/characters/regal/front.svg"
  6157. }
  6158. },
  6159. back: {
  6160. height: math.unit(2, "meters"),
  6161. weight: math.unit(350, "lbs"),
  6162. name: "Back",
  6163. image: {
  6164. source: "./media/characters/regal/back.svg"
  6165. }
  6166. },
  6167. },
  6168. [
  6169. {
  6170. name: "Macro",
  6171. height: math.unit(350, "feet"),
  6172. default: true
  6173. }
  6174. ]
  6175. ))
  6176. characterMakers.push(() => makeCharacter(
  6177. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6178. {
  6179. front: {
  6180. height: math.unit(4 + 11 / 12, "feet"),
  6181. weight: math.unit(100, "lbs"),
  6182. name: "Front",
  6183. image: {
  6184. source: "./media/characters/opal/front.svg"
  6185. }
  6186. },
  6187. frontAlt: {
  6188. height: math.unit(4 + 11 / 12, "feet"),
  6189. weight: math.unit(100, "lbs"),
  6190. name: "Front (Alt)",
  6191. image: {
  6192. source: "./media/characters/opal/front-alt.svg"
  6193. }
  6194. },
  6195. },
  6196. [
  6197. {
  6198. name: "Small",
  6199. height: math.unit(4 + 11 / 12, "feet")
  6200. },
  6201. {
  6202. name: "Normal",
  6203. height: math.unit(20, "feet"),
  6204. default: true
  6205. },
  6206. {
  6207. name: "Macro",
  6208. height: math.unit(120, "feet")
  6209. },
  6210. {
  6211. name: "Megamacro",
  6212. height: math.unit(80, "miles")
  6213. },
  6214. {
  6215. name: "True Size",
  6216. height: math.unit(100000, "lightyears")
  6217. },
  6218. ]
  6219. ))
  6220. characterMakers.push(() => makeCharacter(
  6221. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6222. {
  6223. front: {
  6224. height: math.unit(6, "feet"),
  6225. weight: math.unit(200, "lbs"),
  6226. name: "Front",
  6227. image: {
  6228. source: "./media/characters/vector-wuff/front.svg"
  6229. }
  6230. }
  6231. },
  6232. [
  6233. {
  6234. name: "Normal",
  6235. height: math.unit(2.8, "meters")
  6236. },
  6237. {
  6238. name: "Macro",
  6239. height: math.unit(450, "meters"),
  6240. default: true
  6241. },
  6242. {
  6243. name: "Megamacro",
  6244. height: math.unit(15, "kilometers")
  6245. }
  6246. ]
  6247. ))
  6248. characterMakers.push(() => makeCharacter(
  6249. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6250. {
  6251. front: {
  6252. height: math.unit(6, "feet"),
  6253. weight: math.unit(256, "lbs"),
  6254. name: "Front",
  6255. image: {
  6256. source: "./media/characters/dannik/front.svg"
  6257. }
  6258. }
  6259. },
  6260. [
  6261. {
  6262. name: "Macro",
  6263. height: math.unit(69.57, "meters"),
  6264. default: true
  6265. },
  6266. ]
  6267. ))
  6268. characterMakers.push(() => makeCharacter(
  6269. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6270. {
  6271. front: {
  6272. height: math.unit(6, "feet"),
  6273. weight: math.unit(120, "lbs"),
  6274. name: "Front",
  6275. image: {
  6276. source: "./media/characters/azura-saharah/front.svg"
  6277. }
  6278. },
  6279. back: {
  6280. height: math.unit(6, "feet"),
  6281. weight: math.unit(120, "lbs"),
  6282. name: "Back",
  6283. image: {
  6284. source: "./media/characters/azura-saharah/back.svg"
  6285. }
  6286. },
  6287. },
  6288. [
  6289. {
  6290. name: "Macro",
  6291. height: math.unit(100, "feet"),
  6292. default: true
  6293. },
  6294. ]
  6295. ))
  6296. characterMakers.push(() => makeCharacter(
  6297. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6298. {
  6299. side: {
  6300. height: math.unit(5 + 4 / 12, "feet"),
  6301. weight: math.unit(163, "lbs"),
  6302. name: "Side",
  6303. image: {
  6304. source: "./media/characters/kennedy/side.svg"
  6305. }
  6306. }
  6307. },
  6308. [
  6309. {
  6310. name: "Standard Doggo",
  6311. height: math.unit(5 + 4 / 12, "feet")
  6312. },
  6313. {
  6314. name: "Big Doggo",
  6315. height: math.unit(25 + 3 / 12, "feet"),
  6316. default: true
  6317. },
  6318. ]
  6319. ))
  6320. characterMakers.push(() => makeCharacter(
  6321. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6322. {
  6323. front: {
  6324. height: math.unit(6, "feet"),
  6325. weight: math.unit(90, "lbs"),
  6326. name: "Front",
  6327. image: {
  6328. source: "./media/characters/odi-lunar/front.svg"
  6329. }
  6330. }
  6331. },
  6332. [
  6333. {
  6334. name: "Micro",
  6335. height: math.unit(3, "inches"),
  6336. default: true
  6337. },
  6338. {
  6339. name: "Normal",
  6340. height: math.unit(5.5, "feet")
  6341. }
  6342. ]
  6343. ))
  6344. characterMakers.push(() => makeCharacter(
  6345. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6346. {
  6347. back: {
  6348. height: math.unit(6, "feet"),
  6349. weight: math.unit(220, "lbs"),
  6350. name: "Back",
  6351. image: {
  6352. source: "./media/characters/mandake/back.svg"
  6353. }
  6354. }
  6355. },
  6356. [
  6357. {
  6358. name: "Normal",
  6359. height: math.unit(7, "feet"),
  6360. default: true
  6361. },
  6362. {
  6363. name: "Macro",
  6364. height: math.unit(78, "feet")
  6365. },
  6366. {
  6367. name: "Macro+",
  6368. height: math.unit(300, "meters")
  6369. },
  6370. {
  6371. name: "Macro++",
  6372. height: math.unit(2400, "feet")
  6373. },
  6374. {
  6375. name: "Megamacro",
  6376. height: math.unit(5167, "meters")
  6377. },
  6378. {
  6379. name: "Gigamacro",
  6380. height: math.unit(41769, "miles")
  6381. },
  6382. ]
  6383. ))
  6384. characterMakers.push(() => makeCharacter(
  6385. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6386. {
  6387. front: {
  6388. height: math.unit(6, "feet"),
  6389. weight: math.unit(120, "lbs"),
  6390. name: "Front",
  6391. image: {
  6392. source: "./media/characters/yozey/front.svg"
  6393. }
  6394. },
  6395. frontAlt: {
  6396. height: math.unit(6, "feet"),
  6397. weight: math.unit(120, "lbs"),
  6398. name: "Front (Alt)",
  6399. image: {
  6400. source: "./media/characters/yozey/front-alt.svg"
  6401. }
  6402. },
  6403. side: {
  6404. height: math.unit(6, "feet"),
  6405. weight: math.unit(120, "lbs"),
  6406. name: "Side",
  6407. image: {
  6408. source: "./media/characters/yozey/side.svg"
  6409. }
  6410. },
  6411. },
  6412. [
  6413. {
  6414. name: "Micro",
  6415. height: math.unit(3, "inches"),
  6416. default: true
  6417. },
  6418. {
  6419. name: "Normal",
  6420. height: math.unit(6, "feet")
  6421. }
  6422. ]
  6423. ))
  6424. characterMakers.push(() => makeCharacter(
  6425. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6426. {
  6427. front: {
  6428. height: math.unit(6, "feet"),
  6429. weight: math.unit(103, "lbs"),
  6430. name: "Front",
  6431. image: {
  6432. source: "./media/characters/valeska-voss/front.svg"
  6433. }
  6434. }
  6435. },
  6436. [
  6437. {
  6438. name: "Mini-Sized Sub",
  6439. height: math.unit(3.1, "inches")
  6440. },
  6441. {
  6442. name: "Mid-Sized Sub",
  6443. height: math.unit(6.2, "inches")
  6444. },
  6445. {
  6446. name: "Full-Sized Sub",
  6447. height: math.unit(9.3, "inches")
  6448. },
  6449. {
  6450. name: "Normal",
  6451. height: math.unit(5 + 2 / 12, "foot"),
  6452. default: true
  6453. },
  6454. ]
  6455. ))
  6456. characterMakers.push(() => makeCharacter(
  6457. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6458. {
  6459. front: {
  6460. height: math.unit(6, "feet"),
  6461. weight: math.unit(160, "lbs"),
  6462. name: "Front",
  6463. image: {
  6464. source: "./media/characters/gene-zeta/front.svg",
  6465. bottom: 0.03,
  6466. extra: 1
  6467. }
  6468. }
  6469. },
  6470. [
  6471. {
  6472. name: "Normal",
  6473. height: math.unit(6.25, "foot"),
  6474. default: true
  6475. },
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6480. {
  6481. front: {
  6482. height: math.unit(6, "feet"),
  6483. weight: math.unit(350, "lbs"),
  6484. name: "Front",
  6485. image: {
  6486. source: "./media/characters/razinox/front.svg",
  6487. extra: 1686 / 1548,
  6488. bottom: 28.2 / 1868
  6489. }
  6490. },
  6491. back: {
  6492. height: math.unit(6, "feet"),
  6493. weight: math.unit(350, "lbs"),
  6494. name: "Back",
  6495. image: {
  6496. source: "./media/characters/razinox/back.svg",
  6497. extra: 1660 / 1590,
  6498. bottom: 15 / 1665
  6499. }
  6500. },
  6501. },
  6502. [
  6503. {
  6504. name: "Normal",
  6505. height: math.unit(10 + 8 / 12, "foot")
  6506. },
  6507. {
  6508. name: "Minimacro",
  6509. height: math.unit(15, "foot")
  6510. },
  6511. {
  6512. name: "Macro",
  6513. height: math.unit(60, "foot"),
  6514. default: true
  6515. },
  6516. {
  6517. name: "Megamacro",
  6518. height: math.unit(5, "miles")
  6519. },
  6520. {
  6521. name: "Gigamacro",
  6522. height: math.unit(6000, "miles")
  6523. },
  6524. ]
  6525. ))
  6526. characterMakers.push(() => makeCharacter(
  6527. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6528. {
  6529. front: {
  6530. height: math.unit(6, "feet"),
  6531. weight: math.unit(150, "lbs"),
  6532. name: "Front",
  6533. image: {
  6534. source: "./media/characters/cobalt/front.svg"
  6535. }
  6536. }
  6537. },
  6538. [
  6539. {
  6540. name: "Normal",
  6541. height: math.unit(8 + 1 / 12, "foot")
  6542. },
  6543. {
  6544. name: "Macro",
  6545. height: math.unit(111, "foot"),
  6546. default: true
  6547. },
  6548. {
  6549. name: "Supracosmic",
  6550. height: math.unit(1e42, "feet")
  6551. },
  6552. ]
  6553. ))
  6554. characterMakers.push(() => makeCharacter(
  6555. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6556. {
  6557. front: {
  6558. height: math.unit(6, "feet"),
  6559. weight: math.unit(140, "lbs"),
  6560. name: "Front",
  6561. image: {
  6562. source: "./media/characters/amanda/front.svg"
  6563. }
  6564. }
  6565. },
  6566. [
  6567. {
  6568. name: "Micro",
  6569. height: math.unit(5, "inches"),
  6570. default: true
  6571. },
  6572. ]
  6573. ))
  6574. characterMakers.push(() => makeCharacter(
  6575. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6576. {
  6577. front: {
  6578. height: math.unit(5.59, "feet"),
  6579. weight: math.unit(250, "lbs"),
  6580. name: "Front",
  6581. image: {
  6582. source: "./media/characters/teal/front.svg"
  6583. }
  6584. },
  6585. frontAlt: {
  6586. height: math.unit(6, "feet"),
  6587. weight: math.unit(250, "lbs"),
  6588. name: "Front (Alt)",
  6589. image: {
  6590. source: "./media/characters/teal/front-alt.svg",
  6591. bottom: 0.04,
  6592. extra: 1
  6593. }
  6594. },
  6595. },
  6596. [
  6597. {
  6598. name: "Normal",
  6599. height: math.unit(12, "feet"),
  6600. default: true
  6601. },
  6602. {
  6603. name: "Macro",
  6604. height: math.unit(300, "feet")
  6605. },
  6606. ]
  6607. ))
  6608. characterMakers.push(() => makeCharacter(
  6609. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6610. {
  6611. frontCat: {
  6612. height: math.unit(6, "feet"),
  6613. weight: math.unit(180, "lbs"),
  6614. name: "Front (Cat)",
  6615. image: {
  6616. source: "./media/characters/ravin-amulet/front-cat.svg"
  6617. }
  6618. },
  6619. frontCatAlt: {
  6620. height: math.unit(6, "feet"),
  6621. weight: math.unit(180, "lbs"),
  6622. name: "Front (Alt, Cat)",
  6623. image: {
  6624. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6625. }
  6626. },
  6627. frontWerewolf: {
  6628. height: math.unit(6 * 1.2, "feet"),
  6629. weight: math.unit(225, "lbs"),
  6630. name: "Front (Werewolf)",
  6631. image: {
  6632. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6633. }
  6634. },
  6635. backWerewolf: {
  6636. height: math.unit(6 * 1.2, "feet"),
  6637. weight: math.unit(225, "lbs"),
  6638. name: "Back (Werewolf)",
  6639. image: {
  6640. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6641. }
  6642. },
  6643. },
  6644. [
  6645. {
  6646. name: "Nano",
  6647. height: math.unit(1, "micrometer")
  6648. },
  6649. {
  6650. name: "Micro",
  6651. height: math.unit(1, "inch")
  6652. },
  6653. {
  6654. name: "Normal",
  6655. height: math.unit(6, "feet"),
  6656. default: true
  6657. },
  6658. {
  6659. name: "Macro",
  6660. height: math.unit(60, "feet")
  6661. }
  6662. ]
  6663. ))
  6664. characterMakers.push(() => makeCharacter(
  6665. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6666. {
  6667. front: {
  6668. height: math.unit(6, "feet"),
  6669. weight: math.unit(165, "lbs"),
  6670. name: "Front",
  6671. image: {
  6672. source: "./media/characters/fluoresce/front.svg"
  6673. }
  6674. }
  6675. },
  6676. [
  6677. {
  6678. name: "Micro",
  6679. height: math.unit(6, "cm")
  6680. },
  6681. {
  6682. name: "Normal",
  6683. height: math.unit(5 + 7 / 12, "feet"),
  6684. default: true
  6685. },
  6686. {
  6687. name: "Macro",
  6688. height: math.unit(56, "feet")
  6689. },
  6690. {
  6691. name: "Megamacro",
  6692. height: math.unit(1.9, "miles")
  6693. },
  6694. ]
  6695. ))
  6696. characterMakers.push(() => makeCharacter(
  6697. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6698. {
  6699. front: {
  6700. height: math.unit(9 + 6 / 12, "feet"),
  6701. weight: math.unit(523, "lbs"),
  6702. name: "Side",
  6703. image: {
  6704. source: "./media/characters/aurora/side.svg"
  6705. }
  6706. }
  6707. },
  6708. [
  6709. {
  6710. name: "Normal",
  6711. height: math.unit(9 + 6 / 12, "feet")
  6712. },
  6713. {
  6714. name: "Macro",
  6715. height: math.unit(96, "feet"),
  6716. default: true
  6717. },
  6718. {
  6719. name: "Macro+",
  6720. height: math.unit(243, "feet")
  6721. },
  6722. ]
  6723. ))
  6724. characterMakers.push(() => makeCharacter(
  6725. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6726. {
  6727. front: {
  6728. height: math.unit(194, "cm"),
  6729. weight: math.unit(90, "kg"),
  6730. name: "Front",
  6731. image: {
  6732. source: "./media/characters/ranek/front.svg"
  6733. }
  6734. },
  6735. side: {
  6736. height: math.unit(194, "cm"),
  6737. weight: math.unit(90, "kg"),
  6738. name: "Side",
  6739. image: {
  6740. source: "./media/characters/ranek/side.svg"
  6741. }
  6742. },
  6743. back: {
  6744. height: math.unit(194, "cm"),
  6745. weight: math.unit(90, "kg"),
  6746. name: "Back",
  6747. image: {
  6748. source: "./media/characters/ranek/back.svg"
  6749. }
  6750. },
  6751. feral: {
  6752. height: math.unit(30, "cm"),
  6753. weight: math.unit(1.6, "lbs"),
  6754. name: "Feral",
  6755. image: {
  6756. source: "./media/characters/ranek/feral.svg"
  6757. }
  6758. },
  6759. },
  6760. [
  6761. {
  6762. name: "Normal",
  6763. height: math.unit(194, "cm"),
  6764. default: true
  6765. },
  6766. {
  6767. name: "Macro",
  6768. height: math.unit(100, "meters")
  6769. },
  6770. ]
  6771. ))
  6772. characterMakers.push(() => makeCharacter(
  6773. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6774. {
  6775. front: {
  6776. height: math.unit(5 + 6 / 12, "feet"),
  6777. weight: math.unit(153, "lbs"),
  6778. name: "Front",
  6779. image: {
  6780. source: "./media/characters/andrew-cooper/front.svg"
  6781. }
  6782. },
  6783. },
  6784. [
  6785. {
  6786. name: "Nano",
  6787. height: math.unit(1, "mm")
  6788. },
  6789. {
  6790. name: "Micro",
  6791. height: math.unit(2, "inches")
  6792. },
  6793. {
  6794. name: "Normal",
  6795. height: math.unit(5 + 6 / 12, "feet"),
  6796. default: true
  6797. }
  6798. ]
  6799. ))
  6800. characterMakers.push(() => makeCharacter(
  6801. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6802. {
  6803. front: {
  6804. height: math.unit(6, "feet"),
  6805. weight: math.unit(180, "lbs"),
  6806. name: "Front",
  6807. image: {
  6808. source: "./media/characters/akane-sato/front.svg",
  6809. extra: 1219 / 1140
  6810. }
  6811. },
  6812. back: {
  6813. height: math.unit(6, "feet"),
  6814. weight: math.unit(180, "lbs"),
  6815. name: "Back",
  6816. image: {
  6817. source: "./media/characters/akane-sato/back.svg",
  6818. extra: 1219 / 1170
  6819. }
  6820. },
  6821. },
  6822. [
  6823. {
  6824. name: "Normal",
  6825. height: math.unit(2.5, "meters")
  6826. },
  6827. {
  6828. name: "Macro",
  6829. height: math.unit(250, "meters"),
  6830. default: true
  6831. },
  6832. {
  6833. name: "Megamacro",
  6834. height: math.unit(25, "km")
  6835. },
  6836. ]
  6837. ))
  6838. characterMakers.push(() => makeCharacter(
  6839. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6840. {
  6841. front: {
  6842. height: math.unit(6, "feet"),
  6843. weight: math.unit(65, "kg"),
  6844. name: "Front",
  6845. image: {
  6846. source: "./media/characters/rook/front.svg",
  6847. extra: 960 / 950
  6848. }
  6849. }
  6850. },
  6851. [
  6852. {
  6853. name: "Normal",
  6854. height: math.unit(8.8, "feet")
  6855. },
  6856. {
  6857. name: "Macro",
  6858. height: math.unit(88, "feet"),
  6859. default: true
  6860. },
  6861. {
  6862. name: "Megamacro",
  6863. height: math.unit(8, "miles")
  6864. },
  6865. ]
  6866. ))
  6867. characterMakers.push(() => makeCharacter(
  6868. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6869. {
  6870. front: {
  6871. height: math.unit(12 + 2 / 12, "feet"),
  6872. weight: math.unit(808, "lbs"),
  6873. name: "Front",
  6874. image: {
  6875. source: "./media/characters/prodigy/front.svg"
  6876. }
  6877. }
  6878. },
  6879. [
  6880. {
  6881. name: "Normal",
  6882. height: math.unit(12 + 2 / 12, "feet"),
  6883. default: true
  6884. },
  6885. {
  6886. name: "Macro",
  6887. height: math.unit(143, "feet")
  6888. },
  6889. {
  6890. name: "Macro+",
  6891. height: math.unit(400, "feet")
  6892. },
  6893. ]
  6894. ))
  6895. characterMakers.push(() => makeCharacter(
  6896. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6897. {
  6898. front: {
  6899. height: math.unit(6, "feet"),
  6900. weight: math.unit(225, "lbs"),
  6901. name: "Front",
  6902. image: {
  6903. source: "./media/characters/daniel/front.svg"
  6904. }
  6905. },
  6906. leaning: {
  6907. height: math.unit(6, "feet"),
  6908. weight: math.unit(225, "lbs"),
  6909. name: "Leaning",
  6910. image: {
  6911. source: "./media/characters/daniel/leaning.svg"
  6912. }
  6913. },
  6914. },
  6915. [
  6916. {
  6917. name: "Macro",
  6918. height: math.unit(1000, "feet"),
  6919. default: true
  6920. },
  6921. ]
  6922. ))
  6923. characterMakers.push(() => makeCharacter(
  6924. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6925. {
  6926. front: {
  6927. height: math.unit(6, "feet"),
  6928. weight: math.unit(88, "lbs"),
  6929. name: "Front",
  6930. image: {
  6931. source: "./media/characters/chiros/front.svg",
  6932. extra: 306 / 226
  6933. }
  6934. },
  6935. side: {
  6936. height: math.unit(6, "feet"),
  6937. weight: math.unit(88, "lbs"),
  6938. name: "Side",
  6939. image: {
  6940. source: "./media/characters/chiros/side.svg",
  6941. extra: 306 / 226
  6942. }
  6943. },
  6944. },
  6945. [
  6946. {
  6947. name: "Normal",
  6948. height: math.unit(6, "cm"),
  6949. default: true
  6950. },
  6951. ]
  6952. ))
  6953. characterMakers.push(() => makeCharacter(
  6954. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6955. {
  6956. front: {
  6957. height: math.unit(6, "feet"),
  6958. weight: math.unit(100, "lbs"),
  6959. name: "Front",
  6960. image: {
  6961. source: "./media/characters/selka/front.svg",
  6962. extra: 947 / 887
  6963. }
  6964. }
  6965. },
  6966. [
  6967. {
  6968. name: "Normal",
  6969. height: math.unit(5, "cm"),
  6970. default: true
  6971. },
  6972. ]
  6973. ))
  6974. characterMakers.push(() => makeCharacter(
  6975. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6976. {
  6977. front: {
  6978. height: math.unit(8 + 3 / 12, "feet"),
  6979. weight: math.unit(424, "lbs"),
  6980. name: "Front",
  6981. image: {
  6982. source: "./media/characters/verin/front.svg",
  6983. extra: 1845 / 1550
  6984. }
  6985. },
  6986. frontArmored: {
  6987. height: math.unit(8 + 3 / 12, "feet"),
  6988. weight: math.unit(424, "lbs"),
  6989. name: "Front (Armored)",
  6990. image: {
  6991. source: "./media/characters/verin/front-armor.svg",
  6992. extra: 1845 / 1550,
  6993. bottom: 0.01
  6994. }
  6995. },
  6996. back: {
  6997. height: math.unit(8 + 3 / 12, "feet"),
  6998. weight: math.unit(424, "lbs"),
  6999. name: "Back",
  7000. image: {
  7001. source: "./media/characters/verin/back.svg",
  7002. bottom: 0.1,
  7003. extra: 1
  7004. }
  7005. },
  7006. foot: {
  7007. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7008. name: "Foot",
  7009. image: {
  7010. source: "./media/characters/verin/foot.svg"
  7011. }
  7012. },
  7013. },
  7014. [
  7015. {
  7016. name: "Normal",
  7017. height: math.unit(8 + 3 / 12, "feet")
  7018. },
  7019. {
  7020. name: "Minimacro",
  7021. height: math.unit(21, "feet"),
  7022. default: true
  7023. },
  7024. {
  7025. name: "Macro",
  7026. height: math.unit(626, "feet")
  7027. },
  7028. ]
  7029. ))
  7030. characterMakers.push(() => makeCharacter(
  7031. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7032. {
  7033. front: {
  7034. height: math.unit(2.718, "meters"),
  7035. weight: math.unit(150, "lbs"),
  7036. name: "Front",
  7037. image: {
  7038. source: "./media/characters/sovrim-terraquian/front.svg"
  7039. }
  7040. },
  7041. back: {
  7042. height: math.unit(2.718, "meters"),
  7043. weight: math.unit(150, "lbs"),
  7044. name: "Back",
  7045. image: {
  7046. source: "./media/characters/sovrim-terraquian/back.svg"
  7047. }
  7048. }
  7049. },
  7050. [
  7051. {
  7052. name: "Micro",
  7053. height: math.unit(2, "inches")
  7054. },
  7055. {
  7056. name: "Small",
  7057. height: math.unit(1, "meter")
  7058. },
  7059. {
  7060. name: "Normal",
  7061. height: math.unit(Math.E, "meters"),
  7062. default: true
  7063. },
  7064. {
  7065. name: "Macro",
  7066. height: math.unit(20, "meters")
  7067. },
  7068. {
  7069. name: "Macro+",
  7070. height: math.unit(400, "meters")
  7071. },
  7072. ]
  7073. ))
  7074. characterMakers.push(() => makeCharacter(
  7075. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7076. {
  7077. front: {
  7078. height: math.unit(7, "feet"),
  7079. weight: math.unit(489, "lbs"),
  7080. name: "Front",
  7081. image: {
  7082. source: "./media/characters/reece-silvermane/front.svg",
  7083. bottom: 0.02,
  7084. extra: 1
  7085. }
  7086. },
  7087. },
  7088. [
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(1.5, "miles"),
  7092. default: true
  7093. },
  7094. ]
  7095. ))
  7096. characterMakers.push(() => makeCharacter(
  7097. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7098. {
  7099. front: {
  7100. height: math.unit(6, "feet"),
  7101. weight: math.unit(78, "kg"),
  7102. name: "Front",
  7103. image: {
  7104. source: "./media/characters/kane/front.svg",
  7105. extra: 978 / 899
  7106. }
  7107. },
  7108. },
  7109. [
  7110. {
  7111. name: "Normal",
  7112. height: math.unit(2.1, "m"),
  7113. },
  7114. {
  7115. name: "Macro",
  7116. height: math.unit(1, "km"),
  7117. default: true
  7118. },
  7119. ]
  7120. ))
  7121. characterMakers.push(() => makeCharacter(
  7122. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7123. {
  7124. front: {
  7125. height: math.unit(6, "feet"),
  7126. weight: math.unit(200, "kg"),
  7127. name: "Front",
  7128. image: {
  7129. source: "./media/characters/tegon/front.svg",
  7130. bottom: 0.01,
  7131. extra: 1
  7132. }
  7133. },
  7134. },
  7135. [
  7136. {
  7137. name: "Micro",
  7138. height: math.unit(1, "inch")
  7139. },
  7140. {
  7141. name: "Normal",
  7142. height: math.unit(6 + 3 / 12, "feet"),
  7143. default: true
  7144. },
  7145. {
  7146. name: "Macro",
  7147. height: math.unit(300, "feet")
  7148. },
  7149. {
  7150. name: "Megamacro",
  7151. height: math.unit(69, "miles")
  7152. },
  7153. ]
  7154. ))
  7155. characterMakers.push(() => makeCharacter(
  7156. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7157. {
  7158. side: {
  7159. height: math.unit(6, "feet"),
  7160. weight: math.unit(2304, "lbs"),
  7161. name: "Side",
  7162. image: {
  7163. source: "./media/characters/arcturax/side.svg",
  7164. extra: 790 / 376,
  7165. bottom: 0.01
  7166. }
  7167. },
  7168. },
  7169. [
  7170. {
  7171. name: "Micro",
  7172. height: math.unit(2, "inch")
  7173. },
  7174. {
  7175. name: "Normal",
  7176. height: math.unit(6, "feet")
  7177. },
  7178. {
  7179. name: "Macro",
  7180. height: math.unit(39, "feet"),
  7181. default: true
  7182. },
  7183. {
  7184. name: "Megamacro",
  7185. height: math.unit(7, "miles")
  7186. },
  7187. ]
  7188. ))
  7189. characterMakers.push(() => makeCharacter(
  7190. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7191. {
  7192. front: {
  7193. height: math.unit(6, "feet"),
  7194. weight: math.unit(50, "lbs"),
  7195. name: "Front",
  7196. image: {
  7197. source: "./media/characters/sentri/front.svg",
  7198. extra: 1750 / 1570,
  7199. bottom: 0.025
  7200. }
  7201. },
  7202. frontAlt: {
  7203. height: math.unit(6, "feet"),
  7204. weight: math.unit(50, "lbs"),
  7205. name: "Front (Alt)",
  7206. image: {
  7207. source: "./media/characters/sentri/front-alt.svg",
  7208. extra: 1750 / 1570,
  7209. bottom: 0.025
  7210. }
  7211. },
  7212. },
  7213. [
  7214. {
  7215. name: "Normal",
  7216. height: math.unit(15, "feet"),
  7217. default: true
  7218. },
  7219. {
  7220. name: "Macro",
  7221. height: math.unit(2500, "feet")
  7222. }
  7223. ]
  7224. ))
  7225. characterMakers.push(() => makeCharacter(
  7226. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7227. {
  7228. front: {
  7229. height: math.unit(5 + 8 / 12, "feet"),
  7230. weight: math.unit(130, "lbs"),
  7231. name: "Front",
  7232. image: {
  7233. source: "./media/characters/corvin/front.svg",
  7234. extra: 1803 / 1629
  7235. }
  7236. },
  7237. frontShirt: {
  7238. height: math.unit(5 + 8 / 12, "feet"),
  7239. weight: math.unit(130, "lbs"),
  7240. name: "Front (Shirt)",
  7241. image: {
  7242. source: "./media/characters/corvin/front-shirt.svg",
  7243. extra: 1803 / 1629
  7244. }
  7245. },
  7246. frontPoncho: {
  7247. height: math.unit(5 + 8 / 12, "feet"),
  7248. weight: math.unit(130, "lbs"),
  7249. name: "Front (Poncho)",
  7250. image: {
  7251. source: "./media/characters/corvin/front-poncho.svg",
  7252. extra: 1803 / 1629
  7253. }
  7254. },
  7255. side: {
  7256. height: math.unit(5 + 8 / 12, "feet"),
  7257. weight: math.unit(130, "lbs"),
  7258. name: "Side",
  7259. image: {
  7260. source: "./media/characters/corvin/side.svg",
  7261. extra: 1012 / 945
  7262. }
  7263. },
  7264. back: {
  7265. height: math.unit(5 + 8 / 12, "feet"),
  7266. weight: math.unit(130, "lbs"),
  7267. name: "Back",
  7268. image: {
  7269. source: "./media/characters/corvin/back.svg",
  7270. extra: 1803 / 1629
  7271. }
  7272. },
  7273. },
  7274. [
  7275. {
  7276. name: "Micro",
  7277. height: math.unit(3, "inches")
  7278. },
  7279. {
  7280. name: "Normal",
  7281. height: math.unit(5 + 8 / 12, "feet")
  7282. },
  7283. {
  7284. name: "Macro",
  7285. height: math.unit(300, "feet"),
  7286. default: true
  7287. },
  7288. {
  7289. name: "Megamacro",
  7290. height: math.unit(500, "miles")
  7291. }
  7292. ]
  7293. ))
  7294. characterMakers.push(() => makeCharacter(
  7295. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7296. {
  7297. front: {
  7298. height: math.unit(6, "feet"),
  7299. weight: math.unit(135, "lbs"),
  7300. name: "Front",
  7301. image: {
  7302. source: "./media/characters/q/front.svg",
  7303. extra: 854 / 752,
  7304. bottom: 0.005
  7305. }
  7306. },
  7307. back: {
  7308. height: math.unit(6, "feet"),
  7309. weight: math.unit(130, "lbs"),
  7310. name: "Back",
  7311. image: {
  7312. source: "./media/characters/q/back.svg",
  7313. extra: 854 / 752
  7314. }
  7315. },
  7316. },
  7317. [
  7318. {
  7319. name: "Macro",
  7320. height: math.unit(90, "feet"),
  7321. default: true
  7322. },
  7323. {
  7324. name: "Extra Macro",
  7325. height: math.unit(300, "feet"),
  7326. },
  7327. {
  7328. name: "BIG WALF",
  7329. height: math.unit(750, "feet"),
  7330. },
  7331. ]
  7332. ))
  7333. characterMakers.push(() => makeCharacter(
  7334. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7335. {
  7336. front: {
  7337. height: math.unit(6, "feet"),
  7338. weight: math.unit(150, "lbs"),
  7339. name: "Front",
  7340. image: {
  7341. source: "./media/characters/carley/front.svg",
  7342. extra: 3927 / 3540,
  7343. bottom: 29.2/735
  7344. }
  7345. }
  7346. },
  7347. [
  7348. {
  7349. name: "Normal",
  7350. height: math.unit(6 + 3 / 12, "feet")
  7351. },
  7352. {
  7353. name: "Macro",
  7354. height: math.unit(185, "feet"),
  7355. default: true
  7356. },
  7357. {
  7358. name: "Megamacro",
  7359. height: math.unit(8, "miles"),
  7360. },
  7361. ]
  7362. ))
  7363. characterMakers.push(() => makeCharacter(
  7364. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7365. {
  7366. front: {
  7367. height: math.unit(3, "feet"),
  7368. weight: math.unit(28, "lbs"),
  7369. name: "Front",
  7370. image: {
  7371. source: "./media/characters/citrine/front.svg"
  7372. }
  7373. }
  7374. },
  7375. [
  7376. {
  7377. name: "Normal",
  7378. height: math.unit(3, "feet"),
  7379. default: true
  7380. }
  7381. ]
  7382. ))
  7383. characterMakers.push(() => makeCharacter(
  7384. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7385. {
  7386. front: {
  7387. height: math.unit(14, "feet"),
  7388. weight: math.unit(1450, "kg"),
  7389. capacity: math.unit(15, "people"),
  7390. name: "Front",
  7391. image: {
  7392. source: "./media/characters/aura-starwind/front.svg",
  7393. extra: 1455 / 1335
  7394. }
  7395. },
  7396. side: {
  7397. height: math.unit(14, "feet"),
  7398. weight: math.unit(1450, "kg"),
  7399. capacity: math.unit(15, "people"),
  7400. name: "Side",
  7401. image: {
  7402. source: "./media/characters/aura-starwind/side.svg",
  7403. extra: 1654 / 1497
  7404. }
  7405. },
  7406. taur: {
  7407. height: math.unit(18, "feet"),
  7408. weight: math.unit(5500, "kg"),
  7409. capacity: math.unit(50, "people"),
  7410. name: "Taur",
  7411. image: {
  7412. source: "./media/characters/aura-starwind/taur.svg",
  7413. extra: 1760 / 1650
  7414. }
  7415. },
  7416. feral: {
  7417. height: math.unit(46, "feet"),
  7418. weight: math.unit(25000, "kg"),
  7419. capacity: math.unit(120, "people"),
  7420. name: "Feral",
  7421. image: {
  7422. source: "./media/characters/aura-starwind/feral.svg"
  7423. }
  7424. },
  7425. },
  7426. [
  7427. {
  7428. name: "Normal",
  7429. height: math.unit(14, "feet"),
  7430. default: true
  7431. },
  7432. {
  7433. name: "Macro",
  7434. height: math.unit(50, "meters")
  7435. },
  7436. {
  7437. name: "Megamacro",
  7438. height: math.unit(5000, "meters")
  7439. },
  7440. {
  7441. name: "Gigamacro",
  7442. height: math.unit(100000, "kilometers")
  7443. },
  7444. ]
  7445. ))
  7446. characterMakers.push(() => makeCharacter(
  7447. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7448. {
  7449. front: {
  7450. height: math.unit(2 + 7 / 12, "feet"),
  7451. weight: math.unit(32, "lbs"),
  7452. name: "Front",
  7453. image: {
  7454. source: "./media/characters/rivet/front.svg",
  7455. extra: 1716 / 1658,
  7456. bottom: 0.03
  7457. }
  7458. },
  7459. foot: {
  7460. height: math.unit(0.551, "feet"),
  7461. name: "Rivet's Foot",
  7462. image: {
  7463. source: "./media/characters/rivet/foot.svg"
  7464. },
  7465. rename: true
  7466. }
  7467. },
  7468. [
  7469. {
  7470. name: "Micro",
  7471. height: math.unit(1.5, "inches"),
  7472. },
  7473. {
  7474. name: "Normal",
  7475. height: math.unit(2 + 7 / 12, "feet"),
  7476. default: true
  7477. },
  7478. {
  7479. name: "Macro",
  7480. height: math.unit(85, "feet")
  7481. },
  7482. {
  7483. name: "Megamacro",
  7484. height: math.unit(2.2, "km")
  7485. }
  7486. ]
  7487. ))
  7488. characterMakers.push(() => makeCharacter(
  7489. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7490. {
  7491. front: {
  7492. height: math.unit(5 + 9 / 12, "feet"),
  7493. weight: math.unit(150, "lbs"),
  7494. name: "Front",
  7495. image: {
  7496. source: "./media/characters/coffee/front.svg",
  7497. extra: 3666 / 3032,
  7498. bottom: 0.04
  7499. }
  7500. },
  7501. foot: {
  7502. height: math.unit(1.29, "feet"),
  7503. name: "Foot",
  7504. image: {
  7505. source: "./media/characters/coffee/foot.svg"
  7506. }
  7507. },
  7508. },
  7509. [
  7510. {
  7511. name: "Micro",
  7512. height: math.unit(2, "inches"),
  7513. },
  7514. {
  7515. name: "Normal",
  7516. height: math.unit(5 + 9 / 12, "feet"),
  7517. default: true
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(800, "feet")
  7522. },
  7523. {
  7524. name: "Megamacro",
  7525. height: math.unit(25, "miles")
  7526. }
  7527. ]
  7528. ))
  7529. characterMakers.push(() => makeCharacter(
  7530. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7531. {
  7532. front: {
  7533. height: math.unit(6, "feet"),
  7534. weight: math.unit(200, "lbs"),
  7535. name: "Front",
  7536. image: {
  7537. source: "./media/characters/chari-gal/front.svg",
  7538. extra: 1568 / 1385,
  7539. bottom: 0.047
  7540. }
  7541. },
  7542. gigantamax: {
  7543. height: math.unit(6 * 16, "feet"),
  7544. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7545. name: "Gigantamax",
  7546. image: {
  7547. source: "./media/characters/chari-gal/gigantamax.svg",
  7548. extra: 1124 / 888,
  7549. bottom: 0.03
  7550. }
  7551. },
  7552. },
  7553. [
  7554. {
  7555. name: "Normal",
  7556. height: math.unit(5 + 7 / 12, "feet")
  7557. },
  7558. {
  7559. name: "Macro",
  7560. height: math.unit(200, "feet"),
  7561. default: true
  7562. }
  7563. ]
  7564. ))
  7565. characterMakers.push(() => makeCharacter(
  7566. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7567. {
  7568. front: {
  7569. height: math.unit(6, "feet"),
  7570. weight: math.unit(150, "lbs"),
  7571. name: "Front",
  7572. image: {
  7573. source: "./media/characters/nova/front.svg",
  7574. extra: 5000 / 4722,
  7575. bottom: 0.02
  7576. }
  7577. }
  7578. },
  7579. [
  7580. {
  7581. name: "Micro-",
  7582. height: math.unit(0.8, "inches")
  7583. },
  7584. {
  7585. name: "Micro",
  7586. height: math.unit(2, "inches"),
  7587. default: true
  7588. },
  7589. ]
  7590. ))
  7591. characterMakers.push(() => makeCharacter(
  7592. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7593. {
  7594. front: {
  7595. height: math.unit(3 + 1 / 12, "feet"),
  7596. weight: math.unit(21.7, "lbs"),
  7597. name: "Front",
  7598. image: {
  7599. source: "./media/characters/argent/front.svg",
  7600. extra: 1471 / 1331,
  7601. bottom: 100.8 / 1575.5
  7602. }
  7603. }
  7604. },
  7605. [
  7606. {
  7607. name: "Micro",
  7608. height: math.unit(2, "inches")
  7609. },
  7610. {
  7611. name: "Normal",
  7612. height: math.unit(3 + 1 / 12, "feet"),
  7613. default: true
  7614. },
  7615. {
  7616. name: "Macro",
  7617. height: math.unit(120, "feet")
  7618. },
  7619. ]
  7620. ))
  7621. characterMakers.push(() => makeCharacter(
  7622. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7623. {
  7624. lamp: {
  7625. height: math.unit(7 * 1559 / 989, "feet"),
  7626. name: "Magic Lamp",
  7627. image: {
  7628. source: "./media/characters/mira-al-cul/lamp.svg",
  7629. extra: 1617 / 1559
  7630. }
  7631. },
  7632. front: {
  7633. height: math.unit(7, "feet"),
  7634. name: "Front",
  7635. image: {
  7636. source: "./media/characters/mira-al-cul/front.svg",
  7637. extra: 1044 / 990
  7638. }
  7639. },
  7640. },
  7641. [
  7642. {
  7643. name: "Heavily Restricted",
  7644. height: math.unit(7 * 1559 / 989, "feet")
  7645. },
  7646. {
  7647. name: "Freshly Freed",
  7648. height: math.unit(50 * 1559 / 989, "feet")
  7649. },
  7650. {
  7651. name: "World Encompassing",
  7652. height: math.unit(10000 * 1559 / 989, "miles")
  7653. },
  7654. {
  7655. name: "Galactic",
  7656. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7657. },
  7658. {
  7659. name: "Palmed Universe",
  7660. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7661. default: true
  7662. },
  7663. {
  7664. name: "Multiversal Matriarch",
  7665. height: math.unit(8.87e10, "yottameters")
  7666. },
  7667. {
  7668. name: "Void Mother",
  7669. height: math.unit(3.14e110, "yottaparsecs")
  7670. },
  7671. {
  7672. name: "Toying with Transcendence",
  7673. height: math.unit(1e307, "meters")
  7674. },
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7679. {
  7680. front: {
  7681. height: math.unit(17 + 1 / 12, "feet"),
  7682. weight: math.unit(476.2 * 5, "lbs"),
  7683. name: "Front",
  7684. image: {
  7685. source: "./media/characters/kuro-shi-uchū/front.svg",
  7686. extra: 2329 / 1835,
  7687. bottom: 0.02
  7688. }
  7689. },
  7690. },
  7691. [
  7692. {
  7693. name: "Micro",
  7694. height: math.unit(2, "inches")
  7695. },
  7696. {
  7697. name: "Normal",
  7698. height: math.unit(12, "meters")
  7699. },
  7700. {
  7701. name: "Planetary",
  7702. height: math.unit(0.00929, "AU"),
  7703. default: true
  7704. },
  7705. {
  7706. name: "Universal",
  7707. height: math.unit(20, "gigaparsecs")
  7708. },
  7709. ]
  7710. ))
  7711. characterMakers.push(() => makeCharacter(
  7712. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7713. {
  7714. front: {
  7715. height: math.unit(5 + 2 / 12, "feet"),
  7716. weight: math.unit(120, "lbs"),
  7717. name: "Front",
  7718. image: {
  7719. source: "./media/characters/katherine/front.svg",
  7720. extra: 2075 / 1969
  7721. }
  7722. },
  7723. dress: {
  7724. height: math.unit(5 + 2 / 12, "feet"),
  7725. weight: math.unit(120, "lbs"),
  7726. name: "Dress",
  7727. image: {
  7728. source: "./media/characters/katherine/dress.svg",
  7729. extra: 2258 / 2064
  7730. }
  7731. },
  7732. },
  7733. [
  7734. {
  7735. name: "Micro",
  7736. height: math.unit(1, "inches"),
  7737. default: true
  7738. },
  7739. {
  7740. name: "Normal",
  7741. height: math.unit(5 + 2 / 12, "feet")
  7742. },
  7743. {
  7744. name: "Macro",
  7745. height: math.unit(100, "meters")
  7746. },
  7747. {
  7748. name: "Megamacro",
  7749. height: math.unit(80, "miles")
  7750. },
  7751. ]
  7752. ))
  7753. characterMakers.push(() => makeCharacter(
  7754. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7755. {
  7756. front: {
  7757. height: math.unit(7 + 8 / 12, "feet"),
  7758. weight: math.unit(250, "lbs"),
  7759. name: "Front",
  7760. image: {
  7761. source: "./media/characters/yevis/front.svg",
  7762. extra: 1938 / 1755
  7763. }
  7764. }
  7765. },
  7766. [
  7767. {
  7768. name: "Mortal",
  7769. height: math.unit(7 + 8 / 12, "feet")
  7770. },
  7771. {
  7772. name: "Battle",
  7773. height: math.unit(25 + 11 / 12, "feet")
  7774. },
  7775. {
  7776. name: "Wrath",
  7777. height: math.unit(1654 + 11 / 12, "feet")
  7778. },
  7779. {
  7780. name: "Planet Destroyer",
  7781. height: math.unit(12000, "miles")
  7782. },
  7783. {
  7784. name: "Galaxy Conqueror",
  7785. height: math.unit(1.45, "zettameters"),
  7786. default: true
  7787. },
  7788. {
  7789. name: "Universal War",
  7790. height: math.unit(184, "gigaparsecs")
  7791. },
  7792. {
  7793. name: "Eternity War",
  7794. height: math.unit(1.98e55, "yottaparsecs")
  7795. },
  7796. ]
  7797. ))
  7798. characterMakers.push(() => makeCharacter(
  7799. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7800. {
  7801. front: {
  7802. height: math.unit(5 + 8 / 12, "feet"),
  7803. weight: math.unit(63, "kg"),
  7804. name: "Front",
  7805. image: {
  7806. source: "./media/characters/xavier/front.svg",
  7807. extra: 944 / 883
  7808. }
  7809. },
  7810. frontStretch: {
  7811. height: math.unit(5 + 8 / 12, "feet"),
  7812. weight: math.unit(63, "kg"),
  7813. name: "Stretching",
  7814. image: {
  7815. source: "./media/characters/xavier/front-stretch.svg",
  7816. extra: 962 / 820
  7817. }
  7818. },
  7819. },
  7820. [
  7821. {
  7822. name: "Normal",
  7823. height: math.unit(5 + 8 / 12, "feet")
  7824. },
  7825. {
  7826. name: "Macro",
  7827. height: math.unit(100, "meters"),
  7828. default: true
  7829. },
  7830. {
  7831. name: "McLargeHuge",
  7832. height: math.unit(10, "miles")
  7833. },
  7834. ]
  7835. ))
  7836. characterMakers.push(() => makeCharacter(
  7837. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7838. {
  7839. front: {
  7840. height: math.unit(5 + 5 / 12, "feet"),
  7841. weight: math.unit(150, "lb"),
  7842. name: "Front",
  7843. image: {
  7844. source: "./media/characters/joshii/front.svg"
  7845. }
  7846. },
  7847. foot: {
  7848. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7849. name: "Foot",
  7850. image: {
  7851. source: "./media/characters/joshii/foot.svg"
  7852. }
  7853. },
  7854. },
  7855. [
  7856. {
  7857. name: "Micro",
  7858. height: math.unit(2, "inches")
  7859. },
  7860. {
  7861. name: "Normal",
  7862. height: math.unit(5 + 5 / 12, "feet"),
  7863. default: true
  7864. },
  7865. {
  7866. name: "Macro",
  7867. height: math.unit(785, "feet")
  7868. },
  7869. {
  7870. name: "Megamacro",
  7871. height: math.unit(24.5, "miles")
  7872. },
  7873. ]
  7874. ))
  7875. characterMakers.push(() => makeCharacter(
  7876. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7877. {
  7878. front: {
  7879. height: math.unit(6, "feet"),
  7880. weight: math.unit(150, "lb"),
  7881. name: "Front",
  7882. image: {
  7883. source: "./media/characters/goddess-elizabeth/front.svg",
  7884. extra: 1800 / 1525,
  7885. bottom: 0.005
  7886. }
  7887. },
  7888. foot: {
  7889. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7890. name: "Foot",
  7891. image: {
  7892. source: "./media/characters/goddess-elizabeth/foot.svg"
  7893. }
  7894. },
  7895. mouth: {
  7896. height: math.unit(6, "feet"),
  7897. name: "Mouth",
  7898. image: {
  7899. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7900. }
  7901. },
  7902. },
  7903. [
  7904. {
  7905. name: "Micro",
  7906. height: math.unit(12, "feet")
  7907. },
  7908. {
  7909. name: "Normal",
  7910. height: math.unit(80, "miles"),
  7911. default: true
  7912. },
  7913. {
  7914. name: "Macro",
  7915. height: math.unit(15000, "parsecs")
  7916. },
  7917. ]
  7918. ))
  7919. characterMakers.push(() => makeCharacter(
  7920. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7921. {
  7922. front: {
  7923. height: math.unit(5 + 9 / 12, "feet"),
  7924. weight: math.unit(144, "lb"),
  7925. name: "Front",
  7926. image: {
  7927. source: "./media/characters/kara/front.svg"
  7928. }
  7929. },
  7930. feet: {
  7931. height: math.unit(6 / 6.765, "feet"),
  7932. name: "Kara's Feet",
  7933. rename: true,
  7934. image: {
  7935. source: "./media/characters/kara/feet.svg"
  7936. }
  7937. },
  7938. },
  7939. [
  7940. {
  7941. name: "Normal",
  7942. height: math.unit(5 + 9 / 12, "feet")
  7943. },
  7944. {
  7945. name: "Macro",
  7946. height: math.unit(174, "feet"),
  7947. default: true
  7948. },
  7949. ]
  7950. ))
  7951. characterMakers.push(() => makeCharacter(
  7952. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7953. {
  7954. front: {
  7955. height: math.unit(18, "feet"),
  7956. weight: math.unit(4050, "lb"),
  7957. name: "Front",
  7958. image: {
  7959. source: "./media/characters/tyrone/front.svg",
  7960. extra: 2520 / 2402,
  7961. bottom: 0.025
  7962. }
  7963. },
  7964. },
  7965. [
  7966. {
  7967. name: "Normal",
  7968. height: math.unit(18, "feet"),
  7969. default: true
  7970. },
  7971. {
  7972. name: "Macro",
  7973. height: math.unit(300, "feet")
  7974. },
  7975. ]
  7976. ))
  7977. characterMakers.push(() => makeCharacter(
  7978. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7979. {
  7980. front: {
  7981. height: math.unit(7 + 8 / 12, "feet"),
  7982. weight: math.unit(120, "lb"),
  7983. name: "Front",
  7984. image: {
  7985. source: "./media/characters/danny/front.svg",
  7986. extra: 1490 / 1350
  7987. }
  7988. },
  7989. back: {
  7990. height: math.unit(7 + 8 / 12, "feet"),
  7991. weight: math.unit(120, "lb"),
  7992. name: "Back",
  7993. image: {
  7994. source: "./media/characters/danny/back.svg",
  7995. extra: 1490 / 1350
  7996. }
  7997. },
  7998. },
  7999. [
  8000. {
  8001. name: "Normal",
  8002. height: math.unit(7 + 8 / 12, "feet"),
  8003. default: true
  8004. },
  8005. ]
  8006. ))
  8007. characterMakers.push(() => makeCharacter(
  8008. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8009. {
  8010. front: {
  8011. height: math.unit(3.5, "inches"),
  8012. weight: math.unit(19, "grams"),
  8013. name: "Front",
  8014. image: {
  8015. source: "./media/characters/mallow/front.svg",
  8016. extra: 471 / 431
  8017. }
  8018. },
  8019. back: {
  8020. height: math.unit(3.5, "inches"),
  8021. weight: math.unit(19, "grams"),
  8022. name: "Back",
  8023. image: {
  8024. source: "./media/characters/mallow/back.svg",
  8025. extra: 471 / 431
  8026. }
  8027. },
  8028. },
  8029. [
  8030. {
  8031. name: "Normal",
  8032. height: math.unit(3.5, "inches"),
  8033. default: true
  8034. },
  8035. ]
  8036. ))
  8037. characterMakers.push(() => makeCharacter(
  8038. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8039. {
  8040. front: {
  8041. height: math.unit(9, "feet"),
  8042. weight: math.unit(230, "kg"),
  8043. name: "Front",
  8044. image: {
  8045. source: "./media/characters/starry-aqua/front.svg"
  8046. }
  8047. },
  8048. back: {
  8049. height: math.unit(9, "feet"),
  8050. weight: math.unit(230, "kg"),
  8051. name: "Back",
  8052. image: {
  8053. source: "./media/characters/starry-aqua/back.svg"
  8054. }
  8055. },
  8056. hand: {
  8057. height: math.unit(9 * 0.1168, "feet"),
  8058. name: "Hand",
  8059. image: {
  8060. source: "./media/characters/starry-aqua/hand.svg"
  8061. }
  8062. },
  8063. foot: {
  8064. height: math.unit(9 * 0.18, "feet"),
  8065. name: "Foot",
  8066. image: {
  8067. source: "./media/characters/starry-aqua/foot.svg"
  8068. }
  8069. }
  8070. },
  8071. [
  8072. {
  8073. name: "Micro",
  8074. height: math.unit(3, "inches")
  8075. },
  8076. {
  8077. name: "Normal",
  8078. height: math.unit(9, "feet")
  8079. },
  8080. {
  8081. name: "Macro",
  8082. height: math.unit(300, "feet"),
  8083. default: true
  8084. },
  8085. {
  8086. name: "Megamacro",
  8087. height: math.unit(3200, "feet")
  8088. }
  8089. ]
  8090. ))
  8091. characterMakers.push(() => makeCharacter(
  8092. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8093. {
  8094. front: {
  8095. height: math.unit(6, "feet"),
  8096. weight: math.unit(230, "lb"),
  8097. name: "Front",
  8098. image: {
  8099. source: "./media/characters/luka/front.svg",
  8100. extra: 1,
  8101. bottom: 0.025
  8102. }
  8103. },
  8104. },
  8105. [
  8106. {
  8107. name: "Normal",
  8108. height: math.unit(12 + 8 / 12, "feet"),
  8109. default: true
  8110. },
  8111. {
  8112. name: "Minimacro",
  8113. height: math.unit(20, "feet")
  8114. },
  8115. {
  8116. name: "Macro",
  8117. height: math.unit(250, "feet")
  8118. },
  8119. {
  8120. name: "Megamacro",
  8121. height: math.unit(5, "miles")
  8122. },
  8123. {
  8124. name: "Gigamacro",
  8125. height: math.unit(8000, "miles")
  8126. },
  8127. ]
  8128. ))
  8129. characterMakers.push(() => makeCharacter(
  8130. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8131. {
  8132. front: {
  8133. height: math.unit(6, "feet"),
  8134. weight: math.unit(150, "lb"),
  8135. name: "Front",
  8136. image: {
  8137. source: "./media/characters/natalie-nightring/front.svg",
  8138. extra: 1,
  8139. bottom: 0.06
  8140. }
  8141. },
  8142. },
  8143. [
  8144. {
  8145. name: "Uh Oh",
  8146. height: math.unit(0.1, "mm")
  8147. },
  8148. {
  8149. name: "Small",
  8150. height: math.unit(3, "inches")
  8151. },
  8152. {
  8153. name: "Human Scale",
  8154. height: math.unit(6, "feet")
  8155. },
  8156. {
  8157. name: "Librarian",
  8158. height: math.unit(50, "feet"),
  8159. default: true
  8160. },
  8161. {
  8162. name: "Immense",
  8163. height: math.unit(200, "miles")
  8164. },
  8165. ]
  8166. ))
  8167. characterMakers.push(() => makeCharacter(
  8168. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8169. {
  8170. front: {
  8171. height: math.unit(6, "feet"),
  8172. weight: math.unit(180, "lbs"),
  8173. name: "Front",
  8174. image: {
  8175. source: "./media/characters/danni-rosie/front.svg",
  8176. extra: 1260 / 1128,
  8177. bottom: 0.022
  8178. }
  8179. },
  8180. },
  8181. [
  8182. {
  8183. name: "Micro",
  8184. height: math.unit(2, "inches"),
  8185. default: true
  8186. },
  8187. ]
  8188. ))
  8189. characterMakers.push(() => makeCharacter(
  8190. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8191. {
  8192. front: {
  8193. height: math.unit(5 + 9 / 12, "feet"),
  8194. weight: math.unit(220, "lb"),
  8195. name: "Front",
  8196. image: {
  8197. source: "./media/characters/samantha-kruse/front.svg",
  8198. extra: (985 / 935),
  8199. bottom: 0.03
  8200. }
  8201. },
  8202. frontUndressed: {
  8203. height: math.unit(5 + 9 / 12, "feet"),
  8204. weight: math.unit(220, "lb"),
  8205. name: "Front (Undressed)",
  8206. image: {
  8207. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8208. extra: (973 / 923),
  8209. bottom: 0.025
  8210. }
  8211. },
  8212. fat: {
  8213. height: math.unit(5 + 9 / 12, "feet"),
  8214. weight: math.unit(900, "lb"),
  8215. name: "Front (Fat)",
  8216. image: {
  8217. source: "./media/characters/samantha-kruse/fat.svg",
  8218. extra: 2688 / 2561
  8219. }
  8220. },
  8221. },
  8222. [
  8223. {
  8224. name: "Normal",
  8225. height: math.unit(5 + 9 / 12, "feet"),
  8226. default: true
  8227. }
  8228. ]
  8229. ))
  8230. characterMakers.push(() => makeCharacter(
  8231. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8232. {
  8233. back: {
  8234. height: math.unit(5 + 4 / 12, "feet"),
  8235. weight: math.unit(4963, "lb"),
  8236. name: "Back",
  8237. image: {
  8238. source: "./media/characters/amelia-rosie/back.svg",
  8239. extra: 1113 / 963,
  8240. bottom: 0.01
  8241. }
  8242. },
  8243. },
  8244. [
  8245. {
  8246. name: "Level 0",
  8247. height: math.unit(5 + 4 / 12, "feet")
  8248. },
  8249. {
  8250. name: "Level 1",
  8251. height: math.unit(164597, "feet"),
  8252. default: true
  8253. },
  8254. {
  8255. name: "Level 2",
  8256. height: math.unit(956243, "miles")
  8257. },
  8258. {
  8259. name: "Level 3",
  8260. height: math.unit(29421709423, "miles")
  8261. },
  8262. {
  8263. name: "Level 4",
  8264. height: math.unit(154, "lightyears")
  8265. },
  8266. {
  8267. name: "Level 5",
  8268. height: math.unit(4738272, "lightyears")
  8269. },
  8270. {
  8271. name: "Level 6",
  8272. height: math.unit(145787152896, "lightyears")
  8273. },
  8274. ]
  8275. ))
  8276. characterMakers.push(() => makeCharacter(
  8277. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8278. {
  8279. front: {
  8280. height: math.unit(5 + 11 / 12, "feet"),
  8281. weight: math.unit(65, "kg"),
  8282. name: "Front",
  8283. image: {
  8284. source: "./media/characters/rook-kitara/front.svg",
  8285. extra: 1347 / 1274,
  8286. bottom: 0.005
  8287. }
  8288. },
  8289. },
  8290. [
  8291. {
  8292. name: "Totally Unfair",
  8293. height: math.unit(1.8, "mm")
  8294. },
  8295. {
  8296. name: "Lap Rookie",
  8297. height: math.unit(1.4, "feet")
  8298. },
  8299. {
  8300. name: "Normal",
  8301. height: math.unit(5 + 11 / 12, "feet"),
  8302. default: true
  8303. },
  8304. {
  8305. name: "How Did This Happen",
  8306. height: math.unit(80, "miles")
  8307. }
  8308. ]
  8309. ))
  8310. characterMakers.push(() => makeCharacter(
  8311. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8312. {
  8313. front: {
  8314. height: math.unit(7, "feet"),
  8315. weight: math.unit(300, "lb"),
  8316. name: "Front",
  8317. image: {
  8318. source: "./media/characters/pisces/front.svg",
  8319. extra: 2255 / 2115,
  8320. bottom: 0.03
  8321. }
  8322. },
  8323. back: {
  8324. height: math.unit(7, "feet"),
  8325. weight: math.unit(300, "lb"),
  8326. name: "Back",
  8327. image: {
  8328. source: "./media/characters/pisces/back.svg",
  8329. extra: 2146 / 2055,
  8330. bottom: 0.04
  8331. }
  8332. },
  8333. },
  8334. [
  8335. {
  8336. name: "Normal",
  8337. height: math.unit(7, "feet"),
  8338. default: true
  8339. },
  8340. {
  8341. name: "Swimming Pool",
  8342. height: math.unit(12.2, "meters")
  8343. },
  8344. {
  8345. name: "Olympic Swimming Pool",
  8346. height: math.unit(56.3, "meters")
  8347. },
  8348. {
  8349. name: "Lake Superior",
  8350. height: math.unit(93900, "meters")
  8351. },
  8352. {
  8353. name: "Mediterranean Sea",
  8354. height: math.unit(644457, "meters")
  8355. },
  8356. {
  8357. name: "World's Oceans",
  8358. height: math.unit(4567491, "meters")
  8359. },
  8360. ]
  8361. ))
  8362. characterMakers.push(() => makeCharacter(
  8363. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8364. {
  8365. front: {
  8366. height: math.unit(2.3, "meters"),
  8367. weight: math.unit(120, "kg"),
  8368. name: "Front",
  8369. image: {
  8370. source: "./media/characters/zelas/front.svg"
  8371. }
  8372. },
  8373. side: {
  8374. height: math.unit(2.3, "meters"),
  8375. weight: math.unit(120, "kg"),
  8376. name: "Side",
  8377. image: {
  8378. source: "./media/characters/zelas/side.svg"
  8379. }
  8380. },
  8381. back: {
  8382. height: math.unit(2.3, "meters"),
  8383. weight: math.unit(120, "kg"),
  8384. name: "Back",
  8385. image: {
  8386. source: "./media/characters/zelas/back.svg"
  8387. }
  8388. },
  8389. foot: {
  8390. height: math.unit(1.116, "feet"),
  8391. name: "Foot",
  8392. image: {
  8393. source: "./media/characters/zelas/foot.svg"
  8394. }
  8395. },
  8396. },
  8397. [
  8398. {
  8399. name: "Normal",
  8400. height: math.unit(2.3, "meters")
  8401. },
  8402. {
  8403. name: "Macro",
  8404. height: math.unit(30, "meters"),
  8405. default: true
  8406. },
  8407. ]
  8408. ))
  8409. characterMakers.push(() => makeCharacter(
  8410. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8411. {
  8412. front: {
  8413. height: math.unit(1, "inch"),
  8414. weight: math.unit(0.21, "grams"),
  8415. name: "Front",
  8416. image: {
  8417. source: "./media/characters/talbot/front.svg",
  8418. extra: 594 / 544
  8419. }
  8420. },
  8421. },
  8422. [
  8423. {
  8424. name: "Micro",
  8425. height: math.unit(1, "inch"),
  8426. default: true
  8427. },
  8428. ]
  8429. ))
  8430. characterMakers.push(() => makeCharacter(
  8431. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8432. {
  8433. front: {
  8434. height: math.unit(3 + 3 / 12, "feet"),
  8435. weight: math.unit(51.8, "lb"),
  8436. name: "Front",
  8437. image: {
  8438. source: "./media/characters/fliss/front.svg",
  8439. extra: 840 / 640
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Teeny Tiny",
  8446. height: math.unit(1, "mm")
  8447. },
  8448. {
  8449. name: "Small",
  8450. height: math.unit(1, "inch"),
  8451. default: true
  8452. },
  8453. {
  8454. name: "Standard Sylveon",
  8455. height: math.unit(3 + 3 / 12, "feet")
  8456. },
  8457. {
  8458. name: "Large Nuisance",
  8459. height: math.unit(33, "feet")
  8460. },
  8461. {
  8462. name: "City Filler",
  8463. height: math.unit(3000, "feet")
  8464. },
  8465. {
  8466. name: "New Horizon",
  8467. height: math.unit(6000, "miles")
  8468. },
  8469. ]
  8470. ))
  8471. characterMakers.push(() => makeCharacter(
  8472. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8473. {
  8474. front: {
  8475. height: math.unit(5, "cm"),
  8476. weight: math.unit(1.94, "g"),
  8477. name: "Front",
  8478. image: {
  8479. source: "./media/characters/fleta/front.svg",
  8480. extra: 835 / 803
  8481. }
  8482. },
  8483. back: {
  8484. height: math.unit(5, "cm"),
  8485. weight: math.unit(1.94, "g"),
  8486. name: "Back",
  8487. image: {
  8488. source: "./media/characters/fleta/back.svg",
  8489. extra: 835 / 803
  8490. }
  8491. },
  8492. },
  8493. [
  8494. {
  8495. name: "Micro",
  8496. height: math.unit(5, "cm"),
  8497. default: true
  8498. },
  8499. ]
  8500. ))
  8501. characterMakers.push(() => makeCharacter(
  8502. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8503. {
  8504. front: {
  8505. height: math.unit(6, "feet"),
  8506. weight: math.unit(225, "lb"),
  8507. name: "Front",
  8508. image: {
  8509. source: "./media/characters/dominic/front.svg",
  8510. extra: 1770 / 1620,
  8511. bottom: 0.025
  8512. }
  8513. },
  8514. back: {
  8515. height: math.unit(6, "feet"),
  8516. weight: math.unit(225, "lb"),
  8517. name: "Back",
  8518. image: {
  8519. source: "./media/characters/dominic/back.svg",
  8520. extra: 1745 / 1620,
  8521. bottom: 0.065
  8522. }
  8523. },
  8524. },
  8525. [
  8526. {
  8527. name: "Nano",
  8528. height: math.unit(0.1, "mm")
  8529. },
  8530. {
  8531. name: "Micro-",
  8532. height: math.unit(1, "mm")
  8533. },
  8534. {
  8535. name: "Micro",
  8536. height: math.unit(4, "inches")
  8537. },
  8538. {
  8539. name: "Normal",
  8540. height: math.unit(6 + 4 / 12, "feet"),
  8541. default: true
  8542. },
  8543. {
  8544. name: "Macro",
  8545. height: math.unit(115, "feet")
  8546. },
  8547. {
  8548. name: "Macro+",
  8549. height: math.unit(955, "feet")
  8550. },
  8551. {
  8552. name: "Megamacro",
  8553. height: math.unit(8990, "feet")
  8554. },
  8555. {
  8556. name: "Gigmacro",
  8557. height: math.unit(9310, "miles")
  8558. },
  8559. {
  8560. name: "Teramacro",
  8561. height: math.unit(1567005010, "miles")
  8562. },
  8563. {
  8564. name: "Examacro",
  8565. height: math.unit(1425, "parsecs")
  8566. },
  8567. ]
  8568. ))
  8569. characterMakers.push(() => makeCharacter(
  8570. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8571. {
  8572. front: {
  8573. height: math.unit(400, "feet"),
  8574. weight: math.unit(44444444, "lb"),
  8575. name: "Front",
  8576. image: {
  8577. source: "./media/characters/major-colonel/front.svg"
  8578. }
  8579. },
  8580. back: {
  8581. height: math.unit(400, "feet"),
  8582. weight: math.unit(44444444, "lb"),
  8583. name: "Back",
  8584. image: {
  8585. source: "./media/characters/major-colonel/back.svg"
  8586. }
  8587. },
  8588. },
  8589. [
  8590. {
  8591. name: "Macro",
  8592. height: math.unit(400, "feet"),
  8593. default: true
  8594. },
  8595. ]
  8596. ))
  8597. characterMakers.push(() => makeCharacter(
  8598. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8599. {
  8600. catFront: {
  8601. height: math.unit(6, "feet"),
  8602. weight: math.unit(120, "lb"),
  8603. name: "Front (Cat Side)",
  8604. image: {
  8605. source: "./media/characters/axel-lycan/cat-front.svg",
  8606. extra: 430 / 402,
  8607. bottom: 43 / 472.35
  8608. }
  8609. },
  8610. catBack: {
  8611. height: math.unit(6, "feet"),
  8612. weight: math.unit(120, "lb"),
  8613. name: "Back (Cat Side)",
  8614. image: {
  8615. source: "./media/characters/axel-lycan/cat-back.svg",
  8616. extra: 447 / 419,
  8617. bottom: 23.3 / 469
  8618. }
  8619. },
  8620. wolfFront: {
  8621. height: math.unit(6, "feet"),
  8622. weight: math.unit(120, "lb"),
  8623. name: "Front (Wolf Side)",
  8624. image: {
  8625. source: "./media/characters/axel-lycan/wolf-front.svg",
  8626. extra: 485 / 456,
  8627. bottom: 19 / 504
  8628. }
  8629. },
  8630. wolfBack: {
  8631. height: math.unit(6, "feet"),
  8632. weight: math.unit(120, "lb"),
  8633. name: "Back (Wolf Side)",
  8634. image: {
  8635. source: "./media/characters/axel-lycan/wolf-back.svg",
  8636. extra: 475 / 438,
  8637. bottom: 39.2 / 514
  8638. }
  8639. },
  8640. },
  8641. [
  8642. {
  8643. name: "Macro",
  8644. height: math.unit(1, "km"),
  8645. default: true
  8646. },
  8647. ]
  8648. ))
  8649. characterMakers.push(() => makeCharacter(
  8650. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8651. {
  8652. front: {
  8653. height: math.unit(5 + 9 / 12, "feet"),
  8654. weight: math.unit(175, "lb"),
  8655. name: "Front",
  8656. image: {
  8657. source: "./media/characters/vanrel-hyena/front.svg",
  8658. extra: 1086 / 1010,
  8659. bottom: 0.04
  8660. }
  8661. },
  8662. },
  8663. [
  8664. {
  8665. name: "Normal",
  8666. height: math.unit(5 + 9 / 12, "feet"),
  8667. default: true
  8668. },
  8669. ]
  8670. ))
  8671. characterMakers.push(() => makeCharacter(
  8672. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8673. {
  8674. front: {
  8675. height: math.unit(6, "feet"),
  8676. weight: math.unit(103, "lb"),
  8677. name: "Front",
  8678. image: {
  8679. source: "./media/characters/abbott-absol/front.svg",
  8680. extra: 2010 / 1842
  8681. }
  8682. },
  8683. },
  8684. [
  8685. {
  8686. name: "Megamicro",
  8687. height: math.unit(0.1, "mm")
  8688. },
  8689. {
  8690. name: "Micro",
  8691. height: math.unit(1, "inch")
  8692. },
  8693. {
  8694. name: "Normal",
  8695. height: math.unit(6, "feet"),
  8696. default: true
  8697. },
  8698. ]
  8699. ))
  8700. characterMakers.push(() => makeCharacter(
  8701. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8702. {
  8703. front: {
  8704. height: math.unit(6, "feet"),
  8705. weight: math.unit(264, "lb"),
  8706. name: "Front",
  8707. image: {
  8708. source: "./media/characters/hector/front.svg",
  8709. extra: 2280 / 2130,
  8710. bottom: 0.07
  8711. }
  8712. },
  8713. },
  8714. [
  8715. {
  8716. name: "Normal",
  8717. height: math.unit(12.25, "foot"),
  8718. default: true
  8719. },
  8720. {
  8721. name: "Macro",
  8722. height: math.unit(160, "feet")
  8723. },
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(6, "feet"),
  8731. weight: math.unit(150, "lb"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/sal/front.svg",
  8735. extra: 1846 / 1699,
  8736. bottom: 0.04
  8737. }
  8738. },
  8739. },
  8740. [
  8741. {
  8742. name: "Megamacro",
  8743. height: math.unit(10, "miles"),
  8744. default: true
  8745. },
  8746. ]
  8747. ))
  8748. characterMakers.push(() => makeCharacter(
  8749. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8750. {
  8751. front: {
  8752. height: math.unit(3, "meters"),
  8753. weight: math.unit(450, "kg"),
  8754. name: "front",
  8755. image: {
  8756. source: "./media/characters/ranger/front.svg",
  8757. extra: 2401 / 2243,
  8758. bottom: 0.05
  8759. }
  8760. },
  8761. },
  8762. [
  8763. {
  8764. name: "Normal",
  8765. height: math.unit(3, "meters"),
  8766. default: true
  8767. },
  8768. ]
  8769. ))
  8770. characterMakers.push(() => makeCharacter(
  8771. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8772. {
  8773. front: {
  8774. height: math.unit(14, "feet"),
  8775. weight: math.unit(800, "kg"),
  8776. name: "Front",
  8777. image: {
  8778. source: "./media/characters/theresa/front.svg",
  8779. extra: 3575 / 3346,
  8780. bottom: 0.03
  8781. }
  8782. },
  8783. },
  8784. [
  8785. {
  8786. name: "Normal",
  8787. height: math.unit(14, "feet"),
  8788. default: true
  8789. },
  8790. ]
  8791. ))
  8792. characterMakers.push(() => makeCharacter(
  8793. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8794. {
  8795. front: {
  8796. height: math.unit(6, "feet"),
  8797. weight: math.unit(3, "kg"),
  8798. name: "Front",
  8799. image: {
  8800. source: "./media/characters/ine/front.svg",
  8801. extra: 678 / 539,
  8802. bottom: 0.023
  8803. }
  8804. },
  8805. },
  8806. [
  8807. {
  8808. name: "Normal",
  8809. height: math.unit(2.265, "feet"),
  8810. default: true
  8811. },
  8812. ]
  8813. ))
  8814. characterMakers.push(() => makeCharacter(
  8815. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8816. {
  8817. front: {
  8818. height: math.unit(5, "feet"),
  8819. weight: math.unit(30, "kg"),
  8820. name: "Front",
  8821. image: {
  8822. source: "./media/characters/vial/front.svg",
  8823. extra: 1365 / 1277,
  8824. bottom: 0.04
  8825. }
  8826. },
  8827. },
  8828. [
  8829. {
  8830. name: "Normal",
  8831. height: math.unit(5, "feet"),
  8832. default: true
  8833. },
  8834. ]
  8835. ))
  8836. characterMakers.push(() => makeCharacter(
  8837. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8838. {
  8839. side: {
  8840. height: math.unit(3.4, "meters"),
  8841. weight: math.unit(1000, "lb"),
  8842. name: "Side",
  8843. image: {
  8844. source: "./media/characters/rovoska/side.svg",
  8845. extra: 4403 / 1515
  8846. }
  8847. },
  8848. },
  8849. [
  8850. {
  8851. name: "Normal",
  8852. height: math.unit(3.4, "meters"),
  8853. default: true
  8854. },
  8855. ]
  8856. ))
  8857. characterMakers.push(() => makeCharacter(
  8858. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8859. {
  8860. front: {
  8861. height: math.unit(8, "feet"),
  8862. weight: math.unit(315, "lb"),
  8863. name: "Front",
  8864. image: {
  8865. source: "./media/characters/gunner-rotthbauer/front.svg"
  8866. }
  8867. },
  8868. back: {
  8869. height: math.unit(8, "feet"),
  8870. weight: math.unit(315, "lb"),
  8871. name: "Back",
  8872. image: {
  8873. source: "./media/characters/gunner-rotthbauer/back.svg"
  8874. }
  8875. },
  8876. },
  8877. [
  8878. {
  8879. name: "Micro",
  8880. height: math.unit(3.5, "inches")
  8881. },
  8882. {
  8883. name: "Normal",
  8884. height: math.unit(8, "feet"),
  8885. default: true
  8886. },
  8887. {
  8888. name: "Macro",
  8889. height: math.unit(250, "feet")
  8890. },
  8891. {
  8892. name: "Megamacro",
  8893. height: math.unit(1, "AU")
  8894. },
  8895. ]
  8896. ))
  8897. characterMakers.push(() => makeCharacter(
  8898. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8899. {
  8900. front: {
  8901. height: math.unit(5 + 5 / 12, "feet"),
  8902. weight: math.unit(140, "lb"),
  8903. name: "Front",
  8904. image: {
  8905. source: "./media/characters/allatia/front.svg",
  8906. extra: 1227 / 1180,
  8907. bottom: 0.027
  8908. }
  8909. },
  8910. },
  8911. [
  8912. {
  8913. name: "Normal",
  8914. height: math.unit(5 + 5 / 12, "feet")
  8915. },
  8916. {
  8917. name: "Macro",
  8918. height: math.unit(250, "feet"),
  8919. default: true
  8920. },
  8921. {
  8922. name: "Megamacro",
  8923. height: math.unit(8, "miles")
  8924. }
  8925. ]
  8926. ))
  8927. characterMakers.push(() => makeCharacter(
  8928. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8929. {
  8930. front: {
  8931. height: math.unit(6, "feet"),
  8932. weight: math.unit(120, "lb"),
  8933. name: "Front",
  8934. image: {
  8935. source: "./media/characters/tene/front.svg",
  8936. extra: 1728 / 1578,
  8937. bottom: 0.022
  8938. }
  8939. },
  8940. stomping: {
  8941. height: math.unit(2.025, "meters"),
  8942. weight: math.unit(120, "lb"),
  8943. name: "Stomping",
  8944. image: {
  8945. source: "./media/characters/tene/stomping.svg",
  8946. extra: 938 / 873,
  8947. bottom: 0.01
  8948. }
  8949. },
  8950. sitting: {
  8951. height: math.unit(1, "meter"),
  8952. weight: math.unit(120, "lb"),
  8953. name: "Sitting",
  8954. image: {
  8955. source: "./media/characters/tene/sitting.svg",
  8956. extra: 437 / 415,
  8957. bottom: 0.1
  8958. }
  8959. },
  8960. feral: {
  8961. height: math.unit(3.9, "feet"),
  8962. weight: math.unit(250, "lb"),
  8963. name: "Feral",
  8964. image: {
  8965. source: "./media/characters/tene/feral.svg",
  8966. extra: 717 / 458,
  8967. bottom: 0.179
  8968. }
  8969. },
  8970. },
  8971. [
  8972. {
  8973. name: "Normal",
  8974. height: math.unit(6, "feet")
  8975. },
  8976. {
  8977. name: "Macro",
  8978. height: math.unit(300, "feet"),
  8979. default: true
  8980. },
  8981. {
  8982. name: "Megamacro",
  8983. height: math.unit(5, "miles")
  8984. },
  8985. ]
  8986. ))
  8987. characterMakers.push(() => makeCharacter(
  8988. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8989. {
  8990. side: {
  8991. height: math.unit(6, "feet"),
  8992. name: "Side",
  8993. image: {
  8994. source: "./media/characters/evander/side.svg",
  8995. extra: 877 / 477
  8996. }
  8997. },
  8998. },
  8999. [
  9000. {
  9001. name: "Normal",
  9002. height: math.unit(0.83, "meters"),
  9003. default: true
  9004. },
  9005. ]
  9006. ))
  9007. characterMakers.push(() => makeCharacter(
  9008. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9009. {
  9010. front: {
  9011. height: math.unit(12, "feet"),
  9012. weight: math.unit(1000, "lb"),
  9013. name: "Front",
  9014. image: {
  9015. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9016. extra: 1762 / 1611
  9017. }
  9018. },
  9019. back: {
  9020. height: math.unit(12, "feet"),
  9021. weight: math.unit(1000, "lb"),
  9022. name: "Back",
  9023. image: {
  9024. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9025. extra: 1762 / 1611
  9026. }
  9027. },
  9028. },
  9029. [
  9030. {
  9031. name: "Normal",
  9032. height: math.unit(12, "feet"),
  9033. default: true
  9034. },
  9035. {
  9036. name: "Kaiju",
  9037. height: math.unit(150, "feet")
  9038. },
  9039. ]
  9040. ))
  9041. characterMakers.push(() => makeCharacter(
  9042. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9043. {
  9044. front: {
  9045. height: math.unit(6, "feet"),
  9046. weight: math.unit(150, "lb"),
  9047. name: "Front",
  9048. image: {
  9049. source: "./media/characters/zero-alurus/front.svg"
  9050. }
  9051. },
  9052. back: {
  9053. height: math.unit(6, "feet"),
  9054. weight: math.unit(150, "lb"),
  9055. name: "Back",
  9056. image: {
  9057. source: "./media/characters/zero-alurus/back.svg"
  9058. }
  9059. },
  9060. },
  9061. [
  9062. {
  9063. name: "Normal",
  9064. height: math.unit(5 + 10 / 12, "feet")
  9065. },
  9066. {
  9067. name: "Macro",
  9068. height: math.unit(60, "feet"),
  9069. default: true
  9070. },
  9071. {
  9072. name: "Macro+",
  9073. height: math.unit(450, "feet")
  9074. },
  9075. ]
  9076. ))
  9077. characterMakers.push(() => makeCharacter(
  9078. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9079. {
  9080. front: {
  9081. height: math.unit(6, "feet"),
  9082. weight: math.unit(200, "lb"),
  9083. name: "Front",
  9084. image: {
  9085. source: "./media/characters/mega-shi/front.svg",
  9086. extra: 1279 / 1250,
  9087. bottom: 0.02
  9088. }
  9089. },
  9090. back: {
  9091. height: math.unit(6, "feet"),
  9092. weight: math.unit(200, "lb"),
  9093. name: "Back",
  9094. image: {
  9095. source: "./media/characters/mega-shi/back.svg",
  9096. extra: 1279 / 1250,
  9097. bottom: 0.02
  9098. }
  9099. },
  9100. },
  9101. [
  9102. {
  9103. name: "Micro",
  9104. height: math.unit(16 + 6 / 12, "feet")
  9105. },
  9106. {
  9107. name: "Third Dimension",
  9108. height: math.unit(40, "meters")
  9109. },
  9110. {
  9111. name: "Normal",
  9112. height: math.unit(660, "feet"),
  9113. default: true
  9114. },
  9115. {
  9116. name: "Megamacro",
  9117. height: math.unit(10, "miles")
  9118. },
  9119. {
  9120. name: "Planetary Launch",
  9121. height: math.unit(500, "miles")
  9122. },
  9123. {
  9124. name: "Interstellar",
  9125. height: math.unit(1e9, "miles")
  9126. },
  9127. {
  9128. name: "Leaving the Universe",
  9129. height: math.unit(1, "gigaparsec")
  9130. },
  9131. {
  9132. name: "Travelling Universes",
  9133. height: math.unit(30e15, "parsecs")
  9134. },
  9135. ]
  9136. ))
  9137. characterMakers.push(() => makeCharacter(
  9138. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9139. {
  9140. front: {
  9141. height: math.unit(6, "feet"),
  9142. weight: math.unit(150, "lb"),
  9143. name: "Front",
  9144. image: {
  9145. source: "./media/characters/odyssey/front.svg",
  9146. extra: 1782 / 1582,
  9147. bottom: 0.01
  9148. }
  9149. },
  9150. side: {
  9151. height: math.unit(5.7, "feet"),
  9152. weight: math.unit(140, "lb"),
  9153. name: "Side",
  9154. image: {
  9155. source: "./media/characters/odyssey/side.svg",
  9156. extra: 6462 / 5700
  9157. }
  9158. },
  9159. },
  9160. [
  9161. {
  9162. name: "Normal",
  9163. height: math.unit(5 + 4 / 12, "feet")
  9164. },
  9165. {
  9166. name: "Macro",
  9167. height: math.unit(1, "km")
  9168. },
  9169. {
  9170. name: "Megamacro",
  9171. height: math.unit(3000, "km")
  9172. },
  9173. {
  9174. name: "Gigamacro",
  9175. height: math.unit(1, "AU"),
  9176. default: true
  9177. },
  9178. {
  9179. name: "Omniversal",
  9180. height: math.unit(100e14, "lightyears")
  9181. },
  9182. ]
  9183. ))
  9184. characterMakers.push(() => makeCharacter(
  9185. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9186. {
  9187. front: {
  9188. height: math.unit(6, "feet"),
  9189. weight: math.unit(300, "lb"),
  9190. name: "Front",
  9191. image: {
  9192. source: "./media/characters/mekuto/front.svg",
  9193. extra: 921 / 832,
  9194. bottom: 0.03
  9195. }
  9196. },
  9197. hand: {
  9198. height: math.unit(6 / 10.24, "feet"),
  9199. name: "Hand",
  9200. image: {
  9201. source: "./media/characters/mekuto/hand.svg"
  9202. }
  9203. },
  9204. foot: {
  9205. height: math.unit(6 / 5.05, "feet"),
  9206. name: "Foot",
  9207. image: {
  9208. source: "./media/characters/mekuto/foot.svg"
  9209. }
  9210. },
  9211. },
  9212. [
  9213. {
  9214. name: "Minimicro",
  9215. height: math.unit(0.2, "inches")
  9216. },
  9217. {
  9218. name: "Micro",
  9219. height: math.unit(1.5, "inches")
  9220. },
  9221. {
  9222. name: "Normal",
  9223. height: math.unit(5 + 11 / 12, "feet"),
  9224. default: true
  9225. },
  9226. {
  9227. name: "Minimacro",
  9228. height: math.unit(17 + 9 / 12, "feet")
  9229. },
  9230. {
  9231. name: "Macro",
  9232. height: math.unit(177.5, "feet")
  9233. },
  9234. {
  9235. name: "Megamacro",
  9236. height: math.unit(152, "miles")
  9237. },
  9238. ]
  9239. ))
  9240. characterMakers.push(() => makeCharacter(
  9241. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9242. {
  9243. front: {
  9244. height: math.unit(6.5, "inches"),
  9245. weight: math.unit(13, "oz"),
  9246. name: "Front",
  9247. image: {
  9248. source: "./media/characters/dafydd-tomos/front.svg",
  9249. extra: 2990 / 2603,
  9250. bottom: 0.03
  9251. }
  9252. },
  9253. },
  9254. [
  9255. {
  9256. name: "Micro",
  9257. height: math.unit(6.5, "inches"),
  9258. default: true
  9259. },
  9260. ]
  9261. ))
  9262. characterMakers.push(() => makeCharacter(
  9263. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9264. {
  9265. front: {
  9266. height: math.unit(6, "feet"),
  9267. weight: math.unit(150, "lb"),
  9268. name: "Front",
  9269. image: {
  9270. source: "./media/characters/splinter/front.svg",
  9271. extra: 2990 / 2882,
  9272. bottom: 0.04
  9273. }
  9274. },
  9275. back: {
  9276. height: math.unit(6, "feet"),
  9277. weight: math.unit(150, "lb"),
  9278. name: "Back",
  9279. image: {
  9280. source: "./media/characters/splinter/back.svg",
  9281. extra: 2990 / 2882,
  9282. bottom: 0.04
  9283. }
  9284. },
  9285. },
  9286. [
  9287. {
  9288. name: "Normal",
  9289. height: math.unit(6, "feet")
  9290. },
  9291. {
  9292. name: "Macro",
  9293. height: math.unit(230, "meters"),
  9294. default: true
  9295. },
  9296. ]
  9297. ))
  9298. characterMakers.push(() => makeCharacter(
  9299. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9300. {
  9301. front: {
  9302. height: math.unit(4 + 10 / 12, "feet"),
  9303. weight: math.unit(480, "lb"),
  9304. name: "Front",
  9305. image: {
  9306. source: "./media/characters/snow-gabumon/front.svg",
  9307. extra: 1140 / 963,
  9308. bottom: 0.058
  9309. }
  9310. },
  9311. back: {
  9312. height: math.unit(4 + 10 / 12, "feet"),
  9313. weight: math.unit(480, "lb"),
  9314. name: "Back",
  9315. image: {
  9316. source: "./media/characters/snow-gabumon/back.svg",
  9317. extra: 1115 / 962,
  9318. bottom: 0.041
  9319. }
  9320. },
  9321. frontUndresed: {
  9322. height: math.unit(4 + 10 / 12, "feet"),
  9323. weight: math.unit(480, "lb"),
  9324. name: "Front (Undressed)",
  9325. image: {
  9326. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9327. extra: 1061 / 960,
  9328. bottom: 0.045
  9329. }
  9330. },
  9331. },
  9332. [
  9333. {
  9334. name: "Micro",
  9335. height: math.unit(1, "inch")
  9336. },
  9337. {
  9338. name: "Normal",
  9339. height: math.unit(4 + 10 / 12, "feet"),
  9340. default: true
  9341. },
  9342. {
  9343. name: "Macro",
  9344. height: math.unit(200, "feet")
  9345. },
  9346. {
  9347. name: "Megamacro",
  9348. height: math.unit(120, "miles")
  9349. },
  9350. {
  9351. name: "Gigamacro",
  9352. height: math.unit(9800, "miles")
  9353. },
  9354. ]
  9355. ))
  9356. characterMakers.push(() => makeCharacter(
  9357. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9358. {
  9359. front: {
  9360. height: math.unit(1.7, "meters"),
  9361. weight: math.unit(140, "lb"),
  9362. name: "Front",
  9363. image: {
  9364. source: "./media/characters/moody/front.svg",
  9365. extra: 3226 / 3007,
  9366. bottom: 0.087
  9367. }
  9368. },
  9369. },
  9370. [
  9371. {
  9372. name: "Micro",
  9373. height: math.unit(1, "mm")
  9374. },
  9375. {
  9376. name: "Normal",
  9377. height: math.unit(1.7, "meters"),
  9378. default: true
  9379. },
  9380. {
  9381. name: "Macro",
  9382. height: math.unit(80, "meters")
  9383. },
  9384. {
  9385. name: "Macro+",
  9386. height: math.unit(500, "meters")
  9387. },
  9388. ]
  9389. ))
  9390. characterMakers.push(() => makeCharacter(
  9391. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9392. {
  9393. front: {
  9394. height: math.unit(6, "feet"),
  9395. weight: math.unit(150, "lb"),
  9396. name: "Front",
  9397. image: {
  9398. source: "./media/characters/zyas/front.svg",
  9399. extra: 1180 / 1120,
  9400. bottom: 0.045
  9401. }
  9402. },
  9403. },
  9404. [
  9405. {
  9406. name: "Normal",
  9407. height: math.unit(10, "feet"),
  9408. default: true
  9409. },
  9410. {
  9411. name: "Macro",
  9412. height: math.unit(500, "feet")
  9413. },
  9414. {
  9415. name: "Megamacro",
  9416. height: math.unit(5, "miles")
  9417. },
  9418. {
  9419. name: "Teramacro",
  9420. height: math.unit(150000, "miles")
  9421. },
  9422. ]
  9423. ))
  9424. characterMakers.push(() => makeCharacter(
  9425. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9426. {
  9427. front: {
  9428. height: math.unit(6, "feet"),
  9429. weight: math.unit(150, "lb"),
  9430. name: "Front",
  9431. image: {
  9432. source: "./media/characters/cuon/front.svg",
  9433. extra: 1390 / 1320,
  9434. bottom: 0.008
  9435. }
  9436. },
  9437. },
  9438. [
  9439. {
  9440. name: "Micro",
  9441. height: math.unit(3, "inches")
  9442. },
  9443. {
  9444. name: "Normal",
  9445. height: math.unit(18 + 9 / 12, "feet"),
  9446. default: true
  9447. },
  9448. {
  9449. name: "Macro",
  9450. height: math.unit(360, "feet")
  9451. },
  9452. {
  9453. name: "Megamacro",
  9454. height: math.unit(360, "miles")
  9455. },
  9456. ]
  9457. ))
  9458. characterMakers.push(() => makeCharacter(
  9459. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9460. {
  9461. front: {
  9462. height: math.unit(2.4, "meters"),
  9463. weight: math.unit(70, "kg"),
  9464. name: "Front",
  9465. image: {
  9466. source: "./media/characters/nyanuxk/front.svg",
  9467. extra: 1172 / 1084,
  9468. bottom: 0.065
  9469. }
  9470. },
  9471. side: {
  9472. height: math.unit(2.4, "meters"),
  9473. weight: math.unit(70, "kg"),
  9474. name: "Side",
  9475. image: {
  9476. source: "./media/characters/nyanuxk/side.svg",
  9477. extra: 1190 / 1132,
  9478. bottom: 0.007
  9479. }
  9480. },
  9481. back: {
  9482. height: math.unit(2.4, "meters"),
  9483. weight: math.unit(70, "kg"),
  9484. name: "Back",
  9485. image: {
  9486. source: "./media/characters/nyanuxk/back.svg",
  9487. extra: 1200 / 1141,
  9488. bottom: 0.015
  9489. }
  9490. },
  9491. foot: {
  9492. height: math.unit(0.52, "meters"),
  9493. name: "Foot",
  9494. image: {
  9495. source: "./media/characters/nyanuxk/foot.svg"
  9496. }
  9497. },
  9498. },
  9499. [
  9500. {
  9501. name: "Micro",
  9502. height: math.unit(2, "cm")
  9503. },
  9504. {
  9505. name: "Normal",
  9506. height: math.unit(2.4, "meters"),
  9507. default: true
  9508. },
  9509. {
  9510. name: "Smaller Macro",
  9511. height: math.unit(120, "meters")
  9512. },
  9513. {
  9514. name: "Bigger Macro",
  9515. height: math.unit(1.2, "km")
  9516. },
  9517. {
  9518. name: "Megamacro",
  9519. height: math.unit(15, "kilometers")
  9520. },
  9521. {
  9522. name: "Gigamacro",
  9523. height: math.unit(2000, "km")
  9524. },
  9525. {
  9526. name: "Teramacro",
  9527. height: math.unit(500000, "km")
  9528. },
  9529. ]
  9530. ))
  9531. characterMakers.push(() => makeCharacter(
  9532. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9533. {
  9534. side: {
  9535. height: math.unit(6, "feet"),
  9536. name: "Side",
  9537. image: {
  9538. source: "./media/characters/ailbhe/side.svg",
  9539. extra: 757 / 464,
  9540. bottom: 0.041
  9541. }
  9542. },
  9543. },
  9544. [
  9545. {
  9546. name: "Normal",
  9547. height: math.unit(1.07, "meters"),
  9548. default: true
  9549. },
  9550. ]
  9551. ))
  9552. characterMakers.push(() => makeCharacter(
  9553. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9554. {
  9555. front: {
  9556. height: math.unit(6, "feet"),
  9557. weight: math.unit(120, "kg"),
  9558. name: "Front",
  9559. image: {
  9560. source: "./media/characters/zevulfius/front.svg",
  9561. extra: 965 / 903
  9562. }
  9563. },
  9564. side: {
  9565. height: math.unit(6, "feet"),
  9566. weight: math.unit(120, "kg"),
  9567. name: "Side",
  9568. image: {
  9569. source: "./media/characters/zevulfius/side.svg",
  9570. extra: 939 / 900
  9571. }
  9572. },
  9573. back: {
  9574. height: math.unit(6, "feet"),
  9575. weight: math.unit(120, "kg"),
  9576. name: "Back",
  9577. image: {
  9578. source: "./media/characters/zevulfius/back.svg",
  9579. extra: 918 / 854,
  9580. bottom: 0.005
  9581. }
  9582. },
  9583. foot: {
  9584. height: math.unit(6 / 3.72, "feet"),
  9585. name: "Foot",
  9586. image: {
  9587. source: "./media/characters/zevulfius/foot.svg"
  9588. }
  9589. },
  9590. },
  9591. [
  9592. {
  9593. name: "Macro",
  9594. height: math.unit(750, "meters")
  9595. },
  9596. {
  9597. name: "Megamacro",
  9598. height: math.unit(20, "km"),
  9599. default: true
  9600. },
  9601. {
  9602. name: "Gigamacro",
  9603. height: math.unit(2000, "km")
  9604. },
  9605. {
  9606. name: "Teramacro",
  9607. height: math.unit(250000, "km")
  9608. },
  9609. ]
  9610. ))
  9611. characterMakers.push(() => makeCharacter(
  9612. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9613. {
  9614. front: {
  9615. height: math.unit(100, "feet"),
  9616. weight: math.unit(350, "kg"),
  9617. name: "Front",
  9618. image: {
  9619. source: "./media/characters/rikes/front.svg",
  9620. extra: 1565 / 1483,
  9621. bottom: 0.017
  9622. }
  9623. },
  9624. },
  9625. [
  9626. {
  9627. name: "Macro",
  9628. height: math.unit(100, "feet"),
  9629. default: true
  9630. },
  9631. ]
  9632. ))
  9633. characterMakers.push(() => makeCharacter(
  9634. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9635. {
  9636. anthro: {
  9637. height: math.unit(8, "feet"),
  9638. weight: math.unit(120, "kg"),
  9639. name: "Anthro",
  9640. image: {
  9641. source: "./media/characters/adam-silver-mane/anthro.svg",
  9642. extra: 5743 / 5339,
  9643. bottom: 0.07
  9644. }
  9645. },
  9646. taur: {
  9647. height: math.unit(16, "feet"),
  9648. weight: math.unit(1500, "kg"),
  9649. name: "Taur",
  9650. image: {
  9651. source: "./media/characters/adam-silver-mane/taur.svg",
  9652. extra: 1713 / 1571,
  9653. bottom: 0.01
  9654. }
  9655. },
  9656. },
  9657. [
  9658. {
  9659. name: "Normal",
  9660. height: math.unit(8, "feet")
  9661. },
  9662. {
  9663. name: "Minimacro",
  9664. height: math.unit(80, "feet")
  9665. },
  9666. {
  9667. name: "Macro",
  9668. height: math.unit(800, "feet"),
  9669. default: true
  9670. },
  9671. {
  9672. name: "Megamacro",
  9673. height: math.unit(8000, "feet")
  9674. },
  9675. {
  9676. name: "Gigamacro",
  9677. height: math.unit(800, "miles")
  9678. },
  9679. {
  9680. name: "Teramacro",
  9681. height: math.unit(80000, "miles")
  9682. },
  9683. {
  9684. name: "Celestial",
  9685. height: math.unit(8e6, "miles")
  9686. },
  9687. {
  9688. name: "Star Dragon",
  9689. height: math.unit(800000, "parsecs")
  9690. },
  9691. {
  9692. name: "Godly",
  9693. height: math.unit(800, "teraparsecs")
  9694. },
  9695. ]
  9696. ))
  9697. characterMakers.push(() => makeCharacter(
  9698. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9699. {
  9700. front: {
  9701. height: math.unit(6, "feet"),
  9702. weight: math.unit(150, "lb"),
  9703. name: "Front",
  9704. image: {
  9705. source: "./media/characters/ky'owin/front.svg",
  9706. extra: 3888 / 3068,
  9707. bottom: 0.015
  9708. }
  9709. },
  9710. },
  9711. [
  9712. {
  9713. name: "Normal",
  9714. height: math.unit(6 + 8 / 12, "feet")
  9715. },
  9716. {
  9717. name: "Large",
  9718. height: math.unit(68, "feet")
  9719. },
  9720. {
  9721. name: "Macro",
  9722. height: math.unit(132, "feet")
  9723. },
  9724. {
  9725. name: "Macro+",
  9726. height: math.unit(340, "feet")
  9727. },
  9728. {
  9729. name: "Macro++",
  9730. height: math.unit(680, "feet"),
  9731. default: true
  9732. },
  9733. {
  9734. name: "Megamacro",
  9735. height: math.unit(1, "mile")
  9736. },
  9737. {
  9738. name: "Megamacro+",
  9739. height: math.unit(10, "miles")
  9740. },
  9741. ]
  9742. ))
  9743. characterMakers.push(() => makeCharacter(
  9744. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9745. {
  9746. front: {
  9747. height: math.unit(4, "feet"),
  9748. weight: math.unit(50, "lb"),
  9749. name: "Front",
  9750. image: {
  9751. source: "./media/characters/mal/front.svg",
  9752. extra: 785 / 724,
  9753. bottom: 0.07
  9754. }
  9755. },
  9756. },
  9757. [
  9758. {
  9759. name: "Micro",
  9760. height: math.unit(4, "inches")
  9761. },
  9762. {
  9763. name: "Normal",
  9764. height: math.unit(4, "feet"),
  9765. default: true
  9766. },
  9767. {
  9768. name: "Macro",
  9769. height: math.unit(200, "feet")
  9770. },
  9771. ]
  9772. ))
  9773. characterMakers.push(() => makeCharacter(
  9774. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9775. {
  9776. front: {
  9777. height: math.unit(6, "feet"),
  9778. weight: math.unit(150, "lb"),
  9779. name: "Front",
  9780. image: {
  9781. source: "./media/characters/jordan-deware/front.svg",
  9782. extra: 1191 / 1012
  9783. }
  9784. },
  9785. },
  9786. [
  9787. {
  9788. name: "Nano",
  9789. height: math.unit(0.01, "mm")
  9790. },
  9791. {
  9792. name: "Minimicro",
  9793. height: math.unit(1, "mm")
  9794. },
  9795. {
  9796. name: "Micro",
  9797. height: math.unit(0.5, "inches")
  9798. },
  9799. {
  9800. name: "Normal",
  9801. height: math.unit(4, "feet"),
  9802. default: true
  9803. },
  9804. {
  9805. name: "Minimacro",
  9806. height: math.unit(40, "meters")
  9807. },
  9808. {
  9809. name: "Small Macro",
  9810. height: math.unit(400, "meters")
  9811. },
  9812. {
  9813. name: "Macro",
  9814. height: math.unit(4, "miles")
  9815. },
  9816. {
  9817. name: "Megamacro",
  9818. height: math.unit(40, "miles")
  9819. },
  9820. {
  9821. name: "Megamacro+",
  9822. height: math.unit(400, "miles")
  9823. },
  9824. {
  9825. name: "Gigamacro",
  9826. height: math.unit(400000, "miles")
  9827. },
  9828. ]
  9829. ))
  9830. characterMakers.push(() => makeCharacter(
  9831. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9832. {
  9833. side: {
  9834. height: math.unit(6, "feet"),
  9835. weight: math.unit(150, "lb"),
  9836. name: "Side",
  9837. image: {
  9838. source: "./media/characters/kimiko/side.svg",
  9839. extra: 600 / 358
  9840. }
  9841. },
  9842. },
  9843. [
  9844. {
  9845. name: "Normal",
  9846. height: math.unit(15, "feet"),
  9847. default: true
  9848. },
  9849. {
  9850. name: "Macro",
  9851. height: math.unit(220, "feet")
  9852. },
  9853. {
  9854. name: "Macro+",
  9855. height: math.unit(1450, "feet")
  9856. },
  9857. {
  9858. name: "Megamacro",
  9859. height: math.unit(11500, "feet")
  9860. },
  9861. {
  9862. name: "Gigamacro",
  9863. height: math.unit(9500, "miles")
  9864. },
  9865. {
  9866. name: "Teramacro",
  9867. height: math.unit(2208005005, "miles")
  9868. },
  9869. {
  9870. name: "Examacro",
  9871. height: math.unit(2750, "parsecs")
  9872. },
  9873. {
  9874. name: "Zettamacro",
  9875. height: math.unit(101500, "parsecs")
  9876. },
  9877. ]
  9878. ))
  9879. characterMakers.push(() => makeCharacter(
  9880. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9881. {
  9882. front: {
  9883. height: math.unit(6, "feet"),
  9884. weight: math.unit(70, "kg"),
  9885. name: "Front",
  9886. image: {
  9887. source: "./media/characters/andrew-sleepy/front.svg"
  9888. }
  9889. },
  9890. side: {
  9891. height: math.unit(6, "feet"),
  9892. weight: math.unit(70, "kg"),
  9893. name: "Side",
  9894. image: {
  9895. source: "./media/characters/andrew-sleepy/side.svg"
  9896. }
  9897. },
  9898. },
  9899. [
  9900. {
  9901. name: "Micro",
  9902. height: math.unit(1, "mm"),
  9903. default: true
  9904. },
  9905. ]
  9906. ))
  9907. characterMakers.push(() => makeCharacter(
  9908. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9909. {
  9910. front: {
  9911. height: math.unit(6, "feet"),
  9912. weight: math.unit(150, "lb"),
  9913. name: "Front",
  9914. image: {
  9915. source: "./media/characters/judio/front.svg",
  9916. extra: 1258 / 1110
  9917. }
  9918. },
  9919. },
  9920. [
  9921. {
  9922. name: "Normal",
  9923. height: math.unit(5 + 6 / 12, "feet")
  9924. },
  9925. {
  9926. name: "Macro",
  9927. height: math.unit(1000, "feet"),
  9928. default: true
  9929. },
  9930. {
  9931. name: "Megamacro",
  9932. height: math.unit(10, "miles")
  9933. },
  9934. ]
  9935. ))
  9936. characterMakers.push(() => makeCharacter(
  9937. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9938. {
  9939. front: {
  9940. height: math.unit(6, "feet"),
  9941. weight: math.unit(68, "kg"),
  9942. name: "Front",
  9943. image: {
  9944. source: "./media/characters/nomaxice/front.svg",
  9945. extra: 1498 / 1073,
  9946. bottom: 0.075
  9947. }
  9948. },
  9949. foot: {
  9950. height: math.unit(1.1, "feet"),
  9951. name: "Foot",
  9952. image: {
  9953. source: "./media/characters/nomaxice/foot.svg"
  9954. }
  9955. },
  9956. },
  9957. [
  9958. {
  9959. name: "Micro",
  9960. height: math.unit(8, "cm")
  9961. },
  9962. {
  9963. name: "Norm",
  9964. height: math.unit(1.82, "m")
  9965. },
  9966. {
  9967. name: "Norm+",
  9968. height: math.unit(8.8, "feet")
  9969. },
  9970. {
  9971. name: "Big",
  9972. height: math.unit(8, "meters"),
  9973. default: true
  9974. },
  9975. {
  9976. name: "Macro",
  9977. height: math.unit(18, "meters")
  9978. },
  9979. {
  9980. name: "Macro+",
  9981. height: math.unit(88, "meters")
  9982. },
  9983. ]
  9984. ))
  9985. characterMakers.push(() => makeCharacter(
  9986. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9987. {
  9988. front: {
  9989. height: math.unit(12, "feet"),
  9990. weight: math.unit(1.5, "tons"),
  9991. name: "Front",
  9992. image: {
  9993. source: "./media/characters/dydros/front.svg",
  9994. extra: 863 / 800,
  9995. bottom: 0.015
  9996. }
  9997. },
  9998. back: {
  9999. height: math.unit(12, "feet"),
  10000. weight: math.unit(1.5, "tons"),
  10001. name: "Back",
  10002. image: {
  10003. source: "./media/characters/dydros/back.svg",
  10004. extra: 900 / 843,
  10005. bottom: 0.005
  10006. }
  10007. },
  10008. },
  10009. [
  10010. {
  10011. name: "Normal",
  10012. height: math.unit(12, "feet"),
  10013. default: true
  10014. },
  10015. ]
  10016. ))
  10017. characterMakers.push(() => makeCharacter(
  10018. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10019. {
  10020. front: {
  10021. height: math.unit(6, "feet"),
  10022. weight: math.unit(100, "kg"),
  10023. name: "Front",
  10024. image: {
  10025. source: "./media/characters/riggi/front.svg",
  10026. extra: 5787 / 5303
  10027. }
  10028. },
  10029. hyper: {
  10030. height: math.unit(6 * 5 / 3, "feet"),
  10031. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10032. name: "Hyper",
  10033. image: {
  10034. source: "./media/characters/riggi/hyper.svg",
  10035. extra: 3595 / 3485
  10036. }
  10037. },
  10038. },
  10039. [
  10040. {
  10041. name: "Small Macro",
  10042. height: math.unit(50, "feet")
  10043. },
  10044. {
  10045. name: "Default",
  10046. height: math.unit(200, "feet"),
  10047. default: true
  10048. },
  10049. {
  10050. name: "Loom",
  10051. height: math.unit(10000, "feet")
  10052. },
  10053. {
  10054. name: "Cruising Altitude",
  10055. height: math.unit(30000, "feet")
  10056. },
  10057. {
  10058. name: "Megamacro",
  10059. height: math.unit(100, "miles")
  10060. },
  10061. {
  10062. name: "Continent Sized",
  10063. height: math.unit(2800, "miles")
  10064. },
  10065. {
  10066. name: "Earth Sized",
  10067. height: math.unit(8000, "miles")
  10068. },
  10069. ]
  10070. ))
  10071. characterMakers.push(() => makeCharacter(
  10072. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10073. {
  10074. front: {
  10075. height: math.unit(6, "feet"),
  10076. weight: math.unit(250, "lb"),
  10077. name: "Front",
  10078. image: {
  10079. source: "./media/characters/alexi/front.svg",
  10080. extra: 3483 / 3291,
  10081. bottom: 0.04
  10082. }
  10083. },
  10084. back: {
  10085. height: math.unit(6, "feet"),
  10086. weight: math.unit(250, "lb"),
  10087. name: "Back",
  10088. image: {
  10089. source: "./media/characters/alexi/back.svg",
  10090. extra: 3533 / 3356,
  10091. bottom: 0.021
  10092. }
  10093. },
  10094. frontTransforming: {
  10095. height: math.unit(8.58, "feet"),
  10096. weight: math.unit(1300, "lb"),
  10097. name: "Transforming",
  10098. image: {
  10099. source: "./media/characters/alexi/front-transforming.svg",
  10100. extra: 437 / 409,
  10101. bottom: 19 / 458.66
  10102. }
  10103. },
  10104. frontTransformed: {
  10105. height: math.unit(12.5, "feet"),
  10106. weight: math.unit(4000, "lb"),
  10107. name: "Transformed",
  10108. image: {
  10109. source: "./media/characters/alexi/front-transformed.svg",
  10110. extra: 639 / 614,
  10111. bottom: 30.55 / 671
  10112. }
  10113. },
  10114. },
  10115. [
  10116. {
  10117. name: "Normal",
  10118. height: math.unit(3, "meters"),
  10119. default: true
  10120. },
  10121. {
  10122. name: "Minimacro",
  10123. height: math.unit(30, "meters")
  10124. },
  10125. {
  10126. name: "Macro",
  10127. height: math.unit(500, "meters")
  10128. },
  10129. {
  10130. name: "Megamacro",
  10131. height: math.unit(9000, "km")
  10132. },
  10133. {
  10134. name: "Teramacro",
  10135. height: math.unit(384000, "km")
  10136. },
  10137. ]
  10138. ))
  10139. characterMakers.push(() => makeCharacter(
  10140. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10141. {
  10142. front: {
  10143. height: math.unit(6, "feet"),
  10144. weight: math.unit(150, "lb"),
  10145. name: "Front",
  10146. image: {
  10147. source: "./media/characters/kayroo/front.svg",
  10148. extra: 1153 / 1038,
  10149. bottom: 0.06
  10150. }
  10151. },
  10152. foot: {
  10153. height: math.unit(6, "feet"),
  10154. weight: math.unit(150, "lb"),
  10155. name: "Foot",
  10156. image: {
  10157. source: "./media/characters/kayroo/foot.svg"
  10158. }
  10159. },
  10160. },
  10161. [
  10162. {
  10163. name: "Normal",
  10164. height: math.unit(8, "feet"),
  10165. default: true
  10166. },
  10167. {
  10168. name: "Minimacro",
  10169. height: math.unit(250, "feet")
  10170. },
  10171. {
  10172. name: "Macro",
  10173. height: math.unit(2800, "feet")
  10174. },
  10175. {
  10176. name: "Megamacro",
  10177. height: math.unit(5200, "feet")
  10178. },
  10179. {
  10180. name: "Gigamacro",
  10181. height: math.unit(27000, "feet")
  10182. },
  10183. {
  10184. name: "Omega",
  10185. height: math.unit(45000, "feet")
  10186. },
  10187. ]
  10188. ))
  10189. characterMakers.push(() => makeCharacter(
  10190. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10191. {
  10192. front: {
  10193. height: math.unit(18, "feet"),
  10194. weight: math.unit(5800, "lb"),
  10195. name: "Front",
  10196. image: {
  10197. source: "./media/characters/rhys/front.svg",
  10198. extra: 3386 / 3090,
  10199. bottom: 0.07
  10200. }
  10201. },
  10202. },
  10203. [
  10204. {
  10205. name: "Normal",
  10206. height: math.unit(18, "feet"),
  10207. default: true
  10208. },
  10209. {
  10210. name: "Working Size",
  10211. height: math.unit(200, "feet")
  10212. },
  10213. {
  10214. name: "Demolition Size",
  10215. height: math.unit(2000, "feet")
  10216. },
  10217. {
  10218. name: "Maximum Licensed Size",
  10219. height: math.unit(5, "miles")
  10220. },
  10221. {
  10222. name: "Maximum Observed Size",
  10223. height: math.unit(10, "yottameters")
  10224. },
  10225. ]
  10226. ))
  10227. characterMakers.push(() => makeCharacter(
  10228. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10229. {
  10230. front: {
  10231. height: math.unit(6, "feet"),
  10232. weight: math.unit(250, "lb"),
  10233. name: "Front",
  10234. image: {
  10235. source: "./media/characters/toto/front.svg",
  10236. extra: 527 / 479,
  10237. bottom: 0.05
  10238. }
  10239. },
  10240. },
  10241. [
  10242. {
  10243. name: "Micro",
  10244. height: math.unit(3, "feet")
  10245. },
  10246. {
  10247. name: "Normal",
  10248. height: math.unit(10, "feet")
  10249. },
  10250. {
  10251. name: "Macro",
  10252. height: math.unit(150, "feet"),
  10253. default: true
  10254. },
  10255. {
  10256. name: "Megamacro",
  10257. height: math.unit(1200, "feet")
  10258. },
  10259. ]
  10260. ))
  10261. characterMakers.push(() => makeCharacter(
  10262. { name: "King", species: ["lion"], tags: ["anthro"] },
  10263. {
  10264. back: {
  10265. height: math.unit(6, "feet"),
  10266. weight: math.unit(150, "lb"),
  10267. name: "Back",
  10268. image: {
  10269. source: "./media/characters/king/back.svg"
  10270. }
  10271. },
  10272. },
  10273. [
  10274. {
  10275. name: "Micro",
  10276. height: math.unit(2, "inches")
  10277. },
  10278. {
  10279. name: "Normal",
  10280. height: math.unit(8, "feet")
  10281. },
  10282. {
  10283. name: "Macro",
  10284. height: math.unit(200, "feet"),
  10285. default: true
  10286. },
  10287. {
  10288. name: "Megamacro",
  10289. height: math.unit(50, "miles")
  10290. },
  10291. ]
  10292. ))
  10293. characterMakers.push(() => makeCharacter(
  10294. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10295. {
  10296. anthro: {
  10297. height: math.unit(6 + 5 / 12, "feet"),
  10298. weight: math.unit(280, "lb"),
  10299. name: "Anthro",
  10300. image: {
  10301. source: "./media/characters/cordite/anthro.svg",
  10302. extra: 1986 / 1905,
  10303. bottom: 0.025
  10304. }
  10305. },
  10306. feral: {
  10307. height: math.unit(2, "feet"),
  10308. weight: math.unit(90, "lb"),
  10309. name: "Feral",
  10310. image: {
  10311. source: "./media/characters/cordite/feral.svg",
  10312. extra: 1260 / 755,
  10313. bottom: 0.05
  10314. }
  10315. },
  10316. },
  10317. [
  10318. {
  10319. name: "Normal",
  10320. height: math.unit(6 + 5 / 12, "feet"),
  10321. default: true
  10322. },
  10323. ]
  10324. ))
  10325. characterMakers.push(() => makeCharacter(
  10326. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10327. {
  10328. front: {
  10329. height: math.unit(6, "feet"),
  10330. weight: math.unit(150, "lb"),
  10331. name: "Front",
  10332. image: {
  10333. source: "./media/characters/pianostrong/front.svg",
  10334. extra: 6577 / 6254,
  10335. bottom: 0.02
  10336. }
  10337. },
  10338. side: {
  10339. height: math.unit(6, "feet"),
  10340. weight: math.unit(150, "lb"),
  10341. name: "Side",
  10342. image: {
  10343. source: "./media/characters/pianostrong/side.svg",
  10344. extra: 6106 / 5730
  10345. }
  10346. },
  10347. back: {
  10348. height: math.unit(6, "feet"),
  10349. weight: math.unit(150, "lb"),
  10350. name: "Back",
  10351. image: {
  10352. source: "./media/characters/pianostrong/back.svg",
  10353. extra: 6085 / 5733,
  10354. bottom: 0.01
  10355. }
  10356. },
  10357. },
  10358. [
  10359. {
  10360. name: "Macro",
  10361. height: math.unit(100, "feet")
  10362. },
  10363. {
  10364. name: "Macro+",
  10365. height: math.unit(300, "feet"),
  10366. default: true
  10367. },
  10368. {
  10369. name: "Macro++",
  10370. height: math.unit(1000, "feet")
  10371. },
  10372. ]
  10373. ))
  10374. characterMakers.push(() => makeCharacter(
  10375. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10376. {
  10377. front: {
  10378. height: math.unit(6, "feet"),
  10379. weight: math.unit(150, "lb"),
  10380. name: "Front",
  10381. image: {
  10382. source: "./media/characters/kona/front.svg",
  10383. extra: 2960 / 2629,
  10384. bottom: 0.005
  10385. }
  10386. },
  10387. },
  10388. [
  10389. {
  10390. name: "Normal",
  10391. height: math.unit(11 + 8 / 12, "feet")
  10392. },
  10393. {
  10394. name: "Macro",
  10395. height: math.unit(850, "feet"),
  10396. default: true
  10397. },
  10398. {
  10399. name: "Macro+",
  10400. height: math.unit(1.5, "km"),
  10401. default: true
  10402. },
  10403. {
  10404. name: "Megamacro",
  10405. height: math.unit(80, "miles")
  10406. },
  10407. {
  10408. name: "Gigamacro",
  10409. height: math.unit(3500, "miles")
  10410. },
  10411. ]
  10412. ))
  10413. characterMakers.push(() => makeCharacter(
  10414. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10415. {
  10416. side: {
  10417. height: math.unit(1.9, "meters"),
  10418. weight: math.unit(326, "kg"),
  10419. name: "Side",
  10420. image: {
  10421. source: "./media/characters/levi/side.svg",
  10422. extra: 1704 / 1334,
  10423. bottom: 0.02
  10424. }
  10425. },
  10426. },
  10427. [
  10428. {
  10429. name: "Normal",
  10430. height: math.unit(1.9, "meters"),
  10431. default: true
  10432. },
  10433. {
  10434. name: "Macro",
  10435. height: math.unit(20, "meters")
  10436. },
  10437. {
  10438. name: "Macro+",
  10439. height: math.unit(200, "meters")
  10440. },
  10441. {
  10442. name: "Megamacro",
  10443. height: math.unit(2, "km")
  10444. },
  10445. {
  10446. name: "Megamacro+",
  10447. height: math.unit(20, "km")
  10448. },
  10449. {
  10450. name: "Gigamacro",
  10451. height: math.unit(2500, "km")
  10452. },
  10453. {
  10454. name: "Gigamacro+",
  10455. height: math.unit(120000, "km")
  10456. },
  10457. {
  10458. name: "Teramacro",
  10459. height: math.unit(7.77e6, "km")
  10460. },
  10461. ]
  10462. ))
  10463. characterMakers.push(() => makeCharacter(
  10464. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10465. {
  10466. front: {
  10467. height: math.unit(6 + 4 / 12, "feet"),
  10468. weight: math.unit(188, "lb"),
  10469. name: "Front",
  10470. image: {
  10471. source: "./media/characters/bmc/front.svg",
  10472. extra: 1067 / 1022,
  10473. bottom: 0.047
  10474. }
  10475. },
  10476. },
  10477. [
  10478. {
  10479. name: "Human-sized",
  10480. height: math.unit(6 + 4 / 12, "feet")
  10481. },
  10482. {
  10483. name: "Small",
  10484. height: math.unit(250, "feet")
  10485. },
  10486. {
  10487. name: "Normal",
  10488. height: math.unit(1250, "feet"),
  10489. default: true
  10490. },
  10491. {
  10492. name: "Good Day",
  10493. height: math.unit(88, "miles")
  10494. },
  10495. {
  10496. name: "Largest Measured Size",
  10497. height: math.unit(11.2e6, "lightyears")
  10498. },
  10499. ]
  10500. ))
  10501. characterMakers.push(() => makeCharacter(
  10502. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10503. {
  10504. front: {
  10505. height: math.unit(20, "feet"),
  10506. weight: math.unit(2016, "kg"),
  10507. name: "Front",
  10508. image: {
  10509. source: "./media/characters/sven-the-kaiju/front.svg",
  10510. extra: 1479 / 1449,
  10511. bottom: 0.05
  10512. }
  10513. },
  10514. },
  10515. [
  10516. {
  10517. name: "Fairy",
  10518. height: math.unit(6, "inches")
  10519. },
  10520. {
  10521. name: "Normal",
  10522. height: math.unit(20, "feet"),
  10523. default: true
  10524. },
  10525. {
  10526. name: "Rampage",
  10527. height: math.unit(200, "feet")
  10528. },
  10529. {
  10530. name: "Archfey Forest Guardian",
  10531. height: math.unit(1, "mile")
  10532. },
  10533. ]
  10534. ))
  10535. characterMakers.push(() => makeCharacter(
  10536. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10537. {
  10538. front: {
  10539. height: math.unit(4, "meters"),
  10540. weight: math.unit(2, "tons"),
  10541. name: "Front",
  10542. image: {
  10543. source: "./media/characters/marik/front.svg",
  10544. extra: 1057 / 1003,
  10545. bottom: 0.08
  10546. }
  10547. },
  10548. },
  10549. [
  10550. {
  10551. name: "Normal",
  10552. height: math.unit(4, "meters"),
  10553. default: true
  10554. },
  10555. {
  10556. name: "Macro",
  10557. height: math.unit(20, "meters")
  10558. },
  10559. {
  10560. name: "Megamacro",
  10561. height: math.unit(50, "km")
  10562. },
  10563. {
  10564. name: "Gigamacro",
  10565. height: math.unit(100, "km")
  10566. },
  10567. {
  10568. name: "Alpha Macro",
  10569. height: math.unit(7.88e7, "yottameters")
  10570. },
  10571. ]
  10572. ))
  10573. characterMakers.push(() => makeCharacter(
  10574. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10575. {
  10576. front: {
  10577. height: math.unit(6, "feet"),
  10578. weight: math.unit(110, "lb"),
  10579. name: "Front",
  10580. image: {
  10581. source: "./media/characters/mel/front.svg",
  10582. extra: 736 / 617,
  10583. bottom: 0.017
  10584. }
  10585. },
  10586. },
  10587. [
  10588. {
  10589. name: "Pico",
  10590. height: math.unit(3, "pm")
  10591. },
  10592. {
  10593. name: "Nano",
  10594. height: math.unit(3, "nm")
  10595. },
  10596. {
  10597. name: "Micro",
  10598. height: math.unit(0.3, "mm"),
  10599. default: true
  10600. },
  10601. {
  10602. name: "Micro+",
  10603. height: math.unit(3, "mm")
  10604. },
  10605. {
  10606. name: "Normal",
  10607. height: math.unit(5 + 10.5 / 12, "feet")
  10608. },
  10609. ]
  10610. ))
  10611. characterMakers.push(() => makeCharacter(
  10612. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10613. {
  10614. kaiju: {
  10615. height: math.unit(1.75, "meters"),
  10616. weight: math.unit(55, "kg"),
  10617. name: "Kaiju",
  10618. image: {
  10619. source: "./media/characters/lykonous/kaiju.svg",
  10620. extra: 1055 / 946,
  10621. bottom: 0.135
  10622. }
  10623. },
  10624. },
  10625. [
  10626. {
  10627. name: "Normal",
  10628. height: math.unit(2.5, "meters"),
  10629. default: true
  10630. },
  10631. {
  10632. name: "Kaiju Dragon",
  10633. height: math.unit(60, "meters")
  10634. },
  10635. {
  10636. name: "Mega Kaiju",
  10637. height: math.unit(120, "km")
  10638. },
  10639. {
  10640. name: "Giga Kaiju",
  10641. height: math.unit(200, "megameters")
  10642. },
  10643. {
  10644. name: "Terra Kaiju",
  10645. height: math.unit(400, "gigameters")
  10646. },
  10647. {
  10648. name: "Kaiju Dragon God",
  10649. height: math.unit(13000, "exaparsecs")
  10650. },
  10651. ]
  10652. ))
  10653. characterMakers.push(() => makeCharacter(
  10654. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10655. {
  10656. front: {
  10657. height: math.unit(6, "feet"),
  10658. weight: math.unit(150, "lb"),
  10659. name: "Front",
  10660. image: {
  10661. source: "./media/characters/blü/front.svg",
  10662. extra: 1883 / 1564,
  10663. bottom: 0.031
  10664. }
  10665. },
  10666. },
  10667. [
  10668. {
  10669. name: "Normal",
  10670. height: math.unit(13, "feet"),
  10671. default: true
  10672. },
  10673. {
  10674. name: "Big Boi",
  10675. height: math.unit(150, "meters")
  10676. },
  10677. {
  10678. name: "Mini Stomper",
  10679. height: math.unit(300, "meters")
  10680. },
  10681. {
  10682. name: "Macro",
  10683. height: math.unit(1000, "meters")
  10684. },
  10685. {
  10686. name: "Megamacro",
  10687. height: math.unit(11000, "meters")
  10688. },
  10689. {
  10690. name: "Gigamacro",
  10691. height: math.unit(11000, "km")
  10692. },
  10693. {
  10694. name: "Teramacro",
  10695. height: math.unit(420000, "km")
  10696. },
  10697. {
  10698. name: "Examacro",
  10699. height: math.unit(120, "parsecs")
  10700. },
  10701. {
  10702. name: "God Tho",
  10703. height: math.unit(98000000000, "parsecs")
  10704. },
  10705. ]
  10706. ))
  10707. characterMakers.push(() => makeCharacter(
  10708. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10709. {
  10710. taurFront: {
  10711. height: math.unit(6, "feet"),
  10712. weight: math.unit(200, "lb"),
  10713. name: "Taur (Front)",
  10714. image: {
  10715. source: "./media/characters/scales/taur-front.svg",
  10716. extra: 1,
  10717. bottom: 0.05
  10718. }
  10719. },
  10720. taurBack: {
  10721. height: math.unit(6, "feet"),
  10722. weight: math.unit(200, "lb"),
  10723. name: "Taur (Back)",
  10724. image: {
  10725. source: "./media/characters/scales/taur-back.svg",
  10726. extra: 1,
  10727. bottom: 0.08
  10728. }
  10729. },
  10730. anthro: {
  10731. height: math.unit(6 * 7 / 12, "feet"),
  10732. weight: math.unit(100, "lb"),
  10733. name: "Anthro",
  10734. image: {
  10735. source: "./media/characters/scales/anthro.svg",
  10736. extra: 1,
  10737. bottom: 0.06
  10738. }
  10739. },
  10740. },
  10741. [
  10742. {
  10743. name: "Normal",
  10744. height: math.unit(12, "feet"),
  10745. default: true
  10746. },
  10747. ]
  10748. ))
  10749. characterMakers.push(() => makeCharacter(
  10750. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10751. {
  10752. front: {
  10753. height: math.unit(6, "feet"),
  10754. weight: math.unit(150, "lb"),
  10755. name: "Front",
  10756. image: {
  10757. source: "./media/characters/koragos/front.svg",
  10758. extra: 841 / 794,
  10759. bottom: 0.035
  10760. }
  10761. },
  10762. back: {
  10763. height: math.unit(6, "feet"),
  10764. weight: math.unit(150, "lb"),
  10765. name: "Back",
  10766. image: {
  10767. source: "./media/characters/koragos/back.svg",
  10768. extra: 841 / 810,
  10769. bottom: 0.022
  10770. }
  10771. },
  10772. },
  10773. [
  10774. {
  10775. name: "Normal",
  10776. height: math.unit(6 + 11 / 12, "feet"),
  10777. default: true
  10778. },
  10779. {
  10780. name: "Macro",
  10781. height: math.unit(490, "feet")
  10782. },
  10783. {
  10784. name: "Megamacro",
  10785. height: math.unit(10, "miles")
  10786. },
  10787. {
  10788. name: "Gigamacro",
  10789. height: math.unit(50, "miles")
  10790. },
  10791. ]
  10792. ))
  10793. characterMakers.push(() => makeCharacter(
  10794. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10795. {
  10796. front: {
  10797. height: math.unit(6, "feet"),
  10798. weight: math.unit(250, "lb"),
  10799. name: "Front",
  10800. image: {
  10801. source: "./media/characters/xylrem/front.svg",
  10802. extra: 3323 / 3050,
  10803. bottom: 0.065
  10804. }
  10805. },
  10806. },
  10807. [
  10808. {
  10809. name: "Micro",
  10810. height: math.unit(4, "feet")
  10811. },
  10812. {
  10813. name: "Normal",
  10814. height: math.unit(16, "feet"),
  10815. default: true
  10816. },
  10817. {
  10818. name: "Macro",
  10819. height: math.unit(2720, "feet")
  10820. },
  10821. {
  10822. name: "Megamacro",
  10823. height: math.unit(25000, "miles")
  10824. },
  10825. ]
  10826. ))
  10827. characterMakers.push(() => makeCharacter(
  10828. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10829. {
  10830. front: {
  10831. height: math.unit(8, "feet"),
  10832. weight: math.unit(250, "kg"),
  10833. name: "Front",
  10834. image: {
  10835. source: "./media/characters/ikideru/front.svg",
  10836. extra: 930 / 870,
  10837. bottom: 0.087
  10838. }
  10839. },
  10840. back: {
  10841. height: math.unit(8, "feet"),
  10842. weight: math.unit(250, "kg"),
  10843. name: "Back",
  10844. image: {
  10845. source: "./media/characters/ikideru/back.svg",
  10846. extra: 919 / 852,
  10847. bottom: 0.055
  10848. }
  10849. },
  10850. },
  10851. [
  10852. {
  10853. name: "Rare",
  10854. height: math.unit(8, "feet"),
  10855. default: true
  10856. },
  10857. {
  10858. name: "Playful Loom",
  10859. height: math.unit(80, "feet")
  10860. },
  10861. {
  10862. name: "City Leaner",
  10863. height: math.unit(230, "feet")
  10864. },
  10865. {
  10866. name: "Megamacro",
  10867. height: math.unit(2500, "feet")
  10868. },
  10869. {
  10870. name: "Gigamacro",
  10871. height: math.unit(26400, "feet")
  10872. },
  10873. {
  10874. name: "Tectonic Shifter",
  10875. height: math.unit(1.7, "megameters")
  10876. },
  10877. {
  10878. name: "Planet Carer",
  10879. height: math.unit(21, "megameters")
  10880. },
  10881. {
  10882. name: "God",
  10883. height: math.unit(11157.22, "parsecs")
  10884. },
  10885. ]
  10886. ))
  10887. characterMakers.push(() => makeCharacter(
  10888. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10889. {
  10890. front: {
  10891. height: math.unit(6, "feet"),
  10892. weight: math.unit(120, "lb"),
  10893. name: "Front",
  10894. image: {
  10895. source: "./media/characters/neo/front.svg"
  10896. }
  10897. },
  10898. },
  10899. [
  10900. {
  10901. name: "Micro",
  10902. height: math.unit(2, "inches"),
  10903. default: true
  10904. },
  10905. {
  10906. name: "Human Size",
  10907. height: math.unit(5 + 8 / 12, "feet")
  10908. },
  10909. ]
  10910. ))
  10911. characterMakers.push(() => makeCharacter(
  10912. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10913. {
  10914. front: {
  10915. height: math.unit(13 + 10 / 12, "feet"),
  10916. weight: math.unit(5320, "lb"),
  10917. name: "Front",
  10918. image: {
  10919. source: "./media/characters/chauncey-chantz/front.svg",
  10920. extra: 1587 / 1435,
  10921. bottom: 0.02
  10922. }
  10923. },
  10924. },
  10925. [
  10926. {
  10927. name: "Normal",
  10928. height: math.unit(13 + 10 / 12, "feet"),
  10929. default: true
  10930. },
  10931. {
  10932. name: "Macro",
  10933. height: math.unit(45, "feet")
  10934. },
  10935. {
  10936. name: "Megamacro",
  10937. height: math.unit(250, "miles")
  10938. },
  10939. {
  10940. name: "Planetary",
  10941. height: math.unit(10000, "miles")
  10942. },
  10943. {
  10944. name: "Galactic",
  10945. height: math.unit(40000, "parsecs")
  10946. },
  10947. {
  10948. name: "Universal",
  10949. height: math.unit(1, "yottameter")
  10950. },
  10951. ]
  10952. ))
  10953. characterMakers.push(() => makeCharacter(
  10954. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10955. {
  10956. front: {
  10957. height: math.unit(6, "feet"),
  10958. weight: math.unit(150, "lb"),
  10959. name: "Front",
  10960. image: {
  10961. source: "./media/characters/epifox/front.svg",
  10962. extra: 1,
  10963. bottom: 0.075
  10964. }
  10965. },
  10966. },
  10967. [
  10968. {
  10969. name: "Micro",
  10970. height: math.unit(6, "inches")
  10971. },
  10972. {
  10973. name: "Normal",
  10974. height: math.unit(12, "feet"),
  10975. default: true
  10976. },
  10977. {
  10978. name: "Macro",
  10979. height: math.unit(3810, "feet")
  10980. },
  10981. {
  10982. name: "Megamacro",
  10983. height: math.unit(500, "miles")
  10984. },
  10985. ]
  10986. ))
  10987. characterMakers.push(() => makeCharacter(
  10988. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10989. {
  10990. front: {
  10991. height: math.unit(1.8796, "m"),
  10992. weight: math.unit(230, "lb"),
  10993. name: "Front",
  10994. image: {
  10995. source: "./media/characters/colin-t/front.svg",
  10996. extra: 1272 / 1193,
  10997. bottom: 0.07
  10998. }
  10999. },
  11000. },
  11001. [
  11002. {
  11003. name: "Micro",
  11004. height: math.unit(0.571, "meters")
  11005. },
  11006. {
  11007. name: "Normal",
  11008. height: math.unit(1.8796, "meters"),
  11009. default: true
  11010. },
  11011. {
  11012. name: "Tall",
  11013. height: math.unit(4, "meters")
  11014. },
  11015. {
  11016. name: "Macro",
  11017. height: math.unit(67.241, "meters")
  11018. },
  11019. {
  11020. name: "Megamacro",
  11021. height: math.unit(371.856, "meters")
  11022. },
  11023. {
  11024. name: "Planetary",
  11025. height: math.unit(12631.5689, "km")
  11026. },
  11027. ]
  11028. ))
  11029. characterMakers.push(() => makeCharacter(
  11030. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11031. {
  11032. front: {
  11033. height: math.unit(1.85, "meters"),
  11034. weight: math.unit(80, "kg"),
  11035. name: "Front",
  11036. image: {
  11037. source: "./media/characters/matvei/front.svg",
  11038. extra: 614 / 594,
  11039. bottom: 0.01
  11040. }
  11041. },
  11042. },
  11043. [
  11044. {
  11045. name: "Normal",
  11046. height: math.unit(1.85, "meters"),
  11047. default: true
  11048. },
  11049. ]
  11050. ))
  11051. characterMakers.push(() => makeCharacter(
  11052. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11053. {
  11054. front: {
  11055. height: math.unit(5 + 9 / 12, "feet"),
  11056. weight: math.unit(70, "lb"),
  11057. name: "Front",
  11058. image: {
  11059. source: "./media/characters/quincy/front.svg",
  11060. extra: 3041 / 2751
  11061. }
  11062. },
  11063. back: {
  11064. height: math.unit(5 + 9 / 12, "feet"),
  11065. weight: math.unit(70, "lb"),
  11066. name: "Back",
  11067. image: {
  11068. source: "./media/characters/quincy/back.svg",
  11069. extra: 3041 / 2751
  11070. }
  11071. },
  11072. flying: {
  11073. height: math.unit(5 + 4 / 12, "feet"),
  11074. weight: math.unit(70, "lb"),
  11075. name: "Flying",
  11076. image: {
  11077. source: "./media/characters/quincy/flying.svg",
  11078. extra: 1044 / 930
  11079. }
  11080. },
  11081. },
  11082. [
  11083. {
  11084. name: "Micro",
  11085. height: math.unit(3, "cm")
  11086. },
  11087. {
  11088. name: "Normal",
  11089. height: math.unit(5 + 9 / 12, "feet")
  11090. },
  11091. {
  11092. name: "Macro",
  11093. height: math.unit(200, "meters"),
  11094. default: true
  11095. },
  11096. {
  11097. name: "Megamacro",
  11098. height: math.unit(1000, "meters")
  11099. },
  11100. ]
  11101. ))
  11102. characterMakers.push(() => makeCharacter(
  11103. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11104. {
  11105. front: {
  11106. height: math.unit(4 + 7 / 12, "feet"),
  11107. weight: math.unit(150, "lb"),
  11108. name: "Front",
  11109. image: {
  11110. source: "./media/characters/vanrel/front.svg",
  11111. extra: 1,
  11112. bottom: 0.02
  11113. }
  11114. },
  11115. elemental: {
  11116. height: math.unit(3, "feet"),
  11117. weight: math.unit(150, "lb"),
  11118. name: "Elemental",
  11119. image: {
  11120. source: "./media/characters/vanrel/elemental.svg",
  11121. extra: 192.3 / 162.8,
  11122. bottom: 1.79 / 194.17
  11123. }
  11124. },
  11125. side: {
  11126. height: math.unit(4 + 7 / 12, "feet"),
  11127. weight: math.unit(150, "lb"),
  11128. name: "Side",
  11129. image: {
  11130. source: "./media/characters/vanrel/side.svg",
  11131. extra: 1,
  11132. bottom: 0.025
  11133. }
  11134. },
  11135. tome: {
  11136. height: math.unit(1.35, "feet"),
  11137. weight: math.unit(10, "lb"),
  11138. name: "Vanrel's Tome",
  11139. rename: true,
  11140. image: {
  11141. source: "./media/characters/vanrel/tome.svg"
  11142. }
  11143. },
  11144. beans: {
  11145. height: math.unit(0.89, "feet"),
  11146. name: "Beans",
  11147. image: {
  11148. source: "./media/characters/vanrel/beans.svg"
  11149. }
  11150. },
  11151. },
  11152. [
  11153. {
  11154. name: "Normal",
  11155. height: math.unit(4 + 7 / 12, "feet"),
  11156. default: true
  11157. },
  11158. ]
  11159. ))
  11160. characterMakers.push(() => makeCharacter(
  11161. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11162. {
  11163. front: {
  11164. height: math.unit(7 + 5 / 12, "feet"),
  11165. weight: math.unit(150, "lb"),
  11166. name: "Front",
  11167. image: {
  11168. source: "./media/characters/kuiper-vanrel/front.svg",
  11169. extra: 1118 / 1068,
  11170. bottom: 0.09
  11171. }
  11172. },
  11173. foot: {
  11174. height: math.unit(0.55, "meters"),
  11175. name: "Foot",
  11176. image: {
  11177. source: "./media/characters/kuiper-vanrel/foot.svg",
  11178. }
  11179. },
  11180. battle: {
  11181. height: math.unit(6.824, "feet"),
  11182. weight: math.unit(150, "lb"),
  11183. name: "Battle",
  11184. image: {
  11185. source: "./media/characters/kuiper-vanrel/battle.svg",
  11186. extra: 1466 / 1327,
  11187. bottom: 29 / 1492.5
  11188. }
  11189. },
  11190. },
  11191. [
  11192. {
  11193. name: "Normal",
  11194. height: math.unit(7 + 5 / 12, "feet"),
  11195. default: true
  11196. },
  11197. ]
  11198. ))
  11199. characterMakers.push(() => makeCharacter(
  11200. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11201. {
  11202. front: {
  11203. height: math.unit(8 + 5 / 12, "feet"),
  11204. weight: math.unit(150, "lb"),
  11205. name: "Front",
  11206. image: {
  11207. source: "./media/characters/keset-vanrel/front.svg",
  11208. extra: 1150 / 1084,
  11209. bottom: 0.05
  11210. }
  11211. },
  11212. hand: {
  11213. height: math.unit(0.6, "meters"),
  11214. name: "Hand",
  11215. image: {
  11216. source: "./media/characters/keset-vanrel/hand.svg"
  11217. }
  11218. },
  11219. foot: {
  11220. height: math.unit(0.94978, "meters"),
  11221. name: "Foot",
  11222. image: {
  11223. source: "./media/characters/keset-vanrel/foot.svg"
  11224. }
  11225. },
  11226. battle: {
  11227. height: math.unit(7.408, "feet"),
  11228. weight: math.unit(150, "lb"),
  11229. name: "Battle",
  11230. image: {
  11231. source: "./media/characters/keset-vanrel/battle.svg",
  11232. extra: 1890 / 1386,
  11233. bottom: 73.28 / 1970
  11234. }
  11235. },
  11236. },
  11237. [
  11238. {
  11239. name: "Normal",
  11240. height: math.unit(8 + 5 / 12, "feet"),
  11241. default: true
  11242. },
  11243. ]
  11244. ))
  11245. characterMakers.push(() => makeCharacter(
  11246. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11247. {
  11248. front: {
  11249. height: math.unit(6, "feet"),
  11250. weight: math.unit(150, "lb"),
  11251. name: "Front",
  11252. image: {
  11253. source: "./media/characters/neos/front.svg",
  11254. extra: 1696 / 992,
  11255. bottom: 0.14
  11256. }
  11257. },
  11258. },
  11259. [
  11260. {
  11261. name: "Normal",
  11262. height: math.unit(54, "cm"),
  11263. default: true
  11264. },
  11265. {
  11266. name: "Macro",
  11267. height: math.unit(100, "m")
  11268. },
  11269. {
  11270. name: "Megamacro",
  11271. height: math.unit(10, "km")
  11272. },
  11273. {
  11274. name: "Megamacro+",
  11275. height: math.unit(100, "km")
  11276. },
  11277. {
  11278. name: "Gigamacro",
  11279. height: math.unit(100, "Mm")
  11280. },
  11281. {
  11282. name: "Teramacro",
  11283. height: math.unit(100, "Gm")
  11284. },
  11285. {
  11286. name: "Examacro",
  11287. height: math.unit(100, "Em")
  11288. },
  11289. {
  11290. name: "Godly",
  11291. height: math.unit(10000, "Ym")
  11292. },
  11293. {
  11294. name: "Beyond Godly",
  11295. height: math.unit(25, "multiverses")
  11296. },
  11297. ]
  11298. ))
  11299. characterMakers.push(() => makeCharacter(
  11300. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11301. {
  11302. feminine: {
  11303. height: math.unit(5, "feet"),
  11304. weight: math.unit(100, "lb"),
  11305. name: "Feminine",
  11306. image: {
  11307. source: "./media/characters/sammy-mouse/feminine.svg",
  11308. extra: 2526 / 2425,
  11309. bottom: 0.123
  11310. }
  11311. },
  11312. masculine: {
  11313. height: math.unit(5, "feet"),
  11314. weight: math.unit(100, "lb"),
  11315. name: "Masculine",
  11316. image: {
  11317. source: "./media/characters/sammy-mouse/masculine.svg",
  11318. extra: 2526 / 2425,
  11319. bottom: 0.123
  11320. }
  11321. },
  11322. },
  11323. [
  11324. {
  11325. name: "Micro",
  11326. height: math.unit(5, "inches")
  11327. },
  11328. {
  11329. name: "Normal",
  11330. height: math.unit(5, "feet"),
  11331. default: true
  11332. },
  11333. {
  11334. name: "Macro",
  11335. height: math.unit(60, "feet")
  11336. },
  11337. ]
  11338. ))
  11339. characterMakers.push(() => makeCharacter(
  11340. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11341. {
  11342. front: {
  11343. height: math.unit(4, "feet"),
  11344. weight: math.unit(50, "lb"),
  11345. name: "Front",
  11346. image: {
  11347. source: "./media/characters/kole/front.svg",
  11348. extra: 1423 / 1303,
  11349. bottom: 0.025
  11350. }
  11351. },
  11352. back: {
  11353. height: math.unit(4, "feet"),
  11354. weight: math.unit(50, "lb"),
  11355. name: "Back",
  11356. image: {
  11357. source: "./media/characters/kole/back.svg",
  11358. extra: 1426 / 1280,
  11359. bottom: 0.02
  11360. }
  11361. },
  11362. },
  11363. [
  11364. {
  11365. name: "Normal",
  11366. height: math.unit(4, "feet"),
  11367. default: true
  11368. },
  11369. ]
  11370. ))
  11371. characterMakers.push(() => makeCharacter(
  11372. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11373. {
  11374. front: {
  11375. height: math.unit(2 + 6 / 12, "feet"),
  11376. weight: math.unit(20, "lb"),
  11377. name: "Front",
  11378. image: {
  11379. source: "./media/characters/rufran/front.svg",
  11380. extra: 2041 / 1839,
  11381. bottom: 0.055
  11382. }
  11383. },
  11384. back: {
  11385. height: math.unit(2 + 6 / 12, "feet"),
  11386. weight: math.unit(20, "lb"),
  11387. name: "Back",
  11388. image: {
  11389. source: "./media/characters/rufran/back.svg",
  11390. extra: 2054 / 1839,
  11391. bottom: 0.01
  11392. }
  11393. },
  11394. hand: {
  11395. height: math.unit(0.2166, "meters"),
  11396. name: "Hand",
  11397. image: {
  11398. source: "./media/characters/rufran/hand.svg"
  11399. }
  11400. },
  11401. foot: {
  11402. height: math.unit(0.185, "meters"),
  11403. name: "Foot",
  11404. image: {
  11405. source: "./media/characters/rufran/foot.svg"
  11406. }
  11407. },
  11408. },
  11409. [
  11410. {
  11411. name: "Micro",
  11412. height: math.unit(1, "inch")
  11413. },
  11414. {
  11415. name: "Normal",
  11416. height: math.unit(2 + 6 / 12, "feet"),
  11417. default: true
  11418. },
  11419. {
  11420. name: "Big",
  11421. height: math.unit(60, "feet")
  11422. },
  11423. {
  11424. name: "Macro",
  11425. height: math.unit(325, "feet")
  11426. },
  11427. ]
  11428. ))
  11429. characterMakers.push(() => makeCharacter(
  11430. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11431. {
  11432. front: {
  11433. height: math.unit(0.3, "meters"),
  11434. weight: math.unit(3.5, "kg"),
  11435. name: "Front",
  11436. image: {
  11437. source: "./media/characters/chip/front.svg",
  11438. extra: 748 / 674
  11439. }
  11440. },
  11441. },
  11442. [
  11443. {
  11444. name: "Micro",
  11445. height: math.unit(1, "inch"),
  11446. default: true
  11447. },
  11448. ]
  11449. ))
  11450. characterMakers.push(() => makeCharacter(
  11451. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11452. {
  11453. side: {
  11454. height: math.unit(2.3, "meters"),
  11455. weight: math.unit(3500, "lb"),
  11456. name: "Side",
  11457. image: {
  11458. source: "./media/characters/torvid/side.svg",
  11459. extra: 1972 / 722,
  11460. bottom: 0.035
  11461. }
  11462. },
  11463. },
  11464. [
  11465. {
  11466. name: "Normal",
  11467. height: math.unit(2.3, "meters"),
  11468. default: true
  11469. },
  11470. ]
  11471. ))
  11472. characterMakers.push(() => makeCharacter(
  11473. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11474. {
  11475. front: {
  11476. height: math.unit(2, "meters"),
  11477. weight: math.unit(150.5, "kg"),
  11478. name: "Front",
  11479. image: {
  11480. source: "./media/characters/susan/front.svg",
  11481. extra: 693 / 635,
  11482. bottom: 0.05
  11483. }
  11484. },
  11485. },
  11486. [
  11487. {
  11488. name: "Megamacro",
  11489. height: math.unit(505, "miles"),
  11490. default: true
  11491. },
  11492. ]
  11493. ))
  11494. characterMakers.push(() => makeCharacter(
  11495. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11496. {
  11497. front: {
  11498. height: math.unit(6, "feet"),
  11499. weight: math.unit(150, "lb"),
  11500. name: "Front",
  11501. image: {
  11502. source: "./media/characters/raindrops/front.svg",
  11503. extra: 2655 / 2461,
  11504. bottom: 49/2705
  11505. }
  11506. },
  11507. back: {
  11508. height: math.unit(6, "feet"),
  11509. weight: math.unit(150, "lb"),
  11510. name: "Back",
  11511. image: {
  11512. source: "./media/characters/raindrops/back.svg",
  11513. extra: 2574 / 2400,
  11514. bottom: 65/2634
  11515. }
  11516. },
  11517. },
  11518. [
  11519. {
  11520. name: "Micro",
  11521. height: math.unit(6, "inches")
  11522. },
  11523. {
  11524. name: "Normal",
  11525. height: math.unit(6 + 2 / 12, "feet")
  11526. },
  11527. {
  11528. name: "Macro",
  11529. height: math.unit(131, "feet"),
  11530. default: true
  11531. },
  11532. {
  11533. name: "Megamacro",
  11534. height: math.unit(15, "miles")
  11535. },
  11536. {
  11537. name: "Gigamacro",
  11538. height: math.unit(4000, "miles")
  11539. },
  11540. {
  11541. name: "Teramacro",
  11542. height: math.unit(315000, "miles")
  11543. },
  11544. ]
  11545. ))
  11546. characterMakers.push(() => makeCharacter(
  11547. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11548. {
  11549. front: {
  11550. height: math.unit(2.794, "meters"),
  11551. weight: math.unit(325, "kg"),
  11552. name: "Front",
  11553. image: {
  11554. source: "./media/characters/tezwa/front.svg",
  11555. extra: 2083 / 1906,
  11556. bottom: 0.031
  11557. }
  11558. },
  11559. foot: {
  11560. height: math.unit(0.687, "meters"),
  11561. name: "Foot",
  11562. image: {
  11563. source: "./media/characters/tezwa/foot.svg"
  11564. }
  11565. },
  11566. },
  11567. [
  11568. {
  11569. name: "Normal",
  11570. height: math.unit(9 + 2 / 12, "feet"),
  11571. default: true
  11572. },
  11573. ]
  11574. ))
  11575. characterMakers.push(() => makeCharacter(
  11576. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11577. {
  11578. front: {
  11579. height: math.unit(58, "feet"),
  11580. weight: math.unit(89000, "lb"),
  11581. name: "Front",
  11582. image: {
  11583. source: "./media/characters/typhus/front.svg",
  11584. extra: 816 / 800,
  11585. bottom: 0.065
  11586. }
  11587. },
  11588. },
  11589. [
  11590. {
  11591. name: "Macro",
  11592. height: math.unit(58, "feet"),
  11593. default: true
  11594. },
  11595. ]
  11596. ))
  11597. characterMakers.push(() => makeCharacter(
  11598. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11599. {
  11600. front: {
  11601. height: math.unit(12, "feet"),
  11602. weight: math.unit(6, "tonnes"),
  11603. name: "Front",
  11604. image: {
  11605. source: "./media/characters/lyra-von-wulf/front.svg",
  11606. extra: 1,
  11607. bottom: 0.10
  11608. }
  11609. },
  11610. frontMecha: {
  11611. height: math.unit(12, "feet"),
  11612. weight: math.unit(12, "tonnes"),
  11613. name: "Front (Mecha)",
  11614. image: {
  11615. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11616. extra: 1,
  11617. bottom: 0.042
  11618. }
  11619. },
  11620. maw: {
  11621. height: math.unit(2.2, "feet"),
  11622. name: "Maw",
  11623. image: {
  11624. source: "./media/characters/lyra-von-wulf/maw.svg"
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Normal",
  11631. height: math.unit(12, "feet"),
  11632. default: true
  11633. },
  11634. {
  11635. name: "Classic",
  11636. height: math.unit(50, "feet")
  11637. },
  11638. {
  11639. name: "Macro",
  11640. height: math.unit(500, "feet")
  11641. },
  11642. {
  11643. name: "Megamacro",
  11644. height: math.unit(1, "mile")
  11645. },
  11646. {
  11647. name: "Gigamacro",
  11648. height: math.unit(400, "miles")
  11649. },
  11650. {
  11651. name: "Teramacro",
  11652. height: math.unit(22000, "miles")
  11653. },
  11654. {
  11655. name: "Solarmacro",
  11656. height: math.unit(8600000, "miles")
  11657. },
  11658. {
  11659. name: "Galactic",
  11660. height: math.unit(1057000, "lightyears")
  11661. },
  11662. ]
  11663. ))
  11664. characterMakers.push(() => makeCharacter(
  11665. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11666. {
  11667. front: {
  11668. height: math.unit(6 + 10 / 12, "feet"),
  11669. weight: math.unit(150, "lb"),
  11670. name: "Front",
  11671. image: {
  11672. source: "./media/characters/dixon/front.svg",
  11673. extra: 3361 / 3209,
  11674. bottom: 0.01
  11675. }
  11676. },
  11677. },
  11678. [
  11679. {
  11680. name: "Normal",
  11681. height: math.unit(6 + 10 / 12, "feet"),
  11682. default: true
  11683. },
  11684. {
  11685. name: "Big",
  11686. height: math.unit(12, "meters")
  11687. },
  11688. {
  11689. name: "Macro",
  11690. height: math.unit(500, "meters")
  11691. },
  11692. {
  11693. name: "Megamacro",
  11694. height: math.unit(2, "km")
  11695. },
  11696. ]
  11697. ))
  11698. characterMakers.push(() => makeCharacter(
  11699. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11700. {
  11701. front: {
  11702. height: math.unit(185, "cm"),
  11703. weight: math.unit(68, "kg"),
  11704. name: "Front",
  11705. image: {
  11706. source: "./media/characters/kauko/front.svg",
  11707. extra: 1455 / 1421,
  11708. bottom: 0.03
  11709. }
  11710. },
  11711. back: {
  11712. height: math.unit(185, "cm"),
  11713. weight: math.unit(68, "kg"),
  11714. name: "Back",
  11715. image: {
  11716. source: "./media/characters/kauko/back.svg",
  11717. extra: 1455 / 1421,
  11718. bottom: 0.004
  11719. }
  11720. },
  11721. },
  11722. [
  11723. {
  11724. name: "Normal",
  11725. height: math.unit(185, "cm"),
  11726. default: true
  11727. },
  11728. ]
  11729. ))
  11730. characterMakers.push(() => makeCharacter(
  11731. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11732. {
  11733. front: {
  11734. height: math.unit(6, "feet"),
  11735. weight: math.unit(150, "kg"),
  11736. name: "Front",
  11737. image: {
  11738. source: "./media/characters/varg/front.svg",
  11739. extra: 1108 / 1018,
  11740. bottom: 0.0375
  11741. }
  11742. },
  11743. },
  11744. [
  11745. {
  11746. name: "Normal",
  11747. height: math.unit(5, "meters")
  11748. },
  11749. {
  11750. name: "Macro",
  11751. height: math.unit(200, "meters")
  11752. },
  11753. {
  11754. name: "Megamacro",
  11755. height: math.unit(20, "kilometers")
  11756. },
  11757. {
  11758. name: "True Size",
  11759. height: math.unit(211, "km"),
  11760. default: true
  11761. },
  11762. {
  11763. name: "Gigamacro",
  11764. height: math.unit(1000, "km")
  11765. },
  11766. {
  11767. name: "Gigamacro+",
  11768. height: math.unit(8000, "km")
  11769. },
  11770. {
  11771. name: "Teramacro",
  11772. height: math.unit(1000000, "km")
  11773. },
  11774. ]
  11775. ))
  11776. characterMakers.push(() => makeCharacter(
  11777. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11778. {
  11779. front: {
  11780. height: math.unit(7 + 7 / 12, "feet"),
  11781. weight: math.unit(267, "lb"),
  11782. name: "Front",
  11783. image: {
  11784. source: "./media/characters/dayza/front.svg",
  11785. extra: 1262 / 1200,
  11786. bottom: 0.035
  11787. }
  11788. },
  11789. side: {
  11790. height: math.unit(7 + 7 / 12, "feet"),
  11791. weight: math.unit(267, "lb"),
  11792. name: "Side",
  11793. image: {
  11794. source: "./media/characters/dayza/side.svg",
  11795. extra: 1295 / 1245,
  11796. bottom: 0.05
  11797. }
  11798. },
  11799. back: {
  11800. height: math.unit(7 + 7 / 12, "feet"),
  11801. weight: math.unit(267, "lb"),
  11802. name: "Back",
  11803. image: {
  11804. source: "./media/characters/dayza/back.svg",
  11805. extra: 1241 / 1170
  11806. }
  11807. },
  11808. },
  11809. [
  11810. {
  11811. name: "Normal",
  11812. height: math.unit(7 + 7 / 12, "feet"),
  11813. default: true
  11814. },
  11815. {
  11816. name: "Macro",
  11817. height: math.unit(155, "feet")
  11818. },
  11819. ]
  11820. ))
  11821. characterMakers.push(() => makeCharacter(
  11822. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11823. {
  11824. front: {
  11825. height: math.unit(6 + 5 / 12, "feet"),
  11826. weight: math.unit(160, "lb"),
  11827. name: "Front",
  11828. image: {
  11829. source: "./media/characters/xanthos/front.svg",
  11830. extra: 1,
  11831. bottom: 0.04
  11832. }
  11833. },
  11834. back: {
  11835. height: math.unit(6 + 5 / 12, "feet"),
  11836. weight: math.unit(160, "lb"),
  11837. name: "Back",
  11838. image: {
  11839. source: "./media/characters/xanthos/back.svg",
  11840. extra: 1,
  11841. bottom: 0.03
  11842. }
  11843. },
  11844. hand: {
  11845. height: math.unit(0.928, "feet"),
  11846. name: "Hand",
  11847. image: {
  11848. source: "./media/characters/xanthos/hand.svg"
  11849. }
  11850. },
  11851. foot: {
  11852. height: math.unit(1.286, "feet"),
  11853. name: "Foot",
  11854. image: {
  11855. source: "./media/characters/xanthos/foot.svg"
  11856. }
  11857. },
  11858. },
  11859. [
  11860. {
  11861. name: "Normal",
  11862. height: math.unit(6 + 5 / 12, "feet"),
  11863. default: true
  11864. },
  11865. {
  11866. name: "Normal+",
  11867. height: math.unit(6, "meters")
  11868. },
  11869. {
  11870. name: "Macro",
  11871. height: math.unit(40, "feet")
  11872. },
  11873. {
  11874. name: "Macro+",
  11875. height: math.unit(200, "meters")
  11876. },
  11877. {
  11878. name: "Megamacro",
  11879. height: math.unit(20, "km")
  11880. },
  11881. {
  11882. name: "Megamacro+",
  11883. height: math.unit(100, "km")
  11884. },
  11885. ]
  11886. ))
  11887. characterMakers.push(() => makeCharacter(
  11888. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11889. {
  11890. front: {
  11891. height: math.unit(6 + 3 / 12, "feet"),
  11892. weight: math.unit(215, "lb"),
  11893. name: "Front",
  11894. image: {
  11895. source: "./media/characters/grynn/front.svg",
  11896. extra: 4627 / 4209,
  11897. bottom: 0.047
  11898. }
  11899. },
  11900. },
  11901. [
  11902. {
  11903. name: "Micro",
  11904. height: math.unit(6, "inches")
  11905. },
  11906. {
  11907. name: "Normal",
  11908. height: math.unit(6 + 3 / 12, "feet"),
  11909. default: true
  11910. },
  11911. {
  11912. name: "Big",
  11913. height: math.unit(104, "feet")
  11914. },
  11915. {
  11916. name: "Macro",
  11917. height: math.unit(944, "feet")
  11918. },
  11919. {
  11920. name: "Macro+",
  11921. height: math.unit(9480, "feet")
  11922. },
  11923. {
  11924. name: "Megamacro",
  11925. height: math.unit(78752, "feet")
  11926. },
  11927. {
  11928. name: "Megamacro+",
  11929. height: math.unit(630128, "feet")
  11930. },
  11931. {
  11932. name: "Megamacro++",
  11933. height: math.unit(3150695, "feet")
  11934. },
  11935. ]
  11936. ))
  11937. characterMakers.push(() => makeCharacter(
  11938. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11939. {
  11940. front: {
  11941. height: math.unit(7 + 5 / 12, "feet"),
  11942. weight: math.unit(450, "lb"),
  11943. name: "Front",
  11944. image: {
  11945. source: "./media/characters/mocha-aura/front.svg",
  11946. extra: 1907 / 1817,
  11947. bottom: 0.04
  11948. }
  11949. },
  11950. back: {
  11951. height: math.unit(7 + 5 / 12, "feet"),
  11952. weight: math.unit(450, "lb"),
  11953. name: "Back",
  11954. image: {
  11955. source: "./media/characters/mocha-aura/back.svg",
  11956. extra: 1900 / 1825,
  11957. bottom: 0.045
  11958. }
  11959. },
  11960. },
  11961. [
  11962. {
  11963. name: "Nano",
  11964. height: math.unit(1, "nm")
  11965. },
  11966. {
  11967. name: "Megamicro",
  11968. height: math.unit(1, "mm")
  11969. },
  11970. {
  11971. name: "Micro",
  11972. height: math.unit(3, "inches")
  11973. },
  11974. {
  11975. name: "Normal",
  11976. height: math.unit(7 + 5 / 12, "feet"),
  11977. default: true
  11978. },
  11979. {
  11980. name: "Macro",
  11981. height: math.unit(30, "feet")
  11982. },
  11983. {
  11984. name: "Megamacro",
  11985. height: math.unit(3500, "feet")
  11986. },
  11987. {
  11988. name: "Teramacro",
  11989. height: math.unit(500000, "miles")
  11990. },
  11991. {
  11992. name: "Petamacro",
  11993. height: math.unit(50000000000000000, "parsecs")
  11994. },
  11995. ]
  11996. ))
  11997. characterMakers.push(() => makeCharacter(
  11998. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11999. {
  12000. front: {
  12001. height: math.unit(6, "feet"),
  12002. weight: math.unit(150, "lb"),
  12003. name: "Front",
  12004. image: {
  12005. source: "./media/characters/ilisha-devya/front.svg",
  12006. extra: 1,
  12007. bottom: 0.175
  12008. }
  12009. },
  12010. back: {
  12011. height: math.unit(6, "feet"),
  12012. weight: math.unit(150, "lb"),
  12013. name: "Back",
  12014. image: {
  12015. source: "./media/characters/ilisha-devya/back.svg",
  12016. extra: 1,
  12017. bottom: 0.015
  12018. }
  12019. },
  12020. },
  12021. [
  12022. {
  12023. name: "Macro",
  12024. height: math.unit(500, "feet"),
  12025. default: true
  12026. },
  12027. {
  12028. name: "Megamacro",
  12029. height: math.unit(10, "miles")
  12030. },
  12031. {
  12032. name: "Gigamacro",
  12033. height: math.unit(100000, "miles")
  12034. },
  12035. {
  12036. name: "Examacro",
  12037. height: math.unit(1e9, "lightyears")
  12038. },
  12039. {
  12040. name: "Omniversal",
  12041. height: math.unit(1e33, "lightyears")
  12042. },
  12043. {
  12044. name: "Beyond Infinite",
  12045. height: math.unit(1e100, "lightyears")
  12046. },
  12047. ]
  12048. ))
  12049. characterMakers.push(() => makeCharacter(
  12050. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12051. {
  12052. Side: {
  12053. height: math.unit(6, "feet"),
  12054. weight: math.unit(150, "lb"),
  12055. name: "Side",
  12056. image: {
  12057. source: "./media/characters/mira/side.svg",
  12058. extra: 900 / 799,
  12059. bottom: 0.02
  12060. }
  12061. },
  12062. },
  12063. [
  12064. {
  12065. name: "Human Size",
  12066. height: math.unit(6, "feet")
  12067. },
  12068. {
  12069. name: "Macro",
  12070. height: math.unit(100, "feet"),
  12071. default: true
  12072. },
  12073. {
  12074. name: "Megamacro",
  12075. height: math.unit(10, "miles")
  12076. },
  12077. {
  12078. name: "Gigamacro",
  12079. height: math.unit(25000, "miles")
  12080. },
  12081. {
  12082. name: "Teramacro",
  12083. height: math.unit(300, "AU")
  12084. },
  12085. {
  12086. name: "Full Size",
  12087. height: math.unit(4.5e10, "lightyears")
  12088. },
  12089. ]
  12090. ))
  12091. characterMakers.push(() => makeCharacter(
  12092. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12093. {
  12094. front: {
  12095. height: math.unit(6, "feet"),
  12096. weight: math.unit(150, "lb"),
  12097. name: "Front",
  12098. image: {
  12099. source: "./media/characters/holly/front.svg",
  12100. extra: 639 / 606
  12101. }
  12102. },
  12103. back: {
  12104. height: math.unit(6, "feet"),
  12105. weight: math.unit(150, "lb"),
  12106. name: "Back",
  12107. image: {
  12108. source: "./media/characters/holly/back.svg",
  12109. extra: 623 / 598
  12110. }
  12111. },
  12112. frontWorking: {
  12113. height: math.unit(6, "feet"),
  12114. weight: math.unit(150, "lb"),
  12115. name: "Front (Working)",
  12116. image: {
  12117. source: "./media/characters/holly/front-working.svg",
  12118. extra: 607 / 577,
  12119. bottom: 0.048
  12120. }
  12121. },
  12122. },
  12123. [
  12124. {
  12125. name: "Normal",
  12126. height: math.unit(12 + 3 / 12, "feet"),
  12127. default: true
  12128. },
  12129. ]
  12130. ))
  12131. characterMakers.push(() => makeCharacter(
  12132. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12133. {
  12134. front: {
  12135. height: math.unit(6, "feet"),
  12136. weight: math.unit(150, "lb"),
  12137. name: "Front",
  12138. image: {
  12139. source: "./media/characters/porter/front.svg",
  12140. extra: 1,
  12141. bottom: 0.01
  12142. }
  12143. },
  12144. frontRobes: {
  12145. height: math.unit(6, "feet"),
  12146. weight: math.unit(150, "lb"),
  12147. name: "Front (Robes)",
  12148. image: {
  12149. source: "./media/characters/porter/front-robes.svg",
  12150. extra: 1.01,
  12151. bottom: 0.01
  12152. }
  12153. },
  12154. },
  12155. [
  12156. {
  12157. name: "Normal",
  12158. height: math.unit(11 + 9 / 12, "feet"),
  12159. default: true
  12160. },
  12161. ]
  12162. ))
  12163. characterMakers.push(() => makeCharacter(
  12164. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12165. {
  12166. legendary: {
  12167. height: math.unit(6, "feet"),
  12168. weight: math.unit(150, "lb"),
  12169. name: "Legendary",
  12170. image: {
  12171. source: "./media/characters/lucy/legendary.svg",
  12172. extra: 1355 / 1100,
  12173. bottom: 0.045
  12174. }
  12175. },
  12176. },
  12177. [
  12178. {
  12179. name: "Legendary",
  12180. height: math.unit(86882 * 2, "miles"),
  12181. default: true
  12182. },
  12183. ]
  12184. ))
  12185. characterMakers.push(() => makeCharacter(
  12186. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12187. {
  12188. front: {
  12189. height: math.unit(6, "feet"),
  12190. weight: math.unit(150, "lb"),
  12191. name: "Front",
  12192. image: {
  12193. source: "./media/characters/drusilla/front.svg",
  12194. extra: 678 / 635,
  12195. bottom: 0.03
  12196. }
  12197. },
  12198. back: {
  12199. height: math.unit(6, "feet"),
  12200. weight: math.unit(150, "lb"),
  12201. name: "Back",
  12202. image: {
  12203. source: "./media/characters/drusilla/back.svg",
  12204. extra: 678 / 635,
  12205. bottom: 0.005
  12206. }
  12207. },
  12208. },
  12209. [
  12210. {
  12211. name: "Macro",
  12212. height: math.unit(100, "feet")
  12213. },
  12214. {
  12215. name: "Canon Height",
  12216. height: math.unit(2000, "feet"),
  12217. default: true
  12218. },
  12219. ]
  12220. ))
  12221. characterMakers.push(() => makeCharacter(
  12222. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12223. {
  12224. front: {
  12225. height: math.unit(6, "feet"),
  12226. weight: math.unit(180, "lb"),
  12227. name: "Front",
  12228. image: {
  12229. source: "./media/characters/renard-thatch/front.svg",
  12230. extra: 2411 / 2275,
  12231. bottom: 0.01
  12232. }
  12233. },
  12234. frontPosing: {
  12235. height: math.unit(6, "feet"),
  12236. weight: math.unit(180, "lb"),
  12237. name: "Front (Posing)",
  12238. image: {
  12239. source: "./media/characters/renard-thatch/front-posing.svg",
  12240. extra: 2381 / 2261,
  12241. bottom: 0.01
  12242. }
  12243. },
  12244. back: {
  12245. height: math.unit(6, "feet"),
  12246. weight: math.unit(180, "lb"),
  12247. name: "Back",
  12248. image: {
  12249. source: "./media/characters/renard-thatch/back.svg",
  12250. extra: 2428 / 2288
  12251. }
  12252. },
  12253. },
  12254. [
  12255. {
  12256. name: "Micro",
  12257. height: math.unit(3, "inches")
  12258. },
  12259. {
  12260. name: "Default",
  12261. height: math.unit(6, "feet"),
  12262. default: true
  12263. },
  12264. {
  12265. name: "Macro",
  12266. height: math.unit(75, "feet")
  12267. },
  12268. ]
  12269. ))
  12270. characterMakers.push(() => makeCharacter(
  12271. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12272. {
  12273. front: {
  12274. height: math.unit(1450, "feet"),
  12275. weight: math.unit(1.21e6, "tons"),
  12276. name: "Front",
  12277. image: {
  12278. source: "./media/characters/sekvra/front.svg",
  12279. extra: 1,
  12280. bottom: 0.03
  12281. }
  12282. },
  12283. frontClothed: {
  12284. height: math.unit(1450, "feet"),
  12285. weight: math.unit(1.21e6, "tons"),
  12286. name: "Front (Clothed)",
  12287. image: {
  12288. source: "./media/characters/sekvra/front-clothed.svg",
  12289. extra: 1,
  12290. bottom: 0.03
  12291. }
  12292. },
  12293. side: {
  12294. height: math.unit(1450, "feet"),
  12295. weight: math.unit(1.21e6, "tons"),
  12296. name: "Side",
  12297. image: {
  12298. source: "./media/characters/sekvra/side.svg",
  12299. extra: 1,
  12300. bottom: 0.025
  12301. }
  12302. },
  12303. back: {
  12304. height: math.unit(1450, "feet"),
  12305. weight: math.unit(1.21e6, "tons"),
  12306. name: "Back",
  12307. image: {
  12308. source: "./media/characters/sekvra/back.svg",
  12309. extra: 1,
  12310. bottom: 0.005
  12311. }
  12312. },
  12313. },
  12314. [
  12315. {
  12316. name: "Macro",
  12317. height: math.unit(1450, "feet"),
  12318. default: true
  12319. },
  12320. {
  12321. name: "Megamacro",
  12322. height: math.unit(15000, "feet")
  12323. },
  12324. ]
  12325. ))
  12326. characterMakers.push(() => makeCharacter(
  12327. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12328. {
  12329. front: {
  12330. height: math.unit(6, "feet"),
  12331. weight: math.unit(150, "lb"),
  12332. name: "Front",
  12333. image: {
  12334. source: "./media/characters/carmine/front.svg",
  12335. extra: 1,
  12336. bottom: 0.035
  12337. }
  12338. },
  12339. frontArmor: {
  12340. height: math.unit(6, "feet"),
  12341. weight: math.unit(150, "lb"),
  12342. name: "Front (Armor)",
  12343. image: {
  12344. source: "./media/characters/carmine/front-armor.svg",
  12345. extra: 1,
  12346. bottom: 0.035
  12347. }
  12348. },
  12349. },
  12350. [
  12351. {
  12352. name: "Large",
  12353. height: math.unit(1, "mile")
  12354. },
  12355. {
  12356. name: "Huge",
  12357. height: math.unit(40, "miles"),
  12358. default: true
  12359. },
  12360. {
  12361. name: "Colossal",
  12362. height: math.unit(2500, "miles")
  12363. },
  12364. ]
  12365. ))
  12366. characterMakers.push(() => makeCharacter(
  12367. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12368. {
  12369. front: {
  12370. height: math.unit(6, "feet"),
  12371. weight: math.unit(150, "lb"),
  12372. name: "Front",
  12373. image: {
  12374. source: "./media/characters/elyssia/front.svg",
  12375. extra: 2201 / 2035,
  12376. bottom: 0.05
  12377. }
  12378. },
  12379. frontClothed: {
  12380. height: math.unit(6, "feet"),
  12381. weight: math.unit(150, "lb"),
  12382. name: "Front (Clothed)",
  12383. image: {
  12384. source: "./media/characters/elyssia/front-clothed.svg",
  12385. extra: 2201 / 2035,
  12386. bottom: 0.05
  12387. }
  12388. },
  12389. back: {
  12390. height: math.unit(6, "feet"),
  12391. weight: math.unit(150, "lb"),
  12392. name: "Back",
  12393. image: {
  12394. source: "./media/characters/elyssia/back.svg",
  12395. extra: 2201 / 2035,
  12396. bottom: 0.013
  12397. }
  12398. },
  12399. },
  12400. [
  12401. {
  12402. name: "Smaller",
  12403. height: math.unit(150, "feet")
  12404. },
  12405. {
  12406. name: "Standard",
  12407. height: math.unit(1400, "feet"),
  12408. default: true
  12409. },
  12410. {
  12411. name: "Distracted",
  12412. height: math.unit(15000, "feet")
  12413. },
  12414. ]
  12415. ))
  12416. characterMakers.push(() => makeCharacter(
  12417. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12418. {
  12419. front: {
  12420. height: math.unit(7 + 4 / 12, "feet"),
  12421. weight: math.unit(500, "lb"),
  12422. name: "Front",
  12423. image: {
  12424. source: "./media/characters/geno-maxwell/front.svg",
  12425. extra: 2207 / 2040,
  12426. bottom: 0.015
  12427. }
  12428. },
  12429. },
  12430. [
  12431. {
  12432. name: "Micro",
  12433. height: math.unit(3, "inches")
  12434. },
  12435. {
  12436. name: "Normal",
  12437. height: math.unit(7 + 4 / 12, "feet"),
  12438. default: true
  12439. },
  12440. {
  12441. name: "Macro",
  12442. height: math.unit(220, "feet")
  12443. },
  12444. {
  12445. name: "Megamacro",
  12446. height: math.unit(11, "miles")
  12447. },
  12448. ]
  12449. ))
  12450. characterMakers.push(() => makeCharacter(
  12451. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12452. {
  12453. front: {
  12454. height: math.unit(7 + 4 / 12, "feet"),
  12455. weight: math.unit(500, "lb"),
  12456. name: "Front",
  12457. image: {
  12458. source: "./media/characters/regena-maxwell/front.svg",
  12459. extra: 3115 / 2770,
  12460. bottom: 0.02
  12461. }
  12462. },
  12463. },
  12464. [
  12465. {
  12466. name: "Normal",
  12467. height: math.unit(7 + 4 / 12, "feet"),
  12468. default: true
  12469. },
  12470. {
  12471. name: "Macro",
  12472. height: math.unit(220, "feet")
  12473. },
  12474. {
  12475. name: "Megamacro",
  12476. height: math.unit(11, "miles")
  12477. },
  12478. ]
  12479. ))
  12480. characterMakers.push(() => makeCharacter(
  12481. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12482. {
  12483. front: {
  12484. height: math.unit(6, "feet"),
  12485. weight: math.unit(150, "lb"),
  12486. name: "Front",
  12487. image: {
  12488. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12489. extra: 860 / 690,
  12490. bottom: 0.03
  12491. }
  12492. },
  12493. },
  12494. [
  12495. {
  12496. name: "Normal",
  12497. height: math.unit(1.7, "meters"),
  12498. default: true
  12499. },
  12500. ]
  12501. ))
  12502. characterMakers.push(() => makeCharacter(
  12503. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12504. {
  12505. front: {
  12506. height: math.unit(6, "feet"),
  12507. weight: math.unit(150, "lb"),
  12508. name: "Front",
  12509. image: {
  12510. source: "./media/characters/quilly/front.svg",
  12511. extra: 890 / 776
  12512. }
  12513. },
  12514. },
  12515. [
  12516. {
  12517. name: "Gigamacro",
  12518. height: math.unit(404090, "miles"),
  12519. default: true
  12520. },
  12521. ]
  12522. ))
  12523. characterMakers.push(() => makeCharacter(
  12524. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12525. {
  12526. front: {
  12527. height: math.unit(7 + 8 / 12, "feet"),
  12528. weight: math.unit(350, "lb"),
  12529. name: "Front",
  12530. image: {
  12531. source: "./media/characters/tempest/front.svg",
  12532. extra: 1175 / 1086,
  12533. bottom: 0.02
  12534. }
  12535. },
  12536. },
  12537. [
  12538. {
  12539. name: "Normal",
  12540. height: math.unit(7 + 8 / 12, "feet"),
  12541. default: true
  12542. },
  12543. ]
  12544. ))
  12545. characterMakers.push(() => makeCharacter(
  12546. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12547. {
  12548. side: {
  12549. height: math.unit(4 + 5 / 12, "feet"),
  12550. weight: math.unit(80, "lb"),
  12551. name: "Side",
  12552. image: {
  12553. source: "./media/characters/rodger/side.svg",
  12554. extra: 1235 / 1118
  12555. }
  12556. },
  12557. },
  12558. [
  12559. {
  12560. name: "Micro",
  12561. height: math.unit(1, "inch")
  12562. },
  12563. {
  12564. name: "Normal",
  12565. height: math.unit(4 + 5 / 12, "feet"),
  12566. default: true
  12567. },
  12568. {
  12569. name: "Macro",
  12570. height: math.unit(120, "feet")
  12571. },
  12572. ]
  12573. ))
  12574. characterMakers.push(() => makeCharacter(
  12575. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12576. {
  12577. front: {
  12578. height: math.unit(6, "feet"),
  12579. weight: math.unit(150, "lb"),
  12580. name: "Front",
  12581. image: {
  12582. source: "./media/characters/danyel/front.svg",
  12583. extra: 1185 / 1123,
  12584. bottom: 0.05
  12585. }
  12586. },
  12587. },
  12588. [
  12589. {
  12590. name: "Shrunken",
  12591. height: math.unit(0.5, "mm")
  12592. },
  12593. {
  12594. name: "Micro",
  12595. height: math.unit(1, "mm"),
  12596. default: true
  12597. },
  12598. {
  12599. name: "Upsized",
  12600. height: math.unit(5 + 5 / 12, "feet")
  12601. },
  12602. ]
  12603. ))
  12604. characterMakers.push(() => makeCharacter(
  12605. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12606. {
  12607. front: {
  12608. height: math.unit(5 + 6 / 12, "feet"),
  12609. weight: math.unit(200, "lb"),
  12610. name: "Front",
  12611. image: {
  12612. source: "./media/characters/vivian-bijoux/front.svg",
  12613. extra: 1,
  12614. bottom: 0.072
  12615. }
  12616. },
  12617. },
  12618. [
  12619. {
  12620. name: "Normal",
  12621. height: math.unit(5 + 6 / 12, "feet"),
  12622. default: true
  12623. },
  12624. {
  12625. name: "Bad Dream",
  12626. height: math.unit(500, "feet")
  12627. },
  12628. {
  12629. name: "Nightmare",
  12630. height: math.unit(500, "miles")
  12631. },
  12632. ]
  12633. ))
  12634. characterMakers.push(() => makeCharacter(
  12635. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12636. {
  12637. front: {
  12638. height: math.unit(6 + 1 / 12, "feet"),
  12639. weight: math.unit(260, "lb"),
  12640. name: "Front",
  12641. image: {
  12642. source: "./media/characters/zeta/front.svg",
  12643. extra: 1968 / 1889,
  12644. bottom: 0.06
  12645. }
  12646. },
  12647. back: {
  12648. height: math.unit(6 + 1 / 12, "feet"),
  12649. weight: math.unit(260, "lb"),
  12650. name: "Back",
  12651. image: {
  12652. source: "./media/characters/zeta/back.svg",
  12653. extra: 1944 / 1858,
  12654. bottom: 0.03
  12655. }
  12656. },
  12657. hand: {
  12658. height: math.unit(1.112, "feet"),
  12659. name: "Hand",
  12660. image: {
  12661. source: "./media/characters/zeta/hand.svg"
  12662. }
  12663. },
  12664. foot: {
  12665. height: math.unit(1.48, "feet"),
  12666. name: "Foot",
  12667. image: {
  12668. source: "./media/characters/zeta/foot.svg"
  12669. }
  12670. },
  12671. },
  12672. [
  12673. {
  12674. name: "Micro",
  12675. height: math.unit(6, "inches")
  12676. },
  12677. {
  12678. name: "Normal",
  12679. height: math.unit(6 + 1 / 12, "feet"),
  12680. default: true
  12681. },
  12682. {
  12683. name: "Macro",
  12684. height: math.unit(20, "feet")
  12685. },
  12686. ]
  12687. ))
  12688. characterMakers.push(() => makeCharacter(
  12689. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12690. {
  12691. front: {
  12692. height: math.unit(6, "feet"),
  12693. weight: math.unit(150, "lb"),
  12694. name: "Front",
  12695. image: {
  12696. source: "./media/characters/jamie-larsen/front.svg",
  12697. extra: 962 / 933,
  12698. bottom: 0.02
  12699. }
  12700. },
  12701. back: {
  12702. height: math.unit(6, "feet"),
  12703. weight: math.unit(150, "lb"),
  12704. name: "Back",
  12705. image: {
  12706. source: "./media/characters/jamie-larsen/back.svg",
  12707. extra: 997 / 946
  12708. }
  12709. },
  12710. },
  12711. [
  12712. {
  12713. name: "Macro",
  12714. height: math.unit(28 + 7 / 12, "feet"),
  12715. default: true
  12716. },
  12717. {
  12718. name: "Macro+",
  12719. height: math.unit(180, "feet")
  12720. },
  12721. {
  12722. name: "Megamacro",
  12723. height: math.unit(10, "miles")
  12724. },
  12725. {
  12726. name: "Gigamacro",
  12727. height: math.unit(200000, "miles")
  12728. },
  12729. ]
  12730. ))
  12731. characterMakers.push(() => makeCharacter(
  12732. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12733. {
  12734. front: {
  12735. height: math.unit(6, "feet"),
  12736. weight: math.unit(120, "lb"),
  12737. name: "Front",
  12738. image: {
  12739. source: "./media/characters/vance/front.svg",
  12740. extra: 1980 / 1890,
  12741. bottom: 0.09
  12742. }
  12743. },
  12744. back: {
  12745. height: math.unit(6, "feet"),
  12746. weight: math.unit(120, "lb"),
  12747. name: "Back",
  12748. image: {
  12749. source: "./media/characters/vance/back.svg",
  12750. extra: 2081 / 1994,
  12751. bottom: 0.014
  12752. }
  12753. },
  12754. hand: {
  12755. height: math.unit(0.88, "feet"),
  12756. name: "Hand",
  12757. image: {
  12758. source: "./media/characters/vance/hand.svg"
  12759. }
  12760. },
  12761. foot: {
  12762. height: math.unit(0.64, "feet"),
  12763. name: "Foot",
  12764. image: {
  12765. source: "./media/characters/vance/foot.svg"
  12766. }
  12767. },
  12768. },
  12769. [
  12770. {
  12771. name: "Small",
  12772. height: math.unit(90, "feet"),
  12773. default: true
  12774. },
  12775. {
  12776. name: "Macro",
  12777. height: math.unit(100, "meters")
  12778. },
  12779. {
  12780. name: "Megamacro",
  12781. height: math.unit(15, "miles")
  12782. },
  12783. ]
  12784. ))
  12785. characterMakers.push(() => makeCharacter(
  12786. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12787. {
  12788. front: {
  12789. height: math.unit(6, "feet"),
  12790. weight: math.unit(180, "lb"),
  12791. name: "Front",
  12792. image: {
  12793. source: "./media/characters/xochitl/front.svg",
  12794. extra: 2297 / 2261,
  12795. bottom: 0.065
  12796. }
  12797. },
  12798. back: {
  12799. height: math.unit(6, "feet"),
  12800. weight: math.unit(180, "lb"),
  12801. name: "Back",
  12802. image: {
  12803. source: "./media/characters/xochitl/back.svg",
  12804. extra: 2386 / 2354,
  12805. bottom: 0.01
  12806. }
  12807. },
  12808. foot: {
  12809. height: math.unit(6 / 5 * 1.15, "feet"),
  12810. weight: math.unit(150, "lb"),
  12811. name: "Foot",
  12812. image: {
  12813. source: "./media/characters/xochitl/foot.svg"
  12814. }
  12815. },
  12816. },
  12817. [
  12818. {
  12819. name: "Macro",
  12820. height: math.unit(80, "feet")
  12821. },
  12822. {
  12823. name: "Macro+",
  12824. height: math.unit(400, "feet"),
  12825. default: true
  12826. },
  12827. {
  12828. name: "Gigamacro",
  12829. height: math.unit(80000, "miles")
  12830. },
  12831. {
  12832. name: "Gigamacro+",
  12833. height: math.unit(400000, "miles")
  12834. },
  12835. {
  12836. name: "Teramacro",
  12837. height: math.unit(300, "AU")
  12838. },
  12839. ]
  12840. ))
  12841. characterMakers.push(() => makeCharacter(
  12842. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12843. {
  12844. front: {
  12845. height: math.unit(6, "feet"),
  12846. weight: math.unit(150, "lb"),
  12847. name: "Front",
  12848. image: {
  12849. source: "./media/characters/vincent/front.svg",
  12850. extra: 1130 / 1080,
  12851. bottom: 0.055
  12852. }
  12853. },
  12854. beak: {
  12855. height: math.unit(6 * 0.1, "feet"),
  12856. name: "Beak",
  12857. image: {
  12858. source: "./media/characters/vincent/beak.svg"
  12859. }
  12860. },
  12861. hand: {
  12862. height: math.unit(6 * 0.85, "feet"),
  12863. weight: math.unit(150, "lb"),
  12864. name: "Hand",
  12865. image: {
  12866. source: "./media/characters/vincent/hand.svg"
  12867. }
  12868. },
  12869. foot: {
  12870. height: math.unit(6 * 0.19, "feet"),
  12871. weight: math.unit(150, "lb"),
  12872. name: "Foot",
  12873. image: {
  12874. source: "./media/characters/vincent/foot.svg"
  12875. }
  12876. },
  12877. },
  12878. [
  12879. {
  12880. name: "Base",
  12881. height: math.unit(6 + 5 / 12, "feet"),
  12882. default: true
  12883. },
  12884. {
  12885. name: "Macro",
  12886. height: math.unit(300, "feet")
  12887. },
  12888. {
  12889. name: "Megamacro",
  12890. height: math.unit(2, "miles")
  12891. },
  12892. {
  12893. name: "Gigamacro",
  12894. height: math.unit(1000, "miles")
  12895. },
  12896. ]
  12897. ))
  12898. characterMakers.push(() => makeCharacter(
  12899. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12900. {
  12901. front: {
  12902. height: math.unit(6 + 2 / 12, "feet"),
  12903. weight: math.unit(265, "lb"),
  12904. name: "Front",
  12905. image: {
  12906. source: "./media/characters/jay/front.svg",
  12907. extra: 1510 / 1430,
  12908. bottom: 0.042
  12909. }
  12910. },
  12911. back: {
  12912. height: math.unit(6 + 2 / 12, "feet"),
  12913. weight: math.unit(265, "lb"),
  12914. name: "Back",
  12915. image: {
  12916. source: "./media/characters/jay/back.svg",
  12917. extra: 1510 / 1430,
  12918. bottom: 0.025
  12919. }
  12920. },
  12921. clothed: {
  12922. height: math.unit(6 + 2 / 12, "feet"),
  12923. weight: math.unit(265, "lb"),
  12924. name: "Front (Clothed)",
  12925. image: {
  12926. source: "./media/characters/jay/clothed.svg",
  12927. extra: 744 / 699,
  12928. bottom: 0.043
  12929. }
  12930. },
  12931. head: {
  12932. height: math.unit(1.772, "feet"),
  12933. name: "Head",
  12934. image: {
  12935. source: "./media/characters/jay/head.svg"
  12936. }
  12937. },
  12938. sizeRay: {
  12939. height: math.unit(1.331, "feet"),
  12940. name: "Size Ray",
  12941. image: {
  12942. source: "./media/characters/jay/size-ray.svg"
  12943. }
  12944. },
  12945. },
  12946. [
  12947. {
  12948. name: "Micro",
  12949. height: math.unit(1, "inch")
  12950. },
  12951. {
  12952. name: "Normal",
  12953. height: math.unit(6 + 2 / 12, "feet"),
  12954. default: true
  12955. },
  12956. {
  12957. name: "Macro",
  12958. height: math.unit(1, "mile")
  12959. },
  12960. {
  12961. name: "Megamacro",
  12962. height: math.unit(100, "miles")
  12963. },
  12964. ]
  12965. ))
  12966. characterMakers.push(() => makeCharacter(
  12967. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12968. {
  12969. front: {
  12970. height: math.unit(2, "meters"),
  12971. weight: math.unit(500, "kg"),
  12972. name: "Front",
  12973. image: {
  12974. source: "./media/characters/coatl/front.svg",
  12975. extra: 3948 / 3500,
  12976. bottom: 0.082
  12977. }
  12978. },
  12979. },
  12980. [
  12981. {
  12982. name: "Normal",
  12983. height: math.unit(4, "meters")
  12984. },
  12985. {
  12986. name: "Macro",
  12987. height: math.unit(100, "meters"),
  12988. default: true
  12989. },
  12990. {
  12991. name: "Macro+",
  12992. height: math.unit(300, "meters")
  12993. },
  12994. {
  12995. name: "Megamacro",
  12996. height: math.unit(3, "gigameters")
  12997. },
  12998. {
  12999. name: "Megamacro+",
  13000. height: math.unit(300, "terameters")
  13001. },
  13002. {
  13003. name: "Megamacro++",
  13004. height: math.unit(3, "lightyears")
  13005. },
  13006. ]
  13007. ))
  13008. characterMakers.push(() => makeCharacter(
  13009. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13010. {
  13011. front: {
  13012. height: math.unit(6, "feet"),
  13013. weight: math.unit(50, "kg"),
  13014. name: "front",
  13015. image: {
  13016. source: "./media/characters/shiroryu/front.svg",
  13017. extra: 1990 / 1935
  13018. }
  13019. },
  13020. },
  13021. [
  13022. {
  13023. name: "Mortal Mingling",
  13024. height: math.unit(3, "meters")
  13025. },
  13026. {
  13027. name: "Kaiju-ish",
  13028. height: math.unit(250, "meters")
  13029. },
  13030. {
  13031. name: "Somewhat Godly",
  13032. height: math.unit(400, "km"),
  13033. default: true
  13034. },
  13035. {
  13036. name: "Planetary",
  13037. height: math.unit(300, "megameters")
  13038. },
  13039. {
  13040. name: "Galaxy-dwarfing",
  13041. height: math.unit(450, "kiloparsecs")
  13042. },
  13043. {
  13044. name: "Universe Eater",
  13045. height: math.unit(150, "gigaparsecs")
  13046. },
  13047. {
  13048. name: "Almost Immeasurable",
  13049. height: math.unit(1.3e266, "yottaparsecs")
  13050. },
  13051. ]
  13052. ))
  13053. characterMakers.push(() => makeCharacter(
  13054. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13055. {
  13056. front: {
  13057. height: math.unit(6, "feet"),
  13058. weight: math.unit(150, "lb"),
  13059. name: "Front",
  13060. image: {
  13061. source: "./media/characters/umeko/front.svg",
  13062. extra: 1,
  13063. bottom: 0.019
  13064. }
  13065. },
  13066. frontArmored: {
  13067. height: math.unit(6, "feet"),
  13068. weight: math.unit(150, "lb"),
  13069. name: "Front (Armored)",
  13070. image: {
  13071. source: "./media/characters/umeko/front-armored.svg",
  13072. extra: 1,
  13073. bottom: 0.021
  13074. }
  13075. },
  13076. },
  13077. [
  13078. {
  13079. name: "Macro",
  13080. height: math.unit(220, "feet"),
  13081. default: true
  13082. },
  13083. {
  13084. name: "Guardian Dragon",
  13085. height: math.unit(50, "miles")
  13086. },
  13087. {
  13088. name: "Cosmic",
  13089. height: math.unit(800000, "miles")
  13090. },
  13091. ]
  13092. ))
  13093. characterMakers.push(() => makeCharacter(
  13094. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13095. {
  13096. front: {
  13097. height: math.unit(6, "feet"),
  13098. weight: math.unit(150, "lb"),
  13099. name: "Front",
  13100. image: {
  13101. source: "./media/characters/cassidy/front.svg",
  13102. extra: 1,
  13103. bottom: 0.043
  13104. }
  13105. },
  13106. },
  13107. [
  13108. {
  13109. name: "Canon Height",
  13110. height: math.unit(120, "feet"),
  13111. default: true
  13112. },
  13113. {
  13114. name: "Macro+",
  13115. height: math.unit(400, "feet")
  13116. },
  13117. {
  13118. name: "Macro++",
  13119. height: math.unit(4000, "feet")
  13120. },
  13121. {
  13122. name: "Megamacro",
  13123. height: math.unit(3, "miles")
  13124. },
  13125. ]
  13126. ))
  13127. characterMakers.push(() => makeCharacter(
  13128. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13129. {
  13130. front: {
  13131. height: math.unit(6, "feet"),
  13132. weight: math.unit(150, "lb"),
  13133. name: "Front",
  13134. image: {
  13135. source: "./media/characters/isaac/front.svg",
  13136. extra: 896 / 815,
  13137. bottom: 0.11
  13138. }
  13139. },
  13140. },
  13141. [
  13142. {
  13143. name: "Human Size",
  13144. height: math.unit(8, "feet"),
  13145. default: true
  13146. },
  13147. {
  13148. name: "Macro",
  13149. height: math.unit(400, "feet")
  13150. },
  13151. {
  13152. name: "Megamacro",
  13153. height: math.unit(50, "miles")
  13154. },
  13155. {
  13156. name: "Canon Height",
  13157. height: math.unit(200, "AU")
  13158. },
  13159. ]
  13160. ))
  13161. characterMakers.push(() => makeCharacter(
  13162. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13163. {
  13164. front: {
  13165. height: math.unit(6, "feet"),
  13166. weight: math.unit(72, "kg"),
  13167. name: "Front",
  13168. image: {
  13169. source: "./media/characters/sleekit/front.svg",
  13170. extra: 4693 / 4487,
  13171. bottom: 0.012
  13172. }
  13173. },
  13174. },
  13175. [
  13176. {
  13177. name: "Minimum Height",
  13178. height: math.unit(10, "meters")
  13179. },
  13180. {
  13181. name: "Smaller",
  13182. height: math.unit(25, "meters")
  13183. },
  13184. {
  13185. name: "Larger",
  13186. height: math.unit(38, "meters"),
  13187. default: true
  13188. },
  13189. {
  13190. name: "Maximum height",
  13191. height: math.unit(100, "meters")
  13192. },
  13193. ]
  13194. ))
  13195. characterMakers.push(() => makeCharacter(
  13196. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13197. {
  13198. front: {
  13199. height: math.unit(6, "feet"),
  13200. weight: math.unit(150, "lb"),
  13201. name: "Front",
  13202. image: {
  13203. source: "./media/characters/nillia/front.svg",
  13204. extra: 2195 / 2037,
  13205. bottom: 0.005
  13206. }
  13207. },
  13208. back: {
  13209. height: math.unit(6, "feet"),
  13210. weight: math.unit(150, "lb"),
  13211. name: "Back",
  13212. image: {
  13213. source: "./media/characters/nillia/back.svg",
  13214. extra: 2195 / 2037,
  13215. bottom: 0.005
  13216. }
  13217. },
  13218. },
  13219. [
  13220. {
  13221. name: "Canon Height",
  13222. height: math.unit(489, "feet"),
  13223. default: true
  13224. }
  13225. ]
  13226. ))
  13227. characterMakers.push(() => makeCharacter(
  13228. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13229. {
  13230. front: {
  13231. height: math.unit(6, "feet"),
  13232. weight: math.unit(150, "lb"),
  13233. name: "Front",
  13234. image: {
  13235. source: "./media/characters/mesmyriza/front.svg",
  13236. extra: 2067 / 1784,
  13237. bottom: 0.035
  13238. }
  13239. },
  13240. foot: {
  13241. height: math.unit(6 / (250 / 35), "feet"),
  13242. name: "Foot",
  13243. image: {
  13244. source: "./media/characters/mesmyriza/foot.svg"
  13245. }
  13246. },
  13247. },
  13248. [
  13249. {
  13250. name: "Macro",
  13251. height: math.unit(457, "meters"),
  13252. default: true
  13253. },
  13254. {
  13255. name: "Megamacro",
  13256. height: math.unit(8, "megameters")
  13257. },
  13258. ]
  13259. ))
  13260. characterMakers.push(() => makeCharacter(
  13261. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13262. {
  13263. front: {
  13264. height: math.unit(6, "feet"),
  13265. weight: math.unit(250, "lb"),
  13266. name: "Front",
  13267. image: {
  13268. source: "./media/characters/saudade/front.svg",
  13269. extra: 1172 / 1139,
  13270. bottom: 0.035
  13271. }
  13272. },
  13273. },
  13274. [
  13275. {
  13276. name: "Micro",
  13277. height: math.unit(3, "inches")
  13278. },
  13279. {
  13280. name: "Normal",
  13281. height: math.unit(6, "feet"),
  13282. default: true
  13283. },
  13284. {
  13285. name: "Macro",
  13286. height: math.unit(50, "feet")
  13287. },
  13288. {
  13289. name: "Megamacro",
  13290. height: math.unit(2800, "feet")
  13291. },
  13292. ]
  13293. ))
  13294. characterMakers.push(() => makeCharacter(
  13295. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13296. {
  13297. front: {
  13298. height: math.unit(5 + 4 / 12, "feet"),
  13299. weight: math.unit(100, "lb"),
  13300. name: "Front",
  13301. image: {
  13302. source: "./media/characters/keireer/front.svg",
  13303. extra: 716 / 666,
  13304. bottom: 0.05
  13305. }
  13306. },
  13307. },
  13308. [
  13309. {
  13310. name: "Normal",
  13311. height: math.unit(5 + 4 / 12, "feet"),
  13312. default: true
  13313. },
  13314. ]
  13315. ))
  13316. characterMakers.push(() => makeCharacter(
  13317. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13318. {
  13319. front: {
  13320. height: math.unit(6, "feet"),
  13321. weight: math.unit(90, "kg"),
  13322. name: "Front",
  13323. image: {
  13324. source: "./media/characters/mirja/front.svg",
  13325. extra: 1789 / 1683,
  13326. bottom: 0.05
  13327. }
  13328. },
  13329. frontDressed: {
  13330. height: math.unit(6, "feet"),
  13331. weight: math.unit(90, "lb"),
  13332. name: "Front (Dressed)",
  13333. image: {
  13334. source: "./media/characters/mirja/front-dressed.svg",
  13335. extra: 1789 / 1683,
  13336. bottom: 0.05
  13337. }
  13338. },
  13339. back: {
  13340. height: math.unit(6, "feet"),
  13341. weight: math.unit(90, "lb"),
  13342. name: "Back",
  13343. image: {
  13344. source: "./media/characters/mirja/back.svg",
  13345. extra: 953 / 917,
  13346. bottom: 0.017
  13347. }
  13348. },
  13349. },
  13350. [
  13351. {
  13352. name: "\"Incognito\"",
  13353. height: math.unit(3, "meters")
  13354. },
  13355. {
  13356. name: "Strolling Size",
  13357. height: math.unit(15, "km")
  13358. },
  13359. {
  13360. name: "Larger Strolling Size",
  13361. height: math.unit(400, "km")
  13362. },
  13363. {
  13364. name: "Preferred Size",
  13365. height: math.unit(5000, "km")
  13366. },
  13367. {
  13368. name: "True Size",
  13369. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13370. default: true
  13371. },
  13372. ]
  13373. ))
  13374. characterMakers.push(() => makeCharacter(
  13375. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13376. {
  13377. front: {
  13378. height: math.unit(15, "feet"),
  13379. weight: math.unit(880, "kg"),
  13380. name: "Front",
  13381. image: {
  13382. source: "./media/characters/nightraver/front.svg",
  13383. extra: 2444 / 2160,
  13384. bottom: 0.027
  13385. }
  13386. },
  13387. back: {
  13388. height: math.unit(15, "feet"),
  13389. weight: math.unit(880, "kg"),
  13390. name: "Back",
  13391. image: {
  13392. source: "./media/characters/nightraver/back.svg",
  13393. extra: 2309 / 2180,
  13394. bottom: 0.005
  13395. }
  13396. },
  13397. sole: {
  13398. height: math.unit(2.878, "feet"),
  13399. name: "Sole",
  13400. image: {
  13401. source: "./media/characters/nightraver/sole.svg"
  13402. }
  13403. },
  13404. foot: {
  13405. height: math.unit(2.285, "feet"),
  13406. name: "Foot",
  13407. image: {
  13408. source: "./media/characters/nightraver/foot.svg"
  13409. }
  13410. },
  13411. maw: {
  13412. height: math.unit(2.67, "feet"),
  13413. name: "Maw",
  13414. image: {
  13415. source: "./media/characters/nightraver/maw.svg"
  13416. }
  13417. },
  13418. },
  13419. [
  13420. {
  13421. name: "Micro",
  13422. height: math.unit(1, "cm")
  13423. },
  13424. {
  13425. name: "Normal",
  13426. height: math.unit(15, "feet"),
  13427. default: true
  13428. },
  13429. {
  13430. name: "Macro",
  13431. height: math.unit(300, "feet")
  13432. },
  13433. {
  13434. name: "Megamacro",
  13435. height: math.unit(300, "miles")
  13436. },
  13437. {
  13438. name: "Gigamacro",
  13439. height: math.unit(10000, "miles")
  13440. },
  13441. ]
  13442. ))
  13443. characterMakers.push(() => makeCharacter(
  13444. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13445. {
  13446. side: {
  13447. height: math.unit(2, "inches"),
  13448. weight: math.unit(5, "grams"),
  13449. name: "Side",
  13450. image: {
  13451. source: "./media/characters/arc/side.svg"
  13452. }
  13453. },
  13454. },
  13455. [
  13456. {
  13457. name: "Micro",
  13458. height: math.unit(2, "inches"),
  13459. default: true
  13460. },
  13461. ]
  13462. ))
  13463. characterMakers.push(() => makeCharacter(
  13464. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13465. {
  13466. front: {
  13467. height: math.unit(1.1938, "meters"),
  13468. weight: math.unit(54, "kg"),
  13469. name: "Front",
  13470. image: {
  13471. source: "./media/characters/nebula-shahar/front.svg",
  13472. extra: 1642 / 1436,
  13473. bottom: 0.06
  13474. }
  13475. },
  13476. },
  13477. [
  13478. {
  13479. name: "Megamicro",
  13480. height: math.unit(0.3, "mm")
  13481. },
  13482. {
  13483. name: "Micro",
  13484. height: math.unit(3, "cm")
  13485. },
  13486. {
  13487. name: "Normal",
  13488. height: math.unit(138, "cm"),
  13489. default: true
  13490. },
  13491. {
  13492. name: "Macro",
  13493. height: math.unit(30, "m")
  13494. },
  13495. ]
  13496. ))
  13497. characterMakers.push(() => makeCharacter(
  13498. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13499. {
  13500. front: {
  13501. height: math.unit(5.24, "feet"),
  13502. weight: math.unit(150, "lb"),
  13503. name: "Front",
  13504. image: {
  13505. source: "./media/characters/shayla/front.svg",
  13506. extra: 1512 / 1414,
  13507. bottom: 0.01
  13508. }
  13509. },
  13510. back: {
  13511. height: math.unit(5.24, "feet"),
  13512. weight: math.unit(150, "lb"),
  13513. name: "Back",
  13514. image: {
  13515. source: "./media/characters/shayla/back.svg",
  13516. extra: 1512 / 1414
  13517. }
  13518. },
  13519. hand: {
  13520. height: math.unit(0.7781496062992126, "feet"),
  13521. name: "Hand",
  13522. image: {
  13523. source: "./media/characters/shayla/hand.svg"
  13524. }
  13525. },
  13526. foot: {
  13527. height: math.unit(1.4206036745406823, "feet"),
  13528. name: "Foot",
  13529. image: {
  13530. source: "./media/characters/shayla/foot.svg"
  13531. }
  13532. },
  13533. },
  13534. [
  13535. {
  13536. name: "Micro",
  13537. height: math.unit(0.32, "feet")
  13538. },
  13539. {
  13540. name: "Normal",
  13541. height: math.unit(5.24, "feet"),
  13542. default: true
  13543. },
  13544. {
  13545. name: "Macro",
  13546. height: math.unit(492.12, "feet")
  13547. },
  13548. {
  13549. name: "Megamacro",
  13550. height: math.unit(186.41, "miles")
  13551. },
  13552. ]
  13553. ))
  13554. characterMakers.push(() => makeCharacter(
  13555. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13556. {
  13557. front: {
  13558. height: math.unit(2.2, "m"),
  13559. weight: math.unit(120, "kg"),
  13560. name: "Front",
  13561. image: {
  13562. source: "./media/characters/pia-jr/front.svg",
  13563. extra: 1000 / 970,
  13564. bottom: 0.035
  13565. }
  13566. },
  13567. hand: {
  13568. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13569. name: "Hand",
  13570. image: {
  13571. source: "./media/characters/pia-jr/hand.svg"
  13572. }
  13573. },
  13574. paw: {
  13575. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13576. name: "Paw",
  13577. image: {
  13578. source: "./media/characters/pia-jr/paw.svg"
  13579. }
  13580. },
  13581. },
  13582. [
  13583. {
  13584. name: "Micro",
  13585. height: math.unit(1.2, "cm")
  13586. },
  13587. {
  13588. name: "Normal",
  13589. height: math.unit(2.2, "m"),
  13590. default: true
  13591. },
  13592. {
  13593. name: "Macro",
  13594. height: math.unit(180, "m")
  13595. },
  13596. {
  13597. name: "Megamacro",
  13598. height: math.unit(420, "km")
  13599. },
  13600. ]
  13601. ))
  13602. characterMakers.push(() => makeCharacter(
  13603. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13604. {
  13605. front: {
  13606. height: math.unit(2, "m"),
  13607. weight: math.unit(115, "kg"),
  13608. name: "Front",
  13609. image: {
  13610. source: "./media/characters/pia-sr/front.svg",
  13611. extra: 760 / 730,
  13612. bottom: 0.015
  13613. }
  13614. },
  13615. back: {
  13616. height: math.unit(2, "m"),
  13617. weight: math.unit(115, "kg"),
  13618. name: "Back",
  13619. image: {
  13620. source: "./media/characters/pia-sr/back.svg",
  13621. extra: 760 / 730,
  13622. bottom: 0.01
  13623. }
  13624. },
  13625. hand: {
  13626. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13627. name: "Hand",
  13628. image: {
  13629. source: "./media/characters/pia-sr/hand.svg"
  13630. }
  13631. },
  13632. foot: {
  13633. height: math.unit(1.83, "feet"),
  13634. name: "Foot",
  13635. image: {
  13636. source: "./media/characters/pia-sr/foot.svg"
  13637. }
  13638. },
  13639. },
  13640. [
  13641. {
  13642. name: "Micro",
  13643. height: math.unit(88, "mm")
  13644. },
  13645. {
  13646. name: "Normal",
  13647. height: math.unit(2, "m"),
  13648. default: true
  13649. },
  13650. {
  13651. name: "Macro",
  13652. height: math.unit(200, "m")
  13653. },
  13654. {
  13655. name: "Megamacro",
  13656. height: math.unit(420, "km")
  13657. },
  13658. ]
  13659. ))
  13660. characterMakers.push(() => makeCharacter(
  13661. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13662. {
  13663. front: {
  13664. height: math.unit(8 + 2 / 12, "feet"),
  13665. weight: math.unit(300, "lb"),
  13666. name: "Front",
  13667. image: {
  13668. source: "./media/characters/kibibyte/front.svg",
  13669. extra: 2221 / 2098,
  13670. bottom: 0.04
  13671. }
  13672. },
  13673. },
  13674. [
  13675. {
  13676. name: "Normal",
  13677. height: math.unit(8 + 2 / 12, "feet"),
  13678. default: true
  13679. },
  13680. {
  13681. name: "Socialable Macro",
  13682. height: math.unit(50, "feet")
  13683. },
  13684. {
  13685. name: "Macro",
  13686. height: math.unit(300, "feet")
  13687. },
  13688. {
  13689. name: "Megamacro",
  13690. height: math.unit(500, "miles")
  13691. },
  13692. ]
  13693. ))
  13694. characterMakers.push(() => makeCharacter(
  13695. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13696. {
  13697. front: {
  13698. height: math.unit(6, "feet"),
  13699. weight: math.unit(150, "lb"),
  13700. name: "Front",
  13701. image: {
  13702. source: "./media/characters/felix/front.svg",
  13703. extra: 762 / 722,
  13704. bottom: 0.02
  13705. }
  13706. },
  13707. frontClothed: {
  13708. height: math.unit(6, "feet"),
  13709. weight: math.unit(150, "lb"),
  13710. name: "Front (Clothed)",
  13711. image: {
  13712. source: "./media/characters/felix/front-clothed.svg",
  13713. extra: 762 / 722,
  13714. bottom: 0.02
  13715. }
  13716. },
  13717. },
  13718. [
  13719. {
  13720. name: "Normal",
  13721. height: math.unit(6 + 8 / 12, "feet"),
  13722. default: true
  13723. },
  13724. {
  13725. name: "Macro",
  13726. height: math.unit(2600, "feet")
  13727. },
  13728. {
  13729. name: "Megamacro",
  13730. height: math.unit(450, "miles")
  13731. },
  13732. ]
  13733. ))
  13734. characterMakers.push(() => makeCharacter(
  13735. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13736. {
  13737. front: {
  13738. height: math.unit(6 + 1 / 12, "feet"),
  13739. weight: math.unit(250, "lb"),
  13740. name: "Front",
  13741. image: {
  13742. source: "./media/characters/tobo/front.svg",
  13743. extra: 608 / 586,
  13744. bottom: 0.023
  13745. }
  13746. },
  13747. back: {
  13748. height: math.unit(6 + 1 / 12, "feet"),
  13749. weight: math.unit(250, "lb"),
  13750. name: "Back",
  13751. image: {
  13752. source: "./media/characters/tobo/back.svg",
  13753. extra: 608 / 586
  13754. }
  13755. },
  13756. },
  13757. [
  13758. {
  13759. name: "Nano",
  13760. height: math.unit(2, "nm")
  13761. },
  13762. {
  13763. name: "Megamicro",
  13764. height: math.unit(0.1, "mm")
  13765. },
  13766. {
  13767. name: "Micro",
  13768. height: math.unit(1, "inch"),
  13769. default: true
  13770. },
  13771. {
  13772. name: "Human-sized",
  13773. height: math.unit(6 + 1 / 12, "feet")
  13774. },
  13775. {
  13776. name: "Macro",
  13777. height: math.unit(250, "feet")
  13778. },
  13779. {
  13780. name: "Megamacro",
  13781. height: math.unit(75, "miles")
  13782. },
  13783. {
  13784. name: "Texas-sized",
  13785. height: math.unit(750, "miles")
  13786. },
  13787. {
  13788. name: "Teramacro",
  13789. height: math.unit(50000, "miles")
  13790. },
  13791. ]
  13792. ))
  13793. characterMakers.push(() => makeCharacter(
  13794. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13795. {
  13796. front: {
  13797. height: math.unit(6, "feet"),
  13798. weight: math.unit(269, "lb"),
  13799. name: "Front",
  13800. image: {
  13801. source: "./media/characters/danny-kapowsky/front.svg",
  13802. extra: 766 / 736,
  13803. bottom: 0.044
  13804. }
  13805. },
  13806. back: {
  13807. height: math.unit(6, "feet"),
  13808. weight: math.unit(269, "lb"),
  13809. name: "Back",
  13810. image: {
  13811. source: "./media/characters/danny-kapowsky/back.svg",
  13812. extra: 797 / 760,
  13813. bottom: 0.025
  13814. }
  13815. },
  13816. },
  13817. [
  13818. {
  13819. name: "Macro",
  13820. height: math.unit(150, "feet"),
  13821. default: true
  13822. },
  13823. {
  13824. name: "Macro+",
  13825. height: math.unit(200, "feet")
  13826. },
  13827. {
  13828. name: "Macro++",
  13829. height: math.unit(300, "feet")
  13830. },
  13831. {
  13832. name: "Macro+++",
  13833. height: math.unit(400, "feet")
  13834. },
  13835. ]
  13836. ))
  13837. characterMakers.push(() => makeCharacter(
  13838. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13839. {
  13840. side: {
  13841. height: math.unit(6, "feet"),
  13842. weight: math.unit(170, "lb"),
  13843. name: "Side",
  13844. image: {
  13845. source: "./media/characters/finn/side.svg",
  13846. extra: 1953 / 1807,
  13847. bottom: 0.057
  13848. }
  13849. },
  13850. },
  13851. [
  13852. {
  13853. name: "Megamacro",
  13854. height: math.unit(14445, "feet"),
  13855. default: true
  13856. },
  13857. ]
  13858. ))
  13859. characterMakers.push(() => makeCharacter(
  13860. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13861. {
  13862. front: {
  13863. height: math.unit(5 + 6 / 12, "feet"),
  13864. weight: math.unit(125, "lb"),
  13865. name: "Front",
  13866. image: {
  13867. source: "./media/characters/roy/front.svg",
  13868. extra: 1,
  13869. bottom: 0.11
  13870. }
  13871. },
  13872. },
  13873. [
  13874. {
  13875. name: "Micro",
  13876. height: math.unit(3, "inches"),
  13877. default: true
  13878. },
  13879. {
  13880. name: "Normal",
  13881. height: math.unit(5 + 6 / 12, "feet")
  13882. },
  13883. {
  13884. name: "Lesser Macro",
  13885. height: math.unit(60, "feet")
  13886. },
  13887. {
  13888. name: "Greater Macro",
  13889. height: math.unit(120, "feet")
  13890. },
  13891. ]
  13892. ))
  13893. characterMakers.push(() => makeCharacter(
  13894. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13895. {
  13896. front: {
  13897. height: math.unit(6, "feet"),
  13898. weight: math.unit(100, "lb"),
  13899. name: "Front",
  13900. image: {
  13901. source: "./media/characters/aevsivs/front.svg",
  13902. extra: 1,
  13903. bottom: 0.03
  13904. }
  13905. },
  13906. back: {
  13907. height: math.unit(6, "feet"),
  13908. weight: math.unit(100, "lb"),
  13909. name: "Back",
  13910. image: {
  13911. source: "./media/characters/aevsivs/back.svg"
  13912. }
  13913. },
  13914. },
  13915. [
  13916. {
  13917. name: "Micro",
  13918. height: math.unit(2, "inches"),
  13919. default: true
  13920. },
  13921. {
  13922. name: "Normal",
  13923. height: math.unit(5, "feet")
  13924. },
  13925. ]
  13926. ))
  13927. characterMakers.push(() => makeCharacter(
  13928. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13929. {
  13930. front: {
  13931. height: math.unit(5 + 7 / 12, "feet"),
  13932. weight: math.unit(159, "lb"),
  13933. name: "Front",
  13934. image: {
  13935. source: "./media/characters/hildegard/front.svg",
  13936. extra: 289 / 269,
  13937. bottom: 7.63/297.8
  13938. }
  13939. },
  13940. back: {
  13941. height: math.unit(5 + 7 / 12, "feet"),
  13942. weight: math.unit(159, "lb"),
  13943. name: "Back",
  13944. image: {
  13945. source: "./media/characters/hildegard/back.svg",
  13946. extra: 280/260,
  13947. bottom: 2.3/282
  13948. }
  13949. },
  13950. },
  13951. [
  13952. {
  13953. name: "Normal",
  13954. height: math.unit(5 + 7 / 12, "feet"),
  13955. default: true
  13956. },
  13957. ]
  13958. ))
  13959. characterMakers.push(() => makeCharacter(
  13960. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13961. {
  13962. bernard: {
  13963. height: math.unit(2 + 7 / 12, "feet"),
  13964. weight: math.unit(66, "lb"),
  13965. name: "Bernard",
  13966. rename: true,
  13967. image: {
  13968. source: "./media/characters/bernard-wilder/bernard.svg",
  13969. extra: 192 / 128,
  13970. bottom: 0.05
  13971. }
  13972. },
  13973. wilder: {
  13974. height: math.unit(5 + 8 / 12, "feet"),
  13975. weight: math.unit(143, "lb"),
  13976. name: "Wilder",
  13977. rename: true,
  13978. image: {
  13979. source: "./media/characters/bernard-wilder/wilder.svg",
  13980. extra: 361 / 312,
  13981. bottom: 0.02
  13982. }
  13983. },
  13984. },
  13985. [
  13986. {
  13987. name: "Normal",
  13988. height: math.unit(2 + 7 / 12, "feet"),
  13989. default: true
  13990. },
  13991. ]
  13992. ))
  13993. characterMakers.push(() => makeCharacter(
  13994. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13995. {
  13996. anthro: {
  13997. height: math.unit(6 + 1 / 12, "feet"),
  13998. weight: math.unit(155, "lb"),
  13999. name: "Anthro",
  14000. image: {
  14001. source: "./media/characters/hearth/anthro.svg",
  14002. extra: 260 / 250,
  14003. bottom: 0.02
  14004. }
  14005. },
  14006. feral: {
  14007. height: math.unit(3.78, "feet"),
  14008. weight: math.unit(35, "kg"),
  14009. name: "Feral",
  14010. image: {
  14011. source: "./media/characters/hearth/feral.svg",
  14012. extra: 153 / 135,
  14013. bottom: 0.03
  14014. }
  14015. },
  14016. },
  14017. [
  14018. {
  14019. name: "Normal",
  14020. height: math.unit(6 + 1 / 12, "feet"),
  14021. default: true
  14022. },
  14023. ]
  14024. ))
  14025. characterMakers.push(() => makeCharacter(
  14026. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14027. {
  14028. front: {
  14029. height: math.unit(6, "feet"),
  14030. weight: math.unit(182, "lb"),
  14031. name: "Front",
  14032. image: {
  14033. source: "./media/characters/ingrid/front.svg",
  14034. extra: 294 / 268,
  14035. bottom: 0.027
  14036. }
  14037. },
  14038. },
  14039. [
  14040. {
  14041. name: "Normal",
  14042. height: math.unit(6, "feet"),
  14043. default: true
  14044. },
  14045. ]
  14046. ))
  14047. characterMakers.push(() => makeCharacter(
  14048. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14049. {
  14050. eevee: {
  14051. height: math.unit(2 + 10 / 12, "feet"),
  14052. weight: math.unit(86, "lb"),
  14053. name: "Malgam",
  14054. image: {
  14055. source: "./media/characters/malgam/eevee.svg",
  14056. extra: 218 / 180,
  14057. bottom: 0.2
  14058. }
  14059. },
  14060. sylveon: {
  14061. height: math.unit(4, "feet"),
  14062. weight: math.unit(101, "lb"),
  14063. name: "Future Malgam",
  14064. rename: true,
  14065. image: {
  14066. source: "./media/characters/malgam/sylveon.svg",
  14067. extra: 371 / 325,
  14068. bottom: 0.015
  14069. }
  14070. },
  14071. gigantamax: {
  14072. height: math.unit(50, "feet"),
  14073. name: "Gigantamax Malgam",
  14074. rename: true,
  14075. image: {
  14076. source: "./media/characters/malgam/gigantamax.svg"
  14077. }
  14078. },
  14079. },
  14080. [
  14081. {
  14082. name: "Normal",
  14083. height: math.unit(2 + 10 / 12, "feet"),
  14084. default: true
  14085. },
  14086. ]
  14087. ))
  14088. characterMakers.push(() => makeCharacter(
  14089. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14090. {
  14091. front: {
  14092. height: math.unit(5 + 11 / 12, "feet"),
  14093. weight: math.unit(188, "lb"),
  14094. name: "Front",
  14095. image: {
  14096. source: "./media/characters/fleur/front.svg",
  14097. extra: 309 / 283,
  14098. bottom: 0.007
  14099. }
  14100. },
  14101. },
  14102. [
  14103. {
  14104. name: "Normal",
  14105. height: math.unit(5 + 11 / 12, "feet"),
  14106. default: true
  14107. },
  14108. ]
  14109. ))
  14110. characterMakers.push(() => makeCharacter(
  14111. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14112. {
  14113. front: {
  14114. height: math.unit(5 + 4 / 12, "feet"),
  14115. weight: math.unit(122, "lb"),
  14116. name: "Front",
  14117. image: {
  14118. source: "./media/characters/jude/front.svg",
  14119. extra: 288 / 273,
  14120. bottom: 0.03
  14121. }
  14122. },
  14123. },
  14124. [
  14125. {
  14126. name: "Normal",
  14127. height: math.unit(5 + 4 / 12, "feet"),
  14128. default: true
  14129. },
  14130. ]
  14131. ))
  14132. characterMakers.push(() => makeCharacter(
  14133. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14134. {
  14135. front: {
  14136. height: math.unit(5 + 11 / 12, "feet"),
  14137. weight: math.unit(190, "lb"),
  14138. name: "Front",
  14139. image: {
  14140. source: "./media/characters/seara/front.svg",
  14141. extra: 1,
  14142. bottom: 0.05
  14143. }
  14144. },
  14145. },
  14146. [
  14147. {
  14148. name: "Normal",
  14149. height: math.unit(5 + 11 / 12, "feet"),
  14150. default: true
  14151. },
  14152. ]
  14153. ))
  14154. characterMakers.push(() => makeCharacter(
  14155. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14156. {
  14157. front: {
  14158. height: math.unit(16 + 5 / 12, "feet"),
  14159. weight: math.unit(524, "lb"),
  14160. name: "Front",
  14161. image: {
  14162. source: "./media/characters/caspian/front.svg",
  14163. extra: 1,
  14164. bottom: 0.04
  14165. }
  14166. },
  14167. },
  14168. [
  14169. {
  14170. name: "Normal",
  14171. height: math.unit(16 + 5 / 12, "feet"),
  14172. default: true
  14173. },
  14174. ]
  14175. ))
  14176. characterMakers.push(() => makeCharacter(
  14177. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14178. {
  14179. front: {
  14180. height: math.unit(5 + 7 / 12, "feet"),
  14181. weight: math.unit(170, "lb"),
  14182. name: "Front",
  14183. image: {
  14184. source: "./media/characters/mika/front.svg",
  14185. extra: 1,
  14186. bottom: 0.016
  14187. }
  14188. },
  14189. },
  14190. [
  14191. {
  14192. name: "Normal",
  14193. height: math.unit(5 + 7 / 12, "feet"),
  14194. default: true
  14195. },
  14196. ]
  14197. ))
  14198. characterMakers.push(() => makeCharacter(
  14199. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14200. {
  14201. front: {
  14202. height: math.unit(6 + 2 / 12, "feet"),
  14203. weight: math.unit(268, "lb"),
  14204. name: "Front",
  14205. image: {
  14206. source: "./media/characters/sol/front.svg",
  14207. extra: 247 / 231,
  14208. bottom: 0.05
  14209. }
  14210. },
  14211. },
  14212. [
  14213. {
  14214. name: "Normal",
  14215. height: math.unit(6 + 2 / 12, "feet"),
  14216. default: true
  14217. },
  14218. ]
  14219. ))
  14220. characterMakers.push(() => makeCharacter(
  14221. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14222. {
  14223. buizel: {
  14224. height: math.unit(2 + 5 / 12, "feet"),
  14225. weight: math.unit(87, "lb"),
  14226. name: "Buizel",
  14227. image: {
  14228. source: "./media/characters/umiko/buizel.svg",
  14229. extra: 172 / 157,
  14230. bottom: 0.01
  14231. }
  14232. },
  14233. floatzel: {
  14234. height: math.unit(5 + 9 / 12, "feet"),
  14235. weight: math.unit(250, "lb"),
  14236. name: "Floatzel",
  14237. image: {
  14238. source: "./media/characters/umiko/floatzel.svg",
  14239. extra: 262 / 248
  14240. }
  14241. },
  14242. },
  14243. [
  14244. {
  14245. name: "Normal",
  14246. height: math.unit(2 + 5 / 12, "feet"),
  14247. default: true
  14248. },
  14249. ]
  14250. ))
  14251. characterMakers.push(() => makeCharacter(
  14252. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14253. {
  14254. front: {
  14255. height: math.unit(6 + 2 / 12, "feet"),
  14256. weight: math.unit(146, "lb"),
  14257. name: "Front",
  14258. image: {
  14259. source: "./media/characters/iliac/front.svg",
  14260. extra: 389 / 365,
  14261. bottom: 0.035
  14262. }
  14263. },
  14264. },
  14265. [
  14266. {
  14267. name: "Normal",
  14268. height: math.unit(6 + 2 / 12, "feet"),
  14269. default: true
  14270. },
  14271. ]
  14272. ))
  14273. characterMakers.push(() => makeCharacter(
  14274. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14275. {
  14276. front: {
  14277. height: math.unit(6, "feet"),
  14278. weight: math.unit(170, "lb"),
  14279. name: "Front",
  14280. image: {
  14281. source: "./media/characters/topaz/front.svg",
  14282. extra: 317 / 303,
  14283. bottom: 0.055
  14284. }
  14285. },
  14286. },
  14287. [
  14288. {
  14289. name: "Normal",
  14290. height: math.unit(6, "feet"),
  14291. default: true
  14292. },
  14293. ]
  14294. ))
  14295. characterMakers.push(() => makeCharacter(
  14296. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14297. {
  14298. front: {
  14299. height: math.unit(5 + 11 / 12, "feet"),
  14300. weight: math.unit(144, "lb"),
  14301. name: "Front",
  14302. image: {
  14303. source: "./media/characters/gabriel/front.svg",
  14304. extra: 285 / 262,
  14305. bottom: 0.004
  14306. }
  14307. },
  14308. },
  14309. [
  14310. {
  14311. name: "Normal",
  14312. height: math.unit(5 + 11 / 12, "feet"),
  14313. default: true
  14314. },
  14315. ]
  14316. ))
  14317. characterMakers.push(() => makeCharacter(
  14318. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14319. {
  14320. side: {
  14321. height: math.unit(6 + 5 / 12, "feet"),
  14322. weight: math.unit(300, "lb"),
  14323. name: "Side",
  14324. image: {
  14325. source: "./media/characters/tempest-suicune/side.svg",
  14326. extra: 195 / 154,
  14327. bottom: 0.04
  14328. }
  14329. },
  14330. },
  14331. [
  14332. {
  14333. name: "Normal",
  14334. height: math.unit(6 + 5 / 12, "feet"),
  14335. default: true
  14336. },
  14337. ]
  14338. ))
  14339. characterMakers.push(() => makeCharacter(
  14340. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14341. {
  14342. front: {
  14343. height: math.unit(7 + 2 / 12, "feet"),
  14344. weight: math.unit(322, "lb"),
  14345. name: "Front",
  14346. image: {
  14347. source: "./media/characters/vulcan/front.svg",
  14348. extra: 154 / 147,
  14349. bottom: 0.04
  14350. }
  14351. },
  14352. },
  14353. [
  14354. {
  14355. name: "Normal",
  14356. height: math.unit(7 + 2 / 12, "feet"),
  14357. default: true
  14358. },
  14359. ]
  14360. ))
  14361. characterMakers.push(() => makeCharacter(
  14362. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14363. {
  14364. front: {
  14365. height: math.unit(5 + 10 / 12, "feet"),
  14366. weight: math.unit(264, "lb"),
  14367. name: "Front",
  14368. image: {
  14369. source: "./media/characters/gault/front.svg",
  14370. extra: 161 / 140,
  14371. bottom: 0.028
  14372. }
  14373. },
  14374. },
  14375. [
  14376. {
  14377. name: "Normal",
  14378. height: math.unit(5 + 10 / 12, "feet"),
  14379. default: true
  14380. },
  14381. ]
  14382. ))
  14383. characterMakers.push(() => makeCharacter(
  14384. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14385. {
  14386. front: {
  14387. height: math.unit(6, "feet"),
  14388. weight: math.unit(150, "lb"),
  14389. name: "Front",
  14390. image: {
  14391. source: "./media/characters/shard/front.svg",
  14392. extra: 273 / 238,
  14393. bottom: 0.02
  14394. }
  14395. },
  14396. },
  14397. [
  14398. {
  14399. name: "Normal",
  14400. height: math.unit(3 + 6 / 12, "feet"),
  14401. default: true
  14402. },
  14403. ]
  14404. ))
  14405. characterMakers.push(() => makeCharacter(
  14406. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14407. {
  14408. front: {
  14409. height: math.unit(5 + 11 / 12, "feet"),
  14410. weight: math.unit(146, "lb"),
  14411. name: "Front",
  14412. image: {
  14413. source: "./media/characters/ashe/front.svg",
  14414. extra: 400 / 373,
  14415. bottom: 0.01
  14416. }
  14417. },
  14418. },
  14419. [
  14420. {
  14421. name: "Normal",
  14422. height: math.unit(5 + 11 / 12, "feet"),
  14423. default: true
  14424. },
  14425. ]
  14426. ))
  14427. characterMakers.push(() => makeCharacter(
  14428. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14429. {
  14430. front: {
  14431. height: math.unit(5 + 5 / 12, "feet"),
  14432. weight: math.unit(135, "lb"),
  14433. name: "Front",
  14434. image: {
  14435. source: "./media/characters/beatrix/front.svg",
  14436. extra: 392 / 379,
  14437. bottom: 0.01
  14438. }
  14439. },
  14440. },
  14441. [
  14442. {
  14443. name: "Normal",
  14444. height: math.unit(6, "feet"),
  14445. default: true
  14446. },
  14447. ]
  14448. ))
  14449. characterMakers.push(() => makeCharacter(
  14450. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14451. {
  14452. front: {
  14453. height: math.unit(6, "feet"),
  14454. weight: math.unit(150, "lb"),
  14455. name: "Front",
  14456. image: {
  14457. source: "./media/characters/ignatius/front.svg",
  14458. extra: 245 / 222,
  14459. bottom: 0.01
  14460. }
  14461. },
  14462. },
  14463. [
  14464. {
  14465. name: "Normal",
  14466. height: math.unit(5 + 5 / 12, "feet"),
  14467. default: true
  14468. },
  14469. ]
  14470. ))
  14471. characterMakers.push(() => makeCharacter(
  14472. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14473. {
  14474. front: {
  14475. height: math.unit(6 + 2 / 12, "feet"),
  14476. weight: math.unit(138, "lb"),
  14477. name: "Front",
  14478. image: {
  14479. source: "./media/characters/mei-li/front.svg",
  14480. extra: 237 / 229,
  14481. bottom: 0.03
  14482. }
  14483. },
  14484. },
  14485. [
  14486. {
  14487. name: "Normal",
  14488. height: math.unit(6 + 2 / 12, "feet"),
  14489. default: true
  14490. },
  14491. ]
  14492. ))
  14493. characterMakers.push(() => makeCharacter(
  14494. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14495. {
  14496. front: {
  14497. height: math.unit(2 + 4 / 12, "feet"),
  14498. weight: math.unit(62, "lb"),
  14499. name: "Front",
  14500. image: {
  14501. source: "./media/characters/puru/front.svg",
  14502. extra: 206 / 149,
  14503. bottom: 0.06
  14504. }
  14505. },
  14506. },
  14507. [
  14508. {
  14509. name: "Normal",
  14510. height: math.unit(2 + 4 / 12, "feet"),
  14511. default: true
  14512. },
  14513. ]
  14514. ))
  14515. characterMakers.push(() => makeCharacter(
  14516. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14517. {
  14518. taur: {
  14519. height: math.unit(11, "feet"),
  14520. weight: math.unit(500, "lb"),
  14521. name: "Taur",
  14522. image: {
  14523. source: "./media/characters/kee/taur.svg",
  14524. extra: 1,
  14525. bottom: 0.04
  14526. }
  14527. },
  14528. },
  14529. [
  14530. {
  14531. name: "Normal",
  14532. height: math.unit(11, "feet"),
  14533. default: true
  14534. },
  14535. ]
  14536. ))
  14537. characterMakers.push(() => makeCharacter(
  14538. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14539. {
  14540. anthro: {
  14541. height: math.unit(7, "feet"),
  14542. weight: math.unit(190, "lb"),
  14543. name: "Anthro",
  14544. image: {
  14545. source: "./media/characters/cobalt-dracha/anthro.svg",
  14546. extra: 231 / 225,
  14547. bottom: 0.04
  14548. }
  14549. },
  14550. feral: {
  14551. height: math.unit(9 + 7 / 12, "feet"),
  14552. weight: math.unit(294, "lb"),
  14553. name: "Feral",
  14554. image: {
  14555. source: "./media/characters/cobalt-dracha/feral.svg",
  14556. extra: 692 / 633,
  14557. bottom: 0.05
  14558. }
  14559. },
  14560. },
  14561. [
  14562. {
  14563. name: "Normal",
  14564. height: math.unit(7, "feet"),
  14565. default: true
  14566. },
  14567. ]
  14568. ))
  14569. characterMakers.push(() => makeCharacter(
  14570. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14571. {
  14572. fallen: {
  14573. height: math.unit(11 + 8 / 12, "feet"),
  14574. weight: math.unit(485, "lb"),
  14575. name: "Java (Fallen)",
  14576. rename: true,
  14577. image: {
  14578. source: "./media/characters/java/fallen.svg",
  14579. extra: 226 / 208,
  14580. bottom: 0.005
  14581. }
  14582. },
  14583. godkin: {
  14584. height: math.unit(10 + 6 / 12, "feet"),
  14585. weight: math.unit(328, "lb"),
  14586. name: "Java (Godkin)",
  14587. rename: true,
  14588. image: {
  14589. source: "./media/characters/java/godkin.svg",
  14590. extra: 270 / 262,
  14591. bottom: 0.02
  14592. }
  14593. },
  14594. },
  14595. [
  14596. {
  14597. name: "Normal",
  14598. height: math.unit(11 + 8 / 12, "feet"),
  14599. default: true
  14600. },
  14601. ]
  14602. ))
  14603. characterMakers.push(() => makeCharacter(
  14604. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14605. {
  14606. front: {
  14607. height: math.unit(7 + 8 / 12, "feet"),
  14608. weight: math.unit(320, "lb"),
  14609. name: "Front",
  14610. image: {
  14611. source: "./media/characters/skoll/front.svg",
  14612. extra: 232 / 220,
  14613. bottom: 0.02
  14614. }
  14615. },
  14616. },
  14617. [
  14618. {
  14619. name: "Normal",
  14620. height: math.unit(7 + 8 / 12, "feet"),
  14621. default: true
  14622. },
  14623. ]
  14624. ))
  14625. characterMakers.push(() => makeCharacter(
  14626. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14627. {
  14628. front: {
  14629. height: math.unit(5 + 9 / 12, "feet"),
  14630. weight: math.unit(170, "lb"),
  14631. name: "Front",
  14632. image: {
  14633. source: "./media/characters/purna/front.svg",
  14634. extra: 239 / 229,
  14635. bottom: 0.01
  14636. }
  14637. },
  14638. },
  14639. [
  14640. {
  14641. name: "Normal",
  14642. height: math.unit(5 + 9 / 12, "feet"),
  14643. default: true
  14644. },
  14645. ]
  14646. ))
  14647. characterMakers.push(() => makeCharacter(
  14648. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14649. {
  14650. front: {
  14651. height: math.unit(5 + 9 / 12, "feet"),
  14652. weight: math.unit(142, "lb"),
  14653. name: "Front",
  14654. image: {
  14655. source: "./media/characters/kuva/front.svg",
  14656. extra: 281 / 271,
  14657. bottom: 0.006
  14658. }
  14659. },
  14660. },
  14661. [
  14662. {
  14663. name: "Normal",
  14664. height: math.unit(5 + 9 / 12, "feet"),
  14665. default: true
  14666. },
  14667. ]
  14668. ))
  14669. characterMakers.push(() => makeCharacter(
  14670. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14671. {
  14672. anthro: {
  14673. height: math.unit(9 + 2 / 12, "feet"),
  14674. weight: math.unit(270, "lb"),
  14675. name: "Anthro",
  14676. image: {
  14677. source: "./media/characters/embra/anthro.svg",
  14678. extra: 200 / 187,
  14679. bottom: 0.02
  14680. }
  14681. },
  14682. feral: {
  14683. height: math.unit(18 + 8 / 12, "feet"),
  14684. weight: math.unit(576, "lb"),
  14685. name: "Feral",
  14686. image: {
  14687. source: "./media/characters/embra/feral.svg",
  14688. extra: 152 / 137,
  14689. bottom: 0.037
  14690. }
  14691. },
  14692. },
  14693. [
  14694. {
  14695. name: "Normal",
  14696. height: math.unit(9 + 2 / 12, "feet"),
  14697. default: true
  14698. },
  14699. ]
  14700. ))
  14701. characterMakers.push(() => makeCharacter(
  14702. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14703. {
  14704. anthro: {
  14705. height: math.unit(10 + 9 / 12, "feet"),
  14706. weight: math.unit(224, "lb"),
  14707. name: "Anthro",
  14708. image: {
  14709. source: "./media/characters/grottos/anthro.svg",
  14710. extra: 350 / 332,
  14711. bottom: 0.045
  14712. }
  14713. },
  14714. feral: {
  14715. height: math.unit(20 + 7 / 12, "feet"),
  14716. weight: math.unit(629, "lb"),
  14717. name: "Feral",
  14718. image: {
  14719. source: "./media/characters/grottos/feral.svg",
  14720. extra: 207 / 190,
  14721. bottom: 0.05
  14722. }
  14723. },
  14724. },
  14725. [
  14726. {
  14727. name: "Normal",
  14728. height: math.unit(10 + 9 / 12, "feet"),
  14729. default: true
  14730. },
  14731. ]
  14732. ))
  14733. characterMakers.push(() => makeCharacter(
  14734. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14735. {
  14736. anthro: {
  14737. height: math.unit(9 + 6 / 12, "feet"),
  14738. weight: math.unit(298, "lb"),
  14739. name: "Anthro",
  14740. image: {
  14741. source: "./media/characters/frifna/anthro.svg",
  14742. extra: 282 / 269,
  14743. bottom: 0.015
  14744. }
  14745. },
  14746. feral: {
  14747. height: math.unit(16 + 2 / 12, "feet"),
  14748. weight: math.unit(624, "lb"),
  14749. name: "Feral",
  14750. image: {
  14751. source: "./media/characters/frifna/feral.svg"
  14752. }
  14753. },
  14754. },
  14755. [
  14756. {
  14757. name: "Normal",
  14758. height: math.unit(9 + 6 / 12, "feet"),
  14759. default: true
  14760. },
  14761. ]
  14762. ))
  14763. characterMakers.push(() => makeCharacter(
  14764. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14765. {
  14766. front: {
  14767. height: math.unit(6 + 2 / 12, "feet"),
  14768. weight: math.unit(168, "lb"),
  14769. name: "Front",
  14770. image: {
  14771. source: "./media/characters/elise/front.svg",
  14772. extra: 276 / 271
  14773. }
  14774. },
  14775. },
  14776. [
  14777. {
  14778. name: "Normal",
  14779. height: math.unit(6 + 2 / 12, "feet"),
  14780. default: true
  14781. },
  14782. ]
  14783. ))
  14784. characterMakers.push(() => makeCharacter(
  14785. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14786. {
  14787. front: {
  14788. height: math.unit(5 + 10 / 12, "feet"),
  14789. weight: math.unit(210, "lb"),
  14790. name: "Front",
  14791. image: {
  14792. source: "./media/characters/glade/front.svg",
  14793. extra: 258 / 247,
  14794. bottom: 0.008
  14795. }
  14796. },
  14797. },
  14798. [
  14799. {
  14800. name: "Normal",
  14801. height: math.unit(5 + 10 / 12, "feet"),
  14802. default: true
  14803. },
  14804. ]
  14805. ))
  14806. characterMakers.push(() => makeCharacter(
  14807. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14808. {
  14809. front: {
  14810. height: math.unit(5 + 10 / 12, "feet"),
  14811. weight: math.unit(129, "lb"),
  14812. name: "Front",
  14813. image: {
  14814. source: "./media/characters/rina/front.svg",
  14815. extra: 266 / 255,
  14816. bottom: 0.005
  14817. }
  14818. },
  14819. },
  14820. [
  14821. {
  14822. name: "Normal",
  14823. height: math.unit(5 + 10 / 12, "feet"),
  14824. default: true
  14825. },
  14826. ]
  14827. ))
  14828. characterMakers.push(() => makeCharacter(
  14829. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14830. {
  14831. front: {
  14832. height: math.unit(6 + 1 / 12, "feet"),
  14833. weight: math.unit(192, "lb"),
  14834. name: "Front",
  14835. image: {
  14836. source: "./media/characters/veronica/front.svg",
  14837. extra: 319 / 309,
  14838. bottom: 0.005
  14839. }
  14840. },
  14841. },
  14842. [
  14843. {
  14844. name: "Normal",
  14845. height: math.unit(6 + 1 / 12, "feet"),
  14846. default: true
  14847. },
  14848. ]
  14849. ))
  14850. characterMakers.push(() => makeCharacter(
  14851. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14852. {
  14853. front: {
  14854. height: math.unit(9 + 3 / 12, "feet"),
  14855. weight: math.unit(1100, "lb"),
  14856. name: "Front",
  14857. image: {
  14858. source: "./media/characters/braxton/front.svg",
  14859. extra: 1057 / 984,
  14860. bottom: 0.05
  14861. }
  14862. },
  14863. },
  14864. [
  14865. {
  14866. name: "Normal",
  14867. height: math.unit(9 + 3 / 12, "feet")
  14868. },
  14869. {
  14870. name: "Giant",
  14871. height: math.unit(300, "feet"),
  14872. default: true
  14873. },
  14874. {
  14875. name: "Macro",
  14876. height: math.unit(700, "feet")
  14877. },
  14878. {
  14879. name: "Megamacro",
  14880. height: math.unit(6000, "feet")
  14881. },
  14882. ]
  14883. ))
  14884. characterMakers.push(() => makeCharacter(
  14885. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14886. {
  14887. front: {
  14888. height: math.unit(6 + 7 / 12, "feet"),
  14889. weight: math.unit(150, "lb"),
  14890. name: "Front",
  14891. image: {
  14892. source: "./media/characters/blue-feyonics/front.svg",
  14893. extra: 1403 / 1306,
  14894. bottom: 0.047
  14895. }
  14896. },
  14897. },
  14898. [
  14899. {
  14900. name: "Normal",
  14901. height: math.unit(6 + 7 / 12, "feet"),
  14902. default: true
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14908. {
  14909. front: {
  14910. height: math.unit(1.8, "meters"),
  14911. weight: math.unit(60, "kg"),
  14912. name: "Front",
  14913. image: {
  14914. source: "./media/characters/maxwell/front.svg",
  14915. extra: 2060 / 1873
  14916. }
  14917. },
  14918. },
  14919. [
  14920. {
  14921. name: "Micro",
  14922. height: math.unit(1, "mm")
  14923. },
  14924. {
  14925. name: "Normal",
  14926. height: math.unit(1.8, "meter"),
  14927. default: true
  14928. },
  14929. {
  14930. name: "Macro",
  14931. height: math.unit(30, "meters")
  14932. },
  14933. {
  14934. name: "Megamacro",
  14935. height: math.unit(10, "km")
  14936. },
  14937. ]
  14938. ))
  14939. characterMakers.push(() => makeCharacter(
  14940. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14941. {
  14942. front: {
  14943. height: math.unit(6, "feet"),
  14944. weight: math.unit(150, "lb"),
  14945. name: "Front",
  14946. image: {
  14947. source: "./media/characters/jack/front.svg",
  14948. extra: 1754 / 1640,
  14949. bottom: 0.01
  14950. }
  14951. },
  14952. },
  14953. [
  14954. {
  14955. name: "Normal",
  14956. height: math.unit(80000, "feet"),
  14957. default: true
  14958. },
  14959. {
  14960. name: "Max size",
  14961. height: math.unit(10, "lightyears")
  14962. },
  14963. ]
  14964. ))
  14965. characterMakers.push(() => makeCharacter(
  14966. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14967. {
  14968. upright: {
  14969. height: math.unit(7, "feet"),
  14970. weight: math.unit(170, "lb"),
  14971. name: "Upright",
  14972. image: {
  14973. source: "./media/characters/cafat/upright.svg",
  14974. bottom: 0.01
  14975. }
  14976. },
  14977. uprightFull: {
  14978. height: math.unit(7, "feet"),
  14979. weight: math.unit(170, "lb"),
  14980. name: "Upright (Full)",
  14981. image: {
  14982. source: "./media/characters/cafat/upright-full.svg",
  14983. bottom: 0.01
  14984. }
  14985. },
  14986. side: {
  14987. height: math.unit(5, "feet"),
  14988. weight: math.unit(150, "lb"),
  14989. name: "Side",
  14990. image: {
  14991. source: "./media/characters/cafat/side.svg"
  14992. }
  14993. },
  14994. },
  14995. [
  14996. {
  14997. name: "Small",
  14998. height: math.unit(7, "feet"),
  14999. default: true
  15000. },
  15001. {
  15002. name: "Large",
  15003. height: math.unit(15.5, "feet")
  15004. },
  15005. ]
  15006. ))
  15007. characterMakers.push(() => makeCharacter(
  15008. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15009. {
  15010. front: {
  15011. height: math.unit(6, "feet"),
  15012. weight: math.unit(150, "lb"),
  15013. name: "Front",
  15014. image: {
  15015. source: "./media/characters/verin-raharra/front.svg",
  15016. extra: 5019 / 4835,
  15017. bottom: 0.023
  15018. }
  15019. },
  15020. },
  15021. [
  15022. {
  15023. name: "Normal",
  15024. height: math.unit(7 + 5 / 12, "feet"),
  15025. default: true
  15026. },
  15027. {
  15028. name: "Upsized",
  15029. height: math.unit(20, "feet")
  15030. },
  15031. ]
  15032. ))
  15033. characterMakers.push(() => makeCharacter(
  15034. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15035. {
  15036. front: {
  15037. height: math.unit(7, "feet"),
  15038. weight: math.unit(230, "lb"),
  15039. name: "Front",
  15040. image: {
  15041. source: "./media/characters/nakata/front.svg",
  15042. extra: 1.005,
  15043. bottom: 0.01
  15044. }
  15045. },
  15046. },
  15047. [
  15048. {
  15049. name: "Normal",
  15050. height: math.unit(7, "feet"),
  15051. default: true
  15052. },
  15053. {
  15054. name: "Big",
  15055. height: math.unit(14, "feet")
  15056. },
  15057. {
  15058. name: "Macro",
  15059. height: math.unit(400, "feet")
  15060. },
  15061. ]
  15062. ))
  15063. characterMakers.push(() => makeCharacter(
  15064. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15065. {
  15066. front: {
  15067. height: math.unit(4.91, "feet"),
  15068. weight: math.unit(100, "lb"),
  15069. name: "Front",
  15070. image: {
  15071. source: "./media/characters/lily/front.svg",
  15072. extra: 1585 / 1415,
  15073. bottom: 0.02
  15074. }
  15075. },
  15076. },
  15077. [
  15078. {
  15079. name: "Normal",
  15080. height: math.unit(4.91, "feet"),
  15081. default: true
  15082. },
  15083. ]
  15084. ))
  15085. characterMakers.push(() => makeCharacter(
  15086. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15087. {
  15088. laying: {
  15089. height: math.unit(4 + 4 / 12, "feet"),
  15090. weight: math.unit(600, "lb"),
  15091. name: "Laying",
  15092. image: {
  15093. source: "./media/characters/sheila/laying.svg",
  15094. extra: 1333 / 1265,
  15095. bottom: 0.16
  15096. }
  15097. },
  15098. },
  15099. [
  15100. {
  15101. name: "Normal",
  15102. height: math.unit(4 + 4 / 12, "feet"),
  15103. default: true
  15104. },
  15105. ]
  15106. ))
  15107. characterMakers.push(() => makeCharacter(
  15108. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15109. {
  15110. front: {
  15111. height: math.unit(6, "feet"),
  15112. weight: math.unit(190, "lb"),
  15113. name: "Front",
  15114. image: {
  15115. source: "./media/characters/sax/front.svg",
  15116. extra: 1187 / 973,
  15117. bottom: 0.042
  15118. }
  15119. },
  15120. },
  15121. [
  15122. {
  15123. name: "Micro",
  15124. height: math.unit(4, "inches"),
  15125. default: true
  15126. },
  15127. ]
  15128. ))
  15129. characterMakers.push(() => makeCharacter(
  15130. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15131. {
  15132. front: {
  15133. height: math.unit(6, "feet"),
  15134. weight: math.unit(150, "lb"),
  15135. name: "Front",
  15136. image: {
  15137. source: "./media/characters/pandora/front.svg",
  15138. extra: 2720 / 2556,
  15139. bottom: 0.015
  15140. }
  15141. },
  15142. back: {
  15143. height: math.unit(6, "feet"),
  15144. weight: math.unit(150, "lb"),
  15145. name: "Back",
  15146. image: {
  15147. source: "./media/characters/pandora/back.svg",
  15148. extra: 2720 / 2556,
  15149. bottom: 0.01
  15150. }
  15151. },
  15152. beans: {
  15153. height: math.unit(6 / 8, "feet"),
  15154. name: "Beans",
  15155. image: {
  15156. source: "./media/characters/pandora/beans.svg"
  15157. }
  15158. },
  15159. skirt: {
  15160. height: math.unit(6, "feet"),
  15161. weight: math.unit(150, "lb"),
  15162. name: "Skirt",
  15163. image: {
  15164. source: "./media/characters/pandora/skirt.svg",
  15165. extra: 1622 / 1525,
  15166. bottom: 0.015
  15167. }
  15168. },
  15169. hoodie: {
  15170. height: math.unit(6, "feet"),
  15171. weight: math.unit(150, "lb"),
  15172. name: "Hoodie",
  15173. image: {
  15174. source: "./media/characters/pandora/hoodie.svg",
  15175. extra: 1622 / 1525,
  15176. bottom: 0.015
  15177. }
  15178. },
  15179. casual: {
  15180. height: math.unit(6, "feet"),
  15181. weight: math.unit(150, "lb"),
  15182. name: "Casual",
  15183. image: {
  15184. source: "./media/characters/pandora/casual.svg",
  15185. extra: 1622 / 1525,
  15186. bottom: 0.015
  15187. }
  15188. },
  15189. },
  15190. [
  15191. {
  15192. name: "Normal",
  15193. height: math.unit(6, "feet")
  15194. },
  15195. {
  15196. name: "Big Steppy",
  15197. height: math.unit(1, "km"),
  15198. default: true
  15199. },
  15200. ]
  15201. ))
  15202. characterMakers.push(() => makeCharacter(
  15203. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15204. {
  15205. side: {
  15206. height: math.unit(10, "feet"),
  15207. weight: math.unit(800, "kg"),
  15208. name: "Side",
  15209. image: {
  15210. source: "./media/characters/venio-darcony/side.svg",
  15211. extra: 1373 / 1003,
  15212. bottom: 0.037
  15213. }
  15214. },
  15215. front: {
  15216. height: math.unit(19, "feet"),
  15217. weight: math.unit(800, "kg"),
  15218. name: "Front",
  15219. image: {
  15220. source: "./media/characters/venio-darcony/front.svg"
  15221. }
  15222. },
  15223. back: {
  15224. height: math.unit(19, "feet"),
  15225. weight: math.unit(800, "kg"),
  15226. name: "Back",
  15227. image: {
  15228. source: "./media/characters/venio-darcony/back.svg"
  15229. }
  15230. },
  15231. sideNsfw: {
  15232. height: math.unit(10, "feet"),
  15233. weight: math.unit(800, "kg"),
  15234. name: "Side (NSFW)",
  15235. image: {
  15236. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15237. extra: 1373 / 1003,
  15238. bottom: 0.037
  15239. }
  15240. },
  15241. frontNsfw: {
  15242. height: math.unit(19, "feet"),
  15243. weight: math.unit(800, "kg"),
  15244. name: "Front (NSFW)",
  15245. image: {
  15246. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15247. }
  15248. },
  15249. backNsfw: {
  15250. height: math.unit(19, "feet"),
  15251. weight: math.unit(800, "kg"),
  15252. name: "Back (NSFW)",
  15253. image: {
  15254. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15255. }
  15256. },
  15257. sideArmored: {
  15258. height: math.unit(10, "feet"),
  15259. weight: math.unit(800, "kg"),
  15260. name: "Side (Armored)",
  15261. image: {
  15262. source: "./media/characters/venio-darcony/side-armored.svg",
  15263. extra: 1373 / 1003,
  15264. bottom: 0.037
  15265. }
  15266. },
  15267. frontArmored: {
  15268. height: math.unit(19, "feet"),
  15269. weight: math.unit(900, "kg"),
  15270. name: "Front (Armored)",
  15271. image: {
  15272. source: "./media/characters/venio-darcony/front-armored.svg"
  15273. }
  15274. },
  15275. backArmored: {
  15276. height: math.unit(19, "feet"),
  15277. weight: math.unit(900, "kg"),
  15278. name: "Back (Armored)",
  15279. image: {
  15280. source: "./media/characters/venio-darcony/back-armored.svg"
  15281. }
  15282. },
  15283. sword: {
  15284. height: math.unit(10, "feet"),
  15285. weight: math.unit(50, "lb"),
  15286. name: "Sword",
  15287. image: {
  15288. source: "./media/characters/venio-darcony/sword.svg"
  15289. }
  15290. },
  15291. },
  15292. [
  15293. {
  15294. name: "Normal",
  15295. height: math.unit(10, "feet")
  15296. },
  15297. {
  15298. name: "Macro",
  15299. height: math.unit(130, "feet"),
  15300. default: true
  15301. },
  15302. {
  15303. name: "Macro+",
  15304. height: math.unit(240, "feet")
  15305. },
  15306. ]
  15307. ))
  15308. characterMakers.push(() => makeCharacter(
  15309. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15310. {
  15311. front: {
  15312. height: math.unit(6, "feet"),
  15313. weight: math.unit(150, "lb"),
  15314. name: "Front",
  15315. image: {
  15316. source: "./media/characters/veski/front.svg",
  15317. extra: 1299 / 1225,
  15318. bottom: 0.04
  15319. }
  15320. },
  15321. back: {
  15322. height: math.unit(6, "feet"),
  15323. weight: math.unit(150, "lb"),
  15324. name: "Back",
  15325. image: {
  15326. source: "./media/characters/veski/back.svg",
  15327. extra: 1299 / 1225,
  15328. bottom: 0.008
  15329. }
  15330. },
  15331. maw: {
  15332. height: math.unit(1.5 * 1.21, "feet"),
  15333. name: "Maw",
  15334. image: {
  15335. source: "./media/characters/veski/maw.svg"
  15336. }
  15337. },
  15338. },
  15339. [
  15340. {
  15341. name: "Macro",
  15342. height: math.unit(2, "km"),
  15343. default: true
  15344. },
  15345. ]
  15346. ))
  15347. characterMakers.push(() => makeCharacter(
  15348. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15349. {
  15350. front: {
  15351. height: math.unit(5 + 7 / 12, "feet"),
  15352. name: "Front",
  15353. image: {
  15354. source: "./media/characters/isabelle/front.svg",
  15355. extra: 2130 / 1976,
  15356. bottom: 0.05
  15357. }
  15358. },
  15359. },
  15360. [
  15361. {
  15362. name: "Supermicro",
  15363. height: math.unit(10, "micrometers")
  15364. },
  15365. {
  15366. name: "Micro",
  15367. height: math.unit(1, "inch")
  15368. },
  15369. {
  15370. name: "Tiny",
  15371. height: math.unit(5, "inches")
  15372. },
  15373. {
  15374. name: "Standard",
  15375. height: math.unit(5 + 7 / 12, "inches")
  15376. },
  15377. {
  15378. name: "Macro",
  15379. height: math.unit(80, "meters"),
  15380. default: true
  15381. },
  15382. {
  15383. name: "Megamacro",
  15384. height: math.unit(250, "meters")
  15385. },
  15386. {
  15387. name: "Gigamacro",
  15388. height: math.unit(5, "km")
  15389. },
  15390. {
  15391. name: "Cosmic",
  15392. height: math.unit(2.5e6, "miles")
  15393. },
  15394. ]
  15395. ))
  15396. characterMakers.push(() => makeCharacter(
  15397. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15398. {
  15399. front: {
  15400. height: math.unit(6, "feet"),
  15401. weight: math.unit(150, "lb"),
  15402. name: "Front",
  15403. image: {
  15404. source: "./media/characters/hanzo/front.svg",
  15405. extra: 374 / 344,
  15406. bottom: 0.02
  15407. }
  15408. },
  15409. },
  15410. [
  15411. {
  15412. name: "Normal",
  15413. height: math.unit(8, "feet"),
  15414. default: true
  15415. },
  15416. ]
  15417. ))
  15418. characterMakers.push(() => makeCharacter(
  15419. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15420. {
  15421. front: {
  15422. height: math.unit(7, "feet"),
  15423. weight: math.unit(130, "lb"),
  15424. name: "Front",
  15425. image: {
  15426. source: "./media/characters/anna/front.svg",
  15427. extra: 169 / 145,
  15428. bottom: 0.06
  15429. }
  15430. },
  15431. full: {
  15432. height: math.unit(4.96, "feet"),
  15433. weight: math.unit(220, "lb"),
  15434. name: "Full",
  15435. image: {
  15436. source: "./media/characters/anna/full.svg",
  15437. extra: 138 / 114,
  15438. bottom: 0.15
  15439. }
  15440. },
  15441. tongue: {
  15442. height: math.unit(2.53, "feet"),
  15443. name: "Tongue",
  15444. image: {
  15445. source: "./media/characters/anna/tongue.svg"
  15446. }
  15447. },
  15448. },
  15449. [
  15450. {
  15451. name: "Normal",
  15452. height: math.unit(7, "feet"),
  15453. default: true
  15454. },
  15455. ]
  15456. ))
  15457. characterMakers.push(() => makeCharacter(
  15458. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15459. {
  15460. front: {
  15461. height: math.unit(7, "feet"),
  15462. weight: math.unit(150, "lb"),
  15463. name: "Front",
  15464. image: {
  15465. source: "./media/characters/ian-corvid/front.svg",
  15466. extra: 150 / 142,
  15467. bottom: 0.02
  15468. }
  15469. },
  15470. back: {
  15471. height: math.unit(7, "feet"),
  15472. weight: math.unit(150, "lb"),
  15473. name: "Back",
  15474. image: {
  15475. source: "./media/characters/ian-corvid/back.svg",
  15476. extra: 150 / 143,
  15477. bottom: 0.01
  15478. }
  15479. },
  15480. stomping: {
  15481. height: math.unit(7, "feet"),
  15482. weight: math.unit(150, "lb"),
  15483. name: "Stomping",
  15484. image: {
  15485. source: "./media/characters/ian-corvid/stomping.svg",
  15486. extra: 76 / 72
  15487. }
  15488. },
  15489. sitting: {
  15490. height: math.unit(7 / 1.8, "feet"),
  15491. weight: math.unit(150, "lb"),
  15492. name: "Sitting",
  15493. image: {
  15494. source: "./media/characters/ian-corvid/sitting.svg",
  15495. extra: 1400 / 1269,
  15496. bottom: 0.15
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Tiny Microw",
  15503. height: math.unit(1, "inch")
  15504. },
  15505. {
  15506. name: "Microw",
  15507. height: math.unit(6, "inches")
  15508. },
  15509. {
  15510. name: "Crow",
  15511. height: math.unit(7 + 1 / 12, "feet"),
  15512. default: true
  15513. },
  15514. {
  15515. name: "Macrow",
  15516. height: math.unit(176, "feet")
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15522. {
  15523. front: {
  15524. height: math.unit(5 + 7 / 12, "feet"),
  15525. weight: math.unit(147, "lb"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/natalie-kellon/front.svg",
  15529. extra: 1214 / 1141,
  15530. bottom: 0.02
  15531. }
  15532. },
  15533. },
  15534. [
  15535. {
  15536. name: "Micro",
  15537. height: math.unit(1 / 16, "inch")
  15538. },
  15539. {
  15540. name: "Tiny",
  15541. height: math.unit(4, "inches")
  15542. },
  15543. {
  15544. name: "Normal",
  15545. height: math.unit(5 + 7 / 12, "feet"),
  15546. default: true
  15547. },
  15548. {
  15549. name: "Amazon",
  15550. height: math.unit(12, "feet")
  15551. },
  15552. {
  15553. name: "Giantess",
  15554. height: math.unit(160, "meters")
  15555. },
  15556. {
  15557. name: "Titaness",
  15558. height: math.unit(800, "meters")
  15559. },
  15560. ]
  15561. ))
  15562. characterMakers.push(() => makeCharacter(
  15563. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15564. {
  15565. front: {
  15566. height: math.unit(6, "feet"),
  15567. weight: math.unit(150, "lb"),
  15568. name: "Front",
  15569. image: {
  15570. source: "./media/characters/alluria/front.svg",
  15571. extra: 806 / 738,
  15572. bottom: 0.01
  15573. }
  15574. },
  15575. side: {
  15576. height: math.unit(6, "feet"),
  15577. weight: math.unit(150, "lb"),
  15578. name: "Side",
  15579. image: {
  15580. source: "./media/characters/alluria/side.svg",
  15581. extra: 800 / 750,
  15582. }
  15583. },
  15584. back: {
  15585. height: math.unit(6, "feet"),
  15586. weight: math.unit(150, "lb"),
  15587. name: "Back",
  15588. image: {
  15589. source: "./media/characters/alluria/back.svg",
  15590. extra: 806 / 738,
  15591. }
  15592. },
  15593. frontMaid: {
  15594. height: math.unit(6, "feet"),
  15595. weight: math.unit(150, "lb"),
  15596. name: "Front (Maid)",
  15597. image: {
  15598. source: "./media/characters/alluria/front-maid.svg",
  15599. extra: 806 / 738,
  15600. bottom: 0.01
  15601. }
  15602. },
  15603. sideMaid: {
  15604. height: math.unit(6, "feet"),
  15605. weight: math.unit(150, "lb"),
  15606. name: "Side (Maid)",
  15607. image: {
  15608. source: "./media/characters/alluria/side-maid.svg",
  15609. extra: 800 / 750,
  15610. bottom: 0.005
  15611. }
  15612. },
  15613. backMaid: {
  15614. height: math.unit(6, "feet"),
  15615. weight: math.unit(150, "lb"),
  15616. name: "Back (Maid)",
  15617. image: {
  15618. source: "./media/characters/alluria/back-maid.svg",
  15619. extra: 806 / 738,
  15620. }
  15621. },
  15622. },
  15623. [
  15624. {
  15625. name: "Micro",
  15626. height: math.unit(6, "inches"),
  15627. default: true
  15628. },
  15629. ]
  15630. ))
  15631. characterMakers.push(() => makeCharacter(
  15632. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15633. {
  15634. front: {
  15635. height: math.unit(6, "feet"),
  15636. weight: math.unit(150, "lb"),
  15637. name: "Front",
  15638. image: {
  15639. source: "./media/characters/kyle/front.svg",
  15640. extra: 1069 / 962,
  15641. bottom: 77.228 / 1727.45
  15642. }
  15643. },
  15644. },
  15645. [
  15646. {
  15647. name: "Macro",
  15648. height: math.unit(150, "feet"),
  15649. default: true
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15655. {
  15656. front: {
  15657. height: math.unit(6, "feet"),
  15658. weight: math.unit(300, "lb"),
  15659. name: "Front",
  15660. image: {
  15661. source: "./media/characters/duncan/front.svg",
  15662. extra: 1650 / 1482,
  15663. bottom: 0.05
  15664. }
  15665. },
  15666. },
  15667. [
  15668. {
  15669. name: "Macro",
  15670. height: math.unit(100, "feet"),
  15671. default: true
  15672. },
  15673. ]
  15674. ))
  15675. characterMakers.push(() => makeCharacter(
  15676. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15677. {
  15678. front: {
  15679. height: math.unit(5 + 4 / 12, "feet"),
  15680. weight: math.unit(220, "lb"),
  15681. name: "Front",
  15682. image: {
  15683. source: "./media/characters/memory/front.svg",
  15684. extra: 3641 / 3545,
  15685. bottom: 0.03
  15686. }
  15687. },
  15688. back: {
  15689. height: math.unit(5 + 4 / 12, "feet"),
  15690. weight: math.unit(220, "lb"),
  15691. name: "Back",
  15692. image: {
  15693. source: "./media/characters/memory/back.svg",
  15694. extra: 3641 / 3545,
  15695. bottom: 0.025
  15696. }
  15697. },
  15698. frontSkirt: {
  15699. height: math.unit(5 + 4 / 12, "feet"),
  15700. weight: math.unit(220, "lb"),
  15701. name: "Front (Skirt)",
  15702. image: {
  15703. source: "./media/characters/memory/front-skirt.svg",
  15704. extra: 3641 / 3545,
  15705. bottom: 0.03
  15706. }
  15707. },
  15708. frontDress: {
  15709. height: math.unit(5 + 4 / 12, "feet"),
  15710. weight: math.unit(220, "lb"),
  15711. name: "Front (Dress)",
  15712. image: {
  15713. source: "./media/characters/memory/front-dress.svg",
  15714. extra: 3641 / 3545,
  15715. bottom: 0.03
  15716. }
  15717. },
  15718. },
  15719. [
  15720. {
  15721. name: "Micro",
  15722. height: math.unit(6, "inches"),
  15723. default: true
  15724. },
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(5 + 4 / 12, "feet")
  15728. },
  15729. ]
  15730. ))
  15731. characterMakers.push(() => makeCharacter(
  15732. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15733. {
  15734. front: {
  15735. height: math.unit(4 + 11 / 12, "feet"),
  15736. weight: math.unit(100, "lb"),
  15737. name: "Front",
  15738. image: {
  15739. source: "./media/characters/luno/front.svg",
  15740. extra: 1535 / 1487,
  15741. bottom: 0.03
  15742. }
  15743. },
  15744. },
  15745. [
  15746. {
  15747. name: "Micro",
  15748. height: math.unit(3, "inches")
  15749. },
  15750. {
  15751. name: "Normal",
  15752. height: math.unit(4 + 11 / 12, "feet"),
  15753. default: true
  15754. },
  15755. {
  15756. name: "Macro",
  15757. height: math.unit(300, "feet")
  15758. },
  15759. {
  15760. name: "Megamacro",
  15761. height: math.unit(700, "miles")
  15762. },
  15763. ]
  15764. ))
  15765. characterMakers.push(() => makeCharacter(
  15766. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15767. {
  15768. front: {
  15769. height: math.unit(6 + 2 / 12, "feet"),
  15770. weight: math.unit(170, "lb"),
  15771. name: "Front",
  15772. image: {
  15773. source: "./media/characters/jamesy/front.svg",
  15774. extra: 440 / 382,
  15775. bottom: 0.005
  15776. }
  15777. },
  15778. },
  15779. [
  15780. {
  15781. name: "Micro",
  15782. height: math.unit(3, "inches")
  15783. },
  15784. {
  15785. name: "Normal",
  15786. height: math.unit(6 + 2 / 12, "feet"),
  15787. default: true
  15788. },
  15789. {
  15790. name: "Macro",
  15791. height: math.unit(300, "feet")
  15792. },
  15793. {
  15794. name: "Megamacro",
  15795. height: math.unit(700, "miles")
  15796. },
  15797. ]
  15798. ))
  15799. characterMakers.push(() => makeCharacter(
  15800. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15801. {
  15802. front: {
  15803. height: math.unit(6, "feet"),
  15804. weight: math.unit(160, "lb"),
  15805. name: "Front",
  15806. image: {
  15807. source: "./media/characters/mark/front.svg",
  15808. extra: 3300 / 3100,
  15809. bottom: 136.42 / 3440.47
  15810. }
  15811. },
  15812. },
  15813. [
  15814. {
  15815. name: "Macro",
  15816. height: math.unit(120, "meters")
  15817. },
  15818. {
  15819. name: "Bigger Macro",
  15820. height: math.unit(350, "meters")
  15821. },
  15822. {
  15823. name: "Megamacro",
  15824. height: math.unit(8, "km"),
  15825. default: true
  15826. },
  15827. {
  15828. name: "Continental",
  15829. height: math.unit(4550, "km")
  15830. },
  15831. {
  15832. name: "Planetary",
  15833. height: math.unit(65000, "km")
  15834. },
  15835. ]
  15836. ))
  15837. characterMakers.push(() => makeCharacter(
  15838. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15839. {
  15840. front: {
  15841. height: math.unit(6, "feet"),
  15842. weight: math.unit(400, "lb"),
  15843. name: "Front",
  15844. image: {
  15845. source: "./media/characters/mac/front.svg",
  15846. extra: 1048 / 987.7,
  15847. bottom: 60 / 1107.6,
  15848. }
  15849. },
  15850. },
  15851. [
  15852. {
  15853. name: "Macro",
  15854. height: math.unit(500, "feet"),
  15855. default: true
  15856. },
  15857. ]
  15858. ))
  15859. characterMakers.push(() => makeCharacter(
  15860. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15861. {
  15862. front: {
  15863. height: math.unit(5 + 2 / 12, "feet"),
  15864. weight: math.unit(190, "lb"),
  15865. name: "Front",
  15866. image: {
  15867. source: "./media/characters/bari/front.svg",
  15868. extra: 3156 / 2880,
  15869. bottom: 0.03
  15870. }
  15871. },
  15872. back: {
  15873. height: math.unit(5 + 2 / 12, "feet"),
  15874. weight: math.unit(190, "lb"),
  15875. name: "Back",
  15876. image: {
  15877. source: "./media/characters/bari/back.svg",
  15878. extra: 3260 / 2834,
  15879. bottom: 0.025
  15880. }
  15881. },
  15882. frontPlush: {
  15883. height: math.unit(5 + 2 / 12, "feet"),
  15884. weight: math.unit(190, "lb"),
  15885. name: "Front (Plush)",
  15886. image: {
  15887. source: "./media/characters/bari/front-plush.svg",
  15888. extra: 1112 / 1061,
  15889. bottom: 0.002
  15890. }
  15891. },
  15892. },
  15893. [
  15894. {
  15895. name: "Micro",
  15896. height: math.unit(3, "inches")
  15897. },
  15898. {
  15899. name: "Normal",
  15900. height: math.unit(5 + 2 / 12, "feet"),
  15901. default: true
  15902. },
  15903. {
  15904. name: "Macro",
  15905. height: math.unit(20, "feet")
  15906. },
  15907. ]
  15908. ))
  15909. characterMakers.push(() => makeCharacter(
  15910. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15911. {
  15912. front: {
  15913. height: math.unit(6 + 1 / 12, "feet"),
  15914. weight: math.unit(275, "lb"),
  15915. name: "Front",
  15916. image: {
  15917. source: "./media/characters/hunter-misha-raven/front.svg"
  15918. }
  15919. },
  15920. },
  15921. [
  15922. {
  15923. name: "Mortal",
  15924. height: math.unit(6 + 1 / 12, "feet")
  15925. },
  15926. {
  15927. name: "Divine",
  15928. height: math.unit(1.12134e34, "parsecs"),
  15929. default: true
  15930. },
  15931. ]
  15932. ))
  15933. characterMakers.push(() => makeCharacter(
  15934. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15935. {
  15936. front: {
  15937. height: math.unit(6 + 3 / 12, "feet"),
  15938. weight: math.unit(220, "lb"),
  15939. name: "Front",
  15940. image: {
  15941. source: "./media/characters/max-calore/front.svg",
  15942. extra: 1700 / 1648,
  15943. bottom: 0.01
  15944. }
  15945. },
  15946. back: {
  15947. height: math.unit(6 + 3 / 12, "feet"),
  15948. weight: math.unit(220, "lb"),
  15949. name: "Back",
  15950. image: {
  15951. source: "./media/characters/max-calore/back.svg",
  15952. extra: 1700 / 1648,
  15953. bottom: 0.01
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Normal",
  15960. height: math.unit(6 + 3 / 12, "feet"),
  15961. default: true
  15962. },
  15963. ]
  15964. ))
  15965. characterMakers.push(() => makeCharacter(
  15966. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15967. {
  15968. side: {
  15969. height: math.unit(2 + 8 / 12, "feet"),
  15970. weight: math.unit(99, "lb"),
  15971. name: "Side",
  15972. image: {
  15973. source: "./media/characters/aspen/side.svg",
  15974. extra: 152 / 138,
  15975. bottom: 0.032
  15976. }
  15977. },
  15978. },
  15979. [
  15980. {
  15981. name: "Normal",
  15982. height: math.unit(2 + 8 / 12, "feet"),
  15983. default: true
  15984. },
  15985. ]
  15986. ))
  15987. characterMakers.push(() => makeCharacter(
  15988. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15989. {
  15990. side: {
  15991. height: math.unit(3 + 2 / 12, "feet"),
  15992. weight: math.unit(224, "lb"),
  15993. name: "Side",
  15994. image: {
  15995. source: "./media/characters/sheila-feral-wolf/side.svg",
  15996. extra: 179 / 166,
  15997. bottom: 0.03
  15998. }
  15999. },
  16000. },
  16001. [
  16002. {
  16003. name: "Normal",
  16004. height: math.unit(3 + 2 / 12, "feet"),
  16005. default: true
  16006. },
  16007. ]
  16008. ))
  16009. characterMakers.push(() => makeCharacter(
  16010. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16011. {
  16012. side: {
  16013. height: math.unit(1 + 9 / 12, "feet"),
  16014. weight: math.unit(38, "lb"),
  16015. name: "Side",
  16016. image: {
  16017. source: "./media/characters/michelle/side.svg",
  16018. extra: 147 / 136.7,
  16019. bottom: 0.03
  16020. }
  16021. },
  16022. },
  16023. [
  16024. {
  16025. name: "Normal",
  16026. height: math.unit(1 + 9 / 12, "feet"),
  16027. default: true
  16028. },
  16029. ]
  16030. ))
  16031. characterMakers.push(() => makeCharacter(
  16032. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16033. {
  16034. front: {
  16035. height: math.unit(1 + 1 / 12, "feet"),
  16036. weight: math.unit(18, "lb"),
  16037. name: "Front",
  16038. image: {
  16039. source: "./media/characters/nino/front.svg"
  16040. }
  16041. },
  16042. },
  16043. [
  16044. {
  16045. name: "Normal",
  16046. height: math.unit(1 + 1 / 12, "feet"),
  16047. default: true
  16048. },
  16049. ]
  16050. ))
  16051. characterMakers.push(() => makeCharacter(
  16052. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16053. {
  16054. front: {
  16055. height: math.unit(1, "feet"),
  16056. weight: math.unit(16, "lb"),
  16057. name: "Front",
  16058. image: {
  16059. source: "./media/characters/viola/front.svg"
  16060. }
  16061. },
  16062. },
  16063. [
  16064. {
  16065. name: "Normal",
  16066. height: math.unit(1, "feet"),
  16067. default: true
  16068. },
  16069. ]
  16070. ))
  16071. characterMakers.push(() => makeCharacter(
  16072. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16073. {
  16074. front: {
  16075. height: math.unit(6 + 5 / 12, "feet"),
  16076. weight: math.unit(580, "lb"),
  16077. name: "Front",
  16078. image: {
  16079. source: "./media/characters/atlas/front.svg",
  16080. extra: 298.5 / 290,
  16081. bottom: 0.015
  16082. }
  16083. },
  16084. },
  16085. [
  16086. {
  16087. name: "Normal",
  16088. height: math.unit(6 + 5 / 12, "feet"),
  16089. default: true
  16090. },
  16091. ]
  16092. ))
  16093. characterMakers.push(() => makeCharacter(
  16094. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16095. {
  16096. side: {
  16097. height: math.unit(1 + 10 / 12, "feet"),
  16098. weight: math.unit(25, "lb"),
  16099. name: "Side",
  16100. image: {
  16101. source: "./media/characters/davy/side.svg",
  16102. extra: 200 / 170,
  16103. bottom: 0.01
  16104. }
  16105. },
  16106. },
  16107. [
  16108. {
  16109. name: "Normal",
  16110. height: math.unit(1 + 10 / 12, "feet"),
  16111. default: true
  16112. },
  16113. ]
  16114. ))
  16115. characterMakers.push(() => makeCharacter(
  16116. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16117. {
  16118. side: {
  16119. height: math.unit(4 + 8 / 12, "feet"),
  16120. weight: math.unit(166, "lb"),
  16121. name: "Side",
  16122. image: {
  16123. source: "./media/characters/fiona/side.svg",
  16124. extra: 232 / 220,
  16125. bottom: 0.03
  16126. }
  16127. },
  16128. },
  16129. [
  16130. {
  16131. name: "Normal",
  16132. height: math.unit(4 + 8 / 12, "feet"),
  16133. default: true
  16134. },
  16135. ]
  16136. ))
  16137. characterMakers.push(() => makeCharacter(
  16138. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16139. {
  16140. front: {
  16141. height: math.unit(2, "feet"),
  16142. weight: math.unit(62, "lb"),
  16143. name: "Front",
  16144. image: {
  16145. source: "./media/characters/lyla/front.svg",
  16146. bottom: 0.1
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Normal",
  16153. height: math.unit(2, "feet"),
  16154. default: true
  16155. },
  16156. ]
  16157. ))
  16158. characterMakers.push(() => makeCharacter(
  16159. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16160. {
  16161. side: {
  16162. height: math.unit(1.8, "feet"),
  16163. weight: math.unit(44, "lb"),
  16164. name: "Side",
  16165. image: {
  16166. source: "./media/characters/perseus/side.svg",
  16167. bottom: 0.21
  16168. }
  16169. },
  16170. },
  16171. [
  16172. {
  16173. name: "Normal",
  16174. height: math.unit(1.8, "feet"),
  16175. default: true
  16176. },
  16177. ]
  16178. ))
  16179. characterMakers.push(() => makeCharacter(
  16180. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16181. {
  16182. side: {
  16183. height: math.unit(4 + 2 / 12, "feet"),
  16184. weight: math.unit(20, "lb"),
  16185. name: "Side",
  16186. image: {
  16187. source: "./media/characters/remus/side.svg"
  16188. }
  16189. },
  16190. },
  16191. [
  16192. {
  16193. name: "Normal",
  16194. height: math.unit(4 + 2 / 12, "feet"),
  16195. default: true
  16196. },
  16197. ]
  16198. ))
  16199. characterMakers.push(() => makeCharacter(
  16200. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16201. {
  16202. front: {
  16203. height: math.unit(4 + 11 / 12, "feet"),
  16204. weight: math.unit(114, "lb"),
  16205. name: "Front",
  16206. image: {
  16207. source: "./media/characters/raf/front.svg",
  16208. bottom: 20.5/1863
  16209. }
  16210. },
  16211. side: {
  16212. height: math.unit(4 + 11 / 12, "feet"),
  16213. weight: math.unit(114, "lb"),
  16214. name: "Side",
  16215. image: {
  16216. source: "./media/characters/raf/side.svg",
  16217. bottom: 22/1822
  16218. }
  16219. },
  16220. },
  16221. [
  16222. {
  16223. name: "Micro",
  16224. height: math.unit(2, "inches")
  16225. },
  16226. {
  16227. name: "Normal",
  16228. height: math.unit(4 + 11 / 12, "feet"),
  16229. default: true
  16230. },
  16231. {
  16232. name: "Macro",
  16233. height: math.unit(70, "feet")
  16234. },
  16235. ]
  16236. ))
  16237. characterMakers.push(() => makeCharacter(
  16238. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16239. {
  16240. front: {
  16241. height: math.unit(1.5, "meters"),
  16242. weight: math.unit(68, "kg"),
  16243. name: "Front",
  16244. image: {
  16245. source: "./media/characters/liam-einarr/front.svg",
  16246. extra: 2822 / 2666
  16247. }
  16248. },
  16249. back: {
  16250. height: math.unit(1.5, "meters"),
  16251. weight: math.unit(68, "kg"),
  16252. name: "Back",
  16253. image: {
  16254. source: "./media/characters/liam-einarr/back.svg",
  16255. extra: 2822 / 2666,
  16256. bottom: 0.015
  16257. }
  16258. },
  16259. },
  16260. [
  16261. {
  16262. name: "Normal",
  16263. height: math.unit(1.5, "meters"),
  16264. default: true
  16265. },
  16266. {
  16267. name: "Macro",
  16268. height: math.unit(150, "meters")
  16269. },
  16270. {
  16271. name: "Megamacro",
  16272. height: math.unit(35, "km")
  16273. },
  16274. ]
  16275. ))
  16276. characterMakers.push(() => makeCharacter(
  16277. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16278. {
  16279. front: {
  16280. height: math.unit(6, "feet"),
  16281. weight: math.unit(75, "kg"),
  16282. name: "Front",
  16283. image: {
  16284. source: "./media/characters/linda/front.svg",
  16285. extra: 930 / 874,
  16286. bottom: 0.004
  16287. }
  16288. },
  16289. },
  16290. [
  16291. {
  16292. name: "Normal",
  16293. height: math.unit(6, "feet"),
  16294. default: true
  16295. },
  16296. ]
  16297. ))
  16298. characterMakers.push(() => makeCharacter(
  16299. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16300. {
  16301. front: {
  16302. height: math.unit(6 + 8 / 12, "feet"),
  16303. weight: math.unit(220, "lb"),
  16304. name: "Front",
  16305. image: {
  16306. source: "./media/characters/caylex/front.svg",
  16307. extra: 821 / 772,
  16308. bottom: 0.07
  16309. }
  16310. },
  16311. back: {
  16312. height: math.unit(6 + 8 / 12, "feet"),
  16313. weight: math.unit(220, "lb"),
  16314. name: "Back",
  16315. image: {
  16316. source: "./media/characters/caylex/back.svg",
  16317. extra: 821 / 772,
  16318. bottom: 0.022
  16319. }
  16320. },
  16321. hand: {
  16322. height: math.unit(1.25, "feet"),
  16323. name: "Hand",
  16324. image: {
  16325. source: "./media/characters/caylex/hand.svg"
  16326. }
  16327. },
  16328. foot: {
  16329. height: math.unit(1.6, "feet"),
  16330. name: "Foot",
  16331. image: {
  16332. source: "./media/characters/caylex/foot.svg"
  16333. }
  16334. },
  16335. armored: {
  16336. height: math.unit(6 + 8 / 12, "feet"),
  16337. weight: math.unit(250, "lb"),
  16338. name: "Armored",
  16339. image: {
  16340. source: "./media/characters/caylex/armored.svg",
  16341. extra: 1420 / 1310,
  16342. bottom: 0.045
  16343. }
  16344. },
  16345. },
  16346. [
  16347. {
  16348. name: "Normal",
  16349. height: math.unit(6 + 8 / 12, "feet"),
  16350. default: true
  16351. },
  16352. {
  16353. name: "Normal+",
  16354. height: math.unit(12, "feet")
  16355. },
  16356. ]
  16357. ))
  16358. characterMakers.push(() => makeCharacter(
  16359. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16360. {
  16361. front: {
  16362. height: math.unit(7 + 6 / 12, "feet"),
  16363. weight: math.unit(288, "lb"),
  16364. name: "Front",
  16365. image: {
  16366. source: "./media/characters/alana/front.svg",
  16367. extra: 679 / 653,
  16368. bottom: 22.5 / 701
  16369. }
  16370. },
  16371. },
  16372. [
  16373. {
  16374. name: "Normal",
  16375. height: math.unit(7 + 6 / 12, "feet")
  16376. },
  16377. {
  16378. name: "Large",
  16379. height: math.unit(50, "feet")
  16380. },
  16381. {
  16382. name: "Macro",
  16383. height: math.unit(100, "feet"),
  16384. default: true
  16385. },
  16386. {
  16387. name: "Macro+",
  16388. height: math.unit(200, "feet")
  16389. },
  16390. ]
  16391. ))
  16392. characterMakers.push(() => makeCharacter(
  16393. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16394. {
  16395. front: {
  16396. height: math.unit(6 + 1 / 12, "feet"),
  16397. weight: math.unit(210, "lb"),
  16398. name: "Front",
  16399. image: {
  16400. source: "./media/characters/hasani/front.svg",
  16401. extra: 244 / 232,
  16402. bottom: 0.01
  16403. }
  16404. },
  16405. back: {
  16406. height: math.unit(6 + 1 / 12, "feet"),
  16407. weight: math.unit(210, "lb"),
  16408. name: "Back",
  16409. image: {
  16410. source: "./media/characters/hasani/back.svg",
  16411. extra: 244 / 232,
  16412. bottom: 0.01
  16413. }
  16414. },
  16415. },
  16416. [
  16417. {
  16418. name: "Normal",
  16419. height: math.unit(6 + 1 / 12, "feet")
  16420. },
  16421. {
  16422. name: "Macro",
  16423. height: math.unit(175, "feet"),
  16424. default: true
  16425. },
  16426. ]
  16427. ))
  16428. characterMakers.push(() => makeCharacter(
  16429. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16430. {
  16431. front: {
  16432. height: math.unit(1.82, "meters"),
  16433. weight: math.unit(140, "lb"),
  16434. name: "Front",
  16435. image: {
  16436. source: "./media/characters/nita/front.svg",
  16437. extra: 2473 / 2363,
  16438. bottom: 0.01
  16439. }
  16440. },
  16441. },
  16442. [
  16443. {
  16444. name: "Normal",
  16445. height: math.unit(1.82, "m")
  16446. },
  16447. {
  16448. name: "Macro",
  16449. height: math.unit(300, "m")
  16450. },
  16451. {
  16452. name: "Mistake Canon",
  16453. height: math.unit(0.5, "miles"),
  16454. default: true
  16455. },
  16456. {
  16457. name: "Big Mistake",
  16458. height: math.unit(13, "miles")
  16459. },
  16460. {
  16461. name: "Playing God",
  16462. height: math.unit(2450, "miles")
  16463. },
  16464. ]
  16465. ))
  16466. characterMakers.push(() => makeCharacter(
  16467. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16468. {
  16469. front: {
  16470. height: math.unit(4, "feet"),
  16471. weight: math.unit(120, "lb"),
  16472. name: "Front",
  16473. image: {
  16474. source: "./media/characters/shiriko/front.svg",
  16475. extra: 195 / 188
  16476. }
  16477. },
  16478. },
  16479. [
  16480. {
  16481. name: "Normal",
  16482. height: math.unit(4, "feet"),
  16483. default: true
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16489. {
  16490. front: {
  16491. height: math.unit(6, "feet"),
  16492. name: "front",
  16493. image: {
  16494. source: "./media/characters/deja/front.svg",
  16495. extra: 926 / 840,
  16496. bottom: 0.07
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Planck Length",
  16503. height: math.unit(1.6e-35, "meters")
  16504. },
  16505. {
  16506. name: "Normal",
  16507. height: math.unit(30.48, "meters"),
  16508. default: true
  16509. },
  16510. {
  16511. name: "Universal",
  16512. height: math.unit(8.8e26, "meters")
  16513. },
  16514. ]
  16515. ))
  16516. characterMakers.push(() => makeCharacter(
  16517. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16518. {
  16519. side: {
  16520. height: math.unit(8, "feet"),
  16521. weight: math.unit(6300, "lb"),
  16522. name: "Side",
  16523. image: {
  16524. source: "./media/characters/anima/side.svg",
  16525. bottom: 0.035
  16526. }
  16527. },
  16528. },
  16529. [
  16530. {
  16531. name: "Normal",
  16532. height: math.unit(8, "feet"),
  16533. default: true
  16534. },
  16535. ]
  16536. ))
  16537. characterMakers.push(() => makeCharacter(
  16538. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16539. {
  16540. front: {
  16541. height: math.unit(8, "feet"),
  16542. weight: math.unit(350, "lb"),
  16543. name: "Front",
  16544. image: {
  16545. source: "./media/characters/bianca/front.svg",
  16546. extra: 234 / 225,
  16547. bottom: 0.03
  16548. }
  16549. },
  16550. },
  16551. [
  16552. {
  16553. name: "Normal",
  16554. height: math.unit(8, "feet"),
  16555. default: true
  16556. },
  16557. ]
  16558. ))
  16559. characterMakers.push(() => makeCharacter(
  16560. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16561. {
  16562. front: {
  16563. height: math.unit(6, "feet"),
  16564. weight: math.unit(150, "lb"),
  16565. name: "Front",
  16566. image: {
  16567. source: "./media/characters/adinia/front.svg",
  16568. extra: 1845 / 1672,
  16569. bottom: 0.02
  16570. }
  16571. },
  16572. back: {
  16573. height: math.unit(6, "feet"),
  16574. weight: math.unit(150, "lb"),
  16575. name: "Back",
  16576. image: {
  16577. source: "./media/characters/adinia/back.svg",
  16578. extra: 1845 / 1672,
  16579. bottom: 0.002
  16580. }
  16581. },
  16582. },
  16583. [
  16584. {
  16585. name: "Normal",
  16586. height: math.unit(11 + 5 / 12, "feet"),
  16587. default: true
  16588. },
  16589. ]
  16590. ))
  16591. characterMakers.push(() => makeCharacter(
  16592. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16593. {
  16594. front: {
  16595. height: math.unit(3, "meters"),
  16596. weight: math.unit(200, "kg"),
  16597. name: "Front",
  16598. image: {
  16599. source: "./media/characters/lykasa/front.svg",
  16600. extra: 1076 / 976,
  16601. bottom: 0.06
  16602. }
  16603. },
  16604. },
  16605. [
  16606. {
  16607. name: "Normal",
  16608. height: math.unit(3, "meters")
  16609. },
  16610. {
  16611. name: "Kaiju",
  16612. height: math.unit(120, "meters"),
  16613. default: true
  16614. },
  16615. {
  16616. name: "Mega Kaiju",
  16617. height: math.unit(240, "km")
  16618. },
  16619. {
  16620. name: "Giga Kaiju",
  16621. height: math.unit(400, "megameters")
  16622. },
  16623. {
  16624. name: "Tera Kaiju",
  16625. height: math.unit(800, "gigameters")
  16626. },
  16627. {
  16628. name: "Kaiju Dragon Goddess",
  16629. height: math.unit(26, "zettaparsecs")
  16630. },
  16631. ]
  16632. ))
  16633. characterMakers.push(() => makeCharacter(
  16634. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16635. {
  16636. side: {
  16637. height: math.unit(283 / 124 * 6, "feet"),
  16638. weight: math.unit(35000, "lb"),
  16639. name: "Side",
  16640. image: {
  16641. source: "./media/characters/malfaren/side.svg",
  16642. extra: 2500 / 1010,
  16643. bottom: 0.01
  16644. }
  16645. },
  16646. front: {
  16647. height: math.unit(22.36, "feet"),
  16648. weight: math.unit(35000, "lb"),
  16649. name: "Front",
  16650. image: {
  16651. source: "./media/characters/malfaren/front.svg",
  16652. extra: 1631 / 1476,
  16653. bottom: 0.01
  16654. }
  16655. },
  16656. maw: {
  16657. height: math.unit(6.9, "feet"),
  16658. name: "Maw",
  16659. image: {
  16660. source: "./media/characters/malfaren/maw.svg"
  16661. }
  16662. },
  16663. },
  16664. [
  16665. {
  16666. name: "Big",
  16667. height: math.unit(283 / 162 * 6, "feet"),
  16668. },
  16669. {
  16670. name: "Bigger",
  16671. height: math.unit(283 / 124 * 6, "feet")
  16672. },
  16673. {
  16674. name: "Massive",
  16675. height: math.unit(283 / 92 * 6, "feet"),
  16676. default: true
  16677. },
  16678. {
  16679. name: "👀💦",
  16680. height: math.unit(283 / 73 * 6, "feet"),
  16681. },
  16682. ]
  16683. ))
  16684. characterMakers.push(() => makeCharacter(
  16685. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16686. {
  16687. front: {
  16688. height: math.unit(1.7, "m"),
  16689. weight: math.unit(70, "kg"),
  16690. name: "Front",
  16691. image: {
  16692. source: "./media/characters/kernel/front.svg",
  16693. extra: 222 / 210,
  16694. bottom: 0.007
  16695. }
  16696. },
  16697. },
  16698. [
  16699. {
  16700. name: "Nano",
  16701. height: math.unit(17, "micrometers")
  16702. },
  16703. {
  16704. name: "Micro",
  16705. height: math.unit(1.7, "mm")
  16706. },
  16707. {
  16708. name: "Small",
  16709. height: math.unit(1.7, "cm")
  16710. },
  16711. {
  16712. name: "Normal",
  16713. height: math.unit(1.7, "m"),
  16714. default: true
  16715. },
  16716. ]
  16717. ))
  16718. characterMakers.push(() => makeCharacter(
  16719. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16720. {
  16721. front: {
  16722. height: math.unit(1.75, "meters"),
  16723. weight: math.unit(65, "kg"),
  16724. name: "Front",
  16725. image: {
  16726. source: "./media/characters/jayne-folest/front.svg",
  16727. extra: 2115 / 2007,
  16728. bottom: 0.02
  16729. }
  16730. },
  16731. back: {
  16732. height: math.unit(1.75, "meters"),
  16733. weight: math.unit(65, "kg"),
  16734. name: "Back",
  16735. image: {
  16736. source: "./media/characters/jayne-folest/back.svg",
  16737. extra: 2115 / 2007,
  16738. bottom: 0.005
  16739. }
  16740. },
  16741. frontClothed: {
  16742. height: math.unit(1.75, "meters"),
  16743. weight: math.unit(65, "kg"),
  16744. name: "Front (Clothed)",
  16745. image: {
  16746. source: "./media/characters/jayne-folest/front-clothed.svg",
  16747. extra: 2115 / 2007,
  16748. bottom: 0.035
  16749. }
  16750. },
  16751. hand: {
  16752. height: math.unit(1 / 1.260, "feet"),
  16753. name: "Hand",
  16754. image: {
  16755. source: "./media/characters/jayne-folest/hand.svg"
  16756. }
  16757. },
  16758. foot: {
  16759. height: math.unit(1 / 0.918, "feet"),
  16760. name: "Foot",
  16761. image: {
  16762. source: "./media/characters/jayne-folest/foot.svg"
  16763. }
  16764. },
  16765. },
  16766. [
  16767. {
  16768. name: "Micro",
  16769. height: math.unit(4, "cm")
  16770. },
  16771. {
  16772. name: "Normal",
  16773. height: math.unit(1.75, "meters")
  16774. },
  16775. {
  16776. name: "Macro",
  16777. height: math.unit(47.5, "meters"),
  16778. default: true
  16779. },
  16780. ]
  16781. ))
  16782. characterMakers.push(() => makeCharacter(
  16783. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16784. {
  16785. front: {
  16786. height: math.unit(180, "cm"),
  16787. weight: math.unit(70, "kg"),
  16788. name: "Front",
  16789. image: {
  16790. source: "./media/characters/algier/front.svg",
  16791. extra: 596 / 572,
  16792. bottom: 0.04
  16793. }
  16794. },
  16795. back: {
  16796. height: math.unit(180, "cm"),
  16797. weight: math.unit(70, "kg"),
  16798. name: "Back",
  16799. image: {
  16800. source: "./media/characters/algier/back.svg",
  16801. extra: 596 / 572,
  16802. bottom: 0.025
  16803. }
  16804. },
  16805. frontdressed: {
  16806. height: math.unit(180, "cm"),
  16807. weight: math.unit(150, "kg"),
  16808. name: "Front-dressed",
  16809. image: {
  16810. source: "./media/characters/algier/front-dressed.svg",
  16811. extra: 596 / 572,
  16812. bottom: 0.038
  16813. }
  16814. },
  16815. },
  16816. [
  16817. {
  16818. name: "Micro",
  16819. height: math.unit(5, "cm")
  16820. },
  16821. {
  16822. name: "Normal",
  16823. height: math.unit(180, "cm"),
  16824. default: true
  16825. },
  16826. {
  16827. name: "Macro",
  16828. height: math.unit(64, "m")
  16829. },
  16830. ]
  16831. ))
  16832. characterMakers.push(() => makeCharacter(
  16833. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16834. {
  16835. upright: {
  16836. height: math.unit(7, "feet"),
  16837. weight: math.unit(300, "lb"),
  16838. name: "Upright",
  16839. image: {
  16840. source: "./media/characters/pretzel/upright.svg",
  16841. extra: 534 / 522,
  16842. bottom: 0.065
  16843. }
  16844. },
  16845. sprawling: {
  16846. height: math.unit(3.75, "feet"),
  16847. weight: math.unit(300, "lb"),
  16848. name: "Sprawling",
  16849. image: {
  16850. source: "./media/characters/pretzel/sprawling.svg",
  16851. extra: 314 / 281,
  16852. bottom: 0.1
  16853. }
  16854. },
  16855. tongue: {
  16856. height: math.unit(2, "feet"),
  16857. name: "Tongue",
  16858. image: {
  16859. source: "./media/characters/pretzel/tongue.svg"
  16860. }
  16861. },
  16862. },
  16863. [
  16864. {
  16865. name: "Normal",
  16866. height: math.unit(7, "feet"),
  16867. default: true
  16868. },
  16869. {
  16870. name: "Oversized",
  16871. height: math.unit(15, "feet")
  16872. },
  16873. {
  16874. name: "Huge",
  16875. height: math.unit(30, "feet")
  16876. },
  16877. {
  16878. name: "Macro",
  16879. height: math.unit(250, "feet")
  16880. },
  16881. ]
  16882. ))
  16883. characterMakers.push(() => makeCharacter(
  16884. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16885. {
  16886. sideFront: {
  16887. height: math.unit(5 + 2 / 12, "feet"),
  16888. weight: math.unit(120, "lb"),
  16889. name: "Front Side",
  16890. image: {
  16891. source: "./media/characters/roxi/side-front.svg",
  16892. extra: 2924 / 2717,
  16893. bottom: 0.08
  16894. }
  16895. },
  16896. sideBack: {
  16897. height: math.unit(5 + 2 / 12, "feet"),
  16898. weight: math.unit(120, "lb"),
  16899. name: "Back Side",
  16900. image: {
  16901. source: "./media/characters/roxi/side-back.svg",
  16902. extra: 2904 / 2693,
  16903. bottom: 0.06
  16904. }
  16905. },
  16906. front: {
  16907. height: math.unit(5 + 2 / 12, "feet"),
  16908. weight: math.unit(120, "lb"),
  16909. name: "Front",
  16910. image: {
  16911. source: "./media/characters/roxi/front.svg",
  16912. extra: 2028 / 1907,
  16913. bottom: 0.01
  16914. }
  16915. },
  16916. frontAlt: {
  16917. height: math.unit(5 + 2 / 12, "feet"),
  16918. weight: math.unit(120, "lb"),
  16919. name: "Front (Alt)",
  16920. image: {
  16921. source: "./media/characters/roxi/front-alt.svg",
  16922. extra: 1828 / 1798,
  16923. bottom: 0.01
  16924. }
  16925. },
  16926. sitting: {
  16927. height: math.unit(2.8, "feet"),
  16928. weight: math.unit(120, "lb"),
  16929. name: "Sitting",
  16930. image: {
  16931. source: "./media/characters/roxi/sitting.svg",
  16932. extra: 2660 / 2462,
  16933. bottom: 0.1
  16934. }
  16935. },
  16936. },
  16937. [
  16938. {
  16939. name: "Normal",
  16940. height: math.unit(5 + 2 / 12, "feet"),
  16941. default: true
  16942. },
  16943. ]
  16944. ))
  16945. characterMakers.push(() => makeCharacter(
  16946. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16947. {
  16948. side: {
  16949. height: math.unit(55, "feet"),
  16950. weight: math.unit(153, "tons"),
  16951. name: "Side",
  16952. image: {
  16953. source: "./media/characters/shadow/side.svg",
  16954. extra: 701 / 628,
  16955. bottom: 0.02
  16956. }
  16957. },
  16958. flying: {
  16959. height: math.unit(145, "feet"),
  16960. weight: math.unit(153, "tons"),
  16961. name: "Flying",
  16962. image: {
  16963. source: "./media/characters/shadow/flying.svg"
  16964. }
  16965. },
  16966. },
  16967. [
  16968. {
  16969. name: "Normal",
  16970. height: math.unit(55, "feet"),
  16971. default: true
  16972. },
  16973. ]
  16974. ))
  16975. characterMakers.push(() => makeCharacter(
  16976. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16977. {
  16978. front: {
  16979. height: math.unit(6, "feet"),
  16980. weight: math.unit(200, "lb"),
  16981. name: "Front",
  16982. image: {
  16983. source: "./media/characters/marcie/front.svg",
  16984. extra: 960 / 876,
  16985. bottom: 58 / 1017.87
  16986. }
  16987. },
  16988. },
  16989. [
  16990. {
  16991. name: "Macro",
  16992. height: math.unit(1, "mile"),
  16993. default: true
  16994. },
  16995. ]
  16996. ))
  16997. characterMakers.push(() => makeCharacter(
  16998. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16999. {
  17000. front: {
  17001. height: math.unit(7, "feet"),
  17002. weight: math.unit(200, "lb"),
  17003. name: "Front",
  17004. image: {
  17005. source: "./media/characters/kachina/front.svg",
  17006. extra: 1290.68 / 1119,
  17007. bottom: 36.5 / 1327.18
  17008. }
  17009. },
  17010. },
  17011. [
  17012. {
  17013. name: "Normal",
  17014. height: math.unit(7, "feet"),
  17015. default: true
  17016. },
  17017. ]
  17018. ))
  17019. characterMakers.push(() => makeCharacter(
  17020. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17021. {
  17022. looking: {
  17023. height: math.unit(2, "meters"),
  17024. weight: math.unit(300, "kg"),
  17025. name: "Looking",
  17026. image: {
  17027. source: "./media/characters/kash/looking.svg",
  17028. extra: 474 / 344,
  17029. bottom: 0.03
  17030. }
  17031. },
  17032. side: {
  17033. height: math.unit(2, "meters"),
  17034. weight: math.unit(300, "kg"),
  17035. name: "Side",
  17036. image: {
  17037. source: "./media/characters/kash/side.svg",
  17038. extra: 302 / 251,
  17039. bottom: 0.03
  17040. }
  17041. },
  17042. front: {
  17043. height: math.unit(2, "meters"),
  17044. weight: math.unit(300, "kg"),
  17045. name: "Front",
  17046. image: {
  17047. source: "./media/characters/kash/front.svg",
  17048. extra: 495 / 360,
  17049. bottom: 0.015
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Normal",
  17056. height: math.unit(2, "meters"),
  17057. default: true
  17058. },
  17059. {
  17060. name: "Big",
  17061. height: math.unit(3, "meters")
  17062. },
  17063. {
  17064. name: "Large",
  17065. height: math.unit(5, "meters")
  17066. },
  17067. ]
  17068. ))
  17069. characterMakers.push(() => makeCharacter(
  17070. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17071. {
  17072. feeding: {
  17073. height: math.unit(6.7, "feet"),
  17074. weight: math.unit(350, "lb"),
  17075. name: "Feeding",
  17076. image: {
  17077. source: "./media/characters/lalim/feeding.svg",
  17078. }
  17079. },
  17080. },
  17081. [
  17082. {
  17083. name: "Normal",
  17084. height: math.unit(6.7, "feet"),
  17085. default: true
  17086. },
  17087. ]
  17088. ))
  17089. characterMakers.push(() => makeCharacter(
  17090. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17091. {
  17092. front: {
  17093. height: math.unit(9.5, "feet"),
  17094. weight: math.unit(600, "lb"),
  17095. name: "Front",
  17096. image: {
  17097. source: "./media/characters/de'vout/front.svg",
  17098. extra: 1443 / 1328,
  17099. bottom: 0.025
  17100. }
  17101. },
  17102. back: {
  17103. height: math.unit(9.5, "feet"),
  17104. weight: math.unit(600, "lb"),
  17105. name: "Back",
  17106. image: {
  17107. source: "./media/characters/de'vout/back.svg",
  17108. extra: 1443 / 1328
  17109. }
  17110. },
  17111. frontDressed: {
  17112. height: math.unit(9.5, "feet"),
  17113. weight: math.unit(600, "lb"),
  17114. name: "Front (Dressed",
  17115. image: {
  17116. source: "./media/characters/de'vout/front-dressed.svg",
  17117. extra: 1443 / 1328,
  17118. bottom: 0.025
  17119. }
  17120. },
  17121. backDressed: {
  17122. height: math.unit(9.5, "feet"),
  17123. weight: math.unit(600, "lb"),
  17124. name: "Back (Dressed",
  17125. image: {
  17126. source: "./media/characters/de'vout/back-dressed.svg",
  17127. extra: 1443 / 1328
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Normal",
  17134. height: math.unit(9.5, "feet"),
  17135. default: true
  17136. },
  17137. ]
  17138. ))
  17139. characterMakers.push(() => makeCharacter(
  17140. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17141. {
  17142. front: {
  17143. height: math.unit(8, "feet"),
  17144. weight: math.unit(225, "lb"),
  17145. name: "Front",
  17146. image: {
  17147. source: "./media/characters/talana/front.svg",
  17148. extra: 1410 / 1300,
  17149. bottom: 0.015
  17150. }
  17151. },
  17152. frontDressed: {
  17153. height: math.unit(8, "feet"),
  17154. weight: math.unit(225, "lb"),
  17155. name: "Front (Dressed",
  17156. image: {
  17157. source: "./media/characters/talana/front-dressed.svg",
  17158. extra: 1410 / 1300,
  17159. bottom: 0.015
  17160. }
  17161. },
  17162. },
  17163. [
  17164. {
  17165. name: "Normal",
  17166. height: math.unit(8, "feet"),
  17167. default: true
  17168. },
  17169. ]
  17170. ))
  17171. characterMakers.push(() => makeCharacter(
  17172. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17173. {
  17174. side: {
  17175. height: math.unit(7.2, "feet"),
  17176. weight: math.unit(150, "lb"),
  17177. name: "Side",
  17178. image: {
  17179. source: "./media/characters/xeauvok/side.svg",
  17180. extra: 1975 / 1523,
  17181. bottom: 0.07
  17182. }
  17183. },
  17184. },
  17185. [
  17186. {
  17187. name: "Normal",
  17188. height: math.unit(7.2, "feet"),
  17189. default: true
  17190. },
  17191. ]
  17192. ))
  17193. characterMakers.push(() => makeCharacter(
  17194. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17195. {
  17196. side: {
  17197. height: math.unit(10, "feet"),
  17198. weight: math.unit(900, "kg"),
  17199. name: "Side",
  17200. image: {
  17201. source: "./media/characters/zara/side.svg",
  17202. extra: 504 / 498
  17203. }
  17204. },
  17205. },
  17206. [
  17207. {
  17208. name: "Normal",
  17209. height: math.unit(10, "feet"),
  17210. default: true
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17216. {
  17217. side: {
  17218. height: math.unit(6, "feet"),
  17219. weight: math.unit(150, "lb"),
  17220. name: "Side",
  17221. image: {
  17222. source: "./media/characters/richard-dragon/side.svg",
  17223. extra: 845 / 340,
  17224. bottom: 0.017
  17225. }
  17226. },
  17227. maw: {
  17228. height: math.unit(2.97, "feet"),
  17229. name: "Maw",
  17230. image: {
  17231. source: "./media/characters/richard-dragon/maw.svg"
  17232. }
  17233. },
  17234. },
  17235. [
  17236. ]
  17237. ))
  17238. characterMakers.push(() => makeCharacter(
  17239. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17240. {
  17241. front: {
  17242. height: math.unit(4, "feet"),
  17243. weight: math.unit(100, "lb"),
  17244. name: "Front",
  17245. image: {
  17246. source: "./media/characters/richard-smeargle/front.svg",
  17247. extra: 2952 / 2820,
  17248. bottom: 0.028
  17249. }
  17250. },
  17251. },
  17252. [
  17253. {
  17254. name: "Normal",
  17255. height: math.unit(4, "feet"),
  17256. default: true
  17257. },
  17258. {
  17259. name: "Dynamax",
  17260. height: math.unit(20, "meters")
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17266. {
  17267. front: {
  17268. height: math.unit(6, "feet"),
  17269. weight: math.unit(110, "lb"),
  17270. name: "Front",
  17271. image: {
  17272. source: "./media/characters/klay/front.svg",
  17273. extra: 962 / 883,
  17274. bottom: 0.04
  17275. }
  17276. },
  17277. back: {
  17278. height: math.unit(6, "feet"),
  17279. weight: math.unit(110, "lb"),
  17280. name: "Back",
  17281. image: {
  17282. source: "./media/characters/klay/back.svg",
  17283. extra: 962 / 883
  17284. }
  17285. },
  17286. beans: {
  17287. height: math.unit(1.15, "feet"),
  17288. name: "Beans",
  17289. image: {
  17290. source: "./media/characters/klay/beans.svg"
  17291. }
  17292. },
  17293. },
  17294. [
  17295. {
  17296. name: "Micro",
  17297. height: math.unit(6, "inches")
  17298. },
  17299. {
  17300. name: "Mini",
  17301. height: math.unit(3, "feet")
  17302. },
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(6, "feet"),
  17306. default: true
  17307. },
  17308. {
  17309. name: "Big",
  17310. height: math.unit(25, "feet")
  17311. },
  17312. {
  17313. name: "Macro",
  17314. height: math.unit(100, "feet")
  17315. },
  17316. {
  17317. name: "Megamacro",
  17318. height: math.unit(400, "feet")
  17319. },
  17320. ]
  17321. ))
  17322. characterMakers.push(() => makeCharacter(
  17323. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17324. {
  17325. front: {
  17326. height: math.unit(6, "feet"),
  17327. weight: math.unit(160, "lb"),
  17328. name: "Front",
  17329. image: {
  17330. source: "./media/characters/marcus/front.svg",
  17331. extra: 734 / 676,
  17332. bottom: 0.03
  17333. }
  17334. },
  17335. },
  17336. [
  17337. {
  17338. name: "Little",
  17339. height: math.unit(6, "feet")
  17340. },
  17341. {
  17342. name: "Normal",
  17343. height: math.unit(110, "feet"),
  17344. default: true
  17345. },
  17346. {
  17347. name: "Macro",
  17348. height: math.unit(250, "feet")
  17349. },
  17350. {
  17351. name: "Megamacro",
  17352. height: math.unit(1000, "feet")
  17353. },
  17354. ]
  17355. ))
  17356. characterMakers.push(() => makeCharacter(
  17357. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17358. {
  17359. front: {
  17360. height: math.unit(7, "feet"),
  17361. weight: math.unit(275, "lb"),
  17362. name: "Front",
  17363. image: {
  17364. source: "./media/characters/claude-delroute/front.svg",
  17365. extra: 230 / 214,
  17366. bottom: 0.007
  17367. }
  17368. },
  17369. side: {
  17370. height: math.unit(7, "feet"),
  17371. weight: math.unit(275, "lb"),
  17372. name: "Side",
  17373. image: {
  17374. source: "./media/characters/claude-delroute/side.svg",
  17375. extra: 222 / 214,
  17376. bottom: 0.01
  17377. }
  17378. },
  17379. back: {
  17380. height: math.unit(7, "feet"),
  17381. weight: math.unit(275, "lb"),
  17382. name: "Back",
  17383. image: {
  17384. source: "./media/characters/claude-delroute/back.svg",
  17385. extra: 230 / 214,
  17386. bottom: 0.015
  17387. }
  17388. },
  17389. maw: {
  17390. height: math.unit(0.6407, "meters"),
  17391. name: "Maw",
  17392. image: {
  17393. source: "./media/characters/claude-delroute/maw.svg"
  17394. }
  17395. },
  17396. },
  17397. [
  17398. {
  17399. name: "Normal",
  17400. height: math.unit(7, "feet"),
  17401. default: true
  17402. },
  17403. {
  17404. name: "Lorge",
  17405. height: math.unit(20, "feet")
  17406. },
  17407. ]
  17408. ))
  17409. characterMakers.push(() => makeCharacter(
  17410. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17411. {
  17412. front: {
  17413. height: math.unit(8 + 4 / 12, "feet"),
  17414. weight: math.unit(600, "lb"),
  17415. name: "Front",
  17416. image: {
  17417. source: "./media/characters/dragonien/front.svg",
  17418. extra: 100 / 94,
  17419. bottom: 3.3 / 103.3445
  17420. }
  17421. },
  17422. back: {
  17423. height: math.unit(8 + 4 / 12, "feet"),
  17424. weight: math.unit(600, "lb"),
  17425. name: "Back",
  17426. image: {
  17427. source: "./media/characters/dragonien/back.svg",
  17428. extra: 776 / 746,
  17429. bottom: 6.4 / 782.0616
  17430. }
  17431. },
  17432. foot: {
  17433. height: math.unit(1.54, "feet"),
  17434. name: "Foot",
  17435. image: {
  17436. source: "./media/characters/dragonien/foot.svg",
  17437. }
  17438. },
  17439. },
  17440. [
  17441. {
  17442. name: "Normal",
  17443. height: math.unit(8 + 4 / 12, "feet"),
  17444. default: true
  17445. },
  17446. {
  17447. name: "Macro",
  17448. height: math.unit(200, "feet")
  17449. },
  17450. {
  17451. name: "Megamacro",
  17452. height: math.unit(1, "mile")
  17453. },
  17454. {
  17455. name: "Gigamacro",
  17456. height: math.unit(1000, "miles")
  17457. },
  17458. ]
  17459. ))
  17460. characterMakers.push(() => makeCharacter(
  17461. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17462. {
  17463. front: {
  17464. height: math.unit(5 + 2 / 12, "feet"),
  17465. weight: math.unit(110, "lb"),
  17466. name: "Front",
  17467. image: {
  17468. source: "./media/characters/desta/front.svg",
  17469. extra: 767/726,
  17470. bottom: 11.7/779
  17471. }
  17472. },
  17473. back: {
  17474. height: math.unit(5 + 2 / 12, "feet"),
  17475. weight: math.unit(110, "lb"),
  17476. name: "Back",
  17477. image: {
  17478. source: "./media/characters/desta/back.svg",
  17479. extra: 777/728,
  17480. bottom: 6/784
  17481. }
  17482. },
  17483. frontAlt: {
  17484. height: math.unit(5 + 2 / 12, "feet"),
  17485. weight: math.unit(110, "lb"),
  17486. name: "Front",
  17487. image: {
  17488. source: "./media/characters/desta/front-alt.svg",
  17489. extra: 1482 / 1417
  17490. }
  17491. },
  17492. side: {
  17493. height: math.unit(5 + 2 / 12, "feet"),
  17494. weight: math.unit(110, "lb"),
  17495. name: "Side",
  17496. image: {
  17497. source: "./media/characters/desta/side.svg",
  17498. extra: 2579 / 2491,
  17499. bottom: 0.053
  17500. }
  17501. },
  17502. },
  17503. [
  17504. {
  17505. name: "Micro",
  17506. height: math.unit(6, "inches")
  17507. },
  17508. {
  17509. name: "Normal",
  17510. height: math.unit(5 + 2 / 12, "feet"),
  17511. default: true
  17512. },
  17513. {
  17514. name: "Macro",
  17515. height: math.unit(62, "feet")
  17516. },
  17517. {
  17518. name: "Megamacro",
  17519. height: math.unit(1800, "feet")
  17520. },
  17521. ]
  17522. ))
  17523. characterMakers.push(() => makeCharacter(
  17524. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17525. {
  17526. front: {
  17527. height: math.unit(10, "feet"),
  17528. weight: math.unit(700, "lb"),
  17529. name: "Front",
  17530. image: {
  17531. source: "./media/characters/storm-alystar/front.svg",
  17532. extra: 2112 / 1898,
  17533. bottom: 0.034
  17534. }
  17535. },
  17536. },
  17537. [
  17538. {
  17539. name: "Micro",
  17540. height: math.unit(3.5, "inches")
  17541. },
  17542. {
  17543. name: "Normal",
  17544. height: math.unit(10, "feet"),
  17545. default: true
  17546. },
  17547. {
  17548. name: "Macro",
  17549. height: math.unit(400, "feet")
  17550. },
  17551. {
  17552. name: "Deific",
  17553. height: math.unit(60, "miles")
  17554. },
  17555. ]
  17556. ))
  17557. characterMakers.push(() => makeCharacter(
  17558. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17559. {
  17560. front: {
  17561. height: math.unit(2.35, "meters"),
  17562. weight: math.unit(119, "kg"),
  17563. name: "Front",
  17564. image: {
  17565. source: "./media/characters/ilia/front.svg",
  17566. extra: 1285 / 1255,
  17567. bottom: 0.06
  17568. }
  17569. },
  17570. },
  17571. [
  17572. {
  17573. name: "Normal",
  17574. height: math.unit(2.35, "meters")
  17575. },
  17576. {
  17577. name: "Macro",
  17578. height: math.unit(140, "meters"),
  17579. default: true
  17580. },
  17581. {
  17582. name: "Megamacro",
  17583. height: math.unit(100, "miles")
  17584. },
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17589. {
  17590. front: {
  17591. height: math.unit(6 + 5 / 12, "feet"),
  17592. weight: math.unit(190, "lb"),
  17593. name: "Front",
  17594. image: {
  17595. source: "./media/characters/kingdead/front.svg",
  17596. extra: 1228 / 1177
  17597. }
  17598. },
  17599. },
  17600. [
  17601. {
  17602. name: "Micro",
  17603. height: math.unit(7, "inches")
  17604. },
  17605. {
  17606. name: "Normal",
  17607. height: math.unit(6 + 5 / 12, "feet")
  17608. },
  17609. {
  17610. name: "Macro",
  17611. height: math.unit(150, "feet"),
  17612. default: true
  17613. },
  17614. {
  17615. name: "Megamacro",
  17616. height: math.unit(200, "miles")
  17617. },
  17618. ]
  17619. ))
  17620. characterMakers.push(() => makeCharacter(
  17621. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17622. {
  17623. front: {
  17624. height: math.unit(8, "feet"),
  17625. weight: math.unit(600, "lb"),
  17626. name: "Front",
  17627. image: {
  17628. source: "./media/characters/kyrehx/front.svg",
  17629. extra: 1195 / 1095,
  17630. bottom: 0.034
  17631. }
  17632. },
  17633. },
  17634. [
  17635. {
  17636. name: "Micro",
  17637. height: math.unit(2, "inches")
  17638. },
  17639. {
  17640. name: "Normal",
  17641. height: math.unit(8, "feet"),
  17642. default: true
  17643. },
  17644. {
  17645. name: "Macro",
  17646. height: math.unit(255, "feet")
  17647. },
  17648. ]
  17649. ))
  17650. characterMakers.push(() => makeCharacter(
  17651. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17652. {
  17653. front: {
  17654. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17655. weight: math.unit(184, "lb"),
  17656. name: "Front",
  17657. image: {
  17658. source: "./media/characters/xang/front.svg",
  17659. extra: 845 / 755
  17660. }
  17661. },
  17662. },
  17663. [
  17664. {
  17665. name: "Normal",
  17666. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17667. default: true
  17668. },
  17669. {
  17670. name: "Macro",
  17671. height: math.unit(0.935 * 146, "feet")
  17672. },
  17673. {
  17674. name: "Megamacro",
  17675. height: math.unit(0.935 * 3, "miles")
  17676. },
  17677. ]
  17678. ))
  17679. characterMakers.push(() => makeCharacter(
  17680. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17681. {
  17682. frontDressed: {
  17683. height: math.unit(5 + 7 / 12, "feet"),
  17684. weight: math.unit(140, "lb"),
  17685. name: "Front (Dressed)",
  17686. image: {
  17687. source: "./media/characters/doc-weardno/front-dressed.svg",
  17688. extra: 263 / 234
  17689. }
  17690. },
  17691. backDressed: {
  17692. height: math.unit(5 + 7 / 12, "feet"),
  17693. weight: math.unit(140, "lb"),
  17694. name: "Back (Dressed)",
  17695. image: {
  17696. source: "./media/characters/doc-weardno/back-dressed.svg",
  17697. extra: 266 / 238
  17698. }
  17699. },
  17700. front: {
  17701. height: math.unit(5 + 7 / 12, "feet"),
  17702. weight: math.unit(140, "lb"),
  17703. name: "Front",
  17704. image: {
  17705. source: "./media/characters/doc-weardno/front.svg",
  17706. extra: 254 / 233
  17707. }
  17708. },
  17709. },
  17710. [
  17711. {
  17712. name: "Micro",
  17713. height: math.unit(3, "inches")
  17714. },
  17715. {
  17716. name: "Normal",
  17717. height: math.unit(5 + 7 / 12, "feet"),
  17718. default: true
  17719. },
  17720. {
  17721. name: "Macro",
  17722. height: math.unit(25, "feet")
  17723. },
  17724. {
  17725. name: "Megamacro",
  17726. height: math.unit(2, "miles")
  17727. },
  17728. ]
  17729. ))
  17730. characterMakers.push(() => makeCharacter(
  17731. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17732. {
  17733. front: {
  17734. height: math.unit(6 + 2 / 12, "feet"),
  17735. weight: math.unit(153, "lb"),
  17736. name: "Front",
  17737. image: {
  17738. source: "./media/characters/seth-whilst/front.svg",
  17739. bottom: 0.07
  17740. }
  17741. },
  17742. },
  17743. [
  17744. {
  17745. name: "Micro",
  17746. height: math.unit(5, "inches")
  17747. },
  17748. {
  17749. name: "Normal",
  17750. height: math.unit(6 + 2 / 12, "feet"),
  17751. default: true
  17752. },
  17753. ]
  17754. ))
  17755. characterMakers.push(() => makeCharacter(
  17756. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17757. {
  17758. front: {
  17759. height: math.unit(3, "inches"),
  17760. weight: math.unit(8, "grams"),
  17761. name: "Front",
  17762. image: {
  17763. source: "./media/characters/pocket-jabari/front.svg",
  17764. extra: 1024 / 974,
  17765. bottom: 0.039
  17766. }
  17767. },
  17768. },
  17769. [
  17770. {
  17771. name: "Minimicro",
  17772. height: math.unit(8, "mm")
  17773. },
  17774. {
  17775. name: "Micro",
  17776. height: math.unit(3, "inches"),
  17777. default: true
  17778. },
  17779. {
  17780. name: "Normal",
  17781. height: math.unit(3, "feet")
  17782. },
  17783. ]
  17784. ))
  17785. characterMakers.push(() => makeCharacter(
  17786. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17787. {
  17788. front: {
  17789. height: math.unit(15, "feet"),
  17790. weight: math.unit(3280, "lb"),
  17791. name: "Front",
  17792. image: {
  17793. source: "./media/characters/sapphy/front.svg",
  17794. extra: 671 / 577,
  17795. bottom: 0.085
  17796. }
  17797. },
  17798. back: {
  17799. height: math.unit(15, "feet"),
  17800. weight: math.unit(3280, "lb"),
  17801. name: "Back",
  17802. image: {
  17803. source: "./media/characters/sapphy/back.svg",
  17804. extra: 631 / 607,
  17805. bottom: 0.045
  17806. }
  17807. },
  17808. },
  17809. [
  17810. {
  17811. name: "Normal",
  17812. height: math.unit(15, "feet")
  17813. },
  17814. {
  17815. name: "Casual Macro",
  17816. height: math.unit(120, "feet")
  17817. },
  17818. {
  17819. name: "Macro",
  17820. height: math.unit(2150, "feet"),
  17821. default: true
  17822. },
  17823. {
  17824. name: "Megamacro",
  17825. height: math.unit(8, "miles")
  17826. },
  17827. {
  17828. name: "Galaxy Mom",
  17829. height: math.unit(6, "megalightyears")
  17830. },
  17831. ]
  17832. ))
  17833. characterMakers.push(() => makeCharacter(
  17834. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17835. {
  17836. front: {
  17837. height: math.unit(6, "feet"),
  17838. weight: math.unit(170, "lb"),
  17839. name: "Front",
  17840. image: {
  17841. source: "./media/characters/kiro/front.svg",
  17842. extra: 1064 / 1012,
  17843. bottom: 0.052
  17844. }
  17845. },
  17846. },
  17847. [
  17848. {
  17849. name: "Micro",
  17850. height: math.unit(6, "inches")
  17851. },
  17852. {
  17853. name: "Normal",
  17854. height: math.unit(6, "feet"),
  17855. default: true
  17856. },
  17857. {
  17858. name: "Macro",
  17859. height: math.unit(72, "feet")
  17860. },
  17861. ]
  17862. ))
  17863. characterMakers.push(() => makeCharacter(
  17864. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17865. {
  17866. front: {
  17867. height: math.unit(5 + 9 / 12, "feet"),
  17868. weight: math.unit(175, "lb"),
  17869. name: "Front",
  17870. image: {
  17871. source: "./media/characters/irishfox/front.svg",
  17872. extra: 1912 / 1680,
  17873. bottom: 0.02
  17874. }
  17875. },
  17876. },
  17877. [
  17878. {
  17879. name: "Nano",
  17880. height: math.unit(1, "mm")
  17881. },
  17882. {
  17883. name: "Micro",
  17884. height: math.unit(2, "inches")
  17885. },
  17886. {
  17887. name: "Normal",
  17888. height: math.unit(5 + 9 / 12, "feet"),
  17889. default: true
  17890. },
  17891. {
  17892. name: "Macro",
  17893. height: math.unit(45, "feet")
  17894. },
  17895. ]
  17896. ))
  17897. characterMakers.push(() => makeCharacter(
  17898. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17899. {
  17900. front: {
  17901. height: math.unit(6 + 1 / 12, "feet"),
  17902. weight: math.unit(150, "lb"),
  17903. name: "Front",
  17904. image: {
  17905. source: "./media/characters/aronai-sieyes/front.svg",
  17906. extra: 1556 / 1480,
  17907. bottom: 0.015
  17908. }
  17909. },
  17910. side: {
  17911. height: math.unit(6 + 1 / 12, "feet"),
  17912. weight: math.unit(150, "lb"),
  17913. name: "Side",
  17914. image: {
  17915. source: "./media/characters/aronai-sieyes/side.svg",
  17916. extra: 1433 / 1390,
  17917. bottom: 0.0393
  17918. }
  17919. },
  17920. back: {
  17921. height: math.unit(6 + 1 / 12, "feet"),
  17922. weight: math.unit(150, "lb"),
  17923. name: "Back",
  17924. image: {
  17925. source: "./media/characters/aronai-sieyes/back.svg",
  17926. extra: 1544 / 1494,
  17927. bottom: 0.02
  17928. }
  17929. },
  17930. frontClothed: {
  17931. height: math.unit(6 + 1 / 12, "feet"),
  17932. weight: math.unit(150, "lb"),
  17933. name: "Front (Clothed)",
  17934. image: {
  17935. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17936. extra: 1582 / 1527
  17937. }
  17938. },
  17939. feral: {
  17940. height: math.unit(18, "feet"),
  17941. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17942. name: "Feral",
  17943. image: {
  17944. source: "./media/characters/aronai-sieyes/feral.svg",
  17945. extra: 1530 / 1240,
  17946. bottom: 0.035
  17947. }
  17948. },
  17949. },
  17950. [
  17951. {
  17952. name: "Micro",
  17953. height: math.unit(2, "inches")
  17954. },
  17955. {
  17956. name: "Normal",
  17957. height: math.unit(6 + 1 / 12, "feet"),
  17958. default: true
  17959. }
  17960. ]
  17961. ))
  17962. characterMakers.push(() => makeCharacter(
  17963. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17964. {
  17965. front: {
  17966. height: math.unit(12, "feet"),
  17967. weight: math.unit(410, "kg"),
  17968. name: "Front",
  17969. image: {
  17970. source: "./media/characters/xuna/front.svg",
  17971. extra: 2184 / 1980
  17972. }
  17973. },
  17974. side: {
  17975. height: math.unit(12, "feet"),
  17976. weight: math.unit(410, "kg"),
  17977. name: "Side",
  17978. image: {
  17979. source: "./media/characters/xuna/side.svg",
  17980. extra: 2184 / 1980
  17981. }
  17982. },
  17983. back: {
  17984. height: math.unit(12, "feet"),
  17985. weight: math.unit(410, "kg"),
  17986. name: "Back",
  17987. image: {
  17988. source: "./media/characters/xuna/back.svg",
  17989. extra: 2184 / 1980
  17990. }
  17991. },
  17992. },
  17993. [
  17994. {
  17995. name: "Nano glow",
  17996. height: math.unit(10, "nm")
  17997. },
  17998. {
  17999. name: "Micro floof",
  18000. height: math.unit(0.3, "m")
  18001. },
  18002. {
  18003. name: "Huggable softy boi",
  18004. height: math.unit(3.6576, "m"),
  18005. default: true
  18006. },
  18007. {
  18008. name: "Admirable floof",
  18009. height: math.unit(80, "meters")
  18010. },
  18011. {
  18012. name: "Gentle macro",
  18013. height: math.unit(300, "meters")
  18014. },
  18015. {
  18016. name: "Very careful floof",
  18017. height: math.unit(3200, "meters")
  18018. },
  18019. {
  18020. name: "The mega floof",
  18021. height: math.unit(36000, "meters")
  18022. },
  18023. {
  18024. name: "Giga-fur-Wicker",
  18025. height: math.unit(4800000, "meters")
  18026. },
  18027. {
  18028. name: "Licky world",
  18029. height: math.unit(20000000, "meters")
  18030. },
  18031. {
  18032. name: "Floofy cyan sun",
  18033. height: math.unit(1500000000, "meters")
  18034. },
  18035. {
  18036. name: "Milky Wicker",
  18037. height: math.unit(1000000000000000000000, "meters")
  18038. },
  18039. {
  18040. name: "The observing Wicker",
  18041. height: math.unit(999999999999999999999999999, "meters")
  18042. },
  18043. ]
  18044. ))
  18045. characterMakers.push(() => makeCharacter(
  18046. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18047. {
  18048. front: {
  18049. height: math.unit(5 + 9 / 12, "feet"),
  18050. weight: math.unit(150, "lb"),
  18051. name: "Front",
  18052. image: {
  18053. source: "./media/characters/arokha-sieyes/front.svg",
  18054. extra: 1425 / 1284,
  18055. bottom: 0.05
  18056. }
  18057. },
  18058. },
  18059. [
  18060. {
  18061. name: "Normal",
  18062. height: math.unit(5 + 9 / 12, "feet")
  18063. },
  18064. {
  18065. name: "Macro",
  18066. height: math.unit(30, "meters"),
  18067. default: true
  18068. },
  18069. ]
  18070. ))
  18071. characterMakers.push(() => makeCharacter(
  18072. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18073. {
  18074. front: {
  18075. height: math.unit(6, "feet"),
  18076. weight: math.unit(180, "lb"),
  18077. name: "Front",
  18078. image: {
  18079. source: "./media/characters/arokh-sieyes/front.svg",
  18080. extra: 1830 / 1769,
  18081. bottom: 0.01
  18082. }
  18083. },
  18084. },
  18085. [
  18086. {
  18087. name: "Normal",
  18088. height: math.unit(6, "feet")
  18089. },
  18090. {
  18091. name: "Macro",
  18092. height: math.unit(30, "meters"),
  18093. default: true
  18094. },
  18095. ]
  18096. ))
  18097. characterMakers.push(() => makeCharacter(
  18098. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18099. {
  18100. side: {
  18101. height: math.unit(13 + 1 / 12, "feet"),
  18102. weight: math.unit(8.5, "tonnes"),
  18103. name: "Side",
  18104. image: {
  18105. source: "./media/characters/goldeneye/side.svg",
  18106. extra: 1182 / 778,
  18107. bottom: 0.067
  18108. }
  18109. },
  18110. paw: {
  18111. height: math.unit(3.4, "feet"),
  18112. name: "Paw",
  18113. image: {
  18114. source: "./media/characters/goldeneye/paw.svg"
  18115. }
  18116. },
  18117. },
  18118. [
  18119. {
  18120. name: "Normal",
  18121. height: math.unit(13 + 1 / 12, "feet"),
  18122. default: true
  18123. },
  18124. ]
  18125. ))
  18126. characterMakers.push(() => makeCharacter(
  18127. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18128. {
  18129. front: {
  18130. height: math.unit(6 + 1 / 12, "feet"),
  18131. weight: math.unit(210, "lb"),
  18132. name: "Front",
  18133. image: {
  18134. source: "./media/characters/leonardo-lycheborne/front.svg",
  18135. extra: 390 / 365,
  18136. bottom: 0.032
  18137. }
  18138. },
  18139. side: {
  18140. height: math.unit(6 + 1 / 12, "feet"),
  18141. weight: math.unit(210, "lb"),
  18142. name: "Side",
  18143. image: {
  18144. source: "./media/characters/leonardo-lycheborne/side.svg",
  18145. extra: 390 / 365,
  18146. bottom: 0.005
  18147. }
  18148. },
  18149. back: {
  18150. height: math.unit(6 + 1 / 12, "feet"),
  18151. weight: math.unit(210, "lb"),
  18152. name: "Back",
  18153. image: {
  18154. source: "./media/characters/leonardo-lycheborne/back.svg",
  18155. extra: 392 / 366,
  18156. bottom: 0.01
  18157. }
  18158. },
  18159. hand: {
  18160. height: math.unit(1.08, "feet"),
  18161. name: "Hand",
  18162. image: {
  18163. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18164. }
  18165. },
  18166. foot: {
  18167. height: math.unit(1.32, "feet"),
  18168. name: "Foot",
  18169. image: {
  18170. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18171. }
  18172. },
  18173. were: {
  18174. height: math.unit(20, "feet"),
  18175. weight: math.unit(7800, "lb"),
  18176. name: "Were",
  18177. image: {
  18178. source: "./media/characters/leonardo-lycheborne/were.svg",
  18179. extra: 308 / 294,
  18180. bottom: 0.048
  18181. }
  18182. },
  18183. feral: {
  18184. height: math.unit(7.5, "feet"),
  18185. weight: math.unit(600, "lb"),
  18186. name: "Feral",
  18187. image: {
  18188. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18189. extra: 210 / 186,
  18190. bottom: 0.108
  18191. }
  18192. },
  18193. taur: {
  18194. height: math.unit(11, "feet"),
  18195. weight: math.unit(3300, "lb"),
  18196. name: "Taur",
  18197. image: {
  18198. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18199. extra: 320 / 303,
  18200. bottom: 0.025
  18201. }
  18202. },
  18203. barghest: {
  18204. height: math.unit(11, "feet"),
  18205. weight: math.unit(1300, "lb"),
  18206. name: "Barghest",
  18207. image: {
  18208. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18209. extra: 323 / 302,
  18210. bottom: 0.027
  18211. }
  18212. },
  18213. dick: {
  18214. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18215. name: "Dick",
  18216. image: {
  18217. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18218. }
  18219. },
  18220. dickWere: {
  18221. height: math.unit((20) / 3.8, "feet"),
  18222. name: "Dick (Were)",
  18223. image: {
  18224. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18225. }
  18226. },
  18227. },
  18228. [
  18229. {
  18230. name: "Normal",
  18231. height: math.unit(6 + 1 / 12, "feet"),
  18232. default: true
  18233. },
  18234. ]
  18235. ))
  18236. characterMakers.push(() => makeCharacter(
  18237. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18238. {
  18239. front: {
  18240. height: math.unit(10, "feet"),
  18241. weight: math.unit(350, "lb"),
  18242. name: "Front",
  18243. image: {
  18244. source: "./media/characters/jet/front.svg",
  18245. extra: 2050 / 1980,
  18246. bottom: 0.013
  18247. }
  18248. },
  18249. back: {
  18250. height: math.unit(10, "feet"),
  18251. weight: math.unit(350, "lb"),
  18252. name: "Back",
  18253. image: {
  18254. source: "./media/characters/jet/back.svg",
  18255. extra: 2050 / 1980,
  18256. bottom: 0.013
  18257. }
  18258. },
  18259. },
  18260. [
  18261. {
  18262. name: "Micro",
  18263. height: math.unit(6, "inches")
  18264. },
  18265. {
  18266. name: "Normal",
  18267. height: math.unit(10, "feet"),
  18268. default: true
  18269. },
  18270. {
  18271. name: "Macro",
  18272. height: math.unit(100, "feet")
  18273. },
  18274. ]
  18275. ))
  18276. characterMakers.push(() => makeCharacter(
  18277. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18278. {
  18279. front: {
  18280. height: math.unit(15, "feet"),
  18281. weight: math.unit(2800, "lb"),
  18282. name: "Front",
  18283. image: {
  18284. source: "./media/characters/tanarath/front.svg",
  18285. extra: 2392 / 2220,
  18286. bottom: 0.03
  18287. }
  18288. },
  18289. back: {
  18290. height: math.unit(15, "feet"),
  18291. weight: math.unit(2800, "lb"),
  18292. name: "Back",
  18293. image: {
  18294. source: "./media/characters/tanarath/back.svg",
  18295. extra: 2392 / 2220,
  18296. bottom: 0.03
  18297. }
  18298. },
  18299. },
  18300. [
  18301. {
  18302. name: "Normal",
  18303. height: math.unit(15, "feet"),
  18304. default: true
  18305. },
  18306. ]
  18307. ))
  18308. characterMakers.push(() => makeCharacter(
  18309. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18310. {
  18311. front: {
  18312. height: math.unit(7 + 1 / 12, "feet"),
  18313. weight: math.unit(175, "lb"),
  18314. name: "Front",
  18315. image: {
  18316. source: "./media/characters/patty-cattybatty/front.svg",
  18317. extra: 908 / 874,
  18318. bottom: 0.025
  18319. }
  18320. },
  18321. },
  18322. [
  18323. {
  18324. name: "Micro",
  18325. height: math.unit(1, "inch")
  18326. },
  18327. {
  18328. name: "Normal",
  18329. height: math.unit(7 + 1 / 12, "feet")
  18330. },
  18331. {
  18332. name: "Mini Macro",
  18333. height: math.unit(155, "feet")
  18334. },
  18335. {
  18336. name: "Macro",
  18337. height: math.unit(1077, "feet")
  18338. },
  18339. {
  18340. name: "Mega Macro",
  18341. height: math.unit(47650, "feet"),
  18342. default: true
  18343. },
  18344. {
  18345. name: "Giga Macro",
  18346. height: math.unit(440, "miles")
  18347. },
  18348. {
  18349. name: "Tera Macro",
  18350. height: math.unit(8700, "miles")
  18351. },
  18352. {
  18353. name: "Planetary Macro",
  18354. height: math.unit(32700, "miles")
  18355. },
  18356. {
  18357. name: "Solar Macro",
  18358. height: math.unit(550000, "miles")
  18359. },
  18360. {
  18361. name: "Celestial Macro",
  18362. height: math.unit(2.5, "AU")
  18363. },
  18364. ]
  18365. ))
  18366. characterMakers.push(() => makeCharacter(
  18367. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18368. {
  18369. front: {
  18370. height: math.unit(4 + 5 / 12, "feet"),
  18371. weight: math.unit(90, "lb"),
  18372. name: "Front",
  18373. image: {
  18374. source: "./media/characters/cappu/front.svg",
  18375. extra: 1247 / 1152,
  18376. bottom: 0.012
  18377. }
  18378. },
  18379. },
  18380. [
  18381. {
  18382. name: "Normal",
  18383. height: math.unit(4 + 5 / 12, "feet"),
  18384. default: true
  18385. },
  18386. ]
  18387. ))
  18388. characterMakers.push(() => makeCharacter(
  18389. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18390. {
  18391. frontDressed: {
  18392. height: math.unit(70, "cm"),
  18393. weight: math.unit(6, "kg"),
  18394. name: "Front (Dressed)",
  18395. image: {
  18396. source: "./media/characters/sebi/front-dressed.svg",
  18397. extra: 713.5 / 686.5,
  18398. bottom: 0.003
  18399. }
  18400. },
  18401. front: {
  18402. height: math.unit(70, "cm"),
  18403. weight: math.unit(5, "kg"),
  18404. name: "Front",
  18405. image: {
  18406. source: "./media/characters/sebi/front.svg",
  18407. extra: 713.5 / 686.5,
  18408. bottom: 0.003
  18409. }
  18410. }
  18411. },
  18412. [
  18413. {
  18414. name: "Normal",
  18415. height: math.unit(70, "cm"),
  18416. default: true
  18417. },
  18418. {
  18419. name: "Macro",
  18420. height: math.unit(8, "meters")
  18421. },
  18422. ]
  18423. ))
  18424. characterMakers.push(() => makeCharacter(
  18425. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18426. {
  18427. front: {
  18428. height: math.unit(6, "feet"),
  18429. weight: math.unit(150, "lb"),
  18430. name: "Front",
  18431. image: {
  18432. source: "./media/characters/typhek/front.svg",
  18433. extra: 1948 / 1929,
  18434. bottom: 0.025
  18435. }
  18436. },
  18437. side: {
  18438. height: math.unit(6, "feet"),
  18439. weight: math.unit(150, "lb"),
  18440. name: "Side",
  18441. image: {
  18442. source: "./media/characters/typhek/side.svg",
  18443. extra: 2034 / 2010,
  18444. bottom: 0.003
  18445. }
  18446. },
  18447. back: {
  18448. height: math.unit(6, "feet"),
  18449. weight: math.unit(150, "lb"),
  18450. name: "Back",
  18451. image: {
  18452. source: "./media/characters/typhek/back.svg",
  18453. extra: 2005 / 1978,
  18454. bottom: 0.004
  18455. }
  18456. },
  18457. palm: {
  18458. height: math.unit(1.2, "feet"),
  18459. name: "Palm",
  18460. image: {
  18461. source: "./media/characters/typhek/palm.svg"
  18462. }
  18463. },
  18464. fist: {
  18465. height: math.unit(1.1, "feet"),
  18466. name: "Fist",
  18467. image: {
  18468. source: "./media/characters/typhek/fist.svg"
  18469. }
  18470. },
  18471. foot: {
  18472. height: math.unit(1.57, "feet"),
  18473. name: "Foot",
  18474. image: {
  18475. source: "./media/characters/typhek/foot.svg"
  18476. }
  18477. },
  18478. sole: {
  18479. height: math.unit(2.05, "feet"),
  18480. name: "Sole",
  18481. image: {
  18482. source: "./media/characters/typhek/sole.svg"
  18483. }
  18484. },
  18485. },
  18486. [
  18487. {
  18488. name: "Macro",
  18489. height: math.unit(40, "stories"),
  18490. default: true
  18491. },
  18492. {
  18493. name: "Megamacro",
  18494. height: math.unit(1, "mile")
  18495. },
  18496. {
  18497. name: "Gigamacro",
  18498. height: math.unit(4000, "solarradii")
  18499. },
  18500. {
  18501. name: "Universal",
  18502. height: math.unit(1.1, "universes")
  18503. }
  18504. ]
  18505. ))
  18506. characterMakers.push(() => makeCharacter(
  18507. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18508. {
  18509. side: {
  18510. height: math.unit(5 + 7 / 12, "feet"),
  18511. weight: math.unit(150, "lb"),
  18512. name: "Side",
  18513. image: {
  18514. source: "./media/characters/kassy/side.svg",
  18515. extra: 1280 / 1225,
  18516. bottom: 0.002
  18517. }
  18518. },
  18519. front: {
  18520. height: math.unit(5 + 7 / 12, "feet"),
  18521. weight: math.unit(150, "lb"),
  18522. name: "Front",
  18523. image: {
  18524. source: "./media/characters/kassy/front.svg",
  18525. extra: 1280 / 1225,
  18526. bottom: 0.025
  18527. }
  18528. },
  18529. back: {
  18530. height: math.unit(5 + 7 / 12, "feet"),
  18531. weight: math.unit(150, "lb"),
  18532. name: "Back",
  18533. image: {
  18534. source: "./media/characters/kassy/back.svg",
  18535. extra: 1280 / 1225,
  18536. bottom: 0.002
  18537. }
  18538. },
  18539. foot: {
  18540. height: math.unit(1.266, "feet"),
  18541. name: "Foot",
  18542. image: {
  18543. source: "./media/characters/kassy/foot.svg"
  18544. }
  18545. },
  18546. },
  18547. [
  18548. {
  18549. name: "Normal",
  18550. height: math.unit(5 + 7 / 12, "feet")
  18551. },
  18552. {
  18553. name: "Macro",
  18554. height: math.unit(137, "feet"),
  18555. default: true
  18556. },
  18557. {
  18558. name: "Megamacro",
  18559. height: math.unit(1, "mile")
  18560. },
  18561. ]
  18562. ))
  18563. characterMakers.push(() => makeCharacter(
  18564. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18565. {
  18566. front: {
  18567. height: math.unit(6 + 1 / 12, "feet"),
  18568. weight: math.unit(200, "lb"),
  18569. name: "Front",
  18570. image: {
  18571. source: "./media/characters/neil/front.svg",
  18572. extra: 1326 / 1250,
  18573. bottom: 0.023
  18574. }
  18575. },
  18576. },
  18577. [
  18578. {
  18579. name: "Normal",
  18580. height: math.unit(6 + 1 / 12, "feet"),
  18581. default: true
  18582. },
  18583. {
  18584. name: "Macro",
  18585. height: math.unit(200, "feet")
  18586. },
  18587. ]
  18588. ))
  18589. characterMakers.push(() => makeCharacter(
  18590. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18591. {
  18592. front: {
  18593. height: math.unit(5 + 9 / 12, "feet"),
  18594. weight: math.unit(190, "lb"),
  18595. name: "Front",
  18596. image: {
  18597. source: "./media/characters/atticus/front.svg",
  18598. extra: 2934 / 2785,
  18599. bottom: 0.025
  18600. }
  18601. },
  18602. },
  18603. [
  18604. {
  18605. name: "Normal",
  18606. height: math.unit(5 + 9 / 12, "feet"),
  18607. default: true
  18608. },
  18609. {
  18610. name: "Macro",
  18611. height: math.unit(180, "feet")
  18612. },
  18613. ]
  18614. ))
  18615. characterMakers.push(() => makeCharacter(
  18616. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18617. {
  18618. side: {
  18619. height: math.unit(9, "feet"),
  18620. weight: math.unit(650, "lb"),
  18621. name: "Side",
  18622. image: {
  18623. source: "./media/characters/milo/side.svg",
  18624. extra: 2644 / 2310,
  18625. bottom: 0.032
  18626. }
  18627. },
  18628. },
  18629. [
  18630. {
  18631. name: "Normal",
  18632. height: math.unit(9, "feet"),
  18633. default: true
  18634. },
  18635. {
  18636. name: "Macro",
  18637. height: math.unit(300, "feet")
  18638. },
  18639. ]
  18640. ))
  18641. characterMakers.push(() => makeCharacter(
  18642. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18643. {
  18644. side: {
  18645. height: math.unit(8, "meters"),
  18646. weight: math.unit(90000, "kg"),
  18647. name: "Side",
  18648. image: {
  18649. source: "./media/characters/ijzer/side.svg",
  18650. extra: 2756 / 1600,
  18651. bottom: 0.01
  18652. }
  18653. },
  18654. },
  18655. [
  18656. {
  18657. name: "Small",
  18658. height: math.unit(3, "meters")
  18659. },
  18660. {
  18661. name: "Normal",
  18662. height: math.unit(8, "meters"),
  18663. default: true
  18664. },
  18665. {
  18666. name: "Normal+",
  18667. height: math.unit(10, "meters")
  18668. },
  18669. {
  18670. name: "Bigger",
  18671. height: math.unit(24, "meters")
  18672. },
  18673. {
  18674. name: "Huge",
  18675. height: math.unit(80, "meters")
  18676. },
  18677. ]
  18678. ))
  18679. characterMakers.push(() => makeCharacter(
  18680. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18681. {
  18682. front: {
  18683. height: math.unit(6 + 2 / 12, "feet"),
  18684. weight: math.unit(153, "lb"),
  18685. name: "Front",
  18686. image: {
  18687. source: "./media/characters/luca-cervicum/front.svg",
  18688. extra: 370 / 327,
  18689. bottom: 0.015
  18690. }
  18691. },
  18692. back: {
  18693. height: math.unit(6 + 2 / 12, "feet"),
  18694. weight: math.unit(153, "lb"),
  18695. name: "Back",
  18696. image: {
  18697. source: "./media/characters/luca-cervicum/back.svg",
  18698. extra: 367 / 333,
  18699. bottom: 0.005
  18700. }
  18701. },
  18702. frontGear: {
  18703. height: math.unit(6 + 2 / 12, "feet"),
  18704. weight: math.unit(173, "lb"),
  18705. name: "Front (Gear)",
  18706. image: {
  18707. source: "./media/characters/luca-cervicum/front-gear.svg",
  18708. extra: 377 / 333,
  18709. bottom: 0.006
  18710. }
  18711. },
  18712. },
  18713. [
  18714. {
  18715. name: "Normal",
  18716. height: math.unit(6 + 2 / 12, "feet"),
  18717. default: true
  18718. },
  18719. ]
  18720. ))
  18721. characterMakers.push(() => makeCharacter(
  18722. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18723. {
  18724. front: {
  18725. height: math.unit(6 + 1 / 12, "feet"),
  18726. weight: math.unit(304, "lb"),
  18727. name: "Front",
  18728. image: {
  18729. source: "./media/characters/oliver/front.svg",
  18730. extra: 157 / 143,
  18731. bottom: 0.08
  18732. }
  18733. },
  18734. },
  18735. [
  18736. {
  18737. name: "Normal",
  18738. height: math.unit(6 + 1 / 12, "feet"),
  18739. default: true
  18740. },
  18741. ]
  18742. ))
  18743. characterMakers.push(() => makeCharacter(
  18744. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18745. {
  18746. front: {
  18747. height: math.unit(5 + 7 / 12, "feet"),
  18748. weight: math.unit(140, "lb"),
  18749. name: "Front",
  18750. image: {
  18751. source: "./media/characters/shane/front.svg",
  18752. extra: 304 / 289,
  18753. bottom: 0.005
  18754. }
  18755. },
  18756. },
  18757. [
  18758. {
  18759. name: "Normal",
  18760. height: math.unit(5 + 7 / 12, "feet"),
  18761. default: true
  18762. },
  18763. ]
  18764. ))
  18765. characterMakers.push(() => makeCharacter(
  18766. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18767. {
  18768. front: {
  18769. height: math.unit(5 + 9 / 12, "feet"),
  18770. weight: math.unit(178, "lb"),
  18771. name: "Front",
  18772. image: {
  18773. source: "./media/characters/shin/front.svg",
  18774. extra: 159 / 151,
  18775. bottom: 0.015
  18776. }
  18777. },
  18778. },
  18779. [
  18780. {
  18781. name: "Normal",
  18782. height: math.unit(5 + 9 / 12, "feet"),
  18783. default: true
  18784. },
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18789. {
  18790. front: {
  18791. height: math.unit(5 + 10 / 12, "feet"),
  18792. weight: math.unit(168, "lb"),
  18793. name: "Front",
  18794. image: {
  18795. source: "./media/characters/xerxes/front.svg",
  18796. extra: 282 / 260,
  18797. bottom: 0.045
  18798. }
  18799. },
  18800. },
  18801. [
  18802. {
  18803. name: "Normal",
  18804. height: math.unit(5 + 10 / 12, "feet"),
  18805. default: true
  18806. },
  18807. ]
  18808. ))
  18809. characterMakers.push(() => makeCharacter(
  18810. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18811. {
  18812. front: {
  18813. height: math.unit(6 + 7 / 12, "feet"),
  18814. weight: math.unit(208, "lb"),
  18815. name: "Front",
  18816. image: {
  18817. source: "./media/characters/chaska/front.svg",
  18818. extra: 332 / 319,
  18819. bottom: 0.015
  18820. }
  18821. },
  18822. },
  18823. [
  18824. {
  18825. name: "Normal",
  18826. height: math.unit(6 + 7 / 12, "feet"),
  18827. default: true
  18828. },
  18829. ]
  18830. ))
  18831. characterMakers.push(() => makeCharacter(
  18832. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18833. {
  18834. front: {
  18835. height: math.unit(5 + 8 / 12, "feet"),
  18836. weight: math.unit(208, "lb"),
  18837. name: "Front",
  18838. image: {
  18839. source: "./media/characters/enuk/front.svg",
  18840. extra: 437 / 406,
  18841. bottom: 0.02
  18842. }
  18843. },
  18844. },
  18845. [
  18846. {
  18847. name: "Normal",
  18848. height: math.unit(5 + 8 / 12, "feet"),
  18849. default: true
  18850. },
  18851. ]
  18852. ))
  18853. characterMakers.push(() => makeCharacter(
  18854. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18855. {
  18856. front: {
  18857. height: math.unit(5 + 10 / 12, "feet"),
  18858. weight: math.unit(252, "lb"),
  18859. name: "Front",
  18860. image: {
  18861. source: "./media/characters/bruun/front.svg",
  18862. extra: 197 / 187,
  18863. bottom: 0.012
  18864. }
  18865. },
  18866. },
  18867. [
  18868. {
  18869. name: "Normal",
  18870. height: math.unit(5 + 10 / 12, "feet"),
  18871. default: true
  18872. },
  18873. ]
  18874. ))
  18875. characterMakers.push(() => makeCharacter(
  18876. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18877. {
  18878. front: {
  18879. height: math.unit(6 + 10 / 12, "feet"),
  18880. weight: math.unit(255, "lb"),
  18881. name: "Front",
  18882. image: {
  18883. source: "./media/characters/alexeev/front.svg",
  18884. extra: 213 / 200,
  18885. bottom: 0.05
  18886. }
  18887. },
  18888. },
  18889. [
  18890. {
  18891. name: "Normal",
  18892. height: math.unit(6 + 10 / 12, "feet"),
  18893. default: true
  18894. },
  18895. ]
  18896. ))
  18897. characterMakers.push(() => makeCharacter(
  18898. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18899. {
  18900. front: {
  18901. height: math.unit(2 + 8 / 12, "feet"),
  18902. weight: math.unit(22, "lb"),
  18903. name: "Front",
  18904. image: {
  18905. source: "./media/characters/evelyn/front.svg",
  18906. extra: 208 / 180
  18907. }
  18908. },
  18909. },
  18910. [
  18911. {
  18912. name: "Normal",
  18913. height: math.unit(2 + 8 / 12, "feet"),
  18914. default: true
  18915. },
  18916. ]
  18917. ))
  18918. characterMakers.push(() => makeCharacter(
  18919. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18920. {
  18921. front: {
  18922. height: math.unit(5 + 9 / 12, "feet"),
  18923. weight: math.unit(139, "lb"),
  18924. name: "Front",
  18925. image: {
  18926. source: "./media/characters/inca/front.svg",
  18927. extra: 294 / 291,
  18928. bottom: 0.03
  18929. }
  18930. },
  18931. },
  18932. [
  18933. {
  18934. name: "Normal",
  18935. height: math.unit(5 + 9 / 12, "feet"),
  18936. default: true
  18937. },
  18938. ]
  18939. ))
  18940. characterMakers.push(() => makeCharacter(
  18941. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18942. {
  18943. front: {
  18944. height: math.unit(5 + 1 / 12, "feet"),
  18945. weight: math.unit(84, "lb"),
  18946. name: "Front",
  18947. image: {
  18948. source: "./media/characters/magdalene/front.svg",
  18949. extra: 293 / 273
  18950. }
  18951. },
  18952. },
  18953. [
  18954. {
  18955. name: "Normal",
  18956. height: math.unit(5 + 1 / 12, "feet"),
  18957. default: true
  18958. },
  18959. ]
  18960. ))
  18961. characterMakers.push(() => makeCharacter(
  18962. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18963. {
  18964. front: {
  18965. height: math.unit(6 + 3 / 12, "feet"),
  18966. weight: math.unit(185, "lb"),
  18967. name: "Front",
  18968. image: {
  18969. source: "./media/characters/mera/front.svg",
  18970. extra: 291 / 277,
  18971. bottom: 0.03
  18972. }
  18973. },
  18974. },
  18975. [
  18976. {
  18977. name: "Normal",
  18978. height: math.unit(6 + 3 / 12, "feet"),
  18979. default: true
  18980. },
  18981. ]
  18982. ))
  18983. characterMakers.push(() => makeCharacter(
  18984. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18985. {
  18986. front: {
  18987. height: math.unit(6 + 7 / 12, "feet"),
  18988. weight: math.unit(160, "lb"),
  18989. name: "Front",
  18990. image: {
  18991. source: "./media/characters/ceres/front.svg",
  18992. extra: 1023 / 950,
  18993. bottom: 0.027
  18994. }
  18995. },
  18996. back: {
  18997. height: math.unit(6 + 7 / 12, "feet"),
  18998. weight: math.unit(160, "lb"),
  18999. name: "Back",
  19000. image: {
  19001. source: "./media/characters/ceres/back.svg",
  19002. extra: 1023 / 950
  19003. }
  19004. },
  19005. },
  19006. [
  19007. {
  19008. name: "Normal",
  19009. height: math.unit(6 + 7 / 12, "feet"),
  19010. default: true
  19011. },
  19012. ]
  19013. ))
  19014. characterMakers.push(() => makeCharacter(
  19015. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19016. {
  19017. front: {
  19018. height: math.unit(5 + 10 / 12, "feet"),
  19019. weight: math.unit(150, "lb"),
  19020. name: "Front",
  19021. image: {
  19022. source: "./media/characters/kris/front.svg",
  19023. extra: 885 / 803,
  19024. bottom: 0.03
  19025. }
  19026. },
  19027. },
  19028. [
  19029. {
  19030. name: "Normal",
  19031. height: math.unit(5 + 10 / 12, "feet"),
  19032. default: true
  19033. },
  19034. ]
  19035. ))
  19036. characterMakers.push(() => makeCharacter(
  19037. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19038. {
  19039. front: {
  19040. height: math.unit(7, "feet"),
  19041. weight: math.unit(120, "kg"),
  19042. name: "Front",
  19043. image: {
  19044. source: "./media/characters/taluthus/front.svg",
  19045. extra: 903 / 833,
  19046. bottom: 0.015
  19047. }
  19048. },
  19049. },
  19050. [
  19051. {
  19052. name: "Normal",
  19053. height: math.unit(7, "feet"),
  19054. default: true
  19055. },
  19056. {
  19057. name: "Macro",
  19058. height: math.unit(300, "feet")
  19059. },
  19060. ]
  19061. ))
  19062. characterMakers.push(() => makeCharacter(
  19063. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19064. {
  19065. front: {
  19066. height: math.unit(5 + 9 / 12, "feet"),
  19067. weight: math.unit(145, "lb"),
  19068. name: "Front",
  19069. image: {
  19070. source: "./media/characters/dawn/front.svg",
  19071. extra: 2094 / 2016,
  19072. bottom: 0.025
  19073. }
  19074. },
  19075. back: {
  19076. height: math.unit(5 + 9 / 12, "feet"),
  19077. weight: math.unit(160, "lb"),
  19078. name: "Back",
  19079. image: {
  19080. source: "./media/characters/dawn/back.svg",
  19081. extra: 2112 / 2080,
  19082. bottom: 0.005
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Normal",
  19089. height: math.unit(6 + 7 / 12, "feet"),
  19090. default: true
  19091. },
  19092. ]
  19093. ))
  19094. characterMakers.push(() => makeCharacter(
  19095. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19096. {
  19097. anthro: {
  19098. height: math.unit(8 + 3 / 12, "feet"),
  19099. weight: math.unit(450, "lb"),
  19100. name: "Anthro",
  19101. image: {
  19102. source: "./media/characters/arador/anthro.svg",
  19103. extra: 1835 / 1718,
  19104. bottom: 0.025
  19105. }
  19106. },
  19107. feral: {
  19108. height: math.unit(4, "feet"),
  19109. weight: math.unit(200, "lb"),
  19110. name: "Feral",
  19111. image: {
  19112. source: "./media/characters/arador/feral.svg",
  19113. extra: 1683 / 1514,
  19114. bottom: 0.07
  19115. }
  19116. },
  19117. },
  19118. [
  19119. {
  19120. name: "Normal",
  19121. height: math.unit(8 + 3 / 12, "feet")
  19122. },
  19123. {
  19124. name: "Macro",
  19125. height: math.unit(82.5, "feet"),
  19126. default: true
  19127. },
  19128. ]
  19129. ))
  19130. characterMakers.push(() => makeCharacter(
  19131. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19132. {
  19133. front: {
  19134. height: math.unit(5 + 10 / 12, "feet"),
  19135. weight: math.unit(125, "lb"),
  19136. name: "Front",
  19137. image: {
  19138. source: "./media/characters/dharsi/front.svg",
  19139. extra: 716 / 630,
  19140. bottom: 0.035
  19141. }
  19142. },
  19143. },
  19144. [
  19145. {
  19146. name: "Nano",
  19147. height: math.unit(100, "nm")
  19148. },
  19149. {
  19150. name: "Micro",
  19151. height: math.unit(2, "inches")
  19152. },
  19153. {
  19154. name: "Normal",
  19155. height: math.unit(5 + 10 / 12, "feet"),
  19156. default: true
  19157. },
  19158. {
  19159. name: "Macro",
  19160. height: math.unit(1000, "feet")
  19161. },
  19162. {
  19163. name: "Megamacro",
  19164. height: math.unit(10, "miles")
  19165. },
  19166. {
  19167. name: "Gigamacro",
  19168. height: math.unit(3000, "miles")
  19169. },
  19170. {
  19171. name: "Teramacro",
  19172. height: math.unit(500000, "miles")
  19173. },
  19174. {
  19175. name: "Teramacro+",
  19176. height: math.unit(30, "galaxies")
  19177. },
  19178. ]
  19179. ))
  19180. characterMakers.push(() => makeCharacter(
  19181. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19182. {
  19183. front: {
  19184. height: math.unit(6, "feet"),
  19185. weight: math.unit(150, "lb"),
  19186. name: "Front",
  19187. image: {
  19188. source: "./media/characters/deathy/front.svg",
  19189. extra: 1552 / 1463,
  19190. bottom: 0.025
  19191. }
  19192. },
  19193. side: {
  19194. height: math.unit(6, "feet"),
  19195. weight: math.unit(150, "lb"),
  19196. name: "Side",
  19197. image: {
  19198. source: "./media/characters/deathy/side.svg",
  19199. extra: 1604 / 1455,
  19200. bottom: 0.025
  19201. }
  19202. },
  19203. back: {
  19204. height: math.unit(6, "feet"),
  19205. weight: math.unit(150, "lb"),
  19206. name: "Back",
  19207. image: {
  19208. source: "./media/characters/deathy/back.svg",
  19209. extra: 1580 / 1463,
  19210. bottom: 0.005
  19211. }
  19212. },
  19213. },
  19214. [
  19215. {
  19216. name: "Micro",
  19217. height: math.unit(5, "millimeters")
  19218. },
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(6 + 5 / 12, "feet"),
  19222. default: true
  19223. },
  19224. ]
  19225. ))
  19226. characterMakers.push(() => makeCharacter(
  19227. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19228. {
  19229. front: {
  19230. height: math.unit(16, "feet"),
  19231. weight: math.unit(4000, "lb"),
  19232. name: "Front",
  19233. image: {
  19234. source: "./media/characters/juniper/front.svg",
  19235. bottom: 0.04
  19236. }
  19237. },
  19238. },
  19239. [
  19240. {
  19241. name: "Normal",
  19242. height: math.unit(16, "feet"),
  19243. default: true
  19244. },
  19245. ]
  19246. ))
  19247. characterMakers.push(() => makeCharacter(
  19248. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19249. {
  19250. front: {
  19251. height: math.unit(6, "feet"),
  19252. weight: math.unit(150, "lb"),
  19253. name: "Front",
  19254. image: {
  19255. source: "./media/characters/hipster/front.svg",
  19256. extra: 1312 / 1209,
  19257. bottom: 0.025
  19258. }
  19259. },
  19260. back: {
  19261. height: math.unit(6, "feet"),
  19262. weight: math.unit(150, "lb"),
  19263. name: "Back",
  19264. image: {
  19265. source: "./media/characters/hipster/back.svg",
  19266. extra: 1281 / 1196,
  19267. bottom: 0.01
  19268. }
  19269. },
  19270. },
  19271. [
  19272. {
  19273. name: "Micro",
  19274. height: math.unit(1, "mm")
  19275. },
  19276. {
  19277. name: "Normal",
  19278. height: math.unit(4, "inches"),
  19279. default: true
  19280. },
  19281. {
  19282. name: "Macro",
  19283. height: math.unit(500, "feet")
  19284. },
  19285. {
  19286. name: "Megamacro",
  19287. height: math.unit(1000, "miles")
  19288. },
  19289. ]
  19290. ))
  19291. characterMakers.push(() => makeCharacter(
  19292. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19293. {
  19294. front: {
  19295. height: math.unit(6, "feet"),
  19296. weight: math.unit(150, "lb"),
  19297. name: "Front",
  19298. image: {
  19299. source: "./media/characters/tendirmuldr/front.svg",
  19300. extra: 1878 / 1772,
  19301. bottom: 0.015
  19302. }
  19303. },
  19304. },
  19305. [
  19306. {
  19307. name: "Megamacro",
  19308. height: math.unit(1500, "miles"),
  19309. default: true
  19310. },
  19311. ]
  19312. ))
  19313. characterMakers.push(() => makeCharacter(
  19314. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19315. {
  19316. front: {
  19317. height: math.unit(14, "feet"),
  19318. weight: math.unit(12000, "lb"),
  19319. name: "Front",
  19320. image: {
  19321. source: "./media/characters/mort/front.svg",
  19322. extra: 365 / 318,
  19323. bottom: 0.01
  19324. }
  19325. },
  19326. side: {
  19327. height: math.unit(14, "feet"),
  19328. weight: math.unit(12000, "lb"),
  19329. name: "Side",
  19330. image: {
  19331. source: "./media/characters/mort/side.svg",
  19332. extra: 365 / 318,
  19333. bottom: 0.052
  19334. },
  19335. default: true
  19336. },
  19337. back: {
  19338. height: math.unit(14, "feet"),
  19339. weight: math.unit(12000, "lb"),
  19340. name: "Back",
  19341. image: {
  19342. source: "./media/characters/mort/back.svg",
  19343. extra: 371 / 332,
  19344. bottom: 0.18
  19345. }
  19346. },
  19347. },
  19348. [
  19349. {
  19350. name: "Normal",
  19351. height: math.unit(14, "feet"),
  19352. default: true
  19353. },
  19354. ]
  19355. ))
  19356. characterMakers.push(() => makeCharacter(
  19357. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19358. {
  19359. front: {
  19360. height: math.unit(8, "feet"),
  19361. weight: math.unit(1, "ton"),
  19362. name: "Front",
  19363. image: {
  19364. source: "./media/characters/lycoa/front.svg",
  19365. extra: 1875 / 1789,
  19366. bottom: 0.022
  19367. }
  19368. },
  19369. back: {
  19370. height: math.unit(8, "feet"),
  19371. weight: math.unit(1, "ton"),
  19372. name: "Back",
  19373. image: {
  19374. source: "./media/characters/lycoa/back.svg",
  19375. extra: 1835 / 1781,
  19376. bottom: 0.03
  19377. }
  19378. },
  19379. head: {
  19380. height: math.unit(2.1, "feet"),
  19381. name: "Head",
  19382. image: {
  19383. source: "./media/characters/lycoa/head.svg"
  19384. }
  19385. },
  19386. tailmaw: {
  19387. height: math.unit(1.9, "feet"),
  19388. name: "Tailmaw",
  19389. image: {
  19390. source: "./media/characters/lycoa/tailmaw.svg"
  19391. }
  19392. },
  19393. tentacles: {
  19394. height: math.unit(2.1, "feet"),
  19395. name: "Tentacles",
  19396. image: {
  19397. source: "./media/characters/lycoa/tentacles.svg"
  19398. }
  19399. },
  19400. dick: {
  19401. height: math.unit(1.73, "feet"),
  19402. name: "Dick",
  19403. image: {
  19404. source: "./media/characters/lycoa/dick.svg"
  19405. }
  19406. },
  19407. },
  19408. [
  19409. {
  19410. name: "Normal",
  19411. height: math.unit(8, "feet"),
  19412. default: true
  19413. },
  19414. {
  19415. name: "Macro",
  19416. height: math.unit(30, "feet")
  19417. },
  19418. ]
  19419. ))
  19420. characterMakers.push(() => makeCharacter(
  19421. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19422. {
  19423. front: {
  19424. height: math.unit(4 + 2 / 12, "feet"),
  19425. weight: math.unit(70, "lb"),
  19426. name: "Front",
  19427. image: {
  19428. source: "./media/characters/naldara/front.svg",
  19429. extra: 841 / 720,
  19430. bottom: 0.04
  19431. }
  19432. },
  19433. naga: {
  19434. height: math.unit(23, "feet"),
  19435. weight: math.unit(15000, "kg"),
  19436. name: "Naga",
  19437. image: {
  19438. source: "./media/characters/naldara/naga.svg",
  19439. extra: 3290/2959,
  19440. bottom: 124/3432
  19441. }
  19442. },
  19443. },
  19444. [
  19445. {
  19446. name: "Normal",
  19447. height: math.unit(4 + 2 / 12, "feet"),
  19448. default: true
  19449. },
  19450. ]
  19451. ))
  19452. characterMakers.push(() => makeCharacter(
  19453. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19454. {
  19455. front: {
  19456. height: math.unit(13 + 7 / 12, "feet"),
  19457. weight: math.unit(1500, "lb"),
  19458. name: "Front",
  19459. image: {
  19460. source: "./media/characters/briar/front.svg",
  19461. extra: 626 / 596,
  19462. bottom: 0.08
  19463. }
  19464. },
  19465. },
  19466. [
  19467. {
  19468. name: "Normal",
  19469. height: math.unit(13 + 7 / 12, "feet"),
  19470. default: true
  19471. },
  19472. ]
  19473. ))
  19474. characterMakers.push(() => makeCharacter(
  19475. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19476. {
  19477. side: {
  19478. height: math.unit(10, "feet"),
  19479. weight: math.unit(500, "lb"),
  19480. name: "Side",
  19481. image: {
  19482. source: "./media/characters/vanguard/side.svg",
  19483. extra: 502 / 425,
  19484. bottom: 0.087
  19485. }
  19486. },
  19487. },
  19488. [
  19489. {
  19490. name: "Normal",
  19491. height: math.unit(10, "feet"),
  19492. default: true
  19493. },
  19494. ]
  19495. ))
  19496. characterMakers.push(() => makeCharacter(
  19497. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19498. {
  19499. front: {
  19500. height: math.unit(7.5, "feet"),
  19501. weight: math.unit(2, "lb"),
  19502. name: "Front",
  19503. image: {
  19504. source: "./media/characters/artemis/front.svg",
  19505. extra: 1192 / 1075,
  19506. bottom: 0.07
  19507. }
  19508. },
  19509. frontNsfw: {
  19510. height: math.unit(7.5, "feet"),
  19511. weight: math.unit(2, "lb"),
  19512. name: "Front (NSFW)",
  19513. image: {
  19514. source: "./media/characters/artemis/front-nsfw.svg",
  19515. extra: 1192 / 1075,
  19516. bottom: 0.07
  19517. }
  19518. },
  19519. frontNsfwer: {
  19520. height: math.unit(7.5, "feet"),
  19521. weight: math.unit(2, "lb"),
  19522. name: "Front (NSFW-er)",
  19523. image: {
  19524. source: "./media/characters/artemis/front-nsfwer.svg",
  19525. extra: 1192 / 1075,
  19526. bottom: 0.07
  19527. }
  19528. },
  19529. side: {
  19530. height: math.unit(7.5, "feet"),
  19531. weight: math.unit(2, "lb"),
  19532. name: "Side",
  19533. image: {
  19534. source: "./media/characters/artemis/side.svg",
  19535. extra: 1192 / 1075,
  19536. bottom: 0.07
  19537. }
  19538. },
  19539. sideNsfw: {
  19540. height: math.unit(7.5, "feet"),
  19541. weight: math.unit(2, "lb"),
  19542. name: "Side (NSFW)",
  19543. image: {
  19544. source: "./media/characters/artemis/side-nsfw.svg",
  19545. extra: 1192 / 1075,
  19546. bottom: 0.07
  19547. }
  19548. },
  19549. sideNsfwer: {
  19550. height: math.unit(7.5, "feet"),
  19551. weight: math.unit(2, "lb"),
  19552. name: "Side (NSFW-er)",
  19553. image: {
  19554. source: "./media/characters/artemis/side-nsfwer.svg",
  19555. extra: 1192 / 1075,
  19556. bottom: 0.07
  19557. }
  19558. },
  19559. maw: {
  19560. height: math.unit(1.1, "feet"),
  19561. name: "Maw",
  19562. image: {
  19563. source: "./media/characters/artemis/maw.svg"
  19564. }
  19565. },
  19566. stomach: {
  19567. height: math.unit(0.95, "feet"),
  19568. name: "Stomach",
  19569. image: {
  19570. source: "./media/characters/artemis/stomach.svg"
  19571. }
  19572. },
  19573. dickCanine: {
  19574. height: math.unit(1, "feet"),
  19575. name: "Dick (Canine)",
  19576. image: {
  19577. source: "./media/characters/artemis/dick-canine.svg"
  19578. }
  19579. },
  19580. dickEquine: {
  19581. height: math.unit(0.85, "feet"),
  19582. name: "Dick (Equine)",
  19583. image: {
  19584. source: "./media/characters/artemis/dick-equine.svg"
  19585. }
  19586. },
  19587. dickExotic: {
  19588. height: math.unit(0.85, "feet"),
  19589. name: "Dick (Exotic)",
  19590. image: {
  19591. source: "./media/characters/artemis/dick-exotic.svg"
  19592. }
  19593. },
  19594. },
  19595. [
  19596. {
  19597. name: "Normal",
  19598. height: math.unit(7.5, "feet"),
  19599. default: true
  19600. },
  19601. {
  19602. name: "Enlarged",
  19603. height: math.unit(12, "feet")
  19604. },
  19605. ]
  19606. ))
  19607. characterMakers.push(() => makeCharacter(
  19608. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19609. {
  19610. front: {
  19611. height: math.unit(5 + 3 / 12, "feet"),
  19612. weight: math.unit(160, "lb"),
  19613. name: "Front",
  19614. image: {
  19615. source: "./media/characters/kira/front.svg",
  19616. extra: 906 / 786,
  19617. bottom: 0.01
  19618. }
  19619. },
  19620. back: {
  19621. height: math.unit(5 + 3 / 12, "feet"),
  19622. weight: math.unit(160, "lb"),
  19623. name: "Back",
  19624. image: {
  19625. source: "./media/characters/kira/back.svg",
  19626. extra: 882 / 757,
  19627. bottom: 0.005
  19628. }
  19629. },
  19630. frontDressed: {
  19631. height: math.unit(5 + 3 / 12, "feet"),
  19632. weight: math.unit(160, "lb"),
  19633. name: "Front (Dressed)",
  19634. image: {
  19635. source: "./media/characters/kira/front-dressed.svg",
  19636. extra: 906 / 786,
  19637. bottom: 0.01
  19638. }
  19639. },
  19640. beans: {
  19641. height: math.unit(0.92, "feet"),
  19642. name: "Beans",
  19643. image: {
  19644. source: "./media/characters/kira/beans.svg"
  19645. }
  19646. },
  19647. },
  19648. [
  19649. {
  19650. name: "Normal",
  19651. height: math.unit(5 + 3 / 12, "feet"),
  19652. default: true
  19653. },
  19654. ]
  19655. ))
  19656. characterMakers.push(() => makeCharacter(
  19657. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19658. {
  19659. front: {
  19660. height: math.unit(5 + 4 / 12, "feet"),
  19661. weight: math.unit(145, "lb"),
  19662. name: "Front",
  19663. image: {
  19664. source: "./media/characters/scramble/front.svg",
  19665. extra: 763 / 727,
  19666. bottom: 0.05
  19667. }
  19668. },
  19669. back: {
  19670. height: math.unit(5 + 4 / 12, "feet"),
  19671. weight: math.unit(145, "lb"),
  19672. name: "Back",
  19673. image: {
  19674. source: "./media/characters/scramble/back.svg",
  19675. extra: 826 / 737,
  19676. bottom: 0.002
  19677. }
  19678. },
  19679. },
  19680. [
  19681. {
  19682. name: "Normal",
  19683. height: math.unit(5 + 4 / 12, "feet"),
  19684. default: true
  19685. },
  19686. ]
  19687. ))
  19688. characterMakers.push(() => makeCharacter(
  19689. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19690. {
  19691. side: {
  19692. height: math.unit(6 + 2 / 12, "feet"),
  19693. weight: math.unit(190, "lb"),
  19694. name: "Side",
  19695. image: {
  19696. source: "./media/characters/biscuit/side.svg",
  19697. extra: 858 / 791,
  19698. bottom: 0.044
  19699. }
  19700. },
  19701. },
  19702. [
  19703. {
  19704. name: "Normal",
  19705. height: math.unit(6 + 2 / 12, "feet"),
  19706. default: true
  19707. },
  19708. ]
  19709. ))
  19710. characterMakers.push(() => makeCharacter(
  19711. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19712. {
  19713. front: {
  19714. height: math.unit(5 + 2 / 12, "feet"),
  19715. weight: math.unit(120, "lb"),
  19716. name: "Front",
  19717. image: {
  19718. source: "./media/characters/poffin/front.svg",
  19719. extra: 786 / 680,
  19720. bottom: 0.005
  19721. }
  19722. },
  19723. },
  19724. [
  19725. {
  19726. name: "Normal",
  19727. height: math.unit(5 + 2 / 12, "feet"),
  19728. default: true
  19729. },
  19730. ]
  19731. ))
  19732. characterMakers.push(() => makeCharacter(
  19733. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19734. {
  19735. front: {
  19736. height: math.unit(6 + 3 / 12, "feet"),
  19737. weight: math.unit(519, "lb"),
  19738. name: "Front",
  19739. image: {
  19740. source: "./media/characters/dhari/front.svg",
  19741. extra: 1048 / 946,
  19742. bottom: 0.015
  19743. }
  19744. },
  19745. back: {
  19746. height: math.unit(6 + 3 / 12, "feet"),
  19747. weight: math.unit(519, "lb"),
  19748. name: "Back",
  19749. image: {
  19750. source: "./media/characters/dhari/back.svg",
  19751. extra: 1048 / 931,
  19752. bottom: 0.005
  19753. }
  19754. },
  19755. frontDressed: {
  19756. height: math.unit(6 + 3 / 12, "feet"),
  19757. weight: math.unit(519, "lb"),
  19758. name: "Front (Dressed)",
  19759. image: {
  19760. source: "./media/characters/dhari/front-dressed.svg",
  19761. extra: 1713 / 1546,
  19762. bottom: 0.02
  19763. }
  19764. },
  19765. backDressed: {
  19766. height: math.unit(6 + 3 / 12, "feet"),
  19767. weight: math.unit(519, "lb"),
  19768. name: "Back (Dressed)",
  19769. image: {
  19770. source: "./media/characters/dhari/back-dressed.svg",
  19771. extra: 1699 / 1537,
  19772. bottom: 0.01
  19773. }
  19774. },
  19775. maw: {
  19776. height: math.unit(0.95, "feet"),
  19777. name: "Maw",
  19778. image: {
  19779. source: "./media/characters/dhari/maw.svg"
  19780. }
  19781. },
  19782. wereFront: {
  19783. height: math.unit(12 + 8 / 12, "feet"),
  19784. weight: math.unit(4000, "lb"),
  19785. name: "Front (Were)",
  19786. image: {
  19787. source: "./media/characters/dhari/were-front.svg",
  19788. extra: 1065 / 969,
  19789. bottom: 0.015
  19790. }
  19791. },
  19792. wereBack: {
  19793. height: math.unit(12 + 8 / 12, "feet"),
  19794. weight: math.unit(4000, "lb"),
  19795. name: "Back (Were)",
  19796. image: {
  19797. source: "./media/characters/dhari/were-back.svg",
  19798. extra: 1065 / 969,
  19799. bottom: 0.012
  19800. }
  19801. },
  19802. wereMaw: {
  19803. height: math.unit(0.625, "meters"),
  19804. name: "Maw (Were)",
  19805. image: {
  19806. source: "./media/characters/dhari/were-maw.svg"
  19807. }
  19808. },
  19809. },
  19810. [
  19811. {
  19812. name: "Normal",
  19813. height: math.unit(6 + 3 / 12, "feet"),
  19814. default: true
  19815. },
  19816. ]
  19817. ))
  19818. characterMakers.push(() => makeCharacter(
  19819. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19820. {
  19821. anthro: {
  19822. height: math.unit(5 + 7 / 12, "feet"),
  19823. weight: math.unit(175, "lb"),
  19824. name: "Anthro",
  19825. image: {
  19826. source: "./media/characters/rena-dyne/anthro.svg",
  19827. extra: 1849 / 1785,
  19828. bottom: 0.005
  19829. }
  19830. },
  19831. taur: {
  19832. height: math.unit(15 + 6 / 12, "feet"),
  19833. weight: math.unit(8000, "lb"),
  19834. name: "Taur",
  19835. image: {
  19836. source: "./media/characters/rena-dyne/taur.svg",
  19837. extra: 2315 / 2234,
  19838. bottom: 0.033
  19839. }
  19840. },
  19841. },
  19842. [
  19843. {
  19844. name: "Normal",
  19845. height: math.unit(5 + 7 / 12, "feet"),
  19846. default: true
  19847. },
  19848. ]
  19849. ))
  19850. characterMakers.push(() => makeCharacter(
  19851. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19852. {
  19853. front: {
  19854. height: math.unit(8, "feet"),
  19855. weight: math.unit(600, "lb"),
  19856. name: "Front",
  19857. image: {
  19858. source: "./media/characters/weremeep/front.svg",
  19859. extra: 967 / 862,
  19860. bottom: 0.01
  19861. }
  19862. },
  19863. },
  19864. [
  19865. {
  19866. name: "Normal",
  19867. height: math.unit(8, "feet"),
  19868. default: true
  19869. },
  19870. {
  19871. name: "Lorg",
  19872. height: math.unit(12, "feet")
  19873. },
  19874. {
  19875. name: "Oh Lawd She Comin'",
  19876. height: math.unit(20, "feet")
  19877. },
  19878. ]
  19879. ))
  19880. characterMakers.push(() => makeCharacter(
  19881. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19882. {
  19883. front: {
  19884. height: math.unit(4, "feet"),
  19885. weight: math.unit(90, "lb"),
  19886. name: "Front",
  19887. image: {
  19888. source: "./media/characters/reza/front.svg",
  19889. extra: 1183 / 1111,
  19890. bottom: 0.017
  19891. }
  19892. },
  19893. back: {
  19894. height: math.unit(4, "feet"),
  19895. weight: math.unit(90, "lb"),
  19896. name: "Back",
  19897. image: {
  19898. source: "./media/characters/reza/back.svg",
  19899. extra: 1183 / 1111,
  19900. bottom: 0.01
  19901. }
  19902. },
  19903. drake: {
  19904. height: math.unit(30, "feet"),
  19905. weight: math.unit(246960, "lb"),
  19906. name: "Drake",
  19907. image: {
  19908. source: "./media/characters/reza/drake.svg",
  19909. extra: 2350 / 2024,
  19910. bottom: 60.7 / 2403
  19911. }
  19912. },
  19913. },
  19914. [
  19915. {
  19916. name: "Normal",
  19917. height: math.unit(4, "feet"),
  19918. default: true
  19919. },
  19920. ]
  19921. ))
  19922. characterMakers.push(() => makeCharacter(
  19923. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19924. {
  19925. side: {
  19926. height: math.unit(15, "feet"),
  19927. weight: math.unit(14, "tons"),
  19928. name: "Side",
  19929. image: {
  19930. source: "./media/characters/athea/side.svg",
  19931. extra: 960 / 540,
  19932. bottom: 0.003
  19933. }
  19934. },
  19935. sitting: {
  19936. height: math.unit(6 * 2.85, "feet"),
  19937. weight: math.unit(14, "tons"),
  19938. name: "Sitting",
  19939. image: {
  19940. source: "./media/characters/athea/sitting.svg",
  19941. extra: 621 / 581,
  19942. bottom: 0.075
  19943. }
  19944. },
  19945. maw: {
  19946. height: math.unit(7.59498031496063, "feet"),
  19947. name: "Maw",
  19948. image: {
  19949. source: "./media/characters/athea/maw.svg"
  19950. }
  19951. },
  19952. },
  19953. [
  19954. {
  19955. name: "Lap Cat",
  19956. height: math.unit(2.5, "feet")
  19957. },
  19958. {
  19959. name: "Minimacro",
  19960. height: math.unit(15, "feet"),
  19961. default: true
  19962. },
  19963. {
  19964. name: "Macro",
  19965. height: math.unit(120, "feet")
  19966. },
  19967. {
  19968. name: "Macro+",
  19969. height: math.unit(640, "feet")
  19970. },
  19971. {
  19972. name: "Colossus",
  19973. height: math.unit(2.2, "miles")
  19974. },
  19975. ]
  19976. ))
  19977. characterMakers.push(() => makeCharacter(
  19978. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19979. {
  19980. front: {
  19981. height: math.unit(8 + 8 / 12, "feet"),
  19982. weight: math.unit(130, "kg"),
  19983. name: "Front",
  19984. image: {
  19985. source: "./media/characters/seroko/front.svg",
  19986. extra: 1385 / 1280,
  19987. bottom: 0.025
  19988. }
  19989. },
  19990. back: {
  19991. height: math.unit(8 + 8 / 12, "feet"),
  19992. weight: math.unit(130, "kg"),
  19993. name: "Back",
  19994. image: {
  19995. source: "./media/characters/seroko/back.svg",
  19996. extra: 1369 / 1238,
  19997. bottom: 0.018
  19998. }
  19999. },
  20000. frontDressed: {
  20001. height: math.unit(8 + 8 / 12, "feet"),
  20002. weight: math.unit(130, "kg"),
  20003. name: "Front (Dressed)",
  20004. image: {
  20005. source: "./media/characters/seroko/front-dressed.svg",
  20006. extra: 1366 / 1275,
  20007. bottom: 0.03
  20008. }
  20009. },
  20010. },
  20011. [
  20012. {
  20013. name: "Normal",
  20014. height: math.unit(8 + 8 / 12, "feet"),
  20015. default: true
  20016. },
  20017. ]
  20018. ))
  20019. characterMakers.push(() => makeCharacter(
  20020. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20021. {
  20022. front: {
  20023. height: math.unit(5.5, "feet"),
  20024. weight: math.unit(160, "lb"),
  20025. name: "Front",
  20026. image: {
  20027. source: "./media/characters/quatzi/front.svg",
  20028. extra: 2346 / 2242,
  20029. bottom: 0.015
  20030. }
  20031. },
  20032. },
  20033. [
  20034. {
  20035. name: "Normal",
  20036. height: math.unit(5.5, "feet"),
  20037. default: true
  20038. },
  20039. {
  20040. name: "Big",
  20041. height: math.unit(7.7, "feet")
  20042. },
  20043. ]
  20044. ))
  20045. characterMakers.push(() => makeCharacter(
  20046. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20047. {
  20048. front: {
  20049. height: math.unit(5 + 11 / 12, "feet"),
  20050. weight: math.unit(180, "lb"),
  20051. name: "Front",
  20052. image: {
  20053. source: "./media/characters/sen/front.svg",
  20054. extra: 1321 / 1254,
  20055. bottom: 0.015
  20056. }
  20057. },
  20058. side: {
  20059. height: math.unit(5 + 11 / 12, "feet"),
  20060. weight: math.unit(180, "lb"),
  20061. name: "Side",
  20062. image: {
  20063. source: "./media/characters/sen/side.svg",
  20064. extra: 1321 / 1254,
  20065. bottom: 0.007
  20066. }
  20067. },
  20068. back: {
  20069. height: math.unit(5 + 11 / 12, "feet"),
  20070. weight: math.unit(180, "lb"),
  20071. name: "Back",
  20072. image: {
  20073. source: "./media/characters/sen/back.svg",
  20074. extra: 1321 / 1254
  20075. }
  20076. },
  20077. },
  20078. [
  20079. {
  20080. name: "Normal",
  20081. height: math.unit(5 + 11 / 12, "feet"),
  20082. default: true
  20083. },
  20084. ]
  20085. ))
  20086. characterMakers.push(() => makeCharacter(
  20087. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20088. {
  20089. front: {
  20090. height: math.unit(166.6, "cm"),
  20091. weight: math.unit(66.6, "kg"),
  20092. name: "Front",
  20093. image: {
  20094. source: "./media/characters/fruity/front.svg",
  20095. extra: 1510 / 1386,
  20096. bottom: 0.04
  20097. }
  20098. },
  20099. back: {
  20100. height: math.unit(166.6, "cm"),
  20101. weight: math.unit(66.6, "lb"),
  20102. name: "Back",
  20103. image: {
  20104. source: "./media/characters/fruity/back.svg",
  20105. extra: 1563 / 1435,
  20106. bottom: 0.005
  20107. }
  20108. },
  20109. },
  20110. [
  20111. {
  20112. name: "Normal",
  20113. height: math.unit(166.6, "cm"),
  20114. default: true
  20115. },
  20116. {
  20117. name: "Demonic",
  20118. height: math.unit(166.6, "feet")
  20119. },
  20120. ]
  20121. ))
  20122. characterMakers.push(() => makeCharacter(
  20123. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20124. {
  20125. side: {
  20126. height: math.unit(10, "feet"),
  20127. weight: math.unit(500, "lb"),
  20128. name: "Side",
  20129. image: {
  20130. source: "./media/characters/zost/side.svg",
  20131. extra: 966 / 880,
  20132. bottom: 0.075
  20133. }
  20134. },
  20135. mawFront: {
  20136. height: math.unit(1.08, "meters"),
  20137. name: "Maw (Front)",
  20138. image: {
  20139. source: "./media/characters/zost/maw-front.svg"
  20140. }
  20141. },
  20142. mawSide: {
  20143. height: math.unit(2.66, "feet"),
  20144. name: "Maw (Side)",
  20145. image: {
  20146. source: "./media/characters/zost/maw-side.svg"
  20147. }
  20148. },
  20149. },
  20150. [
  20151. {
  20152. name: "Normal",
  20153. height: math.unit(10, "feet"),
  20154. default: true
  20155. },
  20156. ]
  20157. ))
  20158. characterMakers.push(() => makeCharacter(
  20159. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20160. {
  20161. front: {
  20162. height: math.unit(5 + 4 / 12, "feet"),
  20163. weight: math.unit(120, "lb"),
  20164. name: "Front",
  20165. image: {
  20166. source: "./media/characters/luci/front.svg",
  20167. extra: 1985 / 1884,
  20168. bottom: 0.04
  20169. }
  20170. },
  20171. back: {
  20172. height: math.unit(5 + 4 / 12, "feet"),
  20173. weight: math.unit(120, "lb"),
  20174. name: "Back",
  20175. image: {
  20176. source: "./media/characters/luci/back.svg",
  20177. extra: 1892 / 1791,
  20178. bottom: 0.002
  20179. }
  20180. },
  20181. },
  20182. [
  20183. {
  20184. name: "Normal",
  20185. height: math.unit(5 + 4 / 12, "feet"),
  20186. default: true
  20187. },
  20188. ]
  20189. ))
  20190. characterMakers.push(() => makeCharacter(
  20191. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20192. {
  20193. front: {
  20194. height: math.unit(1500, "feet"),
  20195. weight: math.unit(3.8e6, "tons"),
  20196. name: "Front",
  20197. image: {
  20198. source: "./media/characters/2th/front.svg",
  20199. extra: 3489 / 3350,
  20200. bottom: 0.1
  20201. }
  20202. },
  20203. foot: {
  20204. height: math.unit(461, "feet"),
  20205. name: "Foot",
  20206. image: {
  20207. source: "./media/characters/2th/foot.svg"
  20208. }
  20209. },
  20210. },
  20211. [
  20212. {
  20213. name: "\"Micro\"",
  20214. height: math.unit(15 + 7 / 12, "feet")
  20215. },
  20216. {
  20217. name: "Normal",
  20218. height: math.unit(1500, "feet"),
  20219. default: true
  20220. },
  20221. {
  20222. name: "Macro",
  20223. height: math.unit(5000, "feet")
  20224. },
  20225. {
  20226. name: "Megamacro",
  20227. height: math.unit(15, "miles")
  20228. },
  20229. {
  20230. name: "Gigamacro",
  20231. height: math.unit(4000, "miles")
  20232. },
  20233. {
  20234. name: "Galactic",
  20235. height: math.unit(50, "AU")
  20236. },
  20237. ]
  20238. ))
  20239. characterMakers.push(() => makeCharacter(
  20240. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20241. {
  20242. front: {
  20243. height: math.unit(5 + 6 / 12, "feet"),
  20244. weight: math.unit(220, "lb"),
  20245. name: "Front",
  20246. image: {
  20247. source: "./media/characters/amethyst/front.svg",
  20248. extra: 2078 / 2040,
  20249. bottom: 0.045
  20250. }
  20251. },
  20252. back: {
  20253. height: math.unit(5 + 6 / 12, "feet"),
  20254. weight: math.unit(220, "lb"),
  20255. name: "Back",
  20256. image: {
  20257. source: "./media/characters/amethyst/back.svg",
  20258. extra: 2021 / 1989,
  20259. bottom: 0.02
  20260. }
  20261. },
  20262. },
  20263. [
  20264. {
  20265. name: "Normal",
  20266. height: math.unit(5 + 6 / 12, "feet"),
  20267. default: true
  20268. },
  20269. ]
  20270. ))
  20271. characterMakers.push(() => makeCharacter(
  20272. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20273. {
  20274. front: {
  20275. height: math.unit(4 + 11 / 12, "feet"),
  20276. weight: math.unit(120, "lb"),
  20277. name: "Front",
  20278. image: {
  20279. source: "./media/characters/yumi-akiyama/front.svg",
  20280. extra: 1327 / 1235,
  20281. bottom: 0.02
  20282. }
  20283. },
  20284. back: {
  20285. height: math.unit(4 + 11 / 12, "feet"),
  20286. weight: math.unit(120, "lb"),
  20287. name: "Back",
  20288. image: {
  20289. source: "./media/characters/yumi-akiyama/back.svg",
  20290. extra: 1287 / 1245,
  20291. bottom: 0.002
  20292. }
  20293. },
  20294. },
  20295. [
  20296. {
  20297. name: "Galactic",
  20298. height: math.unit(50, "galaxies"),
  20299. default: true
  20300. },
  20301. {
  20302. name: "Universal",
  20303. height: math.unit(100, "universes")
  20304. },
  20305. ]
  20306. ))
  20307. characterMakers.push(() => makeCharacter(
  20308. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20309. {
  20310. front: {
  20311. height: math.unit(8, "feet"),
  20312. weight: math.unit(500, "lb"),
  20313. name: "Front",
  20314. image: {
  20315. source: "./media/characters/rifter-yrmori/front.svg",
  20316. extra: 1180 / 1125,
  20317. bottom: 0.02
  20318. }
  20319. },
  20320. back: {
  20321. height: math.unit(8, "feet"),
  20322. weight: math.unit(500, "lb"),
  20323. name: "Back",
  20324. image: {
  20325. source: "./media/characters/rifter-yrmori/back.svg",
  20326. extra: 1190 / 1145,
  20327. bottom: 0.001
  20328. }
  20329. },
  20330. wings: {
  20331. height: math.unit(7.75, "feet"),
  20332. weight: math.unit(500, "lb"),
  20333. name: "Wings",
  20334. image: {
  20335. source: "./media/characters/rifter-yrmori/wings.svg",
  20336. extra: 1357 / 1285
  20337. }
  20338. },
  20339. maw: {
  20340. height: math.unit(0.8, "feet"),
  20341. name: "Maw",
  20342. image: {
  20343. source: "./media/characters/rifter-yrmori/maw.svg"
  20344. }
  20345. },
  20346. mawfront: {
  20347. height: math.unit(1.45, "feet"),
  20348. name: "Maw (Front)",
  20349. image: {
  20350. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20351. }
  20352. },
  20353. },
  20354. [
  20355. {
  20356. name: "Normal",
  20357. height: math.unit(8, "feet"),
  20358. default: true
  20359. },
  20360. {
  20361. name: "Macro",
  20362. height: math.unit(42, "meters")
  20363. },
  20364. ]
  20365. ))
  20366. characterMakers.push(() => makeCharacter(
  20367. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20368. {
  20369. were: {
  20370. height: math.unit(25 + 6 / 12, "feet"),
  20371. weight: math.unit(10000, "lb"),
  20372. name: "Were",
  20373. image: {
  20374. source: "./media/characters/tahajin/were.svg",
  20375. extra: 801 / 770,
  20376. bottom: 0.042
  20377. }
  20378. },
  20379. aquatic: {
  20380. height: math.unit(6 + 4 / 12, "feet"),
  20381. weight: math.unit(160, "lb"),
  20382. name: "Aquatic",
  20383. image: {
  20384. source: "./media/characters/tahajin/aquatic.svg",
  20385. extra: 572 / 542,
  20386. bottom: 0.04
  20387. }
  20388. },
  20389. chow: {
  20390. height: math.unit(8 + 11 / 12, "feet"),
  20391. weight: math.unit(450, "lb"),
  20392. name: "Chow",
  20393. image: {
  20394. source: "./media/characters/tahajin/chow.svg",
  20395. extra: 660 / 640,
  20396. bottom: 0.015
  20397. }
  20398. },
  20399. demiNaga: {
  20400. height: math.unit(6 + 8 / 12, "feet"),
  20401. weight: math.unit(300, "lb"),
  20402. name: "Demi Naga",
  20403. image: {
  20404. source: "./media/characters/tahajin/demi-naga.svg",
  20405. extra: 643 / 615,
  20406. bottom: 0.1
  20407. }
  20408. },
  20409. data: {
  20410. height: math.unit(5, "inches"),
  20411. weight: math.unit(0.1, "lb"),
  20412. name: "Data",
  20413. image: {
  20414. source: "./media/characters/tahajin/data.svg"
  20415. }
  20416. },
  20417. fluu: {
  20418. height: math.unit(5 + 7 / 12, "feet"),
  20419. weight: math.unit(140, "lb"),
  20420. name: "Fluu",
  20421. image: {
  20422. source: "./media/characters/tahajin/fluu.svg",
  20423. extra: 628 / 592,
  20424. bottom: 0.02
  20425. }
  20426. },
  20427. starWarrior: {
  20428. height: math.unit(4 + 5 / 12, "feet"),
  20429. weight: math.unit(50, "lb"),
  20430. name: "Star Warrior",
  20431. image: {
  20432. source: "./media/characters/tahajin/star-warrior.svg"
  20433. }
  20434. },
  20435. },
  20436. [
  20437. {
  20438. name: "Normal",
  20439. height: math.unit(25 + 6 / 12, "feet"),
  20440. default: true
  20441. },
  20442. ]
  20443. ))
  20444. characterMakers.push(() => makeCharacter(
  20445. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20446. {
  20447. front: {
  20448. height: math.unit(8, "feet"),
  20449. weight: math.unit(350, "lb"),
  20450. name: "Front",
  20451. image: {
  20452. source: "./media/characters/gabira/front.svg",
  20453. extra: 608 / 580,
  20454. bottom: 0.03
  20455. }
  20456. },
  20457. back: {
  20458. height: math.unit(8, "feet"),
  20459. weight: math.unit(350, "lb"),
  20460. name: "Back",
  20461. image: {
  20462. source: "./media/characters/gabira/back.svg",
  20463. extra: 608 / 580,
  20464. bottom: 0.03
  20465. }
  20466. },
  20467. },
  20468. [
  20469. {
  20470. name: "Normal",
  20471. height: math.unit(8, "feet"),
  20472. default: true
  20473. },
  20474. ]
  20475. ))
  20476. characterMakers.push(() => makeCharacter(
  20477. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20478. {
  20479. front: {
  20480. height: math.unit(5 + 3 / 12, "feet"),
  20481. weight: math.unit(137, "lb"),
  20482. name: "Front",
  20483. image: {
  20484. source: "./media/characters/sasha-katraine/front.svg",
  20485. bottom: 0.045
  20486. }
  20487. },
  20488. },
  20489. [
  20490. {
  20491. name: "Micro",
  20492. height: math.unit(5, "inches")
  20493. },
  20494. {
  20495. name: "Normal",
  20496. height: math.unit(5 + 3 / 12, "feet"),
  20497. default: true
  20498. },
  20499. ]
  20500. ))
  20501. characterMakers.push(() => makeCharacter(
  20502. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20503. {
  20504. side: {
  20505. height: math.unit(4, "inches"),
  20506. weight: math.unit(200, "grams"),
  20507. name: "Side",
  20508. image: {
  20509. source: "./media/characters/der/side.svg",
  20510. extra: 719 / 400,
  20511. bottom: 30.6 / 749.9187
  20512. }
  20513. },
  20514. },
  20515. [
  20516. {
  20517. name: "Micro",
  20518. height: math.unit(4, "inches"),
  20519. default: true
  20520. },
  20521. ]
  20522. ))
  20523. characterMakers.push(() => makeCharacter(
  20524. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20525. {
  20526. side: {
  20527. height: math.unit(30, "meters"),
  20528. weight: math.unit(700, "tonnes"),
  20529. name: "Side",
  20530. image: {
  20531. source: "./media/characters/fixerdragon/side.svg",
  20532. extra: (1293.0514 - 116.03) / 1106.86,
  20533. bottom: 116.03 / 1293.0514
  20534. }
  20535. },
  20536. },
  20537. [
  20538. {
  20539. name: "Planck",
  20540. height: math.unit(1.6e-35, "meters")
  20541. },
  20542. {
  20543. name: "Micro",
  20544. height: math.unit(0.4, "meters")
  20545. },
  20546. {
  20547. name: "Normal",
  20548. height: math.unit(30, "meters"),
  20549. default: true
  20550. },
  20551. {
  20552. name: "Megamacro",
  20553. height: math.unit(1.2, "megameters")
  20554. },
  20555. {
  20556. name: "Teramacro",
  20557. height: math.unit(130, "terameters")
  20558. },
  20559. {
  20560. name: "Yottamacro",
  20561. height: math.unit(6200, "yottameters")
  20562. },
  20563. ]
  20564. ));
  20565. characterMakers.push(() => makeCharacter(
  20566. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20567. {
  20568. front: {
  20569. height: math.unit(8, "feet"),
  20570. weight: math.unit(250, "lb"),
  20571. name: "Front",
  20572. image: {
  20573. source: "./media/characters/kite/front.svg",
  20574. extra: 2796 / 2659,
  20575. bottom: 0.002
  20576. }
  20577. },
  20578. },
  20579. [
  20580. {
  20581. name: "Normal",
  20582. height: math.unit(8, "feet"),
  20583. default: true
  20584. },
  20585. {
  20586. name: "Macro",
  20587. height: math.unit(360, "feet")
  20588. },
  20589. {
  20590. name: "Megamacro",
  20591. height: math.unit(1500, "feet")
  20592. },
  20593. ]
  20594. ))
  20595. characterMakers.push(() => makeCharacter(
  20596. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20597. {
  20598. front: {
  20599. height: math.unit(5 + 10 / 12, "feet"),
  20600. weight: math.unit(150, "lb"),
  20601. name: "Front",
  20602. image: {
  20603. source: "./media/characters/poojawa-vynar/front.svg",
  20604. extra: (1506.1547 - 55) / 1356.6,
  20605. bottom: 55 / 1506.1547
  20606. }
  20607. },
  20608. frontTailless: {
  20609. height: math.unit(5 + 10 / 12, "feet"),
  20610. weight: math.unit(150, "lb"),
  20611. name: "Front (Tailless)",
  20612. image: {
  20613. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20614. extra: (1506.1547 - 55) / 1356.6,
  20615. bottom: 55 / 1506.1547
  20616. }
  20617. },
  20618. },
  20619. [
  20620. {
  20621. name: "Normal",
  20622. height: math.unit(5 + 10 / 12, "feet"),
  20623. default: true
  20624. },
  20625. ]
  20626. ))
  20627. characterMakers.push(() => makeCharacter(
  20628. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20629. {
  20630. front: {
  20631. height: math.unit(293, "meters"),
  20632. weight: math.unit(70400, "tons"),
  20633. name: "Front",
  20634. image: {
  20635. source: "./media/characters/violette/front.svg",
  20636. extra: 1227 / 1180,
  20637. bottom: 0.005
  20638. }
  20639. },
  20640. back: {
  20641. height: math.unit(293, "meters"),
  20642. weight: math.unit(70400, "tons"),
  20643. name: "Back",
  20644. image: {
  20645. source: "./media/characters/violette/back.svg",
  20646. extra: 1227 / 1180,
  20647. bottom: 0.005
  20648. }
  20649. },
  20650. },
  20651. [
  20652. {
  20653. name: "Macro",
  20654. height: math.unit(293, "meters"),
  20655. default: true
  20656. },
  20657. ]
  20658. ))
  20659. characterMakers.push(() => makeCharacter(
  20660. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20661. {
  20662. front: {
  20663. height: math.unit(1050, "feet"),
  20664. weight: math.unit(200000, "tons"),
  20665. name: "Front",
  20666. image: {
  20667. source: "./media/characters/alessandra/front.svg",
  20668. extra: 960 / 912,
  20669. bottom: 0.06
  20670. }
  20671. },
  20672. },
  20673. [
  20674. {
  20675. name: "Macro",
  20676. height: math.unit(1050, "feet")
  20677. },
  20678. {
  20679. name: "Macro+",
  20680. height: math.unit(900, "meters"),
  20681. default: true
  20682. },
  20683. ]
  20684. ))
  20685. characterMakers.push(() => makeCharacter(
  20686. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20687. {
  20688. front: {
  20689. height: math.unit(5, "feet"),
  20690. weight: math.unit(187, "lb"),
  20691. name: "Front",
  20692. image: {
  20693. source: "./media/characters/person/front.svg",
  20694. extra: 3087 / 2945,
  20695. bottom: 91 / 3181
  20696. }
  20697. },
  20698. },
  20699. [
  20700. {
  20701. name: "Micro",
  20702. height: math.unit(3, "inches")
  20703. },
  20704. {
  20705. name: "Normal",
  20706. height: math.unit(5, "feet"),
  20707. default: true
  20708. },
  20709. {
  20710. name: "Macro",
  20711. height: math.unit(90, "feet")
  20712. },
  20713. {
  20714. name: "Max Size",
  20715. height: math.unit(280, "feet")
  20716. },
  20717. ]
  20718. ))
  20719. characterMakers.push(() => makeCharacter(
  20720. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20721. {
  20722. front: {
  20723. height: math.unit(4.5, "meters"),
  20724. weight: math.unit(3200, "lb"),
  20725. name: "Front",
  20726. image: {
  20727. source: "./media/characters/ty/front.svg",
  20728. extra: 1038 / 960,
  20729. bottom: 31.156 / 1068
  20730. }
  20731. },
  20732. back: {
  20733. height: math.unit(4.5, "meters"),
  20734. weight: math.unit(3200, "lb"),
  20735. name: "Back",
  20736. image: {
  20737. source: "./media/characters/ty/back.svg",
  20738. extra: 1044 / 966,
  20739. bottom: 7.48 / 1049
  20740. }
  20741. },
  20742. },
  20743. [
  20744. {
  20745. name: "Normal",
  20746. height: math.unit(4.5, "meters"),
  20747. default: true
  20748. },
  20749. ]
  20750. ))
  20751. characterMakers.push(() => makeCharacter(
  20752. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20753. {
  20754. front: {
  20755. height: math.unit(5 + 4 / 12, "feet"),
  20756. weight: math.unit(115, "lb"),
  20757. name: "Front",
  20758. image: {
  20759. source: "./media/characters/rocky/front.svg",
  20760. extra: 1012 / 975,
  20761. bottom: 54 / 1066
  20762. }
  20763. },
  20764. },
  20765. [
  20766. {
  20767. name: "Normal",
  20768. height: math.unit(5 + 4 / 12, "feet"),
  20769. default: true
  20770. },
  20771. ]
  20772. ))
  20773. characterMakers.push(() => makeCharacter(
  20774. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20775. {
  20776. upright: {
  20777. height: math.unit(6, "meters"),
  20778. weight: math.unit(4000, "kg"),
  20779. name: "Upright",
  20780. image: {
  20781. source: "./media/characters/ruin/upright.svg",
  20782. extra: 668 / 661,
  20783. bottom: 42 / 799.8396
  20784. }
  20785. },
  20786. },
  20787. [
  20788. {
  20789. name: "Normal",
  20790. height: math.unit(6, "meters"),
  20791. default: true
  20792. },
  20793. ]
  20794. ))
  20795. characterMakers.push(() => makeCharacter(
  20796. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20797. {
  20798. front: {
  20799. height: math.unit(5, "feet"),
  20800. weight: math.unit(106, "lb"),
  20801. name: "Front",
  20802. image: {
  20803. source: "./media/characters/robin/front.svg",
  20804. extra: 862 / 799,
  20805. bottom: 42.4 / 914.8856
  20806. }
  20807. },
  20808. },
  20809. [
  20810. {
  20811. name: "Normal",
  20812. height: math.unit(5, "feet"),
  20813. default: true
  20814. },
  20815. ]
  20816. ))
  20817. characterMakers.push(() => makeCharacter(
  20818. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20819. {
  20820. side: {
  20821. height: math.unit(3, "feet"),
  20822. weight: math.unit(225, "lb"),
  20823. name: "Side",
  20824. image: {
  20825. source: "./media/characters/saian/side.svg",
  20826. extra: 566 / 356,
  20827. bottom: 79.7 / 643
  20828. }
  20829. },
  20830. maw: {
  20831. height: math.unit(2.85, "feet"),
  20832. name: "Maw",
  20833. image: {
  20834. source: "./media/characters/saian/maw.svg"
  20835. }
  20836. },
  20837. },
  20838. [
  20839. {
  20840. name: "Normal",
  20841. height: math.unit(3, "feet"),
  20842. default: true
  20843. },
  20844. ]
  20845. ))
  20846. characterMakers.push(() => makeCharacter(
  20847. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20848. {
  20849. side: {
  20850. height: math.unit(8, "feet"),
  20851. weight: math.unit(300, "lb"),
  20852. name: "Side",
  20853. image: {
  20854. source: "./media/characters/equus-silvermane/side.svg",
  20855. extra: 2176 / 2050,
  20856. bottom: 65.7 / 2245
  20857. }
  20858. },
  20859. front: {
  20860. height: math.unit(8, "feet"),
  20861. weight: math.unit(300, "lb"),
  20862. name: "Front",
  20863. image: {
  20864. source: "./media/characters/equus-silvermane/front.svg",
  20865. extra: 4633 / 4400,
  20866. bottom: 71.3 / 4706.915
  20867. }
  20868. },
  20869. sideStepping: {
  20870. height: math.unit(8, "feet"),
  20871. weight: math.unit(300, "lb"),
  20872. name: "Side (Stepping)",
  20873. image: {
  20874. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20875. extra: 1968 / 1860,
  20876. bottom: 16.4 / 1989
  20877. }
  20878. },
  20879. },
  20880. [
  20881. {
  20882. name: "Normal",
  20883. height: math.unit(8, "feet")
  20884. },
  20885. {
  20886. name: "Minimacro",
  20887. height: math.unit(75, "feet"),
  20888. default: true
  20889. },
  20890. {
  20891. name: "Macro",
  20892. height: math.unit(150, "feet")
  20893. },
  20894. {
  20895. name: "Macro+",
  20896. height: math.unit(1000, "feet")
  20897. },
  20898. {
  20899. name: "Megamacro",
  20900. height: math.unit(1, "mile")
  20901. },
  20902. ]
  20903. ))
  20904. characterMakers.push(() => makeCharacter(
  20905. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20906. {
  20907. side: {
  20908. height: math.unit(20, "feet"),
  20909. weight: math.unit(30000, "kg"),
  20910. name: "Side",
  20911. image: {
  20912. source: "./media/characters/windar/side.svg",
  20913. extra: 1491 / 1248,
  20914. bottom: 82.56 / 1568
  20915. }
  20916. },
  20917. },
  20918. [
  20919. {
  20920. name: "Normal",
  20921. height: math.unit(20, "feet"),
  20922. default: true
  20923. },
  20924. ]
  20925. ))
  20926. characterMakers.push(() => makeCharacter(
  20927. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20928. {
  20929. side: {
  20930. height: math.unit(15.66, "feet"),
  20931. weight: math.unit(150, "lb"),
  20932. name: "Side",
  20933. image: {
  20934. source: "./media/characters/melody/side.svg",
  20935. extra: 1097 / 944,
  20936. bottom: 11.8 / 1109
  20937. }
  20938. },
  20939. sideOutfit: {
  20940. height: math.unit(15.66, "feet"),
  20941. weight: math.unit(150, "lb"),
  20942. name: "Side (Outfit)",
  20943. image: {
  20944. source: "./media/characters/melody/side-outfit.svg",
  20945. extra: 1097 / 944,
  20946. bottom: 11.8 / 1109
  20947. }
  20948. },
  20949. },
  20950. [
  20951. {
  20952. name: "Normal",
  20953. height: math.unit(15.66, "feet"),
  20954. default: true
  20955. },
  20956. ]
  20957. ))
  20958. characterMakers.push(() => makeCharacter(
  20959. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20960. {
  20961. front: {
  20962. height: math.unit(8, "feet"),
  20963. weight: math.unit(325, "lb"),
  20964. name: "Front",
  20965. image: {
  20966. source: "./media/characters/windera/front.svg",
  20967. extra: 3180 / 2845,
  20968. bottom: 178 / 3365
  20969. }
  20970. },
  20971. },
  20972. [
  20973. {
  20974. name: "Normal",
  20975. height: math.unit(8, "feet"),
  20976. default: true
  20977. },
  20978. ]
  20979. ))
  20980. characterMakers.push(() => makeCharacter(
  20981. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20982. {
  20983. front: {
  20984. height: math.unit(28.75, "feet"),
  20985. weight: math.unit(2000, "kg"),
  20986. name: "Front",
  20987. image: {
  20988. source: "./media/characters/sonear/front.svg",
  20989. extra: 1041.1 / 964.9,
  20990. bottom: 53.7 / 1096.6
  20991. }
  20992. },
  20993. },
  20994. [
  20995. {
  20996. name: "Normal",
  20997. height: math.unit(28.75, "feet"),
  20998. default: true
  20999. },
  21000. ]
  21001. ))
  21002. characterMakers.push(() => makeCharacter(
  21003. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21004. {
  21005. side: {
  21006. height: math.unit(25.5, "feet"),
  21007. weight: math.unit(23000, "kg"),
  21008. name: "Side",
  21009. image: {
  21010. source: "./media/characters/kanara/side.svg"
  21011. }
  21012. },
  21013. },
  21014. [
  21015. {
  21016. name: "Normal",
  21017. height: math.unit(25.5, "feet"),
  21018. default: true
  21019. },
  21020. ]
  21021. ))
  21022. characterMakers.push(() => makeCharacter(
  21023. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21024. {
  21025. side: {
  21026. height: math.unit(10, "feet"),
  21027. weight: math.unit(1000, "kg"),
  21028. name: "Side",
  21029. image: {
  21030. source: "./media/characters/ereus/side.svg",
  21031. extra: 1157 / 959,
  21032. bottom: 153 / 1312.5
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Normal",
  21039. height: math.unit(10, "feet"),
  21040. default: true
  21041. },
  21042. ]
  21043. ))
  21044. characterMakers.push(() => makeCharacter(
  21045. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21046. {
  21047. side: {
  21048. height: math.unit(4.5, "feet"),
  21049. weight: math.unit(500, "lb"),
  21050. name: "Side",
  21051. image: {
  21052. source: "./media/characters/e-ter/side.svg",
  21053. extra: 1550 / 1248,
  21054. bottom: 146 / 1694
  21055. }
  21056. },
  21057. },
  21058. [
  21059. {
  21060. name: "Normal",
  21061. height: math.unit(4.5, "feet"),
  21062. default: true
  21063. },
  21064. ]
  21065. ))
  21066. characterMakers.push(() => makeCharacter(
  21067. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21068. {
  21069. side: {
  21070. height: math.unit(9.7, "feet"),
  21071. weight: math.unit(4000, "kg"),
  21072. name: "Side",
  21073. image: {
  21074. source: "./media/characters/yamie/side.svg"
  21075. }
  21076. },
  21077. },
  21078. [
  21079. {
  21080. name: "Normal",
  21081. height: math.unit(9.7, "feet"),
  21082. default: true
  21083. },
  21084. ]
  21085. ))
  21086. characterMakers.push(() => makeCharacter(
  21087. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21088. {
  21089. front: {
  21090. height: math.unit(50, "feet"),
  21091. weight: math.unit(50000, "kg"),
  21092. name: "Front",
  21093. image: {
  21094. source: "./media/characters/anders/front.svg",
  21095. extra: 570 / 539,
  21096. bottom: 14.7 / 586.7
  21097. }
  21098. },
  21099. },
  21100. [
  21101. {
  21102. name: "Large",
  21103. height: math.unit(50, "feet")
  21104. },
  21105. {
  21106. name: "Macro",
  21107. height: math.unit(2000, "feet"),
  21108. default: true
  21109. },
  21110. {
  21111. name: "Megamacro",
  21112. height: math.unit(12, "miles")
  21113. },
  21114. ]
  21115. ))
  21116. characterMakers.push(() => makeCharacter(
  21117. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21118. {
  21119. front: {
  21120. height: math.unit(7 + 2 / 12, "feet"),
  21121. weight: math.unit(300, "lb"),
  21122. name: "Front",
  21123. image: {
  21124. source: "./media/characters/reban/front.svg",
  21125. extra: 516 / 487,
  21126. bottom: 42.82 / 558.356
  21127. }
  21128. },
  21129. dick: {
  21130. height: math.unit(7 / 5, "feet"),
  21131. name: "Dick",
  21132. image: {
  21133. source: "./media/characters/reban/dick.svg"
  21134. }
  21135. },
  21136. },
  21137. [
  21138. {
  21139. name: "Natural Height",
  21140. height: math.unit(7 + 2 / 12, "feet")
  21141. },
  21142. {
  21143. name: "Macro",
  21144. height: math.unit(500, "feet"),
  21145. default: true
  21146. },
  21147. {
  21148. name: "Canon Height",
  21149. height: math.unit(50, "AU")
  21150. },
  21151. ]
  21152. ))
  21153. characterMakers.push(() => makeCharacter(
  21154. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21155. {
  21156. front: {
  21157. height: math.unit(6, "feet"),
  21158. weight: math.unit(150, "lb"),
  21159. name: "Front",
  21160. image: {
  21161. source: "./media/characters/terrance-keayes/front.svg",
  21162. extra: 1.005,
  21163. bottom: 151 / 1615
  21164. }
  21165. },
  21166. side: {
  21167. height: math.unit(6, "feet"),
  21168. weight: math.unit(150, "lb"),
  21169. name: "Side",
  21170. image: {
  21171. source: "./media/characters/terrance-keayes/side.svg",
  21172. extra: 1.005,
  21173. bottom: 129.4 / 1544
  21174. }
  21175. },
  21176. back: {
  21177. height: math.unit(6, "feet"),
  21178. weight: math.unit(150, "lb"),
  21179. name: "Back",
  21180. image: {
  21181. source: "./media/characters/terrance-keayes/back.svg",
  21182. extra: 1.005,
  21183. bottom: 58.4 / 1557.3
  21184. }
  21185. },
  21186. dick: {
  21187. height: math.unit(6 * 0.208, "feet"),
  21188. name: "Dick",
  21189. image: {
  21190. source: "./media/characters/terrance-keayes/dick.svg"
  21191. }
  21192. },
  21193. },
  21194. [
  21195. {
  21196. name: "Canon Height",
  21197. height: math.unit(35, "miles"),
  21198. default: true
  21199. },
  21200. ]
  21201. ))
  21202. characterMakers.push(() => makeCharacter(
  21203. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21204. {
  21205. front: {
  21206. height: math.unit(6, "feet"),
  21207. weight: math.unit(150, "lb"),
  21208. name: "Front",
  21209. image: {
  21210. source: "./media/characters/ofelia/front.svg",
  21211. extra: 546 / 541,
  21212. bottom: 39 / 583
  21213. }
  21214. },
  21215. back: {
  21216. height: math.unit(6, "feet"),
  21217. weight: math.unit(150, "lb"),
  21218. name: "Back",
  21219. image: {
  21220. source: "./media/characters/ofelia/back.svg",
  21221. extra: 564 / 559.5,
  21222. bottom: 8.69 / 573.02
  21223. }
  21224. },
  21225. maw: {
  21226. height: math.unit(1, "feet"),
  21227. name: "Maw",
  21228. image: {
  21229. source: "./media/characters/ofelia/maw.svg"
  21230. }
  21231. },
  21232. foot: {
  21233. height: math.unit(1.949, "feet"),
  21234. name: "Foot",
  21235. image: {
  21236. source: "./media/characters/ofelia/foot.svg"
  21237. }
  21238. },
  21239. },
  21240. [
  21241. {
  21242. name: "Canon Height",
  21243. height: math.unit(2000, "miles"),
  21244. default: true
  21245. },
  21246. ]
  21247. ))
  21248. characterMakers.push(() => makeCharacter(
  21249. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21250. {
  21251. front: {
  21252. height: math.unit(6, "feet"),
  21253. weight: math.unit(150, "lb"),
  21254. name: "Front",
  21255. image: {
  21256. source: "./media/characters/samuel/front.svg",
  21257. extra: 265 / 258,
  21258. bottom: 2 / 266.1566
  21259. }
  21260. },
  21261. },
  21262. [
  21263. {
  21264. name: "Macro",
  21265. height: math.unit(100, "feet"),
  21266. default: true
  21267. },
  21268. {
  21269. name: "Full Size",
  21270. height: math.unit(1000, "miles")
  21271. },
  21272. ]
  21273. ))
  21274. characterMakers.push(() => makeCharacter(
  21275. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21276. {
  21277. front: {
  21278. height: math.unit(6, "feet"),
  21279. weight: math.unit(300, "lb"),
  21280. name: "Front",
  21281. image: {
  21282. source: "./media/characters/beishir-kiel/front.svg",
  21283. extra: 569 / 547,
  21284. bottom: 41.9 / 609
  21285. }
  21286. },
  21287. maw: {
  21288. height: math.unit(6 * 0.202, "feet"),
  21289. name: "Maw",
  21290. image: {
  21291. source: "./media/characters/beishir-kiel/maw.svg"
  21292. }
  21293. },
  21294. },
  21295. [
  21296. {
  21297. name: "Macro",
  21298. height: math.unit(300, "feet"),
  21299. default: true
  21300. },
  21301. ]
  21302. ))
  21303. characterMakers.push(() => makeCharacter(
  21304. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21305. {
  21306. front: {
  21307. height: math.unit(5 + 8 / 12, "feet"),
  21308. weight: math.unit(120, "lb"),
  21309. name: "Front",
  21310. image: {
  21311. source: "./media/characters/logan-grey/front.svg",
  21312. extra: 2539 / 2393,
  21313. bottom: 97.6 / 2636.37
  21314. }
  21315. },
  21316. frontAlt: {
  21317. height: math.unit(5 + 8 / 12, "feet"),
  21318. weight: math.unit(120, "lb"),
  21319. name: "Front (Alt)",
  21320. image: {
  21321. source: "./media/characters/logan-grey/front-alt.svg",
  21322. extra: 958 / 893,
  21323. bottom: 15 / 970.768
  21324. }
  21325. },
  21326. back: {
  21327. height: math.unit(5 + 8 / 12, "feet"),
  21328. weight: math.unit(120, "lb"),
  21329. name: "Back",
  21330. image: {
  21331. source: "./media/characters/logan-grey/back.svg",
  21332. extra: 958 / 893,
  21333. bottom: 2.1881 / 970.9788
  21334. }
  21335. },
  21336. dick: {
  21337. height: math.unit(1.437, "feet"),
  21338. name: "Dick",
  21339. image: {
  21340. source: "./media/characters/logan-grey/dick.svg"
  21341. }
  21342. },
  21343. },
  21344. [
  21345. {
  21346. name: "Normal",
  21347. height: math.unit(5 + 8 / 12, "feet")
  21348. },
  21349. {
  21350. name: "The 500 Foot Femboy",
  21351. height: math.unit(500, "feet"),
  21352. default: true
  21353. },
  21354. {
  21355. name: "Megmacro",
  21356. height: math.unit(20, "miles")
  21357. },
  21358. ]
  21359. ))
  21360. characterMakers.push(() => makeCharacter(
  21361. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21362. {
  21363. front: {
  21364. height: math.unit(8 + 2 / 12, "feet"),
  21365. weight: math.unit(275, "lb"),
  21366. name: "Front",
  21367. image: {
  21368. source: "./media/characters/draganta/front.svg",
  21369. extra: 1177 / 1135,
  21370. bottom: 33.46 / 1212.1
  21371. }
  21372. },
  21373. },
  21374. [
  21375. {
  21376. name: "Normal",
  21377. height: math.unit(8 + 6 / 12, "feet"),
  21378. default: true
  21379. },
  21380. {
  21381. name: "Macro",
  21382. height: math.unit(150, "feet")
  21383. },
  21384. {
  21385. name: "Megamacro",
  21386. height: math.unit(1000, "miles")
  21387. },
  21388. ]
  21389. ))
  21390. characterMakers.push(() => makeCharacter(
  21391. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21392. {
  21393. front: {
  21394. height: math.unit(1.72, "m"),
  21395. weight: math.unit(80, "lb"),
  21396. name: "Front",
  21397. image: {
  21398. source: "./media/characters/voski/front.svg",
  21399. extra: 2076.22 / 2022.4,
  21400. bottom: 102.7 / 2177.3866
  21401. }
  21402. },
  21403. frontNsfw: {
  21404. height: math.unit(1.72, "m"),
  21405. weight: math.unit(80, "lb"),
  21406. name: "Front (NSFW)",
  21407. image: {
  21408. source: "./media/characters/voski/front-nsfw.svg",
  21409. extra: 2076.22 / 2022.4,
  21410. bottom: 102.7 / 2177.3866
  21411. }
  21412. },
  21413. back: {
  21414. height: math.unit(1.72, "m"),
  21415. weight: math.unit(80, "lb"),
  21416. name: "Back",
  21417. image: {
  21418. source: "./media/characters/voski/back.svg",
  21419. extra: 2104 / 2051,
  21420. bottom: 10.45 / 2113.63
  21421. }
  21422. },
  21423. },
  21424. [
  21425. {
  21426. name: "Normal",
  21427. height: math.unit(1.72, "m")
  21428. },
  21429. {
  21430. name: "Macro",
  21431. height: math.unit(55, "m"),
  21432. default: true
  21433. },
  21434. {
  21435. name: "Macro+",
  21436. height: math.unit(300, "m")
  21437. },
  21438. {
  21439. name: "Macro++",
  21440. height: math.unit(700, "m")
  21441. },
  21442. {
  21443. name: "Macro+++",
  21444. height: math.unit(4500, "m")
  21445. },
  21446. {
  21447. name: "Macro++++",
  21448. height: math.unit(45, "km")
  21449. },
  21450. {
  21451. name: "Macro+++++",
  21452. height: math.unit(1220, "km")
  21453. },
  21454. ]
  21455. ))
  21456. characterMakers.push(() => makeCharacter(
  21457. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21458. {
  21459. front: {
  21460. height: math.unit(2.3, "m"),
  21461. weight: math.unit(304, "kg"),
  21462. name: "Front",
  21463. image: {
  21464. source: "./media/characters/icowom-lee/front.svg",
  21465. extra: 985 / 955,
  21466. bottom: 25.4 / 1012
  21467. }
  21468. },
  21469. fronttentacles: {
  21470. height: math.unit(2.3, "m"),
  21471. weight: math.unit(304, "kg"),
  21472. name: "Front-tentacles",
  21473. image: {
  21474. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21475. extra: 985 / 955,
  21476. bottom: 25.4 / 1012
  21477. }
  21478. },
  21479. back: {
  21480. height: math.unit(2.3, "m"),
  21481. weight: math.unit(304, "kg"),
  21482. name: "Back",
  21483. image: {
  21484. source: "./media/characters/icowom-lee/back.svg",
  21485. extra: 975 / 954,
  21486. bottom: 9.5 / 985
  21487. }
  21488. },
  21489. backtentacles: {
  21490. height: math.unit(2.3, "m"),
  21491. weight: math.unit(304, "kg"),
  21492. name: "Back-tentacles",
  21493. image: {
  21494. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21495. extra: 975 / 954,
  21496. bottom: 9.5 / 985
  21497. }
  21498. },
  21499. frontDressed: {
  21500. height: math.unit(2.3, "m"),
  21501. weight: math.unit(304, "kg"),
  21502. name: "Front (Dressed)",
  21503. image: {
  21504. source: "./media/characters/icowom-lee/front-dressed.svg",
  21505. extra: 3076 / 2933,
  21506. bottom: 51.4 / 3125.1889
  21507. }
  21508. },
  21509. rump: {
  21510. height: math.unit(0.776, "meters"),
  21511. name: "Rump",
  21512. image: {
  21513. source: "./media/characters/icowom-lee/rump.svg"
  21514. }
  21515. },
  21516. genitals: {
  21517. height: math.unit(0.78, "meters"),
  21518. name: "Genitals",
  21519. image: {
  21520. source: "./media/characters/icowom-lee/genitals.svg"
  21521. }
  21522. },
  21523. },
  21524. [
  21525. {
  21526. name: "Normal",
  21527. height: math.unit(2.3, "meters"),
  21528. default: true
  21529. },
  21530. {
  21531. name: "Macro",
  21532. height: math.unit(94, "meters"),
  21533. default: true
  21534. },
  21535. ]
  21536. ))
  21537. characterMakers.push(() => makeCharacter(
  21538. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21539. {
  21540. front: {
  21541. height: math.unit(22, "meters"),
  21542. weight: math.unit(21000, "kg"),
  21543. name: "Front",
  21544. image: {
  21545. source: "./media/characters/shock-diamond/front.svg",
  21546. extra: 2204 / 2053,
  21547. bottom: 65 / 2239.47
  21548. }
  21549. },
  21550. frontNude: {
  21551. height: math.unit(22, "meters"),
  21552. weight: math.unit(21000, "kg"),
  21553. name: "Front (Nude)",
  21554. image: {
  21555. source: "./media/characters/shock-diamond/front-nude.svg",
  21556. extra: 2514 / 2285,
  21557. bottom: 13 / 2527.56
  21558. }
  21559. },
  21560. },
  21561. [
  21562. {
  21563. name: "Normal",
  21564. height: math.unit(3, "meters")
  21565. },
  21566. {
  21567. name: "Macro",
  21568. height: math.unit(22, "meters"),
  21569. default: true
  21570. },
  21571. ]
  21572. ))
  21573. characterMakers.push(() => makeCharacter(
  21574. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21575. {
  21576. front: {
  21577. height: math.unit(5 + 4 / 12, "feet"),
  21578. weight: math.unit(120, "lb"),
  21579. name: "Front",
  21580. image: {
  21581. source: "./media/characters/rory/front.svg",
  21582. extra: 589 / 556,
  21583. bottom: 45.7 / 635.76
  21584. }
  21585. },
  21586. frontNude: {
  21587. height: math.unit(5 + 4 / 12, "feet"),
  21588. weight: math.unit(120, "lb"),
  21589. name: "Front (Nude)",
  21590. image: {
  21591. source: "./media/characters/rory/front-nude.svg",
  21592. extra: 589 / 556,
  21593. bottom: 45.7 / 635.76
  21594. }
  21595. },
  21596. side: {
  21597. height: math.unit(5 + 4 / 12, "feet"),
  21598. weight: math.unit(120, "lb"),
  21599. name: "Side",
  21600. image: {
  21601. source: "./media/characters/rory/side.svg",
  21602. extra: 597 / 564,
  21603. bottom: 55 / 653
  21604. }
  21605. },
  21606. back: {
  21607. height: math.unit(5 + 4 / 12, "feet"),
  21608. weight: math.unit(120, "lb"),
  21609. name: "Back",
  21610. image: {
  21611. source: "./media/characters/rory/back.svg",
  21612. extra: 620 / 585,
  21613. bottom: 8.86 / 630.43
  21614. }
  21615. },
  21616. dick: {
  21617. height: math.unit(0.86, "feet"),
  21618. name: "Dick",
  21619. image: {
  21620. source: "./media/characters/rory/dick.svg"
  21621. }
  21622. },
  21623. },
  21624. [
  21625. {
  21626. name: "Normal",
  21627. height: math.unit(5 + 4 / 12, "feet"),
  21628. default: true
  21629. },
  21630. {
  21631. name: "Macro",
  21632. height: math.unit(100, "feet")
  21633. },
  21634. {
  21635. name: "Macro+",
  21636. height: math.unit(140, "feet")
  21637. },
  21638. {
  21639. name: "Macro++",
  21640. height: math.unit(300, "feet")
  21641. },
  21642. ]
  21643. ))
  21644. characterMakers.push(() => makeCharacter(
  21645. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21646. {
  21647. front: {
  21648. height: math.unit(5 + 9 / 12, "feet"),
  21649. weight: math.unit(190, "lb"),
  21650. name: "Front",
  21651. image: {
  21652. source: "./media/characters/sprisk/front.svg",
  21653. extra: 1225 / 1180,
  21654. bottom: 42.7 / 1266.4
  21655. }
  21656. },
  21657. frontNsfw: {
  21658. height: math.unit(5 + 9 / 12, "feet"),
  21659. weight: math.unit(190, "lb"),
  21660. name: "Front (NSFW)",
  21661. image: {
  21662. source: "./media/characters/sprisk/front-nsfw.svg",
  21663. extra: 1225 / 1180,
  21664. bottom: 42.7 / 1266.4
  21665. }
  21666. },
  21667. back: {
  21668. height: math.unit(5 + 9 / 12, "feet"),
  21669. weight: math.unit(190, "lb"),
  21670. name: "Back",
  21671. image: {
  21672. source: "./media/characters/sprisk/back.svg",
  21673. extra: 1247 / 1200,
  21674. bottom: 5.6 / 1253.04
  21675. }
  21676. },
  21677. },
  21678. [
  21679. {
  21680. name: "Tiny",
  21681. height: math.unit(2, "inches")
  21682. },
  21683. {
  21684. name: "Normal",
  21685. height: math.unit(5 + 9 / 12, "feet"),
  21686. default: true
  21687. },
  21688. {
  21689. name: "Mini Macro",
  21690. height: math.unit(18, "feet")
  21691. },
  21692. {
  21693. name: "Macro",
  21694. height: math.unit(100, "feet")
  21695. },
  21696. {
  21697. name: "MACRO",
  21698. height: math.unit(50, "miles")
  21699. },
  21700. {
  21701. name: "M A C R O",
  21702. height: math.unit(300, "miles")
  21703. },
  21704. ]
  21705. ))
  21706. characterMakers.push(() => makeCharacter(
  21707. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21708. {
  21709. side: {
  21710. height: math.unit(15.6, "meters"),
  21711. weight: math.unit(700000, "kg"),
  21712. name: "Side",
  21713. image: {
  21714. source: "./media/characters/bunsen/side.svg",
  21715. extra: 1644 / 358
  21716. }
  21717. },
  21718. foot: {
  21719. height: math.unit(1.611 * 1644 / 358, "meter"),
  21720. name: "Foot",
  21721. image: {
  21722. source: "./media/characters/bunsen/foot.svg"
  21723. }
  21724. },
  21725. },
  21726. [
  21727. {
  21728. name: "Small",
  21729. height: math.unit(10, "feet")
  21730. },
  21731. {
  21732. name: "Normal",
  21733. height: math.unit(15.6, "meters"),
  21734. default: true
  21735. },
  21736. ]
  21737. ))
  21738. characterMakers.push(() => makeCharacter(
  21739. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21740. {
  21741. front: {
  21742. height: math.unit(4 + 11 / 12, "feet"),
  21743. weight: math.unit(140, "lb"),
  21744. name: "Front",
  21745. image: {
  21746. source: "./media/characters/sesh/front.svg",
  21747. extra: 3420 / 3231,
  21748. bottom: 72 / 3949.5
  21749. }
  21750. },
  21751. },
  21752. [
  21753. {
  21754. name: "Normal",
  21755. height: math.unit(4 + 11 / 12, "feet")
  21756. },
  21757. {
  21758. name: "Grown",
  21759. height: math.unit(15, "feet"),
  21760. default: true
  21761. },
  21762. {
  21763. name: "Macro",
  21764. height: math.unit(1500, "feet")
  21765. },
  21766. {
  21767. name: "Megamacro",
  21768. height: math.unit(30, "miles")
  21769. },
  21770. {
  21771. name: "Continental",
  21772. height: math.unit(3000, "miles")
  21773. },
  21774. {
  21775. name: "Gravity Mass",
  21776. height: math.unit(300000, "miles")
  21777. },
  21778. {
  21779. name: "Planet Buster",
  21780. height: math.unit(30000000, "miles")
  21781. },
  21782. {
  21783. name: "Big",
  21784. height: math.unit(3000000000, "miles")
  21785. },
  21786. ]
  21787. ))
  21788. characterMakers.push(() => makeCharacter(
  21789. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21790. {
  21791. front: {
  21792. height: math.unit(9, "feet"),
  21793. weight: math.unit(350, "lb"),
  21794. name: "Front",
  21795. image: {
  21796. source: "./media/characters/pepper/front.svg",
  21797. extra: 1448 / 1312,
  21798. bottom: 9.4 / 1457.88
  21799. }
  21800. },
  21801. back: {
  21802. height: math.unit(9, "feet"),
  21803. weight: math.unit(350, "lb"),
  21804. name: "Back",
  21805. image: {
  21806. source: "./media/characters/pepper/back.svg",
  21807. extra: 1423 / 1300,
  21808. bottom: 4.6 / 1429
  21809. }
  21810. },
  21811. maw: {
  21812. height: math.unit(0.932, "feet"),
  21813. name: "Maw",
  21814. image: {
  21815. source: "./media/characters/pepper/maw.svg"
  21816. }
  21817. },
  21818. },
  21819. [
  21820. {
  21821. name: "Normal",
  21822. height: math.unit(9, "feet"),
  21823. default: true
  21824. },
  21825. ]
  21826. ))
  21827. characterMakers.push(() => makeCharacter(
  21828. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21829. {
  21830. front: {
  21831. height: math.unit(6, "feet"),
  21832. weight: math.unit(150, "lb"),
  21833. name: "Front",
  21834. image: {
  21835. source: "./media/characters/maelstrom/front.svg",
  21836. extra: 2100 / 1883,
  21837. bottom: 94 / 2196.7
  21838. }
  21839. },
  21840. },
  21841. [
  21842. {
  21843. name: "Less Kaiju",
  21844. height: math.unit(200, "feet")
  21845. },
  21846. {
  21847. name: "Kaiju",
  21848. height: math.unit(400, "feet"),
  21849. default: true
  21850. },
  21851. {
  21852. name: "Kaiju-er",
  21853. height: math.unit(600, "feet")
  21854. },
  21855. ]
  21856. ))
  21857. characterMakers.push(() => makeCharacter(
  21858. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21859. {
  21860. front: {
  21861. height: math.unit(6 + 5 / 12, "feet"),
  21862. weight: math.unit(180, "lb"),
  21863. name: "Front",
  21864. image: {
  21865. source: "./media/characters/lexir/front.svg",
  21866. extra: 180 / 172,
  21867. bottom: 12 / 192
  21868. }
  21869. },
  21870. back: {
  21871. height: math.unit(6 + 5 / 12, "feet"),
  21872. weight: math.unit(180, "lb"),
  21873. name: "Back",
  21874. image: {
  21875. source: "./media/characters/lexir/back.svg",
  21876. extra: 183.84 / 175.5,
  21877. bottom: 3.1 / 187
  21878. }
  21879. },
  21880. },
  21881. [
  21882. {
  21883. name: "Very Smal",
  21884. height: math.unit(1, "nm")
  21885. },
  21886. {
  21887. name: "Normal",
  21888. height: math.unit(6 + 5 / 12, "feet"),
  21889. default: true
  21890. },
  21891. {
  21892. name: "Macro",
  21893. height: math.unit(1, "mile")
  21894. },
  21895. {
  21896. name: "Megamacro",
  21897. height: math.unit(50, "miles")
  21898. },
  21899. ]
  21900. ))
  21901. characterMakers.push(() => makeCharacter(
  21902. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21903. {
  21904. front: {
  21905. height: math.unit(1.5, "meters"),
  21906. weight: math.unit(100, "lb"),
  21907. name: "Front",
  21908. image: {
  21909. source: "./media/characters/maksio/front.svg",
  21910. extra: 1549 / 1531,
  21911. bottom: 123.7 / 1674.5429
  21912. }
  21913. },
  21914. back: {
  21915. height: math.unit(1.5, "meters"),
  21916. weight: math.unit(100, "lb"),
  21917. name: "Back",
  21918. image: {
  21919. source: "./media/characters/maksio/back.svg",
  21920. extra: 1541 / 1509,
  21921. bottom: 97 / 1639
  21922. }
  21923. },
  21924. hand: {
  21925. height: math.unit(0.621, "feet"),
  21926. name: "Hand",
  21927. image: {
  21928. source: "./media/characters/maksio/hand.svg"
  21929. }
  21930. },
  21931. foot: {
  21932. height: math.unit(1.611, "feet"),
  21933. name: "Foot",
  21934. image: {
  21935. source: "./media/characters/maksio/foot.svg"
  21936. }
  21937. },
  21938. },
  21939. [
  21940. {
  21941. name: "Shrunken",
  21942. height: math.unit(10, "cm")
  21943. },
  21944. {
  21945. name: "Normal",
  21946. height: math.unit(150, "cm"),
  21947. default: true
  21948. },
  21949. ]
  21950. ))
  21951. characterMakers.push(() => makeCharacter(
  21952. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21953. {
  21954. front: {
  21955. height: math.unit(100, "feet"),
  21956. name: "Front",
  21957. image: {
  21958. source: "./media/characters/erza-bear/front.svg",
  21959. extra: 2449 / 2390,
  21960. bottom: 46 / 2494
  21961. }
  21962. },
  21963. back: {
  21964. height: math.unit(100, "feet"),
  21965. name: "Back",
  21966. image: {
  21967. source: "./media/characters/erza-bear/back.svg",
  21968. extra: 2489 / 2430,
  21969. bottom: 85.4 / 2480
  21970. }
  21971. },
  21972. tail: {
  21973. height: math.unit(42, "feet"),
  21974. name: "Tail",
  21975. image: {
  21976. source: "./media/characters/erza-bear/tail.svg"
  21977. }
  21978. },
  21979. tongue: {
  21980. height: math.unit(8, "feet"),
  21981. name: "Tongue",
  21982. image: {
  21983. source: "./media/characters/erza-bear/tongue.svg"
  21984. }
  21985. },
  21986. dick: {
  21987. height: math.unit(10.5, "feet"),
  21988. name: "Dick",
  21989. image: {
  21990. source: "./media/characters/erza-bear/dick.svg"
  21991. }
  21992. },
  21993. dickVertical: {
  21994. height: math.unit(16.9, "feet"),
  21995. name: "Dick (Vertical)",
  21996. image: {
  21997. source: "./media/characters/erza-bear/dick-vertical.svg"
  21998. }
  21999. },
  22000. },
  22001. [
  22002. {
  22003. name: "Macro",
  22004. height: math.unit(100, "feet"),
  22005. default: true
  22006. },
  22007. ]
  22008. ))
  22009. characterMakers.push(() => makeCharacter(
  22010. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22011. {
  22012. front: {
  22013. height: math.unit(172, "cm"),
  22014. weight: math.unit(73, "kg"),
  22015. name: "Front",
  22016. image: {
  22017. source: "./media/characters/violet-flor/front.svg",
  22018. extra: 1530 / 1442,
  22019. bottom: 61.9 / 1588.8
  22020. }
  22021. },
  22022. back: {
  22023. height: math.unit(180, "cm"),
  22024. weight: math.unit(73, "kg"),
  22025. name: "Back",
  22026. image: {
  22027. source: "./media/characters/violet-flor/back.svg",
  22028. extra: 1692 / 1630,
  22029. bottom: 20 / 1712
  22030. }
  22031. },
  22032. },
  22033. [
  22034. {
  22035. name: "Normal",
  22036. height: math.unit(172, "cm"),
  22037. default: true
  22038. },
  22039. ]
  22040. ))
  22041. characterMakers.push(() => makeCharacter(
  22042. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22043. {
  22044. front: {
  22045. height: math.unit(6, "feet"),
  22046. weight: math.unit(220, "lb"),
  22047. name: "Front",
  22048. image: {
  22049. source: "./media/characters/lynn-rhea/front.svg",
  22050. extra: 310 / 273
  22051. }
  22052. },
  22053. back: {
  22054. height: math.unit(6, "feet"),
  22055. weight: math.unit(220, "lb"),
  22056. name: "Back",
  22057. image: {
  22058. source: "./media/characters/lynn-rhea/back.svg",
  22059. extra: 310 / 273
  22060. }
  22061. },
  22062. dicks: {
  22063. height: math.unit(0.9, "feet"),
  22064. name: "Dicks",
  22065. image: {
  22066. source: "./media/characters/lynn-rhea/dicks.svg"
  22067. }
  22068. },
  22069. slit: {
  22070. height: math.unit(0.4, "feet"),
  22071. name: "Slit",
  22072. image: {
  22073. source: "./media/characters/lynn-rhea/slit.svg"
  22074. }
  22075. },
  22076. },
  22077. [
  22078. {
  22079. name: "Micro",
  22080. height: math.unit(1, "inch")
  22081. },
  22082. {
  22083. name: "Macro",
  22084. height: math.unit(60, "feet"),
  22085. default: true
  22086. },
  22087. {
  22088. name: "Megamacro",
  22089. height: math.unit(2, "miles")
  22090. },
  22091. {
  22092. name: "Gigamacro",
  22093. height: math.unit(3, "earths")
  22094. },
  22095. {
  22096. name: "Galactic",
  22097. height: math.unit(0.8, "galaxies")
  22098. },
  22099. ]
  22100. ))
  22101. characterMakers.push(() => makeCharacter(
  22102. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22103. {
  22104. front: {
  22105. height: math.unit(1600, "feet"),
  22106. weight: math.unit(85758785169, "kg"),
  22107. name: "Front",
  22108. image: {
  22109. source: "./media/characters/valathos/front.svg",
  22110. extra: 1451 / 1339
  22111. }
  22112. },
  22113. },
  22114. [
  22115. {
  22116. name: "Macro",
  22117. height: math.unit(1600, "feet"),
  22118. default: true
  22119. },
  22120. ]
  22121. ))
  22122. characterMakers.push(() => makeCharacter(
  22123. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22124. {
  22125. front: {
  22126. height: math.unit(7 + 5 / 12, "feet"),
  22127. weight: math.unit(300, "lb"),
  22128. name: "Front",
  22129. image: {
  22130. source: "./media/characters/azula/front.svg",
  22131. extra: 3208 / 2880,
  22132. bottom: 80.2 / 3277
  22133. }
  22134. },
  22135. back: {
  22136. height: math.unit(7 + 5 / 12, "feet"),
  22137. weight: math.unit(300, "lb"),
  22138. name: "Back",
  22139. image: {
  22140. source: "./media/characters/azula/back.svg",
  22141. extra: 3169 / 2822,
  22142. bottom: 150.6 / 3321
  22143. }
  22144. },
  22145. },
  22146. [
  22147. {
  22148. name: "Normal",
  22149. height: math.unit(7 + 5 / 12, "feet"),
  22150. default: true
  22151. },
  22152. {
  22153. name: "Big",
  22154. height: math.unit(20, "feet")
  22155. },
  22156. ]
  22157. ))
  22158. characterMakers.push(() => makeCharacter(
  22159. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22160. {
  22161. front: {
  22162. height: math.unit(5 + 1 / 12, "feet"),
  22163. weight: math.unit(110, "lb"),
  22164. name: "Front",
  22165. image: {
  22166. source: "./media/characters/rupert/front.svg",
  22167. extra: 1549 / 1495,
  22168. bottom: 54.2 / 1604.4
  22169. }
  22170. },
  22171. },
  22172. [
  22173. {
  22174. name: "Normal",
  22175. height: math.unit(5 + 1 / 12, "feet"),
  22176. default: true
  22177. },
  22178. ]
  22179. ))
  22180. characterMakers.push(() => makeCharacter(
  22181. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22182. {
  22183. front: {
  22184. height: math.unit(8 + 4 / 12, "feet"),
  22185. weight: math.unit(350, "lb"),
  22186. name: "Front",
  22187. image: {
  22188. source: "./media/characters/sheera-castellar/front.svg",
  22189. extra: 1957 / 1894,
  22190. bottom: 26.97 / 1975.017
  22191. }
  22192. },
  22193. side: {
  22194. height: math.unit(8 + 4 / 12, "feet"),
  22195. weight: math.unit(350, "lb"),
  22196. name: "Side",
  22197. image: {
  22198. source: "./media/characters/sheera-castellar/side.svg",
  22199. extra: 1957 / 1894
  22200. }
  22201. },
  22202. back: {
  22203. height: math.unit(8 + 4 / 12, "feet"),
  22204. weight: math.unit(350, "lb"),
  22205. name: "Back",
  22206. image: {
  22207. source: "./media/characters/sheera-castellar/back.svg",
  22208. extra: 1957 / 1894
  22209. }
  22210. },
  22211. angled: {
  22212. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22213. weight: math.unit(350, "lb"),
  22214. name: "Angled",
  22215. image: {
  22216. source: "./media/characters/sheera-castellar/angled.svg",
  22217. extra: 1807 / 1707,
  22218. bottom: 68 / 1875
  22219. }
  22220. },
  22221. genitals: {
  22222. height: math.unit(2.2, "feet"),
  22223. name: "Genitals",
  22224. image: {
  22225. source: "./media/characters/sheera-castellar/genitals.svg"
  22226. }
  22227. },
  22228. },
  22229. [
  22230. {
  22231. name: "Normal",
  22232. height: math.unit(8 + 4 / 12, "feet")
  22233. },
  22234. {
  22235. name: "Macro",
  22236. height: math.unit(150, "feet"),
  22237. default: true
  22238. },
  22239. {
  22240. name: "Macro+",
  22241. height: math.unit(800, "feet")
  22242. },
  22243. ]
  22244. ))
  22245. characterMakers.push(() => makeCharacter(
  22246. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22247. {
  22248. front: {
  22249. height: math.unit(6, "feet"),
  22250. weight: math.unit(150, "lb"),
  22251. name: "Front",
  22252. image: {
  22253. source: "./media/characters/jaipur/front.svg",
  22254. extra: 3860 / 3731,
  22255. bottom: 287 / 4140
  22256. }
  22257. },
  22258. back: {
  22259. height: math.unit(6, "feet"),
  22260. weight: math.unit(150, "lb"),
  22261. name: "Back",
  22262. image: {
  22263. source: "./media/characters/jaipur/back.svg",
  22264. extra: 4060 / 3930,
  22265. bottom: 151 / 4200
  22266. }
  22267. },
  22268. },
  22269. [
  22270. {
  22271. name: "Normal",
  22272. height: math.unit(1.85, "meters"),
  22273. default: true
  22274. },
  22275. {
  22276. name: "Macro",
  22277. height: math.unit(150, "meters")
  22278. },
  22279. {
  22280. name: "Macro+",
  22281. height: math.unit(0.5, "miles")
  22282. },
  22283. {
  22284. name: "Macro++",
  22285. height: math.unit(2.5, "miles")
  22286. },
  22287. {
  22288. name: "Macro+++",
  22289. height: math.unit(12, "miles")
  22290. },
  22291. {
  22292. name: "Macro++++",
  22293. height: math.unit(120, "miles")
  22294. },
  22295. {
  22296. name: "Macro+++++",
  22297. height: math.unit(1200, "miles")
  22298. },
  22299. ]
  22300. ))
  22301. characterMakers.push(() => makeCharacter(
  22302. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22303. {
  22304. front: {
  22305. height: math.unit(6, "feet"),
  22306. weight: math.unit(150, "lb"),
  22307. name: "Front",
  22308. image: {
  22309. source: "./media/characters/sheila-wolf/front.svg",
  22310. extra: 1931 / 1808,
  22311. bottom: 29.5 / 1960
  22312. }
  22313. },
  22314. dick: {
  22315. height: math.unit(1.464, "feet"),
  22316. name: "Dick",
  22317. image: {
  22318. source: "./media/characters/sheila-wolf/dick.svg"
  22319. }
  22320. },
  22321. muzzle: {
  22322. height: math.unit(0.513, "feet"),
  22323. name: "Muzzle",
  22324. image: {
  22325. source: "./media/characters/sheila-wolf/muzzle.svg"
  22326. }
  22327. },
  22328. },
  22329. [
  22330. {
  22331. name: "Macro",
  22332. height: math.unit(70, "feet"),
  22333. default: true
  22334. },
  22335. ]
  22336. ))
  22337. characterMakers.push(() => makeCharacter(
  22338. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22339. {
  22340. front: {
  22341. height: math.unit(32, "meters"),
  22342. weight: math.unit(300000, "kg"),
  22343. name: "Front",
  22344. image: {
  22345. source: "./media/characters/almor/front.svg",
  22346. extra: 1408 / 1322,
  22347. bottom: 94.6 / 1506.5
  22348. }
  22349. },
  22350. },
  22351. [
  22352. {
  22353. name: "Macro",
  22354. height: math.unit(32, "meters"),
  22355. default: true
  22356. },
  22357. ]
  22358. ))
  22359. characterMakers.push(() => makeCharacter(
  22360. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22361. {
  22362. front: {
  22363. height: math.unit(7, "feet"),
  22364. weight: math.unit(200, "lb"),
  22365. name: "Front",
  22366. image: {
  22367. source: "./media/characters/silver/front.svg",
  22368. extra: 472.1 / 450.5,
  22369. bottom: 26.5 / 499.424
  22370. }
  22371. },
  22372. },
  22373. [
  22374. {
  22375. name: "Normal",
  22376. height: math.unit(7, "feet"),
  22377. default: true
  22378. },
  22379. {
  22380. name: "Macro",
  22381. height: math.unit(800, "feet")
  22382. },
  22383. {
  22384. name: "Megamacro",
  22385. height: math.unit(250, "miles")
  22386. },
  22387. ]
  22388. ))
  22389. characterMakers.push(() => makeCharacter(
  22390. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22391. {
  22392. front: {
  22393. height: math.unit(6, "feet"),
  22394. weight: math.unit(150, "lb"),
  22395. name: "Front",
  22396. image: {
  22397. source: "./media/characters/pliskin/front.svg",
  22398. extra: 1469 / 1359,
  22399. bottom: 70 / 1540
  22400. }
  22401. },
  22402. },
  22403. [
  22404. {
  22405. name: "Micro",
  22406. height: math.unit(3, "inches")
  22407. },
  22408. {
  22409. name: "Normal",
  22410. height: math.unit(5 + 11 / 12, "feet"),
  22411. default: true
  22412. },
  22413. {
  22414. name: "Macro",
  22415. height: math.unit(120, "feet")
  22416. },
  22417. ]
  22418. ))
  22419. characterMakers.push(() => makeCharacter(
  22420. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22421. {
  22422. front: {
  22423. height: math.unit(6, "feet"),
  22424. weight: math.unit(150, "lb"),
  22425. name: "Front",
  22426. image: {
  22427. source: "./media/characters/sammy/front.svg",
  22428. extra: 1193 / 1089,
  22429. bottom: 30.5 / 1226
  22430. }
  22431. },
  22432. },
  22433. [
  22434. {
  22435. name: "Macro",
  22436. height: math.unit(1700, "feet"),
  22437. default: true
  22438. },
  22439. {
  22440. name: "Examacro",
  22441. height: math.unit(2.5e9, "lightyears")
  22442. },
  22443. ]
  22444. ))
  22445. characterMakers.push(() => makeCharacter(
  22446. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22447. {
  22448. front: {
  22449. height: math.unit(21, "meters"),
  22450. weight: math.unit(12, "tonnes"),
  22451. name: "Front",
  22452. image: {
  22453. source: "./media/characters/kuru/front.svg",
  22454. extra: 4301 / 3785,
  22455. bottom: 371.3 / 4691
  22456. }
  22457. },
  22458. },
  22459. [
  22460. {
  22461. name: "Macro",
  22462. height: math.unit(21, "meters"),
  22463. default: true
  22464. },
  22465. ]
  22466. ))
  22467. characterMakers.push(() => makeCharacter(
  22468. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22469. {
  22470. front: {
  22471. height: math.unit(23, "meters"),
  22472. weight: math.unit(12.2, "tonnes"),
  22473. name: "Front",
  22474. image: {
  22475. source: "./media/characters/rakka/front.svg",
  22476. extra: 4670 / 4169,
  22477. bottom: 301 / 4968.7
  22478. }
  22479. },
  22480. },
  22481. [
  22482. {
  22483. name: "Macro",
  22484. height: math.unit(23, "meters"),
  22485. default: true
  22486. },
  22487. ]
  22488. ))
  22489. characterMakers.push(() => makeCharacter(
  22490. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22491. {
  22492. front: {
  22493. height: math.unit(6, "feet"),
  22494. weight: math.unit(150, "lb"),
  22495. name: "Front",
  22496. image: {
  22497. source: "./media/characters/rhys-feline/front.svg",
  22498. extra: 2488 / 2308,
  22499. bottom: 35.67 / 2519.19
  22500. }
  22501. },
  22502. },
  22503. [
  22504. {
  22505. name: "Really Small",
  22506. height: math.unit(1, "nm")
  22507. },
  22508. {
  22509. name: "Micro",
  22510. height: math.unit(4, "inches")
  22511. },
  22512. {
  22513. name: "Normal",
  22514. height: math.unit(4 + 10 / 12, "feet"),
  22515. default: true
  22516. },
  22517. {
  22518. name: "Macro",
  22519. height: math.unit(100, "feet")
  22520. },
  22521. {
  22522. name: "Megamacto",
  22523. height: math.unit(50, "miles")
  22524. },
  22525. ]
  22526. ))
  22527. characterMakers.push(() => makeCharacter(
  22528. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22529. {
  22530. side: {
  22531. height: math.unit(30, "feet"),
  22532. weight: math.unit(35000, "kg"),
  22533. name: "Side",
  22534. image: {
  22535. source: "./media/characters/alydar/side.svg",
  22536. extra: 234 / 222,
  22537. bottom: 6.5 / 241
  22538. }
  22539. },
  22540. front: {
  22541. height: math.unit(30, "feet"),
  22542. weight: math.unit(35000, "kg"),
  22543. name: "Front",
  22544. image: {
  22545. source: "./media/characters/alydar/front.svg",
  22546. extra: 223.37 / 210.2,
  22547. bottom: 22.3 / 246.76
  22548. }
  22549. },
  22550. top: {
  22551. height: math.unit(64.54, "feet"),
  22552. weight: math.unit(35000, "kg"),
  22553. name: "Top",
  22554. image: {
  22555. source: "./media/characters/alydar/top.svg"
  22556. }
  22557. },
  22558. anthro: {
  22559. height: math.unit(30, "feet"),
  22560. weight: math.unit(9000, "kg"),
  22561. name: "Anthro",
  22562. image: {
  22563. source: "./media/characters/alydar/anthro.svg",
  22564. extra: 432 / 421,
  22565. bottom: 7.18 / 440
  22566. }
  22567. },
  22568. maw: {
  22569. height: math.unit(11.693, "feet"),
  22570. name: "Maw",
  22571. image: {
  22572. source: "./media/characters/alydar/maw.svg"
  22573. }
  22574. },
  22575. head: {
  22576. height: math.unit(11.693, "feet"),
  22577. name: "Head",
  22578. image: {
  22579. source: "./media/characters/alydar/head.svg"
  22580. }
  22581. },
  22582. headAlt: {
  22583. height: math.unit(12.861, "feet"),
  22584. name: "Head (Alt)",
  22585. image: {
  22586. source: "./media/characters/alydar/head-alt.svg"
  22587. }
  22588. },
  22589. wing: {
  22590. height: math.unit(20.712, "feet"),
  22591. name: "Wing",
  22592. image: {
  22593. source: "./media/characters/alydar/wing.svg"
  22594. }
  22595. },
  22596. wingFeather: {
  22597. height: math.unit(9.662, "feet"),
  22598. name: "Wing Feather",
  22599. image: {
  22600. source: "./media/characters/alydar/wing-feather.svg"
  22601. }
  22602. },
  22603. countourFeather: {
  22604. height: math.unit(4.154, "feet"),
  22605. name: "Contour Feather",
  22606. image: {
  22607. source: "./media/characters/alydar/contour-feather.svg"
  22608. }
  22609. },
  22610. },
  22611. [
  22612. {
  22613. name: "Diplomatic",
  22614. height: math.unit(13, "feet"),
  22615. default: true
  22616. },
  22617. {
  22618. name: "Small",
  22619. height: math.unit(30, "feet")
  22620. },
  22621. {
  22622. name: "Normal",
  22623. height: math.unit(95, "feet"),
  22624. default: true
  22625. },
  22626. {
  22627. name: "Large",
  22628. height: math.unit(285, "feet")
  22629. },
  22630. {
  22631. name: "Incomprehensible",
  22632. height: math.unit(450, "megameters")
  22633. },
  22634. ]
  22635. ))
  22636. characterMakers.push(() => makeCharacter(
  22637. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22638. {
  22639. side: {
  22640. height: math.unit(11, "feet"),
  22641. weight: math.unit(1750, "kg"),
  22642. name: "Side",
  22643. image: {
  22644. source: "./media/characters/selicia/side.svg",
  22645. extra: 440 / 396,
  22646. bottom: 24.8 / 465.979
  22647. }
  22648. },
  22649. maw: {
  22650. height: math.unit(4.665, "feet"),
  22651. name: "Maw",
  22652. image: {
  22653. source: "./media/characters/selicia/maw.svg"
  22654. }
  22655. },
  22656. },
  22657. [
  22658. {
  22659. name: "Normal",
  22660. height: math.unit(11, "feet"),
  22661. default: true
  22662. },
  22663. ]
  22664. ))
  22665. characterMakers.push(() => makeCharacter(
  22666. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22667. {
  22668. side: {
  22669. height: math.unit(2 + 6 / 12, "feet"),
  22670. weight: math.unit(30, "lb"),
  22671. name: "Side",
  22672. image: {
  22673. source: "./media/characters/layla/side.svg",
  22674. extra: 244 / 188,
  22675. bottom: 18.2 / 262.1
  22676. }
  22677. },
  22678. back: {
  22679. height: math.unit(2 + 6 / 12, "feet"),
  22680. weight: math.unit(30, "lb"),
  22681. name: "Back",
  22682. image: {
  22683. source: "./media/characters/layla/back.svg",
  22684. extra: 308 / 241.5,
  22685. bottom: 8.9 / 316.8
  22686. }
  22687. },
  22688. cumming: {
  22689. height: math.unit(2 + 6 / 12, "feet"),
  22690. weight: math.unit(30, "lb"),
  22691. name: "Cumming",
  22692. image: {
  22693. source: "./media/characters/layla/cumming.svg",
  22694. extra: 342 / 279,
  22695. bottom: 595 / 938
  22696. }
  22697. },
  22698. dickFlaccid: {
  22699. height: math.unit(2.595, "feet"),
  22700. name: "Flaccid Genitals",
  22701. image: {
  22702. source: "./media/characters/layla/dick-flaccid.svg"
  22703. }
  22704. },
  22705. dickErect: {
  22706. height: math.unit(2.359, "feet"),
  22707. name: "Erect Genitals",
  22708. image: {
  22709. source: "./media/characters/layla/dick-erect.svg"
  22710. }
  22711. },
  22712. },
  22713. [
  22714. {
  22715. name: "Micro",
  22716. height: math.unit(1, "inch")
  22717. },
  22718. {
  22719. name: "Small",
  22720. height: math.unit(1, "foot")
  22721. },
  22722. {
  22723. name: "Normal",
  22724. height: math.unit(2 + 6 / 12, "feet"),
  22725. default: true
  22726. },
  22727. {
  22728. name: "Macro",
  22729. height: math.unit(200, "feet")
  22730. },
  22731. {
  22732. name: "Megamacro",
  22733. height: math.unit(1000, "miles")
  22734. },
  22735. {
  22736. name: "Planetary",
  22737. height: math.unit(8000, "miles")
  22738. },
  22739. {
  22740. name: "True Layla",
  22741. height: math.unit(200000 * 7, "multiverses")
  22742. },
  22743. ]
  22744. ))
  22745. characterMakers.push(() => makeCharacter(
  22746. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22747. {
  22748. back: {
  22749. height: math.unit(10.5, "feet"),
  22750. weight: math.unit(800, "lb"),
  22751. name: "Back",
  22752. image: {
  22753. source: "./media/characters/knox/back.svg",
  22754. extra: 1486 / 1089,
  22755. bottom: 107 / 1601.4
  22756. }
  22757. },
  22758. side: {
  22759. height: math.unit(10.5, "feet"),
  22760. weight: math.unit(800, "lb"),
  22761. name: "Side",
  22762. image: {
  22763. source: "./media/characters/knox/side.svg",
  22764. extra: 244 / 218,
  22765. bottom: 14 / 260
  22766. }
  22767. },
  22768. },
  22769. [
  22770. {
  22771. name: "Compact",
  22772. height: math.unit(10.5, "feet"),
  22773. default: true
  22774. },
  22775. {
  22776. name: "Dynamax",
  22777. height: math.unit(210, "feet")
  22778. },
  22779. {
  22780. name: "Full Macro",
  22781. height: math.unit(850, "feet")
  22782. },
  22783. ]
  22784. ))
  22785. characterMakers.push(() => makeCharacter(
  22786. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22787. {
  22788. front: {
  22789. height: math.unit(6, "feet"),
  22790. weight: math.unit(152, "lb"),
  22791. name: "Front",
  22792. image: {
  22793. source: "./media/characters/shin-pikachu/front.svg",
  22794. extra: 1574 / 1480,
  22795. bottom: 53.3 / 1626
  22796. }
  22797. },
  22798. hand: {
  22799. height: math.unit(1.055, "feet"),
  22800. name: "Hand",
  22801. image: {
  22802. source: "./media/characters/shin-pikachu/hand.svg"
  22803. }
  22804. },
  22805. foot: {
  22806. height: math.unit(1.1, "feet"),
  22807. name: "Foot",
  22808. image: {
  22809. source: "./media/characters/shin-pikachu/foot.svg"
  22810. }
  22811. },
  22812. collar: {
  22813. height: math.unit(0.386, "feet"),
  22814. name: "Collar",
  22815. image: {
  22816. source: "./media/characters/shin-pikachu/collar.svg"
  22817. }
  22818. },
  22819. },
  22820. [
  22821. {
  22822. name: "Smallest",
  22823. height: math.unit(0.5, "inches")
  22824. },
  22825. {
  22826. name: "Micro",
  22827. height: math.unit(6, "inches")
  22828. },
  22829. {
  22830. name: "Normal",
  22831. height: math.unit(6, "feet"),
  22832. default: true
  22833. },
  22834. {
  22835. name: "Macro",
  22836. height: math.unit(150, "feet")
  22837. },
  22838. ]
  22839. ))
  22840. characterMakers.push(() => makeCharacter(
  22841. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22842. {
  22843. front: {
  22844. height: math.unit(28, "feet"),
  22845. weight: math.unit(10500, "lb"),
  22846. name: "Front",
  22847. image: {
  22848. source: "./media/characters/kayda/front.svg",
  22849. extra: 1536 / 1428,
  22850. bottom: 68.7 / 1603
  22851. }
  22852. },
  22853. back: {
  22854. height: math.unit(28, "feet"),
  22855. weight: math.unit(10500, "lb"),
  22856. name: "Back",
  22857. image: {
  22858. source: "./media/characters/kayda/back.svg",
  22859. extra: 1557 / 1464,
  22860. bottom: 39.5 / 1597.49
  22861. }
  22862. },
  22863. dick: {
  22864. height: math.unit(3.858, "feet"),
  22865. name: "Dick",
  22866. image: {
  22867. source: "./media/characters/kayda/dick.svg"
  22868. }
  22869. },
  22870. },
  22871. [
  22872. {
  22873. name: "Macro",
  22874. height: math.unit(28, "feet"),
  22875. default: true
  22876. },
  22877. ]
  22878. ))
  22879. characterMakers.push(() => makeCharacter(
  22880. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22881. {
  22882. front: {
  22883. height: math.unit(10 + 11 / 12, "feet"),
  22884. weight: math.unit(1400, "lb"),
  22885. name: "Front",
  22886. image: {
  22887. source: "./media/characters/brian/front.svg",
  22888. extra: 737 / 692,
  22889. bottom: 55.4 / 785
  22890. }
  22891. },
  22892. },
  22893. [
  22894. {
  22895. name: "Normal",
  22896. height: math.unit(10 + 11 / 12, "feet"),
  22897. default: true
  22898. },
  22899. ]
  22900. ))
  22901. characterMakers.push(() => makeCharacter(
  22902. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22903. {
  22904. front: {
  22905. height: math.unit(5 + 8 / 12, "feet"),
  22906. weight: math.unit(140, "lb"),
  22907. name: "Front",
  22908. image: {
  22909. source: "./media/characters/khemri/front.svg",
  22910. extra: 4780 / 4059,
  22911. bottom: 80.1 / 4859.25
  22912. }
  22913. },
  22914. },
  22915. [
  22916. {
  22917. name: "Micro",
  22918. height: math.unit(6, "inches")
  22919. },
  22920. {
  22921. name: "Normal",
  22922. height: math.unit(5 + 8 / 12, "feet"),
  22923. default: true
  22924. },
  22925. ]
  22926. ))
  22927. characterMakers.push(() => makeCharacter(
  22928. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22929. {
  22930. front: {
  22931. height: math.unit(13, "feet"),
  22932. weight: math.unit(1700, "lb"),
  22933. name: "Front",
  22934. image: {
  22935. source: "./media/characters/felix-braveheart/front.svg",
  22936. extra: 1222 / 1157,
  22937. bottom: 53.2 / 1280
  22938. }
  22939. },
  22940. back: {
  22941. height: math.unit(13, "feet"),
  22942. weight: math.unit(1700, "lb"),
  22943. name: "Back",
  22944. image: {
  22945. source: "./media/characters/felix-braveheart/back.svg",
  22946. extra: 1277 / 1203,
  22947. bottom: 50.2 / 1327
  22948. }
  22949. },
  22950. feral: {
  22951. height: math.unit(6, "feet"),
  22952. weight: math.unit(400, "lb"),
  22953. name: "Feral",
  22954. image: {
  22955. source: "./media/characters/felix-braveheart/feral.svg",
  22956. extra: 682 / 625,
  22957. bottom: 6.9 / 688
  22958. }
  22959. },
  22960. },
  22961. [
  22962. {
  22963. name: "Normal",
  22964. height: math.unit(13, "feet"),
  22965. default: true
  22966. },
  22967. ]
  22968. ))
  22969. characterMakers.push(() => makeCharacter(
  22970. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22971. {
  22972. side: {
  22973. height: math.unit(5 + 11 / 12, "feet"),
  22974. weight: math.unit(1400, "lb"),
  22975. name: "Side",
  22976. image: {
  22977. source: "./media/characters/shadow-blade/side.svg",
  22978. extra: 1726 / 1267,
  22979. bottom: 58.4 / 1785
  22980. }
  22981. },
  22982. },
  22983. [
  22984. {
  22985. name: "Normal",
  22986. height: math.unit(5 + 11 / 12, "feet"),
  22987. default: true
  22988. },
  22989. ]
  22990. ))
  22991. characterMakers.push(() => makeCharacter(
  22992. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22993. {
  22994. front: {
  22995. height: math.unit(1 + 6 / 12, "feet"),
  22996. weight: math.unit(25, "lb"),
  22997. name: "Front",
  22998. image: {
  22999. source: "./media/characters/karla-halldor/front.svg",
  23000. extra: 1459 / 1383,
  23001. bottom: 12 / 1472
  23002. }
  23003. },
  23004. },
  23005. [
  23006. {
  23007. name: "Normal",
  23008. height: math.unit(1 + 6 / 12, "feet"),
  23009. default: true
  23010. },
  23011. ]
  23012. ))
  23013. characterMakers.push(() => makeCharacter(
  23014. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23015. {
  23016. front: {
  23017. height: math.unit(6 + 2 / 12, "feet"),
  23018. weight: math.unit(160, "lb"),
  23019. name: "Front",
  23020. image: {
  23021. source: "./media/characters/ariam/front.svg",
  23022. extra: 714 / 617,
  23023. bottom: 23.4 / 737,
  23024. }
  23025. },
  23026. squatting: {
  23027. height: math.unit(4.1, "feet"),
  23028. weight: math.unit(160, "lb"),
  23029. name: "Squatting",
  23030. image: {
  23031. source: "./media/characters/ariam/squatting.svg",
  23032. extra: 2617 / 2112,
  23033. bottom: 61.2 / 2681,
  23034. }
  23035. },
  23036. },
  23037. [
  23038. {
  23039. name: "Normal",
  23040. height: math.unit(6 + 2 / 12, "feet"),
  23041. default: true
  23042. },
  23043. {
  23044. name: "Normal+",
  23045. height: math.unit(4, "meters")
  23046. },
  23047. {
  23048. name: "Macro",
  23049. height: math.unit(50, "meters")
  23050. },
  23051. {
  23052. name: "Macro+",
  23053. height: math.unit(100, "meters")
  23054. },
  23055. {
  23056. name: "Megamacro",
  23057. height: math.unit(20, "km")
  23058. },
  23059. ]
  23060. ))
  23061. characterMakers.push(() => makeCharacter(
  23062. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23063. {
  23064. front: {
  23065. height: math.unit(1.67, "meters"),
  23066. weight: math.unit(140, "lb"),
  23067. name: "Front",
  23068. image: {
  23069. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23070. extra: 438 / 410,
  23071. bottom: 0.75 / 439
  23072. }
  23073. },
  23074. },
  23075. [
  23076. {
  23077. name: "Shrunken",
  23078. height: math.unit(7.6, "cm")
  23079. },
  23080. {
  23081. name: "Human Scale",
  23082. height: math.unit(1.67, "meters")
  23083. },
  23084. {
  23085. name: "Wolxi Scale",
  23086. height: math.unit(36.7, "meters"),
  23087. default: true
  23088. },
  23089. ]
  23090. ))
  23091. characterMakers.push(() => makeCharacter(
  23092. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23093. {
  23094. front: {
  23095. height: math.unit(1.73, "meters"),
  23096. weight: math.unit(240, "lb"),
  23097. name: "Front",
  23098. image: {
  23099. source: "./media/characters/izue-two-mothers/front.svg",
  23100. extra: 469 / 437,
  23101. bottom: 1.24 / 470.6
  23102. }
  23103. },
  23104. },
  23105. [
  23106. {
  23107. name: "Shrunken",
  23108. height: math.unit(7.86, "cm")
  23109. },
  23110. {
  23111. name: "Human Scale",
  23112. height: math.unit(1.73, "meters")
  23113. },
  23114. {
  23115. name: "Wolxi Scale",
  23116. height: math.unit(38, "meters"),
  23117. default: true
  23118. },
  23119. ]
  23120. ))
  23121. characterMakers.push(() => makeCharacter(
  23122. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23123. {
  23124. front: {
  23125. height: math.unit(1.55, "meters"),
  23126. weight: math.unit(120, "lb"),
  23127. name: "Front",
  23128. image: {
  23129. source: "./media/characters/teeku-love-shack/front.svg",
  23130. extra: 387 / 362,
  23131. bottom: 1.51 / 388
  23132. }
  23133. },
  23134. },
  23135. [
  23136. {
  23137. name: "Shrunken",
  23138. height: math.unit(7, "cm")
  23139. },
  23140. {
  23141. name: "Human Scale",
  23142. height: math.unit(1.55, "meters")
  23143. },
  23144. {
  23145. name: "Wolxi Scale",
  23146. height: math.unit(34.1, "meters"),
  23147. default: true
  23148. },
  23149. ]
  23150. ))
  23151. characterMakers.push(() => makeCharacter(
  23152. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23153. {
  23154. front: {
  23155. height: math.unit(1.83, "meters"),
  23156. weight: math.unit(135, "lb"),
  23157. name: "Front",
  23158. image: {
  23159. source: "./media/characters/dejma-the-red/front.svg",
  23160. extra: 480 / 458,
  23161. bottom: 1.8 / 482
  23162. }
  23163. },
  23164. },
  23165. [
  23166. {
  23167. name: "Shrunken",
  23168. height: math.unit(8.3, "cm")
  23169. },
  23170. {
  23171. name: "Human Scale",
  23172. height: math.unit(1.83, "meters")
  23173. },
  23174. {
  23175. name: "Wolxi Scale",
  23176. height: math.unit(40, "meters"),
  23177. default: true
  23178. },
  23179. ]
  23180. ))
  23181. characterMakers.push(() => makeCharacter(
  23182. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23183. {
  23184. front: {
  23185. height: math.unit(1.78, "meters"),
  23186. weight: math.unit(65, "kg"),
  23187. name: "Front",
  23188. image: {
  23189. source: "./media/characters/aki/front.svg",
  23190. extra: 452 / 415
  23191. }
  23192. },
  23193. frontNsfw: {
  23194. height: math.unit(1.78, "meters"),
  23195. weight: math.unit(65, "kg"),
  23196. name: "Front (NSFW)",
  23197. image: {
  23198. source: "./media/characters/aki/front-nsfw.svg",
  23199. extra: 452 / 415
  23200. }
  23201. },
  23202. back: {
  23203. height: math.unit(1.78, "meters"),
  23204. weight: math.unit(65, "kg"),
  23205. name: "Back",
  23206. image: {
  23207. source: "./media/characters/aki/back.svg",
  23208. extra: 452 / 415
  23209. }
  23210. },
  23211. rump: {
  23212. height: math.unit(2.05, "feet"),
  23213. name: "Rump",
  23214. image: {
  23215. source: "./media/characters/aki/rump.svg"
  23216. }
  23217. },
  23218. dick: {
  23219. height: math.unit(0.95, "feet"),
  23220. name: "Dick",
  23221. image: {
  23222. source: "./media/characters/aki/dick.svg"
  23223. }
  23224. },
  23225. },
  23226. [
  23227. {
  23228. name: "Micro",
  23229. height: math.unit(15, "cm")
  23230. },
  23231. {
  23232. name: "Normal",
  23233. height: math.unit(178, "cm"),
  23234. default: true
  23235. },
  23236. {
  23237. name: "Macro",
  23238. height: math.unit(214, "m")
  23239. },
  23240. {
  23241. name: "Macro+",
  23242. height: math.unit(534, "m")
  23243. },
  23244. ]
  23245. ))
  23246. characterMakers.push(() => makeCharacter(
  23247. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23248. {
  23249. front: {
  23250. height: math.unit(5 + 5 / 12, "feet"),
  23251. weight: math.unit(120, "lb"),
  23252. name: "Front",
  23253. image: {
  23254. source: "./media/characters/ari/front.svg",
  23255. extra: 714.5 / 682,
  23256. bottom: 8 / 722.5
  23257. }
  23258. },
  23259. },
  23260. [
  23261. {
  23262. name: "Normal",
  23263. height: math.unit(5 + 5 / 12, "feet")
  23264. },
  23265. {
  23266. name: "Macro",
  23267. height: math.unit(100, "feet"),
  23268. default: true
  23269. },
  23270. {
  23271. name: "Megamacro",
  23272. height: math.unit(100, "miles")
  23273. },
  23274. {
  23275. name: "Gigamacro",
  23276. height: math.unit(80000, "miles")
  23277. },
  23278. ]
  23279. ))
  23280. characterMakers.push(() => makeCharacter(
  23281. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23282. {
  23283. side: {
  23284. height: math.unit(9, "feet"),
  23285. weight: math.unit(400, "kg"),
  23286. name: "Side",
  23287. image: {
  23288. source: "./media/characters/bolt/side.svg",
  23289. extra: 1126 / 896,
  23290. bottom: 60 / 1187.3,
  23291. }
  23292. },
  23293. },
  23294. [
  23295. {
  23296. name: "Micro",
  23297. height: math.unit(5, "inches")
  23298. },
  23299. {
  23300. name: "Normal",
  23301. height: math.unit(9, "feet"),
  23302. default: true
  23303. },
  23304. {
  23305. name: "Macro",
  23306. height: math.unit(700, "feet")
  23307. },
  23308. {
  23309. name: "Max Size",
  23310. height: math.unit(1.52e22, "yottameters")
  23311. },
  23312. ]
  23313. ))
  23314. characterMakers.push(() => makeCharacter(
  23315. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23316. {
  23317. front: {
  23318. height: math.unit(4.53, "meters"),
  23319. weight: math.unit(3, "tons"),
  23320. name: "Front",
  23321. image: {
  23322. source: "./media/characters/draekon-sylviar/front.svg",
  23323. extra: 1228 / 1068,
  23324. bottom: 41 / 1270
  23325. }
  23326. },
  23327. tail: {
  23328. height: math.unit(1.772, "meter"),
  23329. name: "Tail",
  23330. image: {
  23331. source: "./media/characters/draekon-sylviar/tail.svg"
  23332. }
  23333. },
  23334. head: {
  23335. height: math.unit(1.331, "meter"),
  23336. name: "Head",
  23337. image: {
  23338. source: "./media/characters/draekon-sylviar/head.svg"
  23339. }
  23340. },
  23341. hand: {
  23342. height: math.unit(0.564, "meter"),
  23343. name: "Hand",
  23344. image: {
  23345. source: "./media/characters/draekon-sylviar/hand.svg"
  23346. }
  23347. },
  23348. foot: {
  23349. height: math.unit(0.621, "meter"),
  23350. name: "Foot",
  23351. image: {
  23352. source: "./media/characters/draekon-sylviar/foot.svg",
  23353. bottom: 32 / 324
  23354. }
  23355. },
  23356. dick: {
  23357. height: math.unit(61, "cm"),
  23358. name: "Dick",
  23359. image: {
  23360. source: "./media/characters/draekon-sylviar/dick.svg"
  23361. }
  23362. },
  23363. dickseparated: {
  23364. height: math.unit(61, "cm"),
  23365. name: "Dick-separated",
  23366. image: {
  23367. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23368. }
  23369. },
  23370. },
  23371. [
  23372. {
  23373. name: "Small",
  23374. height: math.unit(4.53 / 2, "meters"),
  23375. default: true
  23376. },
  23377. {
  23378. name: "Normal",
  23379. height: math.unit(4.53, "meters"),
  23380. default: true
  23381. },
  23382. {
  23383. name: "Large",
  23384. height: math.unit(4.53 * 2, "meters"),
  23385. },
  23386. ]
  23387. ))
  23388. characterMakers.push(() => makeCharacter(
  23389. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23390. {
  23391. front: {
  23392. height: math.unit(6 + 2 / 12, "feet"),
  23393. weight: math.unit(180, "lb"),
  23394. name: "Front",
  23395. image: {
  23396. source: "./media/characters/brawler/front.svg",
  23397. extra: 3301 / 3027,
  23398. bottom: 138 / 3439
  23399. }
  23400. },
  23401. },
  23402. [
  23403. {
  23404. name: "Normal",
  23405. height: math.unit(6 + 2 / 12, "feet"),
  23406. default: true
  23407. },
  23408. ]
  23409. ))
  23410. characterMakers.push(() => makeCharacter(
  23411. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23412. {
  23413. front: {
  23414. height: math.unit(11, "feet"),
  23415. weight: math.unit(1000, "lb"),
  23416. name: "Front",
  23417. image: {
  23418. source: "./media/characters/alex/front.svg",
  23419. bottom: 44.5 / 620
  23420. }
  23421. },
  23422. },
  23423. [
  23424. {
  23425. name: "Micro",
  23426. height: math.unit(5, "inches")
  23427. },
  23428. {
  23429. name: "Normal",
  23430. height: math.unit(11, "feet"),
  23431. default: true
  23432. },
  23433. {
  23434. name: "Macro",
  23435. height: math.unit(9.5e9, "feet")
  23436. },
  23437. {
  23438. name: "Max Size",
  23439. height: math.unit(1.4e283, "yottameters")
  23440. },
  23441. ]
  23442. ))
  23443. characterMakers.push(() => makeCharacter(
  23444. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23445. {
  23446. female: {
  23447. height: math.unit(29.9, "m"),
  23448. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23449. name: "Female",
  23450. image: {
  23451. source: "./media/characters/zenari/female.svg",
  23452. extra: 3281.6 / 3217,
  23453. bottom: 72.2 / 3353
  23454. }
  23455. },
  23456. male: {
  23457. height: math.unit(27.7, "m"),
  23458. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23459. name: "Male",
  23460. image: {
  23461. source: "./media/characters/zenari/male.svg",
  23462. extra: 3008 / 2991,
  23463. bottom: 54.6 / 3069
  23464. }
  23465. },
  23466. },
  23467. [
  23468. {
  23469. name: "Macro",
  23470. height: math.unit(29.7, "meters"),
  23471. default: true
  23472. },
  23473. ]
  23474. ))
  23475. characterMakers.push(() => makeCharacter(
  23476. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23477. {
  23478. female: {
  23479. height: math.unit(23.8, "m"),
  23480. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23481. name: "Female",
  23482. image: {
  23483. source: "./media/characters/mactarian/female.svg",
  23484. extra: 2662 / 2569,
  23485. bottom: 73 / 2736
  23486. }
  23487. },
  23488. male: {
  23489. height: math.unit(23.8, "m"),
  23490. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23491. name: "Male",
  23492. image: {
  23493. source: "./media/characters/mactarian/male.svg",
  23494. extra: 2673 / 2600,
  23495. bottom: 76 / 2750
  23496. }
  23497. },
  23498. },
  23499. [
  23500. {
  23501. name: "Macro",
  23502. height: math.unit(23.8, "meters"),
  23503. default: true
  23504. },
  23505. ]
  23506. ))
  23507. characterMakers.push(() => makeCharacter(
  23508. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23509. {
  23510. female: {
  23511. height: math.unit(19.3, "m"),
  23512. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23513. name: "Female",
  23514. image: {
  23515. source: "./media/characters/umok/female.svg",
  23516. extra: 2186 / 2078,
  23517. bottom: 87 / 2277
  23518. }
  23519. },
  23520. male: {
  23521. height: math.unit(19.5, "m"),
  23522. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23523. name: "Male",
  23524. image: {
  23525. source: "./media/characters/umok/male.svg",
  23526. extra: 2233 / 2140,
  23527. bottom: 24.4 / 2258
  23528. }
  23529. },
  23530. },
  23531. [
  23532. {
  23533. name: "Macro",
  23534. height: math.unit(19.3, "meters"),
  23535. default: true
  23536. },
  23537. ]
  23538. ))
  23539. characterMakers.push(() => makeCharacter(
  23540. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23541. {
  23542. female: {
  23543. height: math.unit(26.15, "m"),
  23544. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23545. name: "Female",
  23546. image: {
  23547. source: "./media/characters/joraxian/female.svg",
  23548. extra: 2912 / 2824,
  23549. bottom: 36 / 2956
  23550. }
  23551. },
  23552. male: {
  23553. height: math.unit(25.4, "m"),
  23554. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23555. name: "Male",
  23556. image: {
  23557. source: "./media/characters/joraxian/male.svg",
  23558. extra: 2877 / 2721,
  23559. bottom: 82 / 2967
  23560. }
  23561. },
  23562. },
  23563. [
  23564. {
  23565. name: "Macro",
  23566. height: math.unit(26.15, "meters"),
  23567. default: true
  23568. },
  23569. ]
  23570. ))
  23571. characterMakers.push(() => makeCharacter(
  23572. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23573. {
  23574. female: {
  23575. height: math.unit(21.6, "m"),
  23576. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23577. name: "Female",
  23578. image: {
  23579. source: "./media/characters/sthara/female.svg",
  23580. extra: 2516 / 2347,
  23581. bottom: 21.5 / 2537
  23582. }
  23583. },
  23584. male: {
  23585. height: math.unit(24, "m"),
  23586. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23587. name: "Male",
  23588. image: {
  23589. source: "./media/characters/sthara/male.svg",
  23590. extra: 2732 / 2607,
  23591. bottom: 23 / 2732
  23592. }
  23593. },
  23594. },
  23595. [
  23596. {
  23597. name: "Macro",
  23598. height: math.unit(21.6, "meters"),
  23599. default: true
  23600. },
  23601. ]
  23602. ))
  23603. characterMakers.push(() => makeCharacter(
  23604. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23605. {
  23606. front: {
  23607. height: math.unit(6 + 4 / 12, "feet"),
  23608. weight: math.unit(175, "lb"),
  23609. name: "Front",
  23610. image: {
  23611. source: "./media/characters/luka-bryzant/front.svg",
  23612. extra: 311 / 289,
  23613. bottom: 4 / 315
  23614. }
  23615. },
  23616. back: {
  23617. height: math.unit(6 + 4 / 12, "feet"),
  23618. weight: math.unit(175, "lb"),
  23619. name: "Back",
  23620. image: {
  23621. source: "./media/characters/luka-bryzant/back.svg",
  23622. extra: 311 / 289,
  23623. bottom: 3.8 / 313.7
  23624. }
  23625. },
  23626. },
  23627. [
  23628. {
  23629. name: "Micro",
  23630. height: math.unit(10, "inches")
  23631. },
  23632. {
  23633. name: "Normal",
  23634. height: math.unit(6 + 4 / 12, "feet"),
  23635. default: true
  23636. },
  23637. {
  23638. name: "Large",
  23639. height: math.unit(12, "feet")
  23640. },
  23641. ]
  23642. ))
  23643. characterMakers.push(() => makeCharacter(
  23644. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23645. {
  23646. front: {
  23647. height: math.unit(5 + 7 / 12, "feet"),
  23648. weight: math.unit(185, "lb"),
  23649. name: "Front",
  23650. image: {
  23651. source: "./media/characters/aman-aquila/front.svg",
  23652. extra: 1013 / 976,
  23653. bottom: 45.6 / 1057
  23654. }
  23655. },
  23656. side: {
  23657. height: math.unit(5 + 7 / 12, "feet"),
  23658. weight: math.unit(185, "lb"),
  23659. name: "Side",
  23660. image: {
  23661. source: "./media/characters/aman-aquila/side.svg",
  23662. extra: 1054 / 1011,
  23663. bottom: 15 / 1070
  23664. }
  23665. },
  23666. back: {
  23667. height: math.unit(5 + 7 / 12, "feet"),
  23668. weight: math.unit(185, "lb"),
  23669. name: "Back",
  23670. image: {
  23671. source: "./media/characters/aman-aquila/back.svg",
  23672. extra: 1026 / 970,
  23673. bottom: 12 / 1039
  23674. }
  23675. },
  23676. head: {
  23677. height: math.unit(1.211, "feet"),
  23678. name: "Head",
  23679. image: {
  23680. source: "./media/characters/aman-aquila/head.svg",
  23681. }
  23682. },
  23683. },
  23684. [
  23685. {
  23686. name: "Minimicro",
  23687. height: math.unit(0.057, "inches")
  23688. },
  23689. {
  23690. name: "Micro",
  23691. height: math.unit(7, "inches")
  23692. },
  23693. {
  23694. name: "Mini",
  23695. height: math.unit(3 + 7 / 12, "feet")
  23696. },
  23697. {
  23698. name: "Normal",
  23699. height: math.unit(5 + 7 / 12, "feet"),
  23700. default: true
  23701. },
  23702. {
  23703. name: "Macro",
  23704. height: math.unit(157 + 7 / 12, "feet")
  23705. },
  23706. {
  23707. name: "Megamacro",
  23708. height: math.unit(1557 + 7 / 12, "feet")
  23709. },
  23710. {
  23711. name: "Gigamacro",
  23712. height: math.unit(15557 + 7 / 12, "feet")
  23713. },
  23714. ]
  23715. ))
  23716. characterMakers.push(() => makeCharacter(
  23717. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23718. {
  23719. front: {
  23720. height: math.unit(3 + 2 / 12, "inches"),
  23721. weight: math.unit(0.3, "ounces"),
  23722. name: "Front",
  23723. image: {
  23724. source: "./media/characters/hiphae/front.svg",
  23725. extra: 1931 / 1683,
  23726. bottom: 24 / 1955
  23727. }
  23728. },
  23729. },
  23730. [
  23731. {
  23732. name: "Normal",
  23733. height: math.unit(3 + 1 / 2, "inches"),
  23734. default: true
  23735. },
  23736. ]
  23737. ))
  23738. characterMakers.push(() => makeCharacter(
  23739. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23740. {
  23741. front: {
  23742. height: math.unit(5 + 10 / 12, "feet"),
  23743. weight: math.unit(165, "lb"),
  23744. name: "Front",
  23745. image: {
  23746. source: "./media/characters/nicky/front.svg",
  23747. extra: 3144 / 2886,
  23748. bottom: 45.6 / 3192
  23749. }
  23750. },
  23751. back: {
  23752. height: math.unit(5 + 10 / 12, "feet"),
  23753. weight: math.unit(165, "lb"),
  23754. name: "Back",
  23755. image: {
  23756. source: "./media/characters/nicky/back.svg",
  23757. extra: 3055 / 2804,
  23758. bottom: 28.4 / 3087
  23759. }
  23760. },
  23761. frontclothed: {
  23762. height: math.unit(5 + 10 / 12, "feet"),
  23763. weight: math.unit(165, "lb"),
  23764. name: "Front-clothed",
  23765. image: {
  23766. source: "./media/characters/nicky/front-clothed.svg",
  23767. extra: 3184.9 / 2926.9,
  23768. bottom: 86.5 / 3239.9
  23769. }
  23770. },
  23771. foot: {
  23772. height: math.unit(1.16, "feet"),
  23773. name: "Foot",
  23774. image: {
  23775. source: "./media/characters/nicky/foot.svg"
  23776. }
  23777. },
  23778. feet: {
  23779. height: math.unit(1.34, "feet"),
  23780. name: "Feet",
  23781. image: {
  23782. source: "./media/characters/nicky/feet.svg"
  23783. }
  23784. },
  23785. maw: {
  23786. height: math.unit(0.9, "feet"),
  23787. name: "Maw",
  23788. image: {
  23789. source: "./media/characters/nicky/maw.svg"
  23790. }
  23791. },
  23792. },
  23793. [
  23794. {
  23795. name: "Normal",
  23796. height: math.unit(5 + 10 / 12, "feet"),
  23797. default: true
  23798. },
  23799. {
  23800. name: "Macro",
  23801. height: math.unit(60, "feet")
  23802. },
  23803. {
  23804. name: "Megamacro",
  23805. height: math.unit(1, "mile")
  23806. },
  23807. ]
  23808. ))
  23809. characterMakers.push(() => makeCharacter(
  23810. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23811. {
  23812. side: {
  23813. height: math.unit(10, "feet"),
  23814. weight: math.unit(600, "lb"),
  23815. name: "Side",
  23816. image: {
  23817. source: "./media/characters/blair/side.svg",
  23818. bottom: 16.6 / 475,
  23819. extra: 458 / 431
  23820. }
  23821. },
  23822. },
  23823. [
  23824. {
  23825. name: "Micro",
  23826. height: math.unit(8, "inches")
  23827. },
  23828. {
  23829. name: "Normal",
  23830. height: math.unit(10, "feet"),
  23831. default: true
  23832. },
  23833. {
  23834. name: "Macro",
  23835. height: math.unit(180, "feet")
  23836. },
  23837. ]
  23838. ))
  23839. characterMakers.push(() => makeCharacter(
  23840. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23841. {
  23842. front: {
  23843. height: math.unit(5 + 4 / 12, "feet"),
  23844. weight: math.unit(125, "lb"),
  23845. name: "Front",
  23846. image: {
  23847. source: "./media/characters/fisher/front.svg",
  23848. extra: 444 / 390,
  23849. bottom: 2 / 444.8
  23850. }
  23851. },
  23852. },
  23853. [
  23854. {
  23855. name: "Micro",
  23856. height: math.unit(4, "inches")
  23857. },
  23858. {
  23859. name: "Normal",
  23860. height: math.unit(5 + 4 / 12, "feet"),
  23861. default: true
  23862. },
  23863. {
  23864. name: "Macro",
  23865. height: math.unit(100, "feet")
  23866. },
  23867. ]
  23868. ))
  23869. characterMakers.push(() => makeCharacter(
  23870. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23871. {
  23872. front: {
  23873. height: math.unit(6.71, "feet"),
  23874. weight: math.unit(200, "lb"),
  23875. capacity: math.unit(1000000, "people"),
  23876. name: "Front",
  23877. image: {
  23878. source: "./media/characters/gliss/front.svg",
  23879. extra: 2347 / 2231,
  23880. bottom: 113 / 2462
  23881. }
  23882. },
  23883. hammerspaceSize: {
  23884. height: math.unit(6.71 * 717, "feet"),
  23885. weight: math.unit(200, "lb"),
  23886. capacity: math.unit(1000000, "people"),
  23887. name: "Hammerspace Size",
  23888. image: {
  23889. source: "./media/characters/gliss/front.svg",
  23890. extra: 2347 / 2231,
  23891. bottom: 113 / 2462
  23892. }
  23893. },
  23894. },
  23895. [
  23896. {
  23897. name: "Normal",
  23898. height: math.unit(6.71, "feet"),
  23899. default: true
  23900. },
  23901. ]
  23902. ))
  23903. characterMakers.push(() => makeCharacter(
  23904. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23905. {
  23906. side: {
  23907. height: math.unit(1.44, "m"),
  23908. weight: math.unit(80, "kg"),
  23909. name: "Side",
  23910. image: {
  23911. source: "./media/characters/dune-anderson/side.svg",
  23912. bottom: 49 / 1426
  23913. }
  23914. },
  23915. },
  23916. [
  23917. {
  23918. name: "Wolf-sized",
  23919. height: math.unit(1.44, "meters")
  23920. },
  23921. {
  23922. name: "Normal",
  23923. height: math.unit(5.05, "meters"),
  23924. default: true
  23925. },
  23926. {
  23927. name: "Big",
  23928. height: math.unit(14.4, "meters")
  23929. },
  23930. {
  23931. name: "Huge",
  23932. height: math.unit(144, "meters")
  23933. },
  23934. ]
  23935. ))
  23936. characterMakers.push(() => makeCharacter(
  23937. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23938. {
  23939. front: {
  23940. height: math.unit(7, "feet"),
  23941. weight: math.unit(425, "lb"),
  23942. name: "Front",
  23943. image: {
  23944. source: "./media/characters/hind/front.svg",
  23945. extra: 2091 / 1860,
  23946. bottom: 129 / 2220
  23947. }
  23948. },
  23949. back: {
  23950. height: math.unit(7, "feet"),
  23951. weight: math.unit(425, "lb"),
  23952. name: "Back",
  23953. image: {
  23954. source: "./media/characters/hind/back.svg",
  23955. extra: 2091 / 1860,
  23956. bottom: 24.6 / 2309
  23957. }
  23958. },
  23959. tail: {
  23960. height: math.unit(2.8, "feet"),
  23961. name: "Tail",
  23962. image: {
  23963. source: "./media/characters/hind/tail.svg"
  23964. }
  23965. },
  23966. head: {
  23967. height: math.unit(2.55, "feet"),
  23968. name: "Head",
  23969. image: {
  23970. source: "./media/characters/hind/head.svg"
  23971. }
  23972. },
  23973. },
  23974. [
  23975. {
  23976. name: "XS",
  23977. height: math.unit(0.7, "feet")
  23978. },
  23979. {
  23980. name: "Normal",
  23981. height: math.unit(7, "feet"),
  23982. default: true
  23983. },
  23984. {
  23985. name: "XL",
  23986. height: math.unit(70, "feet")
  23987. },
  23988. ]
  23989. ))
  23990. characterMakers.push(() => makeCharacter(
  23991. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23992. {
  23993. front: {
  23994. height: math.unit(6, "feet"),
  23995. weight: math.unit(150, "lb"),
  23996. name: "Front",
  23997. image: {
  23998. source: "./media/characters/dylan-skaven/front.svg",
  23999. extra: 2318 / 2063,
  24000. bottom: 93.4 / 2410
  24001. }
  24002. },
  24003. },
  24004. [
  24005. {
  24006. name: "Nano",
  24007. height: math.unit(1, "mm")
  24008. },
  24009. {
  24010. name: "Micro",
  24011. height: math.unit(1, "cm")
  24012. },
  24013. {
  24014. name: "Normal",
  24015. height: math.unit(2.1, "meters"),
  24016. default: true
  24017. },
  24018. ]
  24019. ))
  24020. characterMakers.push(() => makeCharacter(
  24021. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24022. {
  24023. front: {
  24024. height: math.unit(7 + 5 / 12, "feet"),
  24025. weight: math.unit(357, "lb"),
  24026. name: "Front",
  24027. image: {
  24028. source: "./media/characters/solex-draconov/front.svg",
  24029. extra: 1993 / 1865,
  24030. bottom: 117 / 2111
  24031. }
  24032. },
  24033. },
  24034. [
  24035. {
  24036. name: "Natural Height",
  24037. height: math.unit(7 + 5 / 12, "feet"),
  24038. default: true
  24039. },
  24040. {
  24041. name: "Macro",
  24042. height: math.unit(350, "feet")
  24043. },
  24044. {
  24045. name: "Macro+",
  24046. height: math.unit(1000, "feet")
  24047. },
  24048. {
  24049. name: "Megamacro",
  24050. height: math.unit(20, "km")
  24051. },
  24052. {
  24053. name: "Megamacro+",
  24054. height: math.unit(1000, "km")
  24055. },
  24056. {
  24057. name: "Gigamacro",
  24058. height: math.unit(2.5, "Gm")
  24059. },
  24060. {
  24061. name: "Teramacro",
  24062. height: math.unit(15, "Tm")
  24063. },
  24064. {
  24065. name: "Galactic",
  24066. height: math.unit(30, "Zm")
  24067. },
  24068. {
  24069. name: "Universal",
  24070. height: math.unit(21000, "Ym")
  24071. },
  24072. {
  24073. name: "Omniversal",
  24074. height: math.unit(9.861e50, "Ym")
  24075. },
  24076. {
  24077. name: "Existential",
  24078. height: math.unit(1e300, "meters")
  24079. },
  24080. ]
  24081. ))
  24082. characterMakers.push(() => makeCharacter(
  24083. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24084. {
  24085. side: {
  24086. height: math.unit(25, "feet"),
  24087. weight: math.unit(90000, "lb"),
  24088. name: "Side",
  24089. image: {
  24090. source: "./media/characters/mandarax/side.svg",
  24091. extra: 614 / 332,
  24092. bottom: 55 / 630
  24093. }
  24094. },
  24095. head: {
  24096. height: math.unit(11.4, "feet"),
  24097. name: "Head",
  24098. image: {
  24099. source: "./media/characters/mandarax/head.svg"
  24100. }
  24101. },
  24102. belly: {
  24103. height: math.unit(33, "feet"),
  24104. name: "Belly",
  24105. capacity: math.unit(500, "people"),
  24106. image: {
  24107. source: "./media/characters/mandarax/belly.svg"
  24108. }
  24109. },
  24110. dick: {
  24111. height: math.unit(8.46, "feet"),
  24112. name: "Dick",
  24113. image: {
  24114. source: "./media/characters/mandarax/dick.svg"
  24115. }
  24116. },
  24117. top: {
  24118. height: math.unit(28, "meters"),
  24119. name: "Top",
  24120. image: {
  24121. source: "./media/characters/mandarax/top.svg"
  24122. }
  24123. },
  24124. },
  24125. [
  24126. {
  24127. name: "Normal",
  24128. height: math.unit(25, "feet"),
  24129. default: true
  24130. },
  24131. ]
  24132. ))
  24133. characterMakers.push(() => makeCharacter(
  24134. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24135. {
  24136. front: {
  24137. height: math.unit(5, "feet"),
  24138. weight: math.unit(90, "lb"),
  24139. name: "Front",
  24140. image: {
  24141. source: "./media/characters/pixil/front.svg",
  24142. extra: 2000 / 1618,
  24143. bottom: 12.3 / 2011
  24144. }
  24145. },
  24146. },
  24147. [
  24148. {
  24149. name: "Normal",
  24150. height: math.unit(5, "feet"),
  24151. default: true
  24152. },
  24153. {
  24154. name: "Megamacro",
  24155. height: math.unit(10, "miles"),
  24156. },
  24157. ]
  24158. ))
  24159. characterMakers.push(() => makeCharacter(
  24160. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24161. {
  24162. front: {
  24163. height: math.unit(7 + 2 / 12, "feet"),
  24164. weight: math.unit(200, "lb"),
  24165. name: "Front",
  24166. image: {
  24167. source: "./media/characters/angel/front.svg",
  24168. extra: 1830 / 1737,
  24169. bottom: 22.6 / 1854,
  24170. }
  24171. },
  24172. },
  24173. [
  24174. {
  24175. name: "Normal",
  24176. height: math.unit(7 + 2 / 12, "feet"),
  24177. default: true
  24178. },
  24179. {
  24180. name: "Macro",
  24181. height: math.unit(1000, "feet")
  24182. },
  24183. {
  24184. name: "Megamacro",
  24185. height: math.unit(2, "miles")
  24186. },
  24187. {
  24188. name: "Gigamacro",
  24189. height: math.unit(20, "earths")
  24190. },
  24191. ]
  24192. ))
  24193. characterMakers.push(() => makeCharacter(
  24194. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24195. {
  24196. front: {
  24197. height: math.unit(5, "feet"),
  24198. weight: math.unit(180, "lb"),
  24199. name: "Front",
  24200. image: {
  24201. source: "./media/characters/mekana/front.svg",
  24202. extra: 1671 / 1605,
  24203. bottom: 3.5 / 1691
  24204. }
  24205. },
  24206. side: {
  24207. height: math.unit(5, "feet"),
  24208. weight: math.unit(180, "lb"),
  24209. name: "Side",
  24210. image: {
  24211. source: "./media/characters/mekana/side.svg",
  24212. extra: 1671 / 1605,
  24213. bottom: 3.5 / 1691
  24214. }
  24215. },
  24216. back: {
  24217. height: math.unit(5, "feet"),
  24218. weight: math.unit(180, "lb"),
  24219. name: "Back",
  24220. image: {
  24221. source: "./media/characters/mekana/back.svg",
  24222. extra: 1671 / 1605,
  24223. bottom: 3.5 / 1691
  24224. }
  24225. },
  24226. },
  24227. [
  24228. {
  24229. name: "Normal",
  24230. height: math.unit(5, "feet"),
  24231. default: true
  24232. },
  24233. ]
  24234. ))
  24235. characterMakers.push(() => makeCharacter(
  24236. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24237. {
  24238. front: {
  24239. height: math.unit(4 + 6 / 12, "feet"),
  24240. weight: math.unit(80, "lb"),
  24241. name: "Front",
  24242. image: {
  24243. source: "./media/characters/pixie/front.svg",
  24244. extra: 1924 / 1825,
  24245. bottom: 22.4 / 1946
  24246. }
  24247. },
  24248. },
  24249. [
  24250. {
  24251. name: "Normal",
  24252. height: math.unit(4 + 6 / 12, "feet"),
  24253. default: true
  24254. },
  24255. {
  24256. name: "Macro",
  24257. height: math.unit(40, "feet")
  24258. },
  24259. ]
  24260. ))
  24261. characterMakers.push(() => makeCharacter(
  24262. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24263. {
  24264. front: {
  24265. height: math.unit(2.1, "meters"),
  24266. weight: math.unit(200, "lb"),
  24267. name: "Front",
  24268. image: {
  24269. source: "./media/characters/the-lascivious/front.svg",
  24270. extra: 1 / 0.893,
  24271. bottom: 3.5 / 573.7
  24272. }
  24273. },
  24274. },
  24275. [
  24276. {
  24277. name: "Human Scale",
  24278. height: math.unit(2.1, "meters")
  24279. },
  24280. {
  24281. name: "Wolxi Scale",
  24282. height: math.unit(46.2, "m"),
  24283. default: true
  24284. },
  24285. {
  24286. name: "Boinker of Buildings",
  24287. height: math.unit(10, "km")
  24288. },
  24289. {
  24290. name: "Shagger of Skyscrapers",
  24291. height: math.unit(40, "km")
  24292. },
  24293. {
  24294. name: "Banger of Boroughs",
  24295. height: math.unit(4000, "km")
  24296. },
  24297. {
  24298. name: "Screwer of States",
  24299. height: math.unit(100000, "km")
  24300. },
  24301. {
  24302. name: "Pounder of Planets",
  24303. height: math.unit(2000000, "km")
  24304. },
  24305. ]
  24306. ))
  24307. characterMakers.push(() => makeCharacter(
  24308. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24309. {
  24310. front: {
  24311. height: math.unit(6, "feet"),
  24312. weight: math.unit(150, "lb"),
  24313. name: "Front",
  24314. image: {
  24315. source: "./media/characters/aj/front.svg",
  24316. extra: 2039 / 1562,
  24317. bottom: 40 / 2079
  24318. }
  24319. },
  24320. },
  24321. [
  24322. {
  24323. name: "Normal",
  24324. height: math.unit(11 + 6 / 12, "feet"),
  24325. default: true
  24326. },
  24327. {
  24328. name: "Megamacro",
  24329. height: math.unit(60, "megameters")
  24330. },
  24331. ]
  24332. ))
  24333. characterMakers.push(() => makeCharacter(
  24334. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24335. {
  24336. side: {
  24337. height: math.unit(31 + 8/12, "feet"),
  24338. weight: math.unit(75000, "kg"),
  24339. name: "Side",
  24340. image: {
  24341. source: "./media/characters/koros/side.svg",
  24342. extra: 1442/1297,
  24343. bottom: 122.7/1562
  24344. }
  24345. },
  24346. dicksKingsCrown: {
  24347. height: math.unit(6, "feet"),
  24348. name: "Dicks (King's Crown)",
  24349. image: {
  24350. source: "./media/characters/koros/dicks-kings-crown.svg"
  24351. }
  24352. },
  24353. dicksTailSet: {
  24354. height: math.unit(3, "feet"),
  24355. name: "Dicks (Tail Set)",
  24356. image: {
  24357. source: "./media/characters/koros/dicks-tail-set.svg"
  24358. }
  24359. },
  24360. dickCumming: {
  24361. height: math.unit(7.98, "feet"),
  24362. name: "Dick (Cumming)",
  24363. image: {
  24364. source: "./media/characters/koros/dick-cumming.svg"
  24365. }
  24366. },
  24367. dicksBack: {
  24368. height: math.unit(5.9, "feet"),
  24369. name: "Dicks (Back)",
  24370. image: {
  24371. source: "./media/characters/koros/dicks-back.svg"
  24372. }
  24373. },
  24374. dicksFront: {
  24375. height: math.unit(3.72, "feet"),
  24376. name: "Dicks (Front)",
  24377. image: {
  24378. source: "./media/characters/koros/dicks-front.svg"
  24379. }
  24380. },
  24381. dicksPeeking: {
  24382. height: math.unit(3.0, "feet"),
  24383. name: "Dicks (Peeking)",
  24384. image: {
  24385. source: "./media/characters/koros/dicks-peeking.svg"
  24386. }
  24387. },
  24388. eye: {
  24389. height: math.unit(1.7, "feet"),
  24390. name: "Eye",
  24391. image: {
  24392. source: "./media/characters/koros/eye.svg"
  24393. }
  24394. },
  24395. headFront: {
  24396. height: math.unit(11.69, "feet"),
  24397. name: "Head (Front)",
  24398. image: {
  24399. source: "./media/characters/koros/head-front.svg"
  24400. }
  24401. },
  24402. headSide: {
  24403. height: math.unit(14, "feet"),
  24404. name: "Head (Side)",
  24405. image: {
  24406. source: "./media/characters/koros/head-side.svg"
  24407. }
  24408. },
  24409. leg: {
  24410. height: math.unit(17, "feet"),
  24411. name: "Leg",
  24412. image: {
  24413. source: "./media/characters/koros/leg.svg"
  24414. }
  24415. },
  24416. mawSide: {
  24417. height: math.unit(12.8, "feet"),
  24418. name: "Maw (Side)",
  24419. image: {
  24420. source: "./media/characters/koros/maw-side.svg"
  24421. }
  24422. },
  24423. mawSpitting: {
  24424. height: math.unit(17, "feet"),
  24425. name: "Maw (Spitting)",
  24426. image: {
  24427. source: "./media/characters/koros/maw-spitting.svg"
  24428. }
  24429. },
  24430. slit: {
  24431. height: math.unit(2.8, "feet"),
  24432. name: "Slit",
  24433. image: {
  24434. source: "./media/characters/koros/slit.svg"
  24435. }
  24436. },
  24437. stomach: {
  24438. height: math.unit(6.8, "feet"),
  24439. capacity: math.unit(20, "people"),
  24440. name: "Stomach",
  24441. image: {
  24442. source: "./media/characters/koros/stomach.svg"
  24443. }
  24444. },
  24445. wingspanBottom: {
  24446. height: math.unit(114, "feet"),
  24447. name: "Wingspan (Bottom)",
  24448. image: {
  24449. source: "./media/characters/koros/wingspan-bottom.svg"
  24450. }
  24451. },
  24452. wingspanTop: {
  24453. height: math.unit(104, "feet"),
  24454. name: "Wingspan (Top)",
  24455. image: {
  24456. source: "./media/characters/koros/wingspan-top.svg"
  24457. }
  24458. },
  24459. },
  24460. [
  24461. {
  24462. name: "Normal",
  24463. height: math.unit(31 + 8/12, "feet"),
  24464. default: true
  24465. },
  24466. ]
  24467. ))
  24468. characterMakers.push(() => makeCharacter(
  24469. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24470. {
  24471. front: {
  24472. height: math.unit(18 + 5/12, "feet"),
  24473. weight: math.unit(3750, "kg"),
  24474. name: "Front",
  24475. image: {
  24476. source: "./media/characters/vexx/front.svg",
  24477. extra: 426/396,
  24478. bottom: 31.5/458
  24479. }
  24480. },
  24481. maw: {
  24482. height: math.unit(6, "feet"),
  24483. name: "Maw",
  24484. image: {
  24485. source: "./media/characters/vexx/maw.svg"
  24486. }
  24487. },
  24488. },
  24489. [
  24490. {
  24491. name: "Normal",
  24492. height: math.unit(18 + 5/12, "feet"),
  24493. default: true
  24494. },
  24495. ]
  24496. ))
  24497. characterMakers.push(() => makeCharacter(
  24498. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24499. {
  24500. front: {
  24501. height: math.unit(17 + 6/12, "feet"),
  24502. weight: math.unit(150, "lb"),
  24503. name: "Front",
  24504. image: {
  24505. source: "./media/characters/baadra/front.svg",
  24506. extra: 3137/2890,
  24507. bottom: 168.4/3305
  24508. }
  24509. },
  24510. back: {
  24511. height: math.unit(17 + 6/12, "feet"),
  24512. weight: math.unit(150, "lb"),
  24513. name: "Back",
  24514. image: {
  24515. source: "./media/characters/baadra/back.svg",
  24516. extra: 3142/2890,
  24517. bottom: 220/3371
  24518. }
  24519. },
  24520. head: {
  24521. height: math.unit(5.45, "feet"),
  24522. name: "Head",
  24523. image: {
  24524. source: "./media/characters/baadra/head.svg"
  24525. }
  24526. },
  24527. headAngry: {
  24528. height: math.unit(4.95, "feet"),
  24529. name: "Head (Angry)",
  24530. image: {
  24531. source: "./media/characters/baadra/head-angry.svg"
  24532. }
  24533. },
  24534. headOpen: {
  24535. height: math.unit(6, "feet"),
  24536. name: "Head (Open)",
  24537. image: {
  24538. source: "./media/characters/baadra/head-open.svg"
  24539. }
  24540. },
  24541. },
  24542. [
  24543. {
  24544. name: "Normal",
  24545. height: math.unit(17 + 6/12, "feet"),
  24546. default: true
  24547. },
  24548. ]
  24549. ))
  24550. characterMakers.push(() => makeCharacter(
  24551. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24552. {
  24553. front: {
  24554. height: math.unit(7 + 3/12, "feet"),
  24555. weight: math.unit(180, "lb"),
  24556. name: "Front",
  24557. image: {
  24558. source: "./media/characters/juri/front.svg",
  24559. extra: 1401/1237,
  24560. bottom: 18.5/1418
  24561. }
  24562. },
  24563. side: {
  24564. height: math.unit(7 + 3/12, "feet"),
  24565. weight: math.unit(180, "lb"),
  24566. name: "Side",
  24567. image: {
  24568. source: "./media/characters/juri/side.svg",
  24569. extra: 1424/1242,
  24570. bottom: 18.5/1447
  24571. }
  24572. },
  24573. sitting: {
  24574. height: math.unit(6, "feet"),
  24575. weight: math.unit(180, "lb"),
  24576. name: "Sitting",
  24577. image: {
  24578. source: "./media/characters/juri/sitting.svg",
  24579. extra: 1270/1143,
  24580. bottom: 100/1343
  24581. }
  24582. },
  24583. back: {
  24584. height: math.unit(7 + 3/12, "feet"),
  24585. weight: math.unit(180, "lb"),
  24586. name: "Back",
  24587. image: {
  24588. source: "./media/characters/juri/back.svg",
  24589. extra: 1377/1240,
  24590. bottom: 23.7/1405
  24591. }
  24592. },
  24593. maw: {
  24594. height: math.unit(2.8, "feet"),
  24595. name: "Maw",
  24596. image: {
  24597. source: "./media/characters/juri/maw.svg"
  24598. }
  24599. },
  24600. stomach: {
  24601. height: math.unit(0.89, "feet"),
  24602. capacity: math.unit(4, "liters"),
  24603. name: "Stomach",
  24604. image: {
  24605. source: "./media/characters/juri/stomach.svg"
  24606. }
  24607. },
  24608. },
  24609. [
  24610. {
  24611. name: "Normal",
  24612. height: math.unit(7 + 3/12, "feet"),
  24613. default: true
  24614. },
  24615. ]
  24616. ))
  24617. characterMakers.push(() => makeCharacter(
  24618. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24619. {
  24620. fox: {
  24621. height: math.unit(5 + 6/12, "feet"),
  24622. weight: math.unit(140, "lb"),
  24623. name: "Fox",
  24624. image: {
  24625. source: "./media/characters/maxene-sita/fox.svg",
  24626. extra: 146/138,
  24627. bottom: 2.1/148.19
  24628. }
  24629. },
  24630. kitsune: {
  24631. height: math.unit(10, "feet"),
  24632. weight: math.unit(800, "lb"),
  24633. name: "Kitsune",
  24634. image: {
  24635. source: "./media/characters/maxene-sita/kitsune.svg",
  24636. extra: 185/176,
  24637. bottom: 4.7/189.9
  24638. }
  24639. },
  24640. },
  24641. [
  24642. {
  24643. name: "Normal",
  24644. height: math.unit(5 + 6/12, "feet"),
  24645. default: true
  24646. },
  24647. ]
  24648. ))
  24649. characterMakers.push(() => makeCharacter(
  24650. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24651. {
  24652. front: {
  24653. height: math.unit(3 + 4/12, "feet"),
  24654. weight: math.unit(70, "lb"),
  24655. name: "Front",
  24656. image: {
  24657. source: "./media/characters/maia/front.svg",
  24658. extra: 227/219.5,
  24659. bottom: 40 / 267
  24660. }
  24661. },
  24662. back: {
  24663. height: math.unit(3 + 4/12, "feet"),
  24664. weight: math.unit(70, "lb"),
  24665. name: "Back",
  24666. image: {
  24667. source: "./media/characters/maia/back.svg",
  24668. extra: 237/225
  24669. }
  24670. },
  24671. },
  24672. [
  24673. {
  24674. name: "Normal",
  24675. height: math.unit(3 + 4/12, "feet"),
  24676. default: true
  24677. },
  24678. ]
  24679. ))
  24680. characterMakers.push(() => makeCharacter(
  24681. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24682. {
  24683. front: {
  24684. height: math.unit(5 + 10/12, "feet"),
  24685. weight: math.unit(197, "lb"),
  24686. name: "Front",
  24687. image: {
  24688. source: "./media/characters/jabaro/front.svg",
  24689. extra: 225/216,
  24690. bottom: 5.06/230
  24691. }
  24692. },
  24693. back: {
  24694. height: math.unit(5 + 10/12, "feet"),
  24695. weight: math.unit(197, "lb"),
  24696. name: "Back",
  24697. image: {
  24698. source: "./media/characters/jabaro/back.svg",
  24699. extra: 225/219,
  24700. bottom: 1.9/227
  24701. }
  24702. },
  24703. },
  24704. [
  24705. {
  24706. name: "Normal",
  24707. height: math.unit(5 + 10/12, "feet"),
  24708. default: true
  24709. },
  24710. ]
  24711. ))
  24712. characterMakers.push(() => makeCharacter(
  24713. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24714. {
  24715. front: {
  24716. height: math.unit(5 + 8/12, "feet"),
  24717. weight: math.unit(139, "lb"),
  24718. name: "Front",
  24719. image: {
  24720. source: "./media/characters/risa/front.svg",
  24721. extra: 270/260,
  24722. bottom: 11.2/282
  24723. }
  24724. },
  24725. back: {
  24726. height: math.unit(5 + 8/12, "feet"),
  24727. weight: math.unit(139, "lb"),
  24728. name: "Back",
  24729. image: {
  24730. source: "./media/characters/risa/back.svg",
  24731. extra: 264/255,
  24732. bottom: 4/268
  24733. }
  24734. },
  24735. },
  24736. [
  24737. {
  24738. name: "Normal",
  24739. height: math.unit(5 + 8/12, "feet"),
  24740. default: true
  24741. },
  24742. ]
  24743. ))
  24744. characterMakers.push(() => makeCharacter(
  24745. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24746. {
  24747. front: {
  24748. height: math.unit(2 + 11/12, "feet"),
  24749. weight: math.unit(30, "lb"),
  24750. name: "Front",
  24751. image: {
  24752. source: "./media/characters/weatley/front.svg",
  24753. bottom: 10.7/414,
  24754. extra: 403.5/362
  24755. }
  24756. },
  24757. back: {
  24758. height: math.unit(2 + 11/12, "feet"),
  24759. weight: math.unit(30, "lb"),
  24760. name: "Back",
  24761. image: {
  24762. source: "./media/characters/weatley/back.svg",
  24763. bottom: 10.7/414,
  24764. extra: 403.5/362
  24765. }
  24766. },
  24767. },
  24768. [
  24769. {
  24770. name: "Normal",
  24771. height: math.unit(2 + 11/12, "feet"),
  24772. default: true
  24773. },
  24774. ]
  24775. ))
  24776. characterMakers.push(() => makeCharacter(
  24777. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24778. {
  24779. front: {
  24780. height: math.unit(5 + 2/12, "feet"),
  24781. weight: math.unit(50, "kg"),
  24782. name: "Front",
  24783. image: {
  24784. source: "./media/characters/mercury-crescent/front.svg",
  24785. extra: 1088/1033,
  24786. bottom: 18.9/1109
  24787. }
  24788. },
  24789. },
  24790. [
  24791. {
  24792. name: "Normal",
  24793. height: math.unit(5 + 2/12, "feet"),
  24794. default: true
  24795. },
  24796. ]
  24797. ))
  24798. characterMakers.push(() => makeCharacter(
  24799. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24800. {
  24801. front: {
  24802. height: math.unit(2, "feet"),
  24803. weight: math.unit(15, "kg"),
  24804. name: "Front",
  24805. image: {
  24806. source: "./media/characters/diamond-jones/front.svg",
  24807. bottom: 16/568
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Normal",
  24814. height: math.unit(2, "feet"),
  24815. default: true
  24816. },
  24817. ]
  24818. ))
  24819. characterMakers.push(() => makeCharacter(
  24820. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24821. {
  24822. front: {
  24823. height: math.unit(3, "feet"),
  24824. weight: math.unit(30, "kg"),
  24825. name: "Front",
  24826. image: {
  24827. source: "./media/characters/sweet-bit/front.svg",
  24828. extra: 675/567,
  24829. bottom: 27.7/703
  24830. }
  24831. },
  24832. },
  24833. [
  24834. {
  24835. name: "Normal",
  24836. height: math.unit(3, "feet"),
  24837. default: true
  24838. },
  24839. ]
  24840. ))
  24841. characterMakers.push(() => makeCharacter(
  24842. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24843. {
  24844. side: {
  24845. height: math.unit(9.178, "feet"),
  24846. weight: math.unit(500, "lb"),
  24847. name: "Side",
  24848. image: {
  24849. source: "./media/characters/umbrazen/side.svg",
  24850. extra: 1730/1473,
  24851. bottom: 34.6/1765
  24852. }
  24853. },
  24854. },
  24855. [
  24856. {
  24857. name: "Normal",
  24858. height: math.unit(9.178, "feet"),
  24859. default: true
  24860. },
  24861. ]
  24862. ))
  24863. characterMakers.push(() => makeCharacter(
  24864. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24865. {
  24866. front: {
  24867. height: math.unit(10, "feet"),
  24868. weight: math.unit(750, "lb"),
  24869. name: "Front",
  24870. image: {
  24871. source: "./media/characters/arlist/front.svg",
  24872. extra: 961/778,
  24873. bottom: 6.2/986
  24874. }
  24875. },
  24876. },
  24877. [
  24878. {
  24879. name: "Normal",
  24880. height: math.unit(10, "feet"),
  24881. default: true
  24882. },
  24883. ]
  24884. ))
  24885. characterMakers.push(() => makeCharacter(
  24886. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24887. {
  24888. front: {
  24889. height: math.unit(5 + 1/12, "feet"),
  24890. weight: math.unit(110, "lb"),
  24891. name: "Front",
  24892. image: {
  24893. source: "./media/characters/aradel/front.svg",
  24894. extra: 324/303,
  24895. bottom: 3.6/329.4
  24896. }
  24897. },
  24898. },
  24899. [
  24900. {
  24901. name: "Normal",
  24902. height: math.unit(5 + 1/12, "feet"),
  24903. default: true
  24904. },
  24905. ]
  24906. ))
  24907. characterMakers.push(() => makeCharacter(
  24908. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24909. {
  24910. front: {
  24911. height: math.unit(3 + 8/12, "feet"),
  24912. weight: math.unit(50, "lb"),
  24913. name: "Front",
  24914. image: {
  24915. source: "./media/characters/serryn/front.svg",
  24916. extra: 1792/1656,
  24917. bottom: 43.5/1840
  24918. }
  24919. },
  24920. },
  24921. [
  24922. {
  24923. name: "Normal",
  24924. height: math.unit(3 + 8/12, "feet"),
  24925. default: true
  24926. },
  24927. ]
  24928. ))
  24929. characterMakers.push(() => makeCharacter(
  24930. { name: "Xavier Thyme" },
  24931. {
  24932. front: {
  24933. height: math.unit(7 + 10/12, "feet"),
  24934. weight: math.unit(255, "lb"),
  24935. name: "Front",
  24936. image: {
  24937. source: "./media/characters/xavier-thyme/front.svg",
  24938. extra: 3733/3642,
  24939. bottom: 131/3869
  24940. }
  24941. },
  24942. frontRaven: {
  24943. height: math.unit(7 + 10/12, "feet"),
  24944. weight: math.unit(255, "lb"),
  24945. name: "Front (Raven)",
  24946. image: {
  24947. source: "./media/characters/xavier-thyme/front-raven.svg",
  24948. extra: 4385/3642,
  24949. bottom: 131/4517
  24950. }
  24951. },
  24952. },
  24953. [
  24954. {
  24955. name: "Normal",
  24956. height: math.unit(7 + 10/12, "feet"),
  24957. default: true
  24958. },
  24959. ]
  24960. ))
  24961. characterMakers.push(() => makeCharacter(
  24962. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24963. {
  24964. front: {
  24965. height: math.unit(1.6, "m"),
  24966. weight: math.unit(50, "kg"),
  24967. name: "Front",
  24968. image: {
  24969. source: "./media/characters/kiki/front.svg",
  24970. extra: 4682/3610,
  24971. bottom: 115/4777
  24972. }
  24973. },
  24974. },
  24975. [
  24976. {
  24977. name: "Normal",
  24978. height: math.unit(1.6, "meters"),
  24979. default: true
  24980. },
  24981. ]
  24982. ))
  24983. characterMakers.push(() => makeCharacter(
  24984. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24985. {
  24986. front: {
  24987. height: math.unit(50, "m"),
  24988. weight: math.unit(500, "tonnes"),
  24989. name: "Front",
  24990. image: {
  24991. source: "./media/characters/ryoko/front.svg",
  24992. extra: 4632/3926,
  24993. bottom: 193/4823
  24994. }
  24995. },
  24996. },
  24997. [
  24998. {
  24999. name: "Normal",
  25000. height: math.unit(50, "meters"),
  25001. default: true
  25002. },
  25003. ]
  25004. ))
  25005. characterMakers.push(() => makeCharacter(
  25006. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25007. {
  25008. front: {
  25009. height: math.unit(30, "m"),
  25010. weight: math.unit(22, "tonnes"),
  25011. name: "Front",
  25012. image: {
  25013. source: "./media/characters/elio/front.svg",
  25014. extra: 4582/3720,
  25015. bottom: 236/4828
  25016. }
  25017. },
  25018. },
  25019. [
  25020. {
  25021. name: "Normal",
  25022. height: math.unit(30, "meters"),
  25023. default: true
  25024. },
  25025. ]
  25026. ))
  25027. characterMakers.push(() => makeCharacter(
  25028. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25029. {
  25030. front: {
  25031. height: math.unit(6 + 3/12, "feet"),
  25032. weight: math.unit(120, "lb"),
  25033. name: "Front",
  25034. image: {
  25035. source: "./media/characters/azura/front.svg",
  25036. extra: 1149/1135,
  25037. bottom: 45/1194
  25038. }
  25039. },
  25040. frontClothed: {
  25041. height: math.unit(6 + 3/12, "feet"),
  25042. weight: math.unit(120, "lb"),
  25043. name: "Front (Clothed)",
  25044. image: {
  25045. source: "./media/characters/azura/front-clothed.svg",
  25046. extra: 1149/1135,
  25047. bottom: 45/1194
  25048. }
  25049. },
  25050. },
  25051. [
  25052. {
  25053. name: "Normal",
  25054. height: math.unit(6 + 3/12, "feet"),
  25055. default: true
  25056. },
  25057. {
  25058. name: "Macro",
  25059. height: math.unit(20 + 6/12, "feet")
  25060. },
  25061. {
  25062. name: "Megamacro",
  25063. height: math.unit(12, "miles")
  25064. },
  25065. {
  25066. name: "Gigamacro",
  25067. height: math.unit(10000, "miles")
  25068. },
  25069. {
  25070. name: "Teramacro",
  25071. height: math.unit(900000, "miles")
  25072. },
  25073. ]
  25074. ))
  25075. characterMakers.push(() => makeCharacter(
  25076. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25077. {
  25078. front: {
  25079. height: math.unit(12, "feet"),
  25080. weight: math.unit(1, "ton"),
  25081. capacity: math.unit(660000, "gallons"),
  25082. name: "Front",
  25083. image: {
  25084. source: "./media/characters/zeus/front.svg",
  25085. extra: 5005/4717,
  25086. bottom: 363/5388
  25087. }
  25088. },
  25089. },
  25090. [
  25091. {
  25092. name: "Normal",
  25093. height: math.unit(12, "feet")
  25094. },
  25095. {
  25096. name: "Preferred Size",
  25097. height: math.unit(0.5, "miles"),
  25098. default: true
  25099. },
  25100. {
  25101. name: "Giga Horse",
  25102. height: math.unit(300, "miles")
  25103. },
  25104. {
  25105. name: "Riding Planets",
  25106. height: math.unit(30, "megameters")
  25107. },
  25108. {
  25109. name: "Cosmic Giant",
  25110. height: math.unit(3, "zettameters")
  25111. },
  25112. {
  25113. name: "Breeding God",
  25114. height: math.unit(9.92e22, "yottameters")
  25115. },
  25116. ]
  25117. ))
  25118. characterMakers.push(() => makeCharacter(
  25119. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25120. {
  25121. side: {
  25122. height: math.unit(9, "feet"),
  25123. weight: math.unit(1500, "kg"),
  25124. name: "Side",
  25125. image: {
  25126. source: "./media/characters/fang/side.svg",
  25127. extra: 924/866,
  25128. bottom: 47.5/972.3
  25129. }
  25130. },
  25131. },
  25132. [
  25133. {
  25134. name: "Normal",
  25135. height: math.unit(9, "feet"),
  25136. default: true
  25137. },
  25138. {
  25139. name: "Macro",
  25140. height: math.unit(75 + 6/12, "feet")
  25141. },
  25142. {
  25143. name: "Teramacro",
  25144. height: math.unit(50000, "miles")
  25145. },
  25146. ]
  25147. ))
  25148. characterMakers.push(() => makeCharacter(
  25149. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25150. {
  25151. front: {
  25152. height: math.unit(10, "feet"),
  25153. weight: math.unit(2, "tons"),
  25154. name: "Front",
  25155. image: {
  25156. source: "./media/characters/rekhit/front.svg",
  25157. extra: 2796/2590,
  25158. bottom: 225/3022
  25159. }
  25160. },
  25161. },
  25162. [
  25163. {
  25164. name: "Normal",
  25165. height: math.unit(10, "feet"),
  25166. default: true
  25167. },
  25168. {
  25169. name: "Macro",
  25170. height: math.unit(500, "feet")
  25171. },
  25172. ]
  25173. ))
  25174. characterMakers.push(() => makeCharacter(
  25175. { name: "Dahlia Verrick" },
  25176. {
  25177. front: {
  25178. height: math.unit(7 + 6.451/12, "feet"),
  25179. weight: math.unit(310, "lb"),
  25180. name: "Front",
  25181. image: {
  25182. source: "./media/characters/dahlia-verrick/front.svg",
  25183. extra: 1488/1365,
  25184. bottom: 6.2/1495
  25185. }
  25186. },
  25187. back: {
  25188. height: math.unit(7 + 6.451/12, "feet"),
  25189. weight: math.unit(310, "lb"),
  25190. name: "Back",
  25191. image: {
  25192. source: "./media/characters/dahlia-verrick/back.svg",
  25193. extra: 1472/1351,
  25194. bottom: 5.28/1477
  25195. }
  25196. },
  25197. frontBusiness: {
  25198. height: math.unit(7 + 6.451/12, "feet"),
  25199. weight: math.unit(200, "lb"),
  25200. name: "Front (Business)",
  25201. image: {
  25202. source: "./media/characters/dahlia-verrick/front-business.svg",
  25203. extra: 1478/1381,
  25204. bottom: 5.5/1484
  25205. }
  25206. },
  25207. frontCasual: {
  25208. height: math.unit(7 + 6.451/12, "feet"),
  25209. weight: math.unit(200, "lb"),
  25210. name: "Front (Casual)",
  25211. image: {
  25212. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25213. extra: 1478/1381,
  25214. bottom: 5.5/1484
  25215. }
  25216. },
  25217. },
  25218. [
  25219. {
  25220. name: "Travel-Sized",
  25221. height: math.unit(7.45, "inches")
  25222. },
  25223. {
  25224. name: "Normal",
  25225. height: math.unit(7 + 6.451/12, "feet"),
  25226. default: true
  25227. },
  25228. {
  25229. name: "Hitting the Town",
  25230. height: math.unit(37 + 8/12, "feet")
  25231. },
  25232. {
  25233. name: "Stomp in the Suburbs",
  25234. height: math.unit(964 + 9.728/12, "feet")
  25235. },
  25236. {
  25237. name: "Sit on the City",
  25238. height: math.unit(61747 + 10.592/12, "feet")
  25239. },
  25240. {
  25241. name: "Glomp the Globe",
  25242. height: math.unit(252919327 + 4.832/12, "feet")
  25243. },
  25244. ]
  25245. ))
  25246. characterMakers.push(() => makeCharacter(
  25247. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25248. {
  25249. front: {
  25250. height: math.unit(6 + 4/12, "feet"),
  25251. weight: math.unit(320, "lb"),
  25252. name: "Front",
  25253. image: {
  25254. source: "./media/characters/balina-mahigan/front.svg",
  25255. extra: 447/428,
  25256. bottom: 18/466
  25257. }
  25258. },
  25259. back: {
  25260. height: math.unit(6 + 4/12, "feet"),
  25261. weight: math.unit(320, "lb"),
  25262. name: "Back",
  25263. image: {
  25264. source: "./media/characters/balina-mahigan/back.svg",
  25265. extra: 445/428,
  25266. bottom: 4.07/448
  25267. }
  25268. },
  25269. arm: {
  25270. height: math.unit(1.88, "feet"),
  25271. name: "Arm",
  25272. image: {
  25273. source: "./media/characters/balina-mahigan/arm.svg"
  25274. }
  25275. },
  25276. backPort: {
  25277. height: math.unit(0.685, "feet"),
  25278. name: "Back Port",
  25279. image: {
  25280. source: "./media/characters/balina-mahigan/back-port.svg"
  25281. }
  25282. },
  25283. hoofpaw: {
  25284. height: math.unit(1.41, "feet"),
  25285. name: "Hoofpaw",
  25286. image: {
  25287. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25288. }
  25289. },
  25290. leftHandBack: {
  25291. height: math.unit(0.938, "feet"),
  25292. name: "Left Hand (Back)",
  25293. image: {
  25294. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25295. }
  25296. },
  25297. leftHandFront: {
  25298. height: math.unit(0.938, "feet"),
  25299. name: "Left Hand (Front)",
  25300. image: {
  25301. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25302. }
  25303. },
  25304. rightHandBack: {
  25305. height: math.unit(0.95, "feet"),
  25306. name: "Right Hand (Back)",
  25307. image: {
  25308. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25309. }
  25310. },
  25311. rightHandFront: {
  25312. height: math.unit(0.95, "feet"),
  25313. name: "Right Hand (Front)",
  25314. image: {
  25315. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25316. }
  25317. },
  25318. },
  25319. [
  25320. {
  25321. name: "Normal",
  25322. height: math.unit(6 + 4/12, "feet"),
  25323. default: true
  25324. },
  25325. ]
  25326. ))
  25327. characterMakers.push(() => makeCharacter(
  25328. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25329. {
  25330. front: {
  25331. height: math.unit(6, "feet"),
  25332. weight: math.unit(320, "lb"),
  25333. name: "Front",
  25334. image: {
  25335. source: "./media/characters/balina-mejeri/front.svg",
  25336. extra: 517/488,
  25337. bottom: 44.2/561
  25338. }
  25339. },
  25340. },
  25341. [
  25342. {
  25343. name: "Normal",
  25344. height: math.unit(6 + 4/12, "feet")
  25345. },
  25346. {
  25347. name: "Business",
  25348. height: math.unit(155, "feet"),
  25349. default: true
  25350. },
  25351. ]
  25352. ))
  25353. characterMakers.push(() => makeCharacter(
  25354. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25355. {
  25356. kneeling: {
  25357. height: math.unit(6 + 4/12, "feet"),
  25358. weight: math.unit(300*20, "lb"),
  25359. name: "Kneeling",
  25360. image: {
  25361. source: "./media/characters/balbarian/kneeling.svg",
  25362. extra: 922/862,
  25363. bottom: 42.4/965
  25364. }
  25365. },
  25366. },
  25367. [
  25368. {
  25369. name: "Normal",
  25370. height: math.unit(6 + 4/12, "feet")
  25371. },
  25372. {
  25373. name: "Treasured",
  25374. height: math.unit(18 + 9/12, "feet"),
  25375. default: true
  25376. },
  25377. {
  25378. name: "Macro",
  25379. height: math.unit(900, "feet")
  25380. },
  25381. ]
  25382. ))
  25383. characterMakers.push(() => makeCharacter(
  25384. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25385. {
  25386. front: {
  25387. height: math.unit(6 + 4/12, "feet"),
  25388. weight: math.unit(325, "lb"),
  25389. name: "Front",
  25390. image: {
  25391. source: "./media/characters/balina-amarini/front.svg",
  25392. extra: 415/403,
  25393. bottom: 19/433.4
  25394. }
  25395. },
  25396. back: {
  25397. height: math.unit(6 + 4/12, "feet"),
  25398. weight: math.unit(325, "lb"),
  25399. name: "Back",
  25400. image: {
  25401. source: "./media/characters/balina-amarini/back.svg",
  25402. extra: 415/403,
  25403. bottom: 13.5/432
  25404. }
  25405. },
  25406. overdrive: {
  25407. height: math.unit(6 + 4/12, "feet"),
  25408. weight: math.unit(400, "lb"),
  25409. name: "Overdrive",
  25410. image: {
  25411. source: "./media/characters/balina-amarini/overdrive.svg",
  25412. extra: 269/259,
  25413. bottom: 12/282
  25414. }
  25415. },
  25416. },
  25417. [
  25418. {
  25419. name: "Boom",
  25420. height: math.unit(9 + 10/12, "feet"),
  25421. default: true
  25422. },
  25423. {
  25424. name: "Macro",
  25425. height: math.unit(280, "feet")
  25426. },
  25427. ]
  25428. ))
  25429. characterMakers.push(() => makeCharacter(
  25430. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25431. {
  25432. goddess: {
  25433. height: math.unit(600, "feet"),
  25434. weight: math.unit(2000000, "tons"),
  25435. name: "Goddess",
  25436. image: {
  25437. source: "./media/characters/lady-kubwa/goddess.svg",
  25438. extra: 1240.5/1223,
  25439. bottom: 22/1263
  25440. }
  25441. },
  25442. goddesser: {
  25443. height: math.unit(900, "feet"),
  25444. weight: math.unit(20000000, "lb"),
  25445. name: "Goddess-er",
  25446. image: {
  25447. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25448. extra: 899/888,
  25449. bottom: 12.6/912
  25450. }
  25451. },
  25452. },
  25453. [
  25454. {
  25455. name: "Macro",
  25456. height: math.unit(600, "feet"),
  25457. default: true
  25458. },
  25459. {
  25460. name: "Megamacro",
  25461. height: math.unit(250, "miles")
  25462. },
  25463. ]
  25464. ))
  25465. characterMakers.push(() => makeCharacter(
  25466. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25467. {
  25468. front: {
  25469. height: math.unit(7 + 7/12, "feet"),
  25470. weight: math.unit(250, "lb"),
  25471. name: "Front",
  25472. image: {
  25473. source: "./media/characters/tala-grovehorn/front.svg",
  25474. extra: 2636/2525,
  25475. bottom: 147/2781
  25476. }
  25477. },
  25478. back: {
  25479. height: math.unit(7 + 7/12, "feet"),
  25480. weight: math.unit(250, "lb"),
  25481. name: "Back",
  25482. image: {
  25483. source: "./media/characters/tala-grovehorn/back.svg",
  25484. extra: 2635/2539,
  25485. bottom: 100/2732.8
  25486. }
  25487. },
  25488. mouth: {
  25489. height: math.unit(1.15, "feet"),
  25490. name: "Mouth",
  25491. image: {
  25492. source: "./media/characters/tala-grovehorn/mouth.svg"
  25493. }
  25494. },
  25495. dick: {
  25496. height: math.unit(2.36, "feet"),
  25497. name: "Dick",
  25498. image: {
  25499. source: "./media/characters/tala-grovehorn/dick.svg"
  25500. }
  25501. },
  25502. slit: {
  25503. height: math.unit(0.61, "feet"),
  25504. name: "Slit",
  25505. image: {
  25506. source: "./media/characters/tala-grovehorn/slit.svg"
  25507. }
  25508. },
  25509. },
  25510. [
  25511. ]
  25512. ))
  25513. characterMakers.push(() => makeCharacter(
  25514. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25515. {
  25516. front: {
  25517. height: math.unit(7 + 7/12, "feet"),
  25518. weight: math.unit(225, "lb"),
  25519. name: "Front",
  25520. image: {
  25521. source: "./media/characters/epona/front.svg",
  25522. extra: 2445/2290,
  25523. bottom: 251/2696
  25524. }
  25525. },
  25526. back: {
  25527. height: math.unit(7 + 7/12, "feet"),
  25528. weight: math.unit(225, "lb"),
  25529. name: "Back",
  25530. image: {
  25531. source: "./media/characters/epona/back.svg",
  25532. extra: 2546/2408,
  25533. bottom: 44/2589
  25534. }
  25535. },
  25536. genitals: {
  25537. height: math.unit(1.5, "feet"),
  25538. name: "Genitals",
  25539. image: {
  25540. source: "./media/characters/epona/genitals.svg"
  25541. }
  25542. },
  25543. },
  25544. [
  25545. {
  25546. name: "Normal",
  25547. height: math.unit(7 + 7/12, "feet")
  25548. },
  25549. ]
  25550. ))
  25551. characterMakers.push(() => makeCharacter(
  25552. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25553. {
  25554. front: {
  25555. height: math.unit(7, "feet"),
  25556. weight: math.unit(518, "lb"),
  25557. name: "Front",
  25558. image: {
  25559. source: "./media/characters/avia-bloodbourn/front.svg",
  25560. extra: 1466/1350,
  25561. bottom: 65/1527
  25562. }
  25563. },
  25564. },
  25565. [
  25566. ]
  25567. ))
  25568. characterMakers.push(() => makeCharacter(
  25569. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25570. {
  25571. front: {
  25572. height: math.unit(9.35, "feet"),
  25573. weight: math.unit(600, "lb"),
  25574. name: "Front",
  25575. image: {
  25576. source: "./media/characters/amera/front.svg",
  25577. extra: 891/818,
  25578. bottom: 30/922.7
  25579. }
  25580. },
  25581. back: {
  25582. height: math.unit(9.35, "feet"),
  25583. weight: math.unit(600, "lb"),
  25584. name: "Back",
  25585. image: {
  25586. source: "./media/characters/amera/back.svg",
  25587. extra: 876/824,
  25588. bottom: 6.8/884
  25589. }
  25590. },
  25591. dick: {
  25592. height: math.unit(2.14, "feet"),
  25593. name: "Dick",
  25594. image: {
  25595. source: "./media/characters/amera/dick.svg"
  25596. }
  25597. },
  25598. },
  25599. [
  25600. {
  25601. name: "Normal",
  25602. height: math.unit(9.35, "feet"),
  25603. default: true
  25604. },
  25605. ]
  25606. ))
  25607. characterMakers.push(() => makeCharacter(
  25608. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25609. {
  25610. kneeling: {
  25611. height: math.unit(3 + 4/12, "feet"),
  25612. weight: math.unit(90, "lb"),
  25613. name: "Kneeling",
  25614. image: {
  25615. source: "./media/characters/rosewen/kneeling.svg",
  25616. extra: 1835/1571,
  25617. bottom: 27.7/1862
  25618. }
  25619. },
  25620. },
  25621. [
  25622. {
  25623. name: "Normal",
  25624. height: math.unit(3 + 4/12, "feet"),
  25625. default: true
  25626. },
  25627. ]
  25628. ))
  25629. characterMakers.push(() => makeCharacter(
  25630. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25631. {
  25632. front: {
  25633. height: math.unit(5 + 10/12, "feet"),
  25634. weight: math.unit(200, "lb"),
  25635. name: "Front",
  25636. image: {
  25637. source: "./media/characters/sabah/front.svg",
  25638. extra: 849/763,
  25639. bottom: 33.9/881
  25640. }
  25641. },
  25642. },
  25643. [
  25644. {
  25645. name: "Normal",
  25646. height: math.unit(5 + 10/12, "feet"),
  25647. default: true
  25648. },
  25649. ]
  25650. ))
  25651. characterMakers.push(() => makeCharacter(
  25652. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25653. {
  25654. front: {
  25655. height: math.unit(3 + 5/12, "feet"),
  25656. weight: math.unit(40, "kg"),
  25657. name: "Front",
  25658. image: {
  25659. source: "./media/characters/purple-flame/front.svg",
  25660. extra: 1577/1412,
  25661. bottom: 97/1694
  25662. }
  25663. },
  25664. frontDressed: {
  25665. height: math.unit(3 + 5/12, "feet"),
  25666. weight: math.unit(40, "kg"),
  25667. name: "Front (Dressed)",
  25668. image: {
  25669. source: "./media/characters/purple-flame/front-dressed.svg",
  25670. extra: 1577/1412,
  25671. bottom: 97/1694
  25672. }
  25673. },
  25674. headphones: {
  25675. height: math.unit(0.85, "feet"),
  25676. name: "Headphones",
  25677. image: {
  25678. source: "./media/characters/purple-flame/headphones.svg"
  25679. }
  25680. },
  25681. },
  25682. [
  25683. {
  25684. name: "Really Small",
  25685. height: math.unit(5, "cm")
  25686. },
  25687. {
  25688. name: "Micro",
  25689. height: math.unit(1 + 5/12, "feet")
  25690. },
  25691. {
  25692. name: "Normal",
  25693. height: math.unit(3 + 5/12, "feet"),
  25694. default: true
  25695. },
  25696. {
  25697. name: "Minimacro",
  25698. height: math.unit(125, "feet")
  25699. },
  25700. {
  25701. name: "Macro",
  25702. height: math.unit(0.5, "miles")
  25703. },
  25704. {
  25705. name: "Megamacro",
  25706. height: math.unit(50, "miles")
  25707. },
  25708. {
  25709. name: "Gigantic",
  25710. height: math.unit(750, "miles")
  25711. },
  25712. {
  25713. name: "Planetary",
  25714. height: math.unit(15000, "miles")
  25715. },
  25716. ]
  25717. ))
  25718. characterMakers.push(() => makeCharacter(
  25719. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25720. {
  25721. front: {
  25722. height: math.unit(14, "feet"),
  25723. weight: math.unit(959, "lb"),
  25724. name: "Front",
  25725. image: {
  25726. source: "./media/characters/arsenal/front.svg",
  25727. extra: 2357/2157,
  25728. bottom: 93/2458
  25729. }
  25730. },
  25731. },
  25732. [
  25733. {
  25734. name: "Normal",
  25735. height: math.unit(14, "feet"),
  25736. default: true
  25737. },
  25738. ]
  25739. ))
  25740. characterMakers.push(() => makeCharacter(
  25741. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25742. {
  25743. front: {
  25744. height: math.unit(6, "feet"),
  25745. weight: math.unit(150, "lb"),
  25746. name: "Front",
  25747. image: {
  25748. source: "./media/characters/adira/front.svg",
  25749. extra: 1078/1029,
  25750. bottom: 87/1166
  25751. }
  25752. },
  25753. },
  25754. [
  25755. {
  25756. name: "Micro",
  25757. height: math.unit(4, "inches"),
  25758. default: true
  25759. },
  25760. {
  25761. name: "Macro",
  25762. height: math.unit(50, "feet")
  25763. },
  25764. ]
  25765. ))
  25766. characterMakers.push(() => makeCharacter(
  25767. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25768. {
  25769. front: {
  25770. height: math.unit(16, "feet"),
  25771. weight: math.unit(1000, "lb"),
  25772. name: "Front",
  25773. image: {
  25774. source: "./media/characters/grim/front.svg",
  25775. extra: 622/614,
  25776. bottom: 18.1/642
  25777. }
  25778. },
  25779. back: {
  25780. height: math.unit(16, "feet"),
  25781. weight: math.unit(1000, "lb"),
  25782. name: "Back",
  25783. image: {
  25784. source: "./media/characters/grim/back.svg",
  25785. extra: 610.6/602,
  25786. bottom: 40.8/652
  25787. }
  25788. },
  25789. hunched: {
  25790. height: math.unit(9.75, "feet"),
  25791. weight: math.unit(1000, "lb"),
  25792. name: "Hunched",
  25793. image: {
  25794. source: "./media/characters/grim/hunched.svg",
  25795. extra: 304/297,
  25796. bottom: 35.4/394
  25797. }
  25798. },
  25799. },
  25800. [
  25801. {
  25802. name: "Normal",
  25803. height: math.unit(16, "feet"),
  25804. default: true
  25805. },
  25806. ]
  25807. ))
  25808. characterMakers.push(() => makeCharacter(
  25809. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25810. {
  25811. front: {
  25812. height: math.unit(2.3, "meters"),
  25813. weight: math.unit(300, "lb"),
  25814. name: "Front",
  25815. image: {
  25816. source: "./media/characters/sinja/front-sfw.svg",
  25817. extra: 1393/1294,
  25818. bottom: 70/1463
  25819. }
  25820. },
  25821. frontNsfw: {
  25822. height: math.unit(2.3, "meters"),
  25823. weight: math.unit(300, "lb"),
  25824. name: "Front (NSFW)",
  25825. image: {
  25826. source: "./media/characters/sinja/front-nsfw.svg",
  25827. extra: 1393/1294,
  25828. bottom: 70/1463
  25829. }
  25830. },
  25831. back: {
  25832. height: math.unit(2.3, "meters"),
  25833. weight: math.unit(300, "lb"),
  25834. name: "Back",
  25835. image: {
  25836. source: "./media/characters/sinja/back.svg",
  25837. extra: 1393/1294,
  25838. bottom: 70/1463
  25839. }
  25840. },
  25841. head: {
  25842. height: math.unit(1.771, "feet"),
  25843. name: "Head",
  25844. image: {
  25845. source: "./media/characters/sinja/head.svg"
  25846. }
  25847. },
  25848. slit: {
  25849. height: math.unit(0.8, "feet"),
  25850. name: "Slit",
  25851. image: {
  25852. source: "./media/characters/sinja/slit.svg"
  25853. }
  25854. },
  25855. },
  25856. [
  25857. {
  25858. name: "Normal",
  25859. height: math.unit(2.3, "meters")
  25860. },
  25861. {
  25862. name: "Macro",
  25863. height: math.unit(91, "meters"),
  25864. default: true
  25865. },
  25866. {
  25867. name: "Megamacro",
  25868. height: math.unit(91440, "meters")
  25869. },
  25870. {
  25871. name: "Gigamacro",
  25872. height: math.unit(60960000, "meters")
  25873. },
  25874. {
  25875. name: "Teramacro",
  25876. height: math.unit(9144000000, "meters")
  25877. },
  25878. ]
  25879. ))
  25880. characterMakers.push(() => makeCharacter(
  25881. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25882. {
  25883. front: {
  25884. height: math.unit(1.7, "meters"),
  25885. weight: math.unit(130, "lb"),
  25886. name: "Front",
  25887. image: {
  25888. source: "./media/characters/kyu/front.svg",
  25889. extra: 415/395,
  25890. bottom: 5/420
  25891. }
  25892. },
  25893. head: {
  25894. height: math.unit(1.75, "feet"),
  25895. name: "Head",
  25896. image: {
  25897. source: "./media/characters/kyu/head.svg"
  25898. }
  25899. },
  25900. foot: {
  25901. height: math.unit(0.81, "feet"),
  25902. name: "Foot",
  25903. image: {
  25904. source: "./media/characters/kyu/foot.svg"
  25905. }
  25906. },
  25907. },
  25908. [
  25909. {
  25910. name: "Normal",
  25911. height: math.unit(1.7, "meters")
  25912. },
  25913. {
  25914. name: "Macro",
  25915. height: math.unit(131, "feet"),
  25916. default: true
  25917. },
  25918. {
  25919. name: "Megamacro",
  25920. height: math.unit(91440, "meters")
  25921. },
  25922. {
  25923. name: "Gigamacro",
  25924. height: math.unit(60960000, "meters")
  25925. },
  25926. {
  25927. name: "Teramacro",
  25928. height: math.unit(9144000000, "meters")
  25929. },
  25930. ]
  25931. ))
  25932. characterMakers.push(() => makeCharacter(
  25933. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25934. {
  25935. front: {
  25936. height: math.unit(7 + 1/12, "feet"),
  25937. weight: math.unit(250, "lb"),
  25938. name: "Front",
  25939. image: {
  25940. source: "./media/characters/joey/front.svg",
  25941. extra: 1791/1537,
  25942. bottom: 28/1816
  25943. }
  25944. },
  25945. },
  25946. [
  25947. {
  25948. name: "Micro",
  25949. height: math.unit(3, "inches")
  25950. },
  25951. {
  25952. name: "Normal",
  25953. height: math.unit(7 + 1/12, "feet"),
  25954. default: true
  25955. },
  25956. ]
  25957. ))
  25958. characterMakers.push(() => makeCharacter(
  25959. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  25960. {
  25961. front: {
  25962. height: math.unit(165, "cm"),
  25963. weight: math.unit(140, "lb"),
  25964. name: "Front",
  25965. image: {
  25966. source: "./media/characters/sam-evans/front.svg",
  25967. extra: 3417/3230,
  25968. bottom: 41.3/3417
  25969. }
  25970. },
  25971. frontSixTails: {
  25972. height: math.unit(165, "cm"),
  25973. weight: math.unit(140, "lb"),
  25974. name: "Front-six-tails",
  25975. image: {
  25976. source: "./media/characters/sam-evans/front-six-tails.svg",
  25977. extra: 3417/3230,
  25978. bottom: 41.3/3417
  25979. }
  25980. },
  25981. back: {
  25982. height: math.unit(165, "cm"),
  25983. weight: math.unit(140, "lb"),
  25984. name: "Back",
  25985. image: {
  25986. source: "./media/characters/sam-evans/back.svg",
  25987. extra: 3227/3032,
  25988. bottom: 6.8/3234
  25989. }
  25990. },
  25991. face: {
  25992. height: math.unit(0.68, "feet"),
  25993. name: "Face",
  25994. image: {
  25995. source: "./media/characters/sam-evans/face.svg"
  25996. }
  25997. },
  25998. },
  25999. [
  26000. {
  26001. name: "Normal",
  26002. height: math.unit(165, "cm"),
  26003. default: true
  26004. },
  26005. {
  26006. name: "Macro",
  26007. height: math.unit(100, "meters")
  26008. },
  26009. {
  26010. name: "Macro+",
  26011. height: math.unit(800, "meters")
  26012. },
  26013. {
  26014. name: "Macro++",
  26015. height: math.unit(3, "km")
  26016. },
  26017. {
  26018. name: "Macro+++",
  26019. height: math.unit(30, "km")
  26020. },
  26021. ]
  26022. ))
  26023. characterMakers.push(() => makeCharacter(
  26024. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26025. {
  26026. front: {
  26027. height: math.unit(10, "feet"),
  26028. weight: math.unit(750, "lb"),
  26029. name: "Front",
  26030. image: {
  26031. source: "./media/characters/juliet-a/front.svg",
  26032. extra: 1766/1720,
  26033. bottom: 43/1809
  26034. }
  26035. },
  26036. back: {
  26037. height: math.unit(10, "feet"),
  26038. weight: math.unit(750, "lb"),
  26039. name: "Back",
  26040. image: {
  26041. source: "./media/characters/juliet-a/back.svg",
  26042. extra: 1781/1734,
  26043. bottom: 35/1810,
  26044. }
  26045. },
  26046. },
  26047. [
  26048. {
  26049. name: "Normal",
  26050. height: math.unit(10, "feet"),
  26051. default: true
  26052. },
  26053. {
  26054. name: "Dragon Form",
  26055. height: math.unit(250, "feet")
  26056. },
  26057. {
  26058. name: "Macro",
  26059. height: math.unit(1000, "feet")
  26060. },
  26061. {
  26062. name: "Megamacro",
  26063. height: math.unit(10000, "feet")
  26064. }
  26065. ]
  26066. ))
  26067. characterMakers.push(() => makeCharacter(
  26068. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26069. {
  26070. regular: {
  26071. height: math.unit(7 + 3/12, "feet"),
  26072. weight: math.unit(260, "lb"),
  26073. name: "Regular",
  26074. image: {
  26075. source: "./media/characters/wild/regular.svg",
  26076. extra: 97.45/92,
  26077. bottom: 6.8/104.3
  26078. }
  26079. },
  26080. biggums: {
  26081. height: math.unit(8 + 6 /12, "feet"),
  26082. weight: math.unit(425, "lb"),
  26083. name: "Biggums",
  26084. image: {
  26085. source: "./media/characters/wild/biggums.svg",
  26086. extra: 97.45/92,
  26087. bottom: 7.5/132.34
  26088. }
  26089. },
  26090. mawRegular: {
  26091. height: math.unit(1.24, "feet"),
  26092. name: "Maw (Regular)",
  26093. image: {
  26094. source: "./media/characters/wild/maw.svg"
  26095. }
  26096. },
  26097. mawBiggums: {
  26098. height: math.unit(1.47, "feet"),
  26099. name: "Maw (Biggums)",
  26100. image: {
  26101. source: "./media/characters/wild/maw.svg"
  26102. }
  26103. },
  26104. },
  26105. [
  26106. {
  26107. name: "Normal",
  26108. height: math.unit(7 + 3/12, "feet"),
  26109. default: true
  26110. },
  26111. ]
  26112. ))
  26113. characterMakers.push(() => makeCharacter(
  26114. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26115. {
  26116. front: {
  26117. height: math.unit(2.5, "meters"),
  26118. weight: math.unit(200, "kg"),
  26119. name: "Front",
  26120. image: {
  26121. source: "./media/characters/vidar/front.svg",
  26122. extra: 2994/2795,
  26123. bottom: 56/3061
  26124. }
  26125. },
  26126. back: {
  26127. height: math.unit(2.5, "meters"),
  26128. weight: math.unit(200, "kg"),
  26129. name: "Back",
  26130. image: {
  26131. source: "./media/characters/vidar/back.svg",
  26132. extra: 3131/2928,
  26133. bottom: 13.5/3141.5
  26134. }
  26135. },
  26136. feral: {
  26137. height: math.unit(2.5, "meters"),
  26138. weight: math.unit(2000, "kg"),
  26139. name: "Feral",
  26140. image: {
  26141. source: "./media/characters/vidar/feral.svg",
  26142. extra: 2790/1765,
  26143. bottom: 6/2796
  26144. }
  26145. },
  26146. },
  26147. [
  26148. {
  26149. name: "Normal",
  26150. height: math.unit(2.5, "meters"),
  26151. default: true
  26152. },
  26153. {
  26154. name: "Macro",
  26155. height: math.unit(100, "meters")
  26156. },
  26157. ]
  26158. ))
  26159. characterMakers.push(() => makeCharacter(
  26160. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26161. {
  26162. front: {
  26163. height: math.unit(5 + 9/12, "feet"),
  26164. weight: math.unit(120, "lb"),
  26165. name: "Front",
  26166. image: {
  26167. source: "./media/characters/ash/front.svg",
  26168. extra: 2189/1961,
  26169. bottom: 5.2/2194
  26170. }
  26171. },
  26172. },
  26173. [
  26174. {
  26175. name: "Normal",
  26176. height: math.unit(5 + 9/12, "feet"),
  26177. default: true
  26178. },
  26179. ]
  26180. ))
  26181. characterMakers.push(() => makeCharacter(
  26182. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26183. {
  26184. front: {
  26185. height: math.unit(9, "feet"),
  26186. weight: math.unit(10000, "lb"),
  26187. name: "Front",
  26188. image: {
  26189. source: "./media/characters/gygabite/front.svg",
  26190. bottom: 31.7/537.8,
  26191. extra: 505/370
  26192. }
  26193. },
  26194. },
  26195. [
  26196. {
  26197. name: "Normal",
  26198. height: math.unit(9, "feet"),
  26199. default: true
  26200. },
  26201. ]
  26202. ))
  26203. characterMakers.push(() => makeCharacter(
  26204. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26205. {
  26206. front: {
  26207. height: math.unit(12, "feet"),
  26208. weight: math.unit(35000, "lb"),
  26209. name: "Front",
  26210. image: {
  26211. source: "./media/characters/p0tat0/front.svg",
  26212. extra: 1065/921,
  26213. bottom: 55.7/1121.25
  26214. }
  26215. },
  26216. },
  26217. [
  26218. {
  26219. name: "Normal",
  26220. height: math.unit(12, "feet"),
  26221. default: true
  26222. },
  26223. ]
  26224. ))
  26225. characterMakers.push(() => makeCharacter(
  26226. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26227. {
  26228. side: {
  26229. height: math.unit(6.5, "feet"),
  26230. weight: math.unit(800, "lb"),
  26231. name: "Side",
  26232. image: {
  26233. source: "./media/characters/dusk/side.svg",
  26234. extra: 615/373,
  26235. bottom: 53/664
  26236. }
  26237. },
  26238. sitting: {
  26239. height: math.unit(7, "feet"),
  26240. weight: math.unit(800, "lb"),
  26241. name: "Sitting",
  26242. image: {
  26243. source: "./media/characters/dusk/sitting.svg",
  26244. extra: 753/425,
  26245. bottom: 33/774
  26246. }
  26247. },
  26248. head: {
  26249. height: math.unit(6.1, "feet"),
  26250. name: "Head",
  26251. image: {
  26252. source: "./media/characters/dusk/head.svg"
  26253. }
  26254. },
  26255. },
  26256. [
  26257. {
  26258. name: "Normal",
  26259. height: math.unit(7, "feet"),
  26260. default: true
  26261. },
  26262. ]
  26263. ))
  26264. characterMakers.push(() => makeCharacter(
  26265. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26266. {
  26267. front: {
  26268. height: math.unit(15, "feet"),
  26269. weight: math.unit(7000, "lb"),
  26270. name: "Front",
  26271. image: {
  26272. source: "./media/characters/jay-direwolf/front.svg",
  26273. extra: 1810/1732,
  26274. bottom: 66/1892
  26275. }
  26276. },
  26277. },
  26278. [
  26279. {
  26280. name: "Normal",
  26281. height: math.unit(15, "feet"),
  26282. default: true
  26283. },
  26284. ]
  26285. ))
  26286. characterMakers.push(() => makeCharacter(
  26287. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26288. {
  26289. front: {
  26290. height: math.unit(4 + 9/12, "feet"),
  26291. weight: math.unit(130, "lb"),
  26292. name: "Front",
  26293. image: {
  26294. source: "./media/characters/anchovie/front.svg",
  26295. extra: 382/350,
  26296. bottom: 25/409
  26297. }
  26298. },
  26299. back: {
  26300. height: math.unit(4 + 9/12, "feet"),
  26301. weight: math.unit(130, "lb"),
  26302. name: "Back",
  26303. image: {
  26304. source: "./media/characters/anchovie/back.svg",
  26305. extra: 385/352,
  26306. bottom: 16.6/402
  26307. }
  26308. },
  26309. frontDressed: {
  26310. height: math.unit(4 + 9/12, "feet"),
  26311. weight: math.unit(130, "lb"),
  26312. name: "Front (Dressed)",
  26313. image: {
  26314. source: "./media/characters/anchovie/front-dressed.svg",
  26315. extra: 382/350,
  26316. bottom: 25/409
  26317. }
  26318. },
  26319. backDressed: {
  26320. height: math.unit(4 + 9/12, "feet"),
  26321. weight: math.unit(130, "lb"),
  26322. name: "Back (Dressed)",
  26323. image: {
  26324. source: "./media/characters/anchovie/back-dressed.svg",
  26325. extra: 385/352,
  26326. bottom: 16.6/402
  26327. }
  26328. },
  26329. },
  26330. [
  26331. {
  26332. name: "Micro",
  26333. height: math.unit(6.4, "inches")
  26334. },
  26335. {
  26336. name: "Normal",
  26337. height: math.unit(4 + 9/12, "feet"),
  26338. default: true
  26339. },
  26340. ]
  26341. ))
  26342. characterMakers.push(() => makeCharacter(
  26343. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26344. {
  26345. front: {
  26346. height: math.unit(2, "meters"),
  26347. weight: math.unit(180, "lb"),
  26348. name: "Front",
  26349. image: {
  26350. source: "./media/characters/acidrenamon/front.svg",
  26351. extra: 987/890,
  26352. bottom: 22.8/1009
  26353. }
  26354. },
  26355. back: {
  26356. height: math.unit(2, "meters"),
  26357. weight: math.unit(180, "lb"),
  26358. name: "Back",
  26359. image: {
  26360. source: "./media/characters/acidrenamon/back.svg",
  26361. extra: 983/891,
  26362. bottom: 8.4/992
  26363. }
  26364. },
  26365. head: {
  26366. height: math.unit(1.92, "feet"),
  26367. name: "Head",
  26368. image: {
  26369. source: "./media/characters/acidrenamon/head.svg"
  26370. }
  26371. },
  26372. rump: {
  26373. height: math.unit(1.72, "feet"),
  26374. name: "Rump",
  26375. image: {
  26376. source: "./media/characters/acidrenamon/rump.svg"
  26377. }
  26378. },
  26379. tail: {
  26380. height: math.unit(4.2, "feet"),
  26381. name: "Tail",
  26382. image: {
  26383. source: "./media/characters/acidrenamon/tail.svg"
  26384. }
  26385. },
  26386. },
  26387. [
  26388. {
  26389. name: "Normal",
  26390. height: math.unit(2, "meters"),
  26391. default: true
  26392. },
  26393. {
  26394. name: "Minimacro",
  26395. height: math.unit(7, "meters")
  26396. },
  26397. {
  26398. name: "Macro",
  26399. height: math.unit(200, "meters")
  26400. },
  26401. {
  26402. name: "Gigamacro",
  26403. height: math.unit(0.2, "earths")
  26404. },
  26405. ]
  26406. ))
  26407. characterMakers.push(() => makeCharacter(
  26408. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26409. {
  26410. front: {
  26411. height: math.unit(6, "feet"),
  26412. weight: math.unit(150, "lb"),
  26413. name: "Front",
  26414. image: {
  26415. source: "./media/characters/kenzie-lee/front.svg",
  26416. extra: 1525/1465,
  26417. bottom: 45/1570
  26418. }
  26419. },
  26420. side: {
  26421. height: math.unit(6, "feet"),
  26422. weight: math.unit(150, "lb"),
  26423. name: "Side",
  26424. image: {
  26425. source: "./media/characters/kenzie-lee/side.svg",
  26426. extra: 5505/5383,
  26427. bottom: 60/5573
  26428. }
  26429. },
  26430. },
  26431. [
  26432. {
  26433. name: "Normal",
  26434. height: math.unit(152, "feet"),
  26435. default: true
  26436. },
  26437. {
  26438. name: "Megamacro",
  26439. height: math.unit(7, "miles")
  26440. },
  26441. {
  26442. name: "Gigamacro",
  26443. height: math.unit(8000, "miles")
  26444. },
  26445. ]
  26446. ))
  26447. characterMakers.push(() => makeCharacter(
  26448. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26449. {
  26450. side: {
  26451. height: math.unit(6, "feet"),
  26452. weight: math.unit(150, "lb"),
  26453. name: "Side",
  26454. image: {
  26455. source: "./media/characters/withers/side.svg",
  26456. extra: 1830/1728,
  26457. bottom: 96/1927
  26458. }
  26459. },
  26460. },
  26461. [
  26462. {
  26463. name: "Normal",
  26464. height: math.unit(6, "feet")
  26465. },
  26466. {
  26467. name: "Macro",
  26468. height: math.unit(50, "feet")
  26469. },
  26470. {
  26471. name: "Megamacro",
  26472. height: math.unit(15, "miles"),
  26473. default: true
  26474. },
  26475. {
  26476. name: "Megamacro+",
  26477. height: math.unit(100, "km")
  26478. },
  26479. {
  26480. name: "Gigamacro",
  26481. height: math.unit(4750, "miles")
  26482. },
  26483. {
  26484. name: "Gigamacro+",
  26485. height: math.unit(32000, "miles")
  26486. },
  26487. ]
  26488. ))
  26489. characterMakers.push(() => makeCharacter(
  26490. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26491. {
  26492. front: {
  26493. height: math.unit(6 + 7/12, "feet"),
  26494. weight: math.unit(250, "lb"),
  26495. name: "Front",
  26496. image: {
  26497. source: "./media/characters/nemoskii/front.svg",
  26498. extra: 2270/1734,
  26499. bottom: 86/2354
  26500. }
  26501. },
  26502. back: {
  26503. height: math.unit(6 + 7/12, "feet"),
  26504. weight: math.unit(250, "lb"),
  26505. name: "Back",
  26506. image: {
  26507. source: "./media/characters/nemoskii/back.svg",
  26508. extra: 1845/1788,
  26509. bottom: 10.5/1852
  26510. }
  26511. },
  26512. head: {
  26513. height: math.unit(1.31, "feet"),
  26514. name: "Head",
  26515. image: {
  26516. source: "./media/characters/nemoskii/head.svg"
  26517. }
  26518. },
  26519. },
  26520. [
  26521. {
  26522. name: "Normal",
  26523. height: math.unit(6 + 7/12, "feet"),
  26524. default: true
  26525. },
  26526. ]
  26527. ))
  26528. characterMakers.push(() => makeCharacter(
  26529. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26530. {
  26531. front: {
  26532. height: math.unit(1, "mile"),
  26533. weight: math.unit(265261.9, "lb"),
  26534. name: "Front",
  26535. image: {
  26536. source: "./media/characters/shui/front.svg",
  26537. extra: 1633/1564,
  26538. bottom: 91.5/1726
  26539. }
  26540. },
  26541. },
  26542. [
  26543. {
  26544. name: "Macro",
  26545. height: math.unit(1, "mile"),
  26546. default: true
  26547. },
  26548. ]
  26549. ))
  26550. characterMakers.push(() => makeCharacter(
  26551. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26552. {
  26553. front: {
  26554. height: math.unit(12 + 6/12, "feet"),
  26555. weight: math.unit(1342, "lb"),
  26556. name: "Front",
  26557. image: {
  26558. source: "./media/characters/arokh-takakura/front.svg",
  26559. extra: 1089/1043,
  26560. bottom: 77.4/1176.7
  26561. }
  26562. },
  26563. back: {
  26564. height: math.unit(12 + 6/12, "feet"),
  26565. weight: math.unit(1342, "lb"),
  26566. name: "Back",
  26567. image: {
  26568. source: "./media/characters/arokh-takakura/back.svg",
  26569. extra: 1046/1019,
  26570. bottom: 102/1150
  26571. }
  26572. },
  26573. },
  26574. [
  26575. {
  26576. name: "Big",
  26577. height: math.unit(12 + 6/12, "feet"),
  26578. default: true
  26579. },
  26580. ]
  26581. ))
  26582. characterMakers.push(() => makeCharacter(
  26583. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26584. {
  26585. front: {
  26586. height: math.unit(5 + 6/12, "feet"),
  26587. weight: math.unit(150, "lb"),
  26588. name: "Front",
  26589. image: {
  26590. source: "./media/characters/theo/front.svg",
  26591. extra: 1184/1131,
  26592. bottom: 7.4/1191
  26593. }
  26594. },
  26595. },
  26596. [
  26597. {
  26598. name: "Micro",
  26599. height: math.unit(5, "inches")
  26600. },
  26601. {
  26602. name: "Normal",
  26603. height: math.unit(5 + 6/12, "feet"),
  26604. default: true
  26605. },
  26606. ]
  26607. ))
  26608. characterMakers.push(() => makeCharacter(
  26609. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26610. {
  26611. front: {
  26612. height: math.unit(5 + 9/12, "feet"),
  26613. weight: math.unit(130, "lb"),
  26614. name: "Front",
  26615. image: {
  26616. source: "./media/characters/cecelia-swift/front.svg",
  26617. extra: 502/484,
  26618. bottom: 23/523
  26619. }
  26620. },
  26621. back: {
  26622. height: math.unit(5 + 9/12, "feet"),
  26623. weight: math.unit(130, "lb"),
  26624. name: "Back",
  26625. image: {
  26626. source: "./media/characters/cecelia-swift/back.svg",
  26627. extra: 499/485,
  26628. bottom: 12/511
  26629. }
  26630. },
  26631. head: {
  26632. height: math.unit(0.90, "feet"),
  26633. name: "Head",
  26634. image: {
  26635. source: "./media/characters/cecelia-swift/head.svg"
  26636. }
  26637. },
  26638. rump: {
  26639. height: math.unit(1.75, "feet"),
  26640. name: "Rump",
  26641. image: {
  26642. source: "./media/characters/cecelia-swift/rump.svg"
  26643. }
  26644. },
  26645. },
  26646. [
  26647. {
  26648. name: "Normal",
  26649. height: math.unit(5 + 9/12, "feet"),
  26650. default: true
  26651. },
  26652. {
  26653. name: "Big",
  26654. height: math.unit(50, "feet")
  26655. },
  26656. {
  26657. name: "Macro",
  26658. height: math.unit(100, "feet")
  26659. },
  26660. {
  26661. name: "Macro+",
  26662. height: math.unit(500, "feet")
  26663. },
  26664. {
  26665. name: "Macro++",
  26666. height: math.unit(1000, "feet")
  26667. },
  26668. ]
  26669. ))
  26670. characterMakers.push(() => makeCharacter(
  26671. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26672. {
  26673. front: {
  26674. height: math.unit(6, "feet"),
  26675. weight: math.unit(150, "lb"),
  26676. name: "Front",
  26677. image: {
  26678. source: "./media/characters/kaunan/front.svg",
  26679. extra: 2890/2523,
  26680. bottom: 49/2939
  26681. }
  26682. },
  26683. },
  26684. [
  26685. {
  26686. name: "Macro",
  26687. height: math.unit(150, "feet"),
  26688. default: true
  26689. },
  26690. ]
  26691. ))
  26692. characterMakers.push(() => makeCharacter(
  26693. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26694. {
  26695. front: {
  26696. height: math.unit(175, "cm"),
  26697. weight: math.unit(60, "kg"),
  26698. name: "Front",
  26699. image: {
  26700. source: "./media/characters/fei/front.svg",
  26701. extra: 2581/2400,
  26702. bottom: 82.2/2663
  26703. }
  26704. },
  26705. },
  26706. [
  26707. {
  26708. name: "Mortal",
  26709. height: math.unit(175, "cm")
  26710. },
  26711. {
  26712. name: "Normal",
  26713. height: math.unit(3500, "m"),
  26714. default: true
  26715. },
  26716. {
  26717. name: "Stroll",
  26718. height: math.unit(17.5, "km")
  26719. },
  26720. {
  26721. name: "Showoff",
  26722. height: math.unit(175, "km")
  26723. },
  26724. ]
  26725. ))
  26726. characterMakers.push(() => makeCharacter(
  26727. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26728. {
  26729. front: {
  26730. height: math.unit(7, "feet"),
  26731. weight: math.unit(1000, "kg"),
  26732. name: "Front",
  26733. image: {
  26734. source: "./media/characters/edrax/front.svg",
  26735. extra: 2838/2550,
  26736. bottom: 130/2968
  26737. }
  26738. },
  26739. },
  26740. [
  26741. {
  26742. name: "Small",
  26743. height: math.unit(7, "feet")
  26744. },
  26745. {
  26746. name: "Normal",
  26747. height: math.unit(1500, "meters")
  26748. },
  26749. {
  26750. name: "Mega",
  26751. height: math.unit(12000000, "km"),
  26752. default: true
  26753. },
  26754. {
  26755. name: "Megamacro",
  26756. height: math.unit(10600000, "lightyears")
  26757. },
  26758. {
  26759. name: "Hypermacro",
  26760. height: math.unit(256, "yottameters")
  26761. },
  26762. ]
  26763. ))
  26764. characterMakers.push(() => makeCharacter(
  26765. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26766. {
  26767. front: {
  26768. height: math.unit(10, "feet"),
  26769. weight: math.unit(750, "lb"),
  26770. name: "Front",
  26771. image: {
  26772. source: "./media/characters/clove/front.svg",
  26773. extra: 2031/1860,
  26774. bottom: 47.8/2080
  26775. }
  26776. },
  26777. back: {
  26778. height: math.unit(10, "feet"),
  26779. weight: math.unit(750, "lb"),
  26780. name: "Back",
  26781. image: {
  26782. source: "./media/characters/clove/back.svg",
  26783. extra: 2025/1859,
  26784. bottom: 46/2071
  26785. }
  26786. },
  26787. },
  26788. [
  26789. {
  26790. name: "Normal",
  26791. height: math.unit(10, "feet")
  26792. },
  26793. ]
  26794. ))
  26795. characterMakers.push(() => makeCharacter(
  26796. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26797. {
  26798. front: {
  26799. height: math.unit(4, "feet"),
  26800. weight: math.unit(50, "lb"),
  26801. name: "Front",
  26802. image: {
  26803. source: "./media/characters/alex-rabbit/front.svg",
  26804. extra: 507/458,
  26805. bottom: 18.5/527
  26806. }
  26807. },
  26808. back: {
  26809. height: math.unit(4, "feet"),
  26810. weight: math.unit(50, "lb"),
  26811. name: "Back",
  26812. image: {
  26813. source: "./media/characters/alex-rabbit/back.svg",
  26814. extra: 502/460,
  26815. bottom: 18.9/521
  26816. }
  26817. },
  26818. },
  26819. [
  26820. {
  26821. name: "Normal",
  26822. height: math.unit(4, "feet"),
  26823. default: true
  26824. },
  26825. ]
  26826. ))
  26827. characterMakers.push(() => makeCharacter(
  26828. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26829. {
  26830. front: {
  26831. height: math.unit(1 + 3 / 12, "feet"),
  26832. weight: math.unit(80, "lb"),
  26833. name: "Front",
  26834. image: {
  26835. source: "./media/characters/zander-rose/front.svg",
  26836. extra: 916 / 797,
  26837. bottom: 17 / 933
  26838. }
  26839. },
  26840. back: {
  26841. height: math.unit(1 + 3 / 12, "feet"),
  26842. weight: math.unit(80, "lb"),
  26843. name: "Back",
  26844. image: {
  26845. source: "./media/characters/zander-rose/back.svg",
  26846. extra: 903/779,
  26847. bottom: 31/934
  26848. }
  26849. },
  26850. },
  26851. [
  26852. {
  26853. name: "Normal",
  26854. height: math.unit(1 + 3 / 12, "feet"),
  26855. default: true
  26856. },
  26857. ]
  26858. ))
  26859. characterMakers.push(() => makeCharacter(
  26860. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  26861. {
  26862. anthro: {
  26863. height: math.unit(6, "feet"),
  26864. weight: math.unit(150, "lb"),
  26865. name: "Anthro",
  26866. image: {
  26867. source: "./media/characters/razz/anthro.svg",
  26868. extra: 1437/1343,
  26869. bottom: 48/1485
  26870. }
  26871. },
  26872. feral: {
  26873. height: math.unit(6, "feet"),
  26874. weight: math.unit(150, "lb"),
  26875. name: "Feral",
  26876. image: {
  26877. source: "./media/characters/razz/feral.svg",
  26878. extra: 2569/1385,
  26879. bottom: 95/2664
  26880. }
  26881. },
  26882. },
  26883. [
  26884. {
  26885. name: "Normal",
  26886. height: math.unit(6, "feet"),
  26887. default: true
  26888. },
  26889. ]
  26890. ))
  26891. characterMakers.push(() => makeCharacter(
  26892. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  26893. {
  26894. front: {
  26895. height: math.unit(9 + 4/12, "feet"),
  26896. weight: math.unit(500, "lb"),
  26897. name: "Front",
  26898. image: {
  26899. source: "./media/characters/morrigan/front.svg",
  26900. extra: 2707/2579,
  26901. bottom: 156/2863
  26902. }
  26903. },
  26904. },
  26905. [
  26906. {
  26907. name: "Normal",
  26908. height: math.unit(9 + 4/12, "feet"),
  26909. default: true
  26910. },
  26911. ]
  26912. ))
  26913. characterMakers.push(() => makeCharacter(
  26914. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  26915. {
  26916. front: {
  26917. height: math.unit(5, "stories"),
  26918. weight: math.unit(4000, "lb"),
  26919. name: "Front",
  26920. image: {
  26921. source: "./media/characters/jenene/front.svg",
  26922. extra: 1780/1710,
  26923. bottom: 57/1837
  26924. }
  26925. },
  26926. },
  26927. [
  26928. {
  26929. name: "Normal",
  26930. height: math.unit(5, "stories"),
  26931. default: true
  26932. },
  26933. ]
  26934. ))
  26935. characterMakers.push(() => makeCharacter(
  26936. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  26937. {
  26938. front: {
  26939. height: math.unit(6, "feet"),
  26940. weight: math.unit(150, "lb"),
  26941. name: "Front",
  26942. image: {
  26943. source: "./media/characters/vix-archaser/front.svg",
  26944. extra: 2767/2562,
  26945. bottom: 36/2803
  26946. }
  26947. },
  26948. },
  26949. [
  26950. {
  26951. name: "Micro",
  26952. height: math.unit(1, "foot")
  26953. },
  26954. {
  26955. name: "Normal",
  26956. height: math.unit(6 + 5/12, "feet")
  26957. },
  26958. {
  26959. name: "Minimacro",
  26960. height: math.unit(500, "feet")
  26961. },
  26962. {
  26963. name: "Macro",
  26964. height: math.unit(4, "miles")
  26965. },
  26966. {
  26967. name: "Megamacro",
  26968. height: math.unit(250, "miles"),
  26969. default: true
  26970. },
  26971. {
  26972. name: "Gigamacro",
  26973. height: math.unit(1, "universe")
  26974. },
  26975. ]
  26976. ))
  26977. characterMakers.push(() => makeCharacter(
  26978. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  26979. {
  26980. taurSfw: {
  26981. height: math.unit(10, "meters"),
  26982. weight: math.unit(17500, "kg"),
  26983. name: "Taur",
  26984. image: {
  26985. source: "./media/characters/faey/taur-sfw.svg",
  26986. extra: 1200/968,
  26987. bottom: 41/1241
  26988. }
  26989. },
  26990. chestmaw: {
  26991. height: math.unit(2.01, "meters"),
  26992. name: "Chestmaw",
  26993. image: {
  26994. source: "./media/characters/faey/chestmaw.svg"
  26995. }
  26996. },
  26997. foot: {
  26998. height: math.unit(2.43, "meters"),
  26999. name: "Foot",
  27000. image: {
  27001. source: "./media/characters/faey/foot.svg"
  27002. }
  27003. },
  27004. jaws: {
  27005. height: math.unit(1.66, "meters"),
  27006. name: "Jaws",
  27007. image: {
  27008. source: "./media/characters/faey/jaws.svg"
  27009. }
  27010. },
  27011. tongues: {
  27012. height: math.unit(2.01, "meters"),
  27013. name: "Tongues",
  27014. image: {
  27015. source: "./media/characters/faey/tongues.svg"
  27016. }
  27017. },
  27018. },
  27019. [
  27020. {
  27021. name: "Small",
  27022. height: math.unit(10, "meters"),
  27023. default: true
  27024. },
  27025. {
  27026. name: "Big",
  27027. height: math.unit(500000, "km")
  27028. },
  27029. ]
  27030. ))
  27031. characterMakers.push(() => makeCharacter(
  27032. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27033. {
  27034. front: {
  27035. height: math.unit(7, "feet"),
  27036. weight: math.unit(275, "lb"),
  27037. name: "Front",
  27038. image: {
  27039. source: "./media/characters/roku/front.svg",
  27040. extra: 903/878,
  27041. bottom: 37/940
  27042. }
  27043. },
  27044. },
  27045. [
  27046. {
  27047. name: "Normal",
  27048. height: math.unit(7, "feet"),
  27049. default: true
  27050. },
  27051. {
  27052. name: "Macro",
  27053. height: math.unit(500, "feet")
  27054. },
  27055. {
  27056. name: "Megamacro",
  27057. height: math.unit(200, "miles")
  27058. },
  27059. ]
  27060. ))
  27061. characterMakers.push(() => makeCharacter(
  27062. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27063. {
  27064. front: {
  27065. height: math.unit(6 + 2/12, "feet"),
  27066. weight: math.unit(150, "lb"),
  27067. name: "Front",
  27068. image: {
  27069. source: "./media/characters/lira/front.svg",
  27070. extra: 1727/1605,
  27071. bottom: 26/1753
  27072. }
  27073. },
  27074. back: {
  27075. height: math.unit(6 + 2/12, "feet"),
  27076. weight: math.unit(150, "lb"),
  27077. name: "Back",
  27078. image: {
  27079. source: "./media/characters/lira/back.svg",
  27080. extra: 1713/159,
  27081. bottom: 20/1733
  27082. }
  27083. },
  27084. hand: {
  27085. height: math.unit(0.75, "feet"),
  27086. name: "Hand",
  27087. image: {
  27088. source: "./media/characters/lira/hand.svg"
  27089. }
  27090. },
  27091. maw: {
  27092. height: math.unit(0.65, "feet"),
  27093. name: "Maw",
  27094. image: {
  27095. source: "./media/characters/lira/maw.svg"
  27096. }
  27097. },
  27098. pawDigi: {
  27099. height: math.unit(1.6, "feet"),
  27100. name: "Paw Digi",
  27101. image: {
  27102. source: "./media/characters/lira/paw-digi.svg"
  27103. }
  27104. },
  27105. pawPlanti: {
  27106. height: math.unit(1.4, "feet"),
  27107. name: "Paw Planti",
  27108. image: {
  27109. source: "./media/characters/lira/paw-planti.svg"
  27110. }
  27111. },
  27112. },
  27113. [
  27114. {
  27115. name: "Normal",
  27116. height: math.unit(6 + 2/12, "feet"),
  27117. default: true
  27118. },
  27119. {
  27120. name: "Macro",
  27121. height: math.unit(100, "feet")
  27122. },
  27123. ]
  27124. ))
  27125. characterMakers.push(() => makeCharacter(
  27126. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27127. {
  27128. front: {
  27129. height: math.unit(6, "feet"),
  27130. weight: math.unit(150, "lb"),
  27131. name: "Front",
  27132. image: {
  27133. source: "./media/characters/hadjet/front.svg",
  27134. extra: 1480/1346,
  27135. bottom: 26/1506
  27136. }
  27137. },
  27138. },
  27139. [
  27140. {
  27141. name: "Macro",
  27142. height: math.unit(10, "stories"),
  27143. default: true
  27144. },
  27145. {
  27146. name: "Megamacro",
  27147. height: math.unit(1.5, "miles")
  27148. },
  27149. {
  27150. name: "Megamacro+",
  27151. height: math.unit(5, "miles")
  27152. },
  27153. ]
  27154. ))
  27155. characterMakers.push(() => makeCharacter(
  27156. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27157. {
  27158. side: {
  27159. height: math.unit(106, "feet"),
  27160. weight: math.unit(500, "tonnes"),
  27161. name: "Side",
  27162. image: {
  27163. source: "./media/characters/kodran/side.svg",
  27164. extra: 553/480,
  27165. bottom: 33/586
  27166. }
  27167. },
  27168. front: {
  27169. height: math.unit(132, "feet"),
  27170. weight: math.unit(500, "tonnes"),
  27171. name: "Front",
  27172. image: {
  27173. source: "./media/characters/kodran/front.svg",
  27174. extra: 667/643,
  27175. bottom: 42/709
  27176. }
  27177. },
  27178. flying: {
  27179. height: math.unit(350, "feet"),
  27180. weight: math.unit(500, "tonnes"),
  27181. name: "Flying",
  27182. image: {
  27183. source: "./media/characters/kodran/flying.svg"
  27184. }
  27185. },
  27186. foot: {
  27187. height: math.unit(33, "feet"),
  27188. name: "Foot",
  27189. image: {
  27190. source: "./media/characters/kodran/foot.svg"
  27191. }
  27192. },
  27193. footFront: {
  27194. height: math.unit(19, "feet"),
  27195. name: "Foot (Front)",
  27196. image: {
  27197. source: "./media/characters/kodran/foot-front.svg",
  27198. extra: 261/261,
  27199. bottom: 91/352
  27200. }
  27201. },
  27202. headFront: {
  27203. height: math.unit(53, "feet"),
  27204. name: "Head (Front)",
  27205. image: {
  27206. source: "./media/characters/kodran/head-front.svg"
  27207. }
  27208. },
  27209. headSide: {
  27210. height: math.unit(65, "feet"),
  27211. name: "Head (Side)",
  27212. image: {
  27213. source: "./media/characters/kodran/head-side.svg"
  27214. }
  27215. },
  27216. throat: {
  27217. height: math.unit(79, "feet"),
  27218. name: "Throat",
  27219. image: {
  27220. source: "./media/characters/kodran/throat.svg"
  27221. }
  27222. },
  27223. },
  27224. [
  27225. {
  27226. name: "Large",
  27227. height: math.unit(106, "feet"),
  27228. default: true
  27229. },
  27230. ]
  27231. ))
  27232. characterMakers.push(() => makeCharacter(
  27233. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27234. {
  27235. side: {
  27236. height: math.unit(11, "feet"),
  27237. weight: math.unit(150, "lb"),
  27238. name: "Side",
  27239. image: {
  27240. source: "./media/characters/pyxaron/side.svg",
  27241. extra: 305/195,
  27242. bottom: 17/322
  27243. }
  27244. },
  27245. },
  27246. [
  27247. {
  27248. name: "Normal",
  27249. height: math.unit(11, "feet")
  27250. },
  27251. ]
  27252. ))
  27253. //characters
  27254. function makeCharacters() {
  27255. const results = [];
  27256. characterMakers.forEach(character => {
  27257. results.push(character());
  27258. });
  27259. return results;
  27260. }